blob: 53845ebb649f69b796468c2304728fbf29618847 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Ralf Baechle74b02472005-10-19 15:40:02 +010013 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 *
19 * This driver is designed for the Broadcom SiByte SOC built-in
20 * Ethernet controllers. Written by Mitch Lichtenberg at Broadcom Corp.
21 */
22#include <linux/module.h>
23#include <linux/kernel.h>
24#include <linux/string.h>
25#include <linux/timer.h>
26#include <linux/errno.h>
27#include <linux/ioport.h>
28#include <linux/slab.h>
29#include <linux/interrupt.h>
30#include <linux/netdevice.h>
31#include <linux/etherdevice.h>
32#include <linux/skbuff.h>
33#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/bitops.h>
35#include <asm/processor.h> /* Processor type for cache alignment. */
36#include <asm/io.h>
37#include <asm/cache.h>
38
39/* This is only here until the firmware is ready. In that case,
40 the firmware leaves the ethernet address in the register for us. */
41#ifdef CONFIG_SIBYTE_STANDALONE
42#define SBMAC_ETH0_HWADDR "40:00:00:00:01:00"
43#define SBMAC_ETH1_HWADDR "40:00:00:00:01:01"
44#define SBMAC_ETH2_HWADDR "40:00:00:00:01:02"
Ralf Baechlef90fdc32006-02-08 23:23:26 +000045#define SBMAC_ETH3_HWADDR "40:00:00:00:01:03"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#endif
47
48
49/* These identify the driver base version and may not be removed. */
50#if 0
51static char version1[] __devinitdata =
52"sb1250-mac.c:1.00 1/11/2001 Written by Mitch Lichtenberg\n";
53#endif
54
55
56/* Operational parameters that usually are not changed. */
57
58#define CONFIG_SBMAC_COALESCE
59
Ralf Baechlef90fdc32006-02-08 23:23:26 +000060#define MAX_UNITS 4 /* More are supported, limit only on options */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/* Time in jiffies before concluding the transmitter is hung. */
63#define TX_TIMEOUT (2*HZ)
64
65
66MODULE_AUTHOR("Mitch Lichtenberg (Broadcom Corp.)");
67MODULE_DESCRIPTION("Broadcom SiByte SOC GB Ethernet driver");
68
69/* A few user-configurable values which may be modified when a driver
70 module is loaded. */
71
72/* 1 normal messages, 0 quiet .. 7 verbose. */
73static int debug = 1;
74module_param(debug, int, S_IRUGO);
75MODULE_PARM_DESC(debug, "Debug messages");
76
77/* mii status msgs */
78static int noisy_mii = 1;
79module_param(noisy_mii, int, S_IRUGO);
80MODULE_PARM_DESC(noisy_mii, "MII status messages");
81
82/* Used to pass the media type, etc.
83 Both 'options[]' and 'full_duplex[]' should exist for driver
84 interoperability.
85 The media type is usually passed in 'options[]'.
86*/
87#ifdef MODULE
Ralf Baechlef90fdc32006-02-08 23:23:26 +000088static int options[MAX_UNITS] = {-1, -1, -1, -1};
Linus Torvalds1da177e2005-04-16 15:20:36 -070089module_param_array(options, int, NULL, S_IRUGO);
90MODULE_PARM_DESC(options, "1-" __MODULE_STRING(MAX_UNITS));
91
Ralf Baechlef90fdc32006-02-08 23:23:26 +000092static int full_duplex[MAX_UNITS] = {-1, -1, -1, -1};
Linus Torvalds1da177e2005-04-16 15:20:36 -070093module_param_array(full_duplex, int, NULL, S_IRUGO);
94MODULE_PARM_DESC(full_duplex, "1-" __MODULE_STRING(MAX_UNITS));
95#endif
96
97#ifdef CONFIG_SBMAC_COALESCE
Mark Mason693aa942007-04-26 00:23:22 -070098static int int_pktcnt_tx = 255;
99module_param(int_pktcnt_tx, int, S_IRUGO);
100MODULE_PARM_DESC(int_pktcnt_tx, "TX packet count");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Mark Mason693aa942007-04-26 00:23:22 -0700102static int int_timeout_tx = 255;
103module_param(int_timeout_tx, int, S_IRUGO);
104MODULE_PARM_DESC(int_timeout_tx, "TX timeout value");
105
106static int int_pktcnt_rx = 64;
107module_param(int_pktcnt_rx, int, S_IRUGO);
108MODULE_PARM_DESC(int_pktcnt_rx, "RX packet count");
109
110static int int_timeout_rx = 64;
111module_param(int_timeout_rx, int, S_IRUGO);
112MODULE_PARM_DESC(int_timeout_rx, "RX timeout value");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#endif
114
115#include <asm/sibyte/sb1250.h>
Ralf Baechlef90fdc32006-02-08 23:23:26 +0000116#if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
117#include <asm/sibyte/bcm1480_regs.h>
118#include <asm/sibyte/bcm1480_int.h>
Mark Mason693aa942007-04-26 00:23:22 -0700119#define R_MAC_DMA_OODPKTLOST_RX R_MAC_DMA_OODPKTLOST
Ralf Baechlef90fdc32006-02-08 23:23:26 +0000120#elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#include <asm/sibyte/sb1250_regs.h>
Ralf Baechlef90fdc32006-02-08 23:23:26 +0000122#include <asm/sibyte/sb1250_int.h>
123#else
124#error invalid SiByte MAC configuation
125#endif
126#include <asm/sibyte/sb1250_scd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#include <asm/sibyte/sb1250_mac.h>
128#include <asm/sibyte/sb1250_dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Ralf Baechlef90fdc32006-02-08 23:23:26 +0000130#if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
131#define UNIT_INT(n) (K_BCM1480_INT_MAC_0 + ((n) * 2))
132#elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
133#define UNIT_INT(n) (K_INT_MAC_0 + (n))
134#else
135#error invalid SiByte MAC configuation
136#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138/**********************************************************************
139 * Simple types
140 ********************************************************************* */
141
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143typedef enum { sbmac_speed_auto, sbmac_speed_10,
144 sbmac_speed_100, sbmac_speed_1000 } sbmac_speed_t;
145
146typedef enum { sbmac_duplex_auto, sbmac_duplex_half,
147 sbmac_duplex_full } sbmac_duplex_t;
148
149typedef enum { sbmac_fc_auto, sbmac_fc_disabled, sbmac_fc_frame,
150 sbmac_fc_collision, sbmac_fc_carrier } sbmac_fc_t;
151
Ralf Baechle74b02472005-10-19 15:40:02 +0100152typedef enum { sbmac_state_uninit, sbmac_state_off, sbmac_state_on,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 sbmac_state_broken } sbmac_state_t;
154
155
156/**********************************************************************
157 * Macros
158 ********************************************************************* */
159
160
161#define SBDMA_NEXTBUF(d,f) ((((d)->f+1) == (d)->sbdma_dscrtable_end) ? \
162 (d)->sbdma_dscrtable : (d)->f+1)
163
164
165#define NUMCACHEBLKS(x) (((x)+SMP_CACHE_BYTES-1)/SMP_CACHE_BYTES)
166
Mark Mason693aa942007-04-26 00:23:22 -0700167#define SBMAC_MAX_TXDESCR 256
168#define SBMAC_MAX_RXDESCR 256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170#define ETHER_ALIGN 2
171#define ETHER_ADDR_LEN 6
Ralf Baechle74b02472005-10-19 15:40:02 +0100172#define ENET_PACKET_SIZE 1518
173/*#define ENET_PACKET_SIZE 9216 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175/**********************************************************************
176 * DMA Descriptor structure
177 ********************************************************************* */
178
179typedef struct sbdmadscr_s {
180 uint64_t dscr_a;
181 uint64_t dscr_b;
182} sbdmadscr_t;
183
184typedef unsigned long paddr_t;
185
186/**********************************************************************
187 * DMA Controller structure
188 ********************************************************************* */
189
190typedef struct sbmacdma_s {
Ralf Baechle74b02472005-10-19 15:40:02 +0100191
192 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * This stuff is used to identify the channel and the registers
194 * associated with it.
195 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100196
Mark Mason693aa942007-04-26 00:23:22 -0700197 struct sbmac_softc *sbdma_eth; /* back pointer to associated MAC */
198 int sbdma_channel; /* channel number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 int sbdma_txdir; /* direction (1=transmit) */
Mark Mason693aa942007-04-26 00:23:22 -0700200 int sbdma_maxdescr; /* total # of descriptors in ring */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#ifdef CONFIG_SBMAC_COALESCE
202 int sbdma_int_pktcnt; /* # descriptors rx/tx before interrupt*/
203 int sbdma_int_timeout; /* # usec rx/tx interrupt */
204#endif
205
Ralf Baechle20399732005-10-19 15:39:05 +0100206 volatile void __iomem *sbdma_config0; /* DMA config register 0 */
207 volatile void __iomem *sbdma_config1; /* DMA config register 1 */
208 volatile void __iomem *sbdma_dscrbase; /* Descriptor base address */
Mark Mason693aa942007-04-26 00:23:22 -0700209 volatile void __iomem *sbdma_dscrcnt; /* Descriptor count register */
Ralf Baechle20399732005-10-19 15:39:05 +0100210 volatile void __iomem *sbdma_curdscr; /* current descriptor address */
Mark Mason693aa942007-04-26 00:23:22 -0700211 volatile void __iomem *sbdma_oodpktlost;/* pkt drop (rx only) */
212
Ralf Baechle74b02472005-10-19 15:40:02 +0100213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 /*
215 * This stuff is for maintenance of the ring
216 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100217
Mark Mason693aa942007-04-26 00:23:22 -0700218 sbdmadscr_t *sbdma_dscrtable_unaligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 sbdmadscr_t *sbdma_dscrtable; /* base of descriptor table */
220 sbdmadscr_t *sbdma_dscrtable_end; /* end of descriptor table */
Ralf Baechle74b02472005-10-19 15:40:02 +0100221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 struct sk_buff **sbdma_ctxtable; /* context table, one per descr */
Ralf Baechle74b02472005-10-19 15:40:02 +0100223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 paddr_t sbdma_dscrtable_phys; /* and also the phys addr */
225 sbdmadscr_t *sbdma_addptr; /* next dscr for sw to add */
226 sbdmadscr_t *sbdma_remptr; /* next dscr for sw to remove */
227} sbmacdma_t;
228
229
230/**********************************************************************
231 * Ethernet softc structure
232 ********************************************************************* */
233
234struct sbmac_softc {
Ralf Baechle74b02472005-10-19 15:40:02 +0100235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 /*
237 * Linux-specific things
238 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 struct net_device *sbm_dev; /* pointer to linux device */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700241 struct napi_struct napi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 spinlock_t sbm_lock; /* spin lock */
243 struct timer_list sbm_timer; /* for monitoring MII */
Ralf Baechle74b02472005-10-19 15:40:02 +0100244 struct net_device_stats sbm_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 int sbm_devflags; /* current device flags */
246
247 int sbm_phy_oldbmsr;
248 int sbm_phy_oldanlpar;
249 int sbm_phy_oldk1stsr;
250 int sbm_phy_oldlinkstat;
251 int sbm_buffersize;
Ralf Baechle74b02472005-10-19 15:40:02 +0100252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 unsigned char sbm_phys[2];
Ralf Baechle74b02472005-10-19 15:40:02 +0100254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 /*
256 * Controller-specific things
257 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100258
Ralf Baechle8fb303c2007-03-24 14:26:13 +0000259 void __iomem *sbm_base; /* MAC's base address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 sbmac_state_t sbm_state; /* current state */
Ralf Baechle74b02472005-10-19 15:40:02 +0100261
Ralf Baechle20399732005-10-19 15:39:05 +0100262 volatile void __iomem *sbm_macenable; /* MAC Enable Register */
263 volatile void __iomem *sbm_maccfg; /* MAC Configuration Register */
264 volatile void __iomem *sbm_fifocfg; /* FIFO configuration register */
265 volatile void __iomem *sbm_framecfg; /* Frame configuration register */
266 volatile void __iomem *sbm_rxfilter; /* receive filter register */
267 volatile void __iomem *sbm_isr; /* Interrupt status register */
268 volatile void __iomem *sbm_imr; /* Interrupt mask register */
269 volatile void __iomem *sbm_mdio; /* MDIO register */
Ralf Baechle74b02472005-10-19 15:40:02 +0100270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 sbmac_speed_t sbm_speed; /* current speed */
272 sbmac_duplex_t sbm_duplex; /* current duplex */
273 sbmac_fc_t sbm_fc; /* current flow control setting */
Ralf Baechle74b02472005-10-19 15:40:02 +0100274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 unsigned char sbm_hwaddr[ETHER_ADDR_LEN];
Ralf Baechle74b02472005-10-19 15:40:02 +0100276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 sbmacdma_t sbm_txdma; /* for now, only use channel 0 */
278 sbmacdma_t sbm_rxdma;
279 int rx_hw_checksum;
280 int sbe_idx;
281};
282
283
284/**********************************************************************
285 * Externs
286 ********************************************************************* */
287
288/**********************************************************************
289 * Prototypes
290 ********************************************************************* */
291
292static void sbdma_initctx(sbmacdma_t *d,
293 struct sbmac_softc *s,
294 int chan,
295 int txrx,
296 int maxdescr);
297static void sbdma_channel_start(sbmacdma_t *d, int rxtx);
298static int sbdma_add_rcvbuffer(sbmacdma_t *d,struct sk_buff *m);
299static int sbdma_add_txbuffer(sbmacdma_t *d,struct sk_buff *m);
300static void sbdma_emptyring(sbmacdma_t *d);
301static void sbdma_fillring(sbmacdma_t *d);
Mark Mason693aa942007-04-26 00:23:22 -0700302static int sbdma_rx_process(struct sbmac_softc *sc,sbmacdma_t *d, int work_to_do, int poll);
303static void sbdma_tx_process(struct sbmac_softc *sc,sbmacdma_t *d, int poll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304static int sbmac_initctx(struct sbmac_softc *s);
305static void sbmac_channel_start(struct sbmac_softc *s);
306static void sbmac_channel_stop(struct sbmac_softc *s);
307static sbmac_state_t sbmac_set_channel_state(struct sbmac_softc *,sbmac_state_t);
308static void sbmac_promiscuous_mode(struct sbmac_softc *sc,int onoff);
309static uint64_t sbmac_addr2reg(unsigned char *ptr);
David Howells7d12e782006-10-05 14:55:46 +0100310static irqreturn_t sbmac_intr(int irq,void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311static int sbmac_start_tx(struct sk_buff *skb, struct net_device *dev);
312static void sbmac_setmulti(struct sbmac_softc *sc);
313static int sbmac_init(struct net_device *dev, int idx);
314static int sbmac_set_speed(struct sbmac_softc *s,sbmac_speed_t speed);
315static int sbmac_set_duplex(struct sbmac_softc *s,sbmac_duplex_t duplex,sbmac_fc_t fc);
316
317static int sbmac_open(struct net_device *dev);
318static void sbmac_timer(unsigned long data);
319static void sbmac_tx_timeout (struct net_device *dev);
320static struct net_device_stats *sbmac_get_stats(struct net_device *dev);
321static void sbmac_set_rx_mode(struct net_device *dev);
322static int sbmac_mii_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
323static int sbmac_close(struct net_device *dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700324static int sbmac_poll(struct napi_struct *napi, int budget);
Mark Mason693aa942007-04-26 00:23:22 -0700325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326static int sbmac_mii_poll(struct sbmac_softc *s,int noisy);
Ralf Baechle59b81822005-10-20 12:01:28 +0100327static int sbmac_mii_probe(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329static void sbmac_mii_sync(struct sbmac_softc *s);
330static void sbmac_mii_senddata(struct sbmac_softc *s,unsigned int data, int bitcnt);
331static unsigned int sbmac_mii_read(struct sbmac_softc *s,int phyaddr,int regidx);
332static void sbmac_mii_write(struct sbmac_softc *s,int phyaddr,int regidx,
333 unsigned int regval);
334
335
336/**********************************************************************
337 * Globals
338 ********************************************************************* */
339
340static uint64_t sbmac_orig_hwaddr[MAX_UNITS];
341
342
343/**********************************************************************
344 * MDIO constants
345 ********************************************************************* */
346
347#define MII_COMMAND_START 0x01
348#define MII_COMMAND_READ 0x02
349#define MII_COMMAND_WRITE 0x01
350#define MII_COMMAND_ACK 0x02
351
352#define BMCR_RESET 0x8000
353#define BMCR_LOOPBACK 0x4000
354#define BMCR_SPEED0 0x2000
355#define BMCR_ANENABLE 0x1000
356#define BMCR_POWERDOWN 0x0800
357#define BMCR_ISOLATE 0x0400
358#define BMCR_RESTARTAN 0x0200
359#define BMCR_DUPLEX 0x0100
360#define BMCR_COLTEST 0x0080
361#define BMCR_SPEED1 0x0040
362#define BMCR_SPEED1000 BMCR_SPEED1
363#define BMCR_SPEED100 BMCR_SPEED0
364#define BMCR_SPEED10 0
365
366#define BMSR_100BT4 0x8000
367#define BMSR_100BT_FDX 0x4000
368#define BMSR_100BT_HDX 0x2000
369#define BMSR_10BT_FDX 0x1000
370#define BMSR_10BT_HDX 0x0800
371#define BMSR_100BT2_FDX 0x0400
372#define BMSR_100BT2_HDX 0x0200
373#define BMSR_1000BT_XSR 0x0100
374#define BMSR_PRESUP 0x0040
375#define BMSR_ANCOMPLT 0x0020
376#define BMSR_REMFAULT 0x0010
377#define BMSR_AUTONEG 0x0008
378#define BMSR_LINKSTAT 0x0004
379#define BMSR_JABDETECT 0x0002
380#define BMSR_EXTCAPAB 0x0001
381
382#define PHYIDR1 0x2000
383#define PHYIDR2 0x5C60
384
385#define ANAR_NP 0x8000
386#define ANAR_RF 0x2000
387#define ANAR_ASYPAUSE 0x0800
388#define ANAR_PAUSE 0x0400
389#define ANAR_T4 0x0200
390#define ANAR_TXFD 0x0100
391#define ANAR_TXHD 0x0080
392#define ANAR_10FD 0x0040
393#define ANAR_10HD 0x0020
394#define ANAR_PSB 0x0001
395
396#define ANLPAR_NP 0x8000
397#define ANLPAR_ACK 0x4000
398#define ANLPAR_RF 0x2000
399#define ANLPAR_ASYPAUSE 0x0800
400#define ANLPAR_PAUSE 0x0400
401#define ANLPAR_T4 0x0200
402#define ANLPAR_TXFD 0x0100
403#define ANLPAR_TXHD 0x0080
404#define ANLPAR_10FD 0x0040
405#define ANLPAR_10HD 0x0020
406#define ANLPAR_PSB 0x0001 /* 802.3 */
407
408#define ANER_PDF 0x0010
409#define ANER_LPNPABLE 0x0008
410#define ANER_NPABLE 0x0004
411#define ANER_PAGERX 0x0002
412#define ANER_LPANABLE 0x0001
413
414#define ANNPTR_NP 0x8000
415#define ANNPTR_MP 0x2000
416#define ANNPTR_ACK2 0x1000
417#define ANNPTR_TOGTX 0x0800
418#define ANNPTR_CODE 0x0008
419
420#define ANNPRR_NP 0x8000
421#define ANNPRR_MP 0x2000
422#define ANNPRR_ACK3 0x1000
423#define ANNPRR_TOGTX 0x0800
424#define ANNPRR_CODE 0x0008
425
426#define K1TCR_TESTMODE 0x0000
427#define K1TCR_MSMCE 0x1000
428#define K1TCR_MSCV 0x0800
429#define K1TCR_RPTR 0x0400
430#define K1TCR_1000BT_FDX 0x200
431#define K1TCR_1000BT_HDX 0x100
432
433#define K1STSR_MSMCFLT 0x8000
434#define K1STSR_MSCFGRES 0x4000
435#define K1STSR_LRSTAT 0x2000
436#define K1STSR_RRSTAT 0x1000
437#define K1STSR_LP1KFD 0x0800
438#define K1STSR_LP1KHD 0x0400
439#define K1STSR_LPASMDIR 0x0200
440
441#define K1SCR_1KX_FDX 0x8000
442#define K1SCR_1KX_HDX 0x4000
443#define K1SCR_1KT_FDX 0x2000
444#define K1SCR_1KT_HDX 0x1000
445
446#define STRAP_PHY1 0x0800
447#define STRAP_NCMODE 0x0400
448#define STRAP_MANMSCFG 0x0200
449#define STRAP_ANENABLE 0x0100
450#define STRAP_MSVAL 0x0080
451#define STRAP_1KHDXADV 0x0010
452#define STRAP_1KFDXADV 0x0008
453#define STRAP_100ADV 0x0004
454#define STRAP_SPEEDSEL 0x0000
455#define STRAP_SPEED100 0x0001
456
457#define PHYSUP_SPEED1000 0x10
458#define PHYSUP_SPEED100 0x08
459#define PHYSUP_SPEED10 0x00
460#define PHYSUP_LINKUP 0x04
461#define PHYSUP_FDX 0x02
462
463#define MII_BMCR 0x00 /* Basic mode control register (rw) */
464#define MII_BMSR 0x01 /* Basic mode status register (ro) */
Ralf Baechle59b81822005-10-20 12:01:28 +0100465#define MII_PHYIDR1 0x02
466#define MII_PHYIDR2 0x03
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468#define MII_K1STSR 0x0A /* 1K Status Register (ro) */
469#define MII_ANLPAR 0x05 /* Autonegotiation lnk partner abilities (rw) */
470
471
472#define M_MAC_MDIO_DIR_OUTPUT 0 /* for clarity */
473
474#define ENABLE 1
475#define DISABLE 0
476
477/**********************************************************************
478 * SBMAC_MII_SYNC(s)
Ralf Baechle74b02472005-10-19 15:40:02 +0100479 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 * Synchronize with the MII - send a pattern of bits to the MII
481 * that will guarantee that it is ready to accept a command.
Ralf Baechle74b02472005-10-19 15:40:02 +0100482 *
483 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 * s - sbmac structure
Ralf Baechle74b02472005-10-19 15:40:02 +0100485 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 * Return value:
487 * nothing
488 ********************************************************************* */
489
490static void sbmac_mii_sync(struct sbmac_softc *s)
491{
492 int cnt;
493 uint64_t bits;
494 int mac_mdio_genc;
495
Ralf Baechle20399732005-10-19 15:39:05 +0100496 mac_mdio_genc = __raw_readq(s->sbm_mdio) & M_MAC_GENC;
Ralf Baechle74b02472005-10-19 15:40:02 +0100497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 bits = M_MAC_MDIO_DIR_OUTPUT | M_MAC_MDIO_OUT;
Ralf Baechle74b02472005-10-19 15:40:02 +0100499
Ralf Baechle20399732005-10-19 15:39:05 +0100500 __raw_writeq(bits | mac_mdio_genc, s->sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 for (cnt = 0; cnt < 32; cnt++) {
Ralf Baechle20399732005-10-19 15:39:05 +0100503 __raw_writeq(bits | M_MAC_MDC | mac_mdio_genc, s->sbm_mdio);
504 __raw_writeq(bits | mac_mdio_genc, s->sbm_mdio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506}
507
508/**********************************************************************
509 * SBMAC_MII_SENDDATA(s,data,bitcnt)
Ralf Baechle74b02472005-10-19 15:40:02 +0100510 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 * Send some bits to the MII. The bits to be sent are right-
512 * justified in the 'data' parameter.
Ralf Baechle74b02472005-10-19 15:40:02 +0100513 *
514 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 * s - sbmac structure
516 * data - data to send
517 * bitcnt - number of bits to send
518 ********************************************************************* */
519
520static void sbmac_mii_senddata(struct sbmac_softc *s,unsigned int data, int bitcnt)
521{
522 int i;
523 uint64_t bits;
524 unsigned int curmask;
525 int mac_mdio_genc;
526
Ralf Baechle20399732005-10-19 15:39:05 +0100527 mac_mdio_genc = __raw_readq(s->sbm_mdio) & M_MAC_GENC;
Ralf Baechle74b02472005-10-19 15:40:02 +0100528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 bits = M_MAC_MDIO_DIR_OUTPUT;
Ralf Baechle20399732005-10-19 15:39:05 +0100530 __raw_writeq(bits | mac_mdio_genc, s->sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 curmask = 1 << (bitcnt - 1);
Ralf Baechle74b02472005-10-19 15:40:02 +0100533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 for (i = 0; i < bitcnt; i++) {
535 if (data & curmask)
536 bits |= M_MAC_MDIO_OUT;
537 else bits &= ~M_MAC_MDIO_OUT;
Ralf Baechle20399732005-10-19 15:39:05 +0100538 __raw_writeq(bits | mac_mdio_genc, s->sbm_mdio);
539 __raw_writeq(bits | M_MAC_MDC | mac_mdio_genc, s->sbm_mdio);
540 __raw_writeq(bits | mac_mdio_genc, s->sbm_mdio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 curmask >>= 1;
542 }
543}
544
545
546
547/**********************************************************************
548 * SBMAC_MII_READ(s,phyaddr,regidx)
Ralf Baechle74b02472005-10-19 15:40:02 +0100549 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 * Read a PHY register.
Ralf Baechle74b02472005-10-19 15:40:02 +0100551 *
552 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 * s - sbmac structure
554 * phyaddr - PHY's address
555 * regidx = index of register to read
Ralf Baechle74b02472005-10-19 15:40:02 +0100556 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 * Return value:
558 * value read, or 0 if an error occurred.
559 ********************************************************************* */
560
561static unsigned int sbmac_mii_read(struct sbmac_softc *s,int phyaddr,int regidx)
562{
563 int idx;
564 int error;
565 int regval;
566 int mac_mdio_genc;
567
568 /*
569 * Synchronize ourselves so that the PHY knows the next
570 * thing coming down is a command
571 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 sbmac_mii_sync(s);
Ralf Baechle74b02472005-10-19 15:40:02 +0100574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 /*
576 * Send the data to the PHY. The sequence is
577 * a "start" command (2 bits)
578 * a "read" command (2 bits)
579 * the PHY addr (5 bits)
580 * the register index (5 bits)
581 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 sbmac_mii_senddata(s,MII_COMMAND_START, 2);
584 sbmac_mii_senddata(s,MII_COMMAND_READ, 2);
585 sbmac_mii_senddata(s,phyaddr, 5);
586 sbmac_mii_senddata(s,regidx, 5);
Ralf Baechle74b02472005-10-19 15:40:02 +0100587
Ralf Baechle20399732005-10-19 15:39:05 +0100588 mac_mdio_genc = __raw_readq(s->sbm_mdio) & M_MAC_GENC;
Ralf Baechle74b02472005-10-19 15:40:02 +0100589
590 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 * Switch the port around without a clock transition.
592 */
Ralf Baechle20399732005-10-19 15:39:05 +0100593 __raw_writeq(M_MAC_MDIO_DIR_INPUT | mac_mdio_genc, s->sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 /*
596 * Send out a clock pulse to signal we want the status
597 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100598
Ralf Baechle20399732005-10-19 15:39:05 +0100599 __raw_writeq(M_MAC_MDIO_DIR_INPUT | M_MAC_MDC | mac_mdio_genc, s->sbm_mdio);
600 __raw_writeq(M_MAC_MDIO_DIR_INPUT | mac_mdio_genc, s->sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100601
602 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 * If an error occurred, the PHY will signal '1' back
604 */
Ralf Baechle20399732005-10-19 15:39:05 +0100605 error = __raw_readq(s->sbm_mdio) & M_MAC_MDIO_IN;
Ralf Baechle74b02472005-10-19 15:40:02 +0100606
607 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 * Issue an 'idle' clock pulse, but keep the direction
609 * the same.
610 */
Ralf Baechle20399732005-10-19 15:39:05 +0100611 __raw_writeq(M_MAC_MDIO_DIR_INPUT | M_MAC_MDC | mac_mdio_genc, s->sbm_mdio);
612 __raw_writeq(M_MAC_MDIO_DIR_INPUT | mac_mdio_genc, s->sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 regval = 0;
Ralf Baechle74b02472005-10-19 15:40:02 +0100615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 for (idx = 0; idx < 16; idx++) {
617 regval <<= 1;
Ralf Baechle74b02472005-10-19 15:40:02 +0100618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 if (error == 0) {
Ralf Baechle20399732005-10-19 15:39:05 +0100620 if (__raw_readq(s->sbm_mdio) & M_MAC_MDIO_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 regval |= 1;
622 }
Ralf Baechle74b02472005-10-19 15:40:02 +0100623
Ralf Baechle20399732005-10-19 15:39:05 +0100624 __raw_writeq(M_MAC_MDIO_DIR_INPUT|M_MAC_MDC | mac_mdio_genc, s->sbm_mdio);
625 __raw_writeq(M_MAC_MDIO_DIR_INPUT | mac_mdio_genc, s->sbm_mdio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
Ralf Baechle74b02472005-10-19 15:40:02 +0100627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 /* Switch back to output */
Ralf Baechle20399732005-10-19 15:39:05 +0100629 __raw_writeq(M_MAC_MDIO_DIR_OUTPUT | mac_mdio_genc, s->sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 if (error == 0)
632 return regval;
633 return 0;
634}
635
636
637/**********************************************************************
638 * SBMAC_MII_WRITE(s,phyaddr,regidx,regval)
Ralf Baechle74b02472005-10-19 15:40:02 +0100639 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 * Write a value to a PHY register.
Ralf Baechle74b02472005-10-19 15:40:02 +0100641 *
642 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 * s - sbmac structure
644 * phyaddr - PHY to use
645 * regidx - register within the PHY
646 * regval - data to write to register
Ralf Baechle74b02472005-10-19 15:40:02 +0100647 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 * Return value:
649 * nothing
650 ********************************************************************* */
651
652static void sbmac_mii_write(struct sbmac_softc *s,int phyaddr,int regidx,
653 unsigned int regval)
654{
655 int mac_mdio_genc;
656
657 sbmac_mii_sync(s);
Ralf Baechle74b02472005-10-19 15:40:02 +0100658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 sbmac_mii_senddata(s,MII_COMMAND_START,2);
660 sbmac_mii_senddata(s,MII_COMMAND_WRITE,2);
661 sbmac_mii_senddata(s,phyaddr, 5);
662 sbmac_mii_senddata(s,regidx, 5);
663 sbmac_mii_senddata(s,MII_COMMAND_ACK,2);
664 sbmac_mii_senddata(s,regval,16);
665
Ralf Baechle20399732005-10-19 15:39:05 +0100666 mac_mdio_genc = __raw_readq(s->sbm_mdio) & M_MAC_GENC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Ralf Baechle20399732005-10-19 15:39:05 +0100668 __raw_writeq(M_MAC_MDIO_DIR_OUTPUT | mac_mdio_genc, s->sbm_mdio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
671
672
673/**********************************************************************
674 * SBDMA_INITCTX(d,s,chan,txrx,maxdescr)
Ralf Baechle74b02472005-10-19 15:40:02 +0100675 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 * Initialize a DMA channel context. Since there are potentially
677 * eight DMA channels per MAC, it's nice to do this in a standard
Ralf Baechle74b02472005-10-19 15:40:02 +0100678 * way.
679 *
680 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 * d - sbmacdma_t structure (DMA channel context)
682 * s - sbmac_softc structure (pointer to a MAC)
683 * chan - channel number (0..1 right now)
684 * txrx - Identifies DMA_TX or DMA_RX for channel direction
685 * maxdescr - number of descriptors
Ralf Baechle74b02472005-10-19 15:40:02 +0100686 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 * Return value:
688 * nothing
689 ********************************************************************* */
690
691static void sbdma_initctx(sbmacdma_t *d,
692 struct sbmac_softc *s,
693 int chan,
694 int txrx,
695 int maxdescr)
696{
Mark Mason693aa942007-04-26 00:23:22 -0700697#ifdef CONFIG_SBMAC_COALESCE
698 int int_pktcnt, int_timeout;
699#endif
700
Ralf Baechle74b02472005-10-19 15:40:02 +0100701 /*
702 * Save away interesting stuff in the structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 d->sbdma_eth = s;
706 d->sbdma_channel = chan;
707 d->sbdma_txdir = txrx;
Ralf Baechle74b02472005-10-19 15:40:02 +0100708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709#if 0
710 /* RMON clearing */
711 s->sbe_idx =(s->sbm_base - A_MAC_BASE_0)/MAC_SPACING;
712#endif
713
Ralf Baechle20399732005-10-19 15:39:05 +0100714 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_TX_BYTES)));
715 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_COLLISIONS)));
716 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_LATE_COL)));
717 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_EX_COL)));
718 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_FCS_ERROR)));
719 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_TX_ABORT)));
720 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_TX_BAD)));
721 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_TX_GOOD)));
722 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_TX_RUNT)));
723 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_TX_OVERSIZE)));
724 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_RX_BYTES)));
725 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_RX_MCAST)));
726 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_RX_BCAST)));
727 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_RX_BAD)));
728 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_RX_GOOD)));
729 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_RX_RUNT)));
730 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_RX_OVERSIZE)));
731 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_RX_FCS_ERROR)));
732 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_RX_LENGTH_ERROR)));
733 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_RX_CODE_ERROR)));
734 __raw_writeq(0, IOADDR(A_MAC_REGISTER(s->sbe_idx, R_MAC_RMON_RX_ALIGN_ERROR)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Ralf Baechle74b02472005-10-19 15:40:02 +0100736 /*
737 * initialize register pointers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100739
740 d->sbdma_config0 =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_CONFIG0);
Ralf Baechle74b02472005-10-19 15:40:02 +0100742 d->sbdma_config1 =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_CONFIG1);
Ralf Baechle74b02472005-10-19 15:40:02 +0100744 d->sbdma_dscrbase =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_DSCR_BASE);
Ralf Baechle74b02472005-10-19 15:40:02 +0100746 d->sbdma_dscrcnt =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_DSCR_CNT);
Ralf Baechle74b02472005-10-19 15:40:02 +0100748 d->sbdma_curdscr =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_CUR_DSCRADDR);
Mark Mason693aa942007-04-26 00:23:22 -0700750 if (d->sbdma_txdir)
751 d->sbdma_oodpktlost = NULL;
752 else
753 d->sbdma_oodpktlost =
754 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_OODPKTLOST_RX);
Ralf Baechle74b02472005-10-19 15:40:02 +0100755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 /*
757 * Allocate memory for the ring
758 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 d->sbdma_maxdescr = maxdescr;
Ralf Baechle74b02472005-10-19 15:40:02 +0100761
Mark Mason693aa942007-04-26 00:23:22 -0700762 d->sbdma_dscrtable_unaligned =
Ralf Baechle74b02472005-10-19 15:40:02 +0100763 d->sbdma_dscrtable = (sbdmadscr_t *)
Ralf Baechle04115de2005-10-10 14:50:36 +0100764 kmalloc((d->sbdma_maxdescr+1)*sizeof(sbdmadscr_t), GFP_KERNEL);
765
766 /*
767 * The descriptor table must be aligned to at least 16 bytes or the
768 * MAC will corrupt it.
769 */
770 d->sbdma_dscrtable = (sbdmadscr_t *)
771 ALIGN((unsigned long)d->sbdma_dscrtable, sizeof(sbdmadscr_t));
Ralf Baechle74b02472005-10-19 15:40:02 +0100772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 memset(d->sbdma_dscrtable,0,d->sbdma_maxdescr*sizeof(sbdmadscr_t));
Ralf Baechle74b02472005-10-19 15:40:02 +0100774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 d->sbdma_dscrtable_end = d->sbdma_dscrtable + d->sbdma_maxdescr;
Ralf Baechle74b02472005-10-19 15:40:02 +0100776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 d->sbdma_dscrtable_phys = virt_to_phys(d->sbdma_dscrtable);
Ralf Baechle74b02472005-10-19 15:40:02 +0100778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 /*
780 * And context table
781 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100782
783 d->sbdma_ctxtable = (struct sk_buff **)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 kmalloc(d->sbdma_maxdescr*sizeof(struct sk_buff *), GFP_KERNEL);
Ralf Baechle74b02472005-10-19 15:40:02 +0100785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 memset(d->sbdma_ctxtable,0,d->sbdma_maxdescr*sizeof(struct sk_buff *));
Ralf Baechle74b02472005-10-19 15:40:02 +0100787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788#ifdef CONFIG_SBMAC_COALESCE
789 /*
790 * Setup Rx/Tx DMA coalescing defaults
791 */
792
Mark Mason693aa942007-04-26 00:23:22 -0700793 int_pktcnt = (txrx == DMA_TX) ? int_pktcnt_tx : int_pktcnt_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if ( int_pktcnt ) {
795 d->sbdma_int_pktcnt = int_pktcnt;
796 } else {
797 d->sbdma_int_pktcnt = 1;
798 }
Ralf Baechle74b02472005-10-19 15:40:02 +0100799
Mark Mason693aa942007-04-26 00:23:22 -0700800 int_timeout = (txrx == DMA_TX) ? int_timeout_tx : int_timeout_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if ( int_timeout ) {
802 d->sbdma_int_timeout = int_timeout;
803 } else {
804 d->sbdma_int_timeout = 0;
805 }
806#endif
807
808}
809
810/**********************************************************************
811 * SBDMA_CHANNEL_START(d)
Ralf Baechle74b02472005-10-19 15:40:02 +0100812 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 * Initialize the hardware registers for a DMA channel.
Ralf Baechle74b02472005-10-19 15:40:02 +0100814 *
815 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 * d - DMA channel to init (context must be previously init'd
817 * rxtx - DMA_RX or DMA_TX depending on what type of channel
Ralf Baechle74b02472005-10-19 15:40:02 +0100818 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 * Return value:
820 * nothing
821 ********************************************************************* */
822
823static void sbdma_channel_start(sbmacdma_t *d, int rxtx )
824{
825 /*
826 * Turn on the DMA channel
827 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829#ifdef CONFIG_SBMAC_COALESCE
Ralf Baechle20399732005-10-19 15:39:05 +0100830 __raw_writeq(V_DMA_INT_TIMEOUT(d->sbdma_int_timeout) |
831 0, d->sbdma_config1);
832 __raw_writeq(M_DMA_EOP_INT_EN |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 V_DMA_RINGSZ(d->sbdma_maxdescr) |
834 V_DMA_INT_PKTCNT(d->sbdma_int_pktcnt) |
Ralf Baechle20399732005-10-19 15:39:05 +0100835 0, d->sbdma_config0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836#else
Ralf Baechle20399732005-10-19 15:39:05 +0100837 __raw_writeq(0, d->sbdma_config1);
838 __raw_writeq(V_DMA_RINGSZ(d->sbdma_maxdescr) |
839 0, d->sbdma_config0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840#endif
841
Ralf Baechle20399732005-10-19 15:39:05 +0100842 __raw_writeq(d->sbdma_dscrtable_phys, d->sbdma_dscrbase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 /*
845 * Initialize ring pointers
846 */
847
848 d->sbdma_addptr = d->sbdma_dscrtable;
849 d->sbdma_remptr = d->sbdma_dscrtable;
850}
851
852/**********************************************************************
853 * SBDMA_CHANNEL_STOP(d)
Ralf Baechle74b02472005-10-19 15:40:02 +0100854 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 * Initialize the hardware registers for a DMA channel.
Ralf Baechle74b02472005-10-19 15:40:02 +0100856 *
857 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 * d - DMA channel to init (context must be previously init'd
Ralf Baechle74b02472005-10-19 15:40:02 +0100859 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 * Return value:
861 * nothing
862 ********************************************************************* */
863
864static void sbdma_channel_stop(sbmacdma_t *d)
865{
866 /*
867 * Turn off the DMA channel
868 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100869
Ralf Baechle20399732005-10-19 15:39:05 +0100870 __raw_writeq(0, d->sbdma_config1);
Ralf Baechle74b02472005-10-19 15:40:02 +0100871
Ralf Baechle20399732005-10-19 15:39:05 +0100872 __raw_writeq(0, d->sbdma_dscrbase);
Ralf Baechle74b02472005-10-19 15:40:02 +0100873
Ralf Baechle20399732005-10-19 15:39:05 +0100874 __raw_writeq(0, d->sbdma_config0);
Ralf Baechle74b02472005-10-19 15:40:02 +0100875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 /*
877 * Zero ring pointers
878 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100879
Ralf Baechle20399732005-10-19 15:39:05 +0100880 d->sbdma_addptr = NULL;
881 d->sbdma_remptr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
883
884static void sbdma_align_skb(struct sk_buff *skb,int power2,int offset)
885{
886 unsigned long addr;
887 unsigned long newaddr;
Ralf Baechle74b02472005-10-19 15:40:02 +0100888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 addr = (unsigned long) skb->data;
Ralf Baechle74b02472005-10-19 15:40:02 +0100890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 newaddr = (addr + power2 - 1) & ~(power2 - 1);
Ralf Baechle74b02472005-10-19 15:40:02 +0100892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 skb_reserve(skb,newaddr-addr+offset);
894}
895
896
897/**********************************************************************
898 * SBDMA_ADD_RCVBUFFER(d,sb)
Ralf Baechle74b02472005-10-19 15:40:02 +0100899 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 * Add a buffer to the specified DMA channel. For receive channels,
901 * this queues a buffer for inbound packets.
Ralf Baechle74b02472005-10-19 15:40:02 +0100902 *
903 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 * d - DMA channel descriptor
905 * sb - sk_buff to add, or NULL if we should allocate one
Ralf Baechle74b02472005-10-19 15:40:02 +0100906 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 * Return value:
908 * 0 if buffer could not be added (ring is full)
909 * 1 if buffer added successfully
910 ********************************************************************* */
911
912
913static int sbdma_add_rcvbuffer(sbmacdma_t *d,struct sk_buff *sb)
914{
915 sbdmadscr_t *dsc;
916 sbdmadscr_t *nextdsc;
917 struct sk_buff *sb_new = NULL;
918 int pktsize = ENET_PACKET_SIZE;
Ralf Baechle74b02472005-10-19 15:40:02 +0100919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 /* get pointer to our current place in the ring */
Ralf Baechle74b02472005-10-19 15:40:02 +0100921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 dsc = d->sbdma_addptr;
923 nextdsc = SBDMA_NEXTBUF(d,sbdma_addptr);
Ralf Baechle74b02472005-10-19 15:40:02 +0100924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 /*
926 * figure out if the ring is full - if the next descriptor
927 * is the same as the one that we're going to remove from
928 * the ring, the ring is full
929 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (nextdsc == d->sbdma_remptr) {
932 return -ENOSPC;
933 }
934
Ralf Baechle74b02472005-10-19 15:40:02 +0100935 /*
936 * Allocate a sk_buff if we don't already have one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 * If we do have an sk_buff, reset it so that it's empty.
938 *
939 * Note: sk_buffs don't seem to be guaranteed to have any sort
940 * of alignment when they are allocated. Therefore, allocate enough
941 * extra space to make sure that:
942 *
943 * 1. the data does not start in the middle of a cache line.
944 * 2. The data does not end in the middle of a cache line
Ralf Baechle74b02472005-10-19 15:40:02 +0100945 * 3. The buffer can be aligned such that the IP addresses are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 * naturally aligned.
947 *
948 * Remember, the SOCs MAC writes whole cache lines at a time,
949 * without reading the old contents first. So, if the sk_buff's
950 * data portion starts in the middle of a cache line, the SOC
951 * DMA will trash the beginning (and ending) portions.
952 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (sb == NULL) {
955 sb_new = dev_alloc_skb(ENET_PACKET_SIZE + SMP_CACHE_BYTES * 2 + ETHER_ALIGN);
956 if (sb_new == NULL) {
957 printk(KERN_INFO "%s: sk_buff allocation failed\n",
958 d->sbdma_eth->sbm_dev->name);
959 return -ENOBUFS;
960 }
961
962 sbdma_align_skb(sb_new, SMP_CACHE_BYTES, ETHER_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 }
964 else {
965 sb_new = sb;
Ralf Baechle74b02472005-10-19 15:40:02 +0100966 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 * nothing special to reinit buffer, it's already aligned
968 * and sb->data already points to a good place.
969 */
970 }
Ralf Baechle74b02472005-10-19 15:40:02 +0100971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 /*
Ralf Baechle74b02472005-10-19 15:40:02 +0100973 * fill in the descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976#ifdef CONFIG_SBMAC_COALESCE
977 /*
978 * Do not interrupt per DMA transfer.
979 */
David S. Miller689be432005-06-28 15:25:31 -0700980 dsc->dscr_a = virt_to_phys(sb_new->data) |
Ralf Baechle20399732005-10-19 15:39:05 +0100981 V_DMA_DSCRA_A_SIZE(NUMCACHEBLKS(pktsize+ETHER_ALIGN)) | 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982#else
David S. Miller689be432005-06-28 15:25:31 -0700983 dsc->dscr_a = virt_to_phys(sb_new->data) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 V_DMA_DSCRA_A_SIZE(NUMCACHEBLKS(pktsize+ETHER_ALIGN)) |
985 M_DMA_DSCRA_INTERRUPT;
986#endif
987
988 /* receiving: no options */
989 dsc->dscr_b = 0;
Ralf Baechle74b02472005-10-19 15:40:02 +0100990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 /*
Ralf Baechle74b02472005-10-19 15:40:02 +0100992 * fill in the context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 d->sbdma_ctxtable[dsc-d->sbdma_dscrtable] = sb_new;
Ralf Baechle74b02472005-10-19 15:40:02 +0100996
997 /*
998 * point at next packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 d->sbdma_addptr = nextdsc;
Ralf Baechle74b02472005-10-19 15:40:02 +01001002
1003 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 * Give the buffer to the DMA engine.
1005 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001006
Ralf Baechle20399732005-10-19 15:39:05 +01001007 __raw_writeq(1, d->sbdma_dscrcnt);
Ralf Baechle74b02472005-10-19 15:40:02 +01001008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 return 0; /* we did it */
1010}
1011
1012/**********************************************************************
1013 * SBDMA_ADD_TXBUFFER(d,sb)
Ralf Baechle74b02472005-10-19 15:40:02 +01001014 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 * Add a transmit buffer to the specified DMA channel, causing a
1016 * transmit to start.
Ralf Baechle74b02472005-10-19 15:40:02 +01001017 *
1018 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 * d - DMA channel descriptor
1020 * sb - sk_buff to add
Ralf Baechle74b02472005-10-19 15:40:02 +01001021 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 * Return value:
1023 * 0 transmit queued successfully
1024 * otherwise error code
1025 ********************************************************************* */
1026
1027
1028static int sbdma_add_txbuffer(sbmacdma_t *d,struct sk_buff *sb)
1029{
1030 sbdmadscr_t *dsc;
1031 sbdmadscr_t *nextdsc;
1032 uint64_t phys;
1033 uint64_t ncb;
1034 int length;
Ralf Baechle74b02472005-10-19 15:40:02 +01001035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 /* get pointer to our current place in the ring */
Ralf Baechle74b02472005-10-19 15:40:02 +01001037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 dsc = d->sbdma_addptr;
1039 nextdsc = SBDMA_NEXTBUF(d,sbdma_addptr);
Ralf Baechle74b02472005-10-19 15:40:02 +01001040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 /*
1042 * figure out if the ring is full - if the next descriptor
1043 * is the same as the one that we're going to remove from
1044 * the ring, the ring is full
1045 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (nextdsc == d->sbdma_remptr) {
1048 return -ENOSPC;
1049 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 /*
1052 * Under Linux, it's not necessary to copy/coalesce buffers
1053 * like it is on NetBSD. We think they're all contiguous,
1054 * but that may not be true for GBE.
1055 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 length = sb->len;
Ralf Baechle74b02472005-10-19 15:40:02 +01001058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 /*
1060 * fill in the descriptor. Note that the number of cache
1061 * blocks in the descriptor is the number of blocks
1062 * *spanned*, so we need to add in the offset (if any)
1063 * while doing the calculation.
1064 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 phys = virt_to_phys(sb->data);
1067 ncb = NUMCACHEBLKS(length+(phys & (SMP_CACHE_BYTES - 1)));
1068
Ralf Baechle74b02472005-10-19 15:40:02 +01001069 dsc->dscr_a = phys |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 V_DMA_DSCRA_A_SIZE(ncb) |
1071#ifndef CONFIG_SBMAC_COALESCE
1072 M_DMA_DSCRA_INTERRUPT |
1073#endif
1074 M_DMA_ETHTX_SOP;
Ralf Baechle74b02472005-10-19 15:40:02 +01001075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 /* transmitting: set outbound options and length */
1077
1078 dsc->dscr_b = V_DMA_DSCRB_OPTIONS(K_DMA_ETHTX_APPENDCRC_APPENDPAD) |
1079 V_DMA_DSCRB_PKT_SIZE(length);
Ralf Baechle74b02472005-10-19 15:40:02 +01001080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001082 * fill in the context
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 d->sbdma_ctxtable[dsc-d->sbdma_dscrtable] = sb;
Ralf Baechle74b02472005-10-19 15:40:02 +01001086
1087 /*
1088 * point at next packet
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 d->sbdma_addptr = nextdsc;
Ralf Baechle74b02472005-10-19 15:40:02 +01001092
1093 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 * Give the buffer to the DMA engine.
1095 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001096
Ralf Baechle20399732005-10-19 15:39:05 +01001097 __raw_writeq(1, d->sbdma_dscrcnt);
Ralf Baechle74b02472005-10-19 15:40:02 +01001098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 return 0; /* we did it */
1100}
1101
1102
1103
1104
1105/**********************************************************************
1106 * SBDMA_EMPTYRING(d)
Ralf Baechle74b02472005-10-19 15:40:02 +01001107 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 * Free all allocated sk_buffs on the specified DMA channel;
Ralf Baechle74b02472005-10-19 15:40:02 +01001109 *
1110 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 * d - DMA channel
Ralf Baechle74b02472005-10-19 15:40:02 +01001112 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 * Return value:
1114 * nothing
1115 ********************************************************************* */
1116
1117static void sbdma_emptyring(sbmacdma_t *d)
1118{
1119 int idx;
1120 struct sk_buff *sb;
Ralf Baechle74b02472005-10-19 15:40:02 +01001121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 for (idx = 0; idx < d->sbdma_maxdescr; idx++) {
1123 sb = d->sbdma_ctxtable[idx];
1124 if (sb) {
1125 dev_kfree_skb(sb);
1126 d->sbdma_ctxtable[idx] = NULL;
1127 }
1128 }
1129}
1130
1131
1132/**********************************************************************
1133 * SBDMA_FILLRING(d)
Ralf Baechle74b02472005-10-19 15:40:02 +01001134 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 * Fill the specified DMA channel (must be receive channel)
1136 * with sk_buffs
Ralf Baechle74b02472005-10-19 15:40:02 +01001137 *
1138 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 * d - DMA channel
Ralf Baechle74b02472005-10-19 15:40:02 +01001140 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 * Return value:
1142 * nothing
1143 ********************************************************************* */
1144
1145static void sbdma_fillring(sbmacdma_t *d)
1146{
1147 int idx;
Ralf Baechle74b02472005-10-19 15:40:02 +01001148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 for (idx = 0; idx < SBMAC_MAX_RXDESCR-1; idx++) {
1150 if (sbdma_add_rcvbuffer(d,NULL) != 0)
1151 break;
1152 }
1153}
1154
Deepak Saxenad6830012007-03-19 15:43:11 -07001155#ifdef CONFIG_NET_POLL_CONTROLLER
1156static void sbmac_netpoll(struct net_device *netdev)
1157{
1158 struct sbmac_softc *sc = netdev_priv(netdev);
1159 int irq = sc->sbm_dev->irq;
1160
1161 __raw_writeq(0, sc->sbm_imr);
1162
Yoann Padioleau0da2f0f2007-07-06 02:39:56 -07001163 sbmac_intr(irq, netdev);
Deepak Saxenad6830012007-03-19 15:43:11 -07001164
1165#ifdef CONFIG_SBMAC_COALESCE
1166 __raw_writeq(((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_TX_CH0) |
1167 ((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_RX_CH0),
1168 sc->sbm_imr);
1169#else
1170 __raw_writeq((M_MAC_INT_CHANNEL << S_MAC_TX_CH0) |
1171 (M_MAC_INT_CHANNEL << S_MAC_RX_CH0), sc->sbm_imr);
1172#endif
1173}
1174#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176/**********************************************************************
Mark Mason693aa942007-04-26 00:23:22 -07001177 * SBDMA_RX_PROCESS(sc,d,work_to_do,poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 *
Ralf Baechle74b02472005-10-19 15:40:02 +01001179 * Process "completed" receive buffers on the specified DMA channel.
Ralf Baechle74b02472005-10-19 15:40:02 +01001180 *
1181 * Input parameters:
Mark Mason693aa942007-04-26 00:23:22 -07001182 * sc - softc structure
1183 * d - DMA channel context
1184 * work_to_do - no. of packets to process before enabling interrupt
1185 * again (for NAPI)
1186 * poll - 1: using polling (for NAPI)
Ralf Baechle74b02472005-10-19 15:40:02 +01001187 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 * Return value:
1189 * nothing
1190 ********************************************************************* */
1191
Mark Mason693aa942007-04-26 00:23:22 -07001192static int sbdma_rx_process(struct sbmac_softc *sc,sbmacdma_t *d,
1193 int work_to_do, int poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
1195 int curidx;
1196 int hwidx;
1197 sbdmadscr_t *dsc;
1198 struct sk_buff *sb;
1199 int len;
Mark Mason693aa942007-04-26 00:23:22 -07001200 int work_done = 0;
1201 int dropped = 0;
Ralf Baechle74b02472005-10-19 15:40:02 +01001202
Mark Mason693aa942007-04-26 00:23:22 -07001203 prefetch(d);
1204
1205again:
1206 /* Check if the HW dropped any frames */
1207 sc->sbm_stats.rx_fifo_errors
1208 += __raw_readq(sc->sbm_rxdma.sbdma_oodpktlost) & 0xffff;
1209 __raw_writeq(0, sc->sbm_rxdma.sbdma_oodpktlost);
1210
1211 while (work_to_do-- > 0) {
Ralf Baechle74b02472005-10-19 15:40:02 +01001212 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 * figure out where we are (as an index) and where
1214 * the hardware is (also as an index)
1215 *
Ralf Baechle74b02472005-10-19 15:40:02 +01001216 * This could be done faster if (for example) the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 * descriptor table was page-aligned and contiguous in
1218 * both virtual and physical memory -- you could then
1219 * just compare the low-order bits of the virtual address
1220 * (sbdma_remptr) and the physical address (sbdma_curdscr CSR)
1221 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001222
Mark Mason693aa942007-04-26 00:23:22 -07001223 dsc = d->sbdma_remptr;
1224 curidx = dsc - d->sbdma_dscrtable;
1225
1226 prefetch(dsc);
1227 prefetch(&d->sbdma_ctxtable[curidx]);
1228
Ralf Baechle20399732005-10-19 15:39:05 +01001229 hwidx = (int) (((__raw_readq(d->sbdma_curdscr) & M_DMA_CURDSCR_ADDR) -
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 d->sbdma_dscrtable_phys) / sizeof(sbdmadscr_t));
Ralf Baechle74b02472005-10-19 15:40:02 +01001231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 /*
1233 * If they're the same, that means we've processed all
1234 * of the descriptors up to (but not including) the one that
1235 * the hardware is working on right now.
1236 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (curidx == hwidx)
Mark Mason693aa942007-04-26 00:23:22 -07001239 goto done;
Ralf Baechle74b02472005-10-19 15:40:02 +01001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 /*
1242 * Otherwise, get the packet's sk_buff ptr back
1243 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 sb = d->sbdma_ctxtable[curidx];
1246 d->sbdma_ctxtable[curidx] = NULL;
Ralf Baechle74b02472005-10-19 15:40:02 +01001247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 len = (int)G_DMA_DSCRB_PKT_SIZE(dsc->dscr_b) - 4;
Ralf Baechle74b02472005-10-19 15:40:02 +01001249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 /*
1251 * Check packet status. If good, process it.
1252 * If not, silently drop it and put it back on the
1253 * receive ring.
1254 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001255
Mark Mason693aa942007-04-26 00:23:22 -07001256 if (likely (!(dsc->dscr_a & M_DMA_ETHRX_BAD))) {
Ralf Baechle74b02472005-10-19 15:40:02 +01001257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 /*
1259 * Add a new buffer to replace the old one. If we fail
1260 * to allocate a buffer, we're going to drop this
1261 * packet and put it right back on the receive ring.
1262 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001263
Mark Mason693aa942007-04-26 00:23:22 -07001264 if (unlikely (sbdma_add_rcvbuffer(d,NULL) ==
1265 -ENOBUFS)) {
1266 sc->sbm_stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 sbdma_add_rcvbuffer(d,sb); /* re-add old buffer */
Mark Mason693aa942007-04-26 00:23:22 -07001268 /* No point in continuing at the moment */
1269 printk(KERN_ERR "dropped packet (1)\n");
1270 d->sbdma_remptr = SBDMA_NEXTBUF(d,sbdma_remptr);
1271 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 } else {
1273 /*
1274 * Set length into the packet
1275 */
1276 skb_put(sb,len);
Ralf Baechle74b02472005-10-19 15:40:02 +01001277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 /*
1279 * Buffer has been replaced on the
1280 * receive ring. Pass the buffer to
1281 * the kernel
1282 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 sb->protocol = eth_type_trans(sb,d->sbdma_eth->sbm_dev);
1284 /* Check hw IPv4/TCP checksum if supported */
1285 if (sc->rx_hw_checksum == ENABLE) {
1286 if (!((dsc->dscr_a) & M_DMA_ETHRX_BADIP4CS) &&
1287 !((dsc->dscr_a) & M_DMA_ETHRX_BADTCPCS)) {
1288 sb->ip_summed = CHECKSUM_UNNECESSARY;
1289 /* don't need to set sb->csum */
1290 } else {
1291 sb->ip_summed = CHECKSUM_NONE;
1292 }
1293 }
Mark Mason693aa942007-04-26 00:23:22 -07001294 prefetch(sb->data);
1295 prefetch((const void *)(((char *)sb->data)+32));
1296 if (poll)
1297 dropped = netif_receive_skb(sb);
1298 else
1299 dropped = netif_rx(sb);
Ralf Baechle74b02472005-10-19 15:40:02 +01001300
Mark Mason693aa942007-04-26 00:23:22 -07001301 if (dropped == NET_RX_DROP) {
1302 sc->sbm_stats.rx_dropped++;
1303 d->sbdma_remptr = SBDMA_NEXTBUF(d,sbdma_remptr);
1304 goto done;
1305 }
1306 else {
1307 sc->sbm_stats.rx_bytes += len;
1308 sc->sbm_stats.rx_packets++;
1309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
1311 } else {
1312 /*
1313 * Packet was mangled somehow. Just drop it and
1314 * put it back on the receive ring.
1315 */
1316 sc->sbm_stats.rx_errors++;
1317 sbdma_add_rcvbuffer(d,sb);
1318 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001319
1320
1321 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 * .. and advance to the next buffer.
1323 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 d->sbdma_remptr = SBDMA_NEXTBUF(d,sbdma_remptr);
Mark Mason693aa942007-04-26 00:23:22 -07001326 work_done++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
Mark Mason693aa942007-04-26 00:23:22 -07001328 if (!poll) {
1329 work_to_do = 32;
1330 goto again; /* collect fifo drop statistics again */
1331 }
1332done:
1333 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336/**********************************************************************
1337 * SBDMA_TX_PROCESS(sc,d)
Ralf Baechle74b02472005-10-19 15:40:02 +01001338 *
1339 * Process "completed" transmit buffers on the specified DMA channel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 * This is normally called within the interrupt service routine.
1341 * Note that this isn't really ideal for priority channels, since
Ralf Baechle74b02472005-10-19 15:40:02 +01001342 * it processes all of the packets on a given channel before
1343 * returning.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 *
Ralf Baechle74b02472005-10-19 15:40:02 +01001345 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 * sc - softc structure
Mark Mason693aa942007-04-26 00:23:22 -07001347 * d - DMA channel context
1348 * poll - 1: using polling (for NAPI)
Ralf Baechle74b02472005-10-19 15:40:02 +01001349 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 * Return value:
1351 * nothing
1352 ********************************************************************* */
1353
Mark Mason693aa942007-04-26 00:23:22 -07001354static void sbdma_tx_process(struct sbmac_softc *sc,sbmacdma_t *d, int poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
1356 int curidx;
1357 int hwidx;
1358 sbdmadscr_t *dsc;
1359 struct sk_buff *sb;
1360 unsigned long flags;
Mark Mason693aa942007-04-26 00:23:22 -07001361 int packets_handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 spin_lock_irqsave(&(sc->sbm_lock), flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01001364
Mark Mason693aa942007-04-26 00:23:22 -07001365 if (d->sbdma_remptr == d->sbdma_addptr)
1366 goto end_unlock;
1367
1368 hwidx = (int) (((__raw_readq(d->sbdma_curdscr) & M_DMA_CURDSCR_ADDR) -
1369 d->sbdma_dscrtable_phys) / sizeof(sbdmadscr_t));
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 for (;;) {
Ralf Baechle74b02472005-10-19 15:40:02 +01001372 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 * figure out where we are (as an index) and where
1374 * the hardware is (also as an index)
1375 *
Ralf Baechle74b02472005-10-19 15:40:02 +01001376 * This could be done faster if (for example) the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 * descriptor table was page-aligned and contiguous in
1378 * both virtual and physical memory -- you could then
1379 * just compare the low-order bits of the virtual address
1380 * (sbdma_remptr) and the physical address (sbdma_curdscr CSR)
1381 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 curidx = d->sbdma_remptr - d->sbdma_dscrtable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 /*
1386 * If they're the same, that means we've processed all
1387 * of the descriptors up to (but not including) the one that
1388 * the hardware is working on right now.
1389 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (curidx == hwidx)
1392 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 /*
1395 * Otherwise, get the packet's sk_buff ptr back
1396 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 dsc = &(d->sbdma_dscrtable[curidx]);
1399 sb = d->sbdma_ctxtable[curidx];
1400 d->sbdma_ctxtable[curidx] = NULL;
Ralf Baechle74b02472005-10-19 15:40:02 +01001401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 /*
1403 * Stats
1404 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 sc->sbm_stats.tx_bytes += sb->len;
1407 sc->sbm_stats.tx_packets++;
Ralf Baechle74b02472005-10-19 15:40:02 +01001408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 /*
1410 * for transmits, we just free buffers.
1411 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 dev_kfree_skb_irq(sb);
Ralf Baechle74b02472005-10-19 15:40:02 +01001414
1415 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 * .. and advance to the next buffer.
1417 */
1418
1419 d->sbdma_remptr = SBDMA_NEXTBUF(d,sbdma_remptr);
Ralf Baechle74b02472005-10-19 15:40:02 +01001420
Mark Mason693aa942007-04-26 00:23:22 -07001421 packets_handled++;
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 /*
1426 * Decide if we should wake up the protocol or not.
1427 * Other drivers seem to do this when we reach a low
1428 * watermark on the transmit queue.
1429 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001430
Mark Mason693aa942007-04-26 00:23:22 -07001431 if (packets_handled)
1432 netif_wake_queue(d->sbdma_eth->sbm_dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01001433
Mark Mason693aa942007-04-26 00:23:22 -07001434end_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 spin_unlock_irqrestore(&(sc->sbm_lock), flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01001436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437}
1438
1439
1440
1441/**********************************************************************
1442 * SBMAC_INITCTX(s)
Ralf Baechle74b02472005-10-19 15:40:02 +01001443 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 * Initialize an Ethernet context structure - this is called
1445 * once per MAC on the 1250. Memory is allocated here, so don't
1446 * call it again from inside the ioctl routines that bring the
1447 * interface up/down
Ralf Baechle74b02472005-10-19 15:40:02 +01001448 *
1449 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 * s - sbmac context structure
Ralf Baechle74b02472005-10-19 15:40:02 +01001451 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 * Return value:
1453 * 0
1454 ********************************************************************* */
1455
1456static int sbmac_initctx(struct sbmac_softc *s)
1457{
Ralf Baechle74b02472005-10-19 15:40:02 +01001458
1459 /*
1460 * figure out the addresses of some ports
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 s->sbm_macenable = s->sbm_base + R_MAC_ENABLE;
1464 s->sbm_maccfg = s->sbm_base + R_MAC_CFG;
1465 s->sbm_fifocfg = s->sbm_base + R_MAC_THRSH_CFG;
1466 s->sbm_framecfg = s->sbm_base + R_MAC_FRAMECFG;
1467 s->sbm_rxfilter = s->sbm_base + R_MAC_ADFILTER_CFG;
1468 s->sbm_isr = s->sbm_base + R_MAC_STATUS;
1469 s->sbm_imr = s->sbm_base + R_MAC_INT_MASK;
1470 s->sbm_mdio = s->sbm_base + R_MAC_MDIO;
1471
1472 s->sbm_phys[0] = 1;
1473 s->sbm_phys[1] = 0;
1474
1475 s->sbm_phy_oldbmsr = 0;
1476 s->sbm_phy_oldanlpar = 0;
1477 s->sbm_phy_oldk1stsr = 0;
1478 s->sbm_phy_oldlinkstat = 0;
Ralf Baechle74b02472005-10-19 15:40:02 +01001479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 /*
1481 * Initialize the DMA channels. Right now, only one per MAC is used
1482 * Note: Only do this _once_, as it allocates memory from the kernel!
1483 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 sbdma_initctx(&(s->sbm_txdma),s,0,DMA_TX,SBMAC_MAX_TXDESCR);
1486 sbdma_initctx(&(s->sbm_rxdma),s,0,DMA_RX,SBMAC_MAX_RXDESCR);
Ralf Baechle74b02472005-10-19 15:40:02 +01001487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 /*
1489 * initial state is OFF
1490 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 s->sbm_state = sbmac_state_off;
Ralf Baechle74b02472005-10-19 15:40:02 +01001493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 /*
1495 * Initial speed is (XXX TEMP) 10MBit/s HDX no FC
1496 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 s->sbm_speed = sbmac_speed_10;
1499 s->sbm_duplex = sbmac_duplex_half;
1500 s->sbm_fc = sbmac_fc_disabled;
Ralf Baechle74b02472005-10-19 15:40:02 +01001501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 return 0;
1503}
1504
1505
1506static void sbdma_uninitctx(struct sbmacdma_s *d)
1507{
Mark Mason693aa942007-04-26 00:23:22 -07001508 if (d->sbdma_dscrtable_unaligned) {
1509 kfree(d->sbdma_dscrtable_unaligned);
1510 d->sbdma_dscrtable_unaligned = d->sbdma_dscrtable = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if (d->sbdma_ctxtable) {
1514 kfree(d->sbdma_ctxtable);
1515 d->sbdma_ctxtable = NULL;
1516 }
1517}
1518
1519
1520static void sbmac_uninitctx(struct sbmac_softc *sc)
1521{
1522 sbdma_uninitctx(&(sc->sbm_txdma));
1523 sbdma_uninitctx(&(sc->sbm_rxdma));
1524}
1525
1526
1527/**********************************************************************
1528 * SBMAC_CHANNEL_START(s)
Ralf Baechle74b02472005-10-19 15:40:02 +01001529 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 * Start packet processing on this MAC.
Ralf Baechle74b02472005-10-19 15:40:02 +01001531 *
1532 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 * s - sbmac structure
Ralf Baechle74b02472005-10-19 15:40:02 +01001534 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 * Return value:
1536 * nothing
1537 ********************************************************************* */
1538
1539static void sbmac_channel_start(struct sbmac_softc *s)
1540{
1541 uint64_t reg;
Ralf Baechle20399732005-10-19 15:39:05 +01001542 volatile void __iomem *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 uint64_t cfg,fifo,framecfg;
1544 int idx, th_value;
Ralf Baechle74b02472005-10-19 15:40:02 +01001545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 /*
1547 * Don't do this if running
1548 */
1549
1550 if (s->sbm_state == sbmac_state_on)
1551 return;
Ralf Baechle74b02472005-10-19 15:40:02 +01001552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 /*
1554 * Bring the controller out of reset, but leave it off.
1555 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001556
Ralf Baechle20399732005-10-19 15:39:05 +01001557 __raw_writeq(0, s->sbm_macenable);
Ralf Baechle74b02472005-10-19 15:40:02 +01001558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 /*
1560 * Ignore all received packets
1561 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001562
Ralf Baechle20399732005-10-19 15:39:05 +01001563 __raw_writeq(0, s->sbm_rxfilter);
Ralf Baechle74b02472005-10-19 15:40:02 +01001564
1565 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 * Calculate values for various control registers.
1567 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 cfg = M_MAC_RETRY_EN |
Ralf Baechle74b02472005-10-19 15:40:02 +01001570 M_MAC_TX_HOLD_SOP_EN |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 V_MAC_TX_PAUSE_CNT_16K |
1572 M_MAC_AP_STAT_EN |
1573 M_MAC_FAST_SYNC |
1574 M_MAC_SS_EN |
1575 0;
Ralf Baechle74b02472005-10-19 15:40:02 +01001576
1577 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 * Be sure that RD_THRSH+WR_THRSH <= 32 for pass1 pars
1579 * and make sure that RD_THRSH + WR_THRSH <=128 for pass2 and above
1580 * Use a larger RD_THRSH for gigabit
1581 */
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001582 if (soc_type == K_SYS_SOC_TYPE_BCM1250 && periph_rev < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 th_value = 28;
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001584 else
1585 th_value = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 fifo = V_MAC_TX_WR_THRSH(4) | /* Must be '4' or '8' */
1588 ((s->sbm_speed == sbmac_speed_1000)
1589 ? V_MAC_TX_RD_THRSH(th_value) : V_MAC_TX_RD_THRSH(4)) |
1590 V_MAC_TX_RL_THRSH(4) |
1591 V_MAC_RX_PL_THRSH(4) |
1592 V_MAC_RX_RD_THRSH(4) | /* Must be '4' */
1593 V_MAC_RX_PL_THRSH(4) |
1594 V_MAC_RX_RL_THRSH(8) |
1595 0;
1596
1597 framecfg = V_MAC_MIN_FRAMESZ_DEFAULT |
1598 V_MAC_MAX_FRAMESZ_DEFAULT |
1599 V_MAC_BACKOFF_SEL(1);
1600
1601 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001602 * Clear out the hash address map
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 port = s->sbm_base + R_MAC_HASH_BASE;
1606 for (idx = 0; idx < MAC_HASH_COUNT; idx++) {
Ralf Baechle20399732005-10-19 15:39:05 +01001607 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 port += sizeof(uint64_t);
1609 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 /*
1612 * Clear out the exact-match table
1613 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 port = s->sbm_base + R_MAC_ADDR_BASE;
1616 for (idx = 0; idx < MAC_ADDR_COUNT; idx++) {
Ralf Baechle20399732005-10-19 15:39:05 +01001617 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 port += sizeof(uint64_t);
1619 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 /*
1622 * Clear out the DMA Channel mapping table registers
1623 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 port = s->sbm_base + R_MAC_CHUP0_BASE;
1626 for (idx = 0; idx < MAC_CHMAP_COUNT; idx++) {
Ralf Baechle20399732005-10-19 15:39:05 +01001627 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 port += sizeof(uint64_t);
1629 }
1630
1631
1632 port = s->sbm_base + R_MAC_CHLO0_BASE;
1633 for (idx = 0; idx < MAC_CHMAP_COUNT; idx++) {
Ralf Baechle20399732005-10-19 15:39:05 +01001634 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 port += sizeof(uint64_t);
1636 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 /*
1639 * Program the hardware address. It goes into the hardware-address
1640 * register as well as the first filter register.
1641 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 reg = sbmac_addr2reg(s->sbm_hwaddr);
Ralf Baechle74b02472005-10-19 15:40:02 +01001644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 port = s->sbm_base + R_MAC_ADDR_BASE;
Ralf Baechle20399732005-10-19 15:39:05 +01001646 __raw_writeq(reg, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 port = s->sbm_base + R_MAC_ETHERNET_ADDR;
1648
1649#ifdef CONFIG_SB1_PASS_1_WORKAROUNDS
1650 /*
1651 * Pass1 SOCs do not receive packets addressed to the
1652 * destination address in the R_MAC_ETHERNET_ADDR register.
1653 * Set the value to zero.
1654 */
Ralf Baechle20399732005-10-19 15:39:05 +01001655 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656#else
Ralf Baechle20399732005-10-19 15:39:05 +01001657 __raw_writeq(reg, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658#endif
Ralf Baechle74b02472005-10-19 15:40:02 +01001659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 /*
1661 * Set the receive filter for no packets, and write values
1662 * to the various config registers
1663 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001664
Ralf Baechle20399732005-10-19 15:39:05 +01001665 __raw_writeq(0, s->sbm_rxfilter);
1666 __raw_writeq(0, s->sbm_imr);
1667 __raw_writeq(framecfg, s->sbm_framecfg);
1668 __raw_writeq(fifo, s->sbm_fifocfg);
1669 __raw_writeq(cfg, s->sbm_maccfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01001670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 /*
1672 * Initialize DMA channels (rings should be ok now)
1673 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 sbdma_channel_start(&(s->sbm_rxdma), DMA_RX);
1676 sbdma_channel_start(&(s->sbm_txdma), DMA_TX);
Ralf Baechle74b02472005-10-19 15:40:02 +01001677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 /*
1679 * Configure the speed, duplex, and flow control
1680 */
1681
1682 sbmac_set_speed(s,s->sbm_speed);
1683 sbmac_set_duplex(s,s->sbm_duplex,s->sbm_fc);
Ralf Baechle74b02472005-10-19 15:40:02 +01001684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 /*
1686 * Fill the receive ring
1687 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 sbdma_fillring(&(s->sbm_rxdma));
Ralf Baechle74b02472005-10-19 15:40:02 +01001690
1691 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 * Turn on the rest of the bits in the enable register
Ralf Baechle74b02472005-10-19 15:40:02 +01001693 */
1694
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001695#if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
1696 __raw_writeq(M_MAC_RXDMA_EN0 |
1697 M_MAC_TXDMA_EN0, s->sbm_macenable);
1698#elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
Ralf Baechle20399732005-10-19 15:39:05 +01001699 __raw_writeq(M_MAC_RXDMA_EN0 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 M_MAC_TXDMA_EN0 |
1701 M_MAC_RX_ENABLE |
Ralf Baechle20399732005-10-19 15:39:05 +01001702 M_MAC_TX_ENABLE, s->sbm_macenable);
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001703#else
1704#error invalid SiByte MAC configuation
1705#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
1707#ifdef CONFIG_SBMAC_COALESCE
Ralf Baechle20399732005-10-19 15:39:05 +01001708 __raw_writeq(((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_TX_CH0) |
1709 ((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_RX_CH0), s->sbm_imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710#else
Ralf Baechle20399732005-10-19 15:39:05 +01001711 __raw_writeq((M_MAC_INT_CHANNEL << S_MAC_TX_CH0) |
1712 (M_MAC_INT_CHANNEL << S_MAC_RX_CH0), s->sbm_imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713#endif
Ralf Baechle74b02472005-10-19 15:40:02 +01001714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001716 * Enable receiving unicasts and broadcasts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001718
1719 __raw_writeq(M_MAC_UCAST_EN | M_MAC_BCAST_EN, s->sbm_rxfilter);
1720
1721 /*
1722 * we're running now.
1723 */
1724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 s->sbm_state = sbmac_state_on;
Ralf Baechle74b02472005-10-19 15:40:02 +01001726
1727 /*
1728 * Program multicast addresses
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 sbmac_setmulti(s);
Ralf Baechle74b02472005-10-19 15:40:02 +01001732
1733 /*
1734 * If channel was in promiscuous mode before, turn that on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 if (s->sbm_devflags & IFF_PROMISC) {
1738 sbmac_promiscuous_mode(s,1);
1739 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741}
1742
1743
1744/**********************************************************************
1745 * SBMAC_CHANNEL_STOP(s)
Ralf Baechle74b02472005-10-19 15:40:02 +01001746 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 * Stop packet processing on this MAC.
Ralf Baechle74b02472005-10-19 15:40:02 +01001748 *
1749 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 * s - sbmac structure
Ralf Baechle74b02472005-10-19 15:40:02 +01001751 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 * Return value:
1753 * nothing
1754 ********************************************************************* */
1755
1756static void sbmac_channel_stop(struct sbmac_softc *s)
1757{
1758 /* don't do this if already stopped */
Ralf Baechle74b02472005-10-19 15:40:02 +01001759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (s->sbm_state == sbmac_state_off)
1761 return;
Ralf Baechle74b02472005-10-19 15:40:02 +01001762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 /* don't accept any packets, disable all interrupts */
Ralf Baechle74b02472005-10-19 15:40:02 +01001764
Ralf Baechle20399732005-10-19 15:39:05 +01001765 __raw_writeq(0, s->sbm_rxfilter);
1766 __raw_writeq(0, s->sbm_imr);
Ralf Baechle74b02472005-10-19 15:40:02 +01001767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 /* Turn off ticker */
Ralf Baechle74b02472005-10-19 15:40:02 +01001769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 /* XXX */
Ralf Baechle74b02472005-10-19 15:40:02 +01001771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 /* turn off receiver and transmitter */
Ralf Baechle74b02472005-10-19 15:40:02 +01001773
Ralf Baechle20399732005-10-19 15:39:05 +01001774 __raw_writeq(0, s->sbm_macenable);
Ralf Baechle74b02472005-10-19 15:40:02 +01001775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 /* We're stopped now. */
Ralf Baechle74b02472005-10-19 15:40:02 +01001777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 s->sbm_state = sbmac_state_off;
Ralf Baechle74b02472005-10-19 15:40:02 +01001779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 /*
1781 * Stop DMA channels (rings should be ok now)
1782 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 sbdma_channel_stop(&(s->sbm_rxdma));
1785 sbdma_channel_stop(&(s->sbm_txdma));
Ralf Baechle74b02472005-10-19 15:40:02 +01001786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 /* Empty the receive and transmit rings */
Ralf Baechle74b02472005-10-19 15:40:02 +01001788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 sbdma_emptyring(&(s->sbm_rxdma));
1790 sbdma_emptyring(&(s->sbm_txdma));
Ralf Baechle74b02472005-10-19 15:40:02 +01001791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792}
1793
1794/**********************************************************************
1795 * SBMAC_SET_CHANNEL_STATE(state)
Ralf Baechle74b02472005-10-19 15:40:02 +01001796 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 * Set the channel's state ON or OFF
Ralf Baechle74b02472005-10-19 15:40:02 +01001798 *
1799 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 * state - new state
Ralf Baechle74b02472005-10-19 15:40:02 +01001801 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 * Return value:
1803 * old state
1804 ********************************************************************* */
1805static sbmac_state_t sbmac_set_channel_state(struct sbmac_softc *sc,
1806 sbmac_state_t state)
1807{
1808 sbmac_state_t oldstate = sc->sbm_state;
Ralf Baechle74b02472005-10-19 15:40:02 +01001809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 /*
1811 * If same as previous state, return
1812 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 if (state == oldstate) {
1815 return oldstate;
1816 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001819 * If new state is ON, turn channel on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (state == sbmac_state_on) {
1823 sbmac_channel_start(sc);
1824 }
1825 else {
1826 sbmac_channel_stop(sc);
1827 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001828
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 /*
1830 * Return previous state
1831 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 return oldstate;
1834}
1835
1836
1837/**********************************************************************
1838 * SBMAC_PROMISCUOUS_MODE(sc,onoff)
Ralf Baechle74b02472005-10-19 15:40:02 +01001839 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 * Turn on or off promiscuous mode
Ralf Baechle74b02472005-10-19 15:40:02 +01001841 *
1842 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 * sc - softc
1844 * onoff - 1 to turn on, 0 to turn off
Ralf Baechle74b02472005-10-19 15:40:02 +01001845 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 * Return value:
1847 * nothing
1848 ********************************************************************* */
1849
1850static void sbmac_promiscuous_mode(struct sbmac_softc *sc,int onoff)
1851{
1852 uint64_t reg;
Ralf Baechle74b02472005-10-19 15:40:02 +01001853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 if (sc->sbm_state != sbmac_state_on)
1855 return;
Ralf Baechle74b02472005-10-19 15:40:02 +01001856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 if (onoff) {
Ralf Baechle20399732005-10-19 15:39:05 +01001858 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 reg |= M_MAC_ALLPKT_EN;
Ralf Baechle20399732005-10-19 15:39:05 +01001860 __raw_writeq(reg, sc->sbm_rxfilter);
Ralf Baechle74b02472005-10-19 15:40:02 +01001861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 else {
Ralf Baechle20399732005-10-19 15:39:05 +01001863 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 reg &= ~M_MAC_ALLPKT_EN;
Ralf Baechle20399732005-10-19 15:39:05 +01001865 __raw_writeq(reg, sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 }
1867}
1868
1869/**********************************************************************
1870 * SBMAC_SETIPHDR_OFFSET(sc,onoff)
Ralf Baechle74b02472005-10-19 15:40:02 +01001871 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 * Set the iphdr offset as 15 assuming ethernet encapsulation
Ralf Baechle74b02472005-10-19 15:40:02 +01001873 *
1874 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 * sc - softc
Ralf Baechle74b02472005-10-19 15:40:02 +01001876 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 * Return value:
1878 * nothing
1879 ********************************************************************* */
1880
1881static void sbmac_set_iphdr_offset(struct sbmac_softc *sc)
1882{
1883 uint64_t reg;
Ralf Baechle74b02472005-10-19 15:40:02 +01001884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 /* Hard code the off set to 15 for now */
Ralf Baechle20399732005-10-19 15:39:05 +01001886 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 reg &= ~M_MAC_IPHDR_OFFSET | V_MAC_IPHDR_OFFSET(15);
Ralf Baechle20399732005-10-19 15:39:05 +01001888 __raw_writeq(reg, sc->sbm_rxfilter);
Ralf Baechle74b02472005-10-19 15:40:02 +01001889
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001890 /* BCM1250 pass1 didn't have hardware checksum. Everything
1891 later does. */
1892 if (soc_type == K_SYS_SOC_TYPE_BCM1250 && periph_rev < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 sc->rx_hw_checksum = DISABLE;
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001894 } else {
1895 sc->rx_hw_checksum = ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 }
1897}
1898
1899
1900/**********************************************************************
1901 * SBMAC_ADDR2REG(ptr)
Ralf Baechle74b02472005-10-19 15:40:02 +01001902 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 * Convert six bytes into the 64-bit register value that
1904 * we typically write into the SBMAC's address/mcast registers
Ralf Baechle74b02472005-10-19 15:40:02 +01001905 *
1906 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 * ptr - pointer to 6 bytes
Ralf Baechle74b02472005-10-19 15:40:02 +01001908 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 * Return value:
1910 * register value
1911 ********************************************************************* */
1912
1913static uint64_t sbmac_addr2reg(unsigned char *ptr)
1914{
1915 uint64_t reg = 0;
Ralf Baechle74b02472005-10-19 15:40:02 +01001916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 ptr += 6;
Ralf Baechle74b02472005-10-19 15:40:02 +01001918
1919 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001921 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001923 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001925 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001927 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001929 reg |= (uint64_t) *(--ptr);
1930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 return reg;
1932}
1933
1934
1935/**********************************************************************
1936 * SBMAC_SET_SPEED(s,speed)
Ralf Baechle74b02472005-10-19 15:40:02 +01001937 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 * Configure LAN speed for the specified MAC.
1939 * Warning: must be called when MAC is off!
Ralf Baechle74b02472005-10-19 15:40:02 +01001940 *
1941 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 * s - sbmac structure
1943 * speed - speed to set MAC to (see sbmac_speed_t enum)
Ralf Baechle74b02472005-10-19 15:40:02 +01001944 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 * Return value:
1946 * 1 if successful
1947 * 0 indicates invalid parameters
1948 ********************************************************************* */
1949
1950static int sbmac_set_speed(struct sbmac_softc *s,sbmac_speed_t speed)
1951{
1952 uint64_t cfg;
1953 uint64_t framecfg;
1954
1955 /*
1956 * Save new current values
1957 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 s->sbm_speed = speed;
Ralf Baechle74b02472005-10-19 15:40:02 +01001960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 if (s->sbm_state == sbmac_state_on)
1962 return 0; /* save for next restart */
1963
1964 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001965 * Read current register values
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001967
Ralf Baechle20399732005-10-19 15:39:05 +01001968 cfg = __raw_readq(s->sbm_maccfg);
1969 framecfg = __raw_readq(s->sbm_framecfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01001970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 /*
1972 * Mask out the stuff we want to change
1973 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 cfg &= ~(M_MAC_BURST_EN | M_MAC_SPEED_SEL);
1976 framecfg &= ~(M_MAC_IFG_RX | M_MAC_IFG_TX | M_MAC_IFG_THRSH |
1977 M_MAC_SLOT_SIZE);
Ralf Baechle74b02472005-10-19 15:40:02 +01001978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 /*
1980 * Now add in the new bits
1981 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 switch (speed) {
1984 case sbmac_speed_10:
1985 framecfg |= V_MAC_IFG_RX_10 |
1986 V_MAC_IFG_TX_10 |
1987 K_MAC_IFG_THRSH_10 |
1988 V_MAC_SLOT_SIZE_10;
1989 cfg |= V_MAC_SPEED_SEL_10MBPS;
1990 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 case sbmac_speed_100:
1993 framecfg |= V_MAC_IFG_RX_100 |
1994 V_MAC_IFG_TX_100 |
1995 V_MAC_IFG_THRSH_100 |
1996 V_MAC_SLOT_SIZE_100;
1997 cfg |= V_MAC_SPEED_SEL_100MBPS ;
1998 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 case sbmac_speed_1000:
2001 framecfg |= V_MAC_IFG_RX_1000 |
2002 V_MAC_IFG_TX_1000 |
2003 V_MAC_IFG_THRSH_1000 |
2004 V_MAC_SLOT_SIZE_1000;
2005 cfg |= V_MAC_SPEED_SEL_1000MBPS | M_MAC_BURST_EN;
2006 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01002007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 case sbmac_speed_auto: /* XXX not implemented */
2009 /* fall through */
2010 default:
2011 return 0;
2012 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01002015 * Send the bits back to the hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002017
Ralf Baechle20399732005-10-19 15:39:05 +01002018 __raw_writeq(framecfg, s->sbm_framecfg);
2019 __raw_writeq(cfg, s->sbm_maccfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01002020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 return 1;
2022}
2023
2024/**********************************************************************
2025 * SBMAC_SET_DUPLEX(s,duplex,fc)
Ralf Baechle74b02472005-10-19 15:40:02 +01002026 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 * Set Ethernet duplex and flow control options for this MAC
2028 * Warning: must be called when MAC is off!
Ralf Baechle74b02472005-10-19 15:40:02 +01002029 *
2030 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 * s - sbmac structure
2032 * duplex - duplex setting (see sbmac_duplex_t)
2033 * fc - flow control setting (see sbmac_fc_t)
Ralf Baechle74b02472005-10-19 15:40:02 +01002034 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 * Return value:
2036 * 1 if ok
2037 * 0 if an invalid parameter combination was specified
2038 ********************************************************************* */
2039
2040static int sbmac_set_duplex(struct sbmac_softc *s,sbmac_duplex_t duplex,sbmac_fc_t fc)
2041{
2042 uint64_t cfg;
Ralf Baechle74b02472005-10-19 15:40:02 +01002043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 /*
2045 * Save new current values
2046 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 s->sbm_duplex = duplex;
2049 s->sbm_fc = fc;
Ralf Baechle74b02472005-10-19 15:40:02 +01002050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 if (s->sbm_state == sbmac_state_on)
2052 return 0; /* save for next restart */
Ralf Baechle74b02472005-10-19 15:40:02 +01002053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01002055 * Read current register values
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002057
Ralf Baechle20399732005-10-19 15:39:05 +01002058 cfg = __raw_readq(s->sbm_maccfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01002059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 /*
2061 * Mask off the stuff we're about to change
2062 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 cfg &= ~(M_MAC_FC_SEL | M_MAC_FC_CMD | M_MAC_HDX_EN);
Ralf Baechle74b02472005-10-19 15:40:02 +01002065
2066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 switch (duplex) {
2068 case sbmac_duplex_half:
2069 switch (fc) {
2070 case sbmac_fc_disabled:
2071 cfg |= M_MAC_HDX_EN | V_MAC_FC_CMD_DISABLED;
2072 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01002073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 case sbmac_fc_collision:
2075 cfg |= M_MAC_HDX_EN | V_MAC_FC_CMD_ENABLED;
2076 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01002077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 case sbmac_fc_carrier:
2079 cfg |= M_MAC_HDX_EN | V_MAC_FC_CMD_ENAB_FALSECARR;
2080 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01002081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 case sbmac_fc_auto: /* XXX not implemented */
Ralf Baechle74b02472005-10-19 15:40:02 +01002083 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 case sbmac_fc_frame: /* not valid in half duplex */
2085 default: /* invalid selection */
2086 return 0;
2087 }
2088 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01002089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 case sbmac_duplex_full:
2091 switch (fc) {
2092 case sbmac_fc_disabled:
2093 cfg |= V_MAC_FC_CMD_DISABLED;
2094 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01002095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 case sbmac_fc_frame:
2097 cfg |= V_MAC_FC_CMD_ENABLED;
2098 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01002099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 case sbmac_fc_collision: /* not valid in full duplex */
2101 case sbmac_fc_carrier: /* not valid in full duplex */
2102 case sbmac_fc_auto: /* XXX not implemented */
Ralf Baechle74b02472005-10-19 15:40:02 +01002103 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 default:
2105 return 0;
2106 }
2107 break;
2108 case sbmac_duplex_auto:
2109 /* XXX not implemented */
2110 break;
2111 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01002114 * Send the bits back to the hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002116
Ralf Baechle20399732005-10-19 15:39:05 +01002117 __raw_writeq(cfg, s->sbm_maccfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01002118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 return 1;
2120}
2121
2122
2123
2124
2125/**********************************************************************
2126 * SBMAC_INTR()
Ralf Baechle74b02472005-10-19 15:40:02 +01002127 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 * Interrupt handler for MAC interrupts
Ralf Baechle74b02472005-10-19 15:40:02 +01002129 *
2130 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 * MAC structure
Ralf Baechle74b02472005-10-19 15:40:02 +01002132 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 * Return value:
2134 * nothing
2135 ********************************************************************* */
David Howells7d12e782006-10-05 14:55:46 +01002136static irqreturn_t sbmac_intr(int irq,void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
2138 struct net_device *dev = (struct net_device *) dev_instance;
2139 struct sbmac_softc *sc = netdev_priv(dev);
2140 uint64_t isr;
2141 int handled = 0;
2142
Mark Mason693aa942007-04-26 00:23:22 -07002143 /*
2144 * Read the ISR (this clears the bits in the real
2145 * register, except for counter addr)
2146 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002147
Mark Mason693aa942007-04-26 00:23:22 -07002148 isr = __raw_readq(sc->sbm_isr) & ~M_MAC_COUNTER_ADDR;
Ralf Baechle74b02472005-10-19 15:40:02 +01002149
Mark Mason693aa942007-04-26 00:23:22 -07002150 if (isr == 0)
2151 return IRQ_RETVAL(0);
2152 handled = 1;
Ralf Baechle74b02472005-10-19 15:40:02 +01002153
Mark Mason693aa942007-04-26 00:23:22 -07002154 /*
2155 * Transmits on channel 0
2156 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002158 if (isr & (M_MAC_INT_CHANNEL << S_MAC_TX_CH0))
Mark Mason693aa942007-04-26 00:23:22 -07002159 sbdma_tx_process(sc,&(sc->sbm_txdma), 0);
Ralf Baechle74b02472005-10-19 15:40:02 +01002160
Mark Mason693aa942007-04-26 00:23:22 -07002161 if (isr & (M_MAC_INT_CHANNEL << S_MAC_RX_CH0)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002162 if (netif_rx_schedule_prep(dev, &sc->napi)) {
Mark Mason693aa942007-04-26 00:23:22 -07002163 __raw_writeq(0, sc->sbm_imr);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002164 __netif_rx_schedule(dev, &sc->napi);
Mark Mason693aa942007-04-26 00:23:22 -07002165 /* Depend on the exit from poll to reenable intr */
2166 }
2167 else {
2168 /* may leave some packets behind */
2169 sbdma_rx_process(sc,&(sc->sbm_rxdma),
2170 SBMAC_MAX_RXDESCR * 2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 }
2172 }
2173 return IRQ_RETVAL(handled);
2174}
2175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176/**********************************************************************
2177 * SBMAC_START_TX(skb,dev)
Ralf Baechle74b02472005-10-19 15:40:02 +01002178 *
2179 * Start output on the specified interface. Basically, we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 * queue as many buffers as we can until the ring fills up, or
2181 * we run off the end of the queue, whichever comes first.
Ralf Baechle74b02472005-10-19 15:40:02 +01002182 *
2183 * Input parameters:
2184 *
2185 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 * Return value:
2187 * nothing
2188 ********************************************************************* */
2189static int sbmac_start_tx(struct sk_buff *skb, struct net_device *dev)
2190{
2191 struct sbmac_softc *sc = netdev_priv(dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01002192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 /* lock eth irq */
2194 spin_lock_irq (&sc->sbm_lock);
Ralf Baechle74b02472005-10-19 15:40:02 +01002195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01002197 * Put the buffer on the transmit ring. If we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 * don't have room, stop the queue.
2199 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 if (sbdma_add_txbuffer(&(sc->sbm_txdma),skb)) {
2202 /* XXX save skb that we could not send */
2203 netif_stop_queue(dev);
2204 spin_unlock_irq(&sc->sbm_lock);
2205
2206 return 1;
2207 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002208
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 dev->trans_start = jiffies;
Ralf Baechle74b02472005-10-19 15:40:02 +01002210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 spin_unlock_irq (&sc->sbm_lock);
Ralf Baechle74b02472005-10-19 15:40:02 +01002212
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 return 0;
2214}
2215
2216/**********************************************************************
2217 * SBMAC_SETMULTI(sc)
Ralf Baechle74b02472005-10-19 15:40:02 +01002218 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 * Reprogram the multicast table into the hardware, given
2220 * the list of multicasts associated with the interface
2221 * structure.
Ralf Baechle74b02472005-10-19 15:40:02 +01002222 *
2223 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 * sc - softc
Ralf Baechle74b02472005-10-19 15:40:02 +01002225 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 * Return value:
2227 * nothing
2228 ********************************************************************* */
2229
2230static void sbmac_setmulti(struct sbmac_softc *sc)
2231{
2232 uint64_t reg;
Ralf Baechle20399732005-10-19 15:39:05 +01002233 volatile void __iomem *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 int idx;
2235 struct dev_mc_list *mclist;
2236 struct net_device *dev = sc->sbm_dev;
Ralf Baechle74b02472005-10-19 15:40:02 +01002237
2238 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 * Clear out entire multicast table. We do this by nuking
2240 * the entire hash table and all the direct matches except
Ralf Baechle74b02472005-10-19 15:40:02 +01002241 * the first one, which is used for our station address
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 for (idx = 1; idx < MAC_ADDR_COUNT; idx++) {
2245 port = sc->sbm_base + R_MAC_ADDR_BASE+(idx*sizeof(uint64_t));
Ralf Baechle20399732005-10-19 15:39:05 +01002246 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 for (idx = 0; idx < MAC_HASH_COUNT; idx++) {
2250 port = sc->sbm_base + R_MAC_HASH_BASE+(idx*sizeof(uint64_t));
Ralf Baechle20399732005-10-19 15:39:05 +01002251 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002253
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 /*
2255 * Clear the filter to say we don't want any multicasts.
2256 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002257
Ralf Baechle20399732005-10-19 15:39:05 +01002258 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 reg &= ~(M_MAC_MCAST_INV | M_MAC_MCAST_EN);
Ralf Baechle20399732005-10-19 15:39:05 +01002260 __raw_writeq(reg, sc->sbm_rxfilter);
Ralf Baechle74b02472005-10-19 15:40:02 +01002261
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 if (dev->flags & IFF_ALLMULTI) {
Ralf Baechle74b02472005-10-19 15:40:02 +01002263 /*
2264 * Enable ALL multicasts. Do this by inverting the
2265 * multicast enable bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 */
Ralf Baechle20399732005-10-19 15:39:05 +01002267 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 reg |= (M_MAC_MCAST_INV | M_MAC_MCAST_EN);
Ralf Baechle20399732005-10-19 15:39:05 +01002269 __raw_writeq(reg, sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 return;
2271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Ralf Baechle74b02472005-10-19 15:40:02 +01002273
2274 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 * Progam new multicast entries. For now, only use the
2276 * perfect filter. In the future we'll need to use the
2277 * hash filter if the perfect filter overflows
2278 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002279
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 /* XXX only using perfect filter for now, need to use hash
2281 * XXX if the table overflows */
Ralf Baechle74b02472005-10-19 15:40:02 +01002282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 idx = 1; /* skip station address */
2284 mclist = dev->mc_list;
2285 while (mclist && (idx < MAC_ADDR_COUNT)) {
2286 reg = sbmac_addr2reg(mclist->dmi_addr);
2287 port = sc->sbm_base + R_MAC_ADDR_BASE+(idx * sizeof(uint64_t));
Ralf Baechle20399732005-10-19 15:39:05 +01002288 __raw_writeq(reg, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 idx++;
2290 mclist = mclist->next;
2291 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002292
2293 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 * Enable the "accept multicast bits" if we programmed at least one
Ralf Baechle74b02472005-10-19 15:40:02 +01002295 * multicast.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002297
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 if (idx > 1) {
Ralf Baechle20399732005-10-19 15:39:05 +01002299 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 reg |= M_MAC_MCAST_EN;
Ralf Baechle20399732005-10-19 15:39:05 +01002301 __raw_writeq(reg, sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 }
2303}
2304
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002305#if defined(SBMAC_ETH0_HWADDR) || defined(SBMAC_ETH1_HWADDR) || defined(SBMAC_ETH2_HWADDR) || defined(SBMAC_ETH3_HWADDR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306/**********************************************************************
2307 * SBMAC_PARSE_XDIGIT(str)
Ralf Baechle74b02472005-10-19 15:40:02 +01002308 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 * Parse a hex digit, returning its value
Ralf Baechle74b02472005-10-19 15:40:02 +01002310 *
2311 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 * str - character
Ralf Baechle74b02472005-10-19 15:40:02 +01002313 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 * Return value:
2315 * hex value, or -1 if invalid
2316 ********************************************************************* */
2317
2318static int sbmac_parse_xdigit(char str)
2319{
2320 int digit;
Ralf Baechle74b02472005-10-19 15:40:02 +01002321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 if ((str >= '0') && (str <= '9'))
2323 digit = str - '0';
2324 else if ((str >= 'a') && (str <= 'f'))
2325 digit = str - 'a' + 10;
2326 else if ((str >= 'A') && (str <= 'F'))
2327 digit = str - 'A' + 10;
2328 else
2329 return -1;
Ralf Baechle74b02472005-10-19 15:40:02 +01002330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 return digit;
2332}
2333
2334/**********************************************************************
2335 * SBMAC_PARSE_HWADDR(str,hwaddr)
Ralf Baechle74b02472005-10-19 15:40:02 +01002336 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 * Convert a string in the form xx:xx:xx:xx:xx:xx into a 6-byte
2338 * Ethernet address.
Ralf Baechle74b02472005-10-19 15:40:02 +01002339 *
2340 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 * str - string
2342 * hwaddr - pointer to hardware address
Ralf Baechle74b02472005-10-19 15:40:02 +01002343 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 * Return value:
2345 * 0 if ok, else -1
2346 ********************************************************************* */
2347
2348static int sbmac_parse_hwaddr(char *str, unsigned char *hwaddr)
2349{
2350 int digit1,digit2;
2351 int idx = 6;
Ralf Baechle74b02472005-10-19 15:40:02 +01002352
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 while (*str && (idx > 0)) {
2354 digit1 = sbmac_parse_xdigit(*str);
2355 if (digit1 < 0)
2356 return -1;
2357 str++;
2358 if (!*str)
2359 return -1;
Ralf Baechle74b02472005-10-19 15:40:02 +01002360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 if ((*str == ':') || (*str == '-')) {
2362 digit2 = digit1;
2363 digit1 = 0;
2364 }
2365 else {
2366 digit2 = sbmac_parse_xdigit(*str);
2367 if (digit2 < 0)
2368 return -1;
2369 str++;
2370 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002371
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 *hwaddr++ = (digit1 << 4) | digit2;
2373 idx--;
Ralf Baechle74b02472005-10-19 15:40:02 +01002374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 if (*str == '-')
2376 str++;
2377 if (*str == ':')
2378 str++;
2379 }
2380 return 0;
2381}
2382#endif
2383
2384static int sb1250_change_mtu(struct net_device *_dev, int new_mtu)
2385{
2386 if (new_mtu > ENET_PACKET_SIZE)
2387 return -EINVAL;
2388 _dev->mtu = new_mtu;
2389 printk(KERN_INFO "changing the mtu to %d\n", new_mtu);
2390 return 0;
2391}
2392
2393/**********************************************************************
2394 * SBMAC_INIT(dev)
Ralf Baechle74b02472005-10-19 15:40:02 +01002395 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 * Attach routine - init hardware and hook ourselves into linux
Ralf Baechle74b02472005-10-19 15:40:02 +01002397 *
2398 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 * dev - net_device structure
Ralf Baechle74b02472005-10-19 15:40:02 +01002400 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 * Return value:
2402 * status
2403 ********************************************************************* */
2404
2405static int sbmac_init(struct net_device *dev, int idx)
2406{
2407 struct sbmac_softc *sc;
2408 unsigned char *eaddr;
2409 uint64_t ea_reg;
2410 int i;
2411 int err;
Ralf Baechle74b02472005-10-19 15:40:02 +01002412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 sc = netdev_priv(dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01002414
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 /* Determine controller base address */
Ralf Baechle74b02472005-10-19 15:40:02 +01002416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 sc->sbm_base = IOADDR(dev->base_addr);
2418 sc->sbm_dev = dev;
2419 sc->sbe_idx = idx;
Ralf Baechle74b02472005-10-19 15:40:02 +01002420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 eaddr = sc->sbm_hwaddr;
Ralf Baechle74b02472005-10-19 15:40:02 +01002422
2423 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 * Read the ethernet address. The firwmare left this programmed
2425 * for us in the ethernet address register for each mac.
2426 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002427
Ralf Baechle20399732005-10-19 15:39:05 +01002428 ea_reg = __raw_readq(sc->sbm_base + R_MAC_ETHERNET_ADDR);
2429 __raw_writeq(0, sc->sbm_base + R_MAC_ETHERNET_ADDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 for (i = 0; i < 6; i++) {
2431 eaddr[i] = (uint8_t) (ea_reg & 0xFF);
2432 ea_reg >>= 8;
2433 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 for (i = 0; i < 6; i++) {
2436 dev->dev_addr[i] = eaddr[i];
2437 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002438
2439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01002441 * Init packet size
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 sc->sbm_buffersize = ENET_PACKET_SIZE + SMP_CACHE_BYTES * 2 + ETHER_ALIGN;
2445
Ralf Baechle74b02472005-10-19 15:40:02 +01002446 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 * Initialize context (get pointers to registers and stuff), then
2448 * allocate the memory for the descriptor tables.
2449 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002450
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 sbmac_initctx(sc);
Ralf Baechle74b02472005-10-19 15:40:02 +01002452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 /*
2454 * Set up Linux device callins
2455 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002456
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 spin_lock_init(&(sc->sbm_lock));
Ralf Baechle74b02472005-10-19 15:40:02 +01002458
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 dev->open = sbmac_open;
2460 dev->hard_start_xmit = sbmac_start_tx;
2461 dev->stop = sbmac_close;
2462 dev->get_stats = sbmac_get_stats;
2463 dev->set_multicast_list = sbmac_set_rx_mode;
2464 dev->do_ioctl = sbmac_mii_ioctl;
2465 dev->tx_timeout = sbmac_tx_timeout;
2466 dev->watchdog_timeo = TX_TIMEOUT;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002467
2468 netif_napi_add(dev, &sc->napi, sbmac_poll, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
2470 dev->change_mtu = sb1250_change_mtu;
Deepak Saxenad6830012007-03-19 15:43:11 -07002471#ifdef CONFIG_NET_POLL_CONTROLLER
2472 dev->poll_controller = sbmac_netpoll;
2473#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
2475 /* This is needed for PASS2 for Rx H/W checksum feature */
2476 sbmac_set_iphdr_offset(sc);
2477
2478 err = register_netdev(dev);
2479 if (err)
2480 goto out_uninit;
2481
Ralf Baechlef567ef92005-10-10 14:50:24 +01002482 if (sc->rx_hw_checksum == ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 printk(KERN_INFO "%s: enabling TCP rcv checksum\n",
2484 sc->sbm_dev->name);
2485 }
2486
2487 /*
2488 * Display Ethernet address (this is called during the config
2489 * process so we need to finish off the config message that
2490 * was being displayed)
2491 */
2492 printk(KERN_INFO
Ralf Baechle74b02472005-10-19 15:40:02 +01002493 "%s: SiByte Ethernet at 0x%08lX, address: %02X:%02X:%02X:%02X:%02X:%02X\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 dev->name, dev->base_addr,
2495 eaddr[0],eaddr[1],eaddr[2],eaddr[3],eaddr[4],eaddr[5]);
Ralf Baechle74b02472005-10-19 15:40:02 +01002496
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
2498 return 0;
2499
2500out_uninit:
2501 sbmac_uninitctx(sc);
2502
2503 return err;
2504}
2505
2506
2507static int sbmac_open(struct net_device *dev)
2508{
2509 struct sbmac_softc *sc = netdev_priv(dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01002510
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 if (debug > 1) {
2512 printk(KERN_DEBUG "%s: sbmac_open() irq %d.\n", dev->name, dev->irq);
2513 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002514
2515 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 * map/route interrupt (clear status first, in case something
2517 * weird is pending; we haven't initialized the mac registers
2518 * yet)
2519 */
2520
Ralf Baechle20399732005-10-19 15:39:05 +01002521 __raw_readq(sc->sbm_isr);
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07002522 if (request_irq(dev->irq, &sbmac_intr, IRQF_SHARED, dev->name, dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 return -EBUSY;
2524
2525 /*
Ralf Baechle59b81822005-10-20 12:01:28 +01002526 * Probe phy address
2527 */
2528
2529 if(sbmac_mii_probe(dev) == -1) {
2530 printk("%s: failed to probe PHY.\n", dev->name);
2531 return -EINVAL;
2532 }
2533
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002534 napi_enable(&sc->napi);
2535
Ralf Baechle59b81822005-10-20 12:01:28 +01002536 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01002537 * Configure default speed
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 */
2539
2540 sbmac_mii_poll(sc,noisy_mii);
Ralf Baechle74b02472005-10-19 15:40:02 +01002541
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 /*
2543 * Turn on the channel
2544 */
2545
2546 sbmac_set_channel_state(sc,sbmac_state_on);
Ralf Baechle74b02472005-10-19 15:40:02 +01002547
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 /*
2549 * XXX Station address is in dev->dev_addr
2550 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 if (dev->if_port == 0)
Ralf Baechle74b02472005-10-19 15:40:02 +01002553 dev->if_port = 0;
2554
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 netif_start_queue(dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01002556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 sbmac_set_rx_mode(dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01002558
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 /* Set the timer to check for link beat. */
2560 init_timer(&sc->sbm_timer);
2561 sc->sbm_timer.expires = jiffies + 2 * HZ/100;
2562 sc->sbm_timer.data = (unsigned long)dev;
2563 sc->sbm_timer.function = &sbmac_timer;
2564 add_timer(&sc->sbm_timer);
Ralf Baechle74b02472005-10-19 15:40:02 +01002565
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 return 0;
2567}
2568
Ralf Baechle59b81822005-10-20 12:01:28 +01002569static int sbmac_mii_probe(struct net_device *dev)
2570{
2571 int i;
2572 struct sbmac_softc *s = netdev_priv(dev);
2573 u16 bmsr, id1, id2;
2574 u32 vendor, device;
2575
2576 for (i=1; i<31; i++) {
2577 bmsr = sbmac_mii_read(s, i, MII_BMSR);
2578 if (bmsr != 0) {
2579 s->sbm_phys[0] = i;
2580 id1 = sbmac_mii_read(s, i, MII_PHYIDR1);
2581 id2 = sbmac_mii_read(s, i, MII_PHYIDR2);
2582 vendor = ((u32)id1 << 6) | ((id2 >> 10) & 0x3f);
2583 device = (id2 >> 4) & 0x3f;
2584
2585 printk(KERN_INFO "%s: found phy %d, vendor %06x part %02x\n",
2586 dev->name, i, vendor, device);
2587 return i;
2588 }
2589 }
2590 return -1;
2591}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
2593
2594static int sbmac_mii_poll(struct sbmac_softc *s,int noisy)
2595{
2596 int bmsr,bmcr,k1stsr,anlpar;
2597 int chg;
2598 char buffer[100];
2599 char *p = buffer;
2600
2601 /* Read the mode status and mode control registers. */
2602 bmsr = sbmac_mii_read(s,s->sbm_phys[0],MII_BMSR);
2603 bmcr = sbmac_mii_read(s,s->sbm_phys[0],MII_BMCR);
2604
2605 /* get the link partner status */
2606 anlpar = sbmac_mii_read(s,s->sbm_phys[0],MII_ANLPAR);
2607
2608 /* if supported, read the 1000baseT register */
2609 if (bmsr & BMSR_1000BT_XSR) {
2610 k1stsr = sbmac_mii_read(s,s->sbm_phys[0],MII_K1STSR);
2611 }
2612 else {
2613 k1stsr = 0;
2614 }
2615
2616 chg = 0;
2617
2618 if ((bmsr & BMSR_LINKSTAT) == 0) {
2619 /*
2620 * If link status is down, clear out old info so that when
2621 * it comes back up it will force us to reconfigure speed
2622 */
2623 s->sbm_phy_oldbmsr = 0;
2624 s->sbm_phy_oldanlpar = 0;
2625 s->sbm_phy_oldk1stsr = 0;
2626 return 0;
2627 }
2628
2629 if ((s->sbm_phy_oldbmsr != bmsr) ||
2630 (s->sbm_phy_oldanlpar != anlpar) ||
2631 (s->sbm_phy_oldk1stsr != k1stsr)) {
2632 if (debug > 1) {
2633 printk(KERN_DEBUG "%s: bmsr:%x/%x anlpar:%x/%x k1stsr:%x/%x\n",
2634 s->sbm_dev->name,
2635 s->sbm_phy_oldbmsr,bmsr,
2636 s->sbm_phy_oldanlpar,anlpar,
2637 s->sbm_phy_oldk1stsr,k1stsr);
2638 }
2639 s->sbm_phy_oldbmsr = bmsr;
2640 s->sbm_phy_oldanlpar = anlpar;
2641 s->sbm_phy_oldk1stsr = k1stsr;
2642 chg = 1;
2643 }
2644
2645 if (chg == 0)
2646 return 0;
2647
2648 p += sprintf(p,"Link speed: ");
2649
2650 if (k1stsr & K1STSR_LP1KFD) {
2651 s->sbm_speed = sbmac_speed_1000;
2652 s->sbm_duplex = sbmac_duplex_full;
2653 s->sbm_fc = sbmac_fc_frame;
2654 p += sprintf(p,"1000BaseT FDX");
2655 }
2656 else if (k1stsr & K1STSR_LP1KHD) {
2657 s->sbm_speed = sbmac_speed_1000;
2658 s->sbm_duplex = sbmac_duplex_half;
2659 s->sbm_fc = sbmac_fc_disabled;
2660 p += sprintf(p,"1000BaseT HDX");
2661 }
2662 else if (anlpar & ANLPAR_TXFD) {
2663 s->sbm_speed = sbmac_speed_100;
2664 s->sbm_duplex = sbmac_duplex_full;
2665 s->sbm_fc = (anlpar & ANLPAR_PAUSE) ? sbmac_fc_frame : sbmac_fc_disabled;
2666 p += sprintf(p,"100BaseT FDX");
2667 }
2668 else if (anlpar & ANLPAR_TXHD) {
2669 s->sbm_speed = sbmac_speed_100;
2670 s->sbm_duplex = sbmac_duplex_half;
2671 s->sbm_fc = sbmac_fc_disabled;
2672 p += sprintf(p,"100BaseT HDX");
2673 }
2674 else if (anlpar & ANLPAR_10FD) {
2675 s->sbm_speed = sbmac_speed_10;
2676 s->sbm_duplex = sbmac_duplex_full;
2677 s->sbm_fc = sbmac_fc_frame;
2678 p += sprintf(p,"10BaseT FDX");
2679 }
2680 else if (anlpar & ANLPAR_10HD) {
2681 s->sbm_speed = sbmac_speed_10;
2682 s->sbm_duplex = sbmac_duplex_half;
2683 s->sbm_fc = sbmac_fc_collision;
2684 p += sprintf(p,"10BaseT HDX");
2685 }
2686 else {
2687 p += sprintf(p,"Unknown");
2688 }
2689
2690 if (noisy) {
2691 printk(KERN_INFO "%s: %s\n",s->sbm_dev->name,buffer);
2692 }
2693
2694 return 1;
2695}
2696
2697
2698static void sbmac_timer(unsigned long data)
2699{
2700 struct net_device *dev = (struct net_device *)data;
2701 struct sbmac_softc *sc = netdev_priv(dev);
2702 int next_tick = HZ;
2703 int mii_status;
2704
2705 spin_lock_irq (&sc->sbm_lock);
Ralf Baechle74b02472005-10-19 15:40:02 +01002706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 /* make IFF_RUNNING follow the MII status bit "Link established" */
2708 mii_status = sbmac_mii_read(sc, sc->sbm_phys[0], MII_BMSR);
Ralf Baechle74b02472005-10-19 15:40:02 +01002709
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 if ( (mii_status & BMSR_LINKSTAT) != (sc->sbm_phy_oldlinkstat) ) {
2711 sc->sbm_phy_oldlinkstat = mii_status & BMSR_LINKSTAT;
2712 if (mii_status & BMSR_LINKSTAT) {
2713 netif_carrier_on(dev);
2714 }
2715 else {
Ralf Baechle74b02472005-10-19 15:40:02 +01002716 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 }
2718 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 /*
2721 * Poll the PHY to see what speed we should be running at
2722 */
2723
2724 if (sbmac_mii_poll(sc,noisy_mii)) {
2725 if (sc->sbm_state != sbmac_state_off) {
2726 /*
2727 * something changed, restart the channel
2728 */
2729 if (debug > 1) {
2730 printk("%s: restarting channel because speed changed\n",
2731 sc->sbm_dev->name);
2732 }
2733 sbmac_channel_stop(sc);
2734 sbmac_channel_start(sc);
2735 }
2736 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002737
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 spin_unlock_irq (&sc->sbm_lock);
Ralf Baechle74b02472005-10-19 15:40:02 +01002739
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 sc->sbm_timer.expires = jiffies + next_tick;
2741 add_timer(&sc->sbm_timer);
2742}
2743
2744
2745static void sbmac_tx_timeout (struct net_device *dev)
2746{
2747 struct sbmac_softc *sc = netdev_priv(dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01002748
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 spin_lock_irq (&sc->sbm_lock);
Ralf Baechle74b02472005-10-19 15:40:02 +01002750
2751
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 dev->trans_start = jiffies;
2753 sc->sbm_stats.tx_errors++;
Ralf Baechle74b02472005-10-19 15:40:02 +01002754
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 spin_unlock_irq (&sc->sbm_lock);
2756
2757 printk (KERN_WARNING "%s: Transmit timed out\n",dev->name);
2758}
2759
2760
2761
2762
2763static struct net_device_stats *sbmac_get_stats(struct net_device *dev)
2764{
2765 struct sbmac_softc *sc = netdev_priv(dev);
2766 unsigned long flags;
Ralf Baechle74b02472005-10-19 15:40:02 +01002767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 spin_lock_irqsave(&sc->sbm_lock, flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01002769
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 /* XXX update other stats here */
Ralf Baechle74b02472005-10-19 15:40:02 +01002771
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 spin_unlock_irqrestore(&sc->sbm_lock, flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01002773
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 return &sc->sbm_stats;
2775}
2776
2777
2778
2779static void sbmac_set_rx_mode(struct net_device *dev)
2780{
2781 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 struct sbmac_softc *sc = netdev_priv(dev);
2783
2784 spin_lock_irqsave(&sc->sbm_lock, flags);
2785 if ((dev->flags ^ sc->sbm_devflags) & IFF_PROMISC) {
2786 /*
2787 * Promiscuous changed.
2788 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002789
2790 if (dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 sbmac_promiscuous_mode(sc,1);
2792 }
2793 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 sbmac_promiscuous_mode(sc,0);
2795 }
2796 }
2797 spin_unlock_irqrestore(&sc->sbm_lock, flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01002798
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 /*
2800 * Program the multicasts. Do this every time.
2801 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002802
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 sbmac_setmulti(sc);
Ralf Baechle74b02472005-10-19 15:40:02 +01002804
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805}
2806
2807static int sbmac_mii_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2808{
2809 struct sbmac_softc *sc = netdev_priv(dev);
2810 u16 *data = (u16 *)&rq->ifr_ifru;
2811 unsigned long flags;
2812 int retval;
Ralf Baechle74b02472005-10-19 15:40:02 +01002813
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 spin_lock_irqsave(&sc->sbm_lock, flags);
2815 retval = 0;
Ralf Baechle74b02472005-10-19 15:40:02 +01002816
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 switch(cmd) {
2818 case SIOCDEVPRIVATE: /* Get the address of the PHY in use. */
2819 data[0] = sc->sbm_phys[0] & 0x1f;
2820 /* Fall Through */
2821 case SIOCDEVPRIVATE+1: /* Read the specified MII register. */
2822 data[3] = sbmac_mii_read(sc, data[0] & 0x1f, data[1] & 0x1f);
2823 break;
2824 case SIOCDEVPRIVATE+2: /* Write the specified MII register */
2825 if (!capable(CAP_NET_ADMIN)) {
2826 retval = -EPERM;
2827 break;
2828 }
2829 if (debug > 1) {
2830 printk(KERN_DEBUG "%s: sbmac_mii_ioctl: write %02X %02X %02X\n",dev->name,
2831 data[0],data[1],data[2]);
2832 }
2833 sbmac_mii_write(sc, data[0] & 0x1f, data[1] & 0x1f, data[2]);
2834 break;
2835 default:
2836 retval = -EOPNOTSUPP;
2837 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 spin_unlock_irqrestore(&sc->sbm_lock, flags);
2840 return retval;
2841}
2842
2843static int sbmac_close(struct net_device *dev)
2844{
2845 struct sbmac_softc *sc = netdev_priv(dev);
2846 unsigned long flags;
2847 int irq;
2848
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002849 napi_disable(&sc->napi);
2850
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 sbmac_set_channel_state(sc,sbmac_state_off);
2852
2853 del_timer_sync(&sc->sbm_timer);
2854
2855 spin_lock_irqsave(&sc->sbm_lock, flags);
2856
2857 netif_stop_queue(dev);
2858
2859 if (debug > 1) {
2860 printk(KERN_DEBUG "%s: Shutting down ethercard\n",dev->name);
2861 }
2862
2863 spin_unlock_irqrestore(&sc->sbm_lock, flags);
2864
2865 irq = dev->irq;
2866 synchronize_irq(irq);
2867 free_irq(irq, dev);
2868
2869 sbdma_emptyring(&(sc->sbm_txdma));
2870 sbdma_emptyring(&(sc->sbm_rxdma));
Ralf Baechle74b02472005-10-19 15:40:02 +01002871
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 return 0;
2873}
2874
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002875static int sbmac_poll(struct napi_struct *napi, int budget)
Mark Mason693aa942007-04-26 00:23:22 -07002876{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002877 struct sbmac_softc *sc = container_of(napi, struct sbmac_softc, napi);
2878 struct net_device *dev = sc->sbm_dev;
Mark Mason693aa942007-04-26 00:23:22 -07002879 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002881 work_done = sbdma_rx_process(sc, &(sc->sbm_rxdma), budget, 1);
Mark Mason693aa942007-04-26 00:23:22 -07002882 sbdma_tx_process(sc, &(sc->sbm_txdma), 1);
2883
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002884 if (work_done < budget) {
2885 netif_rx_complete(dev, napi);
Mark Mason693aa942007-04-26 00:23:22 -07002886
2887#ifdef CONFIG_SBMAC_COALESCE
2888 __raw_writeq(((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_TX_CH0) |
2889 ((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_RX_CH0),
2890 sc->sbm_imr);
2891#else
2892 __raw_writeq((M_MAC_INT_CHANNEL << S_MAC_TX_CH0) |
2893 (M_MAC_INT_CHANNEL << S_MAC_RX_CH0), sc->sbm_imr);
2894#endif
2895 }
2896
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002897 return work_done;
Mark Mason693aa942007-04-26 00:23:22 -07002898}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002900#if defined(SBMAC_ETH0_HWADDR) || defined(SBMAC_ETH1_HWADDR) || defined(SBMAC_ETH2_HWADDR) || defined(SBMAC_ETH3_HWADDR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901static void
2902sbmac_setup_hwaddr(int chan,char *addr)
2903{
2904 uint8_t eaddr[6];
2905 uint64_t val;
Ralf Baechle20399732005-10-19 15:39:05 +01002906 unsigned long port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
2908 port = A_MAC_CHANNEL_BASE(chan);
2909 sbmac_parse_hwaddr(addr,eaddr);
2910 val = sbmac_addr2reg(eaddr);
Ralf Baechle20399732005-10-19 15:39:05 +01002911 __raw_writeq(val, IOADDR(port+R_MAC_ETHERNET_ADDR));
2912 val = __raw_readq(IOADDR(port+R_MAC_ETHERNET_ADDR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913}
2914#endif
2915
2916static struct net_device *dev_sbmac[MAX_UNITS];
2917
2918static int __init
2919sbmac_init_module(void)
2920{
2921 int idx;
2922 struct net_device *dev;
Ralf Baechle20399732005-10-19 15:39:05 +01002923 unsigned long port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 int chip_max_units;
Ralf Baechle74b02472005-10-19 15:40:02 +01002925
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002926 /* Set the number of available units based on the SOC type. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 switch (soc_type) {
2928 case K_SYS_SOC_TYPE_BCM1250:
2929 case K_SYS_SOC_TYPE_BCM1250_ALT:
2930 chip_max_units = 3;
2931 break;
2932 case K_SYS_SOC_TYPE_BCM1120:
2933 case K_SYS_SOC_TYPE_BCM1125:
2934 case K_SYS_SOC_TYPE_BCM1125H:
2935 case K_SYS_SOC_TYPE_BCM1250_ALT2: /* Hybrid */
2936 chip_max_units = 2;
2937 break;
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002938 case K_SYS_SOC_TYPE_BCM1x55:
2939 case K_SYS_SOC_TYPE_BCM1x80:
2940 chip_max_units = 4;
2941 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 default:
2943 chip_max_units = 0;
2944 break;
2945 }
2946 if (chip_max_units > MAX_UNITS)
2947 chip_max_units = MAX_UNITS;
2948
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002949 /*
2950 * For bringup when not using the firmware, we can pre-fill
2951 * the MAC addresses using the environment variables
2952 * specified in this file (or maybe from the config file?)
2953 */
2954#ifdef SBMAC_ETH0_HWADDR
2955 if (chip_max_units > 0)
2956 sbmac_setup_hwaddr(0,SBMAC_ETH0_HWADDR);
2957#endif
2958#ifdef SBMAC_ETH1_HWADDR
2959 if (chip_max_units > 1)
2960 sbmac_setup_hwaddr(1,SBMAC_ETH1_HWADDR);
2961#endif
2962#ifdef SBMAC_ETH2_HWADDR
2963 if (chip_max_units > 2)
2964 sbmac_setup_hwaddr(2,SBMAC_ETH2_HWADDR);
2965#endif
2966#ifdef SBMAC_ETH3_HWADDR
2967 if (chip_max_units > 3)
2968 sbmac_setup_hwaddr(3,SBMAC_ETH3_HWADDR);
2969#endif
2970
2971 /*
2972 * Walk through the Ethernet controllers and find
2973 * those who have their MAC addresses set.
2974 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 for (idx = 0; idx < chip_max_units; idx++) {
2976
2977 /*
2978 * This is the base address of the MAC.
2979 */
2980
2981 port = A_MAC_CHANNEL_BASE(idx);
2982
Ralf Baechle74b02472005-10-19 15:40:02 +01002983 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 * The R_MAC_ETHERNET_ADDR register will be set to some nonzero
Mark Mason693aa942007-04-26 00:23:22 -07002985 * value for us by the firmware if we are going to use this MAC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 * If we find a zero, skip this MAC.
2987 */
2988
Ralf Baechle20399732005-10-19 15:39:05 +01002989 sbmac_orig_hwaddr[idx] = __raw_readq(IOADDR(port+R_MAC_ETHERNET_ADDR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 if (sbmac_orig_hwaddr[idx] == 0) {
2991 printk(KERN_DEBUG "sbmac: not configuring MAC at "
2992 "%lx\n", port);
2993 continue;
2994 }
2995
2996 /*
2997 * Okay, cool. Initialize this MAC.
2998 */
2999
3000 dev = alloc_etherdev(sizeof(struct sbmac_softc));
Ralf Baechle74b02472005-10-19 15:40:02 +01003001 if (!dev)
Dave Jones089fff22006-10-18 00:30:27 -04003002 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
3004 printk(KERN_DEBUG "sbmac: configuring MAC at %lx\n", port);
3005
Ralf Baechlef90fdc32006-02-08 23:23:26 +00003006 dev->irq = UNIT_INT(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 dev->base_addr = port;
3008 dev->mem_end = 0;
3009 if (sbmac_init(dev, idx)) {
3010 port = A_MAC_CHANNEL_BASE(idx);
Ralf Baechle20399732005-10-19 15:39:05 +01003011 __raw_writeq(sbmac_orig_hwaddr[idx], IOADDR(port+R_MAC_ETHERNET_ADDR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 free_netdev(dev);
3013 continue;
3014 }
3015 dev_sbmac[idx] = dev;
3016 }
3017 return 0;
3018}
3019
3020
3021static void __exit
3022sbmac_cleanup_module(void)
3023{
3024 struct net_device *dev;
3025 int idx;
3026
3027 for (idx = 0; idx < MAX_UNITS; idx++) {
3028 struct sbmac_softc *sc;
3029 dev = dev_sbmac[idx];
3030 if (!dev)
3031 continue;
3032
3033 sc = netdev_priv(dev);
3034 unregister_netdev(dev);
3035 sbmac_uninitctx(sc);
3036 free_netdev(dev);
3037 }
3038}
3039
3040module_init(sbmac_init_module);
3041module_exit(sbmac_cleanup_module);