2 * Sun3 i82586 Ethernet driver
4 * Cloned from ni52.c for the Sun3 by Sam Creasey (sammy@sammy.net)
6 * Original copyright follows:
7 * --------------------------
9 * net-3-driver for the NI5210 card (i82586 Ethernet chip)
11 * This is an extension to the Linux operating system, and is covered by the
12 * same Gnu Public License that covers that work.
14 * Alphacode 0.82 (96/09/29) for Linux 2.0.0 (or later)
15 * Copyrights (c) 1994,1995,1996 by M.Hipp (hippm@informatik.uni-tuebingen.de)
16 * --------------------------
18 * Consult ni52.c for further notes from the original driver.
20 * This incarnation currently supports the OBIO version of the i82586 chip
21 * used in certain sun3 models. It should be fairly doable to expand this
22 * to support VME if I should every acquire such a board.
26 static int debuglevel
= 0; /* debug-printk 0: off 1: a few 2: more */
27 static int automatic_resume
= 0; /* experimental .. better should be zero */
28 static int rfdadd
= 0; /* rfdadd=1 may be better for 8K MEM cards */
29 static int fifo
=0x8; /* don't change */
31 /* #define REALLY_SLOW_IO */
33 #include <linux/module.h>
34 #include <linux/kernel.h>
35 #include <linux/string.h>
36 #include <linux/errno.h>
37 #include <linux/ioport.h>
38 #include <linux/slab.h>
39 #include <linux/interrupt.h>
40 #include <linux/delay.h>
41 #include <linux/init.h>
42 #include <asm/bitops.h>
44 #include <asm/idprom.h>
45 #include <asm/machines.h>
46 #include <asm/sun3mmu.h>
48 #include <asm/byteorder.h>
50 #include <linux/netdevice.h>
51 #include <linux/etherdevice.h>
52 #include <linux/skbuff.h>
54 #include "sun3_82586.h"
56 #define DEBUG /* debug on */
57 #define SYSBUSVAL 0 /* 16 Bit */
59 #define sun3_attn586() {*(volatile unsigned char *)(dev->base_addr) |= IEOB_ATTEN; *(volatile unsigned char *)(dev->base_addr) &= ~IEOB_ATTEN;}
60 #define sun3_reset586() {*(volatile unsigned char *)(dev->base_addr) = 0; udelay(100); *(volatile unsigned char *)(dev->base_addr) = IEOB_NORSET;}
61 #define sun3_disint() {*(volatile unsigned char *)(dev->base_addr) &= ~IEOB_IENAB;}
62 #define sun3_enaint() {*(volatile unsigned char *)(dev->base_addr) |= IEOB_IENAB;}
63 #define sun3_active() {*(volatile unsigned char *)(dev->base_addr) |= (IEOB_IENAB|IEOB_ONAIR|IEOB_NORSET);}
65 #define make32(ptr16) (p->memtop + (swab16((unsigned short) (ptr16))) )
66 #define make24(ptr32) (char *)swab32(( ((unsigned long) (ptr32)) - p->base))
67 #define make16(ptr32) (swab16((unsigned short) ((unsigned long)(ptr32) - (unsigned long) p->memtop )))
69 /******************* how to calculate the buffers *****************************
71 * IMPORTANT NOTE: if you configure only one NUM_XMIT_BUFFS, the driver works
72 * --------------- in a different (more stable?) mode. Only in this mode it's
73 * possible to configure the driver with 'NO_NOPCOMMANDS'
75 sizeof(scp)=12; sizeof(scb)=16; sizeof(iscp)=8;
76 sizeof(scp)+sizeof(iscp)+sizeof(scb) = 36 = INIT
77 sizeof(rfd) = 24; sizeof(rbd) = 12;
78 sizeof(tbd) = 8; sizeof(transmit_cmd) = 16;
81 * if you don't know the driver, better do not change these values: */
83 #define RECV_BUFF_SIZE 1536 /* slightly oversized */
84 #define XMIT_BUFF_SIZE 1536 /* slightly oversized */
85 #define NUM_XMIT_BUFFS 1 /* config for 32K shmem */
86 #define NUM_RECV_BUFFS_8 4 /* config for 32K shared mem */
87 #define NUM_RECV_BUFFS_16 9 /* config for 32K shared mem */
88 #define NUM_RECV_BUFFS_32 16 /* config for 32K shared mem */
89 #define NO_NOPCOMMANDS /* only possible with NUM_XMIT_BUFFS=1 */
91 /**************************************************************************/
93 /* different DELAYs */
94 #define DELAY(x) mdelay(32 * x);
95 #define DELAY_16(); { udelay(16); }
96 #define DELAY_18(); { udelay(4); }
98 /* wait for command with timeout: */
99 #define WAIT_4_SCB_CMD() \
101 for(i=0;i<16384;i++) { \
102 if(!p->scb->cmd_cuc) break; \
105 printk("%s: scb_cmd timed out: %04x,%04x .. disabling i82586!!\n",dev->name,p->scb->cmd_cuc,p->scb->cus); \
106 if(!p->reseted) { p->reseted = 1; sun3_reset586(); } } } }
108 #define WAIT_4_SCB_CMD_RUC() { int i; \
109 for(i=0;i<16384;i++) { \
110 if(!p->scb->cmd_ruc) break; \
113 printk("%s: scb_cmd (ruc) timed out: %04x,%04x .. disabling i82586!!\n",dev->name,p->scb->cmd_ruc,p->scb->rus); \
114 if(!p->reseted) { p->reseted = 1; sun3_reset586(); } } } }
116 #define WAIT_4_STAT_COMPL(addr) { int i; \
117 for(i=0;i<32767;i++) { \
118 if(swab16((addr)->cmd_status) & STAT_COMPL) break; \
119 DELAY_16(); DELAY_16(); } }
121 static int sun3_82586_probe1(struct net_device
*dev
,int ioaddr
);
122 static irqreturn_t
sun3_82586_interrupt(int irq
,void *dev_id
,struct pt_regs
*reg_ptr
);
123 static int sun3_82586_open(struct net_device
*dev
);
124 static int sun3_82586_close(struct net_device
*dev
);
125 static int sun3_82586_send_packet(struct sk_buff
*,struct net_device
*);
126 static struct net_device_stats
*sun3_82586_get_stats(struct net_device
*dev
);
127 static void set_multicast_list(struct net_device
*dev
);
128 static void sun3_82586_timeout(struct net_device
*dev
);
130 static void sun3_82586_dump(struct net_device
*,void *);
133 /* helper-functions */
134 static int init586(struct net_device
*dev
);
135 static int check586(struct net_device
*dev
,char *where
,unsigned size
);
136 static void alloc586(struct net_device
*dev
);
137 static void startrecv586(struct net_device
*dev
);
138 static void *alloc_rfa(struct net_device
*dev
,void *ptr
);
139 static void sun3_82586_rcv_int(struct net_device
*dev
);
140 static void sun3_82586_xmt_int(struct net_device
*dev
);
141 static void sun3_82586_rnr_int(struct net_device
*dev
);
145 struct net_device_stats stats
;
150 volatile struct rfd_struct
*rfd_last
,*rfd_top
,*rfd_first
;
151 volatile struct scp_struct
*scp
; /* volatile is important */
152 volatile struct iscp_struct
*iscp
; /* volatile is important */
153 volatile struct scb_struct
*scb
; /* volatile is important */
154 volatile struct tbd_struct
*xmit_buffs
[NUM_XMIT_BUFFS
];
155 volatile struct transmit_cmd_struct
*xmit_cmds
[NUM_XMIT_BUFFS
];
156 #if (NUM_XMIT_BUFFS == 1)
157 volatile struct nop_cmd_struct
*nop_cmds
[2];
159 volatile struct nop_cmd_struct
*nop_cmds
[NUM_XMIT_BUFFS
];
161 volatile int nop_point
,num_recv_buffs
;
162 volatile char *xmit_cbuffs
[NUM_XMIT_BUFFS
];
163 volatile int xmit_count
,xmit_last
;
166 /**********************************************
169 static int sun3_82586_close(struct net_device
*dev
)
171 free_irq(dev
->irq
, dev
);
173 sun3_reset586(); /* the hard way to stop the receiver */
175 netif_stop_queue(dev
);
180 /**********************************************
183 static int sun3_82586_open(struct net_device
*dev
)
193 ret
= request_irq(dev
->irq
, &sun3_82586_interrupt
,0,dev
->name
,dev
);
200 netif_start_queue(dev
);
202 return 0; /* most done by init */
205 /**********************************************
206 * Check to see if there's an 82586 out there.
208 static int check586(struct net_device
*dev
,char *where
,unsigned size
)
211 struct priv
*p
= /* (struct priv *) dev->priv*/ &pb
;
215 p
->base
= (unsigned long) dvma_btov(0);
216 p
->memtop
= (char *)dvma_btov((unsigned long)where
);
217 p
->scp
= (struct scp_struct
*)(p
->base
+ SCP_DEFAULT_ADDRESS
);
218 memset((char *)p
->scp
,0, sizeof(struct scp_struct
));
219 for(i
=0;i
<sizeof(struct scp_struct
);i
++) /* memory was writeable? */
220 if(((char *)p
->scp
)[i
])
222 p
->scp
->sysbus
= SYSBUSVAL
; /* 1 = 8Bit-Bus, 0 = 16 Bit */
223 if(p
->scp
->sysbus
!= SYSBUSVAL
)
226 iscp_addr
= (char *)dvma_btov((unsigned long)where
);
228 p
->iscp
= (struct iscp_struct
*) iscp_addr
;
229 memset((char *)p
->iscp
,0, sizeof(struct iscp_struct
));
231 p
->scp
->iscp
= make24(p
->iscp
);
236 DELAY(1); /* wait a while... */
238 if(p
->iscp
->busy
) /* i82586 clears 'busy' after successful init */
244 /******************************************************************
245 * set iscp at the right place, called by sun3_82586_probe1 and open586.
247 static void alloc586(struct net_device
*dev
)
249 struct priv
*p
= (struct priv
*) dev
->priv
;
254 p
->scp
= (struct scp_struct
*) (p
->base
+ SCP_DEFAULT_ADDRESS
);
255 p
->iscp
= (struct iscp_struct
*) dvma_btov(dev
->mem_start
);
256 p
->scb
= (struct scb_struct
*) ((char *)p
->iscp
+ sizeof(struct iscp_struct
));
258 memset((char *) p
->iscp
,0,sizeof(struct iscp_struct
));
259 memset((char *) p
->scp
,0,sizeof(struct scp_struct
));
261 p
->scp
->iscp
= make24(p
->iscp
);
262 p
->scp
->sysbus
= SYSBUSVAL
;
263 p
->iscp
->scb_offset
= make16(p
->scb
);
264 p
->iscp
->scb_base
= make24(dvma_btov(dev
->mem_start
));
273 printk("%s: Init-Problems (alloc).\n",dev
->name
);
277 memset((char *)p
->scb
,0,sizeof(struct scb_struct
));
280 int __init
sun3_82586_probe(struct net_device
*dev
)
282 unsigned long ioaddr
;
283 static int found
= 0;
285 /* check that this machine has an onboard 82586 */
286 switch(idprom
->id_machtype
) {
287 case SM_SUN3
|SM_3_160
:
288 case SM_SUN3
|SM_3_260
:
289 /* these machines have 82586 */
299 ioaddr
= (unsigned long)ioremap(IE_OBIO
, PAGE_SIZE
);
302 SET_MODULE_OWNER(dev
);
305 dev
->base_addr
= ioaddr
;
306 if(sun3_82586_probe1(dev
, ioaddr
) == 0)
312 static int __init
sun3_82586_probe1(struct net_device
*dev
,int ioaddr
)
316 // if (!request_region(ioaddr, SUN3_82586_TOTAL_SIZE, dev->name))
319 /* copy in the ethernet address from the prom */
320 for(i
= 0; i
< 6 ; i
++)
321 dev
->dev_addr
[i
] = idprom
->id_ethaddr
[i
];
323 printk("%s: SUN3 Intel 82586 found at %lx, ",dev
->name
,dev
->base_addr
);
326 * check (or search) IO-Memory, 32K
330 dev
->mem_start
= (unsigned long)dvma_malloc_align(0x8000, 0x1000);
331 dev
->mem_end
= dev
->mem_start
+ size
;
333 if(size
!= 0x2000 && size
!= 0x4000 && size
!= 0x8000) {
334 printk("\n%s: Illegal memory size %d. Allowed is 0x2000 or 0x4000 or 0x8000 bytes.\n",dev
->name
,size
);
338 if(!check586(dev
,(char *) dev
->mem_start
,size
)) {
339 printk("?memcheck, Can't find memory at 0x%lx with size %d!\n",dev
->mem_start
,size
);
344 dev
->priv
= (void *) kmalloc(sizeof(struct priv
),GFP_KERNEL
);
345 if(dev
->priv
== NULL
) {
346 printk("%s: Ooops .. can't allocate private driver memory.\n",dev
->name
);
351 /* warning: we don't free it on errors */
352 memset((char *) dev
->priv
,0,sizeof(struct priv
));
354 ((struct priv
*) (dev
->priv
))->memtop
= (char *)dvma_btov(dev
->mem_start
);
355 ((struct priv
*) (dev
->priv
))->base
= (unsigned long) dvma_btov(0);
358 /* set number of receive-buffs according to memsize */
360 ((struct priv
*) dev
->priv
)->num_recv_buffs
= NUM_RECV_BUFFS_8
;
361 else if(size
== 0x4000)
362 ((struct priv
*) dev
->priv
)->num_recv_buffs
= NUM_RECV_BUFFS_16
;
364 ((struct priv
*) dev
->priv
)->num_recv_buffs
= NUM_RECV_BUFFS_32
;
366 printk("Memaddr: 0x%lx, Memsize: %d, IRQ %d\n",dev
->mem_start
,size
, dev
->irq
);
368 dev
->open
= sun3_82586_open
;
369 dev
->stop
= sun3_82586_close
;
370 dev
->get_stats
= sun3_82586_get_stats
;
371 dev
->tx_timeout
= sun3_82586_timeout
;
372 dev
->watchdog_timeo
= HZ
/20;
373 dev
->hard_start_xmit
= sun3_82586_send_packet
;
374 dev
->set_multicast_list
= set_multicast_list
;
386 static int init586(struct net_device
*dev
)
390 struct priv
*p
= (struct priv
*) dev
->priv
;
391 volatile struct configure_cmd_struct
*cfg_cmd
;
392 volatile struct iasetup_cmd_struct
*ias_cmd
;
393 volatile struct tdr_cmd_struct
*tdr_cmd
;
394 volatile struct mcsetup_cmd_struct
*mc_cmd
;
395 struct dev_mc_list
*dmi
=dev
->mc_list
;
396 int num_addrs
=dev
->mc_count
;
398 ptr
= (void *) ((char *)p
->scb
+ sizeof(struct scb_struct
));
400 cfg_cmd
= (struct configure_cmd_struct
*)ptr
; /* configure-command */
401 cfg_cmd
->cmd_status
= 0;
402 cfg_cmd
->cmd_cmd
= swab16(CMD_CONFIGURE
| CMD_LAST
);
403 cfg_cmd
->cmd_link
= 0xffff;
405 cfg_cmd
->byte_cnt
= 0x0a; /* number of cfg bytes */
406 cfg_cmd
->fifo
= fifo
; /* fifo-limit (8=tx:32/rx:64) */
407 cfg_cmd
->sav_bf
= 0x40; /* hold or discard bad recv frames (bit 7) */
408 cfg_cmd
->adr_len
= 0x2e; /* addr_len |!src_insert |pre-len |loopback */
409 cfg_cmd
->priority
= 0x00;
411 cfg_cmd
->time_low
= 0x00;
412 cfg_cmd
->time_high
= 0xf2;
413 cfg_cmd
->promisc
= 0;
414 if(dev
->flags
& IFF_ALLMULTI
) {
415 int len
= ((char *) p
->iscp
- (char *) ptr
- 8) / 6;
416 if(num_addrs
> len
) {
417 printk("%s: switching to promisc. mode\n",dev
->name
);
418 dev
->flags
|=IFF_PROMISC
;
421 if(dev
->flags
&IFF_PROMISC
)
424 dev
->flags
|=IFF_PROMISC
;
426 cfg_cmd
->carr_coll
= 0x00;
428 p
->scb
->cbl_offset
= make16(cfg_cmd
);
431 p
->scb
->cmd_cuc
= CUC_START
; /* cmd.-unit start */
434 WAIT_4_STAT_COMPL(cfg_cmd
);
436 if((swab16(cfg_cmd
->cmd_status
) & (STAT_OK
|STAT_COMPL
)) != (STAT_COMPL
|STAT_OK
))
438 printk("%s: configure command failed: %x\n",dev
->name
,swab16(cfg_cmd
->cmd_status
));
443 * individual address setup
446 ias_cmd
= (struct iasetup_cmd_struct
*)ptr
;
448 ias_cmd
->cmd_status
= 0;
449 ias_cmd
->cmd_cmd
= swab16(CMD_IASETUP
| CMD_LAST
);
450 ias_cmd
->cmd_link
= 0xffff;
452 memcpy((char *)&ias_cmd
->iaddr
,(char *) dev
->dev_addr
,ETH_ALEN
);
454 p
->scb
->cbl_offset
= make16(ias_cmd
);
456 p
->scb
->cmd_cuc
= CUC_START
; /* cmd.-unit start */
459 WAIT_4_STAT_COMPL(ias_cmd
);
461 if((swab16(ias_cmd
->cmd_status
) & (STAT_OK
|STAT_COMPL
)) != (STAT_OK
|STAT_COMPL
)) {
462 printk("%s (82586): individual address setup command failed: %04x\n",dev
->name
,swab16(ias_cmd
->cmd_status
));
467 * TDR, wire check .. e.g. no resistor e.t.c
470 tdr_cmd
= (struct tdr_cmd_struct
*)ptr
;
472 tdr_cmd
->cmd_status
= 0;
473 tdr_cmd
->cmd_cmd
= swab16(CMD_TDR
| CMD_LAST
);
474 tdr_cmd
->cmd_link
= 0xffff;
477 p
->scb
->cbl_offset
= make16(tdr_cmd
);
478 p
->scb
->cmd_cuc
= CUC_START
; /* cmd.-unit start */
481 WAIT_4_STAT_COMPL(tdr_cmd
);
483 if(!(swab16(tdr_cmd
->cmd_status
) & STAT_COMPL
))
485 printk("%s: Problems while running the TDR.\n",dev
->name
);
489 DELAY_16(); /* wait for result */
490 result
= swab16(tdr_cmd
->status
);
492 p
->scb
->cmd_cuc
= p
->scb
->cus
& STAT_MASK
;
493 sun3_attn586(); /* ack the interrupts */
495 if(result
& TDR_LNK_OK
)
497 else if(result
& TDR_XCVR_PRB
)
498 printk("%s: TDR: Transceiver problem. Check the cable(s)!\n",dev
->name
);
499 else if(result
& TDR_ET_OPN
)
500 printk("%s: TDR: No correct termination %d clocks away.\n",dev
->name
,result
& TDR_TIMEMASK
);
501 else if(result
& TDR_ET_SRT
)
503 if (result
& TDR_TIMEMASK
) /* time == 0 -> strange :-) */
504 printk("%s: TDR: Detected a short circuit %d clocks away.\n",dev
->name
,result
& TDR_TIMEMASK
);
507 printk("%s: TDR: Unknown status %04x\n",dev
->name
,result
);
513 if(num_addrs
&& !(dev
->flags
& IFF_PROMISC
) )
515 mc_cmd
= (struct mcsetup_cmd_struct
*) ptr
;
516 mc_cmd
->cmd_status
= 0;
517 mc_cmd
->cmd_cmd
= swab16(CMD_MCSETUP
| CMD_LAST
);
518 mc_cmd
->cmd_link
= 0xffff;
519 mc_cmd
->mc_cnt
= swab16(num_addrs
* 6);
521 for(i
=0;i
<num_addrs
;i
++,dmi
=dmi
->next
)
522 memcpy((char *) mc_cmd
->mc_list
[i
], dmi
->dmi_addr
,6);
524 p
->scb
->cbl_offset
= make16(mc_cmd
);
525 p
->scb
->cmd_cuc
= CUC_START
;
528 WAIT_4_STAT_COMPL(mc_cmd
);
530 if( (swab16(mc_cmd
->cmd_status
) & (STAT_COMPL
|STAT_OK
)) != (STAT_COMPL
|STAT_OK
) )
531 printk("%s: Can't apply multicast-address-list.\n",dev
->name
);
535 * alloc nop/xmit-cmds
537 #if (NUM_XMIT_BUFFS == 1)
540 p
->nop_cmds
[i
] = (struct nop_cmd_struct
*)ptr
;
541 p
->nop_cmds
[i
]->cmd_cmd
= swab16(CMD_NOP
);
542 p
->nop_cmds
[i
]->cmd_status
= 0;
543 p
->nop_cmds
[i
]->cmd_link
= make16((p
->nop_cmds
[i
]));
544 ptr
= (char *) ptr
+ sizeof(struct nop_cmd_struct
);
547 for(i
=0;i
<NUM_XMIT_BUFFS
;i
++)
549 p
->nop_cmds
[i
] = (struct nop_cmd_struct
*)ptr
;
550 p
->nop_cmds
[i
]->cmd_cmd
= swab16(CMD_NOP
);
551 p
->nop_cmds
[i
]->cmd_status
= 0;
552 p
->nop_cmds
[i
]->cmd_link
= make16((p
->nop_cmds
[i
]));
553 ptr
= (char *) ptr
+ sizeof(struct nop_cmd_struct
);
557 ptr
= alloc_rfa(dev
,(void *)ptr
); /* init receive-frame-area */
560 * alloc xmit-buffs / init xmit_cmds
562 for(i
=0;i
<NUM_XMIT_BUFFS
;i
++)
564 p
->xmit_cmds
[i
] = (struct transmit_cmd_struct
*)ptr
; /*transmit cmd/buff 0*/
565 ptr
= (char *) ptr
+ sizeof(struct transmit_cmd_struct
);
566 p
->xmit_cbuffs
[i
] = (char *)ptr
; /* char-buffs */
567 ptr
= (char *) ptr
+ XMIT_BUFF_SIZE
;
568 p
->xmit_buffs
[i
] = (struct tbd_struct
*)ptr
; /* TBD */
569 ptr
= (char *) ptr
+ sizeof(struct tbd_struct
);
570 if((void *)ptr
> (void *)dev
->mem_end
)
572 printk("%s: not enough shared-mem for your configuration!\n",dev
->name
);
575 memset((char *)(p
->xmit_cmds
[i
]) ,0, sizeof(struct transmit_cmd_struct
));
576 memset((char *)(p
->xmit_buffs
[i
]),0, sizeof(struct tbd_struct
));
577 p
->xmit_cmds
[i
]->cmd_link
= make16(p
->nop_cmds
[(i
+1)%NUM_XMIT_BUFFS
]);
578 p
->xmit_cmds
[i
]->cmd_status
= swab16(STAT_COMPL
);
579 p
->xmit_cmds
[i
]->cmd_cmd
= swab16(CMD_XMIT
| CMD_INT
);
580 p
->xmit_cmds
[i
]->tbd_offset
= make16((p
->xmit_buffs
[i
]));
581 p
->xmit_buffs
[i
]->next
= 0xffff;
582 p
->xmit_buffs
[i
]->buffer
= make24((p
->xmit_cbuffs
[i
]));
587 #ifndef NO_NOPCOMMANDS
592 * 'start transmitter'
594 #ifndef NO_NOPCOMMANDS
595 p
->scb
->cbl_offset
= make16(p
->nop_cmds
[0]);
596 p
->scb
->cmd_cuc
= CUC_START
;
600 p
->xmit_cmds
[0]->cmd_link
= make16(p
->xmit_cmds
[0]);
601 p
->xmit_cmds
[0]->cmd_cmd
= swab16(CMD_XMIT
| CMD_SUSPEND
| CMD_INT
);
607 p
->scb
->cmd_cuc
= p
->scb
->cus
& STAT_MASK
;
617 /******************************************************
618 * This is a helper routine for sun3_82586_rnr_int() and init586().
619 * It sets up the Receive Frame Area (RFA).
622 static void *alloc_rfa(struct net_device
*dev
,void *ptr
)
624 volatile struct rfd_struct
*rfd
= (struct rfd_struct
*)ptr
;
625 volatile struct rbd_struct
*rbd
;
627 struct priv
*p
= (struct priv
*) dev
->priv
;
629 memset((char *) rfd
,0,sizeof(struct rfd_struct
)*(p
->num_recv_buffs
+rfdadd
));
632 for(i
= 0; i
< (p
->num_recv_buffs
+rfdadd
); i
++) {
633 rfd
[i
].next
= make16(rfd
+ (i
+1) % (p
->num_recv_buffs
+rfdadd
) );
634 rfd
[i
].rbd_offset
= 0xffff;
636 rfd
[p
->num_recv_buffs
-1+rfdadd
].last
= RFD_SUSP
; /* RU suspend */
638 ptr
= (void *) (rfd
+ (p
->num_recv_buffs
+ rfdadd
) );
640 rbd
= (struct rbd_struct
*) ptr
;
641 ptr
= (void *) (rbd
+ p
->num_recv_buffs
);
643 /* clr descriptors */
644 memset((char *) rbd
,0,sizeof(struct rbd_struct
)*(p
->num_recv_buffs
));
646 for(i
=0;i
<p
->num_recv_buffs
;i
++)
648 rbd
[i
].next
= make16((rbd
+ (i
+1) % p
->num_recv_buffs
));
649 rbd
[i
].size
= swab16(RECV_BUFF_SIZE
);
650 rbd
[i
].buffer
= make24(ptr
);
651 ptr
= (char *) ptr
+ RECV_BUFF_SIZE
;
654 p
->rfd_top
= p
->rfd_first
;
655 p
->rfd_last
= p
->rfd_first
+ (p
->num_recv_buffs
- 1 + rfdadd
);
657 p
->scb
->rfa_offset
= make16(p
->rfd_first
);
658 p
->rfd_first
->rbd_offset
= make16(rbd
);
664 /**************************************************
665 * Interrupt Handler ...
668 static irqreturn_t
sun3_82586_interrupt(int irq
,void *dev_id
,struct pt_regs
*reg_ptr
)
670 struct net_device
*dev
= dev_id
;
676 printk ("sun3_82586-interrupt: irq %d for unknown device.\n",irq
);
679 p
= (struct priv
*) dev
->priv
;
684 WAIT_4_SCB_CMD(); /* wait for last command */
686 while((stat
=p
->scb
->cus
& STAT_MASK
))
688 p
->scb
->cmd_cuc
= stat
;
691 if(stat
& STAT_FR
) /* received a frame */
692 sun3_82586_rcv_int(dev
);
694 if(stat
& STAT_RNR
) /* RU went 'not ready' */
697 if(p
->scb
->rus
& RU_SUSPEND
) /* special case: RU_SUSPEND */
700 p
->scb
->cmd_ruc
= RUC_RESUME
;
702 WAIT_4_SCB_CMD_RUC();
706 printk("%s: Receiver-Unit went 'NOT READY': %04x/%02x.\n",dev
->name
,(int) stat
,(int) p
->scb
->rus
);
707 sun3_82586_rnr_int(dev
);
711 if(stat
& STAT_CX
) /* command with I-bit set complete */
712 sun3_82586_xmt_int(dev
);
714 #ifndef NO_NOPCOMMANDS
715 if(stat
& STAT_CNA
) /* CU went 'not ready' */
717 if(netif_running(dev
))
718 printk("%s: oops! CU has left active state. stat: %04x/%02x.\n",dev
->name
,(int) stat
,(int) p
->scb
->cus
);
725 WAIT_4_SCB_CMD(); /* wait for ack. (sun3_82586_xmt_int can be faster than ack!!) */
726 if(p
->scb
->cmd_cuc
) /* timed out? */
728 printk("%s: Acknowledge timed out.\n",dev
->name
);
739 /*******************************************************
743 static void sun3_82586_rcv_int(struct net_device
*dev
)
746 unsigned short totlen
;
748 struct rbd_struct
*rbd
;
749 struct priv
*p
= (struct priv
*) dev
->priv
;
754 for(;(status
= p
->rfd_top
->stat_high
) & RFD_COMPL
;)
756 rbd
= (struct rbd_struct
*) make32(p
->rfd_top
->rbd_offset
);
758 if(status
& RFD_OK
) /* frame received without error? */
760 if( (totlen
= swab16(rbd
->status
)) & RBD_LAST
) /* the first and the last buffer? */
762 totlen
&= RBD_MASK
; /* length of this frame */
764 skb
= (struct sk_buff
*) dev_alloc_skb(totlen
+2);
770 eth_copy_and_sum(skb
,(char *) p
->base
+swab32((unsigned long) rbd
->buffer
),totlen
,0);
771 skb
->protocol
=eth_type_trans(skb
,dev
);
773 p
->stats
.rx_packets
++;
776 p
->stats
.rx_dropped
++;
781 /* free all RBD's until RBD_LAST is set */
783 while(!((rstat
=swab16(rbd
->status
)) & RBD_LAST
))
785 totlen
+= rstat
& RBD_MASK
;
788 printk("%s: Whoops .. no end mark in RBD list\n",dev
->name
);
792 rbd
= (struct rbd_struct
*) make32(rbd
->next
);
794 totlen
+= rstat
& RBD_MASK
;
796 printk("%s: received oversized frame! length: %d\n",dev
->name
,totlen
);
797 p
->stats
.rx_dropped
++;
800 else /* frame !(ok), only with 'save-bad-frames' */
802 printk("%s: oops! rfd-error-status: %04x\n",dev
->name
,status
);
803 p
->stats
.rx_errors
++;
805 p
->rfd_top
->stat_high
= 0;
806 p
->rfd_top
->last
= RFD_SUSP
; /* maybe exchange by RFD_LAST */
807 p
->rfd_top
->rbd_offset
= 0xffff;
808 p
->rfd_last
->last
= 0; /* delete RFD_SUSP */
809 p
->rfd_last
= p
->rfd_top
;
810 p
->rfd_top
= (struct rfd_struct
*) make32(p
->rfd_top
->next
); /* step to next RFD */
811 p
->scb
->rfa_offset
= make16(p
->rfd_top
);
820 p
->scb
->cmd_ruc
= RUC_RESUME
;
822 WAIT_4_SCB_CMD_RUC();
830 if(p
->rfd_top
->status
)
834 printk("%s: RU hasn't fetched next RFD (not busy/complete)\n",dev
->name
);
843 volatile struct rfd_struct
*rfds
=p
->rfd_top
;
844 volatile struct rbd_struct
*rbds
;
845 printk("%s: received a FC intr. without having a frame: %04x %d\n",dev
->name
,status
,old_at_least
);
846 for(i
=0;i
< (p
->num_recv_buffs
+4);i
++)
848 rbds
= (struct rbd_struct
*) make32(rfds
->rbd_offset
);
849 printk("%04x:%04x ",rfds
->status
,rbds
->status
);
850 rfds
= (struct rfd_struct
*) make32(rfds
->next
);
852 printk("\nerrs: %04x %04x stat: %04x\n",(int)p
->scb
->rsc_errs
,(int)p
->scb
->ovrn_errs
,(int)p
->scb
->status
);
853 printk("\nerrs: %04x %04x rus: %02x, cus: %02x\n",(int)p
->scb
->rsc_errs
,(int)p
->scb
->ovrn_errs
,(int)p
->scb
->rus
,(int)p
->scb
->cus
);
855 old_at_least
= at_least_one
;
862 /**********************************************************
863 * handle 'Receiver went not ready'.
866 static void sun3_82586_rnr_int(struct net_device
*dev
)
868 struct priv
*p
= (struct priv
*) dev
->priv
;
870 p
->stats
.rx_errors
++;
872 WAIT_4_SCB_CMD(); /* wait for the last cmd, WAIT_4_FULLSTAT?? */
873 p
->scb
->cmd_ruc
= RUC_ABORT
; /* usually the RU is in the 'no resource'-state .. abort it now. */
875 WAIT_4_SCB_CMD_RUC(); /* wait for accept cmd. */
877 alloc_rfa(dev
,(char *)p
->rfd_first
);
878 /* maybe add a check here, before restarting the RU */
879 startrecv586(dev
); /* restart RU */
881 printk("%s: Receive-Unit restarted. Status: %04x\n",dev
->name
,p
->scb
->rus
);
885 /**********************************************************
886 * handle xmit - interrupt
889 static void sun3_82586_xmt_int(struct net_device
*dev
)
892 struct priv
*p
= (struct priv
*) dev
->priv
;
897 status
= swab16(p
->xmit_cmds
[p
->xmit_last
]->cmd_status
);
898 if(!(status
& STAT_COMPL
))
899 printk("%s: strange .. xmit-int without a 'COMPLETE'\n",dev
->name
);
903 p
->stats
.tx_packets
++;
904 p
->stats
.collisions
+= (status
& TCMD_MAXCOLLMASK
);
908 p
->stats
.tx_errors
++;
909 if(status
& TCMD_LATECOLL
) {
910 printk("%s: late collision detected.\n",dev
->name
);
911 p
->stats
.collisions
++;
913 else if(status
& TCMD_NOCARRIER
) {
914 p
->stats
.tx_carrier_errors
++;
915 printk("%s: no carrier detected.\n",dev
->name
);
917 else if(status
& TCMD_LOSTCTS
)
918 printk("%s: loss of CTS detected.\n",dev
->name
);
919 else if(status
& TCMD_UNDERRUN
) {
920 p
->stats
.tx_fifo_errors
++;
921 printk("%s: DMA underrun detected.\n",dev
->name
);
923 else if(status
& TCMD_MAXCOLL
) {
924 printk("%s: Max. collisions exceeded.\n",dev
->name
);
925 p
->stats
.collisions
+= 16;
929 #if (NUM_XMIT_BUFFS > 1)
930 if( (++p
->xmit_last
) == NUM_XMIT_BUFFS
)
933 netif_wake_queue(dev
);
936 /***********************************************************
937 * (re)start the receiver
940 static void startrecv586(struct net_device
*dev
)
942 struct priv
*p
= (struct priv
*) dev
->priv
;
945 WAIT_4_SCB_CMD_RUC();
946 p
->scb
->rfa_offset
= make16(p
->rfd_first
);
947 p
->scb
->cmd_ruc
= RUC_START
;
948 sun3_attn586(); /* start cmd. */
949 WAIT_4_SCB_CMD_RUC(); /* wait for accept cmd. (no timeout!!) */
952 static void sun3_82586_timeout(struct net_device
*dev
)
954 struct priv
*p
= (struct priv
*) dev
->priv
;
955 #ifndef NO_NOPCOMMANDS
956 if(p
->scb
->cus
& CU_ACTIVE
) /* COMMAND-UNIT active? */
958 netif_wake_queue(dev
);
960 printk("%s: strange ... timeout with CU active?!?\n",dev
->name
);
961 printk("%s: X0: %04x N0: %04x N1: %04x %d\n",dev
->name
,(int)swab16(p
->xmit_cmds
[0]->cmd_status
),(int)swab16(p
->nop_cmds
[0]->cmd_status
),(int)swab16(p
->nop_cmds
[1]->cmd_status
),(int)p
->nop_point
);
963 p
->scb
->cmd_cuc
= CUC_ABORT
;
966 p
->scb
->cbl_offset
= make16(p
->nop_cmds
[p
->nop_point
]);
967 p
->scb
->cmd_cuc
= CUC_START
;
970 dev
->trans_start
= jiffies
;
976 printk("%s: xmitter timed out, try to restart! stat: %02x\n",dev
->name
,p
->scb
->cus
);
977 printk("%s: command-stats: %04x %04x\n",dev
->name
,swab16(p
->xmit_cmds
[0]->cmd_status
),swab16(p
->xmit_cmds
[1]->cmd_status
));
978 printk("%s: check, whether you set the right interrupt number!\n",dev
->name
);
980 sun3_82586_close(dev
);
981 sun3_82586_open(dev
);
983 dev
->trans_start
= jiffies
;
986 /******************************************************
990 static int sun3_82586_send_packet(struct sk_buff
*skb
, struct net_device
*dev
)
993 #ifndef NO_NOPCOMMANDS
996 struct priv
*p
= (struct priv
*) dev
->priv
;
998 if(skb
->len
> XMIT_BUFF_SIZE
)
1000 printk("%s: Sorry, max. framelength is %d bytes. The length of your frame is %d bytes.\n",dev
->name
,XMIT_BUFF_SIZE
,skb
->len
);
1004 netif_stop_queue(dev
);
1006 #if(NUM_XMIT_BUFFS > 1)
1007 if(test_and_set_bit(0,(void *) &p
->lock
)) {
1008 printk("%s: Queue was locked\n",dev
->name
);
1015 if (len
< ETH_ZLEN
) {
1016 memset((char *)p
->xmit_cbuffs
[p
->xmit_count
], 0, ETH_ZLEN
);
1019 memcpy((char *)p
->xmit_cbuffs
[p
->xmit_count
],(char *)(skb
->data
),skb
->len
);
1021 #if (NUM_XMIT_BUFFS == 1)
1022 # ifdef NO_NOPCOMMANDS
1025 if(p
->scb
->cus
& CU_ACTIVE
)
1027 printk("%s: Hmmm .. CU is still running and we wanna send a new packet.\n",dev
->name
);
1028 printk("%s: stat: %04x %04x\n",dev
->name
,p
->scb
->cus
,swab16(p
->xmit_cmds
[0]->cmd_status
));
1032 p
->xmit_buffs
[0]->size
= swab16(TBD_LAST
| len
);
1035 p
->xmit_cmds
[0]->cmd_status
= 0;
1037 if( (p
->scb
->cus
& CU_STATUS
) == CU_SUSPEND
)
1038 p
->scb
->cmd_cuc
= CUC_RESUME
;
1041 p
->scb
->cbl_offset
= make16(p
->xmit_cmds
[0]);
1042 p
->scb
->cmd_cuc
= CUC_START
;
1046 dev
->trans_start
= jiffies
;
1050 if( (p
->scb
->cus
& CU_ACTIVE
)) /* test it, because CU sometimes doesn't start immediately */
1052 if(p
->xmit_cmds
[0]->cmd_status
)
1055 printk("%s: Can't start transmit-command.\n",dev
->name
);
1058 next_nop
= (p
->nop_point
+ 1) & 0x1;
1059 p
->xmit_buffs
[0]->size
= swab16(TBD_LAST
| len
);
1061 p
->xmit_cmds
[0]->cmd_link
= p
->nop_cmds
[next_nop
]->cmd_link
1062 = make16((p
->nop_cmds
[next_nop
]));
1063 p
->xmit_cmds
[0]->cmd_status
= p
->nop_cmds
[next_nop
]->cmd_status
= 0;
1065 p
->nop_cmds
[p
->nop_point
]->cmd_link
= make16((p
->xmit_cmds
[0]));
1066 dev
->trans_start
= jiffies
;
1067 p
->nop_point
= next_nop
;
1071 p
->xmit_buffs
[p
->xmit_count
]->size
= swab16(TBD_LAST
| len
);
1072 if( (next_nop
= p
->xmit_count
+ 1) == NUM_XMIT_BUFFS
)
1075 p
->xmit_cmds
[p
->xmit_count
]->cmd_status
= 0;
1076 /* linkpointer of xmit-command already points to next nop cmd */
1077 p
->nop_cmds
[next_nop
]->cmd_link
= make16((p
->nop_cmds
[next_nop
]));
1078 p
->nop_cmds
[next_nop
]->cmd_status
= 0;
1080 p
->nop_cmds
[p
->xmit_count
]->cmd_link
= make16((p
->xmit_cmds
[p
->xmit_count
]));
1081 dev
->trans_start
= jiffies
;
1082 p
->xmit_count
= next_nop
;
1085 unsigned long flags
;
1086 local_irq_save(flags
);
1087 if(p
->xmit_count
!= p
->xmit_last
)
1088 netif_wake_queue(dev
);
1090 local_irq_restore(flags
);
1098 /*******************************************
1099 * Someone wanna have the statistics
1102 static struct net_device_stats
*sun3_82586_get_stats(struct net_device
*dev
)
1104 struct priv
*p
= (struct priv
*) dev
->priv
;
1105 unsigned short crc
,aln
,rsc
,ovrn
;
1107 crc
= swab16(p
->scb
->crc_errs
); /* get error-statistic from the ni82586 */
1108 p
->scb
->crc_errs
= 0;
1109 aln
= swab16(p
->scb
->aln_errs
);
1110 p
->scb
->aln_errs
= 0;
1111 rsc
= swab16(p
->scb
->rsc_errs
);
1112 p
->scb
->rsc_errs
= 0;
1113 ovrn
= swab16(p
->scb
->ovrn_errs
);
1114 p
->scb
->ovrn_errs
= 0;
1116 p
->stats
.rx_crc_errors
+= crc
;
1117 p
->stats
.rx_fifo_errors
+= ovrn
;
1118 p
->stats
.rx_frame_errors
+= aln
;
1119 p
->stats
.rx_dropped
+= rsc
;
1124 /********************************************************
1128 static void set_multicast_list(struct net_device
*dev
)
1130 netif_stop_queue(dev
);
1136 netif_wake_queue(dev
);
1140 #error This code is not currently supported as a module
1141 static struct net_device dev_sun3_82586
;
1143 int init_module(void)
1145 dev_sun3_82586
.init
= sun3_82586_probe
;
1146 if (register_netdev(&dev_sun3_82586
) != 0)
1151 void cleanup_module(void)
1153 unregister_netdev(&dev_sun3_82586
);
1154 kfree(dev_sun3_82586
.priv
);
1155 dev_sun3_82586
.priv
= NULL
;
1161 * DUMP .. we expect a not running CMD unit and enough space
1163 void sun3_82586_dump(struct net_device
*dev
,void *ptr
)
1165 struct priv
*p
= (struct priv
*) dev
->priv
;
1166 struct dump_cmd_struct
*dump_cmd
= (struct dump_cmd_struct
*) ptr
;
1169 p
->scb
->cmd_cuc
= CUC_ABORT
;
1172 WAIT_4_SCB_CMD_RUC();
1174 dump_cmd
->cmd_status
= 0;
1175 dump_cmd
->cmd_cmd
= CMD_DUMP
| CMD_LAST
;
1176 dump_cmd
->dump_offset
= make16((dump_cmd
+ 1));
1177 dump_cmd
->cmd_link
= 0xffff;
1179 p
->scb
->cbl_offset
= make16(dump_cmd
);
1180 p
->scb
->cmd_cuc
= CUC_START
;
1182 WAIT_4_STAT_COMPL(dump_cmd
);
1184 if( (dump_cmd
->cmd_status
& (STAT_COMPL
|STAT_OK
)) != (STAT_COMPL
|STAT_OK
) )
1185 printk("%s: Can't get dump information.\n",dev
->name
);
1187 for(i
=0;i
<170;i
++) {
1188 printk("%02x ",(int) ((unsigned char *) (dump_cmd
+ 1))[i
]);
1196 MODULE_LICENSE("GPL");