782a7b757ba046eeea69aab852e2d0b23002dc71
[dragonfly.git] / sys / dev / netif / le / if_le.c
1 /*-
2  * Copyright (c) 1994 Matt Thomas (thomas@lkg.dec.com)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. The name of the author may not be used to endorse or promote products
11  *    derived from this software withough specific prior written permission
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  *
24  * $FreeBSD: src/sys/i386/isa/if_le.c,v 1.56.2.4 2002/06/05 23:24:10 paul Exp $
25  * $DragonFly: src/sys/dev/netif/le/if_le.c,v 1.27 2005/09/21 21:03:10 hsu Exp $
26  */
27
28 /*
29  * DEC EtherWORKS 2 Ethernet Controllers
30  * DEC EtherWORKS 3 Ethernet Controllers
31  *
32  * Written by Matt Thomas
33  * BPF support code stolen directly from if_ec.c
34  *
35  *   This driver supports the DEPCA, DE100, DE101, DE200, DE201,
36  *   DE2002, DE203, DE204, DE205, and DE422 cards.
37  */
38
39 #include "use_le.h"
40 #include "opt_inet.h"
41 #include "opt_ipx.h"
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/conf.h>
46 #include <sys/mbuf.h>
47 #include <sys/socket.h>
48 #include <sys/sockio.h>
49 #include <sys/thread2.h>
50 #include <sys/malloc.h>
51 #include <sys/linker_set.h>
52 #include <sys/module.h>
53
54 #include <net/ethernet.h>
55 #include <net/if.h>
56 #include <net/ifq_var.h>
57 #include <net/if_types.h>
58 #include <net/if_dl.h>
59
60 #include <netinet/in.h>
61 #include <netinet/if_ether.h>
62
63 #include <bus/isa/i386/isa_device.h>
64 #include <i386/isa/icu.h>
65
66 #include <vm/vm.h>
67 #include <vm/pmap.h>
68
69 #include <net/bpf.h>
70
71 typedef u_short le_mcbits_t;
72 #define LE_MC_NBPW_LOG2         4
73 #define LE_MC_NBPW              (1 << LE_MC_NBPW_LOG2)
74
75 struct le_softc;
76
77 struct le_board {
78     int (*bd_probe)(struct le_softc *sc, const struct le_board *bd, int *msize);
79 };
80
81 /*
82  * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
83  *
84  * Start of DEC EtherWORKS III (LEMAC) dependent structures
85  *
86  */
87 #include <i386/isa/ic/lemac.h>          /* Include LEMAC definitions */
88
89 DECLARE_DUMMY_MODULE(if_le);
90
91 static int lemac_probe(struct le_softc *sc, const struct le_board *bd, int *msize);
92
93 struct le_lemac_info {
94     u_int lemac__lastpage;              /* last 2K page */
95     u_int lemac__memmode;               /* Are we in 2K, 32K, or 64K mode */
96     u_int lemac__membase;               /* Physical address of start of RAM */
97     u_int lemac__txctl;                 /* Transmit Control Byte */
98     u_int lemac__txmax;                 /* Maximum # of outstanding transmits */
99     le_mcbits_t lemac__mctbl[LEMAC_MCTBL_SIZE/sizeof(le_mcbits_t)];
100                                         /* local copy of multicast table */
101     u_char lemac__eeprom[LEMAC_EEP_SIZE]; /* local copy eeprom */
102     char lemac__prodname[LEMAC_EEP_PRDNMSZ+1]; /* prodname name */
103 #define lemac_lastpage          le_un.un_lemac.lemac__lastpage
104 #define lemac_memmode           le_un.un_lemac.lemac__memmode
105 #define lemac_membase           le_un.un_lemac.lemac__membase
106 #define lemac_txctl             le_un.un_lemac.lemac__txctl
107 #define lemac_txmax             le_un.un_lemac.lemac__txmax
108 #define lemac_mctbl             le_un.un_lemac.lemac__mctbl
109 #define lemac_eeprom            le_un.un_lemac.lemac__eeprom
110 #define lemac_prodname          le_un.un_lemac.lemac__prodname
111 };
112
113 /*
114  * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
115  *
116  * Start of DEC EtherWORKS II (LANCE) dependent structures
117  *
118  */
119
120 #include <i386/isa/ic/am7990.h>
121
122 #ifndef LN_DOSTATS
123 #define LN_DOSTATS      1
124 #endif
125
126 static int depca_probe(struct le_softc *sc, const struct le_board *bd, int *msize);
127
128 typedef struct lance_descinfo lance_descinfo_t;
129 typedef struct lance_ring lance_ring_t;
130
131 typedef unsigned lance_addr_t;
132
133 struct lance_descinfo {
134     caddr_t di_addr;                    /* address of descriptor */
135     lance_addr_t di_bufaddr;            /* LANCE address of buffer owned by descriptor */
136     unsigned di_buflen;                 /* size of buffer owned by descriptor */
137     struct mbuf *di_mbuf;               /* mbuf being transmitted/received */
138 };
139
140 struct lance_ring {
141     lance_descinfo_t *ri_first;         /* Pointer to first descriptor in ring */
142     lance_descinfo_t *ri_last;          /* Pointer to last + 1 descriptor in ring */
143     lance_descinfo_t *ri_nextin;        /* Pointer to next one to be given to HOST */
144     lance_descinfo_t *ri_nextout;       /* Pointer to next one to be given to LANCE */
145     unsigned ri_max;                    /* Size of Ring - 1 */
146     unsigned ri_free;                   /* Number of free rings entires (owned by HOST) */
147     lance_addr_t ri_heap;                       /* Start of RAM for this ring */
148     lance_addr_t ri_heapend;            /* End + 1 of RAM for this ring */
149     lance_addr_t ri_outptr;                     /* Pointer to first output byte */
150     unsigned ri_outsize;                /* Space remaining for output */
151 };
152
153 struct le_lance_info {
154     unsigned lance__csr1;               /* LANCE Address of init block (low 16) */
155     unsigned lance__csr2;               /* LANCE Address of init block (high 8) */
156     unsigned lance__csr3;               /* Copy of CSR3 */
157     unsigned lance__rap;                /* IO Port Offset of RAP */
158     unsigned lance__rdp;                /* IO Port Offset of RDP */
159     unsigned lance__ramoffset;          /* Offset to valid LANCE RAM */
160     unsigned lance__ramsize;            /* Amount of RAM shared by LANCE */
161     unsigned lance__rxbufsize;          /* Size of a receive buffer */
162     ln_initb_t lance__initb;            /* local copy of LANCE initblock */
163     ln_initb_t *lance__raminitb;        /* copy to board's LANCE initblock (debugging) */
164     ln_desc_t *lance__ramdesc;          /* copy to board's LANCE descriptors (debugging) */
165     lance_ring_t lance__rxinfo;         /* Receive ring information */
166     lance_ring_t lance__txinfo;         /* Transmit ring information */
167 #define lance_csr1              le_un.un_lance.lance__csr1
168 #define lance_csr2              le_un.un_lance.lance__csr2
169 #define lance_csr3              le_un.un_lance.lance__csr3
170 #define lance_rap               le_un.un_lance.lance__rap
171 #define lance_rdp               le_un.un_lance.lance__rdp
172 #define lance_ramoffset         le_un.un_lance.lance__ramoffset
173 #define lance_ramsize           le_un.un_lance.lance__ramsize
174 #define lance_rxbufsize         le_un.un_lance.lance__rxbufsize
175 #define lance_initb             le_un.un_lance.lance__initb
176 #define lance_raminitb          le_un.un_lance.lance__raminitb
177 #define lance_ramdesc           le_un.un_lance.lance__ramdesc
178 #define lance_rxinfo            le_un.un_lance.lance__rxinfo
179 #define lance_txinfo            le_un.un_lance.lance__txinfo
180 };
181
182 /*
183  * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
184  *
185  * Start of Common Code
186  *
187  */
188
189 static void (*le_intrvec[NLE])(struct le_softc *sc);
190
191 /*
192  * Ethernet status, per interface.
193  */
194 struct le_softc {
195     struct arpcom le_ac;                /* Common Ethernet/ARP Structure */
196     void (*if_init) (void *);/* Interface init routine */
197     void (*if_reset) (struct le_softc*);/* Interface reset routine */
198     caddr_t le_membase;                 /* Starting memory address (virtual) */
199     unsigned le_iobase;                 /* Starting I/O base address */
200     unsigned le_irq;                    /* Interrupt Request Value */
201     unsigned le_flags;                  /* local copy of if_flags */
202 #define LE_BRDCSTONLY   0x01000000      /* If only broadcast is enabled */
203     u_int le_mcmask;                    /* bit mask for CRC-32 for multicast hash */
204     le_mcbits_t *le_mctbl;              /* pointer to multicast table */
205     const char *le_prodname;            /* product name DE20x-xx */
206     u_char le_hwaddr[6];                /* local copy of hwaddr */
207     union {
208         struct le_lemac_info un_lemac;  /* LEMAC specific information */
209         struct le_lance_info un_lance;  /* Am7990 specific information */
210     } le_un;
211 };
212 #define le_if           le_ac.ac_if
213
214
215 static int le_probe(struct isa_device *dvp);
216 static int le_attach(struct isa_device *dvp);
217 static ointhand2_t le_intr;
218 static int le_ioctl(struct ifnet *ifp, u_long command, caddr_t data,
219                     struct ucred *cr);
220 static void le_input(struct le_softc *sc, caddr_t seg1, size_t total_len,
221                      size_t len2, caddr_t seg2);
222 static void le_multi_filter(struct le_softc *sc);
223 static void le_multi_op(struct le_softc *sc, const u_char *mca, int oper_flg);
224 static int le_read_macaddr(struct le_softc *sc, int ioreg, int skippat);
225
226 static struct le_softc le_softc[NLE];
227
228 static const struct le_board le_boards[] = {
229     { lemac_probe },                    /* DE20[345] */
230     { depca_probe },                    /* DE{20[012],422} */
231     { NULL }                            /* Must Be Last! */
232 };
233
234 /*
235  * This tells the autoconf code how to set us up.
236  */
237 struct isa_driver ledriver = {
238     le_probe, le_attach, "le",
239 };
240
241 static unsigned le_intrs[NLE];
242
243 #define LE_INL(sc, reg)         inl((sc)->le_iobase + (reg))
244 #define LE_OUTL(sc, reg, data)  outl((sc)->le_iobase + (reg), data)
245 #define LE_INW(sc, reg)         inw((sc)->le_iobase + (reg))
246 #define LE_OUTW(sc, reg, data)  outw((sc)->le_iobase + (reg), data)
247 #define LE_INB(sc, reg)         inb((sc)->le_iobase + (reg))
248 #define LE_OUTB(sc, reg, data)  outb((sc)->le_iobase + (reg), data)
249
250 static int
251 le_probe(struct isa_device *dvp)
252 {
253     struct le_softc *sc = &le_softc[dvp->id_unit];
254     const struct le_board *bd;
255     int iospace;
256
257     if (dvp->id_unit >= NLE) {
258         printf("%s%d not configured -- too many devices\n",
259                ledriver.name, dvp->id_unit);
260         return 0;
261     }
262
263     sc->le_iobase = dvp->id_iobase;
264     sc->le_membase = (u_char *) dvp->id_maddr;
265     sc->le_irq = dvp->id_irq;
266     if_initname(&(sc->le_if), ledriver.name, dvp->id_unit);
267
268     /*
269      * Find and Initialize board..
270      */
271
272     sc->le_flags &= ~(IFF_UP|IFF_ALLMULTI);
273
274     for (bd = le_boards; bd->bd_probe != NULL; bd++) {
275         if ((iospace = (*bd->bd_probe)(sc, bd, &dvp->id_msize)) != 0) {
276             return iospace;
277         }
278     }
279
280     return 0;
281 }
282
283 static int
284 le_attach(struct isa_device *dvp)
285 {
286     struct le_softc *sc = &le_softc[dvp->id_unit];
287     struct ifnet *ifp = &sc->le_if;
288
289     dvp->id_ointr = le_intr;
290     ifp->if_softc = sc;
291     ifp->if_mtu = ETHERMTU;
292
293     ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
294     ifp->if_ioctl = le_ioctl;
295     ifp->if_type = IFT_ETHER;
296     ifp->if_addrlen = 6;
297     ifp->if_hdrlen = 14;
298     ifp->if_init = sc->if_init;
299     ifp->if_baudrate = 10000000;
300     ifq_set_maxlen(&ifp->if_snd, IFQ_MAXLEN);
301     ifq_set_ready(&ifp->if_snd);
302
303     ether_ifattach(ifp, sc->le_ac.ac_enaddr);
304
305     return 1;
306 }
307
308 static void
309 le_intr(int unit)
310 {
311     le_intrs[unit]++;
312     (*le_intrvec[unit])(&le_softc[unit]);
313 }
314
315 #define LE_XTRA         0
316
317 static void
318 le_input(struct le_softc *sc, caddr_t seg1, size_t total_len,
319     size_t len1, caddr_t seg2)
320 {
321     struct ether_header eh;
322     struct mbuf *m;
323
324     if (total_len - sizeof(eh) > ETHERMTU
325             || total_len - sizeof(eh) < ETHERMIN) {
326         sc->le_if.if_ierrors++;
327         return;
328     }
329     bcopy(seg1, &eh, ETHER_HDR_LEN);
330
331     seg1 += ETHER_HDR_LEN;
332     total_len -= ETHER_HDR_LEN;
333     len1 -= ETHER_HDR_LEN;
334
335     m = m_getl(total_len + LE_XTRA, MB_DONTWAIT, MT_DATA, M_PKTHDR, NULL);
336     if (m == NULL) {
337         sc->le_if.if_ierrors++;
338         return;
339     }
340     m->m_pkthdr.rcvif = &sc->le_if;
341     m->m_data += LE_XTRA;
342     m->m_len = m->m_pkthdr.len = total_len;
343
344     bcopy(seg1, mtod(m, caddr_t), len1);
345     if (seg2 != NULL)
346         bcopy(seg2, mtod(m, caddr_t) + len1, total_len - len1);
347     ether_input(&sc->le_if, &eh, m);
348 }
349
350 static int
351 le_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *cr)
352 {
353     struct le_softc *sc = ifp->if_softc;
354     int error = 0;
355
356     if ((sc->le_flags & IFF_UP) == 0)
357         return EIO;
358
359     crit_enter();
360
361     switch (cmd) {
362         case SIOCSIFFLAGS: {
363             sc->if_init(sc);
364             break;
365         }
366
367         case SIOCADDMULTI:
368         case SIOCDELMULTI:
369             /*
370              * Update multicast listeners
371              */
372                 sc->if_init(sc);
373                 error = 0;
374                 break;
375
376         default:
377                 error = ether_ioctl(ifp, cmd, data);
378                 break;
379     }
380
381     crit_exit();
382
383     return error;
384 }
385
386 /*
387  *  This is the standard method of reading the DEC Address ROMS.
388  *  I don't understand it but it does work.
389  */
390 static int
391 le_read_macaddr(struct le_softc *sc, int ioreg, int skippat)
392 {
393     int cksum, rom_cksum;
394
395     if (!skippat) {
396         int idx, idx2, found, octet;
397         static u_char testpat[] = { 0xFF, 0, 0x55, 0xAA, 0xFF, 0, 0x55, 0xAA };
398         idx2 = found = 0;
399
400         for (idx = 0; idx < 32; idx++) {
401             octet = LE_INB(sc, ioreg);
402
403             if (octet == testpat[idx2]) {
404                 if (++idx2 == sizeof testpat) {
405                     ++found;
406                     break;
407                 }
408             } else {
409                 idx2 = 0;
410             }
411         }
412
413         if (!found)
414             return -1;
415     }
416
417     cksum = 0;
418     sc->le_hwaddr[0] = LE_INB(sc, ioreg);
419     sc->le_hwaddr[1] = LE_INB(sc, ioreg);
420
421     cksum = *(u_short *) &sc->le_hwaddr[0];
422
423     sc->le_hwaddr[2] = LE_INB(sc, ioreg);
424     sc->le_hwaddr[3] = LE_INB(sc, ioreg);
425     cksum *= 2;
426     if (cksum > 65535) cksum -= 65535;
427     cksum += *(u_short *) &sc->le_hwaddr[2];
428     if (cksum > 65535) cksum -= 65535;
429
430     sc->le_hwaddr[4] = LE_INB(sc, ioreg);
431     sc->le_hwaddr[5] = LE_INB(sc, ioreg);
432     cksum *= 2;
433     if (cksum > 65535) cksum -= 65535;
434     cksum += *(u_short *) &sc->le_hwaddr[4];
435     if (cksum >= 65535) cksum -= 65535;
436
437     rom_cksum = LE_INB(sc, ioreg);
438     rom_cksum |= LE_INB(sc, ioreg) << 8;
439
440     if (cksum != rom_cksum)
441         return -1;
442     return 0;
443 }
444
445 static void
446 le_multi_filter(struct le_softc *sc)
447 {
448     struct ifnet *ifp = &sc->le_ac.ac_if;
449     struct ifmultiaddr *ifma;
450
451     bzero(sc->le_mctbl, (sc->le_mcmask + 1) / 8);
452
453     if (sc->le_if.if_flags & IFF_ALLMULTI) {
454         sc->le_flags |= IFF_MULTICAST|IFF_ALLMULTI;
455         return;
456     }
457     sc->le_flags &= ~IFF_MULTICAST;
458     /* if (interface has had an address assigned) { */
459         le_multi_op(sc, ifp->if_broadcastaddr, TRUE);
460         sc->le_flags |= LE_BRDCSTONLY|IFF_MULTICAST;
461     /* } */
462
463     sc->le_flags |= IFF_MULTICAST;
464
465     LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
466             if (ifma->ifma_addr->sa_family != AF_LINK)
467                     continue;
468
469             le_multi_op(sc, LLADDR((struct sockaddr_dl *)ifma->ifma_addr), 1);
470             sc->le_flags &= ~LE_BRDCSTONLY;
471     }
472 }
473
474 static void
475 le_multi_op(struct le_softc *sc, const u_char *mca, int enable)
476 {
477     uint32_t bit, idx, crc;
478
479     crc = ether_crc32_le(mca, ETHER_ADDR_LEN);
480
481     /*
482      * The following two line convert the N bit index into a longword index
483      * and a longword mask.
484      */
485     crc &= sc->le_mcmask;
486     bit = 1 << (crc & (LE_MC_NBPW -1));
487     idx = crc >> (LE_MC_NBPW_LOG2);
488
489     /*
490      * Set or clear hash filter bit in our table.
491      */
492     if (enable) {
493         sc->le_mctbl[idx] |= bit;               /* Set Bit */
494     } else {
495         sc->le_mctbl[idx] &= ~bit;              /* Clear Bit */
496     }
497 }
498
499 /*
500  * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
501  *
502  * Start of DEC EtherWORKS III (LEMAC) dependent code
503  *
504  */
505
506 #define LEMAC_INTR_ENABLE(sc) \
507         LE_OUTB(sc, LEMAC_REG_IC, LE_INB(sc, LEMAC_REG_IC) | LEMAC_IC_ALL)
508
509 #define LEMAC_INTR_DISABLE(sc) \
510         LE_OUTB(sc, LEMAC_REG_IC, LE_INB(sc, LEMAC_REG_IC) & ~LEMAC_IC_ALL)
511
512 #define LEMAC_64K_MODE(mbase)   (((mbase) >= 0x0A) && ((mbase) <= 0x0F))
513 #define LEMAC_32K_MODE(mbase)   (((mbase) >= 0x14) && ((mbase) <= 0x1F))
514 #define LEMAC_2K_MODE(mbase)    ( (mbase) >= 0x40)
515
516 static void     lemac_init(void *xsc);
517 static void     lemac_start(struct ifnet *ifp);
518 static void     lemac_reset(struct le_softc *sc);
519 static void     lemac_intr(struct le_softc *sc);
520 static void     lemac_rne_intr(struct le_softc *sc);
521 static void     lemac_tne_intr(struct le_softc *sc);
522 static void     lemac_txd_intr(struct le_softc *sc, unsigned cs_value);
523 static void     lemac_rxd_intr(struct le_softc *sc, unsigned cs_value);
524 static int      lemac_read_eeprom(struct le_softc *sc);
525 static void     lemac_init_adapmem(struct le_softc *sc);
526
527 #define LE_MCBITS_ALL_1S        ((le_mcbits_t)~(le_mcbits_t)0)
528
529 static const le_mcbits_t lemac_allmulti_mctbl[16] =  {
530     LE_MCBITS_ALL_1S, LE_MCBITS_ALL_1S, LE_MCBITS_ALL_1S, LE_MCBITS_ALL_1S,
531     LE_MCBITS_ALL_1S, LE_MCBITS_ALL_1S, LE_MCBITS_ALL_1S, LE_MCBITS_ALL_1S,
532     LE_MCBITS_ALL_1S, LE_MCBITS_ALL_1S, LE_MCBITS_ALL_1S, LE_MCBITS_ALL_1S,
533     LE_MCBITS_ALL_1S, LE_MCBITS_ALL_1S, LE_MCBITS_ALL_1S, LE_MCBITS_ALL_1S,
534 };
535 /*
536  * An IRQ mapping table.  Less space than switch statement.
537  */
538 static const int lemac_irqs[] = { IRQ5, IRQ10, IRQ11, IRQ15 };
539
540 /*
541  * Some tuning/monitoring variables.
542  */
543 static unsigned lemac_deftxmax = 16;    /* see lemac_max above */
544 static unsigned lemac_txnospc = 0;      /* total # of tranmit starvations */
545
546 static unsigned lemac_tne_intrs = 0;    /* total # of tranmit done intrs */
547 static unsigned lemac_rne_intrs = 0;    /* total # of receive done intrs */
548 static unsigned lemac_txd_intrs = 0;    /* total # of tranmit error intrs */
549 static unsigned lemac_rxd_intrs = 0;    /* total # of receive error intrs */
550
551 static int
552 lemac_probe(struct le_softc *sc, const struct le_board *bd, int *msize)
553 {
554     int irq, portval;
555
556     LE_OUTB(sc, LEMAC_REG_IOP, LEMAC_IOP_EEINIT);
557     DELAY(LEMAC_EEP_DELAY);
558
559     /*
560      *  Read Ethernet address if card is present.
561      */
562     if (le_read_macaddr(sc, LEMAC_REG_APD, 0) < 0)
563         return 0;
564
565     bcopy(sc->le_hwaddr, sc->le_ac.ac_enaddr, ETHER_ADDR_LEN);
566     /*
567      *  Clear interrupts and set IRQ.
568      */
569
570     portval = LE_INB(sc, LEMAC_REG_IC) & LEMAC_IC_IRQMSK;
571     irq = lemac_irqs[portval >> 5];
572     LE_OUTB(sc, LEMAC_REG_IC, portval);
573
574     /*
575      *  Make sure settings match.
576      */
577
578     if (irq != sc->le_irq) {
579         if_printf(&sc->le_if, "lemac configuration error: expected IRQ 0x%x actual 0x%x\n",
580             sc->le_irq, irq);
581         return 0;
582     }
583
584     /*
585      * Try to reset the unit
586      */
587     sc->if_init = lemac_init;
588     sc->le_if.if_start = lemac_start;
589     sc->if_reset = lemac_reset;
590     sc->lemac_memmode = 2;
591     sc->if_reset(sc);
592     if ((sc->le_flags & IFF_UP) == 0)
593         return 0;
594
595     /*
596      *  Check for correct memory base configuration.
597      */
598     if (vtophys(sc->le_membase) != sc->lemac_membase) {
599         if_printf(&sc->le_if, "lemac configuration error: expected iomem 0x%llx actual 0x%x\n",
600                vtophys(sc->le_membase), sc->lemac_membase);
601         return 0;
602     }
603
604     sc->le_prodname = sc->lemac_prodname;
605     sc->le_mctbl = sc->lemac_mctbl;
606     sc->le_mcmask = (1 << LEMAC_MCTBL_BITS) - 1;
607     sc->lemac_txmax = lemac_deftxmax;
608     *msize = 2048;
609     le_intrvec[sc->le_if.if_dunit] = lemac_intr;
610
611     return LEMAC_IOSPACE;
612 }
613
614 /*
615  * Do a hard reset of the board;
616  */
617 static void
618 lemac_reset(struct le_softc *sc)
619 {
620     struct ifnet *ifp = &sc->le_if;
621     int portval, cksum;
622
623     /*
624      * Initialize board..
625      */
626
627     sc->le_flags &= IFF_UP;
628     ifp->if_flags &= ~IFF_OACTIVE;
629     LEMAC_INTR_DISABLE(sc);
630
631     LE_OUTB(sc, LEMAC_REG_IOP, LEMAC_IOP_EEINIT);
632     DELAY(LEMAC_EEP_DELAY);
633
634     /* Disable Interrupts */
635     /* LE_OUTB(sc, LEMAC_REG_IC, LE_INB(sc, LEMAC_REG_IC) & ICR_IRQ_SEL); */
636
637     /*
638      * Read EEPROM information.  NOTE - the placement of this function
639      * is important because functions hereafter may rely on information
640      * read from the EEPROM.
641      */
642     if ((cksum = lemac_read_eeprom(sc)) != LEMAC_EEP_CKSUM) {
643         if_printf(ifp, "reset: EEPROM checksum failed (0x%x)\n", cksum);
644         return;
645     }
646
647     /*
648      *  Force to 2K mode if not already configured.
649      */
650
651     portval = LE_INB(sc, LEMAC_REG_MBR);
652     if (!LEMAC_2K_MODE(portval)) {
653         if (LEMAC_64K_MODE(portval)) {
654             portval = (((portval * 2) & 0xF) << 4);
655             sc->lemac_memmode = 64;
656         } else if (LEMAC_32K_MODE(portval)) {
657             portval = ((portval & 0xF) << 4);
658             sc->lemac_memmode = 32;
659         }
660         LE_OUTB(sc, LEMAC_REG_MBR, portval);
661     }
662     sc->lemac_membase = portval * (2 * 1024) + (512 * 1024);
663
664     /*
665      *  Initialize Free Memory Queue, Init mcast table with broadcast.
666      */
667
668     lemac_init_adapmem(sc);
669     sc->le_flags |= IFF_UP;
670 }
671
672 static void
673 lemac_init(void *xsc)
674 {
675     struct le_softc *sc = (struct le_softc *)xsc;
676
677     if ((sc->le_flags & IFF_UP) == 0)
678         return;
679
680     crit_enter();
681
682     /*
683      * If the interface has the up flag
684      */
685     if (sc->le_if.if_flags & IFF_UP) {
686         int saved_cs = LE_INB(sc, LEMAC_REG_CS);
687         LE_OUTB(sc, LEMAC_REG_CS, saved_cs | (LEMAC_CS_TXD | LEMAC_CS_RXD));
688         LE_OUTB(sc, LEMAC_REG_PA0, sc->le_ac.ac_enaddr[0]);
689         LE_OUTB(sc, LEMAC_REG_PA1, sc->le_ac.ac_enaddr[1]);
690         LE_OUTB(sc, LEMAC_REG_PA2, sc->le_ac.ac_enaddr[2]);
691         LE_OUTB(sc, LEMAC_REG_PA3, sc->le_ac.ac_enaddr[3]);
692         LE_OUTB(sc, LEMAC_REG_PA4, sc->le_ac.ac_enaddr[4]);
693         LE_OUTB(sc, LEMAC_REG_PA5, sc->le_ac.ac_enaddr[5]);
694
695         LE_OUTB(sc, LEMAC_REG_IC, LE_INB(sc, LEMAC_REG_IC) | LEMAC_IC_IE);
696
697         if (sc->le_if.if_flags & IFF_PROMISC) {
698             LE_OUTB(sc, LEMAC_REG_CS, LEMAC_CS_MCE | LEMAC_CS_PME);
699         } else {
700             LEMAC_INTR_DISABLE(sc);
701             le_multi_filter(sc);
702             LE_OUTB(sc, LEMAC_REG_MPN, 0);
703             if ((sc->le_flags | sc->le_if.if_flags) & IFF_ALLMULTI) {
704                 bcopy(lemac_allmulti_mctbl, &sc->le_membase[LEMAC_MCTBL_OFF], sizeof(lemac_allmulti_mctbl));
705             } else {
706                 bcopy(sc->lemac_mctbl, &sc->le_membase[LEMAC_MCTBL_OFF], sizeof(sc->lemac_mctbl));
707             }
708             LE_OUTB(sc, LEMAC_REG_CS, LEMAC_CS_MCE);
709         }
710
711         LE_OUTB(sc, LEMAC_REG_CTL, LE_INB(sc, LEMAC_REG_CTL) ^ LEMAC_CTL_LED);
712
713         LEMAC_INTR_ENABLE(sc);
714         sc->le_if.if_flags |= IFF_RUNNING;
715     } else {
716         LE_OUTB(sc, LEMAC_REG_CS, LEMAC_CS_RXD|LEMAC_CS_TXD);
717
718         LEMAC_INTR_DISABLE(sc);
719         sc->le_if.if_flags &= ~IFF_RUNNING;
720     }
721
722     crit_exit();
723 }
724
725 /*
726  * What to do upon receipt of an interrupt.
727  */
728 static void
729 lemac_intr(struct le_softc *sc)
730 {
731     int cs_value;
732
733     LEMAC_INTR_DISABLE(sc);     /* Mask interrupts */
734
735     /*
736      * Determine cause of interrupt.  Receive events take
737      * priority over Transmit.
738      */
739
740     cs_value = LE_INB(sc, LEMAC_REG_CS);
741
742     /*
743      * Check for Receive Queue not being empty.
744      * Check for Transmit Done Queue not being empty.
745      */
746
747     if (cs_value & LEMAC_CS_RNE)
748         lemac_rne_intr(sc);
749     if (cs_value & LEMAC_CS_TNE)
750         lemac_tne_intr(sc);
751
752     /*
753      * Check for Transmitter Disabled.
754      * Check for Receiver Disabled.
755      */
756
757     if (cs_value & LEMAC_CS_TXD)
758         lemac_txd_intr(sc, cs_value);
759     if (cs_value & LEMAC_CS_RXD)
760         lemac_rxd_intr(sc, cs_value);
761
762     /*
763      * Toggle LED and unmask interrupts.
764      */
765
766     LE_OUTB(sc, LEMAC_REG_CTL, LE_INB(sc, LEMAC_REG_CTL) ^ LEMAC_CTL_LED);
767     LEMAC_INTR_ENABLE(sc);              /* Unmask interrupts */
768 }
769
770 static void
771 lemac_rne_intr(struct le_softc *sc)
772 {
773     int rxcount, rxlen, rxpg;
774     u_char *rxptr;
775
776     lemac_rne_intrs++;
777     rxcount = LE_INB(sc, LEMAC_REG_RQC);
778     while (rxcount--) {
779         rxpg = LE_INB(sc, LEMAC_REG_RQ);
780         LE_OUTB(sc, LEMAC_REG_MPN, rxpg);
781
782         rxptr = sc->le_membase;
783         sc->le_if.if_ipackets++;
784         if (*rxptr & LEMAC_RX_OK) {
785
786             /*
787              * Get receive length - subtract out checksum.
788              */
789
790             rxlen = ((*(u_int *)rxptr >> 8) & 0x7FF) - 4;
791             le_input(sc, rxptr + sizeof(u_int), rxlen, rxlen, NULL);
792         } else { /* end if (*rxptr & LEMAC_RX_OK) */
793             sc->le_if.if_ierrors++;
794         }
795         LE_OUTB(sc, LEMAC_REG_FMQ, rxpg);  /* Return this page to Free Memory Queue */
796     }  /* end while (recv_count--) */
797 }
798
799 static void
800 lemac_rxd_intr(struct le_softc *sc, unsigned cs_value)
801 {
802     /*
803      * Handle CS_RXD (Receiver disabled) here.
804      *
805      * Check Free Memory Queue Count. If not equal to zero
806      * then just turn Receiver back on. If it is equal to
807      * zero then check to see if transmitter is disabled.
808      * Process transmit TXD loop once more.  If all else
809      * fails then do software init (0xC0 to EEPROM Init)
810      * and rebuild Free Memory Queue.
811      */
812
813     lemac_rxd_intrs++;
814
815     /*
816      *  Re-enable Receiver.
817      */
818
819     cs_value &= ~LEMAC_CS_RXD;
820     LE_OUTB(sc, LEMAC_REG_CS, cs_value);
821
822     if (LE_INB(sc, LEMAC_REG_FMC) > 0)
823         return;
824
825     if (cs_value & LEMAC_CS_TXD)
826         lemac_txd_intr(sc, cs_value);
827
828     if ((LE_INB(sc, LEMAC_REG_CS) & LEMAC_CS_RXD) == 0)
829         return;
830
831     if_printf(&sc->le_if, "fatal RXD error, attempting recovery\n");
832
833     sc->if_reset(sc);
834     if (sc->le_flags & IFF_UP) {
835         lemac_init(sc);
836         return;
837     }
838
839     /*
840      *  Error during initializion.  Mark card as disabled.
841      */
842     if_printf(&sc->le_if, "recovery failed -- board disabled\n");
843 }
844
845 static void
846 lemac_start(struct ifnet *ifp)
847 {
848     struct le_softc *sc = (struct le_softc *) ifp;
849
850     if ((ifp->if_flags & IFF_RUNNING) == 0)
851         return;
852
853     LEMAC_INTR_DISABLE(sc);
854
855     while (!ifq_is_empty(&ifp->if_snd)) {
856         struct mbuf  *m;
857         int tx_pg;
858         u_int txhdr, txoff;
859
860         if (LE_INB(sc, LEMAC_REG_TQC) >= sc->lemac_txmax) {
861             ifp->if_flags |= IFF_OACTIVE;
862             break;
863         }
864
865         tx_pg = LE_INB(sc, LEMAC_REG_FMQ);      /* get free memory page */
866         /*
867          * Check for good transmit page.
868          */
869         if (tx_pg == 0 || tx_pg > sc->lemac_lastpage) {
870             lemac_txnospc++;
871             ifp->if_flags |= IFF_OACTIVE;
872             break;
873         }
874
875         m = ifq_dequeue(&ifp->if_snd);
876         LE_OUTB(sc, LEMAC_REG_MPN, tx_pg);      /* Shift 2K window. */
877
878         /*
879          * The first four bytes of each transmit buffer are for
880          * control information.  The first byte is the control
881          * byte, then the length (why not word aligned?), then
882          * the off to the buffer.
883          */
884
885         txoff = (mtod(m, u_int) & (sizeof(u_long) - 1)) + LEMAC_TX_HDRSZ;
886         txhdr = sc->lemac_txctl | (m->m_pkthdr.len << 8) | (txoff << 24);
887         *(u_int *) sc->le_membase = txhdr;
888
889         /*
890          * Copy the packet to the board
891          */
892
893         m_copydata(m, 0, m->m_pkthdr.len, sc->le_membase + txoff);
894
895         LE_OUTB(sc, LEMAC_REG_TQ, tx_pg);       /* tell chip to transmit this packet */
896
897         BPF_MTAP(ifp, m);
898
899         m_freem(m);                     /* free the mbuf */
900     }
901     LEMAC_INTR_ENABLE(sc);
902 }
903
904 static void
905 lemac_tne_intr(struct le_softc *sc)
906 {
907     int txsts, txcount = LE_INB(sc, LEMAC_REG_TDC);
908
909     lemac_tne_intrs++;
910     while (txcount--) {
911         txsts = LE_INB(sc, LEMAC_REG_TDQ);
912         sc->le_if.if_opackets++;                /* another one done */
913         if ((txsts & LEMAC_TDQ_COL) != LEMAC_TDQ_NOCOL)
914             sc->le_if.if_collisions++;
915     }
916     sc->le_if.if_flags &= ~IFF_OACTIVE;
917     lemac_start(&sc->le_if);
918 }
919
920 static void
921 lemac_txd_intr(struct le_softc *sc, unsigned cs_value)
922 {
923     /*
924      * Read transmit status, remove transmit buffer from
925      * transmit queue and place on free memory queue,
926      * then reset transmitter.
927      * Increment appropriate counters.
928      */
929
930     lemac_txd_intrs++;
931     sc->le_if.if_oerrors++;
932     if (LE_INB(sc, LEMAC_REG_TS) & LEMAC_TS_ECL)
933         sc->le_if.if_collisions++;
934     sc->le_if.if_flags &= ~IFF_OACTIVE;
935
936     LE_OUTB(sc, LEMAC_REG_FMQ, LE_INB(sc, LEMAC_REG_TQ));
937                                 /* Get Page number and write it back out */
938
939     LE_OUTB(sc, LEMAC_REG_CS, cs_value & ~LEMAC_CS_TXD);
940                                 /* Turn back on transmitter */
941 }
942
943 static int
944 lemac_read_eeprom(struct le_softc *sc)
945 {
946     int word_off, cksum;
947
948     u_char *ep;
949
950     cksum = 0;
951     ep = sc->lemac_eeprom;
952     for (word_off = 0; word_off < LEMAC_EEP_SIZE / 2; word_off++) {
953         LE_OUTB(sc, LEMAC_REG_PI1, word_off);
954         LE_OUTB(sc, LEMAC_REG_IOP, LEMAC_IOP_EEREAD);
955
956         DELAY(LEMAC_EEP_DELAY);
957
958         *ep = LE_INB(sc, LEMAC_REG_EE1);        cksum += *ep++;
959         *ep = LE_INB(sc, LEMAC_REG_EE2);        cksum += *ep++;
960     }
961
962     /*
963      *  Set up Transmit Control Byte for use later during transmit.
964      */
965
966     sc->lemac_txctl |= LEMAC_TX_FLAGS;
967
968     if ((sc->lemac_eeprom[LEMAC_EEP_SWFLAGS] & LEMAC_EEP_SW_SQE) == 0)
969         sc->lemac_txctl &= ~LEMAC_TX_SQE;
970
971     if (sc->lemac_eeprom[LEMAC_EEP_SWFLAGS] & LEMAC_EEP_SW_LAB)
972         sc->lemac_txctl |= LEMAC_TX_LAB;
973
974     bcopy(&sc->lemac_eeprom[LEMAC_EEP_PRDNM], sc->lemac_prodname, LEMAC_EEP_PRDNMSZ);
975     sc->lemac_prodname[LEMAC_EEP_PRDNMSZ] = '\0';
976
977     return cksum % 256;
978 }
979
980 static void
981 lemac_init_adapmem(struct le_softc *sc)
982 {
983     int pg, conf;
984
985     conf = LE_INB(sc, LEMAC_REG_CNF);
986
987     if ((sc->lemac_eeprom[LEMAC_EEP_SETUP] & LEMAC_EEP_ST_DRAM) == 0) {
988         sc->lemac_lastpage = 63;
989         conf &= ~LEMAC_CNF_DRAM;
990     } else {
991         sc->lemac_lastpage = 127;
992         conf |= LEMAC_CNF_DRAM;
993     }
994
995     LE_OUTB(sc, LEMAC_REG_CNF, conf);
996
997     for (pg = 1; pg <= sc->lemac_lastpage; pg++)
998         LE_OUTB(sc, LEMAC_REG_FMQ, pg);
999
1000     return;
1001 }
1002
1003 /*
1004  * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1005  *
1006  * Start of DEPCA (DE200/DE201/DE202/DE422 etal) support.
1007  *
1008  */
1009 static void depca_intr(struct le_softc *sc);
1010 static int  lance_init_adapmem(struct le_softc *sc);
1011 static int  lance_init_ring(struct le_softc *sc, ln_ring_t *rp, lance_ring_t *ri,
1012                             unsigned ndescs, unsigned bufoffset,
1013                             unsigned descoffset);
1014 static void lance_init(void *xsc);
1015 static void lance_reset(struct le_softc *sc);
1016 static void lance_intr(struct le_softc *sc);
1017 static int  lance_rx_intr(struct le_softc *sc);
1018 static void lance_start(struct ifnet *ifp);
1019 static int  lance_tx_intr(struct le_softc *sc);
1020
1021 #define LN_BUFSIZE              /* 380 */ 304   /* 1520 / 4 */
1022 #define LN_TXDESC_RATIO         2048
1023 #define LN_DESC_MAX             128
1024
1025 #if LN_DOSTATS
1026 static struct {
1027     unsigned lance_rx_misses;
1028     unsigned lance_rx_badcrc;
1029     unsigned lance_rx_badalign;
1030     unsigned lance_rx_badframe;
1031     unsigned lance_rx_buferror;
1032     unsigned lance_tx_deferred;
1033     unsigned lance_tx_single_collisions;
1034     unsigned lance_tx_multiple_collisions;
1035     unsigned lance_tx_excessive_collisions;
1036     unsigned lance_tx_late_collisions;
1037
1038     unsigned lance_memory_errors;
1039     unsigned lance_inits;
1040     unsigned lance_tx_intrs;
1041     unsigned lance_tx_nospc[2];
1042     unsigned lance_tx_drains[2];
1043     unsigned lance_tx_orphaned;
1044     unsigned lance_tx_adoptions;
1045     unsigned lance_tx_emptied;
1046     unsigned lance_tx_deftxint;
1047     unsigned lance_tx_buferror;
1048     unsigned lance_high_txoutptr;
1049     unsigned lance_low_txheapsize;
1050     unsigned lance_low_txfree;
1051     unsigned lance_tx_intr_hidescs;
1052     /* unsigned lance_tx_intr_descs[LN_DESC_MAX]; */
1053
1054     unsigned lance_rx_intrs;
1055     unsigned lance_rx_badsop;
1056     unsigned lance_rx_contig;
1057     unsigned lance_rx_noncontig;
1058     unsigned lance_rx_intr_hidescs;
1059     unsigned lance_rx_ndescs[4096 / LN_BUFSIZE];
1060     /* unsigned lance_rx_intr_descs[LN_DESC_MAX]; */
1061 } lance_stats;
1062
1063 #define LN_STAT(stat)   (lance_stats.lance_ ## stat)
1064 #define LN_MINSTAT(stat, val)   (LN_STAT(stat > (val)) ? LN_STAT(stat = (val)) : 0)
1065 #define LN_MAXSTAT(stat, val)   (LN_STAT(stat < (val)) ? LN_STAT(stat = (val)) : 0)
1066
1067 #else
1068 #define LN_STAT(stat)   0
1069 #define LN_MINSTAT(stat, val)   0
1070 #define LN_MAXSTAT(stat, val)   0
1071 #endif
1072
1073 #define LN_SELCSR(sc, csrno)            (LE_OUTW(sc, sc->lance_rap, csrno))
1074 #define LN_INQCSR(sc)                   (LE_INW(sc, sc->lance_rap))
1075
1076 #define LN_WRCSR(sc, val)               (LE_OUTW(sc, sc->lance_rdp, val))
1077 #define LN_RDCSR(sc)                    (LE_INW(sc, sc->lance_rdp))
1078
1079
1080 #define LN_ZERO(sc, vaddr, len)         bzero(vaddr, len)
1081 #define LN_COPYTO(sc, from, to, len)    bcopy(from, to, len)
1082
1083 #define LN_SETFLAG(sc, vaddr, val) \
1084         (((volatile u_char *) vaddr)[3] = (val))
1085
1086 #define LN_PUTDESC(sc, desc, vaddr) \
1087         (((volatile u_short *) vaddr)[0] = ((u_short *) desc)[0], \
1088          ((volatile u_short *) vaddr)[2] = ((u_short *) desc)[2], \
1089          ((volatile u_short *) vaddr)[1] = ((u_short *) desc)[1])
1090
1091 /*
1092  * Only get the descriptor flags and length/status.  All else
1093  * read-only.
1094  */
1095 #define LN_GETDESC(sc, desc, vaddr) \
1096         (((u_short *) desc)[1] = ((volatile u_short *) vaddr)[1], \
1097          ((u_short *) desc)[3] = ((volatile u_short *) vaddr)[3])
1098
1099 /*
1100  *  These definitions are specific to the DEC "DEPCA-style" NICs.
1101  *      (DEPCA, DE10x, DE20[012], DE422)
1102  *
1103  */
1104 #define DEPCA_REG_NICSR         0               /* (RW;16) NI Control / Status */
1105 #define DEPCA_REG_RDP           4               /* (RW:16) LANCE RDP (data) register */
1106 #define DEPCA_REG_RAP           6               /* (RW:16) LANCE RAP (address) register */
1107 #define DEPCA_REG_ADDRROM       12              /* (R : 8) DEPCA Ethernet Address ROM */
1108 #define DEPCA_IOSPACE           16              /* DEPCAs use 16 bytes of IO space */
1109
1110 #define DEPCA_NICSR_LED         0x0001          /* Light the LED on the back of the DEPCA */
1111 #define DEPCA_NICSR_ENABINTR    0x0002          /* Enable Interrupts */
1112 #define DEPCA_NICSR_MASKINTR    0x0004          /* Mask Interrupts */
1113 #define DEPCA_NICSR_AAC         0x0008          /* Address Counter Clear */
1114 #define DEPCA_NICSR_REMOTEBOOT  0x0010          /* Remote Boot Enabled (ignored) */
1115 #define DEPCA_NICSR_32KRAM      0x0020          /* DEPCA LANCE RAM size 64K (C) / 32K (S) */
1116 #define DEPCA_NICSR_LOW32K      0x0040          /* Bank Select (A15 = !This Bit) */
1117 #define DEPCA_NICSR_SHE         0x0080          /* Shared RAM Enabled (ie hide ROM) */
1118 #define DEPCA_NICSR_BOOTTMO     0x0100          /* Remote Boot Timeout (ignored) */
1119
1120 #define DEPCA_RDNICSR(sc)       (LE_INW(sc, DEPCA_REG_NICSR))
1121 #define DEPCA_WRNICSR(sc, val)  (LE_OUTW(sc, DEPCA_REG_NICSR, val))
1122
1123 #define DEPCA_IDSTR_OFFSET      0xC006          /* ID String Offset */
1124
1125 #define DEPCA_REG_EISAID        0x80
1126 #define DEPCA_EISAID_MASK       0xf0ffffff
1127 #define DEPCA_EISAID_DE422      0x2042A310
1128
1129 typedef enum {
1130     DEPCA_CLASSIC,
1131     DEPCA_DE100, DEPCA_DE101,
1132     DEPCA_EE100,
1133     DEPCA_DE200, DEPCA_DE201, DEPCA_DE202,
1134     DEPCA_DE422,
1135     DEPCA_UNKNOWN
1136 } depca_t;
1137
1138 static const char *depca_signatures[] = {
1139     "DEPCA",
1140     "DE100", "DE101",
1141     "EE100",
1142     "DE200", "DE201", "DE202",
1143     "DE422",
1144     NULL
1145 };
1146
1147 static int
1148 depca_probe(struct le_softc *sc, const struct le_board *bd, int *msize)
1149 {
1150     unsigned nicsr, idx, idstr_offset = DEPCA_IDSTR_OFFSET;
1151
1152     /*
1153      *  Find out how memory we are dealing with.  Adjust
1154      *  the ID string offset approriately if we are at
1155      *  32K.  Make sure the ROM is enabled.
1156      */
1157     nicsr = DEPCA_RDNICSR(sc);
1158     nicsr &= ~(DEPCA_NICSR_SHE|DEPCA_NICSR_LED|DEPCA_NICSR_ENABINTR);
1159
1160     if (nicsr & DEPCA_NICSR_32KRAM) {
1161         /*
1162          * Make we are going to read the upper
1163          * 32K so we do read the ROM.
1164          */
1165         sc->lance_ramsize = 32 * 1024;
1166         nicsr &= ~DEPCA_NICSR_LOW32K;
1167         sc->lance_ramoffset = 32 * 1024;
1168         idstr_offset -= sc->lance_ramsize;
1169     } else {
1170         sc->lance_ramsize = 64 * 1024;
1171         sc->lance_ramoffset = 0;
1172     }
1173     DEPCA_WRNICSR(sc, nicsr);
1174
1175     sc->le_prodname = NULL;
1176     for (idx = 0; depca_signatures[idx] != NULL; idx++) {
1177         if (bcmp(depca_signatures[idx], sc->le_membase + idstr_offset, 5) == 0) {
1178             sc->le_prodname = depca_signatures[idx];
1179             break;
1180         }
1181     }
1182
1183     if (sc->le_prodname == NULL) {
1184         /*
1185          * Try to get the EISA device if it's a DE422.
1186          */
1187         if (sc->le_iobase > 0x1000 && (sc->le_iobase & 0x0F00) == 0x0C00
1188             && (LE_INL(sc, DEPCA_REG_EISAID) & DEPCA_EISAID_MASK)
1189              == DEPCA_EISAID_DE422) {
1190             sc->le_prodname = "DE422";
1191         } else {
1192             return 0;
1193         }
1194     }
1195     if (idx == DEPCA_CLASSIC)
1196         sc->lance_ramsize -= 16384;     /* Can't use the ROM area on a DEPCA */
1197
1198     /*
1199      * Try to read the address ROM.
1200      *   Stop the LANCE, reset the Address ROM Counter (AAC),
1201      *   read the NICSR to "clock" in the reset, and then
1202      *   re-enable the Address ROM Counter.  Now read the
1203      *   address ROM.
1204      */
1205     sc->lance_rdp = DEPCA_REG_RDP;
1206     sc->lance_rap = DEPCA_REG_RAP;
1207     sc->lance_csr3 = LN_CSR3_ALE;
1208     sc->le_mctbl = sc->lance_initb.ln_multi_mask;
1209     sc->le_mcmask = LN_MC_MASK;
1210     LN_SELCSR(sc, LN_CSR0);
1211     LN_WRCSR(sc, LN_CSR0_STOP);
1212
1213     if (idx < DEPCA_DE200) {
1214         DEPCA_WRNICSR(sc, DEPCA_RDNICSR(sc) & ~DEPCA_NICSR_AAC);
1215         DEPCA_WRNICSR(sc, DEPCA_RDNICSR(sc) | DEPCA_NICSR_AAC);
1216     }
1217
1218     if (le_read_macaddr(sc, DEPCA_REG_ADDRROM, idx == DEPCA_CLASSIC) < 0)
1219         return 0;
1220
1221     bcopy(sc->le_hwaddr, sc->le_ac.ac_enaddr, ETHER_ADDR_LEN);
1222     /*
1223      * Renable shared RAM.
1224      */
1225     DEPCA_WRNICSR(sc, DEPCA_RDNICSR(sc) | DEPCA_NICSR_SHE);
1226
1227     le_intrvec[sc->le_if.if_dunit] = depca_intr;
1228     if (!lance_init_adapmem(sc))
1229         return 0;
1230
1231     sc->if_reset = lance_reset;
1232     sc->if_init = lance_init;
1233     sc->le_if.if_start = lance_start;
1234     DEPCA_WRNICSR(sc, DEPCA_NICSR_SHE | DEPCA_NICSR_ENABINTR);
1235     sc->if_reset(sc);
1236
1237     LN_STAT(low_txfree = sc->lance_txinfo.ri_max);
1238     LN_STAT(low_txheapsize = 0xFFFFFFFF);
1239     *msize = sc->lance_ramsize;
1240     return DEPCA_IOSPACE;
1241 }
1242
1243 static void
1244 depca_intr(struct le_softc *sc)
1245 {
1246     DEPCA_WRNICSR(sc, DEPCA_RDNICSR(sc) ^ DEPCA_NICSR_LED);
1247     lance_intr(sc);
1248 }
1249
1250 /*
1251  * Here's as good a place to describe our paritioning of the
1252  * LANCE shared RAM space.  (NOTE: this driver does not yet support
1253  * the concept of a LANCE being able to DMA).
1254  *
1255  * First is the 24 (00:23) bytes for LANCE Initialization Block
1256  * Next are the recieve descriptors.  The number is calculated from
1257  * how many LN_BUFSIZE buffers we can allocate (this number must
1258  * be a power of 2).  Next are the transmit descriptors.  The amount
1259  * of transmit descriptors is derived from the size of the RAM
1260  * divided by 1K.  Now come the receive buffers (one for each receive
1261  * descriptor).  Finally is the transmit heap.  (no fixed buffers are
1262  * allocated so as to make the most use of the limited space).
1263  */
1264 static int
1265 lance_init_adapmem(struct le_softc *sc)
1266 {
1267     lance_addr_t rxbufoffset;
1268     lance_addr_t rxdescoffset, txdescoffset;
1269     unsigned rxdescs, txdescs;
1270
1271     /*
1272      * First calculate how many descriptors we heap.
1273      * Note this assumes the ramsize is a power of two.
1274      */
1275     sc->lance_rxbufsize = LN_BUFSIZE;
1276     rxdescs = 1;
1277     while (rxdescs * sc->lance_rxbufsize < sc->lance_ramsize)
1278         rxdescs *= 2;
1279     rxdescs /= 2;
1280     if (rxdescs > LN_DESC_MAX) {
1281         sc->lance_rxbufsize *= rxdescs / LN_DESC_MAX;
1282         rxdescs = LN_DESC_MAX;
1283     }
1284     txdescs = sc->lance_ramsize / LN_TXDESC_RATIO;
1285     if (txdescs > LN_DESC_MAX)
1286         txdescs = LN_DESC_MAX;
1287
1288     /*
1289      * Now calculate where everything goes in memory
1290      */
1291     rxdescoffset = sizeof(ln_initb_t);
1292     txdescoffset = rxdescoffset + sizeof(ln_desc_t) * rxdescs;
1293     rxbufoffset  = txdescoffset + sizeof(ln_desc_t) * txdescs;
1294
1295     sc->le_mctbl = (le_mcbits_t *) sc->lance_initb.ln_multi_mask;
1296     /*
1297      * Remember these for debugging.
1298      */
1299     sc->lance_raminitb = (ln_initb_t *) sc->le_membase;
1300     sc->lance_ramdesc = (ln_desc_t *) (sc->le_membase + rxdescoffset);
1301
1302     /*
1303      * Initialize the rings.
1304      */
1305     if (!lance_init_ring(sc, &sc->lance_initb.ln_rxring, &sc->lance_rxinfo,
1306                    rxdescs, rxbufoffset, rxdescoffset))
1307         return 0;
1308     sc->lance_rxinfo.ri_heap = rxbufoffset;
1309     sc->lance_rxinfo.ri_heapend = rxbufoffset + sc->lance_rxbufsize * rxdescs;
1310
1311     if (!lance_init_ring(sc, &sc->lance_initb.ln_txring, &sc->lance_txinfo,
1312                    txdescs, 0, txdescoffset))
1313         return 0;
1314     sc->lance_txinfo.ri_heap = sc->lance_rxinfo.ri_heapend;
1315     sc->lance_txinfo.ri_heapend = sc->lance_ramsize;
1316
1317     /*
1318      * Set CSR1 and CSR2 to the address of the init block (which
1319      * for us is always 0.
1320      */
1321     sc->lance_csr1 = LN_ADDR_LO(0 + sc->lance_ramoffset);
1322     sc->lance_csr2 = LN_ADDR_HI(0 + sc->lance_ramoffset);
1323     return 1;
1324 }
1325
1326 static int
1327 lance_init_ring(struct le_softc *sc, ln_ring_t *rp, lance_ring_t *ri,
1328     unsigned ndescs, lance_addr_t bufoffset, lance_addr_t descoffset)
1329 {
1330     lance_descinfo_t *di;
1331
1332     /*
1333      * Initialize the ring pointer in the LANCE InitBlock
1334      */
1335     rp->r_addr_lo = LN_ADDR_LO(descoffset + sc->lance_ramoffset);
1336     rp->r_addr_hi = LN_ADDR_HI(descoffset + sc->lance_ramoffset);
1337     rp->r_log2_size = ffs(ndescs) - 1;
1338
1339     /*
1340      * Allocate the ring entry descriptors and initialize
1341      * our ring information data structure.  All these are
1342      * our copies and do not live in the LANCE RAM.
1343      */
1344     ri->ri_first = malloc(ndescs * sizeof(*di), M_DEVBUF, M_WAITOK);
1345     ri->ri_free = ri->ri_max = ndescs;
1346     ri->ri_last = ri->ri_first + ri->ri_max;
1347     for (di = ri->ri_first; di < ri->ri_last; di++) {
1348         di->di_addr = sc->le_membase + descoffset;
1349         di->di_mbuf = NULL;
1350         if (bufoffset) {
1351             di->di_bufaddr = bufoffset;
1352             di->di_buflen = sc->lance_rxbufsize;
1353             bufoffset += sc->lance_rxbufsize;
1354         }
1355         descoffset += sizeof(ln_desc_t);
1356     }
1357     return 1;
1358 }
1359
1360 static void
1361 lance_dumpcsrs(struct le_softc *sc, const char *id)
1362 {
1363     if_printf(&sc->le_if, "%s: nicsr=%04x", id, DEPCA_RDNICSR(sc));
1364     LN_SELCSR(sc, LN_CSR0);
1365     printf(" csr0=%04x", LN_RDCSR(sc));
1366     LN_SELCSR(sc, LN_CSR1);
1367     printf(" csr1=%04x", LN_RDCSR(sc));
1368     LN_SELCSR(sc, LN_CSR2);
1369     printf(" csr2=%04x", LN_RDCSR(sc));
1370     LN_SELCSR(sc, LN_CSR3);
1371     printf(" csr3=%04x\n", LN_RDCSR(sc));
1372     LN_SELCSR(sc, LN_CSR0);
1373 }
1374
1375 static void
1376 lance_reset(struct le_softc *sc)
1377 {
1378     int cnt, csr;
1379
1380     /* lance_dumpcsrs(sc, "lance_reset: start"); */
1381
1382     LN_WRCSR(sc, LN_RDCSR(sc) & ~LN_CSR0_ENABINTR);
1383     LN_WRCSR(sc, LN_CSR0_STOP);
1384     DELAY(100);
1385
1386     sc->le_flags &= ~IFF_UP;
1387     sc->le_if.if_flags &= ~(IFF_UP|IFF_RUNNING);
1388
1389     le_multi_filter(sc);                /* initialize the multicast table */
1390     if ((sc->le_flags | sc->le_if.if_flags) & IFF_ALLMULTI) {
1391         sc->lance_initb.ln_multi_mask[0] = 0xFFFFU;
1392         sc->lance_initb.ln_multi_mask[1] = 0xFFFFU;
1393         sc->lance_initb.ln_multi_mask[2] = 0xFFFFU;
1394         sc->lance_initb.ln_multi_mask[3] = 0xFFFFU;
1395     }
1396     sc->lance_initb.ln_physaddr[0] = ((u_short *) sc->le_ac.ac_enaddr)[0];
1397     sc->lance_initb.ln_physaddr[1] = ((u_short *) sc->le_ac.ac_enaddr)[1];
1398     sc->lance_initb.ln_physaddr[2] = ((u_short *) sc->le_ac.ac_enaddr)[2];
1399     if (sc->le_if.if_flags & IFF_PROMISC) {
1400         sc->lance_initb.ln_mode |= LN_MODE_PROMISC;
1401     } else {
1402         sc->lance_initb.ln_mode &= ~LN_MODE_PROMISC;
1403     }
1404     /*
1405      * We force the init block to be at the start
1406      * of the LANCE's RAM buffer.
1407      */
1408     LN_COPYTO(sc, &sc->lance_initb, sc->le_membase, sizeof(sc->lance_initb));
1409     LN_SELCSR(sc, LN_CSR1); LN_WRCSR(sc, sc->lance_csr1);
1410     LN_SELCSR(sc, LN_CSR2); LN_WRCSR(sc, sc->lance_csr2);
1411     LN_SELCSR(sc, LN_CSR3); LN_WRCSR(sc, sc->lance_csr3);
1412
1413     /* lance_dumpcsrs(sc, "lance_reset: preinit"); */
1414
1415     /*
1416      * clear INITDONE and INIT the chip
1417      */
1418     LN_SELCSR(sc, LN_CSR0);
1419     LN_WRCSR(sc, LN_CSR0_INIT|LN_CSR0_INITDONE);
1420
1421     csr = 0;
1422     cnt = 100;
1423     while (cnt-- > 0) {
1424         if (((csr = LN_RDCSR(sc)) & LN_CSR0_INITDONE) != 0)
1425             break;
1426         DELAY(10000);
1427     }
1428
1429     if ((csr & LN_CSR0_INITDONE) == 0) {    /* make sure we got out okay */
1430         lance_dumpcsrs(sc, "lance_reset: reset failure");
1431     } else {
1432         /* lance_dumpcsrs(sc, "lance_reset: end"); */
1433         sc->le_if.if_flags |= IFF_UP;
1434         sc->le_flags |= IFF_UP;
1435     }
1436 }
1437
1438 static void
1439 lance_init(void *xsc)
1440 {
1441     struct le_softc *sc = (struct le_softc *)xsc;
1442     lance_ring_t *ri;
1443     lance_descinfo_t *di;
1444     ln_desc_t desc;
1445
1446     LN_STAT(inits++);
1447     if (sc->le_if.if_flags & IFF_RUNNING) {
1448         sc->if_reset(sc);
1449         lance_tx_intr(sc);
1450         /*
1451          * If we were running, abort any pending transmits.
1452          */
1453         ri = &sc->lance_txinfo;
1454         di = ri->ri_nextout;
1455         while (ri->ri_free < ri->ri_max) {
1456             if (--di == ri->ri_first)
1457                 di = ri->ri_nextout - 1;
1458             if (di->di_mbuf == NULL)
1459                 break;
1460             m_free(di->di_mbuf);
1461             di->di_mbuf = NULL;
1462             ri->ri_free++;
1463         }
1464     } else {
1465         sc->if_reset(sc);
1466     }
1467
1468     /*
1469      * Reset the transmit ring.  Make sure we own all the buffers.
1470      * Also reset the transmit heap.
1471      */
1472     sc->le_if.if_flags &= ~IFF_OACTIVE;
1473     ri = &sc->lance_txinfo;
1474     for (di = ri->ri_first; di < ri->ri_last; di++) {
1475         if (di->di_mbuf != NULL) {
1476             m_freem(di->di_mbuf);
1477             di->di_mbuf = NULL;
1478         }
1479         desc.d_flag = 0;
1480         desc.d_addr_lo = LN_ADDR_LO(ri->ri_heap + sc->lance_ramoffset);
1481         desc.d_addr_hi = LN_ADDR_HI(ri->ri_heap + sc->lance_ramoffset);
1482         desc.d_buflen = 0;
1483         LN_PUTDESC(sc, &desc, di->di_addr);
1484     }
1485     ri->ri_nextin = ri->ri_nextout = ri->ri_first;
1486     ri->ri_free = ri->ri_max;
1487     ri->ri_outptr = ri->ri_heap;
1488     ri->ri_outsize = ri->ri_heapend - ri->ri_heap;
1489
1490     ri = &sc->lance_rxinfo;
1491     desc.d_flag = LN_DFLAG_OWNER;
1492     desc.d_buflen = 0 - sc->lance_rxbufsize;
1493     for (di = ri->ri_first; di < ri->ri_last; di++) {
1494         desc.d_addr_lo = LN_ADDR_LO(di->di_bufaddr + sc->lance_ramoffset);
1495         desc.d_addr_hi = LN_ADDR_HI(di->di_bufaddr + sc->lance_ramoffset);
1496         LN_PUTDESC(sc, &desc, di->di_addr);
1497     }
1498     ri->ri_nextin = ri->ri_nextout = ri->ri_first;
1499     ri->ri_outptr = ri->ri_heap;
1500     ri->ri_outsize = ri->ri_heapend - ri->ri_heap;
1501     ri->ri_free = 0;
1502
1503     if (sc->le_if.if_flags & IFF_UP) {
1504         sc->le_if.if_flags |= IFF_RUNNING;
1505         LN_WRCSR(sc, LN_CSR0_START|LN_CSR0_INITDONE|LN_CSR0_ENABINTR);
1506         /* lance_dumpcsrs(sc, "lance_init: up"); */
1507         lance_start(&sc->le_if);
1508     } else {
1509         /* lance_dumpcsrs(sc, "lance_init: down"); */
1510         sc->le_if.if_flags &= ~IFF_RUNNING;
1511     }
1512 }
1513
1514 static void
1515 lance_intr(struct le_softc *sc)
1516 {
1517     unsigned oldcsr;
1518
1519     oldcsr = LN_RDCSR(sc);
1520     oldcsr &= ~LN_CSR0_ENABINTR;
1521     LN_WRCSR(sc, oldcsr);
1522     LN_WRCSR(sc, LN_CSR0_ENABINTR);
1523
1524     if (oldcsr & LN_CSR0_ERRSUM) {
1525         if (oldcsr & LN_CSR0_MISS) {
1526             /*
1527              *  LN_CSR0_MISS is signaled when the LANCE receiver
1528              *  loses a packet because it doesn't own a receive
1529              *  descriptor. Rev. D LANCE chips, which are no
1530              *  longer used, require a chip reset as described
1531              *  below.
1532              */
1533             LN_STAT(rx_misses++);
1534         }
1535         if (oldcsr & LN_CSR0_MEMERROR) {
1536             LN_STAT(memory_errors++);
1537             if (oldcsr & (LN_CSR0_RXON|LN_CSR0_TXON)) {
1538                 lance_init(sc);
1539                 return;
1540             }
1541         }
1542     }
1543
1544     if ((oldcsr & LN_CSR0_RXINT) && lance_rx_intr(sc)) {
1545         lance_init(sc);
1546         return;
1547     }
1548
1549     if (oldcsr & LN_CSR0_TXINT) {
1550         if (lance_tx_intr(sc))
1551             lance_start(&sc->le_if);
1552     }
1553
1554     if (oldcsr == (LN_CSR0_PENDINTR|LN_CSR0_RXON|LN_CSR0_TXON))
1555         if_printf(&sc->le_if, "lance_intr: stray interrupt\n");
1556 }
1557
1558 static int
1559 lance_rx_intr(struct le_softc *sc)
1560 {
1561     lance_ring_t *ri = &sc->lance_rxinfo;
1562     lance_descinfo_t *eop;
1563     ln_desc_t desc;
1564     int ndescs, total_len, rxdescs;
1565
1566     LN_STAT(rx_intrs++);
1567
1568     for (rxdescs = 0;;) {
1569         /*
1570          * Now to try to find the end of this packet chain.
1571          */
1572         for (ndescs = 1, eop = ri->ri_nextin;; ndescs++) {
1573             /*
1574              * If we don't own this descriptor, the packet ain't
1575              * all here so return because we are done.
1576              */
1577             LN_GETDESC(sc, &desc, eop->di_addr);
1578             if (desc.d_flag & LN_DFLAG_OWNER)
1579                 return 0;
1580             /*
1581              * In case we have missed a packet and gotten the
1582              * LANCE confused, make sure we are pointing at the
1583              * start of a packet. If we aren't, something is really
1584              * strange so reinit the LANCE.
1585              */
1586             if (desc.d_flag & LN_DFLAG_RxBUFERROR) {
1587                 LN_STAT(rx_buferror++);
1588                 return 1;
1589             }
1590             if ((desc.d_flag & LN_DFLAG_SOP) && eop != ri->ri_nextin) {
1591                 LN_STAT(rx_badsop++);
1592                 return 1;
1593             }
1594             if (desc.d_flag & LN_DFLAG_EOP)
1595                 break;
1596             if (++eop == ri->ri_last)
1597                 eop = ri->ri_first;
1598         }
1599
1600         total_len = (desc.d_status & LN_DSTS_RxLENMASK) - 4;
1601         if ((desc.d_flag & LN_DFLAG_RxERRSUM) == 0) {
1602             /*
1603              * Valid Packet -- If the SOP is less than or equal to the EOP
1604              * or the length is less than the receive buffer size, then the
1605              * packet is contiguous in memory and can be copied in one shot.
1606              * Otherwise we need to copy two segments to get the entire
1607              * packet.
1608              */
1609             if (ri->ri_nextin <= eop || total_len <= ri->ri_heapend - ri->ri_nextin->di_bufaddr) {
1610                 le_input(sc, sc->le_membase + ri->ri_nextin->di_bufaddr,
1611                          total_len, total_len, NULL);
1612                 LN_STAT(rx_contig++);
1613             } else {
1614                 le_input(sc, sc->le_membase + ri->ri_nextin->di_bufaddr,
1615                          total_len,
1616                          ri->ri_heapend - ri->ri_nextin->di_bufaddr,
1617                          sc->le_membase + ri->ri_first->di_bufaddr);
1618                 LN_STAT(rx_noncontig++);
1619             }
1620         } else {
1621             /*
1622              * If the packet is bad, increment the
1623              * counters.
1624              */
1625             sc->le_if.if_ierrors++;
1626             if (desc.d_flag & LN_DFLAG_RxBADCRC)
1627                 LN_STAT(rx_badcrc++);
1628             if (desc.d_flag & LN_DFLAG_RxOVERFLOW)
1629                 LN_STAT(rx_badalign++);
1630             if (desc.d_flag & LN_DFLAG_RxFRAMING)
1631                 LN_STAT(rx_badframe++);
1632         }
1633         sc->le_if.if_ipackets++;
1634         LN_STAT(rx_ndescs[ndescs-1]++);
1635         rxdescs += ndescs;
1636         while (ndescs-- > 0) {
1637             LN_SETFLAG(sc, ri->ri_nextin->di_addr, LN_DFLAG_OWNER);
1638             if (++ri->ri_nextin == ri->ri_last)
1639                 ri->ri_nextin = ri->ri_first;
1640         }
1641     }
1642     /* LN_STAT(rx_intr_descs[rxdescs]++); */
1643     LN_MAXSTAT(rx_intr_hidescs, rxdescs);
1644
1645     return 0;
1646 }
1647
1648 static void
1649 lance_start(struct ifnet *ifp)
1650 {
1651     struct le_softc *sc = (struct le_softc *) ifp;
1652     lance_ring_t *ri = &sc->lance_txinfo;
1653     lance_descinfo_t *di;
1654     ln_desc_t desc;
1655     unsigned len, slop;
1656     struct mbuf *m, *m0;
1657     caddr_t bp;
1658
1659     if ((ifp->if_flags & IFF_RUNNING) == 0)
1660         return;
1661
1662     for (;;) {
1663         m = ifq_poll(&ifp->if_snd);
1664         if (m == NULL)
1665             break;
1666
1667         /*
1668          * Make the packet meets the minimum size for Ethernet.
1669          * The slop is so that we also use an even number of longwards.
1670          */
1671         len = ETHERMIN + sizeof(struct ether_header);
1672         if (m->m_pkthdr.len > len)
1673             len = m->m_pkthdr.len;
1674
1675         slop = (8 - len) & 3;
1676         /*
1677          * If there are no free ring entries (there must be always
1678          * one owned by the host), or there's not enough space for
1679          * this packet, or this packet would wrap around the end
1680          * of LANCE RAM then wait for the transmits to empty for
1681          * space and ring entries to become available.
1682          */
1683         if (ri->ri_free == 1 || len + slop > ri->ri_outsize) {
1684             /*
1685              * Try to see if we can free up anything off the transit ring.
1686              */
1687             if (lance_tx_intr(sc) > 0) {
1688                 LN_STAT(tx_drains[0]++);
1689                 continue;
1690             }
1691             LN_STAT(tx_nospc[0]++);
1692             break;
1693         }
1694
1695         if (len + slop > ri->ri_heapend - ri->ri_outptr) {
1696             /*
1697              * Since the packet won't fit in the end of the transmit
1698              * heap, see if there is space at the beginning of the transmit
1699              * heap.  If not, try again when there is space.
1700              */
1701             LN_STAT(tx_orphaned++);
1702             slop += ri->ri_heapend - ri->ri_outptr;
1703             if (len + slop > ri->ri_outsize) {
1704                 LN_STAT(tx_nospc[1]++);
1705                 break;
1706             }
1707             /*
1708              * Point to the beginning of the heap
1709              */
1710             ri->ri_outptr = ri->ri_heap;
1711             LN_STAT(tx_adoptions++);
1712         }
1713
1714         /*
1715          * Initialize the descriptor (saving the buffer address,
1716          * buffer length, and mbuf) and write the packet out
1717          * to the board.
1718          */
1719         di = ri->ri_nextout;
1720         di->di_bufaddr = ri->ri_outptr;
1721         di->di_buflen = len + slop;
1722         di->di_mbuf = m;
1723         bp = sc->le_membase + di->di_bufaddr;
1724         for (m0 = m; m0 != NULL; m0 = m0->m_next) {
1725             LN_COPYTO(sc, mtod(m0, caddr_t), bp, m0->m_len);
1726             bp += m0->m_len;
1727         }
1728         /*
1729          * Zero out the remainder if needed (< ETHERMIN).
1730          */
1731         if (m->m_pkthdr.len < len)
1732             LN_ZERO(sc, bp, len - m->m_pkthdr.len);
1733
1734         m = ifq_dequeue(&ifp->if_snd);
1735
1736         /*
1737          * Finally, copy out the descriptor and tell the
1738          * LANCE to transmit!.
1739          */
1740         desc.d_buflen = 0 - len;
1741         desc.d_addr_lo = LN_ADDR_LO(di->di_bufaddr + sc->lance_ramoffset);
1742         desc.d_addr_hi = LN_ADDR_HI(di->di_bufaddr + sc->lance_ramoffset);
1743         desc.d_flag = LN_DFLAG_SOP|LN_DFLAG_EOP|LN_DFLAG_OWNER;
1744         LN_PUTDESC(sc, &desc, di->di_addr);
1745         LN_WRCSR(sc, LN_CSR0_TXDEMAND|LN_CSR0_ENABINTR);
1746
1747         /*
1748          * Do our bookkeeping with our transmit heap.
1749          * (if we wrap, point back to the beginning).
1750          */
1751         ri->ri_outptr += di->di_buflen;
1752         ri->ri_outsize -= di->di_buflen;
1753         LN_MAXSTAT(high_txoutptr, ri->ri_outptr);
1754         LN_MINSTAT(low_txheapsize, ri->ri_outsize);
1755
1756         if (ri->ri_outptr == ri->ri_heapend)
1757             ri->ri_outptr = ri->ri_heap;
1758
1759         ri->ri_free--;
1760         if (++ri->ri_nextout == ri->ri_last)
1761             ri->ri_nextout = ri->ri_first;
1762         LN_MINSTAT(low_txfree, ri->ri_free);
1763     }
1764     if (m != NULL)
1765         ifp->if_flags |= IFF_OACTIVE;
1766 }
1767
1768 static int
1769 lance_tx_intr(struct le_softc *sc)
1770 {
1771     lance_ring_t *ri = &sc->lance_txinfo;
1772     unsigned xmits;
1773
1774     LN_STAT(tx_intrs++);
1775     for (xmits = 0; ri->ri_free < ri->ri_max; ) {
1776         ln_desc_t desc;
1777
1778         LN_GETDESC(sc, &desc, ri->ri_nextin->di_addr);
1779         if (desc.d_flag & LN_DFLAG_OWNER)
1780             break;
1781
1782         if (desc.d_flag & (LN_DFLAG_TxONECOLL|LN_DFLAG_TxMULTCOLL))
1783             sc->le_if.if_collisions++;
1784         if (desc.d_flag & LN_DFLAG_TxDEFERRED)
1785             LN_STAT(tx_deferred++);
1786         if (desc.d_flag & LN_DFLAG_TxONECOLL)
1787             LN_STAT(tx_single_collisions++);
1788         if (desc.d_flag & LN_DFLAG_TxMULTCOLL)
1789             LN_STAT(tx_multiple_collisions++);
1790
1791         if (desc.d_flag & LN_DFLAG_TxERRSUM) {
1792             if (desc.d_status & (LN_DSTS_TxUNDERFLOW|LN_DSTS_TxBUFERROR|
1793                                  LN_DSTS_TxEXCCOLL|LN_DSTS_TxLATECOLL)) {
1794                 if (desc.d_status & LN_DSTS_TxEXCCOLL) {
1795                     unsigned tdr;
1796                     LN_STAT(tx_excessive_collisions++);
1797                     if ((tdr = (desc.d_status & LN_DSTS_TxTDRMASK)) > 0) {
1798                         tdr *= 100;
1799                         if_printf(&sc->le_if, "lance: warning: excessive collisions: TDR %dns (%d-%dm)\n",
1800                                tdr, (tdr*99)/1000, (tdr*117)/1000);
1801                     }
1802                 }
1803                 if (desc.d_status & LN_DSTS_TxBUFERROR)
1804                     LN_STAT(tx_buferror++);
1805                 sc->le_if.if_oerrors++;
1806                 if ((desc.d_status & LN_DSTS_TxLATECOLL) == 0) {
1807                     lance_init(sc);
1808                     return 0;
1809                 } else {
1810                     LN_STAT(tx_late_collisions++);
1811                 }
1812             }
1813         }
1814         m_freem(ri->ri_nextin->di_mbuf);
1815         ri->ri_nextin->di_mbuf = NULL;
1816         sc->le_if.if_opackets++;
1817         ri->ri_free++;
1818         ri->ri_outsize += ri->ri_nextin->di_buflen;
1819         if (++ri->ri_nextin == ri->ri_last)
1820             ri->ri_nextin = ri->ri_first;
1821         sc->le_if.if_flags &= ~IFF_OACTIVE;
1822         xmits++;
1823     }
1824     if (ri->ri_free == ri->ri_max)
1825         LN_STAT(tx_emptied++);
1826     /* LN_STAT(tx_intr_descs[xmits]++); */
1827     LN_MAXSTAT(tx_intr_hidescs, xmits);
1828     return xmits;
1829 }