2 * Copyright (C) 2001,2002,2003,2004 Broadcom Corporation
3 * Copyright (c) 2006, 2007 Maciej W. Rozycki
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 * This driver is designed for the Broadcom SiByte SOC built-in
21 * Ethernet controllers. Written by Mitch Lichtenberg at Broadcom Corp.
23 * Updated to the driver model and the PHY abstraction layer
24 * by Maciej W. Rozycki.
27 #include <linux/bug.h>
28 #include <linux/module.h>
29 #include <linux/kernel.h>
30 #include <linux/string.h>
31 #include <linux/timer.h>
32 #include <linux/errno.h>
33 #include <linux/ioport.h>
34 #include <linux/slab.h>
35 #include <linux/interrupt.h>
36 #include <linux/netdevice.h>
37 #include <linux/etherdevice.h>
38 #include <linux/skbuff.h>
39 #include <linux/init.h>
40 #include <linux/bitops.h>
41 #include <linux/err.h>
42 #include <linux/ethtool.h>
43 #include <linux/mii.h>
44 #include <linux/phy.h>
45 #include <linux/platform_device.h>
46 #include <linux/prefetch.h>
48 #include <asm/cache.h>
50 #include <asm/processor.h> /* Processor type for cache alignment. */
52 /* Operational parameters that usually are not changed. */
54 #define CONFIG_SBMAC_COALESCE
56 /* Time in jiffies before concluding the transmitter is hung. */
57 #define TX_TIMEOUT (2*HZ)
60 MODULE_AUTHOR("Mitch Lichtenberg (Broadcom Corp.)");
61 MODULE_DESCRIPTION("Broadcom SiByte SOC GB Ethernet driver");
63 /* A few user-configurable values which may be modified when a driver
66 /* 1 normal messages, 0 quiet .. 7 verbose. */
68 module_param(debug
, int, S_IRUGO
);
69 MODULE_PARM_DESC(debug
, "Debug messages");
71 #ifdef CONFIG_SBMAC_COALESCE
72 static int int_pktcnt_tx
= 255;
73 module_param(int_pktcnt_tx
, int, S_IRUGO
);
74 MODULE_PARM_DESC(int_pktcnt_tx
, "TX packet count");
76 static int int_timeout_tx
= 255;
77 module_param(int_timeout_tx
, int, S_IRUGO
);
78 MODULE_PARM_DESC(int_timeout_tx
, "TX timeout value");
80 static int int_pktcnt_rx
= 64;
81 module_param(int_pktcnt_rx
, int, S_IRUGO
);
82 MODULE_PARM_DESC(int_pktcnt_rx
, "RX packet count");
84 static int int_timeout_rx
= 64;
85 module_param(int_timeout_rx
, int, S_IRUGO
);
86 MODULE_PARM_DESC(int_timeout_rx
, "RX timeout value");
89 #include <asm/sibyte/board.h>
90 #include <asm/sibyte/sb1250.h>
91 #if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
92 #include <asm/sibyte/bcm1480_regs.h>
93 #include <asm/sibyte/bcm1480_int.h>
94 #define R_MAC_DMA_OODPKTLOST_RX R_MAC_DMA_OODPKTLOST
95 #elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
96 #include <asm/sibyte/sb1250_regs.h>
97 #include <asm/sibyte/sb1250_int.h>
99 #error invalid SiByte MAC configuration
101 #include <asm/sibyte/sb1250_scd.h>
102 #include <asm/sibyte/sb1250_mac.h>
103 #include <asm/sibyte/sb1250_dma.h>
105 #if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
106 #define UNIT_INT(n) (K_BCM1480_INT_MAC_0 + ((n) * 2))
107 #elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
108 #define UNIT_INT(n) (K_INT_MAC_0 + (n))
110 #error invalid SiByte MAC configuration
114 #define SBMAC_PHY_INT K_INT_PHY
116 #define SBMAC_PHY_INT PHY_POLL
119 /**********************************************************************
121 ********************************************************************* */
124 sbmac_speed_none
= 0,
125 sbmac_speed_10
= SPEED_10
,
126 sbmac_speed_100
= SPEED_100
,
127 sbmac_speed_1000
= SPEED_1000
,
131 sbmac_duplex_none
= -1,
132 sbmac_duplex_half
= DUPLEX_HALF
,
133 sbmac_duplex_full
= DUPLEX_FULL
,
152 /**********************************************************************
154 ********************************************************************* */
157 #define SBDMA_NEXTBUF(d,f) ((((d)->f+1) == (d)->sbdma_dscrtable_end) ? \
158 (d)->sbdma_dscrtable : (d)->f+1)
161 #define NUMCACHEBLKS(x) (((x)+SMP_CACHE_BYTES-1)/SMP_CACHE_BYTES)
163 #define SBMAC_MAX_TXDESCR 256
164 #define SBMAC_MAX_RXDESCR 256
166 #define ETHER_ADDR_LEN 6
167 #define ENET_PACKET_SIZE 1518
168 /*#define ENET_PACKET_SIZE 9216 */
170 /**********************************************************************
171 * DMA Descriptor structure
172 ********************************************************************* */
179 /**********************************************************************
180 * DMA Controller structure
181 ********************************************************************* */
186 * This stuff is used to identify the channel and the registers
187 * associated with it.
189 struct sbmac_softc
*sbdma_eth
; /* back pointer to associated
191 int sbdma_channel
; /* channel number */
192 int sbdma_txdir
; /* direction (1=transmit) */
193 int sbdma_maxdescr
; /* total # of descriptors
195 #ifdef CONFIG_SBMAC_COALESCE
196 int sbdma_int_pktcnt
;
197 /* # descriptors rx/tx
199 int sbdma_int_timeout
;
200 /* # usec rx/tx interrupt */
202 void __iomem
*sbdma_config0
; /* DMA config register 0 */
203 void __iomem
*sbdma_config1
; /* DMA config register 1 */
204 void __iomem
*sbdma_dscrbase
;
205 /* descriptor base address */
206 void __iomem
*sbdma_dscrcnt
; /* descriptor count register */
207 void __iomem
*sbdma_curdscr
; /* current descriptor
209 void __iomem
*sbdma_oodpktlost
;
210 /* pkt drop (rx only) */
213 * This stuff is for maintenance of the ring
215 void *sbdma_dscrtable_unaligned
;
216 struct sbdmadscr
*sbdma_dscrtable
;
217 /* base of descriptor table */
218 struct sbdmadscr
*sbdma_dscrtable_end
;
219 /* end of descriptor table */
220 struct sk_buff
**sbdma_ctxtable
;
221 /* context table, one
223 dma_addr_t sbdma_dscrtable_phys
;
224 /* and also the phys addr */
225 struct sbdmadscr
*sbdma_addptr
; /* next dscr for sw to add */
226 struct sbdmadscr
*sbdma_remptr
; /* next dscr for sw
231 /**********************************************************************
232 * Ethernet softc structure
233 ********************************************************************* */
238 * Linux-specific things
240 struct net_device
*sbm_dev
; /* pointer to linux device */
241 struct napi_struct napi
;
242 struct phy_device
*phy_dev
; /* the associated PHY device */
243 struct mii_bus
*mii_bus
; /* the MII bus */
244 int phy_irq
[PHY_MAX_ADDR
];
245 spinlock_t sbm_lock
; /* spin lock */
246 int sbm_devflags
; /* current device flags */
249 * Controller-specific things
251 void __iomem
*sbm_base
; /* MAC's base address */
252 enum sbmac_state sbm_state
; /* current state */
254 void __iomem
*sbm_macenable
; /* MAC Enable Register */
255 void __iomem
*sbm_maccfg
; /* MAC Config Register */
256 void __iomem
*sbm_fifocfg
; /* FIFO Config Register */
257 void __iomem
*sbm_framecfg
; /* Frame Config Register */
258 void __iomem
*sbm_rxfilter
; /* Receive Filter Register */
259 void __iomem
*sbm_isr
; /* Interrupt Status Register */
260 void __iomem
*sbm_imr
; /* Interrupt Mask Register */
261 void __iomem
*sbm_mdio
; /* MDIO Register */
263 enum sbmac_speed sbm_speed
; /* current speed */
264 enum sbmac_duplex sbm_duplex
; /* current duplex */
265 enum sbmac_fc sbm_fc
; /* cur. flow control setting */
266 int sbm_pause
; /* current pause setting */
267 int sbm_link
; /* current link state */
269 unsigned char sbm_hwaddr
[ETHER_ADDR_LEN
];
271 struct sbmacdma sbm_txdma
; /* only channel 0 for now */
272 struct sbmacdma sbm_rxdma
;
278 /**********************************************************************
280 ********************************************************************* */
282 /**********************************************************************
284 ********************************************************************* */
286 static void sbdma_initctx(struct sbmacdma
*d
, struct sbmac_softc
*s
, int chan
,
287 int txrx
, int maxdescr
);
288 static void sbdma_channel_start(struct sbmacdma
*d
, int rxtx
);
289 static int sbdma_add_rcvbuffer(struct sbmac_softc
*sc
, struct sbmacdma
*d
,
291 static int sbdma_add_txbuffer(struct sbmacdma
*d
, struct sk_buff
*m
);
292 static void sbdma_emptyring(struct sbmacdma
*d
);
293 static void sbdma_fillring(struct sbmac_softc
*sc
, struct sbmacdma
*d
);
294 static int sbdma_rx_process(struct sbmac_softc
*sc
, struct sbmacdma
*d
,
295 int work_to_do
, int poll
);
296 static void sbdma_tx_process(struct sbmac_softc
*sc
, struct sbmacdma
*d
,
298 static int sbmac_initctx(struct sbmac_softc
*s
);
299 static void sbmac_channel_start(struct sbmac_softc
*s
);
300 static void sbmac_channel_stop(struct sbmac_softc
*s
);
301 static enum sbmac_state
sbmac_set_channel_state(struct sbmac_softc
*,
303 static void sbmac_promiscuous_mode(struct sbmac_softc
*sc
, int onoff
);
304 static uint64_t sbmac_addr2reg(unsigned char *ptr
);
305 static irqreturn_t
sbmac_intr(int irq
, void *dev_instance
);
306 static int sbmac_start_tx(struct sk_buff
*skb
, struct net_device
*dev
);
307 static void sbmac_setmulti(struct sbmac_softc
*sc
);
308 static int sbmac_init(struct platform_device
*pldev
, long long base
);
309 static int sbmac_set_speed(struct sbmac_softc
*s
, enum sbmac_speed speed
);
310 static int sbmac_set_duplex(struct sbmac_softc
*s
, enum sbmac_duplex duplex
,
313 static int sbmac_open(struct net_device
*dev
);
314 static void sbmac_tx_timeout (struct net_device
*dev
);
315 static void sbmac_set_rx_mode(struct net_device
*dev
);
316 static int sbmac_mii_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
317 static int sbmac_close(struct net_device
*dev
);
318 static int sbmac_poll(struct napi_struct
*napi
, int budget
);
320 static void sbmac_mii_poll(struct net_device
*dev
);
321 static int sbmac_mii_probe(struct net_device
*dev
);
323 static void sbmac_mii_sync(void __iomem
*sbm_mdio
);
324 static void sbmac_mii_senddata(void __iomem
*sbm_mdio
, unsigned int data
,
326 static int sbmac_mii_read(struct mii_bus
*bus
, int phyaddr
, int regidx
);
327 static int sbmac_mii_write(struct mii_bus
*bus
, int phyaddr
, int regidx
,
331 /**********************************************************************
333 ********************************************************************* */
335 static char sbmac_string
[] = "sb1250-mac";
337 static char sbmac_mdio_string
[] = "sb1250-mac-mdio";
340 /**********************************************************************
342 ********************************************************************* */
344 #define MII_COMMAND_START 0x01
345 #define MII_COMMAND_READ 0x02
346 #define MII_COMMAND_WRITE 0x01
347 #define MII_COMMAND_ACK 0x02
349 #define M_MAC_MDIO_DIR_OUTPUT 0 /* for clarity */
354 /**********************************************************************
355 * SBMAC_MII_SYNC(sbm_mdio)
357 * Synchronize with the MII - send a pattern of bits to the MII
358 * that will guarantee that it is ready to accept a command.
361 * sbm_mdio - address of the MAC's MDIO register
365 ********************************************************************* */
367 static void sbmac_mii_sync(void __iomem
*sbm_mdio
)
373 mac_mdio_genc
= __raw_readq(sbm_mdio
) & M_MAC_GENC
;
375 bits
= M_MAC_MDIO_DIR_OUTPUT
| M_MAC_MDIO_OUT
;
377 __raw_writeq(bits
| mac_mdio_genc
, sbm_mdio
);
379 for (cnt
= 0; cnt
< 32; cnt
++) {
380 __raw_writeq(bits
| M_MAC_MDC
| mac_mdio_genc
, sbm_mdio
);
381 __raw_writeq(bits
| mac_mdio_genc
, sbm_mdio
);
385 /**********************************************************************
386 * SBMAC_MII_SENDDATA(sbm_mdio, data, bitcnt)
388 * Send some bits to the MII. The bits to be sent are right-
389 * justified in the 'data' parameter.
392 * sbm_mdio - address of the MAC's MDIO register
393 * data - data to send
394 * bitcnt - number of bits to send
395 ********************************************************************* */
397 static void sbmac_mii_senddata(void __iomem
*sbm_mdio
, unsigned int data
,
402 unsigned int curmask
;
405 mac_mdio_genc
= __raw_readq(sbm_mdio
) & M_MAC_GENC
;
407 bits
= M_MAC_MDIO_DIR_OUTPUT
;
408 __raw_writeq(bits
| mac_mdio_genc
, sbm_mdio
);
410 curmask
= 1 << (bitcnt
- 1);
412 for (i
= 0; i
< bitcnt
; i
++) {
414 bits
|= M_MAC_MDIO_OUT
;
415 else bits
&= ~M_MAC_MDIO_OUT
;
416 __raw_writeq(bits
| mac_mdio_genc
, sbm_mdio
);
417 __raw_writeq(bits
| M_MAC_MDC
| mac_mdio_genc
, sbm_mdio
);
418 __raw_writeq(bits
| mac_mdio_genc
, sbm_mdio
);
425 /**********************************************************************
426 * SBMAC_MII_READ(bus, phyaddr, regidx)
427 * Read a PHY register.
430 * bus - MDIO bus handle
431 * phyaddr - PHY's address
432 * regnum - index of register to read
435 * value read, or 0xffff if an error occurred.
436 ********************************************************************* */
438 static int sbmac_mii_read(struct mii_bus
*bus
, int phyaddr
, int regidx
)
440 struct sbmac_softc
*sc
= (struct sbmac_softc
*)bus
->priv
;
441 void __iomem
*sbm_mdio
= sc
->sbm_mdio
;
448 * Synchronize ourselves so that the PHY knows the next
449 * thing coming down is a command
451 sbmac_mii_sync(sbm_mdio
);
454 * Send the data to the PHY. The sequence is
455 * a "start" command (2 bits)
456 * a "read" command (2 bits)
457 * the PHY addr (5 bits)
458 * the register index (5 bits)
460 sbmac_mii_senddata(sbm_mdio
, MII_COMMAND_START
, 2);
461 sbmac_mii_senddata(sbm_mdio
, MII_COMMAND_READ
, 2);
462 sbmac_mii_senddata(sbm_mdio
, phyaddr
, 5);
463 sbmac_mii_senddata(sbm_mdio
, regidx
, 5);
465 mac_mdio_genc
= __raw_readq(sbm_mdio
) & M_MAC_GENC
;
468 * Switch the port around without a clock transition.
470 __raw_writeq(M_MAC_MDIO_DIR_INPUT
| mac_mdio_genc
, sbm_mdio
);
473 * Send out a clock pulse to signal we want the status
475 __raw_writeq(M_MAC_MDIO_DIR_INPUT
| M_MAC_MDC
| mac_mdio_genc
,
477 __raw_writeq(M_MAC_MDIO_DIR_INPUT
| mac_mdio_genc
, sbm_mdio
);
480 * If an error occurred, the PHY will signal '1' back
482 error
= __raw_readq(sbm_mdio
) & M_MAC_MDIO_IN
;
485 * Issue an 'idle' clock pulse, but keep the direction
488 __raw_writeq(M_MAC_MDIO_DIR_INPUT
| M_MAC_MDC
| mac_mdio_genc
,
490 __raw_writeq(M_MAC_MDIO_DIR_INPUT
| mac_mdio_genc
, sbm_mdio
);
494 for (idx
= 0; idx
< 16; idx
++) {
498 if (__raw_readq(sbm_mdio
) & M_MAC_MDIO_IN
)
502 __raw_writeq(M_MAC_MDIO_DIR_INPUT
| M_MAC_MDC
| mac_mdio_genc
,
504 __raw_writeq(M_MAC_MDIO_DIR_INPUT
| mac_mdio_genc
, sbm_mdio
);
507 /* Switch back to output */
508 __raw_writeq(M_MAC_MDIO_DIR_OUTPUT
| mac_mdio_genc
, sbm_mdio
);
516 /**********************************************************************
517 * SBMAC_MII_WRITE(bus, phyaddr, regidx, regval)
519 * Write a value to a PHY register.
522 * bus - MDIO bus handle
523 * phyaddr - PHY to use
524 * regidx - register within the PHY
525 * regval - data to write to register
529 ********************************************************************* */
531 static int sbmac_mii_write(struct mii_bus
*bus
, int phyaddr
, int regidx
,
534 struct sbmac_softc
*sc
= (struct sbmac_softc
*)bus
->priv
;
535 void __iomem
*sbm_mdio
= sc
->sbm_mdio
;
538 sbmac_mii_sync(sbm_mdio
);
540 sbmac_mii_senddata(sbm_mdio
, MII_COMMAND_START
, 2);
541 sbmac_mii_senddata(sbm_mdio
, MII_COMMAND_WRITE
, 2);
542 sbmac_mii_senddata(sbm_mdio
, phyaddr
, 5);
543 sbmac_mii_senddata(sbm_mdio
, regidx
, 5);
544 sbmac_mii_senddata(sbm_mdio
, MII_COMMAND_ACK
, 2);
545 sbmac_mii_senddata(sbm_mdio
, regval
, 16);
547 mac_mdio_genc
= __raw_readq(sbm_mdio
) & M_MAC_GENC
;
549 __raw_writeq(M_MAC_MDIO_DIR_OUTPUT
| mac_mdio_genc
, sbm_mdio
);
556 /**********************************************************************
557 * SBDMA_INITCTX(d,s,chan,txrx,maxdescr)
559 * Initialize a DMA channel context. Since there are potentially
560 * eight DMA channels per MAC, it's nice to do this in a standard
564 * d - struct sbmacdma (DMA channel context)
565 * s - struct sbmac_softc (pointer to a MAC)
566 * chan - channel number (0..1 right now)
567 * txrx - Identifies DMA_TX or DMA_RX for channel direction
568 * maxdescr - number of descriptors
572 ********************************************************************* */
574 static void sbdma_initctx(struct sbmacdma
*d
, struct sbmac_softc
*s
, int chan
,
575 int txrx
, int maxdescr
)
577 #ifdef CONFIG_SBMAC_COALESCE
578 int int_pktcnt
, int_timeout
;
582 * Save away interesting stuff in the structure
586 d
->sbdma_channel
= chan
;
587 d
->sbdma_txdir
= txrx
;
591 s
->sbe_idx
=(s
->sbm_base
- A_MAC_BASE_0
)/MAC_SPACING
;
594 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_TX_BYTES
);
595 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_COLLISIONS
);
596 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_LATE_COL
);
597 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_EX_COL
);
598 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_FCS_ERROR
);
599 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_TX_ABORT
);
600 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_TX_BAD
);
601 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_TX_GOOD
);
602 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_TX_RUNT
);
603 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_TX_OVERSIZE
);
604 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_RX_BYTES
);
605 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_RX_MCAST
);
606 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_RX_BCAST
);
607 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_RX_BAD
);
608 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_RX_GOOD
);
609 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_RX_RUNT
);
610 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_RX_OVERSIZE
);
611 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_RX_FCS_ERROR
);
612 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_RX_LENGTH_ERROR
);
613 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_RX_CODE_ERROR
);
614 __raw_writeq(0, s
->sbm_base
+ R_MAC_RMON_RX_ALIGN_ERROR
);
617 * initialize register pointers
621 s
->sbm_base
+ R_MAC_DMA_REGISTER(txrx
,chan
,R_MAC_DMA_CONFIG0
);
623 s
->sbm_base
+ R_MAC_DMA_REGISTER(txrx
,chan
,R_MAC_DMA_CONFIG1
);
625 s
->sbm_base
+ R_MAC_DMA_REGISTER(txrx
,chan
,R_MAC_DMA_DSCR_BASE
);
627 s
->sbm_base
+ R_MAC_DMA_REGISTER(txrx
,chan
,R_MAC_DMA_DSCR_CNT
);
629 s
->sbm_base
+ R_MAC_DMA_REGISTER(txrx
,chan
,R_MAC_DMA_CUR_DSCRADDR
);
631 d
->sbdma_oodpktlost
= NULL
;
633 d
->sbdma_oodpktlost
=
634 s
->sbm_base
+ R_MAC_DMA_REGISTER(txrx
,chan
,R_MAC_DMA_OODPKTLOST_RX
);
637 * Allocate memory for the ring
640 d
->sbdma_maxdescr
= maxdescr
;
642 d
->sbdma_dscrtable_unaligned
= kcalloc(d
->sbdma_maxdescr
+ 1,
643 sizeof(*d
->sbdma_dscrtable
),
647 * The descriptor table must be aligned to at least 16 bytes or the
648 * MAC will corrupt it.
650 d
->sbdma_dscrtable
= (struct sbdmadscr
*)
651 ALIGN((unsigned long)d
->sbdma_dscrtable_unaligned
,
652 sizeof(*d
->sbdma_dscrtable
));
654 d
->sbdma_dscrtable_end
= d
->sbdma_dscrtable
+ d
->sbdma_maxdescr
;
656 d
->sbdma_dscrtable_phys
= virt_to_phys(d
->sbdma_dscrtable
);
662 d
->sbdma_ctxtable
= kcalloc(d
->sbdma_maxdescr
,
663 sizeof(*d
->sbdma_ctxtable
), GFP_KERNEL
);
665 #ifdef CONFIG_SBMAC_COALESCE
667 * Setup Rx/Tx DMA coalescing defaults
670 int_pktcnt
= (txrx
== DMA_TX
) ? int_pktcnt_tx
: int_pktcnt_rx
;
672 d
->sbdma_int_pktcnt
= int_pktcnt
;
674 d
->sbdma_int_pktcnt
= 1;
677 int_timeout
= (txrx
== DMA_TX
) ? int_timeout_tx
: int_timeout_rx
;
679 d
->sbdma_int_timeout
= int_timeout
;
681 d
->sbdma_int_timeout
= 0;
687 /**********************************************************************
688 * SBDMA_CHANNEL_START(d)
690 * Initialize the hardware registers for a DMA channel.
693 * d - DMA channel to init (context must be previously init'd
694 * rxtx - DMA_RX or DMA_TX depending on what type of channel
698 ********************************************************************* */
700 static void sbdma_channel_start(struct sbmacdma
*d
, int rxtx
)
703 * Turn on the DMA channel
706 #ifdef CONFIG_SBMAC_COALESCE
707 __raw_writeq(V_DMA_INT_TIMEOUT(d
->sbdma_int_timeout
) |
708 0, d
->sbdma_config1
);
709 __raw_writeq(M_DMA_EOP_INT_EN
|
710 V_DMA_RINGSZ(d
->sbdma_maxdescr
) |
711 V_DMA_INT_PKTCNT(d
->sbdma_int_pktcnt
) |
712 0, d
->sbdma_config0
);
714 __raw_writeq(0, d
->sbdma_config1
);
715 __raw_writeq(V_DMA_RINGSZ(d
->sbdma_maxdescr
) |
716 0, d
->sbdma_config0
);
719 __raw_writeq(d
->sbdma_dscrtable_phys
, d
->sbdma_dscrbase
);
722 * Initialize ring pointers
725 d
->sbdma_addptr
= d
->sbdma_dscrtable
;
726 d
->sbdma_remptr
= d
->sbdma_dscrtable
;
729 /**********************************************************************
730 * SBDMA_CHANNEL_STOP(d)
732 * Initialize the hardware registers for a DMA channel.
735 * d - DMA channel to init (context must be previously init'd
739 ********************************************************************* */
741 static void sbdma_channel_stop(struct sbmacdma
*d
)
744 * Turn off the DMA channel
747 __raw_writeq(0, d
->sbdma_config1
);
749 __raw_writeq(0, d
->sbdma_dscrbase
);
751 __raw_writeq(0, d
->sbdma_config0
);
757 d
->sbdma_addptr
= NULL
;
758 d
->sbdma_remptr
= NULL
;
761 static inline void sbdma_align_skb(struct sk_buff
*skb
,
762 unsigned int power2
, unsigned int offset
)
764 unsigned char *addr
= skb
->data
;
765 unsigned char *newaddr
= PTR_ALIGN(addr
, power2
);
767 skb_reserve(skb
, newaddr
- addr
+ offset
);
771 /**********************************************************************
772 * SBDMA_ADD_RCVBUFFER(d,sb)
774 * Add a buffer to the specified DMA channel. For receive channels,
775 * this queues a buffer for inbound packets.
778 * sc - softc structure
779 * d - DMA channel descriptor
780 * sb - sk_buff to add, or NULL if we should allocate one
783 * 0 if buffer could not be added (ring is full)
784 * 1 if buffer added successfully
785 ********************************************************************* */
788 static int sbdma_add_rcvbuffer(struct sbmac_softc
*sc
, struct sbmacdma
*d
,
791 struct net_device
*dev
= sc
->sbm_dev
;
792 struct sbdmadscr
*dsc
;
793 struct sbdmadscr
*nextdsc
;
794 struct sk_buff
*sb_new
= NULL
;
795 int pktsize
= ENET_PACKET_SIZE
;
797 /* get pointer to our current place in the ring */
799 dsc
= d
->sbdma_addptr
;
800 nextdsc
= SBDMA_NEXTBUF(d
,sbdma_addptr
);
803 * figure out if the ring is full - if the next descriptor
804 * is the same as the one that we're going to remove from
805 * the ring, the ring is full
808 if (nextdsc
== d
->sbdma_remptr
) {
813 * Allocate a sk_buff if we don't already have one.
814 * If we do have an sk_buff, reset it so that it's empty.
816 * Note: sk_buffs don't seem to be guaranteed to have any sort
817 * of alignment when they are allocated. Therefore, allocate enough
818 * extra space to make sure that:
820 * 1. the data does not start in the middle of a cache line.
821 * 2. The data does not end in the middle of a cache line
822 * 3. The buffer can be aligned such that the IP addresses are
825 * Remember, the SOCs MAC writes whole cache lines at a time,
826 * without reading the old contents first. So, if the sk_buff's
827 * data portion starts in the middle of a cache line, the SOC
828 * DMA will trash the beginning (and ending) portions.
832 sb_new
= netdev_alloc_skb(dev
, ENET_PACKET_SIZE
+
833 SMP_CACHE_BYTES
* 2 +
835 if (sb_new
== NULL
) {
836 pr_info("%s: sk_buff allocation failed\n",
837 d
->sbdma_eth
->sbm_dev
->name
);
841 sbdma_align_skb(sb_new
, SMP_CACHE_BYTES
, NET_IP_ALIGN
);
846 * nothing special to reinit buffer, it's already aligned
847 * and sb->data already points to a good place.
852 * fill in the descriptor
855 #ifdef CONFIG_SBMAC_COALESCE
857 * Do not interrupt per DMA transfer.
859 dsc
->dscr_a
= virt_to_phys(sb_new
->data
) |
860 V_DMA_DSCRA_A_SIZE(NUMCACHEBLKS(pktsize
+ NET_IP_ALIGN
)) | 0;
862 dsc
->dscr_a
= virt_to_phys(sb_new
->data
) |
863 V_DMA_DSCRA_A_SIZE(NUMCACHEBLKS(pktsize
+ NET_IP_ALIGN
)) |
864 M_DMA_DSCRA_INTERRUPT
;
867 /* receiving: no options */
871 * fill in the context
874 d
->sbdma_ctxtable
[dsc
-d
->sbdma_dscrtable
] = sb_new
;
877 * point at next packet
880 d
->sbdma_addptr
= nextdsc
;
883 * Give the buffer to the DMA engine.
886 __raw_writeq(1, d
->sbdma_dscrcnt
);
888 return 0; /* we did it */
891 /**********************************************************************
892 * SBDMA_ADD_TXBUFFER(d,sb)
894 * Add a transmit buffer to the specified DMA channel, causing a
898 * d - DMA channel descriptor
899 * sb - sk_buff to add
902 * 0 transmit queued successfully
903 * otherwise error code
904 ********************************************************************* */
907 static int sbdma_add_txbuffer(struct sbmacdma
*d
, struct sk_buff
*sb
)
909 struct sbdmadscr
*dsc
;
910 struct sbdmadscr
*nextdsc
;
915 /* get pointer to our current place in the ring */
917 dsc
= d
->sbdma_addptr
;
918 nextdsc
= SBDMA_NEXTBUF(d
,sbdma_addptr
);
921 * figure out if the ring is full - if the next descriptor
922 * is the same as the one that we're going to remove from
923 * the ring, the ring is full
926 if (nextdsc
== d
->sbdma_remptr
) {
931 * Under Linux, it's not necessary to copy/coalesce buffers
932 * like it is on NetBSD. We think they're all contiguous,
933 * but that may not be true for GBE.
939 * fill in the descriptor. Note that the number of cache
940 * blocks in the descriptor is the number of blocks
941 * *spanned*, so we need to add in the offset (if any)
942 * while doing the calculation.
945 phys
= virt_to_phys(sb
->data
);
946 ncb
= NUMCACHEBLKS(length
+(phys
& (SMP_CACHE_BYTES
- 1)));
949 V_DMA_DSCRA_A_SIZE(ncb
) |
950 #ifndef CONFIG_SBMAC_COALESCE
951 M_DMA_DSCRA_INTERRUPT
|
955 /* transmitting: set outbound options and length */
957 dsc
->dscr_b
= V_DMA_DSCRB_OPTIONS(K_DMA_ETHTX_APPENDCRC_APPENDPAD
) |
958 V_DMA_DSCRB_PKT_SIZE(length
);
961 * fill in the context
964 d
->sbdma_ctxtable
[dsc
-d
->sbdma_dscrtable
] = sb
;
967 * point at next packet
970 d
->sbdma_addptr
= nextdsc
;
973 * Give the buffer to the DMA engine.
976 __raw_writeq(1, d
->sbdma_dscrcnt
);
978 return 0; /* we did it */
984 /**********************************************************************
987 * Free all allocated sk_buffs on the specified DMA channel;
994 ********************************************************************* */
996 static void sbdma_emptyring(struct sbmacdma
*d
)
1001 for (idx
= 0; idx
< d
->sbdma_maxdescr
; idx
++) {
1002 sb
= d
->sbdma_ctxtable
[idx
];
1005 d
->sbdma_ctxtable
[idx
] = NULL
;
1011 /**********************************************************************
1014 * Fill the specified DMA channel (must be receive channel)
1018 * sc - softc structure
1023 ********************************************************************* */
1025 static void sbdma_fillring(struct sbmac_softc
*sc
, struct sbmacdma
*d
)
1029 for (idx
= 0; idx
< SBMAC_MAX_RXDESCR
- 1; idx
++) {
1030 if (sbdma_add_rcvbuffer(sc
, d
, NULL
) != 0)
1035 #ifdef CONFIG_NET_POLL_CONTROLLER
1036 static void sbmac_netpoll(struct net_device
*netdev
)
1038 struct sbmac_softc
*sc
= netdev_priv(netdev
);
1039 int irq
= sc
->sbm_dev
->irq
;
1041 __raw_writeq(0, sc
->sbm_imr
);
1043 sbmac_intr(irq
, netdev
);
1045 #ifdef CONFIG_SBMAC_COALESCE
1046 __raw_writeq(((M_MAC_INT_EOP_COUNT
| M_MAC_INT_EOP_TIMER
) << S_MAC_TX_CH0
) |
1047 ((M_MAC_INT_EOP_COUNT
| M_MAC_INT_EOP_TIMER
) << S_MAC_RX_CH0
),
1050 __raw_writeq((M_MAC_INT_CHANNEL
<< S_MAC_TX_CH0
) |
1051 (M_MAC_INT_CHANNEL
<< S_MAC_RX_CH0
), sc
->sbm_imr
);
1056 /**********************************************************************
1057 * SBDMA_RX_PROCESS(sc,d,work_to_do,poll)
1059 * Process "completed" receive buffers on the specified DMA channel.
1062 * sc - softc structure
1063 * d - DMA channel context
1064 * work_to_do - no. of packets to process before enabling interrupt
1066 * poll - 1: using polling (for NAPI)
1070 ********************************************************************* */
1072 static int sbdma_rx_process(struct sbmac_softc
*sc
, struct sbmacdma
*d
,
1073 int work_to_do
, int poll
)
1075 struct net_device
*dev
= sc
->sbm_dev
;
1078 struct sbdmadscr
*dsc
;
1087 /* Check if the HW dropped any frames */
1088 dev
->stats
.rx_fifo_errors
1089 += __raw_readq(sc
->sbm_rxdma
.sbdma_oodpktlost
) & 0xffff;
1090 __raw_writeq(0, sc
->sbm_rxdma
.sbdma_oodpktlost
);
1092 while (work_to_do
-- > 0) {
1094 * figure out where we are (as an index) and where
1095 * the hardware is (also as an index)
1097 * This could be done faster if (for example) the
1098 * descriptor table was page-aligned and contiguous in
1099 * both virtual and physical memory -- you could then
1100 * just compare the low-order bits of the virtual address
1101 * (sbdma_remptr) and the physical address (sbdma_curdscr CSR)
1104 dsc
= d
->sbdma_remptr
;
1105 curidx
= dsc
- d
->sbdma_dscrtable
;
1108 prefetch(&d
->sbdma_ctxtable
[curidx
]);
1110 hwidx
= ((__raw_readq(d
->sbdma_curdscr
) & M_DMA_CURDSCR_ADDR
) -
1111 d
->sbdma_dscrtable_phys
) /
1112 sizeof(*d
->sbdma_dscrtable
);
1115 * If they're the same, that means we've processed all
1116 * of the descriptors up to (but not including) the one that
1117 * the hardware is working on right now.
1120 if (curidx
== hwidx
)
1124 * Otherwise, get the packet's sk_buff ptr back
1127 sb
= d
->sbdma_ctxtable
[curidx
];
1128 d
->sbdma_ctxtable
[curidx
] = NULL
;
1130 len
= (int)G_DMA_DSCRB_PKT_SIZE(dsc
->dscr_b
) - 4;
1133 * Check packet status. If good, process it.
1134 * If not, silently drop it and put it back on the
1138 if (likely (!(dsc
->dscr_a
& M_DMA_ETHRX_BAD
))) {
1141 * Add a new buffer to replace the old one. If we fail
1142 * to allocate a buffer, we're going to drop this
1143 * packet and put it right back on the receive ring.
1146 if (unlikely(sbdma_add_rcvbuffer(sc
, d
, NULL
) ==
1148 dev
->stats
.rx_dropped
++;
1149 /* Re-add old buffer */
1150 sbdma_add_rcvbuffer(sc
, d
, sb
);
1151 /* No point in continuing at the moment */
1152 printk(KERN_ERR
"dropped packet (1)\n");
1153 d
->sbdma_remptr
= SBDMA_NEXTBUF(d
,sbdma_remptr
);
1157 * Set length into the packet
1162 * Buffer has been replaced on the
1163 * receive ring. Pass the buffer to
1166 sb
->protocol
= eth_type_trans(sb
,d
->sbdma_eth
->sbm_dev
);
1167 /* Check hw IPv4/TCP checksum if supported */
1168 if (sc
->rx_hw_checksum
== ENABLE
) {
1169 if (!((dsc
->dscr_a
) & M_DMA_ETHRX_BADIP4CS
) &&
1170 !((dsc
->dscr_a
) & M_DMA_ETHRX_BADTCPCS
)) {
1171 sb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1172 /* don't need to set sb->csum */
1174 skb_checksum_none_assert(sb
);
1178 prefetch((const void *)(((char *)sb
->data
)+32));
1180 dropped
= netif_receive_skb(sb
);
1182 dropped
= netif_rx(sb
);
1184 if (dropped
== NET_RX_DROP
) {
1185 dev
->stats
.rx_dropped
++;
1186 d
->sbdma_remptr
= SBDMA_NEXTBUF(d
,sbdma_remptr
);
1190 dev
->stats
.rx_bytes
+= len
;
1191 dev
->stats
.rx_packets
++;
1196 * Packet was mangled somehow. Just drop it and
1197 * put it back on the receive ring.
1199 dev
->stats
.rx_errors
++;
1200 sbdma_add_rcvbuffer(sc
, d
, sb
);
1205 * .. and advance to the next buffer.
1208 d
->sbdma_remptr
= SBDMA_NEXTBUF(d
,sbdma_remptr
);
1213 goto again
; /* collect fifo drop statistics again */
1219 /**********************************************************************
1220 * SBDMA_TX_PROCESS(sc,d)
1222 * Process "completed" transmit buffers on the specified DMA channel.
1223 * This is normally called within the interrupt service routine.
1224 * Note that this isn't really ideal for priority channels, since
1225 * it processes all of the packets on a given channel before
1229 * sc - softc structure
1230 * d - DMA channel context
1231 * poll - 1: using polling (for NAPI)
1235 ********************************************************************* */
1237 static void sbdma_tx_process(struct sbmac_softc
*sc
, struct sbmacdma
*d
,
1240 struct net_device
*dev
= sc
->sbm_dev
;
1243 struct sbdmadscr
*dsc
;
1245 unsigned long flags
;
1246 int packets_handled
= 0;
1248 spin_lock_irqsave(&(sc
->sbm_lock
), flags
);
1250 if (d
->sbdma_remptr
== d
->sbdma_addptr
)
1253 hwidx
= ((__raw_readq(d
->sbdma_curdscr
) & M_DMA_CURDSCR_ADDR
) -
1254 d
->sbdma_dscrtable_phys
) / sizeof(*d
->sbdma_dscrtable
);
1258 * figure out where we are (as an index) and where
1259 * the hardware is (also as an index)
1261 * This could be done faster if (for example) the
1262 * descriptor table was page-aligned and contiguous in
1263 * both virtual and physical memory -- you could then
1264 * just compare the low-order bits of the virtual address
1265 * (sbdma_remptr) and the physical address (sbdma_curdscr CSR)
1268 curidx
= d
->sbdma_remptr
- d
->sbdma_dscrtable
;
1271 * If they're the same, that means we've processed all
1272 * of the descriptors up to (but not including) the one that
1273 * the hardware is working on right now.
1276 if (curidx
== hwidx
)
1280 * Otherwise, get the packet's sk_buff ptr back
1283 dsc
= &(d
->sbdma_dscrtable
[curidx
]);
1284 sb
= d
->sbdma_ctxtable
[curidx
];
1285 d
->sbdma_ctxtable
[curidx
] = NULL
;
1291 dev
->stats
.tx_bytes
+= sb
->len
;
1292 dev
->stats
.tx_packets
++;
1295 * for transmits, we just free buffers.
1298 dev_kfree_skb_irq(sb
);
1301 * .. and advance to the next buffer.
1304 d
->sbdma_remptr
= SBDMA_NEXTBUF(d
,sbdma_remptr
);
1311 * Decide if we should wake up the protocol or not.
1312 * Other drivers seem to do this when we reach a low
1313 * watermark on the transmit queue.
1316 if (packets_handled
)
1317 netif_wake_queue(d
->sbdma_eth
->sbm_dev
);
1320 spin_unlock_irqrestore(&(sc
->sbm_lock
), flags
);
1326 /**********************************************************************
1329 * Initialize an Ethernet context structure - this is called
1330 * once per MAC on the 1250. Memory is allocated here, so don't
1331 * call it again from inside the ioctl routines that bring the
1335 * s - sbmac context structure
1339 ********************************************************************* */
1341 static int sbmac_initctx(struct sbmac_softc
*s
)
1345 * figure out the addresses of some ports
1348 s
->sbm_macenable
= s
->sbm_base
+ R_MAC_ENABLE
;
1349 s
->sbm_maccfg
= s
->sbm_base
+ R_MAC_CFG
;
1350 s
->sbm_fifocfg
= s
->sbm_base
+ R_MAC_THRSH_CFG
;
1351 s
->sbm_framecfg
= s
->sbm_base
+ R_MAC_FRAMECFG
;
1352 s
->sbm_rxfilter
= s
->sbm_base
+ R_MAC_ADFILTER_CFG
;
1353 s
->sbm_isr
= s
->sbm_base
+ R_MAC_STATUS
;
1354 s
->sbm_imr
= s
->sbm_base
+ R_MAC_INT_MASK
;
1355 s
->sbm_mdio
= s
->sbm_base
+ R_MAC_MDIO
;
1358 * Initialize the DMA channels. Right now, only one per MAC is used
1359 * Note: Only do this _once_, as it allocates memory from the kernel!
1362 sbdma_initctx(&(s
->sbm_txdma
),s
,0,DMA_TX
,SBMAC_MAX_TXDESCR
);
1363 sbdma_initctx(&(s
->sbm_rxdma
),s
,0,DMA_RX
,SBMAC_MAX_RXDESCR
);
1366 * initial state is OFF
1369 s
->sbm_state
= sbmac_state_off
;
1375 static void sbdma_uninitctx(struct sbmacdma
*d
)
1377 if (d
->sbdma_dscrtable_unaligned
) {
1378 kfree(d
->sbdma_dscrtable_unaligned
);
1379 d
->sbdma_dscrtable_unaligned
= d
->sbdma_dscrtable
= NULL
;
1382 if (d
->sbdma_ctxtable
) {
1383 kfree(d
->sbdma_ctxtable
);
1384 d
->sbdma_ctxtable
= NULL
;
1389 static void sbmac_uninitctx(struct sbmac_softc
*sc
)
1391 sbdma_uninitctx(&(sc
->sbm_txdma
));
1392 sbdma_uninitctx(&(sc
->sbm_rxdma
));
1396 /**********************************************************************
1397 * SBMAC_CHANNEL_START(s)
1399 * Start packet processing on this MAC.
1402 * s - sbmac structure
1406 ********************************************************************* */
1408 static void sbmac_channel_start(struct sbmac_softc
*s
)
1412 uint64_t cfg
,fifo
,framecfg
;
1416 * Don't do this if running
1419 if (s
->sbm_state
== sbmac_state_on
)
1423 * Bring the controller out of reset, but leave it off.
1426 __raw_writeq(0, s
->sbm_macenable
);
1429 * Ignore all received packets
1432 __raw_writeq(0, s
->sbm_rxfilter
);
1435 * Calculate values for various control registers.
1438 cfg
= M_MAC_RETRY_EN
|
1439 M_MAC_TX_HOLD_SOP_EN
|
1440 V_MAC_TX_PAUSE_CNT_16K
|
1447 * Be sure that RD_THRSH+WR_THRSH <= 32 for pass1 pars
1448 * and make sure that RD_THRSH + WR_THRSH <=128 for pass2 and above
1449 * Use a larger RD_THRSH for gigabit
1451 if (soc_type
== K_SYS_SOC_TYPE_BCM1250
&& periph_rev
< 2)
1456 fifo
= V_MAC_TX_WR_THRSH(4) | /* Must be '4' or '8' */
1457 ((s
->sbm_speed
== sbmac_speed_1000
)
1458 ? V_MAC_TX_RD_THRSH(th_value
) : V_MAC_TX_RD_THRSH(4)) |
1459 V_MAC_TX_RL_THRSH(4) |
1460 V_MAC_RX_PL_THRSH(4) |
1461 V_MAC_RX_RD_THRSH(4) | /* Must be '4' */
1462 V_MAC_RX_RL_THRSH(8) |
1465 framecfg
= V_MAC_MIN_FRAMESZ_DEFAULT
|
1466 V_MAC_MAX_FRAMESZ_DEFAULT
|
1467 V_MAC_BACKOFF_SEL(1);
1470 * Clear out the hash address map
1473 port
= s
->sbm_base
+ R_MAC_HASH_BASE
;
1474 for (idx
= 0; idx
< MAC_HASH_COUNT
; idx
++) {
1475 __raw_writeq(0, port
);
1476 port
+= sizeof(uint64_t);
1480 * Clear out the exact-match table
1483 port
= s
->sbm_base
+ R_MAC_ADDR_BASE
;
1484 for (idx
= 0; idx
< MAC_ADDR_COUNT
; idx
++) {
1485 __raw_writeq(0, port
);
1486 port
+= sizeof(uint64_t);
1490 * Clear out the DMA Channel mapping table registers
1493 port
= s
->sbm_base
+ R_MAC_CHUP0_BASE
;
1494 for (idx
= 0; idx
< MAC_CHMAP_COUNT
; idx
++) {
1495 __raw_writeq(0, port
);
1496 port
+= sizeof(uint64_t);
1500 port
= s
->sbm_base
+ R_MAC_CHLO0_BASE
;
1501 for (idx
= 0; idx
< MAC_CHMAP_COUNT
; idx
++) {
1502 __raw_writeq(0, port
);
1503 port
+= sizeof(uint64_t);
1507 * Program the hardware address. It goes into the hardware-address
1508 * register as well as the first filter register.
1511 reg
= sbmac_addr2reg(s
->sbm_hwaddr
);
1513 port
= s
->sbm_base
+ R_MAC_ADDR_BASE
;
1514 __raw_writeq(reg
, port
);
1515 port
= s
->sbm_base
+ R_MAC_ETHERNET_ADDR
;
1517 #ifdef CONFIG_SB1_PASS_1_WORKAROUNDS
1519 * Pass1 SOCs do not receive packets addressed to the
1520 * destination address in the R_MAC_ETHERNET_ADDR register.
1521 * Set the value to zero.
1523 __raw_writeq(0, port
);
1525 __raw_writeq(reg
, port
);
1529 * Set the receive filter for no packets, and write values
1530 * to the various config registers
1533 __raw_writeq(0, s
->sbm_rxfilter
);
1534 __raw_writeq(0, s
->sbm_imr
);
1535 __raw_writeq(framecfg
, s
->sbm_framecfg
);
1536 __raw_writeq(fifo
, s
->sbm_fifocfg
);
1537 __raw_writeq(cfg
, s
->sbm_maccfg
);
1540 * Initialize DMA channels (rings should be ok now)
1543 sbdma_channel_start(&(s
->sbm_rxdma
), DMA_RX
);
1544 sbdma_channel_start(&(s
->sbm_txdma
), DMA_TX
);
1547 * Configure the speed, duplex, and flow control
1550 sbmac_set_speed(s
,s
->sbm_speed
);
1551 sbmac_set_duplex(s
,s
->sbm_duplex
,s
->sbm_fc
);
1554 * Fill the receive ring
1557 sbdma_fillring(s
, &(s
->sbm_rxdma
));
1560 * Turn on the rest of the bits in the enable register
1563 #if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
1564 __raw_writeq(M_MAC_RXDMA_EN0
|
1565 M_MAC_TXDMA_EN0
, s
->sbm_macenable
);
1566 #elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
1567 __raw_writeq(M_MAC_RXDMA_EN0
|
1570 M_MAC_TX_ENABLE
, s
->sbm_macenable
);
1572 #error invalid SiByte MAC configuration
1575 #ifdef CONFIG_SBMAC_COALESCE
1576 __raw_writeq(((M_MAC_INT_EOP_COUNT
| M_MAC_INT_EOP_TIMER
) << S_MAC_TX_CH0
) |
1577 ((M_MAC_INT_EOP_COUNT
| M_MAC_INT_EOP_TIMER
) << S_MAC_RX_CH0
), s
->sbm_imr
);
1579 __raw_writeq((M_MAC_INT_CHANNEL
<< S_MAC_TX_CH0
) |
1580 (M_MAC_INT_CHANNEL
<< S_MAC_RX_CH0
), s
->sbm_imr
);
1584 * Enable receiving unicasts and broadcasts
1587 __raw_writeq(M_MAC_UCAST_EN
| M_MAC_BCAST_EN
, s
->sbm_rxfilter
);
1590 * we're running now.
1593 s
->sbm_state
= sbmac_state_on
;
1596 * Program multicast addresses
1602 * If channel was in promiscuous mode before, turn that on
1605 if (s
->sbm_devflags
& IFF_PROMISC
) {
1606 sbmac_promiscuous_mode(s
,1);
1612 /**********************************************************************
1613 * SBMAC_CHANNEL_STOP(s)
1615 * Stop packet processing on this MAC.
1618 * s - sbmac structure
1622 ********************************************************************* */
1624 static void sbmac_channel_stop(struct sbmac_softc
*s
)
1626 /* don't do this if already stopped */
1628 if (s
->sbm_state
== sbmac_state_off
)
1631 /* don't accept any packets, disable all interrupts */
1633 __raw_writeq(0, s
->sbm_rxfilter
);
1634 __raw_writeq(0, s
->sbm_imr
);
1636 /* Turn off ticker */
1640 /* turn off receiver and transmitter */
1642 __raw_writeq(0, s
->sbm_macenable
);
1644 /* We're stopped now. */
1646 s
->sbm_state
= sbmac_state_off
;
1649 * Stop DMA channels (rings should be ok now)
1652 sbdma_channel_stop(&(s
->sbm_rxdma
));
1653 sbdma_channel_stop(&(s
->sbm_txdma
));
1655 /* Empty the receive and transmit rings */
1657 sbdma_emptyring(&(s
->sbm_rxdma
));
1658 sbdma_emptyring(&(s
->sbm_txdma
));
1662 /**********************************************************************
1663 * SBMAC_SET_CHANNEL_STATE(state)
1665 * Set the channel's state ON or OFF
1672 ********************************************************************* */
1673 static enum sbmac_state
sbmac_set_channel_state(struct sbmac_softc
*sc
,
1674 enum sbmac_state state
)
1676 enum sbmac_state oldstate
= sc
->sbm_state
;
1679 * If same as previous state, return
1682 if (state
== oldstate
) {
1687 * If new state is ON, turn channel on
1690 if (state
== sbmac_state_on
) {
1691 sbmac_channel_start(sc
);
1694 sbmac_channel_stop(sc
);
1698 * Return previous state
1705 /**********************************************************************
1706 * SBMAC_PROMISCUOUS_MODE(sc,onoff)
1708 * Turn on or off promiscuous mode
1712 * onoff - 1 to turn on, 0 to turn off
1716 ********************************************************************* */
1718 static void sbmac_promiscuous_mode(struct sbmac_softc
*sc
,int onoff
)
1722 if (sc
->sbm_state
!= sbmac_state_on
)
1726 reg
= __raw_readq(sc
->sbm_rxfilter
);
1727 reg
|= M_MAC_ALLPKT_EN
;
1728 __raw_writeq(reg
, sc
->sbm_rxfilter
);
1731 reg
= __raw_readq(sc
->sbm_rxfilter
);
1732 reg
&= ~M_MAC_ALLPKT_EN
;
1733 __raw_writeq(reg
, sc
->sbm_rxfilter
);
1737 /**********************************************************************
1738 * SBMAC_SETIPHDR_OFFSET(sc,onoff)
1740 * Set the iphdr offset as 15 assuming ethernet encapsulation
1747 ********************************************************************* */
1749 static void sbmac_set_iphdr_offset(struct sbmac_softc
*sc
)
1753 /* Hard code the off set to 15 for now */
1754 reg
= __raw_readq(sc
->sbm_rxfilter
);
1755 reg
&= ~M_MAC_IPHDR_OFFSET
| V_MAC_IPHDR_OFFSET(15);
1756 __raw_writeq(reg
, sc
->sbm_rxfilter
);
1758 /* BCM1250 pass1 didn't have hardware checksum. Everything
1760 if (soc_type
== K_SYS_SOC_TYPE_BCM1250
&& periph_rev
< 2) {
1761 sc
->rx_hw_checksum
= DISABLE
;
1763 sc
->rx_hw_checksum
= ENABLE
;
1768 /**********************************************************************
1769 * SBMAC_ADDR2REG(ptr)
1771 * Convert six bytes into the 64-bit register value that
1772 * we typically write into the SBMAC's address/mcast registers
1775 * ptr - pointer to 6 bytes
1779 ********************************************************************* */
1781 static uint64_t sbmac_addr2reg(unsigned char *ptr
)
1787 reg
|= (uint64_t) *(--ptr
);
1789 reg
|= (uint64_t) *(--ptr
);
1791 reg
|= (uint64_t) *(--ptr
);
1793 reg
|= (uint64_t) *(--ptr
);
1795 reg
|= (uint64_t) *(--ptr
);
1797 reg
|= (uint64_t) *(--ptr
);
1803 /**********************************************************************
1804 * SBMAC_SET_SPEED(s,speed)
1806 * Configure LAN speed for the specified MAC.
1807 * Warning: must be called when MAC is off!
1810 * s - sbmac structure
1811 * speed - speed to set MAC to (see enum sbmac_speed)
1815 * 0 indicates invalid parameters
1816 ********************************************************************* */
1818 static int sbmac_set_speed(struct sbmac_softc
*s
, enum sbmac_speed speed
)
1824 * Save new current values
1827 s
->sbm_speed
= speed
;
1829 if (s
->sbm_state
== sbmac_state_on
)
1830 return 0; /* save for next restart */
1833 * Read current register values
1836 cfg
= __raw_readq(s
->sbm_maccfg
);
1837 framecfg
= __raw_readq(s
->sbm_framecfg
);
1840 * Mask out the stuff we want to change
1843 cfg
&= ~(M_MAC_BURST_EN
| M_MAC_SPEED_SEL
);
1844 framecfg
&= ~(M_MAC_IFG_RX
| M_MAC_IFG_TX
| M_MAC_IFG_THRSH
|
1848 * Now add in the new bits
1852 case sbmac_speed_10
:
1853 framecfg
|= V_MAC_IFG_RX_10
|
1855 K_MAC_IFG_THRSH_10
|
1857 cfg
|= V_MAC_SPEED_SEL_10MBPS
;
1860 case sbmac_speed_100
:
1861 framecfg
|= V_MAC_IFG_RX_100
|
1863 V_MAC_IFG_THRSH_100
|
1864 V_MAC_SLOT_SIZE_100
;
1865 cfg
|= V_MAC_SPEED_SEL_100MBPS
;
1868 case sbmac_speed_1000
:
1869 framecfg
|= V_MAC_IFG_RX_1000
|
1871 V_MAC_IFG_THRSH_1000
|
1872 V_MAC_SLOT_SIZE_1000
;
1873 cfg
|= V_MAC_SPEED_SEL_1000MBPS
| M_MAC_BURST_EN
;
1881 * Send the bits back to the hardware
1884 __raw_writeq(framecfg
, s
->sbm_framecfg
);
1885 __raw_writeq(cfg
, s
->sbm_maccfg
);
1890 /**********************************************************************
1891 * SBMAC_SET_DUPLEX(s,duplex,fc)
1893 * Set Ethernet duplex and flow control options for this MAC
1894 * Warning: must be called when MAC is off!
1897 * s - sbmac structure
1898 * duplex - duplex setting (see enum sbmac_duplex)
1899 * fc - flow control setting (see enum sbmac_fc)
1903 * 0 if an invalid parameter combination was specified
1904 ********************************************************************* */
1906 static int sbmac_set_duplex(struct sbmac_softc
*s
, enum sbmac_duplex duplex
,
1912 * Save new current values
1915 s
->sbm_duplex
= duplex
;
1918 if (s
->sbm_state
== sbmac_state_on
)
1919 return 0; /* save for next restart */
1922 * Read current register values
1925 cfg
= __raw_readq(s
->sbm_maccfg
);
1928 * Mask off the stuff we're about to change
1931 cfg
&= ~(M_MAC_FC_SEL
| M_MAC_FC_CMD
| M_MAC_HDX_EN
);
1935 case sbmac_duplex_half
:
1937 case sbmac_fc_disabled
:
1938 cfg
|= M_MAC_HDX_EN
| V_MAC_FC_CMD_DISABLED
;
1941 case sbmac_fc_collision
:
1942 cfg
|= M_MAC_HDX_EN
| V_MAC_FC_CMD_ENABLED
;
1945 case sbmac_fc_carrier
:
1946 cfg
|= M_MAC_HDX_EN
| V_MAC_FC_CMD_ENAB_FALSECARR
;
1949 case sbmac_fc_frame
: /* not valid in half duplex */
1950 default: /* invalid selection */
1955 case sbmac_duplex_full
:
1957 case sbmac_fc_disabled
:
1958 cfg
|= V_MAC_FC_CMD_DISABLED
;
1961 case sbmac_fc_frame
:
1962 cfg
|= V_MAC_FC_CMD_ENABLED
;
1965 case sbmac_fc_collision
: /* not valid in full duplex */
1966 case sbmac_fc_carrier
: /* not valid in full duplex */
1976 * Send the bits back to the hardware
1979 __raw_writeq(cfg
, s
->sbm_maccfg
);
1987 /**********************************************************************
1990 * Interrupt handler for MAC interrupts
1997 ********************************************************************* */
1998 static irqreturn_t
sbmac_intr(int irq
,void *dev_instance
)
2000 struct net_device
*dev
= (struct net_device
*) dev_instance
;
2001 struct sbmac_softc
*sc
= netdev_priv(dev
);
2006 * Read the ISR (this clears the bits in the real
2007 * register, except for counter addr)
2010 isr
= __raw_readq(sc
->sbm_isr
) & ~M_MAC_COUNTER_ADDR
;
2013 return IRQ_RETVAL(0);
2017 * Transmits on channel 0
2020 if (isr
& (M_MAC_INT_CHANNEL
<< S_MAC_TX_CH0
))
2021 sbdma_tx_process(sc
,&(sc
->sbm_txdma
), 0);
2023 if (isr
& (M_MAC_INT_CHANNEL
<< S_MAC_RX_CH0
)) {
2024 if (napi_schedule_prep(&sc
->napi
)) {
2025 __raw_writeq(0, sc
->sbm_imr
);
2026 __napi_schedule(&sc
->napi
);
2027 /* Depend on the exit from poll to reenable intr */
2030 /* may leave some packets behind */
2031 sbdma_rx_process(sc
,&(sc
->sbm_rxdma
),
2032 SBMAC_MAX_RXDESCR
* 2, 0);
2035 return IRQ_RETVAL(handled
);
2038 /**********************************************************************
2039 * SBMAC_START_TX(skb,dev)
2041 * Start output on the specified interface. Basically, we
2042 * queue as many buffers as we can until the ring fills up, or
2043 * we run off the end of the queue, whichever comes first.
2050 ********************************************************************* */
2051 static int sbmac_start_tx(struct sk_buff
*skb
, struct net_device
*dev
)
2053 struct sbmac_softc
*sc
= netdev_priv(dev
);
2054 unsigned long flags
;
2057 spin_lock_irqsave(&sc
->sbm_lock
, flags
);
2060 * Put the buffer on the transmit ring. If we
2061 * don't have room, stop the queue.
2064 if (sbdma_add_txbuffer(&(sc
->sbm_txdma
),skb
)) {
2065 /* XXX save skb that we could not send */
2066 netif_stop_queue(dev
);
2067 spin_unlock_irqrestore(&sc
->sbm_lock
, flags
);
2069 return NETDEV_TX_BUSY
;
2072 spin_unlock_irqrestore(&sc
->sbm_lock
, flags
);
2074 return NETDEV_TX_OK
;
2077 /**********************************************************************
2078 * SBMAC_SETMULTI(sc)
2080 * Reprogram the multicast table into the hardware, given
2081 * the list of multicasts associated with the interface
2089 ********************************************************************* */
2091 static void sbmac_setmulti(struct sbmac_softc
*sc
)
2096 struct netdev_hw_addr
*ha
;
2097 struct net_device
*dev
= sc
->sbm_dev
;
2100 * Clear out entire multicast table. We do this by nuking
2101 * the entire hash table and all the direct matches except
2102 * the first one, which is used for our station address
2105 for (idx
= 1; idx
< MAC_ADDR_COUNT
; idx
++) {
2106 port
= sc
->sbm_base
+ R_MAC_ADDR_BASE
+(idx
*sizeof(uint64_t));
2107 __raw_writeq(0, port
);
2110 for (idx
= 0; idx
< MAC_HASH_COUNT
; idx
++) {
2111 port
= sc
->sbm_base
+ R_MAC_HASH_BASE
+(idx
*sizeof(uint64_t));
2112 __raw_writeq(0, port
);
2116 * Clear the filter to say we don't want any multicasts.
2119 reg
= __raw_readq(sc
->sbm_rxfilter
);
2120 reg
&= ~(M_MAC_MCAST_INV
| M_MAC_MCAST_EN
);
2121 __raw_writeq(reg
, sc
->sbm_rxfilter
);
2123 if (dev
->flags
& IFF_ALLMULTI
) {
2125 * Enable ALL multicasts. Do this by inverting the
2126 * multicast enable bit.
2128 reg
= __raw_readq(sc
->sbm_rxfilter
);
2129 reg
|= (M_MAC_MCAST_INV
| M_MAC_MCAST_EN
);
2130 __raw_writeq(reg
, sc
->sbm_rxfilter
);
2136 * Progam new multicast entries. For now, only use the
2137 * perfect filter. In the future we'll need to use the
2138 * hash filter if the perfect filter overflows
2141 /* XXX only using perfect filter for now, need to use hash
2142 * XXX if the table overflows */
2144 idx
= 1; /* skip station address */
2145 netdev_for_each_mc_addr(ha
, dev
) {
2146 if (idx
== MAC_ADDR_COUNT
)
2148 reg
= sbmac_addr2reg(ha
->addr
);
2149 port
= sc
->sbm_base
+ R_MAC_ADDR_BASE
+(idx
* sizeof(uint64_t));
2150 __raw_writeq(reg
, port
);
2155 * Enable the "accept multicast bits" if we programmed at least one
2160 reg
= __raw_readq(sc
->sbm_rxfilter
);
2161 reg
|= M_MAC_MCAST_EN
;
2162 __raw_writeq(reg
, sc
->sbm_rxfilter
);
2166 static int sb1250_change_mtu(struct net_device
*_dev
, int new_mtu
)
2168 if (new_mtu
> ENET_PACKET_SIZE
)
2170 _dev
->mtu
= new_mtu
;
2171 pr_info("changing the mtu to %d\n", new_mtu
);
2175 static const struct net_device_ops sbmac_netdev_ops
= {
2176 .ndo_open
= sbmac_open
,
2177 .ndo_stop
= sbmac_close
,
2178 .ndo_start_xmit
= sbmac_start_tx
,
2179 .ndo_set_multicast_list
= sbmac_set_rx_mode
,
2180 .ndo_tx_timeout
= sbmac_tx_timeout
,
2181 .ndo_do_ioctl
= sbmac_mii_ioctl
,
2182 .ndo_change_mtu
= sb1250_change_mtu
,
2183 .ndo_validate_addr
= eth_validate_addr
,
2184 .ndo_set_mac_address
= eth_mac_addr
,
2185 #ifdef CONFIG_NET_POLL_CONTROLLER
2186 .ndo_poll_controller
= sbmac_netpoll
,
2190 /**********************************************************************
2193 * Attach routine - init hardware and hook ourselves into linux
2196 * dev - net_device structure
2200 ********************************************************************* */
2202 static int sbmac_init(struct platform_device
*pldev
, long long base
)
2204 struct net_device
*dev
= dev_get_drvdata(&pldev
->dev
);
2205 int idx
= pldev
->id
;
2206 struct sbmac_softc
*sc
= netdev_priv(dev
);
2207 unsigned char *eaddr
;
2215 eaddr
= sc
->sbm_hwaddr
;
2218 * Read the ethernet address. The firmware left this programmed
2219 * for us in the ethernet address register for each mac.
2222 ea_reg
= __raw_readq(sc
->sbm_base
+ R_MAC_ETHERNET_ADDR
);
2223 __raw_writeq(0, sc
->sbm_base
+ R_MAC_ETHERNET_ADDR
);
2224 for (i
= 0; i
< 6; i
++) {
2225 eaddr
[i
] = (uint8_t) (ea_reg
& 0xFF);
2229 for (i
= 0; i
< 6; i
++) {
2230 dev
->dev_addr
[i
] = eaddr
[i
];
2234 * Initialize context (get pointers to registers and stuff), then
2235 * allocate the memory for the descriptor tables.
2241 * Set up Linux device callins
2244 spin_lock_init(&(sc
->sbm_lock
));
2246 dev
->netdev_ops
= &sbmac_netdev_ops
;
2247 dev
->watchdog_timeo
= TX_TIMEOUT
;
2249 netif_napi_add(dev
, &sc
->napi
, sbmac_poll
, 16);
2251 dev
->irq
= UNIT_INT(idx
);
2253 /* This is needed for PASS2 for Rx H/W checksum feature */
2254 sbmac_set_iphdr_offset(sc
);
2256 sc
->mii_bus
= mdiobus_alloc();
2257 if (sc
->mii_bus
== NULL
) {
2262 sc
->mii_bus
->name
= sbmac_mdio_string
;
2263 snprintf(sc
->mii_bus
->id
, MII_BUS_ID_SIZE
, "%x", idx
);
2264 sc
->mii_bus
->priv
= sc
;
2265 sc
->mii_bus
->read
= sbmac_mii_read
;
2266 sc
->mii_bus
->write
= sbmac_mii_write
;
2267 sc
->mii_bus
->irq
= sc
->phy_irq
;
2268 for (i
= 0; i
< PHY_MAX_ADDR
; ++i
)
2269 sc
->mii_bus
->irq
[i
] = SBMAC_PHY_INT
;
2271 sc
->mii_bus
->parent
= &pldev
->dev
;
2275 err
= mdiobus_register(sc
->mii_bus
);
2277 printk(KERN_ERR
"%s: unable to register MDIO bus\n",
2281 dev_set_drvdata(&pldev
->dev
, sc
->mii_bus
);
2283 err
= register_netdev(dev
);
2285 printk(KERN_ERR
"%s.%d: unable to register netdev\n",
2290 pr_info("%s.%d: registered as %s\n", sbmac_string
, idx
, dev
->name
);
2292 if (sc
->rx_hw_checksum
== ENABLE
)
2293 pr_info("%s: enabling TCP rcv checksum\n", dev
->name
);
2296 * Display Ethernet address (this is called during the config
2297 * process so we need to finish off the config message that
2298 * was being displayed)
2300 pr_info("%s: SiByte Ethernet at 0x%08Lx, address: %pM\n",
2301 dev
->name
, base
, eaddr
);
2305 mdiobus_unregister(sc
->mii_bus
);
2306 dev_set_drvdata(&pldev
->dev
, NULL
);
2308 mdiobus_free(sc
->mii_bus
);
2310 sbmac_uninitctx(sc
);
2315 static int sbmac_open(struct net_device
*dev
)
2317 struct sbmac_softc
*sc
= netdev_priv(dev
);
2321 pr_debug("%s: sbmac_open() irq %d.\n", dev
->name
, dev
->irq
);
2324 * map/route interrupt (clear status first, in case something
2325 * weird is pending; we haven't initialized the mac registers
2329 __raw_readq(sc
->sbm_isr
);
2330 err
= request_irq(dev
->irq
, sbmac_intr
, IRQF_SHARED
, dev
->name
, dev
);
2332 printk(KERN_ERR
"%s: unable to get IRQ %d\n", dev
->name
,
2337 sc
->sbm_speed
= sbmac_speed_none
;
2338 sc
->sbm_duplex
= sbmac_duplex_none
;
2339 sc
->sbm_fc
= sbmac_fc_none
;
2346 err
= sbmac_mii_probe(dev
);
2348 goto out_unregister
;
2351 * Turn on the channel
2354 sbmac_set_channel_state(sc
,sbmac_state_on
);
2356 netif_start_queue(dev
);
2358 sbmac_set_rx_mode(dev
);
2360 phy_start(sc
->phy_dev
);
2362 napi_enable(&sc
->napi
);
2367 free_irq(dev
->irq
, dev
);
2372 static int sbmac_mii_probe(struct net_device
*dev
)
2374 struct sbmac_softc
*sc
= netdev_priv(dev
);
2375 struct phy_device
*phy_dev
;
2378 for (i
= 0; i
< PHY_MAX_ADDR
; i
++) {
2379 phy_dev
= sc
->mii_bus
->phy_map
[i
];
2384 printk(KERN_ERR
"%s: no PHY found\n", dev
->name
);
2388 phy_dev
= phy_connect(dev
, dev_name(&phy_dev
->dev
), &sbmac_mii_poll
, 0,
2389 PHY_INTERFACE_MODE_GMII
);
2390 if (IS_ERR(phy_dev
)) {
2391 printk(KERN_ERR
"%s: could not attach to PHY\n", dev
->name
);
2392 return PTR_ERR(phy_dev
);
2395 /* Remove any features not supported by the controller */
2396 phy_dev
->supported
&= SUPPORTED_10baseT_Half
|
2397 SUPPORTED_10baseT_Full
|
2398 SUPPORTED_100baseT_Half
|
2399 SUPPORTED_100baseT_Full
|
2400 SUPPORTED_1000baseT_Half
|
2401 SUPPORTED_1000baseT_Full
|
2405 SUPPORTED_Asym_Pause
;
2406 phy_dev
->advertising
= phy_dev
->supported
;
2408 pr_info("%s: attached PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
2409 dev
->name
, phy_dev
->drv
->name
,
2410 dev_name(&phy_dev
->dev
), phy_dev
->irq
);
2412 sc
->phy_dev
= phy_dev
;
2418 static void sbmac_mii_poll(struct net_device
*dev
)
2420 struct sbmac_softc
*sc
= netdev_priv(dev
);
2421 struct phy_device
*phy_dev
= sc
->phy_dev
;
2422 unsigned long flags
;
2424 int link_chg
, speed_chg
, duplex_chg
, pause_chg
, fc_chg
;
2426 link_chg
= (sc
->sbm_link
!= phy_dev
->link
);
2427 speed_chg
= (sc
->sbm_speed
!= phy_dev
->speed
);
2428 duplex_chg
= (sc
->sbm_duplex
!= phy_dev
->duplex
);
2429 pause_chg
= (sc
->sbm_pause
!= phy_dev
->pause
);
2431 if (!link_chg
&& !speed_chg
&& !duplex_chg
&& !pause_chg
)
2432 return; /* Hmmm... */
2434 if (!phy_dev
->link
) {
2436 sc
->sbm_link
= phy_dev
->link
;
2437 sc
->sbm_speed
= sbmac_speed_none
;
2438 sc
->sbm_duplex
= sbmac_duplex_none
;
2439 sc
->sbm_fc
= sbmac_fc_disabled
;
2441 pr_info("%s: link unavailable\n", dev
->name
);
2446 if (phy_dev
->duplex
== DUPLEX_FULL
) {
2448 fc
= sbmac_fc_frame
;
2450 fc
= sbmac_fc_disabled
;
2452 fc
= sbmac_fc_collision
;
2453 fc_chg
= (sc
->sbm_fc
!= fc
);
2455 pr_info("%s: link available: %dbase-%cD\n", dev
->name
, phy_dev
->speed
,
2456 phy_dev
->duplex
== DUPLEX_FULL
? 'F' : 'H');
2458 spin_lock_irqsave(&sc
->sbm_lock
, flags
);
2460 sc
->sbm_speed
= phy_dev
->speed
;
2461 sc
->sbm_duplex
= phy_dev
->duplex
;
2463 sc
->sbm_pause
= phy_dev
->pause
;
2464 sc
->sbm_link
= phy_dev
->link
;
2466 if ((speed_chg
|| duplex_chg
|| fc_chg
) &&
2467 sc
->sbm_state
!= sbmac_state_off
) {
2469 * something changed, restart the channel
2472 pr_debug("%s: restarting channel "
2473 "because PHY state changed\n", dev
->name
);
2474 sbmac_channel_stop(sc
);
2475 sbmac_channel_start(sc
);
2478 spin_unlock_irqrestore(&sc
->sbm_lock
, flags
);
2482 static void sbmac_tx_timeout (struct net_device
*dev
)
2484 struct sbmac_softc
*sc
= netdev_priv(dev
);
2485 unsigned long flags
;
2487 spin_lock_irqsave(&sc
->sbm_lock
, flags
);
2490 dev
->trans_start
= jiffies
; /* prevent tx timeout */
2491 dev
->stats
.tx_errors
++;
2493 spin_unlock_irqrestore(&sc
->sbm_lock
, flags
);
2495 printk (KERN_WARNING
"%s: Transmit timed out\n",dev
->name
);
2501 static void sbmac_set_rx_mode(struct net_device
*dev
)
2503 unsigned long flags
;
2504 struct sbmac_softc
*sc
= netdev_priv(dev
);
2506 spin_lock_irqsave(&sc
->sbm_lock
, flags
);
2507 if ((dev
->flags
^ sc
->sbm_devflags
) & IFF_PROMISC
) {
2509 * Promiscuous changed.
2512 if (dev
->flags
& IFF_PROMISC
) {
2513 sbmac_promiscuous_mode(sc
,1);
2516 sbmac_promiscuous_mode(sc
,0);
2519 spin_unlock_irqrestore(&sc
->sbm_lock
, flags
);
2522 * Program the multicasts. Do this every time.
2529 static int sbmac_mii_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
2531 struct sbmac_softc
*sc
= netdev_priv(dev
);
2533 if (!netif_running(dev
) || !sc
->phy_dev
)
2536 return phy_mii_ioctl(sc
->phy_dev
, rq
, cmd
);
2539 static int sbmac_close(struct net_device
*dev
)
2541 struct sbmac_softc
*sc
= netdev_priv(dev
);
2543 napi_disable(&sc
->napi
);
2545 phy_stop(sc
->phy_dev
);
2547 sbmac_set_channel_state(sc
, sbmac_state_off
);
2549 netif_stop_queue(dev
);
2552 pr_debug("%s: Shutting down ethercard\n", dev
->name
);
2554 phy_disconnect(sc
->phy_dev
);
2556 free_irq(dev
->irq
, dev
);
2558 sbdma_emptyring(&(sc
->sbm_txdma
));
2559 sbdma_emptyring(&(sc
->sbm_rxdma
));
2564 static int sbmac_poll(struct napi_struct
*napi
, int budget
)
2566 struct sbmac_softc
*sc
= container_of(napi
, struct sbmac_softc
, napi
);
2569 work_done
= sbdma_rx_process(sc
, &(sc
->sbm_rxdma
), budget
, 1);
2570 sbdma_tx_process(sc
, &(sc
->sbm_txdma
), 1);
2572 if (work_done
< budget
) {
2573 napi_complete(napi
);
2575 #ifdef CONFIG_SBMAC_COALESCE
2576 __raw_writeq(((M_MAC_INT_EOP_COUNT
| M_MAC_INT_EOP_TIMER
) << S_MAC_TX_CH0
) |
2577 ((M_MAC_INT_EOP_COUNT
| M_MAC_INT_EOP_TIMER
) << S_MAC_RX_CH0
),
2580 __raw_writeq((M_MAC_INT_CHANNEL
<< S_MAC_TX_CH0
) |
2581 (M_MAC_INT_CHANNEL
<< S_MAC_RX_CH0
), sc
->sbm_imr
);
2589 static int __devinit
sbmac_probe(struct platform_device
*pldev
)
2591 struct net_device
*dev
;
2592 struct sbmac_softc
*sc
;
2593 void __iomem
*sbm_base
;
2594 struct resource
*res
;
2595 u64 sbmac_orig_hwaddr
;
2598 res
= platform_get_resource(pldev
, IORESOURCE_MEM
, 0);
2600 sbm_base
= ioremap_nocache(res
->start
, res
->end
- res
->start
+ 1);
2602 printk(KERN_ERR
"%s: unable to map device registers\n",
2603 dev_name(&pldev
->dev
));
2609 * The R_MAC_ETHERNET_ADDR register will be set to some nonzero
2610 * value for us by the firmware if we're going to use this MAC.
2611 * If we find a zero, skip this MAC.
2613 sbmac_orig_hwaddr
= __raw_readq(sbm_base
+ R_MAC_ETHERNET_ADDR
);
2614 pr_debug("%s: %sconfiguring MAC at 0x%08Lx\n", dev_name(&pldev
->dev
),
2615 sbmac_orig_hwaddr
? "" : "not ", (long long)res
->start
);
2616 if (sbmac_orig_hwaddr
== 0) {
2622 * Okay, cool. Initialize this MAC.
2624 dev
= alloc_etherdev(sizeof(struct sbmac_softc
));
2626 printk(KERN_ERR
"%s: unable to allocate etherdev\n",
2627 dev_name(&pldev
->dev
));
2632 dev_set_drvdata(&pldev
->dev
, dev
);
2633 SET_NETDEV_DEV(dev
, &pldev
->dev
);
2635 sc
= netdev_priv(dev
);
2636 sc
->sbm_base
= sbm_base
;
2638 err
= sbmac_init(pldev
, res
->start
);
2646 __raw_writeq(sbmac_orig_hwaddr
, sbm_base
+ R_MAC_ETHERNET_ADDR
);
2655 static int __exit
sbmac_remove(struct platform_device
*pldev
)
2657 struct net_device
*dev
= dev_get_drvdata(&pldev
->dev
);
2658 struct sbmac_softc
*sc
= netdev_priv(dev
);
2660 unregister_netdev(dev
);
2661 sbmac_uninitctx(sc
);
2662 mdiobus_unregister(sc
->mii_bus
);
2663 mdiobus_free(sc
->mii_bus
);
2664 iounmap(sc
->sbm_base
);
2670 static struct platform_driver sbmac_driver
= {
2671 .probe
= sbmac_probe
,
2672 .remove
= __exit_p(sbmac_remove
),
2674 .name
= sbmac_string
,
2675 .owner
= THIS_MODULE
,
2679 static int __init
sbmac_init_module(void)
2681 return platform_driver_register(&sbmac_driver
);
2684 static void __exit
sbmac_cleanup_module(void)
2686 platform_driver_unregister(&sbmac_driver
);
2689 module_init(sbmac_init_module
);
2690 module_exit(sbmac_cleanup_module
);