2 * Copyright 2000, 2001 MontaVista Software Inc.
3 * Author: MontaVista Software, Inc.
4 * stevel@mvista.com or source@mvista.com
6 * This program is free software; you can distribute it and/or modify it
7 * under the terms of the GNU General Public License (Version 2) as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
19 * Ethernet driver for the MIPS GT96100 Advanced Communication Controller.
23 * 11.11.2001 Moved to 2.4.14, ppopov@mvista.com. Modified driver to add
24 * proper gt96100A support.
25 * 12.05.2001 Moved eth port 0 to irq 3 (mapped to GT_SERINT0 on EV96100A)
26 * in order for both ports to work. Also cleaned up boot
27 * option support (mac address string parsing), fleshed out
28 * gt96100_cleanup_module(), and other general code cleanups
29 * <stevel@mvista.com>.
31 #include <linux/module.h>
32 #include <linux/kernel.h>
33 #include <linux/string.h>
34 #include <linux/timer.h>
35 #include <linux/errno.h>
37 #include <linux/ioport.h>
38 #include <linux/slab.h>
39 #include <linux/interrupt.h>
40 #include <linux/pci.h>
41 #include <linux/init.h>
42 #include <linux/netdevice.h>
43 #include <linux/etherdevice.h>
44 #include <linux/skbuff.h>
45 #include <linux/delay.h>
46 #include <linux/ctype.h>
49 #include <asm/bitops.h>
53 #define DESC_DATA_BE 1
55 #define GT96100_DEBUG 2
57 #include "gt96100eth.h"
60 static void* dmaalloc(size_t size
, dma_addr_t
*dma_handle
);
61 static void dmafree(size_t size
, void *vaddr
);
62 static void gt96100_delay(int msec
);
63 static int gt96100_add_hash_entry(struct net_device
*dev
,
65 static void read_mib_counters(struct gt96100_private
*gp
);
66 static int read_MII(int phy_addr
, u32 reg
);
67 static int write_MII(int phy_addr
, u32 reg
, u16 data
);
68 static int gt96100_init_module(void);
69 static void gt96100_cleanup_module(void);
70 static void dump_MII(int dbg_lvl
, struct net_device
*dev
);
71 static void dump_tx_desc(int dbg_lvl
, struct net_device
*dev
, int i
);
72 static void dump_rx_desc(int dbg_lvl
, struct net_device
*dev
, int i
);
73 static void dump_skb(int dbg_lvl
, struct net_device
*dev
,
75 static void dump_hw_addr(int dbg_lvl
, struct net_device
*dev
,
76 const char* pfx
, unsigned char* addr_str
);
77 static void update_stats(struct gt96100_private
*gp
);
78 static void abort(struct net_device
*dev
, u32 abort_bits
);
79 static void hard_stop(struct net_device
*dev
);
80 static void enable_ether_irq(struct net_device
*dev
);
81 static void disable_ether_irq(struct net_device
*dev
);
82 static int gt96100_probe1(struct pci_dev
*pci
, int port_num
);
83 static void reset_tx(struct net_device
*dev
);
84 static void reset_rx(struct net_device
*dev
);
85 static int gt96100_check_tx_consistent(struct gt96100_private
*gp
);
86 static int gt96100_init(struct net_device
*dev
);
87 static int gt96100_open(struct net_device
*dev
);
88 static int gt96100_close(struct net_device
*dev
);
89 static int gt96100_tx(struct sk_buff
*skb
, struct net_device
*dev
);
90 static int gt96100_rx(struct net_device
*dev
, u32 status
);
91 static irqreturn_t
gt96100_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
);
92 static void gt96100_tx_timeout(struct net_device
*dev
);
93 static void gt96100_set_rx_mode(struct net_device
*dev
);
94 static struct net_device_stats
* gt96100_get_stats(struct net_device
*dev
);
96 extern char * __init
prom_getcmdline(void);
98 static int max_interrupt_work
= 32;
100 #define nibswap(x) ((((x) >> 4) & 0x0f) | (((x) << 4) & 0xf0))
102 #define RUN_AT(x) (jiffies + (x))
104 // For reading/writing 32-bit words and half-words from/to DMA memory
106 #define cpu_to_dma32 cpu_to_be32
107 #define dma32_to_cpu be32_to_cpu
108 #define cpu_to_dma16 cpu_to_be16
109 #define dma16_to_cpu be16_to_cpu
111 #define cpu_to_dma32 cpu_to_le32
112 #define dma32_to_cpu le32_to_cpu
113 #define cpu_to_dma16 cpu_to_le16
114 #define dma16_to_cpu le16_to_cpu
117 static char mac0
[18] = "00.02.03.04.05.06";
118 static char mac1
[18] = "00.01.02.03.04.05";
119 MODULE_PARM(mac0
, "c18");
120 MODULE_PARM(mac1
, "c18");
121 MODULE_PARM_DESC(mac0
, "MAC address for GT96100 ethernet port 0");
122 MODULE_PARM_DESC(mac1
, "MAC address for GT96100 ethernet port 1");
125 * Info for the GT96100 ethernet controller's ports.
127 static struct gt96100_if_t
{
128 struct net_device
*dev
;
129 unsigned int iobase
; // IO Base address of this port
130 int irq
; // IRQ number of this port
132 } gt96100_iflist
[NUM_INTERFACES
] = {
135 GT96100_ETH0_BASE
, GT96100_ETHER0_IRQ
,
140 GT96100_ETH1_BASE
, GT96100_ETHER1_IRQ
,
145 static inline const char*
146 chip_name(int chip_rev
)
155 return "Unknown GT96100";
160 DMA memory allocation, derived from pci_alloc_consistent.
162 static void * dmaalloc(size_t size
, dma_addr_t
*dma_handle
)
166 ret
= (void *)__get_free_pages(GFP_ATOMIC
| GFP_DMA
, get_order(size
));
169 dma_cache_inv((unsigned long)ret
, size
);
170 if (dma_handle
!= NULL
)
171 *dma_handle
= virt_to_phys(ret
);
173 /* bump virtual address up to non-cached area */
174 ret
= (void*)KSEG1ADDR(ret
);
180 static void dmafree(size_t size
, void *vaddr
)
182 vaddr
= (void*)KSEG0ADDR(vaddr
);
183 free_pages((unsigned long)vaddr
, get_order(size
));
186 static void gt96100_delay(int ms
)
191 current
->state
= TASK_INTERRUPTIBLE
;
192 schedule_timeout(ms
*HZ
/1000);
197 parse_mac_addr(struct net_device
*dev
, char* macstr
)
200 unsigned char result
, value
;
202 for (i
=0; i
<6; i
++) {
204 if (i
!= 5 && *(macstr
+2) != '.') {
205 err(__FILE__
"invalid mac address format: %d %c\n",
210 for (j
=0; j
<2; j
++) {
211 if (isxdigit(*macstr
) &&
212 (value
= isdigit(*macstr
) ? *macstr
-'0' :
213 toupper(*macstr
)-'A'+10) < 16) {
214 result
= result
*16 + value
;
217 err(__FILE__
"invalid mac address "
218 "character: %c\n", *macstr
);
223 macstr
++; // step over '.'
224 dev
->dev_addr
[i
] = result
;
232 read_MII(int phy_addr
, u32 reg
)
235 u32 smir
= smirOpCode
| (phy_addr
<< smirPhyAdBit
) |
236 (reg
<< smirRegAdBit
);
238 // wait for last operation to complete
239 while (GT96100_READ(GT96100_ETH_SMI_REG
) & smirBusy
) {
240 // snooze for 1 msec and check again
243 if (--timedout
== 0) {
244 printk(KERN_ERR
"%s: busy timeout!!\n", __FUNCTION__
);
249 GT96100_WRITE(GT96100_ETH_SMI_REG
, smir
);
252 // wait for read to complete
253 while (!((smir
= GT96100_READ(GT96100_ETH_SMI_REG
)) & smirReadValid
)) {
254 // snooze for 1 msec and check again
257 if (--timedout
== 0) {
258 printk(KERN_ERR
"%s: timeout!!\n", __FUNCTION__
);
263 return (int)(smir
& smirDataMask
);
267 dump_tx_desc(int dbg_lvl
, struct net_device
*dev
, int i
)
269 struct gt96100_private
*gp
= netdev_priv(dev
);
270 gt96100_td_t
*td
= &gp
->tx_ring
[i
];
272 dbg(dbg_lvl
, "Tx descriptor at 0x%08lx:\n", virt_to_phys(td
));
274 " cmdstat=%04x, byte_cnt=%04x, buff_ptr=%04x, next=%04x\n",
275 dma32_to_cpu(td
->cmdstat
),
276 dma16_to_cpu(td
->byte_cnt
),
277 dma32_to_cpu(td
->buff_ptr
),
278 dma32_to_cpu(td
->next
));
282 dump_rx_desc(int dbg_lvl
, struct net_device
*dev
, int i
)
284 struct gt96100_private
*gp
= netdev_priv(dev
);
285 gt96100_rd_t
*rd
= &gp
->rx_ring
[i
];
287 dbg(dbg_lvl
, "Rx descriptor at 0x%08lx:\n", virt_to_phys(rd
));
288 dbg(dbg_lvl
, " cmdstat=%04x, buff_sz=%04x, byte_cnt=%04x, "
289 "buff_ptr=%04x, next=%04x\n",
290 dma32_to_cpu(rd
->cmdstat
),
291 dma16_to_cpu(rd
->buff_sz
),
292 dma16_to_cpu(rd
->byte_cnt
),
293 dma32_to_cpu(rd
->buff_ptr
),
294 dma32_to_cpu(rd
->next
));
298 write_MII(int phy_addr
, u32 reg
, u16 data
)
301 u32 smir
= (phy_addr
<< smirPhyAdBit
) |
302 (reg
<< smirRegAdBit
) | data
;
304 // wait for last operation to complete
305 while (GT96100_READ(GT96100_ETH_SMI_REG
) & smirBusy
) {
306 // snooze for 1 msec and check again
309 if (--timedout
== 0) {
310 printk(KERN_ERR
"%s: busy timeout!!\n", __FUNCTION__
);
315 GT96100_WRITE(GT96100_ETH_SMI_REG
, smir
);
320 dump_MII(int dbg_lvl
, struct net_device
*dev
)
323 struct gt96100_private
*gp
= netdev_priv(dev
);
325 if (dbg_lvl
<= GT96100_DEBUG
) {
326 for (i
=0; i
<7; i
++) {
327 if ((val
= read_MII(gp
->phy_addr
, i
)) >= 0)
328 printk("MII Reg %d=%x\n", i
, val
);
330 for (i
=16; i
<21; i
++) {
331 if ((val
= read_MII(gp
->phy_addr
, i
)) >= 0)
332 printk("MII Reg %d=%x\n", i
, val
);
338 dump_hw_addr(int dbg_lvl
, struct net_device
*dev
, const char* pfx
,
339 unsigned char* addr_str
)
342 char buf
[100], octet
[5];
344 if (dbg_lvl
<= GT96100_DEBUG
) {
346 for (i
= 0; i
< 6; i
++) {
347 sprintf(octet
, "%2.2x%s",
348 addr_str
[i
], i
<5 ? ":" : "\n");
357 dump_skb(int dbg_lvl
, struct net_device
*dev
, struct sk_buff
*skb
)
360 unsigned char* skbdata
;
362 if (dbg_lvl
<= GT96100_DEBUG
) {
363 dbg(dbg_lvl
, "%s: skb=%p, skb->data=%p, skb->len=%d\n",
364 __FUNCTION__
, skb
, skb
->data
, skb
->len
);
366 skbdata
= (unsigned char*)KSEG1ADDR(skb
->data
);
368 for (i
=0; i
<skb
->len
; i
++) {
370 printk(KERN_DEBUG
"\n %3.3x: %2.2x,",
373 printk(KERN_DEBUG
"%2.2x,", skbdata
[i
]);
375 printk(KERN_DEBUG
"\n");
381 gt96100_add_hash_entry(struct net_device
*dev
, unsigned char* addr
)
383 struct gt96100_private
*gp
= netdev_priv(dev
);
384 //u16 hashResult, stmp;
385 //unsigned char ctmp, hash_ea[6];
386 u32 tblEntry1
, tblEntry0
, *tblEntryAddr
;
389 tblEntry1
= hteValid
| hteRD
;
390 tblEntry1
|= (u32
)addr
[5] << 3;
391 tblEntry1
|= (u32
)addr
[4] << 11;
392 tblEntry1
|= (u32
)addr
[3] << 19;
393 tblEntry1
|= ((u32
)addr
[2] & 0x1f) << 27;
394 dbg(3, "%s: tblEntry1=%x\n", __FUNCTION__
, tblEntry1
);
395 tblEntry0
= ((u32
)addr
[2] >> 5) & 0x07;
396 tblEntry0
|= (u32
)addr
[1] << 3;
397 tblEntry0
|= (u32
)addr
[0] << 11;
398 dbg(3, "%s: tblEntry0=%x\n", __FUNCTION__
, tblEntry0
);
402 for (i
=0; i
<6; i
++) {
404 ctmp
= nibswap(addr
[i
]);
405 // invert every nibble
406 hash_ea
[i
] = ((ctmp
&1)<<3) | ((ctmp
&8)>>3) |
407 ((ctmp
&2)<<1) | ((ctmp
&4)>>1);
408 hash_ea
[i
] |= ((ctmp
&0x10)<<3) | ((ctmp
&0x80)>>3) |
409 ((ctmp
&0x20)<<1) | ((ctmp
&0x40)>>1);
412 dump_hw_addr(3, dev
, "%s: nib swap/invt addr=", __FUNCTION__
, hash_ea
);
414 if (gp
->hash_mode
== 0) {
415 hashResult
= ((u16
)hash_ea
[0] & 0xfc) << 7;
416 stmp
= ((u16
)hash_ea
[0] & 0x03) |
417 (((u16
)hash_ea
[1] & 0x7f) << 2);
418 stmp
^= (((u16
)hash_ea
[1] >> 7) & 0x01) |
419 ((u16
)hash_ea
[2] << 1);
420 stmp
^= (u16
)hash_ea
[3] | (((u16
)hash_ea
[4] & 1) << 8);
423 return -1; // don't support hash mode 1
426 dbg(3, "%s: hashResult=%x\n", __FUNCTION__
, hashResult
);
429 (u32
*)(&gp
->hash_table
[((u32
)hashResult
& 0x7ff) << 3]);
431 dbg(3, "%s: tblEntryAddr=%p\n", tblEntryAddr
, __FUNCTION__
);
433 for (i
=0; i
<HASH_HOP_NUMBER
; i
++) {
434 if ((*tblEntryAddr
& hteValid
) &&
435 !(*tblEntryAddr
& hteSkip
)) {
436 // This entry is already occupied, go to next entry
438 dbg(3, "%s: skipping to %p\n", __FUNCTION__
,
441 memset(tblEntryAddr
, 0, 8);
442 tblEntryAddr
[1] = cpu_to_dma32(tblEntry1
);
443 tblEntryAddr
[0] = cpu_to_dma32(tblEntry0
);
448 if (i
>= HASH_HOP_NUMBER
) {
449 err("%s: expired!\n", __FUNCTION__
);
450 return -1; // Couldn't find an unused entry
455 tblEntryAddr
= (u32
*)gp
->hash_table
;
456 for (i
=0; i
<RX_HASH_TABLE_SIZE
/4; i
+=2) {
457 tblEntryAddr
[i
+1] = cpu_to_dma32(tblEntry1
);
458 tblEntryAddr
[i
] = cpu_to_dma32(tblEntry0
);
468 read_mib_counters(struct gt96100_private
*gp
)
470 u32
* mib_regs
= (u32
*)&gp
->mib
;
473 for (i
=0; i
<sizeof(mib_counters_t
)/sizeof(u32
); i
++)
474 mib_regs
[i
] = GT96100ETH_READ(gp
, GT96100_ETH_MIB_COUNT_BASE
+
480 update_stats(struct gt96100_private
*gp
)
482 mib_counters_t
*mib
= &gp
->mib
;
483 struct net_device_stats
*stats
= &gp
->stats
;
485 read_mib_counters(gp
);
487 stats
->rx_packets
= mib
->totalFramesReceived
;
488 stats
->tx_packets
= mib
->framesSent
;
489 stats
->rx_bytes
= mib
->totalByteReceived
;
490 stats
->tx_bytes
= mib
->byteSent
;
491 stats
->rx_errors
= mib
->totalFramesReceived
- mib
->framesReceived
;
492 //the tx error counters are incremented by the ISR
493 //rx_dropped incremented by gt96100_rx
494 //tx_dropped incremented by gt96100_tx
495 stats
->multicast
= mib
->multicastFramesReceived
;
496 // collisions incremented by gt96100_tx_complete
497 stats
->rx_length_errors
= mib
->oversizeFrames
+ mib
->fragments
;
498 // The RxError condition means the Rx DMA encountered a
499 // CPU owned descriptor, which, if things are working as
500 // they should, means the Rx ring has overflowed.
501 stats
->rx_over_errors
= mib
->macRxError
;
502 stats
->rx_crc_errors
= mib
->cRCError
;
506 abort(struct net_device
*dev
, u32 abort_bits
)
508 struct gt96100_private
*gp
= netdev_priv(dev
);
509 int timedout
= 100; // wait up to 100 msec for hard stop to complete
511 dbg(3, "%s\n", __FUNCTION__
);
513 // Return if neither Rx or Tx abort bits are set
514 if (!(abort_bits
& (sdcmrAR
| sdcmrAT
)))
517 // make sure only the Rx/Tx abort bits are set
518 abort_bits
&= (sdcmrAR
| sdcmrAT
);
520 spin_lock(&gp
->lock
);
522 // abort any Rx/Tx DMA immediately
523 GT96100ETH_WRITE(gp
, GT96100_ETH_SDMA_COMM
, abort_bits
);
525 dbg(3, "%s: SDMA comm = %x\n", __FUNCTION__
,
526 GT96100ETH_READ(gp
, GT96100_ETH_SDMA_COMM
));
528 // wait for abort to complete
529 while (GT96100ETH_READ(gp
, GT96100_ETH_SDMA_COMM
) & abort_bits
) {
530 // snooze for 20 msec and check again
533 if (--timedout
== 0) {
534 err("%s: timeout!!\n", __FUNCTION__
);
539 spin_unlock(&gp
->lock
);
544 hard_stop(struct net_device
*dev
)
546 struct gt96100_private
*gp
= netdev_priv(dev
);
548 dbg(3, "%s\n", __FUNCTION__
);
550 disable_ether_irq(dev
);
552 abort(dev
, sdcmrAR
| sdcmrAT
);
555 GT96100ETH_WRITE(gp
, GT96100_ETH_PORT_CONFIG
, 0);
560 enable_ether_irq(struct net_device
*dev
)
562 struct gt96100_private
*gp
= netdev_priv(dev
);
565 * route ethernet interrupt to GT_SERINT0 for port 0,
566 * GT_INT0 for port 1.
568 int intr_mask_reg
= (gp
->port_num
== 0) ?
569 GT96100_SERINT0_MASK
: GT96100_INT0_HIGH_MASK
;
571 if (gp
->chip_rev
>= REV_GT96100A_1
) {
572 intMask
= icrTxBufferLow
| icrTxEndLow
|
573 icrTxErrorLow
| icrRxOVR
| icrTxUdr
|
574 icrRxBufferQ0
| icrRxErrorQ0
|
575 icrMIIPhySTC
| icrEtherIntSum
;
578 intMask
= icrTxBufferLow
| icrTxEndLow
|
579 icrTxErrorLow
| icrRxOVR
| icrTxUdr
|
580 icrRxBuffer
| icrRxError
|
581 icrMIIPhySTC
| icrEtherIntSum
;
585 GT96100ETH_WRITE(gp
, GT96100_ETH_INT_MASK
, intMask
);
587 intMask
= GT96100_READ(intr_mask_reg
);
588 intMask
|= 1<<gp
->port_num
;
589 GT96100_WRITE(intr_mask_reg
, intMask
);
593 disable_ether_irq(struct net_device
*dev
)
595 struct gt96100_private
*gp
= netdev_priv(dev
);
597 int intr_mask_reg
= (gp
->port_num
== 0) ?
598 GT96100_SERINT0_MASK
: GT96100_INT0_HIGH_MASK
;
600 intMask
= GT96100_READ(intr_mask_reg
);
601 intMask
&= ~(1<<gp
->port_num
);
602 GT96100_WRITE(intr_mask_reg
, intMask
);
604 GT96100ETH_WRITE(gp
, GT96100_ETH_INT_MASK
, 0);
609 * Init GT96100 ethernet controller driver
611 static int gt96100_init_module(void)
618 * Stupid probe because this really isn't a PCI device
620 if (!(pci
= pci_find_device(PCI_VENDOR_ID_MARVELL
,
621 PCI_DEVICE_ID_MARVELL_GT96100
, NULL
)) &&
622 !(pci
= pci_find_device(PCI_VENDOR_ID_MARVELL
,
623 PCI_DEVICE_ID_MARVELL_GT96100A
, NULL
))) {
624 printk(KERN_ERR __FILE__
": GT96100 not found!\n");
628 cpuConfig
= GT96100_READ(GT96100_CPU_INTERF_CONFIG
);
629 if (cpuConfig
& (1<<12)) {
630 printk(KERN_ERR __FILE__
631 ": must be in Big Endian mode!\n");
635 for (i
=0; i
< NUM_INTERFACES
; i
++)
636 retval
|= gt96100_probe1(pci
, i
);
641 static int __init
gt96100_probe1(struct pci_dev
*pci
, int port_num
)
643 struct gt96100_private
*gp
= NULL
;
644 struct gt96100_if_t
*gtif
= >96100_iflist
[port_num
];
645 int phy_addr
, phy_id1
, phy_id2
;
648 unsigned char chip_rev
;
649 struct net_device
*dev
= NULL
;
652 printk(KERN_ERR
"%s: irq unknown - probing not supported\n",
657 pci_read_config_byte(pci
, PCI_REVISION_ID
, &chip_rev
);
659 if (chip_rev
>= REV_GT96100A_1
) {
660 phyAD
= GT96100_READ(GT96100_ETH_PHY_ADDR_REG
);
661 phy_addr
= (phyAD
>> (5*port_num
)) & 0x1f;
664 * not sure what's this about -- probably a gt bug
667 phyAD
= GT96100_READ(GT96100_ETH_PHY_ADDR_REG
);
668 phyAD
&= ~(0x1f << (port_num
*5));
669 phyAD
|= phy_addr
<< (port_num
*5);
670 GT96100_WRITE(GT96100_ETH_PHY_ADDR_REG
, phyAD
);
673 // probe for the external PHY
674 if ((phy_id1
= read_MII(phy_addr
, 2)) <= 0 ||
675 (phy_id2
= read_MII(phy_addr
, 3)) <= 0) {
676 printk(KERN_ERR
"%s: no PHY found on MII%d\n", __FUNCTION__
, port_num
);
680 if (!request_region(gtif
->iobase
, GT96100_ETH_IO_SIZE
, "GT96100ETH")) {
681 printk(KERN_ERR
"%s: request_region failed\n", __FUNCTION__
);
685 dev
= alloc_etherdev(sizeof(struct gt96100_private
));
690 /* private struct aligned and zeroed by alloc_etherdev */
691 /* Fill in the 'dev' fields. */
692 dev
->base_addr
= gtif
->iobase
;
693 dev
->irq
= gtif
->irq
;
695 if ((retval
= parse_mac_addr(dev
, gtif
->mac_str
))) {
696 err("%s: MAC address parse failed\n", __FUNCTION__
);
701 gp
= netdev_priv(dev
);
703 memset(gp
, 0, sizeof(*gp
)); // clear it
705 gp
->port_num
= port_num
;
706 gp
->io_size
= GT96100_ETH_IO_SIZE
;
707 gp
->port_offset
= port_num
* GT96100_ETH_IO_SIZE
;
708 gp
->phy_addr
= phy_addr
;
709 gp
->chip_rev
= chip_rev
;
711 info("%s found at 0x%x, irq %d\n",
712 chip_name(gp
->chip_rev
), gtif
->iobase
, gtif
->irq
);
713 dump_hw_addr(0, dev
, "HW Address ", dev
->dev_addr
);
714 info("%s chip revision=%d\n", chip_name(gp
->chip_rev
), gp
->chip_rev
);
715 info("%s ethernet port %d\n", chip_name(gp
->chip_rev
), gp
->port_num
);
716 info("external PHY ID1=0x%04x, ID2=0x%04x\n", phy_id1
, phy_id2
);
718 // Allocate Rx and Tx descriptor rings
719 if (gp
->rx_ring
== NULL
) {
720 // All descriptors in ring must be 16-byte aligned
721 gp
->rx_ring
= dmaalloc(sizeof(gt96100_rd_t
) * RX_RING_SIZE
722 + sizeof(gt96100_td_t
) * TX_RING_SIZE
,
724 if (gp
->rx_ring
== NULL
) {
729 gp
->tx_ring
= (gt96100_td_t
*)(gp
->rx_ring
+ RX_RING_SIZE
);
731 gp
->rx_ring_dma
+ sizeof(gt96100_rd_t
) * RX_RING_SIZE
;
734 // Allocate the Rx Data Buffers
735 if (gp
->rx_buff
== NULL
) {
736 gp
->rx_buff
= dmaalloc(PKT_BUF_SZ
*RX_RING_SIZE
,
738 if (gp
->rx_buff
== NULL
) {
744 dbg(3, "%s: rx_ring=%p, tx_ring=%p\n", __FUNCTION__
,
745 gp
->rx_ring
, gp
->tx_ring
);
747 // Allocate Rx Hash Table
748 if (gp
->hash_table
== NULL
) {
749 gp
->hash_table
= (char*)dmaalloc(RX_HASH_TABLE_SIZE
,
750 &gp
->hash_table_dma
);
751 if (gp
->hash_table
== NULL
) {
757 dbg(3, "%s: hash=%p\n", __FUNCTION__
, gp
->hash_table
);
759 spin_lock_init(&gp
->lock
);
761 dev
->open
= gt96100_open
;
762 dev
->hard_start_xmit
= gt96100_tx
;
763 dev
->stop
= gt96100_close
;
764 dev
->get_stats
= gt96100_get_stats
;
765 //dev->do_ioctl = gt96100_ioctl;
766 dev
->set_multicast_list
= gt96100_set_rx_mode
;
767 dev
->tx_timeout
= gt96100_tx_timeout
;
768 dev
->watchdog_timeo
= GT96100ETH_TX_TIMEOUT
;
770 retval
= register_netdev(dev
);
776 dmafree(RX_HASH_TABLE_SIZE
, gp
->hash_table_dma
);
778 dmafree(PKT_BUF_SZ
*RX_RING_SIZE
, gp
->rx_buff
);
780 dmafree(sizeof(gt96100_rd_t
) * RX_RING_SIZE
781 + sizeof(gt96100_td_t
) * TX_RING_SIZE
,
786 release_region(gtif
->iobase
, GT96100_ETH_IO_SIZE
);
788 err("%s failed. Returns %d\n", __FUNCTION__
, retval
);
794 reset_tx(struct net_device
*dev
)
796 struct gt96100_private
*gp
= netdev_priv(dev
);
801 for (i
=0; i
<TX_RING_SIZE
; i
++) {
802 if (gp
->tx_skbuff
[i
]) {
804 dev_kfree_skb_irq(gp
->tx_skbuff
[i
]);
806 dev_kfree_skb(gp
->tx_skbuff
[i
]);
807 gp
->tx_skbuff
[i
] = NULL
;
810 gp
->tx_ring
[i
].cmdstat
= 0; // CPU owns
811 gp
->tx_ring
[i
].byte_cnt
= 0;
812 gp
->tx_ring
[i
].buff_ptr
= 0;
813 gp
->tx_ring
[i
].next
=
814 cpu_to_dma32(gp
->tx_ring_dma
+
815 sizeof(gt96100_td_t
) * (i
+1));
816 dump_tx_desc(4, dev
, i
);
819 gp
->tx_ring
[i
-1].next
= cpu_to_dma32(gp
->tx_ring_dma
);
821 // setup only the lowest priority TxCDP reg
822 GT96100ETH_WRITE(gp
, GT96100_ETH_CURR_TX_DESC_PTR0
, gp
->tx_ring_dma
);
823 GT96100ETH_WRITE(gp
, GT96100_ETH_CURR_TX_DESC_PTR1
, 0);
825 // init Tx indeces and pkt counter
826 gp
->tx_next_in
= gp
->tx_next_out
= 0;
832 reset_rx(struct net_device
*dev
)
834 struct gt96100_private
*gp
= netdev_priv(dev
);
839 for (i
=0; i
<RX_RING_SIZE
; i
++) {
840 gp
->rx_ring
[i
].next
=
841 cpu_to_dma32(gp
->rx_ring_dma
+
842 sizeof(gt96100_rd_t
) * (i
+1));
843 gp
->rx_ring
[i
].buff_ptr
=
844 cpu_to_dma32(gp
->rx_buff_dma
+ i
*PKT_BUF_SZ
);
845 gp
->rx_ring
[i
].buff_sz
= cpu_to_dma16(PKT_BUF_SZ
);
846 // Give ownership to device, set first and last, enable intr
847 gp
->rx_ring
[i
].cmdstat
=
848 cpu_to_dma32((u32
)(rxFirst
| rxLast
| rxOwn
| rxEI
));
849 dump_rx_desc(4, dev
, i
);
852 gp
->rx_ring
[i
-1].next
= cpu_to_dma32(gp
->rx_ring_dma
);
854 // Setup only the lowest priority RxFDP and RxCDP regs
855 for (i
=0; i
<4; i
++) {
857 GT96100ETH_WRITE(gp
, GT96100_ETH_1ST_RX_DESC_PTR0
,
859 GT96100ETH_WRITE(gp
, GT96100_ETH_CURR_RX_DESC_PTR0
,
863 GT96100_ETH_1ST_RX_DESC_PTR0
+ i
*4,
866 GT96100_ETH_CURR_RX_DESC_PTR0
+ i
*4,
871 // init Rx NextOut index
876 // Returns 1 if the Tx counter and indeces don't gel
878 gt96100_check_tx_consistent(struct gt96100_private
*gp
)
880 int diff
= gp
->tx_next_in
- gp
->tx_next_out
;
882 diff
= diff
<0 ? TX_RING_SIZE
+ diff
: diff
;
883 diff
= gp
->tx_count
== TX_RING_SIZE
? diff
+ TX_RING_SIZE
: diff
;
885 return (diff
!= gp
->tx_count
);
889 gt96100_init(struct net_device
*dev
)
891 struct gt96100_private
*gp
= netdev_priv(dev
);
895 dbg(3, "%s: dev=%p\n", __FUNCTION__
, dev
);
896 dbg(3, "%s: scs10_lo=%4x, scs10_hi=%4x\n", __FUNCTION__
,
897 GT96100_READ(0x8), GT96100_READ(0x10));
898 dbg(3, "%s: scs32_lo=%4x, scs32_hi=%4x\n", __FUNCTION__
,
899 GT96100_READ(0x18), GT96100_READ(0x20));
901 // Stop and disable Port
905 tmp
= GT96100_READ(GT96100_CIU_ARBITER_CONFIG
);
906 tmp
|= (0x0c << (gp
->port_num
*2)); // set Ether DMA req priority to hi
908 tmp
&= ~(1<<31); // set desc endianess to little
912 GT96100_WRITE(GT96100_CIU_ARBITER_CONFIG
, tmp
);
913 dbg(3, "%s: CIU Config=%x/%x\n", __FUNCTION__
,
914 tmp
, GT96100_READ(GT96100_CIU_ARBITER_CONFIG
));
917 tmp
= GT96100_READ(GT96100_ROUTE_MAIN
) & (0x3f << 18);
918 tmp
|= (0x07 << (18 + gp
->port_num
*3));
919 GT96100_WRITE(GT96100_ROUTE_MAIN
, tmp
);
921 /* set MII as peripheral func */
922 tmp
= GT96100_READ(GT96100_GPP_CONFIG2
);
923 tmp
|= 0x7fff << (gp
->port_num
*16);
924 GT96100_WRITE(GT96100_GPP_CONFIG2
, tmp
);
926 /* Set up MII port pin directions */
927 tmp
= GT96100_READ(GT96100_GPP_IO2
);
928 tmp
|= 0x003d << (gp
->port_num
*16);
929 GT96100_WRITE(GT96100_GPP_IO2
, tmp
);
932 memset(gp
->hash_table
, 0, RX_HASH_TABLE_SIZE
); // clear it
934 // Add a single entry to hash table - our ethernet address
935 gt96100_add_hash_entry(dev
, dev
->dev_addr
);
936 // Set-up DMA ptr to hash table
937 GT96100ETH_WRITE(gp
, GT96100_ETH_HASH_TBL_PTR
, gp
->hash_table_dma
);
938 dbg(3, "%s: Hash Tbl Ptr=%x\n", __FUNCTION__
,
939 GT96100ETH_READ(gp
, GT96100_ETH_HASH_TBL_PTR
));
944 dbg(3, "%s: Curr Tx Desc Ptr0=%x\n", __FUNCTION__
,
945 GT96100ETH_READ(gp
, GT96100_ETH_CURR_TX_DESC_PTR0
));
950 dbg(3, "%s: 1st/Curr Rx Desc Ptr0=%x/%x\n", __FUNCTION__
,
951 GT96100ETH_READ(gp
, GT96100_ETH_1ST_RX_DESC_PTR0
),
952 GT96100ETH_READ(gp
, GT96100_ETH_CURR_RX_DESC_PTR0
));
954 // eth port config register
955 GT96100ETH_WRITE(gp
, GT96100_ETH_PORT_CONFIG_EXT
,
956 pcxrFCTL
| pcxrFCTLen
| pcxrFLP
| pcxrDPLXen
);
958 mii_reg
= read_MII(gp
->phy_addr
, 0x11); /* int enable register */
959 mii_reg
|= 2; /* enable mii interrupt */
960 write_MII(gp
->phy_addr
, 0x11, mii_reg
);
962 dbg(3, "%s: PhyAD=%x\n", __FUNCTION__
,
963 GT96100_READ(GT96100_ETH_PHY_ADDR_REG
));
967 // We want the Rx/Tx DMA to write/read data to/from memory in
968 // Big Endian mode. Also set DMA Burst Size to 8 64Bit words.
970 GT96100ETH_WRITE(gp
, GT96100_ETH_SDMA_CONFIG
,
971 (0xf<<sdcrRCBit
) | sdcrRIFB
| (3<<sdcrBSZBit
));
973 GT96100ETH_WRITE(gp
, GT96100_ETH_SDMA_CONFIG
,
974 sdcrBLMR
| sdcrBLMT
|
975 (0xf<<sdcrRCBit
) | sdcrRIFB
| (3<<sdcrBSZBit
));
977 dbg(3, "%s: SDMA Config=%x\n", __FUNCTION__
,
978 GT96100ETH_READ(gp
, GT96100_ETH_SDMA_CONFIG
));
981 GT96100ETH_WRITE(gp
, GT96100_ETH_SDMA_COMM
, sdcmrERD
);
982 dbg(3, "%s: SDMA Comm=%x\n", __FUNCTION__
,
983 GT96100ETH_READ(gp
, GT96100_ETH_SDMA_COMM
));
985 // enable this port (set hash size to 1/2K)
986 GT96100ETH_WRITE(gp
, GT96100_ETH_PORT_CONFIG
, pcrEN
| pcrHS
);
987 dbg(3, "%s: Port Config=%x\n", __FUNCTION__
,
988 GT96100ETH_READ(gp
, GT96100_ETH_PORT_CONFIG
));
991 * Disable all Type-of-Service queueing. All Rx packets will be
992 * treated normally and will be sent to the lowest priority
995 * Disable flow-control for now. FIXME: support flow control?
998 // clear all the MIB ctr regs
999 GT96100ETH_WRITE(gp
, GT96100_ETH_PORT_CONFIG_EXT
,
1000 pcxrFCTL
| pcxrFCTLen
| pcxrFLP
|
1001 pcxrPRIOrxOverride
);
1002 read_mib_counters(gp
);
1003 GT96100ETH_WRITE(gp
, GT96100_ETH_PORT_CONFIG_EXT
,
1004 pcxrFCTL
| pcxrFCTLen
| pcxrFLP
|
1005 pcxrPRIOrxOverride
| pcxrMIBclrMode
);
1007 dbg(3, "%s: Port Config Ext=%x\n", __FUNCTION__
,
1008 GT96100ETH_READ(gp
, GT96100_ETH_PORT_CONFIG_EXT
));
1010 netif_start_queue(dev
);
1014 // enable interrupts
1015 enable_ether_irq(dev
);
1017 // we should now be receiving frames
1023 gt96100_open(struct net_device
*dev
)
1027 dbg(2, "%s: dev=%p\n", __FUNCTION__
, dev
);
1029 // Initialize and startup the GT-96100 ethernet port
1030 if ((retval
= gt96100_init(dev
))) {
1031 err("error in gt96100_init\n");
1032 free_irq(dev
->irq
, dev
);
1036 if ((retval
= request_irq(dev
->irq
, >96100_interrupt
,
1037 SA_SHIRQ
, dev
->name
, dev
))) {
1038 err("unable to get IRQ %d\n", dev
->irq
);
1042 dbg(2, "%s: Initialization done.\n", __FUNCTION__
);
1048 gt96100_close(struct net_device
*dev
)
1050 dbg(3, "%s: dev=%p\n", __FUNCTION__
, dev
);
1053 if (netif_device_present(dev
)) {
1054 netif_stop_queue(dev
);
1058 free_irq(dev
->irq
, dev
);
1065 gt96100_tx(struct sk_buff
*skb
, struct net_device
*dev
)
1067 struct gt96100_private
*gp
= netdev_priv(dev
);
1068 unsigned long flags
;
1071 spin_lock_irqsave(&gp
->lock
, flags
);
1073 nextIn
= gp
->tx_next_in
;
1075 dbg(3, "%s: nextIn=%d\n", __FUNCTION__
, nextIn
);
1077 if (gp
->tx_count
>= TX_RING_SIZE
) {
1078 warn("Tx Ring full, pkt dropped.\n");
1079 gp
->stats
.tx_dropped
++;
1080 spin_unlock_irqrestore(&gp
->lock
, flags
);
1084 if (!(gp
->last_psr
& psrLink
)) {
1085 err("%s: Link down, pkt dropped.\n", __FUNCTION__
);
1086 gp
->stats
.tx_dropped
++;
1087 spin_unlock_irqrestore(&gp
->lock
, flags
);
1091 if (dma32_to_cpu(gp
->tx_ring
[nextIn
].cmdstat
) & txOwn
) {
1092 err("%s: device owns descriptor, pkt dropped.\n", __FUNCTION__
);
1093 gp
->stats
.tx_dropped
++;
1094 // stop the queue, so Tx timeout can fix it
1095 netif_stop_queue(dev
);
1096 spin_unlock_irqrestore(&gp
->lock
, flags
);
1100 // Prepare the Descriptor at tx_next_in
1101 gp
->tx_skbuff
[nextIn
] = skb
;
1102 gp
->tx_ring
[nextIn
].byte_cnt
= cpu_to_dma16(skb
->len
);
1103 gp
->tx_ring
[nextIn
].buff_ptr
= cpu_to_dma32(virt_to_phys(skb
->data
));
1104 // make sure packet gets written back to memory
1105 dma_cache_wback_inv((unsigned long)(skb
->data
), skb
->len
);
1106 // Give ownership to device, set first and last desc, enable interrupt
1107 // Setting of ownership bit must be *last*!
1108 gp
->tx_ring
[nextIn
].cmdstat
=
1109 cpu_to_dma32((u32
)(txOwn
| txGenCRC
| txEI
|
1110 txPad
| txFirst
| txLast
));
1112 dump_tx_desc(4, dev
, nextIn
);
1113 dump_skb(4, dev
, skb
);
1115 // increment tx_next_in with wrap
1116 gp
->tx_next_in
= (nextIn
+ 1) % TX_RING_SIZE
;
1117 // If DMA is stopped, restart
1118 if (!(GT96100ETH_READ(gp
, GT96100_ETH_PORT_STATUS
) & psrTxLow
))
1119 GT96100ETH_WRITE(gp
, GT96100_ETH_SDMA_COMM
,
1120 sdcmrERD
| sdcmrTXDL
);
1122 // increment count and stop queue if full
1123 if (++gp
->tx_count
== TX_RING_SIZE
) {
1125 netif_stop_queue(dev
);
1126 dbg(2, "Tx Ring now full, queue stopped.\n");
1129 dev
->trans_start
= jiffies
;
1130 spin_unlock_irqrestore(&gp
->lock
, flags
);
1137 gt96100_rx(struct net_device
*dev
, u32 status
)
1139 struct gt96100_private
*gp
= netdev_priv(dev
);
1140 struct sk_buff
*skb
;
1141 int pkt_len
, nextOut
, cdp
;
1145 dbg(3, "%s: dev=%p, status=%x\n", __FUNCTION__
, dev
, status
);
1147 cdp
= (GT96100ETH_READ(gp
, GT96100_ETH_1ST_RX_DESC_PTR0
)
1148 - gp
->rx_ring_dma
) / sizeof(gt96100_rd_t
);
1150 // Continue until we reach 1st descriptor pointer
1151 for (nextOut
= gp
->rx_next_out
; nextOut
!= cdp
;
1152 nextOut
= (nextOut
+ 1) % RX_RING_SIZE
) {
1154 if (--gp
->intr_work_done
== 0)
1157 rd
= &gp
->rx_ring
[nextOut
];
1158 cmdstat
= dma32_to_cpu(rd
->cmdstat
);
1160 dbg(4, "%s: Rx desc cmdstat=%x, nextOut=%d\n", __FUNCTION__
,
1163 if (cmdstat
& (u32
)rxOwn
) {
1164 //err("%s: device owns descriptor!\n", __FUNCTION__);
1165 // DMA is not finished updating descriptor???
1166 // Leave and come back later to pick-up where
1171 // Drop this received pkt if there were any errors
1172 if (((cmdstat
& (u32
)(rxErrorSummary
)) &&
1173 (cmdstat
& (u32
)(rxFirst
))) || (status
& icrRxError
)) {
1174 // update the detailed rx error counters that
1175 // are not covered by the MIB counters.
1176 if (cmdstat
& (u32
)rxOverrun
)
1177 gp
->stats
.rx_fifo_errors
++;
1178 cmdstat
|= (u32
)rxOwn
;
1179 rd
->cmdstat
= cpu_to_dma32(cmdstat
);
1184 * Must be first and last (ie only) descriptor of packet. We
1185 * ignore (drop) any packets that do not fit in one descriptor.
1186 * Every descriptor's receive buffer is large enough to hold
1187 * the maximum 802.3 frame size, so a multi-descriptor packet
1188 * indicates an error. Most if not all corrupted packets will
1189 * have already been dropped by the above check for the
1190 * rxErrorSummary status bit.
1192 if (!(cmdstat
& (u32
)rxFirst
) || !(cmdstat
& (u32
)rxLast
)) {
1193 if (cmdstat
& (u32
)rxFirst
) {
1195 * This is the first descriptor of a
1196 * multi-descriptor packet. It isn't corrupted
1197 * because the above check for rxErrorSummary
1198 * would have dropped it already, so what's
1199 * the deal with this packet? Good question,
1200 * let's dump it out.
1202 err("%s: desc not first and last!\n", __FUNCTION__
);
1203 dump_rx_desc(0, dev
, nextOut
);
1205 cmdstat
|= (u32
)rxOwn
;
1206 rd
->cmdstat
= cpu_to_dma32(cmdstat
);
1207 // continue to drop every descriptor of this packet
1211 pkt_len
= dma16_to_cpu(rd
->byte_cnt
);
1213 /* Create new skb. */
1214 skb
= dev_alloc_skb(pkt_len
+2);
1216 err("%s: Memory squeeze, dropping packet.\n", __FUNCTION__
);
1217 gp
->stats
.rx_dropped
++;
1218 cmdstat
|= (u32
)rxOwn
;
1219 rd
->cmdstat
= cpu_to_dma32(cmdstat
);
1223 skb_reserve(skb
, 2); /* 16 byte IP header align */
1224 memcpy(skb_put(skb
, pkt_len
),
1225 &gp
->rx_buff
[nextOut
*PKT_BUF_SZ
], pkt_len
);
1226 skb
->protocol
= eth_type_trans(skb
, dev
);
1227 dump_skb(4, dev
, skb
);
1229 netif_rx(skb
); /* pass the packet to upper layers */
1230 dev
->last_rx
= jiffies
;
1232 // now we can release ownership of this desc back to device
1233 cmdstat
|= (u32
)rxOwn
;
1234 rd
->cmdstat
= cpu_to_dma32(cmdstat
);
1237 if (nextOut
== gp
->rx_next_out
)
1238 dbg(3, "%s: RxCDP did not increment?\n", __FUNCTION__
);
1240 gp
->rx_next_out
= nextOut
;
1246 gt96100_tx_complete(struct net_device
*dev
, u32 status
)
1248 struct gt96100_private
*gp
= netdev_priv(dev
);
1253 cdp
= (GT96100ETH_READ(gp
, GT96100_ETH_CURR_TX_DESC_PTR0
)
1254 - gp
->tx_ring_dma
) / sizeof(gt96100_td_t
);
1256 // Continue until we reach the current descriptor pointer
1257 for (nextOut
= gp
->tx_next_out
; nextOut
!= cdp
;
1258 nextOut
= (nextOut
+ 1) % TX_RING_SIZE
) {
1260 if (--gp
->intr_work_done
== 0)
1263 td
= &gp
->tx_ring
[nextOut
];
1264 cmdstat
= dma32_to_cpu(td
->cmdstat
);
1266 dbg(3, "%s: Tx desc cmdstat=%x, nextOut=%d\n", __FUNCTION__
,
1269 if (cmdstat
& (u32
)txOwn
) {
1271 * DMA is not finished writing descriptor???
1272 * Leave and come back later to pick-up where
1278 // increment Tx error stats
1279 if (cmdstat
& (u32
)txErrorSummary
) {
1280 dbg(2, "%s: Tx error, cmdstat = %x\n", __FUNCTION__
,
1282 gp
->stats
.tx_errors
++;
1283 if (cmdstat
& (u32
)txReTxLimit
)
1284 gp
->stats
.tx_aborted_errors
++;
1285 if (cmdstat
& (u32
)txUnderrun
)
1286 gp
->stats
.tx_fifo_errors
++;
1287 if (cmdstat
& (u32
)txLateCollision
)
1288 gp
->stats
.tx_window_errors
++;
1291 if (cmdstat
& (u32
)txCollision
)
1292 gp
->stats
.collisions
+=
1293 (u32
)((cmdstat
& txReTxCntMask
) >>
1296 // Wake the queue if the ring was full
1299 if (gp
->last_psr
& psrLink
) {
1300 netif_wake_queue(dev
);
1301 dbg(2, "%s: Tx Ring was full, queue waked\n",
1306 // decrement tx ring buffer count
1307 if (gp
->tx_count
) gp
->tx_count
--;
1310 if (gp
->tx_skbuff
[nextOut
]) {
1311 dbg(3, "%s: good Tx, skb=%p\n", __FUNCTION__
,
1312 gp
->tx_skbuff
[nextOut
]);
1313 dev_kfree_skb_irq(gp
->tx_skbuff
[nextOut
]);
1314 gp
->tx_skbuff
[nextOut
] = NULL
;
1316 err("%s: no skb!\n", __FUNCTION__
);
1320 gp
->tx_next_out
= nextOut
;
1322 if (gt96100_check_tx_consistent(gp
)) {
1323 err("%s: Tx queue inconsistent!\n", __FUNCTION__
);
1326 if ((status
& icrTxEndLow
) && gp
->tx_count
!= 0) {
1327 // we must restart the DMA
1328 dbg(3, "%s: Restarting Tx DMA\n", __FUNCTION__
);
1329 GT96100ETH_WRITE(gp
, GT96100_ETH_SDMA_COMM
,
1330 sdcmrERD
| sdcmrTXDL
);
1336 gt96100_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
1338 struct net_device
*dev
= (struct net_device
*)dev_id
;
1339 struct gt96100_private
*gp
= netdev_priv(dev
);
1344 err("%s: null dev ptr\n", __FUNCTION__
);
1348 dbg(3, "%s: entry, icr=%x\n", __FUNCTION__
,
1349 GT96100ETH_READ(gp
, GT96100_ETH_INT_CAUSE
));
1351 spin_lock(&gp
->lock
);
1353 gp
->intr_work_done
= max_interrupt_work
;
1355 while (gp
->intr_work_done
> 0) {
1357 status
= GT96100ETH_READ(gp
, GT96100_ETH_INT_CAUSE
);
1359 GT96100ETH_WRITE(gp
, GT96100_ETH_INT_CAUSE
, ~status
);
1361 if ((status
& icrEtherIntSum
) == 0 &&
1362 !(status
& (icrTxBufferLow
|icrTxBufferHigh
|icrRxBuffer
)))
1367 if (status
& icrMIIPhySTC
) {
1368 u32 psr
= GT96100ETH_READ(gp
, GT96100_ETH_PORT_STATUS
);
1369 if (gp
->last_psr
!= psr
) {
1370 dbg(0, "port status:\n");
1371 dbg(0, " %s MBit/s, %s-duplex, "
1372 "flow-control %s, link is %s,\n",
1373 psr
& psrSpeed
? "100":"10",
1374 psr
& psrDuplex
? "full":"half",
1375 psr
& psrFctl
? "disabled":"enabled",
1376 psr
& psrLink
? "up":"down");
1377 dbg(0, " TxLowQ is %s, TxHighQ is %s, "
1378 "Transmitter is %s\n",
1379 psr
& psrTxLow
? "running":"stopped",
1380 psr
& psrTxHigh
? "running":"stopped",
1381 psr
& psrTxInProg
? "on":"off");
1383 if ((psr
& psrLink
) && !gp
->tx_full
&&
1384 netif_queue_stopped(dev
)) {
1385 dbg(0, "%s: Link up, waking queue.\n",
1387 netif_wake_queue(dev
);
1388 } else if (!(psr
& psrLink
) &&
1389 !netif_queue_stopped(dev
)) {
1390 dbg(0, "%s: Link down, stopping queue.\n",
1392 netif_stop_queue(dev
);
1398 if (--gp
->intr_work_done
== 0)
1402 if (status
& (icrTxBufferLow
| icrTxEndLow
))
1403 gt96100_tx_complete(dev
, status
);
1405 if (status
& (icrRxBuffer
| icrRxError
)) {
1406 gt96100_rx(dev
, status
);
1409 // Now check TX errors (RX errors were handled in gt96100_rx)
1410 if (status
& icrTxErrorLow
) {
1411 err("%s: Tx resource error\n", __FUNCTION__
);
1412 if (--gp
->intr_work_done
== 0)
1416 if (status
& icrTxUdr
) {
1417 err("%s: Tx underrun error\n", __FUNCTION__
);
1418 if (--gp
->intr_work_done
== 0)
1423 if (gp
->intr_work_done
== 0) {
1424 // ACK any remaining pending interrupts
1425 GT96100ETH_WRITE(gp
, GT96100_ETH_INT_CAUSE
, 0);
1426 dbg(3, "%s: hit max work\n", __FUNCTION__
);
1429 dbg(3, "%s: exit, icr=%x\n", __FUNCTION__
,
1430 GT96100ETH_READ(gp
, GT96100_ETH_INT_CAUSE
));
1432 spin_unlock(&gp
->lock
);
1433 return IRQ_RETVAL(handled
);
1438 gt96100_tx_timeout(struct net_device
*dev
)
1440 struct gt96100_private
*gp
= netdev_priv(dev
);
1441 unsigned long flags
;
1443 spin_lock_irqsave(&gp
->lock
, flags
);
1445 if (!(gp
->last_psr
& psrLink
)) {
1446 err("tx_timeout: link down.\n");
1447 spin_unlock_irqrestore(&gp
->lock
, flags
);
1449 if (gt96100_check_tx_consistent(gp
))
1450 err("tx_timeout: Tx ring error.\n");
1452 disable_ether_irq(dev
);
1453 spin_unlock_irqrestore(&gp
->lock
, flags
);
1455 enable_ether_irq(dev
);
1457 netif_wake_queue(dev
);
1463 gt96100_set_rx_mode(struct net_device
*dev
)
1465 struct gt96100_private
*gp
= netdev_priv(dev
);
1466 unsigned long flags
;
1467 //struct dev_mc_list *mcptr;
1469 dbg(3, "%s: dev=%p, flags=%x\n", __FUNCTION__
, dev
, dev
->flags
);
1471 // stop the Receiver DMA
1472 abort(dev
, sdcmrAR
);
1474 spin_lock_irqsave(&gp
->lock
, flags
);
1476 if (dev
->flags
& IFF_PROMISC
) {
1477 GT96100ETH_WRITE(gp
, GT96100_ETH_PORT_CONFIG
,
1478 pcrEN
| pcrHS
| pcrPM
);
1483 FIXME: currently multicast doesn't work - need to get hash table
1486 if (dev
->mc_count
) {
1488 memset(gp
->hash_table
, 0, RX_HASH_TABLE_SIZE
);
1489 // Add our ethernet address
1490 gt96100_add_hash_entry(dev
, dev
->dev_addr
);
1492 for (mcptr
= dev
->mc_list
; mcptr
; mcptr
= mcptr
->next
) {
1493 dump_hw_addr(2, dev
, __FUNCTION__
": addr=",
1495 gt96100_add_hash_entry(dev
, mcptr
->dmi_addr
);
1501 GT96100ETH_WRITE(gp
, GT96100_ETH_SDMA_COMM
, sdcmrERD
);
1503 spin_unlock_irqrestore(&gp
->lock
, flags
);
1506 static struct net_device_stats
*
1507 gt96100_get_stats(struct net_device
*dev
)
1509 struct gt96100_private
*gp
= netdev_priv(dev
);
1510 unsigned long flags
;
1512 dbg(3, "%s: dev=%p\n", __FUNCTION__
, dev
);
1514 if (netif_device_present(dev
)) {
1515 spin_lock_irqsave (&gp
->lock
, flags
);
1517 spin_unlock_irqrestore (&gp
->lock
, flags
);
1523 static void gt96100_cleanup_module(void)
1526 for (i
=0; i
<NUM_INTERFACES
; i
++) {
1527 struct gt96100_if_t
*gtif
= >96100_iflist
[i
];
1528 if (gtif
->dev
!= NULL
) {
1529 struct gt96100_private
*gp
= (struct gt96100_private
*)
1530 netdev_priv(gtif
->dev
);
1531 unregister_netdev(gtif
->dev
);
1532 dmafree(RX_HASH_TABLE_SIZE
, gp
->hash_table_dma
);
1533 dmafree(PKT_BUF_SZ
*RX_RING_SIZE
, gp
->rx_buff
);
1534 dmafree(sizeof(gt96100_rd_t
) * RX_RING_SIZE
1535 + sizeof(gt96100_td_t
) * TX_RING_SIZE
,
1537 free_netdev(gtif
->dev
);
1538 release_region(gtif
->iobase
, gp
->io_size
);
1543 static int __init
gt96100_setup(char *options
)
1547 if (!options
|| !*options
)
1550 while ((this_opt
= strsep (&options
, ",")) != NULL
) {
1553 if (!strncmp(this_opt
, "mac0:", 5)) {
1554 memcpy(mac0
, this_opt
+5, 17);
1556 } else if (!strncmp(this_opt
, "mac1:", 5)) {
1557 memcpy(mac1
, this_opt
+5, 17);
1565 __setup("gt96100eth=", gt96100_setup
);
1567 module_init(gt96100_init_module
);
1568 module_exit(gt96100_cleanup_module
);
1570 MODULE_AUTHOR("Steve Longerbeam <stevel@mvista.com>");
1571 MODULE_DESCRIPTION("GT96100 Ethernet driver");