blob: 88dd2e09832f2875eba2ff0eebbe9f3e2abbb83b [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
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 *
19 *
20 * This driver is designed for the Broadcom SiByte SOC built-in
21 * Ethernet controllers. Written by Mitch Lichtenberg at Broadcom Corp.
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +010022 *
23 * Updated to the driver model and the PHY abstraction layer
24 * by Maciej W. Rozycki.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +010026
27#include <linux/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/kernel.h>
30#include <linux/string.h>
31#include <linux/timer.h>
32#include <linux/errno.h>
33#include <linux/ioport.h>
34#include <linux/slab.h>
35#include <linux/interrupt.h>
36#include <linux/netdevice.h>
37#include <linux/etherdevice.h>
38#include <linux/skbuff.h>
39#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/bitops.h>
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +010041#include <linux/err.h>
42#include <linux/ethtool.h>
43#include <linux/mii.h>
44#include <linux/phy.h>
45#include <linux/platform_device.h>
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/cache.h>
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +010048#include <asm/io.h>
49#include <asm/processor.h> /* Processor type for cache alignment. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/* This is only here until the firmware is ready. In that case,
52 the firmware leaves the ethernet address in the register for us. */
53#ifdef CONFIG_SIBYTE_STANDALONE
54#define SBMAC_ETH0_HWADDR "40:00:00:00:01:00"
55#define SBMAC_ETH1_HWADDR "40:00:00:00:01:01"
56#define SBMAC_ETH2_HWADDR "40:00:00:00:01:02"
Ralf Baechlef90fdc32006-02-08 23:23:26 +000057#define SBMAC_ETH3_HWADDR "40:00:00:00:01:03"
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#endif
59
60
61/* These identify the driver base version and may not be removed. */
62#if 0
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +010063static char version1[] __initdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -070064"sb1250-mac.c:1.00 1/11/2001 Written by Mitch Lichtenberg\n";
65#endif
66
67
68/* Operational parameters that usually are not changed. */
69
70#define CONFIG_SBMAC_COALESCE
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* Time in jiffies before concluding the transmitter is hung. */
73#define TX_TIMEOUT (2*HZ)
74
75
76MODULE_AUTHOR("Mitch Lichtenberg (Broadcom Corp.)");
77MODULE_DESCRIPTION("Broadcom SiByte SOC GB Ethernet driver");
78
79/* A few user-configurable values which may be modified when a driver
80 module is loaded. */
81
82/* 1 normal messages, 0 quiet .. 7 verbose. */
83static int debug = 1;
84module_param(debug, int, S_IRUGO);
85MODULE_PARM_DESC(debug, "Debug messages");
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#ifdef CONFIG_SBMAC_COALESCE
Mark Mason693aa942007-04-26 00:23:22 -070088static int int_pktcnt_tx = 255;
89module_param(int_pktcnt_tx, int, S_IRUGO);
90MODULE_PARM_DESC(int_pktcnt_tx, "TX packet count");
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Mark Mason693aa942007-04-26 00:23:22 -070092static int int_timeout_tx = 255;
93module_param(int_timeout_tx, int, S_IRUGO);
94MODULE_PARM_DESC(int_timeout_tx, "TX timeout value");
95
96static int int_pktcnt_rx = 64;
97module_param(int_pktcnt_rx, int, S_IRUGO);
98MODULE_PARM_DESC(int_pktcnt_rx, "RX packet count");
99
100static int int_timeout_rx = 64;
101module_param(int_timeout_rx, int, S_IRUGO);
102MODULE_PARM_DESC(int_timeout_rx, "RX timeout value");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#endif
104
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100105#include <asm/sibyte/board.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#include <asm/sibyte/sb1250.h>
Ralf Baechlef90fdc32006-02-08 23:23:26 +0000107#if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
108#include <asm/sibyte/bcm1480_regs.h>
109#include <asm/sibyte/bcm1480_int.h>
Mark Mason693aa942007-04-26 00:23:22 -0700110#define R_MAC_DMA_OODPKTLOST_RX R_MAC_DMA_OODPKTLOST
Ralf Baechlef90fdc32006-02-08 23:23:26 +0000111#elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#include <asm/sibyte/sb1250_regs.h>
Ralf Baechlef90fdc32006-02-08 23:23:26 +0000113#include <asm/sibyte/sb1250_int.h>
114#else
115#error invalid SiByte MAC configuation
116#endif
117#include <asm/sibyte/sb1250_scd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#include <asm/sibyte/sb1250_mac.h>
119#include <asm/sibyte/sb1250_dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Ralf Baechlef90fdc32006-02-08 23:23:26 +0000121#if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
122#define UNIT_INT(n) (K_BCM1480_INT_MAC_0 + ((n) * 2))
123#elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
124#define UNIT_INT(n) (K_INT_MAC_0 + (n))
125#else
126#error invalid SiByte MAC configuation
127#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100129#ifdef K_INT_PHY
130#define SBMAC_PHY_INT K_INT_PHY
131#else
132#define SBMAC_PHY_INT PHY_POLL
133#endif
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/**********************************************************************
136 * Simple types
137 ********************************************************************* */
138
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100139enum sbmac_speed {
140 sbmac_speed_none = 0,
141 sbmac_speed_10 = SPEED_10,
142 sbmac_speed_100 = SPEED_100,
143 sbmac_speed_1000 = SPEED_1000,
144};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100146enum sbmac_duplex {
147 sbmac_duplex_none = -1,
148 sbmac_duplex_half = DUPLEX_HALF,
149 sbmac_duplex_full = DUPLEX_FULL,
150};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100152enum sbmac_fc {
153 sbmac_fc_none,
154 sbmac_fc_disabled,
155 sbmac_fc_frame,
156 sbmac_fc_collision,
157 sbmac_fc_carrier,
158};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100160enum sbmac_state {
161 sbmac_state_uninit,
162 sbmac_state_off,
163 sbmac_state_on,
164 sbmac_state_broken,
165};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167
168/**********************************************************************
169 * Macros
170 ********************************************************************* */
171
172
173#define SBDMA_NEXTBUF(d,f) ((((d)->f+1) == (d)->sbdma_dscrtable_end) ? \
174 (d)->sbdma_dscrtable : (d)->f+1)
175
176
177#define NUMCACHEBLKS(x) (((x)+SMP_CACHE_BYTES-1)/SMP_CACHE_BYTES)
178
Mark Mason693aa942007-04-26 00:23:22 -0700179#define SBMAC_MAX_TXDESCR 256
180#define SBMAC_MAX_RXDESCR 256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Stephen Hemminger789585e2008-05-18 04:45:09 +0100182#define ETHER_ADDR_LEN 6
Ralf Baechle74b02472005-10-19 15:40:02 +0100183#define ENET_PACKET_SIZE 1518
184/*#define ENET_PACKET_SIZE 9216 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186/**********************************************************************
187 * DMA Descriptor structure
188 ********************************************************************* */
189
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100190struct sbdmadscr {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 uint64_t dscr_a;
192 uint64_t dscr_b;
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100193};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195/**********************************************************************
196 * DMA Controller structure
197 ********************************************************************* */
198
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100199struct sbmacdma {
Ralf Baechle74b02472005-10-19 15:40:02 +0100200
201 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 * This stuff is used to identify the channel and the registers
203 * associated with it.
204 */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100205 struct sbmac_softc *sbdma_eth; /* back pointer to associated
206 MAC */
207 int sbdma_channel; /* channel number */
208 int sbdma_txdir; /* direction (1=transmit) */
209 int sbdma_maxdescr; /* total # of descriptors
210 in ring */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211#ifdef CONFIG_SBMAC_COALESCE
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100212 int sbdma_int_pktcnt;
213 /* # descriptors rx/tx
214 before interrupt */
215 int sbdma_int_timeout;
216 /* # usec rx/tx interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217#endif
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100218 void __iomem *sbdma_config0; /* DMA config register 0 */
219 void __iomem *sbdma_config1; /* DMA config register 1 */
220 void __iomem *sbdma_dscrbase;
221 /* descriptor base address */
222 void __iomem *sbdma_dscrcnt; /* descriptor count register */
223 void __iomem *sbdma_curdscr; /* current descriptor
224 address */
225 void __iomem *sbdma_oodpktlost;
226 /* pkt drop (rx only) */
Ralf Baechle74b02472005-10-19 15:40:02 +0100227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 /*
229 * This stuff is for maintenance of the ring
230 */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100231 void *sbdma_dscrtable_unaligned;
232 struct sbdmadscr *sbdma_dscrtable;
233 /* base of descriptor table */
234 struct sbdmadscr *sbdma_dscrtable_end;
235 /* end of descriptor table */
236 struct sk_buff **sbdma_ctxtable;
237 /* context table, one
238 per descr */
239 dma_addr_t sbdma_dscrtable_phys;
240 /* and also the phys addr */
241 struct sbdmadscr *sbdma_addptr; /* next dscr for sw to add */
242 struct sbdmadscr *sbdma_remptr; /* next dscr for sw
243 to remove */
244};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246
247/**********************************************************************
248 * Ethernet softc structure
249 ********************************************************************* */
250
251struct sbmac_softc {
Ralf Baechle74b02472005-10-19 15:40:02 +0100252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /*
254 * Linux-specific things
255 */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100256 struct net_device *sbm_dev; /* pointer to linux device */
257 struct napi_struct napi;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100258 struct phy_device *phy_dev; /* the associated PHY device */
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700259 struct mii_bus *mii_bus; /* the MII bus */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100260 int phy_irq[PHY_MAX_ADDR];
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100261 spinlock_t sbm_lock; /* spin lock */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100262 int sbm_devflags; /* current device flags */
Ralf Baechle74b02472005-10-19 15:40:02 +0100263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /*
265 * Controller-specific things
266 */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100267 void __iomem *sbm_base; /* MAC's base address */
268 enum sbmac_state sbm_state; /* current state */
Ralf Baechle74b02472005-10-19 15:40:02 +0100269
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100270 void __iomem *sbm_macenable; /* MAC Enable Register */
271 void __iomem *sbm_maccfg; /* MAC Config Register */
272 void __iomem *sbm_fifocfg; /* FIFO Config Register */
273 void __iomem *sbm_framecfg; /* Frame Config Register */
274 void __iomem *sbm_rxfilter; /* Receive Filter Register */
275 void __iomem *sbm_isr; /* Interrupt Status Register */
276 void __iomem *sbm_imr; /* Interrupt Mask Register */
277 void __iomem *sbm_mdio; /* MDIO Register */
Ralf Baechle74b02472005-10-19 15:40:02 +0100278
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100279 enum sbmac_speed sbm_speed; /* current speed */
280 enum sbmac_duplex sbm_duplex; /* current duplex */
281 enum sbmac_fc sbm_fc; /* cur. flow control setting */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100282 int sbm_pause; /* current pause setting */
283 int sbm_link; /* current link state */
Ralf Baechle74b02472005-10-19 15:40:02 +0100284
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100285 unsigned char sbm_hwaddr[ETHER_ADDR_LEN];
Ralf Baechle74b02472005-10-19 15:40:02 +0100286
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100287 struct sbmacdma sbm_txdma; /* only channel 0 for now */
288 struct sbmacdma sbm_rxdma;
289 int rx_hw_checksum;
290 int sbe_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291};
292
293
294/**********************************************************************
295 * Externs
296 ********************************************************************* */
297
298/**********************************************************************
299 * Prototypes
300 ********************************************************************* */
301
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100302static void sbdma_initctx(struct sbmacdma *d, struct sbmac_softc *s, int chan,
303 int txrx, int maxdescr);
304static void sbdma_channel_start(struct sbmacdma *d, int rxtx);
Stephen Hemminger789585e2008-05-18 04:45:09 +0100305static int sbdma_add_rcvbuffer(struct sbmac_softc *sc, struct sbmacdma *d,
306 struct sk_buff *m);
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100307static int sbdma_add_txbuffer(struct sbmacdma *d, struct sk_buff *m);
308static void sbdma_emptyring(struct sbmacdma *d);
Stephen Hemminger789585e2008-05-18 04:45:09 +0100309static void sbdma_fillring(struct sbmac_softc *sc, struct sbmacdma *d);
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100310static int sbdma_rx_process(struct sbmac_softc *sc, struct sbmacdma *d,
311 int work_to_do, int poll);
312static void sbdma_tx_process(struct sbmac_softc *sc, struct sbmacdma *d,
313 int poll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314static int sbmac_initctx(struct sbmac_softc *s);
315static void sbmac_channel_start(struct sbmac_softc *s);
316static void sbmac_channel_stop(struct sbmac_softc *s);
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100317static enum sbmac_state sbmac_set_channel_state(struct sbmac_softc *,
318 enum sbmac_state);
319static void sbmac_promiscuous_mode(struct sbmac_softc *sc, int onoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320static uint64_t sbmac_addr2reg(unsigned char *ptr);
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100321static irqreturn_t sbmac_intr(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322static int sbmac_start_tx(struct sk_buff *skb, struct net_device *dev);
323static void sbmac_setmulti(struct sbmac_softc *sc);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100324static int sbmac_init(struct platform_device *pldev, long long base);
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100325static int sbmac_set_speed(struct sbmac_softc *s, enum sbmac_speed speed);
326static int sbmac_set_duplex(struct sbmac_softc *s, enum sbmac_duplex duplex,
327 enum sbmac_fc fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329static int sbmac_open(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330static void sbmac_tx_timeout (struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331static void sbmac_set_rx_mode(struct net_device *dev);
332static int sbmac_mii_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
333static int sbmac_close(struct net_device *dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700334static int sbmac_poll(struct napi_struct *napi, int budget);
Mark Mason693aa942007-04-26 00:23:22 -0700335
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100336static void sbmac_mii_poll(struct net_device *dev);
Ralf Baechle59b81822005-10-20 12:01:28 +0100337static int sbmac_mii_probe(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100339static void sbmac_mii_sync(void __iomem *sbm_mdio);
340static void sbmac_mii_senddata(void __iomem *sbm_mdio, unsigned int data,
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100341 int bitcnt);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100342static int sbmac_mii_read(struct mii_bus *bus, int phyaddr, int regidx);
343static int sbmac_mii_write(struct mii_bus *bus, int phyaddr, int regidx,
344 u16 val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346
347/**********************************************************************
348 * Globals
349 ********************************************************************* */
350
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100351static char sbmac_string[] = "sb1250-mac";
352static char sbmac_pretty[] = "SB1250 MAC";
353
354static char sbmac_mdio_string[] = "sb1250-mac-mdio";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356
357/**********************************************************************
358 * MDIO constants
359 ********************************************************************* */
360
361#define MII_COMMAND_START 0x01
362#define MII_COMMAND_READ 0x02
363#define MII_COMMAND_WRITE 0x01
364#define MII_COMMAND_ACK 0x02
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366#define M_MAC_MDIO_DIR_OUTPUT 0 /* for clarity */
367
368#define ENABLE 1
369#define DISABLE 0
370
371/**********************************************************************
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100372 * SBMAC_MII_SYNC(sbm_mdio)
Ralf Baechle74b02472005-10-19 15:40:02 +0100373 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 * Synchronize with the MII - send a pattern of bits to the MII
375 * that will guarantee that it is ready to accept a command.
Ralf Baechle74b02472005-10-19 15:40:02 +0100376 *
377 * Input parameters:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100378 * sbm_mdio - address of the MAC's MDIO register
Ralf Baechle74b02472005-10-19 15:40:02 +0100379 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * Return value:
381 * nothing
382 ********************************************************************* */
383
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100384static void sbmac_mii_sync(void __iomem *sbm_mdio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 int cnt;
387 uint64_t bits;
388 int mac_mdio_genc;
389
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100390 mac_mdio_genc = __raw_readq(sbm_mdio) & M_MAC_GENC;
Ralf Baechle74b02472005-10-19 15:40:02 +0100391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 bits = M_MAC_MDIO_DIR_OUTPUT | M_MAC_MDIO_OUT;
Ralf Baechle74b02472005-10-19 15:40:02 +0100393
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100394 __raw_writeq(bits | mac_mdio_genc, sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 for (cnt = 0; cnt < 32; cnt++) {
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100397 __raw_writeq(bits | M_MAC_MDC | mac_mdio_genc, sbm_mdio);
398 __raw_writeq(bits | mac_mdio_genc, sbm_mdio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400}
401
402/**********************************************************************
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100403 * SBMAC_MII_SENDDATA(sbm_mdio, data, bitcnt)
Ralf Baechle74b02472005-10-19 15:40:02 +0100404 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 * Send some bits to the MII. The bits to be sent are right-
406 * justified in the 'data' parameter.
Ralf Baechle74b02472005-10-19 15:40:02 +0100407 *
408 * Input parameters:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100409 * sbm_mdio - address of the MAC's MDIO register
410 * data - data to send
411 * bitcnt - number of bits to send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 ********************************************************************* */
413
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100414static void sbmac_mii_senddata(void __iomem *sbm_mdio, unsigned int data,
415 int bitcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 int i;
418 uint64_t bits;
419 unsigned int curmask;
420 int mac_mdio_genc;
421
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100422 mac_mdio_genc = __raw_readq(sbm_mdio) & M_MAC_GENC;
Ralf Baechle74b02472005-10-19 15:40:02 +0100423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 bits = M_MAC_MDIO_DIR_OUTPUT;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100425 __raw_writeq(bits | mac_mdio_genc, sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 curmask = 1 << (bitcnt - 1);
Ralf Baechle74b02472005-10-19 15:40:02 +0100428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 for (i = 0; i < bitcnt; i++) {
430 if (data & curmask)
431 bits |= M_MAC_MDIO_OUT;
432 else bits &= ~M_MAC_MDIO_OUT;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100433 __raw_writeq(bits | mac_mdio_genc, sbm_mdio);
434 __raw_writeq(bits | M_MAC_MDC | mac_mdio_genc, sbm_mdio);
435 __raw_writeq(bits | mac_mdio_genc, sbm_mdio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 curmask >>= 1;
437 }
438}
439
440
441
442/**********************************************************************
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100443 * SBMAC_MII_READ(bus, phyaddr, regidx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 * Read a PHY register.
Ralf Baechle74b02472005-10-19 15:40:02 +0100445 *
446 * Input parameters:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100447 * bus - MDIO bus handle
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 * phyaddr - PHY's address
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100449 * regnum - index of register to read
Ralf Baechle74b02472005-10-19 15:40:02 +0100450 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 * Return value:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100452 * value read, or 0xffff if an error occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 ********************************************************************* */
454
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100455static int sbmac_mii_read(struct mii_bus *bus, int phyaddr, int regidx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100457 struct sbmac_softc *sc = (struct sbmac_softc *)bus->priv;
458 void __iomem *sbm_mdio = sc->sbm_mdio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 int idx;
460 int error;
461 int regval;
462 int mac_mdio_genc;
463
464 /*
465 * Synchronize ourselves so that the PHY knows the next
466 * thing coming down is a command
467 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100468 sbmac_mii_sync(sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 /*
471 * Send the data to the PHY. The sequence is
472 * a "start" command (2 bits)
473 * a "read" command (2 bits)
474 * the PHY addr (5 bits)
475 * the register index (5 bits)
476 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100477 sbmac_mii_senddata(sbm_mdio, MII_COMMAND_START, 2);
478 sbmac_mii_senddata(sbm_mdio, MII_COMMAND_READ, 2);
479 sbmac_mii_senddata(sbm_mdio, phyaddr, 5);
480 sbmac_mii_senddata(sbm_mdio, regidx, 5);
Ralf Baechle74b02472005-10-19 15:40:02 +0100481
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100482 mac_mdio_genc = __raw_readq(sbm_mdio) & M_MAC_GENC;
Ralf Baechle74b02472005-10-19 15:40:02 +0100483
484 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 * Switch the port around without a clock transition.
486 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100487 __raw_writeq(M_MAC_MDIO_DIR_INPUT | mac_mdio_genc, sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 /*
490 * Send out a clock pulse to signal we want the status
491 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100492 __raw_writeq(M_MAC_MDIO_DIR_INPUT | M_MAC_MDC | mac_mdio_genc,
493 sbm_mdio);
494 __raw_writeq(M_MAC_MDIO_DIR_INPUT | mac_mdio_genc, sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100495
496 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * If an error occurred, the PHY will signal '1' back
498 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100499 error = __raw_readq(sbm_mdio) & M_MAC_MDIO_IN;
Ralf Baechle74b02472005-10-19 15:40:02 +0100500
501 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 * Issue an 'idle' clock pulse, but keep the direction
503 * the same.
504 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100505 __raw_writeq(M_MAC_MDIO_DIR_INPUT | M_MAC_MDC | mac_mdio_genc,
506 sbm_mdio);
507 __raw_writeq(M_MAC_MDIO_DIR_INPUT | mac_mdio_genc, sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 regval = 0;
Ralf Baechle74b02472005-10-19 15:40:02 +0100510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 for (idx = 0; idx < 16; idx++) {
512 regval <<= 1;
Ralf Baechle74b02472005-10-19 15:40:02 +0100513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (error == 0) {
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100515 if (__raw_readq(sbm_mdio) & M_MAC_MDIO_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 regval |= 1;
517 }
Ralf Baechle74b02472005-10-19 15:40:02 +0100518
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100519 __raw_writeq(M_MAC_MDIO_DIR_INPUT | M_MAC_MDC | mac_mdio_genc,
520 sbm_mdio);
521 __raw_writeq(M_MAC_MDIO_DIR_INPUT | mac_mdio_genc, sbm_mdio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
Ralf Baechle74b02472005-10-19 15:40:02 +0100523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 /* Switch back to output */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100525 __raw_writeq(M_MAC_MDIO_DIR_OUTPUT | mac_mdio_genc, sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (error == 0)
528 return regval;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100529 return 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
532
533/**********************************************************************
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100534 * SBMAC_MII_WRITE(bus, phyaddr, regidx, regval)
Ralf Baechle74b02472005-10-19 15:40:02 +0100535 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 * Write a value to a PHY register.
Ralf Baechle74b02472005-10-19 15:40:02 +0100537 *
538 * Input parameters:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100539 * bus - MDIO bus handle
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 * phyaddr - PHY to use
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100541 * regidx - register within the PHY
542 * regval - data to write to register
Ralf Baechle74b02472005-10-19 15:40:02 +0100543 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 * Return value:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100545 * 0 for success
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 ********************************************************************* */
547
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100548static int sbmac_mii_write(struct mii_bus *bus, int phyaddr, int regidx,
549 u16 regval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100551 struct sbmac_softc *sc = (struct sbmac_softc *)bus->priv;
552 void __iomem *sbm_mdio = sc->sbm_mdio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 int mac_mdio_genc;
554
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100555 sbmac_mii_sync(sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100556
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100557 sbmac_mii_senddata(sbm_mdio, MII_COMMAND_START, 2);
558 sbmac_mii_senddata(sbm_mdio, MII_COMMAND_WRITE, 2);
559 sbmac_mii_senddata(sbm_mdio, phyaddr, 5);
560 sbmac_mii_senddata(sbm_mdio, regidx, 5);
561 sbmac_mii_senddata(sbm_mdio, MII_COMMAND_ACK, 2);
562 sbmac_mii_senddata(sbm_mdio, regval, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100564 mac_mdio_genc = __raw_readq(sbm_mdio) & M_MAC_GENC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100566 __raw_writeq(M_MAC_MDIO_DIR_OUTPUT | mac_mdio_genc, sbm_mdio);
567
568 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
571
572
573/**********************************************************************
574 * SBDMA_INITCTX(d,s,chan,txrx,maxdescr)
Ralf Baechle74b02472005-10-19 15:40:02 +0100575 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 * Initialize a DMA channel context. Since there are potentially
577 * eight DMA channels per MAC, it's nice to do this in a standard
Ralf Baechle74b02472005-10-19 15:40:02 +0100578 * way.
579 *
580 * Input parameters:
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100581 * d - struct sbmacdma (DMA channel context)
582 * s - struct sbmac_softc (pointer to a MAC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 * chan - channel number (0..1 right now)
584 * txrx - Identifies DMA_TX or DMA_RX for channel direction
585 * maxdescr - number of descriptors
Ralf Baechle74b02472005-10-19 15:40:02 +0100586 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 * Return value:
588 * nothing
589 ********************************************************************* */
590
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100591static void sbdma_initctx(struct sbmacdma *d, struct sbmac_softc *s, int chan,
592 int txrx, int maxdescr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Mark Mason693aa942007-04-26 00:23:22 -0700594#ifdef CONFIG_SBMAC_COALESCE
595 int int_pktcnt, int_timeout;
596#endif
597
Ralf Baechle74b02472005-10-19 15:40:02 +0100598 /*
599 * Save away interesting stuff in the structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 d->sbdma_eth = s;
603 d->sbdma_channel = chan;
604 d->sbdma_txdir = txrx;
Ralf Baechle74b02472005-10-19 15:40:02 +0100605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606#if 0
607 /* RMON clearing */
608 s->sbe_idx =(s->sbm_base - A_MAC_BASE_0)/MAC_SPACING;
609#endif
610
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100611 __raw_writeq(0, s->sbm_base + R_MAC_RMON_TX_BYTES);
612 __raw_writeq(0, s->sbm_base + R_MAC_RMON_COLLISIONS);
613 __raw_writeq(0, s->sbm_base + R_MAC_RMON_LATE_COL);
614 __raw_writeq(0, s->sbm_base + R_MAC_RMON_EX_COL);
615 __raw_writeq(0, s->sbm_base + R_MAC_RMON_FCS_ERROR);
616 __raw_writeq(0, s->sbm_base + R_MAC_RMON_TX_ABORT);
617 __raw_writeq(0, s->sbm_base + R_MAC_RMON_TX_BAD);
618 __raw_writeq(0, s->sbm_base + R_MAC_RMON_TX_GOOD);
619 __raw_writeq(0, s->sbm_base + R_MAC_RMON_TX_RUNT);
620 __raw_writeq(0, s->sbm_base + R_MAC_RMON_TX_OVERSIZE);
621 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_BYTES);
622 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_MCAST);
623 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_BCAST);
624 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_BAD);
625 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_GOOD);
626 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_RUNT);
627 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_OVERSIZE);
628 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_FCS_ERROR);
629 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_LENGTH_ERROR);
630 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_CODE_ERROR);
631 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_ALIGN_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Ralf Baechle74b02472005-10-19 15:40:02 +0100633 /*
634 * initialize register pointers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100636
637 d->sbdma_config0 =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_CONFIG0);
Ralf Baechle74b02472005-10-19 15:40:02 +0100639 d->sbdma_config1 =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_CONFIG1);
Ralf Baechle74b02472005-10-19 15:40:02 +0100641 d->sbdma_dscrbase =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_DSCR_BASE);
Ralf Baechle74b02472005-10-19 15:40:02 +0100643 d->sbdma_dscrcnt =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_DSCR_CNT);
Ralf Baechle74b02472005-10-19 15:40:02 +0100645 d->sbdma_curdscr =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_CUR_DSCRADDR);
Mark Mason693aa942007-04-26 00:23:22 -0700647 if (d->sbdma_txdir)
648 d->sbdma_oodpktlost = NULL;
649 else
650 d->sbdma_oodpktlost =
651 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_OODPKTLOST_RX);
Ralf Baechle74b02472005-10-19 15:40:02 +0100652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /*
654 * Allocate memory for the ring
655 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 d->sbdma_maxdescr = maxdescr;
Ralf Baechle74b02472005-10-19 15:40:02 +0100658
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100659 d->sbdma_dscrtable_unaligned = kcalloc(d->sbdma_maxdescr + 1,
660 sizeof(*d->sbdma_dscrtable),
661 GFP_KERNEL);
Ralf Baechle04115de2005-10-10 14:50:36 +0100662
663 /*
664 * The descriptor table must be aligned to at least 16 bytes or the
665 * MAC will corrupt it.
666 */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100667 d->sbdma_dscrtable = (struct sbdmadscr *)
668 ALIGN((unsigned long)d->sbdma_dscrtable_unaligned,
669 sizeof(*d->sbdma_dscrtable));
Ralf Baechle74b02472005-10-19 15:40:02 +0100670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 d->sbdma_dscrtable_end = d->sbdma_dscrtable + d->sbdma_maxdescr;
Ralf Baechle74b02472005-10-19 15:40:02 +0100672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 d->sbdma_dscrtable_phys = virt_to_phys(d->sbdma_dscrtable);
Ralf Baechle74b02472005-10-19 15:40:02 +0100674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 /*
676 * And context table
677 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100678
Mariusz Kozlowskic477f332007-07-31 23:58:36 +0200679 d->sbdma_ctxtable = kcalloc(d->sbdma_maxdescr,
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100680 sizeof(*d->sbdma_ctxtable), GFP_KERNEL);
Ralf Baechle74b02472005-10-19 15:40:02 +0100681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682#ifdef CONFIG_SBMAC_COALESCE
683 /*
684 * Setup Rx/Tx DMA coalescing defaults
685 */
686
Mark Mason693aa942007-04-26 00:23:22 -0700687 int_pktcnt = (txrx == DMA_TX) ? int_pktcnt_tx : int_pktcnt_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if ( int_pktcnt ) {
689 d->sbdma_int_pktcnt = int_pktcnt;
690 } else {
691 d->sbdma_int_pktcnt = 1;
692 }
Ralf Baechle74b02472005-10-19 15:40:02 +0100693
Mark Mason693aa942007-04-26 00:23:22 -0700694 int_timeout = (txrx == DMA_TX) ? int_timeout_tx : int_timeout_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if ( int_timeout ) {
696 d->sbdma_int_timeout = int_timeout;
697 } else {
698 d->sbdma_int_timeout = 0;
699 }
700#endif
701
702}
703
704/**********************************************************************
705 * SBDMA_CHANNEL_START(d)
Ralf Baechle74b02472005-10-19 15:40:02 +0100706 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 * Initialize the hardware registers for a DMA channel.
Ralf Baechle74b02472005-10-19 15:40:02 +0100708 *
709 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 * d - DMA channel to init (context must be previously init'd
711 * rxtx - DMA_RX or DMA_TX depending on what type of channel
Ralf Baechle74b02472005-10-19 15:40:02 +0100712 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 * Return value:
714 * nothing
715 ********************************************************************* */
716
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100717static void sbdma_channel_start(struct sbmacdma *d, int rxtx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
719 /*
720 * Turn on the DMA channel
721 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723#ifdef CONFIG_SBMAC_COALESCE
Ralf Baechle20399732005-10-19 15:39:05 +0100724 __raw_writeq(V_DMA_INT_TIMEOUT(d->sbdma_int_timeout) |
725 0, d->sbdma_config1);
726 __raw_writeq(M_DMA_EOP_INT_EN |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 V_DMA_RINGSZ(d->sbdma_maxdescr) |
728 V_DMA_INT_PKTCNT(d->sbdma_int_pktcnt) |
Ralf Baechle20399732005-10-19 15:39:05 +0100729 0, d->sbdma_config0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730#else
Ralf Baechle20399732005-10-19 15:39:05 +0100731 __raw_writeq(0, d->sbdma_config1);
732 __raw_writeq(V_DMA_RINGSZ(d->sbdma_maxdescr) |
733 0, d->sbdma_config0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734#endif
735
Ralf Baechle20399732005-10-19 15:39:05 +0100736 __raw_writeq(d->sbdma_dscrtable_phys, d->sbdma_dscrbase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 /*
739 * Initialize ring pointers
740 */
741
742 d->sbdma_addptr = d->sbdma_dscrtable;
743 d->sbdma_remptr = d->sbdma_dscrtable;
744}
745
746/**********************************************************************
747 * SBDMA_CHANNEL_STOP(d)
Ralf Baechle74b02472005-10-19 15:40:02 +0100748 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 * Initialize the hardware registers for a DMA channel.
Ralf Baechle74b02472005-10-19 15:40:02 +0100750 *
751 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 * d - DMA channel to init (context must be previously init'd
Ralf Baechle74b02472005-10-19 15:40:02 +0100753 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 * Return value:
755 * nothing
756 ********************************************************************* */
757
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100758static void sbdma_channel_stop(struct sbmacdma *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
760 /*
761 * Turn off the DMA channel
762 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100763
Ralf Baechle20399732005-10-19 15:39:05 +0100764 __raw_writeq(0, d->sbdma_config1);
Ralf Baechle74b02472005-10-19 15:40:02 +0100765
Ralf Baechle20399732005-10-19 15:39:05 +0100766 __raw_writeq(0, d->sbdma_dscrbase);
Ralf Baechle74b02472005-10-19 15:40:02 +0100767
Ralf Baechle20399732005-10-19 15:39:05 +0100768 __raw_writeq(0, d->sbdma_config0);
Ralf Baechle74b02472005-10-19 15:40:02 +0100769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 /*
771 * Zero ring pointers
772 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100773
Ralf Baechle20399732005-10-19 15:39:05 +0100774 d->sbdma_addptr = NULL;
775 d->sbdma_remptr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
Stephen Hemminger789585e2008-05-18 04:45:09 +0100778static inline void sbdma_align_skb(struct sk_buff *skb,
779 unsigned int power2, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Stephen Hemminger789585e2008-05-18 04:45:09 +0100781 unsigned char *addr = skb->data;
782 unsigned char *newaddr = PTR_ALIGN(addr, power2);
Ralf Baechle74b02472005-10-19 15:40:02 +0100783
Stephen Hemminger789585e2008-05-18 04:45:09 +0100784 skb_reserve(skb, newaddr - addr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
787
788/**********************************************************************
789 * SBDMA_ADD_RCVBUFFER(d,sb)
Ralf Baechle74b02472005-10-19 15:40:02 +0100790 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 * Add a buffer to the specified DMA channel. For receive channels,
792 * this queues a buffer for inbound packets.
Ralf Baechle74b02472005-10-19 15:40:02 +0100793 *
794 * Input parameters:
Stephen Hemminger789585e2008-05-18 04:45:09 +0100795 * sc - softc structure
796 * d - DMA channel descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 * sb - sk_buff to add, or NULL if we should allocate one
Ralf Baechle74b02472005-10-19 15:40:02 +0100798 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 * Return value:
800 * 0 if buffer could not be added (ring is full)
801 * 1 if buffer added successfully
802 ********************************************************************* */
803
804
Stephen Hemminger789585e2008-05-18 04:45:09 +0100805static int sbdma_add_rcvbuffer(struct sbmac_softc *sc, struct sbmacdma *d,
806 struct sk_buff *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Stephen Hemminger789585e2008-05-18 04:45:09 +0100808 struct net_device *dev = sc->sbm_dev;
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100809 struct sbdmadscr *dsc;
810 struct sbdmadscr *nextdsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 struct sk_buff *sb_new = NULL;
812 int pktsize = ENET_PACKET_SIZE;
Ralf Baechle74b02472005-10-19 15:40:02 +0100813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 /* get pointer to our current place in the ring */
Ralf Baechle74b02472005-10-19 15:40:02 +0100815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 dsc = d->sbdma_addptr;
817 nextdsc = SBDMA_NEXTBUF(d,sbdma_addptr);
Ralf Baechle74b02472005-10-19 15:40:02 +0100818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 /*
820 * figure out if the ring is full - if the next descriptor
821 * is the same as the one that we're going to remove from
822 * the ring, the ring is full
823 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (nextdsc == d->sbdma_remptr) {
826 return -ENOSPC;
827 }
828
Ralf Baechle74b02472005-10-19 15:40:02 +0100829 /*
830 * Allocate a sk_buff if we don't already have one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 * If we do have an sk_buff, reset it so that it's empty.
832 *
833 * Note: sk_buffs don't seem to be guaranteed to have any sort
834 * of alignment when they are allocated. Therefore, allocate enough
835 * extra space to make sure that:
836 *
837 * 1. the data does not start in the middle of a cache line.
838 * 2. The data does not end in the middle of a cache line
Ralf Baechle74b02472005-10-19 15:40:02 +0100839 * 3. The buffer can be aligned such that the IP addresses are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 * naturally aligned.
841 *
842 * Remember, the SOCs MAC writes whole cache lines at a time,
843 * without reading the old contents first. So, if the sk_buff's
844 * data portion starts in the middle of a cache line, the SOC
845 * DMA will trash the beginning (and ending) portions.
846 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (sb == NULL) {
Stephen Hemminger789585e2008-05-18 04:45:09 +0100849 sb_new = netdev_alloc_skb(dev, ENET_PACKET_SIZE +
850 SMP_CACHE_BYTES * 2 +
851 NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (sb_new == NULL) {
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100853 pr_info("%s: sk_buff allocation failed\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 d->sbdma_eth->sbm_dev->name);
855 return -ENOBUFS;
856 }
857
Stephen Hemminger789585e2008-05-18 04:45:09 +0100858 sbdma_align_skb(sb_new, SMP_CACHE_BYTES, NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860 else {
861 sb_new = sb;
Ralf Baechle74b02472005-10-19 15:40:02 +0100862 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 * nothing special to reinit buffer, it's already aligned
864 * and sb->data already points to a good place.
865 */
866 }
Ralf Baechle74b02472005-10-19 15:40:02 +0100867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 /*
Ralf Baechle74b02472005-10-19 15:40:02 +0100869 * fill in the descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872#ifdef CONFIG_SBMAC_COALESCE
873 /*
874 * Do not interrupt per DMA transfer.
875 */
David S. Miller689be432005-06-28 15:25:31 -0700876 dsc->dscr_a = virt_to_phys(sb_new->data) |
Stephen Hemminger789585e2008-05-18 04:45:09 +0100877 V_DMA_DSCRA_A_SIZE(NUMCACHEBLKS(pktsize + NET_IP_ALIGN)) | 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878#else
David S. Miller689be432005-06-28 15:25:31 -0700879 dsc->dscr_a = virt_to_phys(sb_new->data) |
Stephen Hemminger789585e2008-05-18 04:45:09 +0100880 V_DMA_DSCRA_A_SIZE(NUMCACHEBLKS(pktsize + NET_IP_ALIGN)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 M_DMA_DSCRA_INTERRUPT;
882#endif
883
884 /* receiving: no options */
885 dsc->dscr_b = 0;
Ralf Baechle74b02472005-10-19 15:40:02 +0100886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /*
Ralf Baechle74b02472005-10-19 15:40:02 +0100888 * fill in the context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 d->sbdma_ctxtable[dsc-d->sbdma_dscrtable] = sb_new;
Ralf Baechle74b02472005-10-19 15:40:02 +0100892
893 /*
894 * point at next packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 d->sbdma_addptr = nextdsc;
Ralf Baechle74b02472005-10-19 15:40:02 +0100898
899 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 * Give the buffer to the DMA engine.
901 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100902
Ralf Baechle20399732005-10-19 15:39:05 +0100903 __raw_writeq(1, d->sbdma_dscrcnt);
Ralf Baechle74b02472005-10-19 15:40:02 +0100904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return 0; /* we did it */
906}
907
908/**********************************************************************
909 * SBDMA_ADD_TXBUFFER(d,sb)
Ralf Baechle74b02472005-10-19 15:40:02 +0100910 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 * Add a transmit buffer to the specified DMA channel, causing a
912 * transmit to start.
Ralf Baechle74b02472005-10-19 15:40:02 +0100913 *
914 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 * d - DMA channel descriptor
916 * sb - sk_buff to add
Ralf Baechle74b02472005-10-19 15:40:02 +0100917 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 * Return value:
919 * 0 transmit queued successfully
920 * otherwise error code
921 ********************************************************************* */
922
923
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100924static int sbdma_add_txbuffer(struct sbmacdma *d, struct sk_buff *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100926 struct sbdmadscr *dsc;
927 struct sbdmadscr *nextdsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 uint64_t phys;
929 uint64_t ncb;
930 int length;
Ralf Baechle74b02472005-10-19 15:40:02 +0100931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 /* get pointer to our current place in the ring */
Ralf Baechle74b02472005-10-19 15:40:02 +0100933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 dsc = d->sbdma_addptr;
935 nextdsc = SBDMA_NEXTBUF(d,sbdma_addptr);
Ralf Baechle74b02472005-10-19 15:40:02 +0100936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 /*
938 * figure out if the ring is full - if the next descriptor
939 * is the same as the one that we're going to remove from
940 * the ring, the ring is full
941 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (nextdsc == d->sbdma_remptr) {
944 return -ENOSPC;
945 }
Ralf Baechle74b02472005-10-19 15:40:02 +0100946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 /*
948 * Under Linux, it's not necessary to copy/coalesce buffers
949 * like it is on NetBSD. We think they're all contiguous,
950 * but that may not be true for GBE.
951 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 length = sb->len;
Ralf Baechle74b02472005-10-19 15:40:02 +0100954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 /*
956 * fill in the descriptor. Note that the number of cache
957 * blocks in the descriptor is the number of blocks
958 * *spanned*, so we need to add in the offset (if any)
959 * while doing the calculation.
960 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 phys = virt_to_phys(sb->data);
963 ncb = NUMCACHEBLKS(length+(phys & (SMP_CACHE_BYTES - 1)));
964
Ralf Baechle74b02472005-10-19 15:40:02 +0100965 dsc->dscr_a = phys |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 V_DMA_DSCRA_A_SIZE(ncb) |
967#ifndef CONFIG_SBMAC_COALESCE
968 M_DMA_DSCRA_INTERRUPT |
969#endif
970 M_DMA_ETHTX_SOP;
Ralf Baechle74b02472005-10-19 15:40:02 +0100971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 /* transmitting: set outbound options and length */
973
974 dsc->dscr_b = V_DMA_DSCRB_OPTIONS(K_DMA_ETHTX_APPENDCRC_APPENDPAD) |
975 V_DMA_DSCRB_PKT_SIZE(length);
Ralf Baechle74b02472005-10-19 15:40:02 +0100976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 /*
Ralf Baechle74b02472005-10-19 15:40:02 +0100978 * fill in the context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 d->sbdma_ctxtable[dsc-d->sbdma_dscrtable] = sb;
Ralf Baechle74b02472005-10-19 15:40:02 +0100982
983 /*
984 * point at next packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 d->sbdma_addptr = nextdsc;
Ralf Baechle74b02472005-10-19 15:40:02 +0100988
989 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 * Give the buffer to the DMA engine.
991 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100992
Ralf Baechle20399732005-10-19 15:39:05 +0100993 __raw_writeq(1, d->sbdma_dscrcnt);
Ralf Baechle74b02472005-10-19 15:40:02 +0100994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return 0; /* we did it */
996}
997
998
999
1000
1001/**********************************************************************
1002 * SBDMA_EMPTYRING(d)
Ralf Baechle74b02472005-10-19 15:40:02 +01001003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 * Free all allocated sk_buffs on the specified DMA channel;
Ralf Baechle74b02472005-10-19 15:40:02 +01001005 *
1006 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 * d - DMA channel
Ralf Baechle74b02472005-10-19 15:40:02 +01001008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 * Return value:
1010 * nothing
1011 ********************************************************************* */
1012
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001013static void sbdma_emptyring(struct sbmacdma *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
1015 int idx;
1016 struct sk_buff *sb;
Ralf Baechle74b02472005-10-19 15:40:02 +01001017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 for (idx = 0; idx < d->sbdma_maxdescr; idx++) {
1019 sb = d->sbdma_ctxtable[idx];
1020 if (sb) {
1021 dev_kfree_skb(sb);
1022 d->sbdma_ctxtable[idx] = NULL;
1023 }
1024 }
1025}
1026
1027
1028/**********************************************************************
1029 * SBDMA_FILLRING(d)
Ralf Baechle74b02472005-10-19 15:40:02 +01001030 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 * Fill the specified DMA channel (must be receive channel)
1032 * with sk_buffs
Ralf Baechle74b02472005-10-19 15:40:02 +01001033 *
1034 * Input parameters:
Stephen Hemminger789585e2008-05-18 04:45:09 +01001035 * sc - softc structure
1036 * d - DMA channel
Ralf Baechle74b02472005-10-19 15:40:02 +01001037 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 * Return value:
1039 * nothing
1040 ********************************************************************* */
1041
Stephen Hemminger789585e2008-05-18 04:45:09 +01001042static void sbdma_fillring(struct sbmac_softc *sc, struct sbmacdma *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
1044 int idx;
Ralf Baechle74b02472005-10-19 15:40:02 +01001045
Stephen Hemminger789585e2008-05-18 04:45:09 +01001046 for (idx = 0; idx < SBMAC_MAX_RXDESCR - 1; idx++) {
1047 if (sbdma_add_rcvbuffer(sc, d, NULL) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 break;
1049 }
1050}
1051
Deepak Saxenad6830012007-03-19 15:43:11 -07001052#ifdef CONFIG_NET_POLL_CONTROLLER
1053static void sbmac_netpoll(struct net_device *netdev)
1054{
1055 struct sbmac_softc *sc = netdev_priv(netdev);
1056 int irq = sc->sbm_dev->irq;
1057
1058 __raw_writeq(0, sc->sbm_imr);
1059
Yoann Padioleau0da2f0f2007-07-06 02:39:56 -07001060 sbmac_intr(irq, netdev);
Deepak Saxenad6830012007-03-19 15:43:11 -07001061
1062#ifdef CONFIG_SBMAC_COALESCE
1063 __raw_writeq(((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_TX_CH0) |
1064 ((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_RX_CH0),
1065 sc->sbm_imr);
1066#else
Jeff Garzik7d2e3cb2008-05-13 01:41:58 -04001067 __raw_writeq((M_MAC_INT_CHANNEL << S_MAC_TX_CH0) |
Deepak Saxenad6830012007-03-19 15:43:11 -07001068 (M_MAC_INT_CHANNEL << S_MAC_RX_CH0), sc->sbm_imr);
1069#endif
1070}
1071#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073/**********************************************************************
Mark Mason693aa942007-04-26 00:23:22 -07001074 * SBDMA_RX_PROCESS(sc,d,work_to_do,poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 *
Ralf Baechle74b02472005-10-19 15:40:02 +01001076 * Process "completed" receive buffers on the specified DMA channel.
Ralf Baechle74b02472005-10-19 15:40:02 +01001077 *
1078 * Input parameters:
Mark Mason693aa942007-04-26 00:23:22 -07001079 * sc - softc structure
1080 * d - DMA channel context
1081 * work_to_do - no. of packets to process before enabling interrupt
1082 * again (for NAPI)
1083 * poll - 1: using polling (for NAPI)
Ralf Baechle74b02472005-10-19 15:40:02 +01001084 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 * Return value:
1086 * nothing
1087 ********************************************************************* */
1088
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001089static int sbdma_rx_process(struct sbmac_softc *sc, struct sbmacdma *d,
1090 int work_to_do, int poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001092 struct net_device *dev = sc->sbm_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 int curidx;
1094 int hwidx;
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001095 struct sbdmadscr *dsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 struct sk_buff *sb;
1097 int len;
Mark Mason693aa942007-04-26 00:23:22 -07001098 int work_done = 0;
1099 int dropped = 0;
Ralf Baechle74b02472005-10-19 15:40:02 +01001100
Mark Mason693aa942007-04-26 00:23:22 -07001101 prefetch(d);
1102
1103again:
1104 /* Check if the HW dropped any frames */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001105 dev->stats.rx_fifo_errors
Mark Mason693aa942007-04-26 00:23:22 -07001106 += __raw_readq(sc->sbm_rxdma.sbdma_oodpktlost) & 0xffff;
1107 __raw_writeq(0, sc->sbm_rxdma.sbdma_oodpktlost);
1108
1109 while (work_to_do-- > 0) {
Ralf Baechle74b02472005-10-19 15:40:02 +01001110 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 * figure out where we are (as an index) and where
1112 * the hardware is (also as an index)
1113 *
Ralf Baechle74b02472005-10-19 15:40:02 +01001114 * This could be done faster if (for example) the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 * descriptor table was page-aligned and contiguous in
1116 * both virtual and physical memory -- you could then
1117 * just compare the low-order bits of the virtual address
1118 * (sbdma_remptr) and the physical address (sbdma_curdscr CSR)
1119 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001120
Mark Mason693aa942007-04-26 00:23:22 -07001121 dsc = d->sbdma_remptr;
1122 curidx = dsc - d->sbdma_dscrtable;
1123
1124 prefetch(dsc);
1125 prefetch(&d->sbdma_ctxtable[curidx]);
1126
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001127 hwidx = ((__raw_readq(d->sbdma_curdscr) & M_DMA_CURDSCR_ADDR) -
1128 d->sbdma_dscrtable_phys) /
1129 sizeof(*d->sbdma_dscrtable);
Ralf Baechle74b02472005-10-19 15:40:02 +01001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 /*
1132 * If they're the same, that means we've processed all
1133 * of the descriptors up to (but not including) the one that
1134 * the hardware is working on right now.
1135 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 if (curidx == hwidx)
Mark Mason693aa942007-04-26 00:23:22 -07001138 goto done;
Ralf Baechle74b02472005-10-19 15:40:02 +01001139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 /*
1141 * Otherwise, get the packet's sk_buff ptr back
1142 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 sb = d->sbdma_ctxtable[curidx];
1145 d->sbdma_ctxtable[curidx] = NULL;
Ralf Baechle74b02472005-10-19 15:40:02 +01001146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 len = (int)G_DMA_DSCRB_PKT_SIZE(dsc->dscr_b) - 4;
Ralf Baechle74b02472005-10-19 15:40:02 +01001148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 /*
1150 * Check packet status. If good, process it.
1151 * If not, silently drop it and put it back on the
1152 * receive ring.
1153 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001154
Mark Mason693aa942007-04-26 00:23:22 -07001155 if (likely (!(dsc->dscr_a & M_DMA_ETHRX_BAD))) {
Ralf Baechle74b02472005-10-19 15:40:02 +01001156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 /*
1158 * Add a new buffer to replace the old one. If we fail
1159 * to allocate a buffer, we're going to drop this
1160 * packet and put it right back on the receive ring.
1161 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001162
Stephen Hemminger789585e2008-05-18 04:45:09 +01001163 if (unlikely(sbdma_add_rcvbuffer(sc, d, NULL) ==
1164 -ENOBUFS)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001165 dev->stats.rx_dropped++;
Stephen Hemminger789585e2008-05-18 04:45:09 +01001166 /* Re-add old buffer */
1167 sbdma_add_rcvbuffer(sc, d, sb);
Mark Mason693aa942007-04-26 00:23:22 -07001168 /* No point in continuing at the moment */
1169 printk(KERN_ERR "dropped packet (1)\n");
1170 d->sbdma_remptr = SBDMA_NEXTBUF(d,sbdma_remptr);
1171 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 } else {
1173 /*
1174 * Set length into the packet
1175 */
1176 skb_put(sb,len);
Ralf Baechle74b02472005-10-19 15:40:02 +01001177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 /*
1179 * Buffer has been replaced on the
1180 * receive ring. Pass the buffer to
1181 * the kernel
1182 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 sb->protocol = eth_type_trans(sb,d->sbdma_eth->sbm_dev);
1184 /* Check hw IPv4/TCP checksum if supported */
1185 if (sc->rx_hw_checksum == ENABLE) {
1186 if (!((dsc->dscr_a) & M_DMA_ETHRX_BADIP4CS) &&
1187 !((dsc->dscr_a) & M_DMA_ETHRX_BADTCPCS)) {
1188 sb->ip_summed = CHECKSUM_UNNECESSARY;
1189 /* don't need to set sb->csum */
1190 } else {
1191 sb->ip_summed = CHECKSUM_NONE;
1192 }
1193 }
Mark Mason693aa942007-04-26 00:23:22 -07001194 prefetch(sb->data);
1195 prefetch((const void *)(((char *)sb->data)+32));
1196 if (poll)
1197 dropped = netif_receive_skb(sb);
1198 else
1199 dropped = netif_rx(sb);
Ralf Baechle74b02472005-10-19 15:40:02 +01001200
Mark Mason693aa942007-04-26 00:23:22 -07001201 if (dropped == NET_RX_DROP) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001202 dev->stats.rx_dropped++;
Mark Mason693aa942007-04-26 00:23:22 -07001203 d->sbdma_remptr = SBDMA_NEXTBUF(d,sbdma_remptr);
1204 goto done;
1205 }
1206 else {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001207 dev->stats.rx_bytes += len;
1208 dev->stats.rx_packets++;
Mark Mason693aa942007-04-26 00:23:22 -07001209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
1211 } else {
1212 /*
1213 * Packet was mangled somehow. Just drop it and
1214 * put it back on the receive ring.
1215 */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001216 dev->stats.rx_errors++;
Stephen Hemminger789585e2008-05-18 04:45:09 +01001217 sbdma_add_rcvbuffer(sc, d, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001219
1220
1221 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 * .. and advance to the next buffer.
1223 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 d->sbdma_remptr = SBDMA_NEXTBUF(d,sbdma_remptr);
Mark Mason693aa942007-04-26 00:23:22 -07001226 work_done++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 }
Mark Mason693aa942007-04-26 00:23:22 -07001228 if (!poll) {
1229 work_to_do = 32;
1230 goto again; /* collect fifo drop statistics again */
1231 }
1232done:
1233 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236/**********************************************************************
1237 * SBDMA_TX_PROCESS(sc,d)
Ralf Baechle74b02472005-10-19 15:40:02 +01001238 *
1239 * Process "completed" transmit buffers on the specified DMA channel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 * This is normally called within the interrupt service routine.
1241 * Note that this isn't really ideal for priority channels, since
Ralf Baechle74b02472005-10-19 15:40:02 +01001242 * it processes all of the packets on a given channel before
1243 * returning.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 *
Ralf Baechle74b02472005-10-19 15:40:02 +01001245 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 * sc - softc structure
Mark Mason693aa942007-04-26 00:23:22 -07001247 * d - DMA channel context
1248 * poll - 1: using polling (for NAPI)
Ralf Baechle74b02472005-10-19 15:40:02 +01001249 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 * Return value:
1251 * nothing
1252 ********************************************************************* */
1253
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001254static void sbdma_tx_process(struct sbmac_softc *sc, struct sbmacdma *d,
1255 int poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001257 struct net_device *dev = sc->sbm_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 int curidx;
1259 int hwidx;
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001260 struct sbdmadscr *dsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 struct sk_buff *sb;
1262 unsigned long flags;
Mark Mason693aa942007-04-26 00:23:22 -07001263 int packets_handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 spin_lock_irqsave(&(sc->sbm_lock), flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01001266
Mark Mason693aa942007-04-26 00:23:22 -07001267 if (d->sbdma_remptr == d->sbdma_addptr)
1268 goto end_unlock;
1269
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001270 hwidx = ((__raw_readq(d->sbdma_curdscr) & M_DMA_CURDSCR_ADDR) -
1271 d->sbdma_dscrtable_phys) / sizeof(*d->sbdma_dscrtable);
Mark Mason693aa942007-04-26 00:23:22 -07001272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 for (;;) {
Ralf Baechle74b02472005-10-19 15:40:02 +01001274 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 * figure out where we are (as an index) and where
1276 * the hardware is (also as an index)
1277 *
Ralf Baechle74b02472005-10-19 15:40:02 +01001278 * This could be done faster if (for example) the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 * descriptor table was page-aligned and contiguous in
1280 * both virtual and physical memory -- you could then
1281 * just compare the low-order bits of the virtual address
1282 * (sbdma_remptr) and the physical address (sbdma_curdscr CSR)
1283 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 curidx = d->sbdma_remptr - d->sbdma_dscrtable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 /*
1288 * If they're the same, that means we've processed all
1289 * of the descriptors up to (but not including) the one that
1290 * the hardware is working on right now.
1291 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (curidx == hwidx)
1294 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 /*
1297 * Otherwise, get the packet's sk_buff ptr back
1298 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 dsc = &(d->sbdma_dscrtable[curidx]);
1301 sb = d->sbdma_ctxtable[curidx];
1302 d->sbdma_ctxtable[curidx] = NULL;
Ralf Baechle74b02472005-10-19 15:40:02 +01001303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 /*
1305 * Stats
1306 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001307
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001308 dev->stats.tx_bytes += sb->len;
1309 dev->stats.tx_packets++;
Ralf Baechle74b02472005-10-19 15:40:02 +01001310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 /*
1312 * for transmits, we just free buffers.
1313 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 dev_kfree_skb_irq(sb);
Ralf Baechle74b02472005-10-19 15:40:02 +01001316
1317 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 * .. and advance to the next buffer.
1319 */
1320
1321 d->sbdma_remptr = SBDMA_NEXTBUF(d,sbdma_remptr);
Ralf Baechle74b02472005-10-19 15:40:02 +01001322
Mark Mason693aa942007-04-26 00:23:22 -07001323 packets_handled++;
1324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 /*
1328 * Decide if we should wake up the protocol or not.
1329 * Other drivers seem to do this when we reach a low
1330 * watermark on the transmit queue.
1331 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001332
Mark Mason693aa942007-04-26 00:23:22 -07001333 if (packets_handled)
1334 netif_wake_queue(d->sbdma_eth->sbm_dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01001335
Mark Mason693aa942007-04-26 00:23:22 -07001336end_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 spin_unlock_irqrestore(&(sc->sbm_lock), flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01001338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
1341
1342
1343/**********************************************************************
1344 * SBMAC_INITCTX(s)
Ralf Baechle74b02472005-10-19 15:40:02 +01001345 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 * Initialize an Ethernet context structure - this is called
1347 * once per MAC on the 1250. Memory is allocated here, so don't
1348 * call it again from inside the ioctl routines that bring the
1349 * interface up/down
Ralf Baechle74b02472005-10-19 15:40:02 +01001350 *
1351 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 * s - sbmac context structure
Ralf Baechle74b02472005-10-19 15:40:02 +01001353 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 * Return value:
1355 * 0
1356 ********************************************************************* */
1357
1358static int sbmac_initctx(struct sbmac_softc *s)
1359{
Ralf Baechle74b02472005-10-19 15:40:02 +01001360
1361 /*
1362 * figure out the addresses of some ports
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 s->sbm_macenable = s->sbm_base + R_MAC_ENABLE;
1366 s->sbm_maccfg = s->sbm_base + R_MAC_CFG;
1367 s->sbm_fifocfg = s->sbm_base + R_MAC_THRSH_CFG;
1368 s->sbm_framecfg = s->sbm_base + R_MAC_FRAMECFG;
1369 s->sbm_rxfilter = s->sbm_base + R_MAC_ADFILTER_CFG;
1370 s->sbm_isr = s->sbm_base + R_MAC_STATUS;
1371 s->sbm_imr = s->sbm_base + R_MAC_INT_MASK;
1372 s->sbm_mdio = s->sbm_base + R_MAC_MDIO;
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 /*
1375 * Initialize the DMA channels. Right now, only one per MAC is used
1376 * Note: Only do this _once_, as it allocates memory from the kernel!
1377 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 sbdma_initctx(&(s->sbm_txdma),s,0,DMA_TX,SBMAC_MAX_TXDESCR);
1380 sbdma_initctx(&(s->sbm_rxdma),s,0,DMA_RX,SBMAC_MAX_RXDESCR);
Ralf Baechle74b02472005-10-19 15:40:02 +01001381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 /*
1383 * initial state is OFF
1384 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 s->sbm_state = sbmac_state_off;
Ralf Baechle74b02472005-10-19 15:40:02 +01001387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 return 0;
1389}
1390
1391
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001392static void sbdma_uninitctx(struct sbmacdma *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
Mark Mason693aa942007-04-26 00:23:22 -07001394 if (d->sbdma_dscrtable_unaligned) {
1395 kfree(d->sbdma_dscrtable_unaligned);
1396 d->sbdma_dscrtable_unaligned = d->sbdma_dscrtable = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 if (d->sbdma_ctxtable) {
1400 kfree(d->sbdma_ctxtable);
1401 d->sbdma_ctxtable = NULL;
1402 }
1403}
1404
1405
1406static void sbmac_uninitctx(struct sbmac_softc *sc)
1407{
1408 sbdma_uninitctx(&(sc->sbm_txdma));
1409 sbdma_uninitctx(&(sc->sbm_rxdma));
1410}
1411
1412
1413/**********************************************************************
1414 * SBMAC_CHANNEL_START(s)
Ralf Baechle74b02472005-10-19 15:40:02 +01001415 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 * Start packet processing on this MAC.
Ralf Baechle74b02472005-10-19 15:40:02 +01001417 *
1418 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 * s - sbmac structure
Ralf Baechle74b02472005-10-19 15:40:02 +01001420 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 * Return value:
1422 * nothing
1423 ********************************************************************* */
1424
1425static void sbmac_channel_start(struct sbmac_softc *s)
1426{
1427 uint64_t reg;
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001428 void __iomem *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 uint64_t cfg,fifo,framecfg;
1430 int idx, th_value;
Ralf Baechle74b02472005-10-19 15:40:02 +01001431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 /*
1433 * Don't do this if running
1434 */
1435
1436 if (s->sbm_state == sbmac_state_on)
1437 return;
Ralf Baechle74b02472005-10-19 15:40:02 +01001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 /*
1440 * Bring the controller out of reset, but leave it off.
1441 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001442
Ralf Baechle20399732005-10-19 15:39:05 +01001443 __raw_writeq(0, s->sbm_macenable);
Ralf Baechle74b02472005-10-19 15:40:02 +01001444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 /*
1446 * Ignore all received packets
1447 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001448
Ralf Baechle20399732005-10-19 15:39:05 +01001449 __raw_writeq(0, s->sbm_rxfilter);
Ralf Baechle74b02472005-10-19 15:40:02 +01001450
1451 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 * Calculate values for various control registers.
1453 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 cfg = M_MAC_RETRY_EN |
Ralf Baechle74b02472005-10-19 15:40:02 +01001456 M_MAC_TX_HOLD_SOP_EN |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 V_MAC_TX_PAUSE_CNT_16K |
1458 M_MAC_AP_STAT_EN |
1459 M_MAC_FAST_SYNC |
1460 M_MAC_SS_EN |
1461 0;
Ralf Baechle74b02472005-10-19 15:40:02 +01001462
1463 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 * Be sure that RD_THRSH+WR_THRSH <= 32 for pass1 pars
1465 * and make sure that RD_THRSH + WR_THRSH <=128 for pass2 and above
1466 * Use a larger RD_THRSH for gigabit
1467 */
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001468 if (soc_type == K_SYS_SOC_TYPE_BCM1250 && periph_rev < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 th_value = 28;
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001470 else
1471 th_value = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 fifo = V_MAC_TX_WR_THRSH(4) | /* Must be '4' or '8' */
1474 ((s->sbm_speed == sbmac_speed_1000)
1475 ? V_MAC_TX_RD_THRSH(th_value) : V_MAC_TX_RD_THRSH(4)) |
1476 V_MAC_TX_RL_THRSH(4) |
1477 V_MAC_RX_PL_THRSH(4) |
1478 V_MAC_RX_RD_THRSH(4) | /* Must be '4' */
1479 V_MAC_RX_PL_THRSH(4) |
1480 V_MAC_RX_RL_THRSH(8) |
1481 0;
1482
1483 framecfg = V_MAC_MIN_FRAMESZ_DEFAULT |
1484 V_MAC_MAX_FRAMESZ_DEFAULT |
1485 V_MAC_BACKOFF_SEL(1);
1486
1487 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001488 * Clear out the hash address map
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 port = s->sbm_base + R_MAC_HASH_BASE;
1492 for (idx = 0; idx < MAC_HASH_COUNT; idx++) {
Ralf Baechle20399732005-10-19 15:39:05 +01001493 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 port += sizeof(uint64_t);
1495 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 /*
1498 * Clear out the exact-match table
1499 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 port = s->sbm_base + R_MAC_ADDR_BASE;
1502 for (idx = 0; idx < MAC_ADDR_COUNT; idx++) {
Ralf Baechle20399732005-10-19 15:39:05 +01001503 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 port += sizeof(uint64_t);
1505 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 /*
1508 * Clear out the DMA Channel mapping table registers
1509 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 port = s->sbm_base + R_MAC_CHUP0_BASE;
1512 for (idx = 0; idx < MAC_CHMAP_COUNT; idx++) {
Ralf Baechle20399732005-10-19 15:39:05 +01001513 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 port += sizeof(uint64_t);
1515 }
1516
1517
1518 port = s->sbm_base + R_MAC_CHLO0_BASE;
1519 for (idx = 0; idx < MAC_CHMAP_COUNT; idx++) {
Ralf Baechle20399732005-10-19 15:39:05 +01001520 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 port += sizeof(uint64_t);
1522 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 /*
1525 * Program the hardware address. It goes into the hardware-address
1526 * register as well as the first filter register.
1527 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 reg = sbmac_addr2reg(s->sbm_hwaddr);
Ralf Baechle74b02472005-10-19 15:40:02 +01001530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 port = s->sbm_base + R_MAC_ADDR_BASE;
Ralf Baechle20399732005-10-19 15:39:05 +01001532 __raw_writeq(reg, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 port = s->sbm_base + R_MAC_ETHERNET_ADDR;
1534
1535#ifdef CONFIG_SB1_PASS_1_WORKAROUNDS
1536 /*
1537 * Pass1 SOCs do not receive packets addressed to the
1538 * destination address in the R_MAC_ETHERNET_ADDR register.
1539 * Set the value to zero.
1540 */
Ralf Baechle20399732005-10-19 15:39:05 +01001541 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542#else
Ralf Baechle20399732005-10-19 15:39:05 +01001543 __raw_writeq(reg, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544#endif
Ralf Baechle74b02472005-10-19 15:40:02 +01001545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 /*
1547 * Set the receive filter for no packets, and write values
1548 * to the various config registers
1549 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001550
Ralf Baechle20399732005-10-19 15:39:05 +01001551 __raw_writeq(0, s->sbm_rxfilter);
1552 __raw_writeq(0, s->sbm_imr);
1553 __raw_writeq(framecfg, s->sbm_framecfg);
1554 __raw_writeq(fifo, s->sbm_fifocfg);
1555 __raw_writeq(cfg, s->sbm_maccfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01001556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 /*
1558 * Initialize DMA channels (rings should be ok now)
1559 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 sbdma_channel_start(&(s->sbm_rxdma), DMA_RX);
1562 sbdma_channel_start(&(s->sbm_txdma), DMA_TX);
Ralf Baechle74b02472005-10-19 15:40:02 +01001563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 /*
1565 * Configure the speed, duplex, and flow control
1566 */
1567
1568 sbmac_set_speed(s,s->sbm_speed);
1569 sbmac_set_duplex(s,s->sbm_duplex,s->sbm_fc);
Ralf Baechle74b02472005-10-19 15:40:02 +01001570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 /*
1572 * Fill the receive ring
1573 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001574
Stephen Hemminger789585e2008-05-18 04:45:09 +01001575 sbdma_fillring(s, &(s->sbm_rxdma));
Ralf Baechle74b02472005-10-19 15:40:02 +01001576
1577 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 * Turn on the rest of the bits in the enable register
Ralf Baechle74b02472005-10-19 15:40:02 +01001579 */
1580
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001581#if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
1582 __raw_writeq(M_MAC_RXDMA_EN0 |
1583 M_MAC_TXDMA_EN0, s->sbm_macenable);
1584#elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
Ralf Baechle20399732005-10-19 15:39:05 +01001585 __raw_writeq(M_MAC_RXDMA_EN0 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 M_MAC_TXDMA_EN0 |
1587 M_MAC_RX_ENABLE |
Ralf Baechle20399732005-10-19 15:39:05 +01001588 M_MAC_TX_ENABLE, s->sbm_macenable);
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001589#else
1590#error invalid SiByte MAC configuation
1591#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593#ifdef CONFIG_SBMAC_COALESCE
Ralf Baechle20399732005-10-19 15:39:05 +01001594 __raw_writeq(((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_TX_CH0) |
1595 ((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_RX_CH0), s->sbm_imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596#else
Ralf Baechle20399732005-10-19 15:39:05 +01001597 __raw_writeq((M_MAC_INT_CHANNEL << S_MAC_TX_CH0) |
1598 (M_MAC_INT_CHANNEL << S_MAC_RX_CH0), s->sbm_imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599#endif
Ralf Baechle74b02472005-10-19 15:40:02 +01001600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001602 * Enable receiving unicasts and broadcasts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001604
1605 __raw_writeq(M_MAC_UCAST_EN | M_MAC_BCAST_EN, s->sbm_rxfilter);
1606
1607 /*
1608 * we're running now.
1609 */
1610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 s->sbm_state = sbmac_state_on;
Ralf Baechle74b02472005-10-19 15:40:02 +01001612
1613 /*
1614 * Program multicast addresses
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 sbmac_setmulti(s);
Ralf Baechle74b02472005-10-19 15:40:02 +01001618
1619 /*
1620 * If channel was in promiscuous mode before, turn that on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001622
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 if (s->sbm_devflags & IFF_PROMISC) {
1624 sbmac_promiscuous_mode(s,1);
1625 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
1628
1629
1630/**********************************************************************
1631 * SBMAC_CHANNEL_STOP(s)
Ralf Baechle74b02472005-10-19 15:40:02 +01001632 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 * Stop packet processing on this MAC.
Ralf Baechle74b02472005-10-19 15:40:02 +01001634 *
1635 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 * s - sbmac structure
Ralf Baechle74b02472005-10-19 15:40:02 +01001637 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 * Return value:
1639 * nothing
1640 ********************************************************************* */
1641
1642static void sbmac_channel_stop(struct sbmac_softc *s)
1643{
1644 /* don't do this if already stopped */
Ralf Baechle74b02472005-10-19 15:40:02 +01001645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 if (s->sbm_state == sbmac_state_off)
1647 return;
Ralf Baechle74b02472005-10-19 15:40:02 +01001648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 /* don't accept any packets, disable all interrupts */
Ralf Baechle74b02472005-10-19 15:40:02 +01001650
Ralf Baechle20399732005-10-19 15:39:05 +01001651 __raw_writeq(0, s->sbm_rxfilter);
1652 __raw_writeq(0, s->sbm_imr);
Ralf Baechle74b02472005-10-19 15:40:02 +01001653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 /* Turn off ticker */
Ralf Baechle74b02472005-10-19 15:40:02 +01001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 /* XXX */
Ralf Baechle74b02472005-10-19 15:40:02 +01001657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 /* turn off receiver and transmitter */
Ralf Baechle74b02472005-10-19 15:40:02 +01001659
Ralf Baechle20399732005-10-19 15:39:05 +01001660 __raw_writeq(0, s->sbm_macenable);
Ralf Baechle74b02472005-10-19 15:40:02 +01001661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 /* We're stopped now. */
Ralf Baechle74b02472005-10-19 15:40:02 +01001663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 s->sbm_state = sbmac_state_off;
Ralf Baechle74b02472005-10-19 15:40:02 +01001665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 /*
1667 * Stop DMA channels (rings should be ok now)
1668 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 sbdma_channel_stop(&(s->sbm_rxdma));
1671 sbdma_channel_stop(&(s->sbm_txdma));
Ralf Baechle74b02472005-10-19 15:40:02 +01001672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 /* Empty the receive and transmit rings */
Ralf Baechle74b02472005-10-19 15:40:02 +01001674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 sbdma_emptyring(&(s->sbm_rxdma));
1676 sbdma_emptyring(&(s->sbm_txdma));
Ralf Baechle74b02472005-10-19 15:40:02 +01001677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678}
1679
1680/**********************************************************************
1681 * SBMAC_SET_CHANNEL_STATE(state)
Ralf Baechle74b02472005-10-19 15:40:02 +01001682 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 * Set the channel's state ON or OFF
Ralf Baechle74b02472005-10-19 15:40:02 +01001684 *
1685 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 * state - new state
Ralf Baechle74b02472005-10-19 15:40:02 +01001687 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 * Return value:
1689 * old state
1690 ********************************************************************* */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001691static enum sbmac_state sbmac_set_channel_state(struct sbmac_softc *sc,
1692 enum sbmac_state state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693{
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001694 enum sbmac_state oldstate = sc->sbm_state;
Ralf Baechle74b02472005-10-19 15:40:02 +01001695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 /*
1697 * If same as previous state, return
1698 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 if (state == oldstate) {
1701 return oldstate;
1702 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001705 * If new state is ON, turn channel on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 if (state == sbmac_state_on) {
1709 sbmac_channel_start(sc);
1710 }
1711 else {
1712 sbmac_channel_stop(sc);
1713 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 /*
1716 * Return previous state
1717 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 return oldstate;
1720}
1721
1722
1723/**********************************************************************
1724 * SBMAC_PROMISCUOUS_MODE(sc,onoff)
Ralf Baechle74b02472005-10-19 15:40:02 +01001725 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 * Turn on or off promiscuous mode
Ralf Baechle74b02472005-10-19 15:40:02 +01001727 *
1728 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 * sc - softc
1730 * onoff - 1 to turn on, 0 to turn off
Ralf Baechle74b02472005-10-19 15:40:02 +01001731 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 * Return value:
1733 * nothing
1734 ********************************************************************* */
1735
1736static void sbmac_promiscuous_mode(struct sbmac_softc *sc,int onoff)
1737{
1738 uint64_t reg;
Ralf Baechle74b02472005-10-19 15:40:02 +01001739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (sc->sbm_state != sbmac_state_on)
1741 return;
Ralf Baechle74b02472005-10-19 15:40:02 +01001742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 if (onoff) {
Ralf Baechle20399732005-10-19 15:39:05 +01001744 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 reg |= M_MAC_ALLPKT_EN;
Ralf Baechle20399732005-10-19 15:39:05 +01001746 __raw_writeq(reg, sc->sbm_rxfilter);
Ralf Baechle74b02472005-10-19 15:40:02 +01001747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 else {
Ralf Baechle20399732005-10-19 15:39:05 +01001749 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 reg &= ~M_MAC_ALLPKT_EN;
Ralf Baechle20399732005-10-19 15:39:05 +01001751 __raw_writeq(reg, sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 }
1753}
1754
1755/**********************************************************************
1756 * SBMAC_SETIPHDR_OFFSET(sc,onoff)
Ralf Baechle74b02472005-10-19 15:40:02 +01001757 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 * Set the iphdr offset as 15 assuming ethernet encapsulation
Ralf Baechle74b02472005-10-19 15:40:02 +01001759 *
1760 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 * sc - softc
Ralf Baechle74b02472005-10-19 15:40:02 +01001762 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 * Return value:
1764 * nothing
1765 ********************************************************************* */
1766
1767static void sbmac_set_iphdr_offset(struct sbmac_softc *sc)
1768{
1769 uint64_t reg;
Ralf Baechle74b02472005-10-19 15:40:02 +01001770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 /* Hard code the off set to 15 for now */
Ralf Baechle20399732005-10-19 15:39:05 +01001772 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 reg &= ~M_MAC_IPHDR_OFFSET | V_MAC_IPHDR_OFFSET(15);
Ralf Baechle20399732005-10-19 15:39:05 +01001774 __raw_writeq(reg, sc->sbm_rxfilter);
Ralf Baechle74b02472005-10-19 15:40:02 +01001775
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001776 /* BCM1250 pass1 didn't have hardware checksum. Everything
1777 later does. */
1778 if (soc_type == K_SYS_SOC_TYPE_BCM1250 && periph_rev < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 sc->rx_hw_checksum = DISABLE;
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001780 } else {
1781 sc->rx_hw_checksum = ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 }
1783}
1784
1785
1786/**********************************************************************
1787 * SBMAC_ADDR2REG(ptr)
Ralf Baechle74b02472005-10-19 15:40:02 +01001788 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 * Convert six bytes into the 64-bit register value that
1790 * we typically write into the SBMAC's address/mcast registers
Ralf Baechle74b02472005-10-19 15:40:02 +01001791 *
1792 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 * ptr - pointer to 6 bytes
Ralf Baechle74b02472005-10-19 15:40:02 +01001794 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 * Return value:
1796 * register value
1797 ********************************************************************* */
1798
1799static uint64_t sbmac_addr2reg(unsigned char *ptr)
1800{
1801 uint64_t reg = 0;
Ralf Baechle74b02472005-10-19 15:40:02 +01001802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 ptr += 6;
Ralf Baechle74b02472005-10-19 15:40:02 +01001804
1805 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001807 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001809 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001811 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001813 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001815 reg |= (uint64_t) *(--ptr);
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return reg;
1818}
1819
1820
1821/**********************************************************************
1822 * SBMAC_SET_SPEED(s,speed)
Ralf Baechle74b02472005-10-19 15:40:02 +01001823 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 * Configure LAN speed for the specified MAC.
1825 * Warning: must be called when MAC is off!
Ralf Baechle74b02472005-10-19 15:40:02 +01001826 *
1827 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 * s - sbmac structure
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001829 * speed - speed to set MAC to (see enum sbmac_speed)
Ralf Baechle74b02472005-10-19 15:40:02 +01001830 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 * Return value:
1832 * 1 if successful
1833 * 0 indicates invalid parameters
1834 ********************************************************************* */
1835
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001836static int sbmac_set_speed(struct sbmac_softc *s, enum sbmac_speed speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
1838 uint64_t cfg;
1839 uint64_t framecfg;
1840
1841 /*
1842 * Save new current values
1843 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 s->sbm_speed = speed;
Ralf Baechle74b02472005-10-19 15:40:02 +01001846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 if (s->sbm_state == sbmac_state_on)
1848 return 0; /* save for next restart */
1849
1850 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001851 * Read current register values
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001853
Ralf Baechle20399732005-10-19 15:39:05 +01001854 cfg = __raw_readq(s->sbm_maccfg);
1855 framecfg = __raw_readq(s->sbm_framecfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01001856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 /*
1858 * Mask out the stuff we want to change
1859 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 cfg &= ~(M_MAC_BURST_EN | M_MAC_SPEED_SEL);
1862 framecfg &= ~(M_MAC_IFG_RX | M_MAC_IFG_TX | M_MAC_IFG_THRSH |
1863 M_MAC_SLOT_SIZE);
Ralf Baechle74b02472005-10-19 15:40:02 +01001864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 /*
1866 * Now add in the new bits
1867 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 switch (speed) {
1870 case sbmac_speed_10:
1871 framecfg |= V_MAC_IFG_RX_10 |
1872 V_MAC_IFG_TX_10 |
1873 K_MAC_IFG_THRSH_10 |
1874 V_MAC_SLOT_SIZE_10;
1875 cfg |= V_MAC_SPEED_SEL_10MBPS;
1876 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 case sbmac_speed_100:
1879 framecfg |= V_MAC_IFG_RX_100 |
1880 V_MAC_IFG_TX_100 |
1881 V_MAC_IFG_THRSH_100 |
1882 V_MAC_SLOT_SIZE_100;
1883 cfg |= V_MAC_SPEED_SEL_100MBPS ;
1884 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 case sbmac_speed_1000:
1887 framecfg |= V_MAC_IFG_RX_1000 |
1888 V_MAC_IFG_TX_1000 |
1889 V_MAC_IFG_THRSH_1000 |
1890 V_MAC_SLOT_SIZE_1000;
1891 cfg |= V_MAC_SPEED_SEL_1000MBPS | M_MAC_BURST_EN;
1892 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 default:
1895 return 0;
1896 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001899 * Send the bits back to the hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001901
Ralf Baechle20399732005-10-19 15:39:05 +01001902 __raw_writeq(framecfg, s->sbm_framecfg);
1903 __raw_writeq(cfg, s->sbm_maccfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01001904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 return 1;
1906}
1907
1908/**********************************************************************
1909 * SBMAC_SET_DUPLEX(s,duplex,fc)
Ralf Baechle74b02472005-10-19 15:40:02 +01001910 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 * Set Ethernet duplex and flow control options for this MAC
1912 * Warning: must be called when MAC is off!
Ralf Baechle74b02472005-10-19 15:40:02 +01001913 *
1914 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 * s - sbmac structure
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001916 * duplex - duplex setting (see enum sbmac_duplex)
1917 * fc - flow control setting (see enum sbmac_fc)
Ralf Baechle74b02472005-10-19 15:40:02 +01001918 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 * Return value:
1920 * 1 if ok
1921 * 0 if an invalid parameter combination was specified
1922 ********************************************************************* */
1923
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001924static int sbmac_set_duplex(struct sbmac_softc *s, enum sbmac_duplex duplex,
1925 enum sbmac_fc fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
1927 uint64_t cfg;
Ralf Baechle74b02472005-10-19 15:40:02 +01001928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 /*
1930 * Save new current values
1931 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 s->sbm_duplex = duplex;
1934 s->sbm_fc = fc;
Ralf Baechle74b02472005-10-19 15:40:02 +01001935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 if (s->sbm_state == sbmac_state_on)
1937 return 0; /* save for next restart */
Ralf Baechle74b02472005-10-19 15:40:02 +01001938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001940 * Read current register values
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001942
Ralf Baechle20399732005-10-19 15:39:05 +01001943 cfg = __raw_readq(s->sbm_maccfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01001944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 /*
1946 * Mask off the stuff we're about to change
1947 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 cfg &= ~(M_MAC_FC_SEL | M_MAC_FC_CMD | M_MAC_HDX_EN);
Ralf Baechle74b02472005-10-19 15:40:02 +01001950
1951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 switch (duplex) {
1953 case sbmac_duplex_half:
1954 switch (fc) {
1955 case sbmac_fc_disabled:
1956 cfg |= M_MAC_HDX_EN | V_MAC_FC_CMD_DISABLED;
1957 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 case sbmac_fc_collision:
1960 cfg |= M_MAC_HDX_EN | V_MAC_FC_CMD_ENABLED;
1961 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 case sbmac_fc_carrier:
1964 cfg |= M_MAC_HDX_EN | V_MAC_FC_CMD_ENAB_FALSECARR;
1965 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 case sbmac_fc_frame: /* not valid in half duplex */
1968 default: /* invalid selection */
1969 return 0;
1970 }
1971 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 case sbmac_duplex_full:
1974 switch (fc) {
1975 case sbmac_fc_disabled:
1976 cfg |= V_MAC_FC_CMD_DISABLED;
1977 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 case sbmac_fc_frame:
1980 cfg |= V_MAC_FC_CMD_ENABLED;
1981 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 case sbmac_fc_collision: /* not valid in full duplex */
1984 case sbmac_fc_carrier: /* not valid in full duplex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 default:
1986 return 0;
1987 }
1988 break;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01001989 default:
1990 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001994 * Send the bits back to the hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001996
Ralf Baechle20399732005-10-19 15:39:05 +01001997 __raw_writeq(cfg, s->sbm_maccfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01001998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 return 1;
2000}
2001
2002
2003
2004
2005/**********************************************************************
2006 * SBMAC_INTR()
Ralf Baechle74b02472005-10-19 15:40:02 +01002007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 * Interrupt handler for MAC interrupts
Ralf Baechle74b02472005-10-19 15:40:02 +01002009 *
2010 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 * MAC structure
Ralf Baechle74b02472005-10-19 15:40:02 +01002012 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 * Return value:
2014 * nothing
2015 ********************************************************************* */
David Howells7d12e782006-10-05 14:55:46 +01002016static irqreturn_t sbmac_intr(int irq,void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
2018 struct net_device *dev = (struct net_device *) dev_instance;
2019 struct sbmac_softc *sc = netdev_priv(dev);
2020 uint64_t isr;
2021 int handled = 0;
2022
Mark Mason693aa942007-04-26 00:23:22 -07002023 /*
2024 * Read the ISR (this clears the bits in the real
2025 * register, except for counter addr)
2026 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002027
Mark Mason693aa942007-04-26 00:23:22 -07002028 isr = __raw_readq(sc->sbm_isr) & ~M_MAC_COUNTER_ADDR;
Ralf Baechle74b02472005-10-19 15:40:02 +01002029
Mark Mason693aa942007-04-26 00:23:22 -07002030 if (isr == 0)
2031 return IRQ_RETVAL(0);
2032 handled = 1;
Ralf Baechle74b02472005-10-19 15:40:02 +01002033
Mark Mason693aa942007-04-26 00:23:22 -07002034 /*
2035 * Transmits on channel 0
2036 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002038 if (isr & (M_MAC_INT_CHANNEL << S_MAC_TX_CH0))
Mark Mason693aa942007-04-26 00:23:22 -07002039 sbdma_tx_process(sc,&(sc->sbm_txdma), 0);
Ralf Baechle74b02472005-10-19 15:40:02 +01002040
Mark Mason693aa942007-04-26 00:23:22 -07002041 if (isr & (M_MAC_INT_CHANNEL << S_MAC_RX_CH0)) {
Ben Hutchings288379f2009-01-19 16:43:59 -08002042 if (napi_schedule_prep(&sc->napi)) {
Mark Mason693aa942007-04-26 00:23:22 -07002043 __raw_writeq(0, sc->sbm_imr);
Ben Hutchings288379f2009-01-19 16:43:59 -08002044 __napi_schedule(&sc->napi);
Mark Mason693aa942007-04-26 00:23:22 -07002045 /* Depend on the exit from poll to reenable intr */
2046 }
2047 else {
2048 /* may leave some packets behind */
2049 sbdma_rx_process(sc,&(sc->sbm_rxdma),
2050 SBMAC_MAX_RXDESCR * 2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 }
2052 }
2053 return IRQ_RETVAL(handled);
2054}
2055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056/**********************************************************************
2057 * SBMAC_START_TX(skb,dev)
Ralf Baechle74b02472005-10-19 15:40:02 +01002058 *
2059 * Start output on the specified interface. Basically, we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 * queue as many buffers as we can until the ring fills up, or
2061 * we run off the end of the queue, whichever comes first.
Ralf Baechle74b02472005-10-19 15:40:02 +01002062 *
2063 * Input parameters:
2064 *
2065 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 * Return value:
2067 * nothing
2068 ********************************************************************* */
2069static int sbmac_start_tx(struct sk_buff *skb, struct net_device *dev)
2070{
2071 struct sbmac_softc *sc = netdev_priv(dev);
Weiwei Wangbe61ea52008-09-18 08:23:48 +08002072 unsigned long flags;
Ralf Baechle74b02472005-10-19 15:40:02 +01002073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 /* lock eth irq */
Weiwei Wangbe61ea52008-09-18 08:23:48 +08002075 spin_lock_irqsave(&sc->sbm_lock, flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01002076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01002078 * Put the buffer on the transmit ring. If we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 * don't have room, stop the queue.
2080 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 if (sbdma_add_txbuffer(&(sc->sbm_txdma),skb)) {
2083 /* XXX save skb that we could not send */
2084 netif_stop_queue(dev);
Weiwei Wangbe61ea52008-09-18 08:23:48 +08002085 spin_unlock_irqrestore(&sc->sbm_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
2087 return 1;
2088 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 dev->trans_start = jiffies;
Ralf Baechle74b02472005-10-19 15:40:02 +01002091
Weiwei Wangbe61ea52008-09-18 08:23:48 +08002092 spin_unlock_irqrestore(&sc->sbm_lock, flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01002093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 return 0;
2095}
2096
2097/**********************************************************************
2098 * SBMAC_SETMULTI(sc)
Ralf Baechle74b02472005-10-19 15:40:02 +01002099 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 * Reprogram the multicast table into the hardware, given
2101 * the list of multicasts associated with the interface
2102 * structure.
Ralf Baechle74b02472005-10-19 15:40:02 +01002103 *
2104 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 * sc - softc
Ralf Baechle74b02472005-10-19 15:40:02 +01002106 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 * Return value:
2108 * nothing
2109 ********************************************************************* */
2110
2111static void sbmac_setmulti(struct sbmac_softc *sc)
2112{
2113 uint64_t reg;
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01002114 void __iomem *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 int idx;
2116 struct dev_mc_list *mclist;
2117 struct net_device *dev = sc->sbm_dev;
Ralf Baechle74b02472005-10-19 15:40:02 +01002118
2119 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 * Clear out entire multicast table. We do this by nuking
2121 * the entire hash table and all the direct matches except
Ralf Baechle74b02472005-10-19 15:40:02 +01002122 * the first one, which is used for our station address
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 for (idx = 1; idx < MAC_ADDR_COUNT; idx++) {
2126 port = sc->sbm_base + R_MAC_ADDR_BASE+(idx*sizeof(uint64_t));
Ralf Baechle20399732005-10-19 15:39:05 +01002127 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 for (idx = 0; idx < MAC_HASH_COUNT; idx++) {
2131 port = sc->sbm_base + R_MAC_HASH_BASE+(idx*sizeof(uint64_t));
Ralf Baechle20399732005-10-19 15:39:05 +01002132 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 /*
2136 * Clear the filter to say we don't want any multicasts.
2137 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002138
Ralf Baechle20399732005-10-19 15:39:05 +01002139 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 reg &= ~(M_MAC_MCAST_INV | M_MAC_MCAST_EN);
Ralf Baechle20399732005-10-19 15:39:05 +01002141 __raw_writeq(reg, sc->sbm_rxfilter);
Ralf Baechle74b02472005-10-19 15:40:02 +01002142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 if (dev->flags & IFF_ALLMULTI) {
Ralf Baechle74b02472005-10-19 15:40:02 +01002144 /*
2145 * Enable ALL multicasts. Do this by inverting the
2146 * multicast enable bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 */
Ralf Baechle20399732005-10-19 15:39:05 +01002148 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 reg |= (M_MAC_MCAST_INV | M_MAC_MCAST_EN);
Ralf Baechle20399732005-10-19 15:39:05 +01002150 __raw_writeq(reg, sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 return;
2152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Ralf Baechle74b02472005-10-19 15:40:02 +01002154
2155 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 * Progam new multicast entries. For now, only use the
2157 * perfect filter. In the future we'll need to use the
2158 * hash filter if the perfect filter overflows
2159 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 /* XXX only using perfect filter for now, need to use hash
2162 * XXX if the table overflows */
Ralf Baechle74b02472005-10-19 15:40:02 +01002163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 idx = 1; /* skip station address */
2165 mclist = dev->mc_list;
2166 while (mclist && (idx < MAC_ADDR_COUNT)) {
2167 reg = sbmac_addr2reg(mclist->dmi_addr);
2168 port = sc->sbm_base + R_MAC_ADDR_BASE+(idx * sizeof(uint64_t));
Ralf Baechle20399732005-10-19 15:39:05 +01002169 __raw_writeq(reg, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 idx++;
2171 mclist = mclist->next;
2172 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002173
2174 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 * Enable the "accept multicast bits" if we programmed at least one
Ralf Baechle74b02472005-10-19 15:40:02 +01002176 * multicast.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002178
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 if (idx > 1) {
Ralf Baechle20399732005-10-19 15:39:05 +01002180 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 reg |= M_MAC_MCAST_EN;
Ralf Baechle20399732005-10-19 15:39:05 +01002182 __raw_writeq(reg, sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
2184}
2185
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002186#if defined(SBMAC_ETH0_HWADDR) || defined(SBMAC_ETH1_HWADDR) || defined(SBMAC_ETH2_HWADDR) || defined(SBMAC_ETH3_HWADDR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187/**********************************************************************
2188 * SBMAC_PARSE_XDIGIT(str)
Ralf Baechle74b02472005-10-19 15:40:02 +01002189 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 * Parse a hex digit, returning its value
Ralf Baechle74b02472005-10-19 15:40:02 +01002191 *
2192 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 * str - character
Ralf Baechle74b02472005-10-19 15:40:02 +01002194 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 * Return value:
2196 * hex value, or -1 if invalid
2197 ********************************************************************* */
2198
2199static int sbmac_parse_xdigit(char str)
2200{
2201 int digit;
Ralf Baechle74b02472005-10-19 15:40:02 +01002202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 if ((str >= '0') && (str <= '9'))
2204 digit = str - '0';
2205 else if ((str >= 'a') && (str <= 'f'))
2206 digit = str - 'a' + 10;
2207 else if ((str >= 'A') && (str <= 'F'))
2208 digit = str - 'A' + 10;
2209 else
2210 return -1;
Ralf Baechle74b02472005-10-19 15:40:02 +01002211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 return digit;
2213}
2214
2215/**********************************************************************
2216 * SBMAC_PARSE_HWADDR(str,hwaddr)
Ralf Baechle74b02472005-10-19 15:40:02 +01002217 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 * Convert a string in the form xx:xx:xx:xx:xx:xx into a 6-byte
2219 * Ethernet address.
Ralf Baechle74b02472005-10-19 15:40:02 +01002220 *
2221 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 * str - string
2223 * hwaddr - pointer to hardware address
Ralf Baechle74b02472005-10-19 15:40:02 +01002224 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 * Return value:
2226 * 0 if ok, else -1
2227 ********************************************************************* */
2228
2229static int sbmac_parse_hwaddr(char *str, unsigned char *hwaddr)
2230{
2231 int digit1,digit2;
2232 int idx = 6;
Ralf Baechle74b02472005-10-19 15:40:02 +01002233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 while (*str && (idx > 0)) {
2235 digit1 = sbmac_parse_xdigit(*str);
2236 if (digit1 < 0)
2237 return -1;
2238 str++;
2239 if (!*str)
2240 return -1;
Ralf Baechle74b02472005-10-19 15:40:02 +01002241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 if ((*str == ':') || (*str == '-')) {
2243 digit2 = digit1;
2244 digit1 = 0;
2245 }
2246 else {
2247 digit2 = sbmac_parse_xdigit(*str);
2248 if (digit2 < 0)
2249 return -1;
2250 str++;
2251 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 *hwaddr++ = (digit1 << 4) | digit2;
2254 idx--;
Ralf Baechle74b02472005-10-19 15:40:02 +01002255
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 if (*str == '-')
2257 str++;
2258 if (*str == ':')
2259 str++;
2260 }
2261 return 0;
2262}
2263#endif
2264
2265static int sb1250_change_mtu(struct net_device *_dev, int new_mtu)
2266{
2267 if (new_mtu > ENET_PACKET_SIZE)
2268 return -EINVAL;
2269 _dev->mtu = new_mtu;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002270 pr_info("changing the mtu to %d\n", new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 return 0;
2272}
2273
2274/**********************************************************************
2275 * SBMAC_INIT(dev)
Ralf Baechle74b02472005-10-19 15:40:02 +01002276 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 * Attach routine - init hardware and hook ourselves into linux
Ralf Baechle74b02472005-10-19 15:40:02 +01002278 *
2279 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 * dev - net_device structure
Ralf Baechle74b02472005-10-19 15:40:02 +01002281 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 * Return value:
2283 * status
2284 ********************************************************************* */
2285
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002286static int sbmac_init(struct platform_device *pldev, long long base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287{
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002288 struct net_device *dev = pldev->dev.driver_data;
2289 int idx = pldev->id;
2290 struct sbmac_softc *sc = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 unsigned char *eaddr;
2292 uint64_t ea_reg;
2293 int i;
2294 int err;
Ralf Baechle74b02472005-10-19 15:40:02 +01002295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 sc->sbm_dev = dev;
2297 sc->sbe_idx = idx;
Ralf Baechle74b02472005-10-19 15:40:02 +01002298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 eaddr = sc->sbm_hwaddr;
Ralf Baechle74b02472005-10-19 15:40:02 +01002300
2301 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 * Read the ethernet address. The firwmare left this programmed
2303 * for us in the ethernet address register for each mac.
2304 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002305
Ralf Baechle20399732005-10-19 15:39:05 +01002306 ea_reg = __raw_readq(sc->sbm_base + R_MAC_ETHERNET_ADDR);
2307 __raw_writeq(0, sc->sbm_base + R_MAC_ETHERNET_ADDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 for (i = 0; i < 6; i++) {
2309 eaddr[i] = (uint8_t) (ea_reg & 0xFF);
2310 ea_reg >>= 8;
2311 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002312
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 for (i = 0; i < 6; i++) {
2314 dev->dev_addr[i] = eaddr[i];
2315 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002316
Ralf Baechle74b02472005-10-19 15:40:02 +01002317 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 * Initialize context (get pointers to registers and stuff), then
2319 * allocate the memory for the descriptor tables.
2320 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 sbmac_initctx(sc);
Ralf Baechle74b02472005-10-19 15:40:02 +01002323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 /*
2325 * Set up Linux device callins
2326 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 spin_lock_init(&(sc->sbm_lock));
Ralf Baechle74b02472005-10-19 15:40:02 +01002329
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 dev->open = sbmac_open;
2331 dev->hard_start_xmit = sbmac_start_tx;
2332 dev->stop = sbmac_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 dev->set_multicast_list = sbmac_set_rx_mode;
2334 dev->do_ioctl = sbmac_mii_ioctl;
2335 dev->tx_timeout = sbmac_tx_timeout;
2336 dev->watchdog_timeo = TX_TIMEOUT;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002337
2338 netif_napi_add(dev, &sc->napi, sbmac_poll, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
2340 dev->change_mtu = sb1250_change_mtu;
Deepak Saxenad6830012007-03-19 15:43:11 -07002341#ifdef CONFIG_NET_POLL_CONTROLLER
2342 dev->poll_controller = sbmac_netpoll;
2343#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002345 dev->irq = UNIT_INT(idx);
2346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 /* This is needed for PASS2 for Rx H/W checksum feature */
2348 sbmac_set_iphdr_offset(sc);
2349
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07002350 sc->mii_bus = mdiobus_alloc();
2351 if (sc->mii_bus == NULL) {
2352 sbmac_uninitctx(sc);
2353 return -ENOMEM;
2354 }
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 err = register_netdev(dev);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002357 if (err) {
2358 printk(KERN_ERR "%s.%d: unable to register netdev\n",
2359 sbmac_string, idx);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07002360 mdiobus_free(sc->mii_bus);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002361 sbmac_uninitctx(sc);
2362 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 }
2364
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002365 pr_info("%s.%d: registered as %s\n", sbmac_string, idx, dev->name);
2366
2367 if (sc->rx_hw_checksum == ENABLE)
2368 pr_info("%s: enabling TCP rcv checksum\n", dev->name);
2369
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 /*
2371 * Display Ethernet address (this is called during the config
2372 * process so we need to finish off the config message that
2373 * was being displayed)
2374 */
Johannes Berge1749612008-10-27 15:59:26 -07002375 pr_info("%s: SiByte Ethernet at 0x%08Lx, address: %pM\n",
2376 dev->name, base, eaddr);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002377
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07002378 sc->mii_bus->name = sbmac_mdio_string;
2379 snprintf(sc->mii_bus->id, MII_BUS_ID_SIZE, "%x", idx);
2380 sc->mii_bus->priv = sc;
2381 sc->mii_bus->read = sbmac_mii_read;
2382 sc->mii_bus->write = sbmac_mii_write;
2383 sc->mii_bus->irq = sc->phy_irq;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002384 for (i = 0; i < PHY_MAX_ADDR; ++i)
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07002385 sc->mii_bus->irq[i] = SBMAC_PHY_INT;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002386
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07002387 sc->mii_bus->parent = &pldev->dev;
2388 dev_set_drvdata(&pldev->dev, sc->mii_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
2390 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391}
2392
2393
2394static int sbmac_open(struct net_device *dev)
2395{
2396 struct sbmac_softc *sc = netdev_priv(dev);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002397 int err;
Ralf Baechle74b02472005-10-19 15:40:02 +01002398
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002399 if (debug > 1)
2400 pr_debug("%s: sbmac_open() irq %d.\n", dev->name, dev->irq);
Ralf Baechle74b02472005-10-19 15:40:02 +01002401
2402 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 * map/route interrupt (clear status first, in case something
2404 * weird is pending; we haven't initialized the mac registers
2405 * yet)
2406 */
2407
Ralf Baechle20399732005-10-19 15:39:05 +01002408 __raw_readq(sc->sbm_isr);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002409 err = request_irq(dev->irq, &sbmac_intr, IRQF_SHARED, dev->name, dev);
2410 if (err) {
2411 printk(KERN_ERR "%s: unable to get IRQ %d\n", dev->name,
2412 dev->irq);
2413 goto out_err;
Ralf Baechle59b81822005-10-20 12:01:28 +01002414 }
2415
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002416 /*
2417 * Probe PHY address
2418 */
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07002419 err = mdiobus_register(sc->mii_bus);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002420 if (err) {
2421 printk(KERN_ERR "%s: unable to register MDIO bus\n",
2422 dev->name);
2423 goto out_unirq;
2424 }
2425
2426 sc->sbm_speed = sbmac_speed_none;
2427 sc->sbm_duplex = sbmac_duplex_none;
2428 sc->sbm_fc = sbmac_fc_none;
2429 sc->sbm_pause = -1;
2430 sc->sbm_link = 0;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002431
Ralf Baechle59b81822005-10-20 12:01:28 +01002432 /*
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002433 * Attach to the PHY
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002435 err = sbmac_mii_probe(dev);
2436 if (err)
2437 goto out_unregister;
Ralf Baechle74b02472005-10-19 15:40:02 +01002438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 /*
2440 * Turn on the channel
2441 */
2442
2443 sbmac_set_channel_state(sc,sbmac_state_on);
Ralf Baechle74b02472005-10-19 15:40:02 +01002444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 netif_start_queue(dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01002446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 sbmac_set_rx_mode(dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01002448
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002449 phy_start(sc->phy_dev);
2450
2451 napi_enable(&sc->napi);
Ralf Baechle74b02472005-10-19 15:40:02 +01002452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 return 0;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002454
2455out_unregister:
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07002456 mdiobus_unregister(sc->mii_bus);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002457
2458out_unirq:
2459 free_irq(dev->irq, dev);
2460
2461out_err:
2462 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463}
2464
Ralf Baechle59b81822005-10-20 12:01:28 +01002465static int sbmac_mii_probe(struct net_device *dev)
2466{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 struct sbmac_softc *sc = netdev_priv(dev);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002468 struct phy_device *phy_dev;
2469 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002471 for (i = 0; i < PHY_MAX_ADDR; i++) {
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07002472 phy_dev = sc->mii_bus->phy_map[i];
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002473 if (phy_dev)
2474 break;
2475 }
2476 if (!phy_dev) {
2477 printk(KERN_ERR "%s: no PHY found\n", dev->name);
2478 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002480
Kay Sieversdb1d7bf2009-01-26 21:12:58 -08002481 phy_dev = phy_connect(dev, dev_name(&phy_dev->dev), &sbmac_mii_poll, 0,
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002482 PHY_INTERFACE_MODE_GMII);
2483 if (IS_ERR(phy_dev)) {
2484 printk(KERN_ERR "%s: could not attach to PHY\n", dev->name);
2485 return PTR_ERR(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002487
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002488 /* Remove any features not supported by the controller */
2489 phy_dev->supported &= SUPPORTED_10baseT_Half |
2490 SUPPORTED_10baseT_Full |
2491 SUPPORTED_100baseT_Half |
2492 SUPPORTED_100baseT_Full |
2493 SUPPORTED_1000baseT_Half |
2494 SUPPORTED_1000baseT_Full |
2495 SUPPORTED_Autoneg |
2496 SUPPORTED_MII |
2497 SUPPORTED_Pause |
2498 SUPPORTED_Asym_Pause;
2499 phy_dev->advertising = phy_dev->supported;
Ralf Baechle74b02472005-10-19 15:40:02 +01002500
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002501 pr_info("%s: attached PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
2502 dev->name, phy_dev->drv->name,
Kay Sieversdb1d7bf2009-01-26 21:12:58 -08002503 dev_name(&phy_dev->dev), phy_dev->irq);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002504
2505 sc->phy_dev = phy_dev;
2506
2507 return 0;
2508}
2509
2510
2511static void sbmac_mii_poll(struct net_device *dev)
2512{
2513 struct sbmac_softc *sc = netdev_priv(dev);
2514 struct phy_device *phy_dev = sc->phy_dev;
2515 unsigned long flags;
2516 enum sbmac_fc fc;
2517 int link_chg, speed_chg, duplex_chg, pause_chg, fc_chg;
2518
2519 link_chg = (sc->sbm_link != phy_dev->link);
2520 speed_chg = (sc->sbm_speed != phy_dev->speed);
2521 duplex_chg = (sc->sbm_duplex != phy_dev->duplex);
2522 pause_chg = (sc->sbm_pause != phy_dev->pause);
2523
2524 if (!link_chg && !speed_chg && !duplex_chg && !pause_chg)
2525 return; /* Hmmm... */
2526
2527 if (!phy_dev->link) {
2528 if (link_chg) {
2529 sc->sbm_link = phy_dev->link;
2530 sc->sbm_speed = sbmac_speed_none;
2531 sc->sbm_duplex = sbmac_duplex_none;
2532 sc->sbm_fc = sbmac_fc_disabled;
2533 sc->sbm_pause = -1;
2534 pr_info("%s: link unavailable\n", dev->name);
2535 }
2536 return;
2537 }
2538
2539 if (phy_dev->duplex == DUPLEX_FULL) {
2540 if (phy_dev->pause)
2541 fc = sbmac_fc_frame;
2542 else
2543 fc = sbmac_fc_disabled;
2544 } else
2545 fc = sbmac_fc_collision;
2546 fc_chg = (sc->sbm_fc != fc);
2547
2548 pr_info("%s: link available: %dbase-%cD\n", dev->name, phy_dev->speed,
2549 phy_dev->duplex == DUPLEX_FULL ? 'F' : 'H');
2550
2551 spin_lock_irqsave(&sc->sbm_lock, flags);
2552
2553 sc->sbm_speed = phy_dev->speed;
2554 sc->sbm_duplex = phy_dev->duplex;
2555 sc->sbm_fc = fc;
2556 sc->sbm_pause = phy_dev->pause;
2557 sc->sbm_link = phy_dev->link;
2558
2559 if ((speed_chg || duplex_chg || fc_chg) &&
2560 sc->sbm_state != sbmac_state_off) {
2561 /*
2562 * something changed, restart the channel
2563 */
2564 if (debug > 1)
2565 pr_debug("%s: restarting channel "
2566 "because PHY state changed\n", dev->name);
2567 sbmac_channel_stop(sc);
2568 sbmac_channel_start(sc);
2569 }
2570
2571 spin_unlock_irqrestore(&sc->sbm_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572}
2573
2574
2575static void sbmac_tx_timeout (struct net_device *dev)
2576{
2577 struct sbmac_softc *sc = netdev_priv(dev);
Weiwei Wangbe61ea52008-09-18 08:23:48 +08002578 unsigned long flags;
Ralf Baechle74b02472005-10-19 15:40:02 +01002579
Weiwei Wangbe61ea52008-09-18 08:23:48 +08002580 spin_lock_irqsave(&sc->sbm_lock, flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01002581
2582
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 dev->trans_start = jiffies;
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002584 dev->stats.tx_errors++;
Ralf Baechle74b02472005-10-19 15:40:02 +01002585
Weiwei Wangbe61ea52008-09-18 08:23:48 +08002586 spin_unlock_irqrestore(&sc->sbm_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
2588 printk (KERN_WARNING "%s: Transmit timed out\n",dev->name);
2589}
2590
2591
2592
2593
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594static void sbmac_set_rx_mode(struct net_device *dev)
2595{
2596 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 struct sbmac_softc *sc = netdev_priv(dev);
2598
2599 spin_lock_irqsave(&sc->sbm_lock, flags);
2600 if ((dev->flags ^ sc->sbm_devflags) & IFF_PROMISC) {
2601 /*
2602 * Promiscuous changed.
2603 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002604
2605 if (dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 sbmac_promiscuous_mode(sc,1);
2607 }
2608 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 sbmac_promiscuous_mode(sc,0);
2610 }
2611 }
2612 spin_unlock_irqrestore(&sc->sbm_lock, flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01002613
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 /*
2615 * Program the multicasts. Do this every time.
2616 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002617
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 sbmac_setmulti(sc);
Ralf Baechle74b02472005-10-19 15:40:02 +01002619
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620}
2621
2622static int sbmac_mii_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2623{
2624 struct sbmac_softc *sc = netdev_priv(dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01002625
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002626 if (!netif_running(dev) || !sc->phy_dev)
2627 return -EINVAL;
Ralf Baechle74b02472005-10-19 15:40:02 +01002628
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002629 return phy_mii_ioctl(sc->phy_dev, if_mii(rq), cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630}
2631
2632static int sbmac_close(struct net_device *dev)
2633{
2634 struct sbmac_softc *sc = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002636 napi_disable(&sc->napi);
2637
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002638 phy_stop(sc->phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002640 sbmac_set_channel_state(sc, sbmac_state_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
2642 netif_stop_queue(dev);
2643
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002644 if (debug > 1)
2645 pr_debug("%s: Shutting down ethercard\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002647 phy_disconnect(sc->phy_dev);
2648 sc->phy_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07002650 mdiobus_unregister(sc->mii_bus);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002651
2652 free_irq(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
2654 sbdma_emptyring(&(sc->sbm_txdma));
2655 sbdma_emptyring(&(sc->sbm_rxdma));
Ralf Baechle74b02472005-10-19 15:40:02 +01002656
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 return 0;
2658}
2659
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002660static int sbmac_poll(struct napi_struct *napi, int budget)
Mark Mason693aa942007-04-26 00:23:22 -07002661{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002662 struct sbmac_softc *sc = container_of(napi, struct sbmac_softc, napi);
2663 struct net_device *dev = sc->sbm_dev;
Mark Mason693aa942007-04-26 00:23:22 -07002664 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002666 work_done = sbdma_rx_process(sc, &(sc->sbm_rxdma), budget, 1);
Mark Mason693aa942007-04-26 00:23:22 -07002667 sbdma_tx_process(sc, &(sc->sbm_txdma), 1);
2668
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002669 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08002670 napi_complete(napi);
Mark Mason693aa942007-04-26 00:23:22 -07002671
2672#ifdef CONFIG_SBMAC_COALESCE
2673 __raw_writeq(((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_TX_CH0) |
2674 ((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_RX_CH0),
2675 sc->sbm_imr);
2676#else
2677 __raw_writeq((M_MAC_INT_CHANNEL << S_MAC_TX_CH0) |
2678 (M_MAC_INT_CHANNEL << S_MAC_RX_CH0), sc->sbm_imr);
2679#endif
2680 }
2681
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002682 return work_done;
Mark Mason693aa942007-04-26 00:23:22 -07002683}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002685
2686static int __init sbmac_probe(struct platform_device *pldev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002688 struct net_device *dev;
2689 struct sbmac_softc *sc;
2690 void __iomem *sbm_base;
2691 struct resource *res;
2692 u64 sbmac_orig_hwaddr;
2693 int err;
2694
2695 res = platform_get_resource(pldev, IORESOURCE_MEM, 0);
2696 BUG_ON(!res);
2697 sbm_base = ioremap_nocache(res->start, res->end - res->start + 1);
2698 if (!sbm_base) {
2699 printk(KERN_ERR "%s: unable to map device registers\n",
Kay Sieversdb1d7bf2009-01-26 21:12:58 -08002700 dev_name(&pldev->dev));
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002701 err = -ENOMEM;
2702 goto out_out;
2703 }
2704
2705 /*
2706 * The R_MAC_ETHERNET_ADDR register will be set to some nonzero
2707 * value for us by the firmware if we're going to use this MAC.
2708 * If we find a zero, skip this MAC.
2709 */
2710 sbmac_orig_hwaddr = __raw_readq(sbm_base + R_MAC_ETHERNET_ADDR);
Kay Sieversdb1d7bf2009-01-26 21:12:58 -08002711 pr_debug("%s: %sconfiguring MAC at 0x%08Lx\n", dev_name(&pldev->dev),
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002712 sbmac_orig_hwaddr ? "" : "not ", (long long)res->start);
2713 if (sbmac_orig_hwaddr == 0) {
2714 err = 0;
2715 goto out_unmap;
2716 }
2717
2718 /*
2719 * Okay, cool. Initialize this MAC.
2720 */
2721 dev = alloc_etherdev(sizeof(struct sbmac_softc));
2722 if (!dev) {
2723 printk(KERN_ERR "%s: unable to allocate etherdev\n",
Kay Sieversdb1d7bf2009-01-26 21:12:58 -08002724 dev_name(&pldev->dev));
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002725 err = -ENOMEM;
2726 goto out_unmap;
2727 }
2728
2729 pldev->dev.driver_data = dev;
2730 SET_NETDEV_DEV(dev, &pldev->dev);
2731
2732 sc = netdev_priv(dev);
2733 sc->sbm_base = sbm_base;
2734
2735 err = sbmac_init(pldev, res->start);
2736 if (err)
2737 goto out_kfree;
2738
2739 return 0;
2740
2741out_kfree:
2742 free_netdev(dev);
2743 __raw_writeq(sbmac_orig_hwaddr, sbm_base + R_MAC_ETHERNET_ADDR);
2744
2745out_unmap:
2746 iounmap(sbm_base);
2747
2748out_out:
2749 return err;
2750}
2751
2752static int __exit sbmac_remove(struct platform_device *pldev)
2753{
2754 struct net_device *dev = pldev->dev.driver_data;
2755 struct sbmac_softc *sc = netdev_priv(dev);
2756
2757 unregister_netdev(dev);
2758 sbmac_uninitctx(sc);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07002759 mdiobus_free(sc->mii_bus);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002760 iounmap(sc->sbm_base);
2761 free_netdev(dev);
2762
2763 return 0;
2764}
2765
2766
2767static struct platform_device **sbmac_pldev;
2768static int sbmac_max_units;
2769
2770#if defined(SBMAC_ETH0_HWADDR) || defined(SBMAC_ETH1_HWADDR) || defined(SBMAC_ETH2_HWADDR) || defined(SBMAC_ETH3_HWADDR)
2771static void __init sbmac_setup_hwaddr(int idx, char *addr)
2772{
2773 void __iomem *sbm_base;
2774 unsigned long start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 uint8_t eaddr[6];
2776 uint64_t val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002778 if (idx >= sbmac_max_units)
2779 return;
2780
2781 start = A_MAC_CHANNEL_BASE(idx);
2782 end = A_MAC_CHANNEL_BASE(idx + 1) - 1;
2783
2784 sbm_base = ioremap_nocache(start, end - start + 1);
2785 if (!sbm_base) {
2786 printk(KERN_ERR "%s: unable to map device registers\n",
2787 sbmac_string);
2788 return;
2789 }
2790
2791 sbmac_parse_hwaddr(addr, eaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 val = sbmac_addr2reg(eaddr);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002793 __raw_writeq(val, sbm_base + R_MAC_ETHERNET_ADDR);
2794 val = __raw_readq(sbm_base + R_MAC_ETHERNET_ADDR);
2795
2796 iounmap(sbm_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797}
2798#endif
2799
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002800static int __init sbmac_platform_probe_one(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801{
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002802 struct platform_device *pldev;
2803 struct {
2804 struct resource r;
2805 char name[strlen(sbmac_pretty) + 4];
2806 } *res;
2807 int err;
2808
2809 res = kzalloc(sizeof(*res), GFP_KERNEL);
2810 if (!res) {
2811 printk(KERN_ERR "%s.%d: unable to allocate memory\n",
2812 sbmac_string, idx);
2813 err = -ENOMEM;
2814 goto out_err;
2815 }
2816
2817 /*
2818 * This is the base address of the MAC.
2819 */
2820 snprintf(res->name, sizeof(res->name), "%s %d", sbmac_pretty, idx);
2821 res->r.name = res->name;
2822 res->r.flags = IORESOURCE_MEM;
2823 res->r.start = A_MAC_CHANNEL_BASE(idx);
2824 res->r.end = A_MAC_CHANNEL_BASE(idx + 1) - 1;
2825
2826 pldev = platform_device_register_simple(sbmac_string, idx, &res->r, 1);
2827 if (IS_ERR(pldev)) {
2828 printk(KERN_ERR "%s.%d: unable to register platform device\n",
2829 sbmac_string, idx);
2830 err = PTR_ERR(pldev);
2831 goto out_kfree;
2832 }
2833
2834 if (!pldev->dev.driver) {
2835 err = 0; /* No hardware at this address. */
2836 goto out_unregister;
2837 }
2838
2839 sbmac_pldev[idx] = pldev;
2840 return 0;
2841
2842out_unregister:
2843 platform_device_unregister(pldev);
2844
2845out_kfree:
2846 kfree(res);
2847
2848out_err:
2849 return err;
2850}
2851
2852static void __init sbmac_platform_probe(void)
2853{
2854 int i;
Ralf Baechle74b02472005-10-19 15:40:02 +01002855
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002856 /* Set the number of available units based on the SOC type. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 switch (soc_type) {
2858 case K_SYS_SOC_TYPE_BCM1250:
2859 case K_SYS_SOC_TYPE_BCM1250_ALT:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002860 sbmac_max_units = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 break;
2862 case K_SYS_SOC_TYPE_BCM1120:
2863 case K_SYS_SOC_TYPE_BCM1125:
2864 case K_SYS_SOC_TYPE_BCM1125H:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002865 case K_SYS_SOC_TYPE_BCM1250_ALT2: /* Hybrid */
2866 sbmac_max_units = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 break;
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002868 case K_SYS_SOC_TYPE_BCM1x55:
2869 case K_SYS_SOC_TYPE_BCM1x80:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002870 sbmac_max_units = 4;
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002871 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 default:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002873 return; /* none */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002876 /*
2877 * For bringup when not using the firmware, we can pre-fill
2878 * the MAC addresses using the environment variables
2879 * specified in this file (or maybe from the config file?)
2880 */
2881#ifdef SBMAC_ETH0_HWADDR
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002882 sbmac_setup_hwaddr(0, SBMAC_ETH0_HWADDR);
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002883#endif
2884#ifdef SBMAC_ETH1_HWADDR
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002885 sbmac_setup_hwaddr(1, SBMAC_ETH1_HWADDR);
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002886#endif
2887#ifdef SBMAC_ETH2_HWADDR
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002888 sbmac_setup_hwaddr(2, SBMAC_ETH2_HWADDR);
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002889#endif
2890#ifdef SBMAC_ETH3_HWADDR
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002891 sbmac_setup_hwaddr(3, SBMAC_ETH3_HWADDR);
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002892#endif
2893
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002894 sbmac_pldev = kcalloc(sbmac_max_units, sizeof(*sbmac_pldev),
2895 GFP_KERNEL);
2896 if (!sbmac_pldev) {
2897 printk(KERN_ERR "%s: unable to allocate memory\n",
2898 sbmac_string);
2899 return;
2900 }
2901
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002902 /*
2903 * Walk through the Ethernet controllers and find
2904 * those who have their MAC addresses set.
2905 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002906 for (i = 0; i < sbmac_max_units; i++)
2907 if (sbmac_platform_probe_one(i))
2908 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909}
2910
2911
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002912static void __exit sbmac_platform_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913{
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002914 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002916 for (i = 0; i < sbmac_max_units; i++)
2917 platform_device_unregister(sbmac_pldev[i]);
2918 kfree(sbmac_pldev);
2919}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002921
2922static struct platform_driver sbmac_driver = {
2923 .probe = sbmac_probe,
2924 .remove = __exit_p(sbmac_remove),
2925 .driver = {
2926 .name = sbmac_string,
2927 },
2928};
2929
2930static int __init sbmac_init_module(void)
2931{
2932 int err;
2933
2934 err = platform_driver_register(&sbmac_driver);
2935 if (err)
2936 return err;
2937
2938 sbmac_platform_probe();
2939
2940 return err;
2941}
2942
2943static void __exit sbmac_cleanup_module(void)
2944{
2945 sbmac_platform_cleanup();
2946 platform_driver_unregister(&sbmac_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947}
2948
2949module_init(sbmac_init_module);
2950module_exit(sbmac_cleanup_module);