1e63ede82fdcf94d64fe9ffb11f0955d8f967cbc
[dragonfly.git] / sys / dev / netif / ed / if_ed.c
1 /*
2  * Copyright (c) 1995, David Greenman
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 unmodified, this list of conditions, and the following
10  *    disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD: src/sys/dev/ed/if_ed.c,v 1.224 2003/12/08 07:54:12 obrien Exp $
28  * $DragonFly: src/sys/dev/netif/ed/if_ed.c,v 1.18 2005/01/23 20:21:31 joerg Exp $
29  */
30
31 /*
32  * Device driver for National Semiconductor DS8390/WD83C690 based ethernet
33  *   adapters. By David Greenman, 29-April-1993
34  *
35  * Currently supports the Western Digital/SMC 8003 and 8013 series,
36  *   the SMC Elite Ultra (8216), the 3Com 3c503, the NE1000 and NE2000,
37  *   and a variety of similar clones.
38  *
39  */
40
41 #include "opt_ed.h"
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/sockio.h>
46 #include <sys/mbuf.h>
47 #include <sys/kernel.h>
48 #include <sys/socket.h>
49 #include <sys/syslog.h>
50
51 #include <sys/module.h>
52 #include <sys/bus.h>
53
54 #include <machine/bus.h>
55 #include <sys/rman.h>
56 #include <machine/resource.h>
57
58 #include <net/ethernet.h>
59 #include <net/if.h>
60 #include <net/if_arp.h>
61 #include <net/if_dl.h>
62 #include <net/if_mib.h>
63 #include <net/if_media.h>
64
65 #ifndef ED_NO_MIIBUS
66 #include <dev/netif/mii_layer/mii.h>
67 #include <dev/netif/mii_layer/miivar.h>
68 #endif
69
70 #include <net/bpf.h>
71 #include "opt_bdg.h"
72 #include <net/bridge/bridge.h>
73
74 #include <machine/md_var.h>
75
76 #include "if_edreg.h"
77 #include "if_edvar.h"
78
79 devclass_t ed_devclass;
80
81 static void     ed_init         (void *);
82 static int      ed_ioctl(struct ifnet *, u_long, caddr_t, struct ucred *);
83 static void     ed_start        (struct ifnet *);
84 static void     ed_reset        (struct ifnet *);
85 static void     ed_watchdog     (struct ifnet *);
86 #ifndef ED_NO_MIIBUS
87 static void     ed_tick         (void *);
88 #endif
89
90 static void     ds_getmcaf      (struct ed_softc *, u_int32_t *);
91
92 static void     ed_get_packet   (struct ed_softc *, char *, /* u_short */ int);
93
94 static __inline void    ed_rint (struct ed_softc *);
95 static __inline void    ed_xmit (struct ed_softc *);
96 static __inline char *  ed_ring_copy (struct ed_softc *, char *, char *,
97                                           /* u_short */ int);
98 static void     ed_hpp_set_physical_link (struct ed_softc *);
99 static void     ed_hpp_readmem  (struct ed_softc *, int, unsigned char *,
100                                     /* u_short */ int);
101 static void     ed_hpp_writemem (struct ed_softc *, unsigned char *,
102                                     /* u_short */ int, /* u_short */ int);
103 static u_short  ed_hpp_write_mbufs (struct ed_softc *, struct mbuf *,
104                                         int);
105
106 static u_short  ed_pio_write_mbufs (struct ed_softc *, struct mbuf *,
107                                         int);
108
109 static void     ed_setrcr       (struct ed_softc *);
110
111 static uint32_t ds_mchash       (const uint8_t *);
112
113 DECLARE_DUMMY_MODULE(if_ed);
114
115 /*
116  * Interrupt conversion table for WD/SMC ASIC/83C584
117  */
118 static unsigned short ed_intr_val[] = {
119         9,
120         3,
121         5,
122         7,
123         10,
124         11,
125         15,
126         4
127 };
128
129 /*
130  * Interrupt conversion table for 83C790
131  */
132 static unsigned short ed_790_intr_val[] = {
133         0,
134         9,
135         3,
136         5,
137         7,
138         10,
139         11,
140         15
141 };
142
143 /*
144  * Interrupt conversion table for the HP PC LAN+
145  */
146
147 static unsigned short ed_hpp_intr_val[] = {
148         0,              /* 0 */
149         0,              /* 1 */
150         0,              /* 2 */
151         3,              /* 3 */
152         4,              /* 4 */
153         5,              /* 5 */
154         6,              /* 6 */
155         7,              /* 7 */
156         0,              /* 8 */
157         9,              /* 9 */
158         10,             /* 10 */
159         11,             /* 11 */
160         12,             /* 12 */
161         0,              /* 13 */
162         0,              /* 14 */
163         15              /* 15 */
164 };
165
166 /*
167  * Generic probe routine for testing for the existance of a DS8390.
168  *      Must be called after the NIC has just been reset. This routine
169  *      works by looking at certain register values that are guaranteed
170  *      to be initialized a certain way after power-up or reset. Seems
171  *      not to currently work on the 83C690.
172  *
173  * Specifically:
174  *
175  *      Register                        reset bits      set bits
176  *      Command Register (CR)           TXP, STA        RD2, STP
177  *      Interrupt Status (ISR)                          RST
178  *      Interrupt Mask (IMR)            All bits
179  *      Data Control (DCR)                              LAS
180  *      Transmit Config. (TCR)          LB1, LB0
181  *
182  * We only look at the CR and ISR registers, however, because looking at
183  *      the others would require changing register pages (which would be
184  *      intrusive if this isn't an 8390).
185  *
186  * Return 1 if 8390 was found, 0 if not.
187  */
188
189 int
190 ed_probe_generic8390(sc)
191         struct ed_softc *sc;
192 {
193         if ((ed_nic_inb(sc, ED_P0_CR) &
194              (ED_CR_RD2 | ED_CR_TXP | ED_CR_STA | ED_CR_STP)) !=
195             (ED_CR_RD2 | ED_CR_STP))
196                 return (0);
197         if ((ed_nic_inb(sc, ED_P0_ISR) & ED_ISR_RST) != ED_ISR_RST)
198                 return (0);
199
200         return (1);
201 }
202
203 /*
204  * Probe and vendor-specific initialization routine for SMC/WD80x3 boards
205  */
206 int
207 ed_probe_WD80x3_generic(dev, flags, intr_vals)
208         device_t dev;
209         int flags;
210         unsigned short *intr_vals[];
211 {
212         struct ed_softc *sc = device_get_softc(dev);
213         int     error;
214         int     i;
215         u_int   memsize, maddr;
216         u_char  iptr, isa16bit, sum, totalsum;
217         u_long  conf_maddr, conf_msize, irq, junk;
218
219         sc->chip_type = ED_CHIP_TYPE_DP8390;
220
221         if (ED_FLAGS_GETTYPE(flags) == ED_FLAGS_TOSH_ETHER) {
222                 totalsum = ED_WD_ROM_CHECKSUM_TOTAL_TOSH_ETHER;
223                 ed_asic_outb(sc, ED_WD_MSR, ED_WD_MSR_POW);
224                 DELAY(10000);
225         }
226         else
227                 totalsum = ED_WD_ROM_CHECKSUM_TOTAL;
228
229         /*
230          * Attempt to do a checksum over the station address PROM. If it
231          * fails, it's probably not a SMC/WD board. There is a problem with
232          * this, though: some clone WD boards don't pass the checksum test.
233          * Danpex boards for one.
234          */
235         for (sum = 0, i = 0; i < 8; ++i)
236                 sum += ed_asic_inb(sc, ED_WD_PROM + i);
237
238         if (sum != totalsum) {
239
240                 /*
241                  * Checksum is invalid. This often happens with cheap WD8003E
242                  * clones.  In this case, the checksum byte (the eighth byte)
243                  * seems to always be zero.
244                  */
245                 if (ed_asic_inb(sc, ED_WD_CARD_ID) != ED_TYPE_WD8003E ||
246                     ed_asic_inb(sc, ED_WD_PROM + 7) != 0)
247                         return (ENXIO);
248         }
249         /* reset card to force it into a known state. */
250         if (ED_FLAGS_GETTYPE(flags) == ED_FLAGS_TOSH_ETHER)
251                 ed_asic_outb(sc, ED_WD_MSR, ED_WD_MSR_RST | ED_WD_MSR_POW);
252         else
253                 ed_asic_outb(sc, ED_WD_MSR, ED_WD_MSR_RST);
254
255         DELAY(100);
256         ed_asic_outb(sc, ED_WD_MSR, ed_asic_inb(sc, ED_WD_MSR) & ~ED_WD_MSR_RST);
257         /* wait in the case this card is reading its EEROM */
258         DELAY(5000);
259
260         sc->vendor = ED_VENDOR_WD_SMC;
261         sc->type = ed_asic_inb(sc, ED_WD_CARD_ID);
262
263         /*
264          * Set initial values for width/size.
265          */
266         memsize = 8192;
267         isa16bit = 0;
268         switch (sc->type) {
269         case ED_TYPE_WD8003S:
270                 sc->type_str = "WD8003S";
271                 break;
272         case ED_TYPE_WD8003E:
273                 sc->type_str = "WD8003E";
274                 break;
275         case ED_TYPE_WD8003EB:
276                 sc->type_str = "WD8003EB";
277                 break;
278         case ED_TYPE_WD8003W:
279                 sc->type_str = "WD8003W";
280                 break;
281         case ED_TYPE_WD8013EBT:
282                 sc->type_str = "WD8013EBT";
283                 memsize = 16384;
284                 isa16bit = 1;
285                 break;
286         case ED_TYPE_WD8013W:
287                 sc->type_str = "WD8013W";
288                 memsize = 16384;
289                 isa16bit = 1;
290                 break;
291         case ED_TYPE_WD8013EP:  /* also WD8003EP */
292                 if (ed_asic_inb(sc, ED_WD_ICR) & ED_WD_ICR_16BIT) {
293                         isa16bit = 1;
294                         memsize = 16384;
295                         sc->type_str = "WD8013EP";
296                 } else {
297                         sc->type_str = "WD8003EP";
298                 }
299                 break;
300         case ED_TYPE_WD8013WC:
301                 sc->type_str = "WD8013WC";
302                 memsize = 16384;
303                 isa16bit = 1;
304                 break;
305         case ED_TYPE_WD8013EBP:
306                 sc->type_str = "WD8013EBP";
307                 memsize = 16384;
308                 isa16bit = 1;
309                 break;
310         case ED_TYPE_WD8013EPC:
311                 sc->type_str = "WD8013EPC";
312                 memsize = 16384;
313                 isa16bit = 1;
314                 break;
315         case ED_TYPE_SMC8216C: /* 8216 has 16K shared mem -- 8416 has 8K */
316         case ED_TYPE_SMC8216T:
317                 if (sc->type == ED_TYPE_SMC8216C) {
318                         sc->type_str = "SMC8216/SMC8216C";
319                 } else {
320                         sc->type_str = "SMC8216T";
321                 }
322
323                 ed_asic_outb(sc, ED_WD790_HWR,
324                     ed_asic_inb(sc, ED_WD790_HWR) | ED_WD790_HWR_SWH);
325                 switch (ed_asic_inb(sc, ED_WD790_RAR) & ED_WD790_RAR_SZ64) {
326                 case ED_WD790_RAR_SZ64:
327                         memsize = 65536;
328                         break;
329                 case ED_WD790_RAR_SZ32:
330                         memsize = 32768;
331                         break;
332                 case ED_WD790_RAR_SZ16:
333                         memsize = 16384;
334                         break;
335                 case ED_WD790_RAR_SZ8:
336                         /* 8216 has 16K shared mem -- 8416 has 8K */
337                         if (sc->type == ED_TYPE_SMC8216C) {
338                                 sc->type_str = "SMC8416C/SMC8416BT";
339                         } else {
340                                 sc->type_str = "SMC8416T";
341                         }
342                         memsize = 8192;
343                         break;
344                 }
345                 ed_asic_outb(sc, ED_WD790_HWR,
346                     ed_asic_inb(sc, ED_WD790_HWR) & ~ED_WD790_HWR_SWH);
347
348                 isa16bit = 1;
349                 sc->chip_type = ED_CHIP_TYPE_WD790;
350                 break;
351         case ED_TYPE_TOSHIBA1:
352                 sc->type_str = "Toshiba1";
353                 memsize = 32768;
354                 isa16bit = 1;
355                 break;
356         case ED_TYPE_TOSHIBA4:
357                 sc->type_str = "Toshiba4";
358                 memsize = 32768;
359                 isa16bit = 1;
360                 break;
361         default:
362                 sc->type_str = "";
363                 break;
364         }
365
366         /*
367          * Make some adjustments to initial values depending on what is found
368          * in the ICR.
369          */
370         if (isa16bit && (sc->type != ED_TYPE_WD8013EBT)
371           && (sc->type != ED_TYPE_TOSHIBA1) && (sc->type != ED_TYPE_TOSHIBA4)
372             && ((ed_asic_inb(sc, ED_WD_ICR) & ED_WD_ICR_16BIT) == 0)) {
373                 isa16bit = 0;
374                 memsize = 8192;
375         }
376
377         error = bus_get_resource(dev, SYS_RES_MEMORY, 0,
378                                  &conf_maddr, &conf_msize);
379         if (error)
380                 return (error);
381
382 #if ED_DEBUG
383         printf("type = %x type_str=%s isa16bit=%d memsize=%d id_msize=%d\n",
384                sc->type, sc->type_str, isa16bit, memsize, conf_msize);
385         for (i = 0; i < 8; i++)
386                 printf("%x -> %x\n", i, ed_asic_inb(sc, i));
387 #endif
388
389         /*
390          * Allow the user to override the autoconfiguration
391          */
392         if (conf_msize > 1)
393                 memsize = conf_msize;
394
395         maddr = conf_maddr;
396         if (maddr < 0xa0000 || maddr + memsize > 0x1000000) {
397                 device_printf(dev, "Invalid ISA memory address range configured: 0x%x - 0x%x\n",
398                               maddr, maddr + memsize);
399                 return (ENXIO);
400         }
401
402         /*
403          * (note that if the user specifies both of the following flags that
404          * '8bit' mode intentionally has precedence)
405          */
406         if (flags & ED_FLAGS_FORCE_16BIT_MODE)
407                 isa16bit = 1;
408         if (flags & ED_FLAGS_FORCE_8BIT_MODE)
409                 isa16bit = 0;
410
411         /*
412          * If possible, get the assigned interrupt number from the card and
413          * use it.
414          */
415         if ((sc->type & ED_WD_SOFTCONFIG) &&
416             (sc->chip_type != ED_CHIP_TYPE_WD790)) {
417
418                 /*
419                  * Assemble together the encoded interrupt number.
420                  */
421                 iptr = (ed_asic_inb(sc, ED_WD_ICR) & ED_WD_ICR_IR2) |
422                     ((ed_asic_inb(sc, ED_WD_IRR) &
423                       (ED_WD_IRR_IR0 | ED_WD_IRR_IR1)) >> 5);
424
425                 /*
426                  * If no interrupt specified (or "?"), use what the board tells us.
427                  */
428                 error = bus_get_resource(dev, SYS_RES_IRQ, 0,
429                                          &irq, &junk);
430                 if (error && intr_vals[0] != NULL) {
431                         error = bus_set_resource(dev, SYS_RES_IRQ, 0,
432                                                  intr_vals[0][iptr], 1);
433                 }
434                 if (error)
435                         return (error);
436
437                 /*
438                  * Enable the interrupt.
439                  */
440                 ed_asic_outb(sc, ED_WD_IRR,
441                      ed_asic_inb(sc, ED_WD_IRR) | ED_WD_IRR_IEN);
442         }
443         if (sc->chip_type == ED_CHIP_TYPE_WD790) {
444                 ed_asic_outb(sc, ED_WD790_HWR,
445                   ed_asic_inb(sc, ED_WD790_HWR) | ED_WD790_HWR_SWH);
446                 iptr = (((ed_asic_inb(sc, ED_WD790_GCR) & ED_WD790_GCR_IR2) >> 4) |
447                         (ed_asic_inb(sc, ED_WD790_GCR) &
448                          (ED_WD790_GCR_IR1 | ED_WD790_GCR_IR0)) >> 2);
449                 ed_asic_outb(sc, ED_WD790_HWR,
450                  ed_asic_inb(sc, ED_WD790_HWR) & ~ED_WD790_HWR_SWH);
451
452                 /*
453                  * If no interrupt specified (or "?"), use what the board tells us.
454                  */
455                 error = bus_get_resource(dev, SYS_RES_IRQ, 0,
456                                          &irq, &junk);
457                 if (error && intr_vals[1] != NULL) {
458                         error = bus_set_resource(dev, SYS_RES_IRQ, 0,
459                                                  intr_vals[1][iptr], 1);
460                 }
461                 if (error)
462                         return (error);
463
464                 /*
465                  * Enable interrupts.
466                  */
467                 ed_asic_outb(sc, ED_WD790_ICR,
468                   ed_asic_inb(sc, ED_WD790_ICR) | ED_WD790_ICR_EIL);
469         }
470         error = bus_get_resource(dev, SYS_RES_IRQ, 0,
471                                  &irq, &junk);
472         if (error) {
473                 device_printf(dev, "%s cards don't support auto-detected/assigned interrupts.\n",
474                               sc->type_str);
475                 return (ENXIO);
476         }
477         sc->isa16bit = isa16bit;
478         sc->mem_shared = 1;
479
480         error = ed_alloc_memory(dev, 0, memsize);
481         if (error) {
482                 printf("*** ed_alloc_memory() failed! (%d)\n", error);
483                 return (error);
484         }
485         sc->mem_start = (caddr_t) rman_get_virtual(sc->mem_res);
486
487         /*
488          * allocate one xmit buffer if < 16k, two buffers otherwise
489          */
490         if ((memsize < 16384) ||
491             (flags & ED_FLAGS_NO_MULTI_BUFFERING)) {
492                 sc->txb_cnt = 1;
493         } else {
494                 sc->txb_cnt = 2;
495         }
496         sc->tx_page_start = ED_WD_PAGE_OFFSET;
497         sc->rec_page_start = ED_WD_PAGE_OFFSET + ED_TXBUF_SIZE * sc->txb_cnt;
498         sc->rec_page_stop = ED_WD_PAGE_OFFSET + memsize / ED_PAGE_SIZE;
499         sc->mem_ring = sc->mem_start + (ED_PAGE_SIZE * sc->rec_page_start);
500         sc->mem_size = memsize;
501         sc->mem_end = sc->mem_start + memsize;
502
503         /*
504          * Get station address from on-board ROM
505          */
506         for (i = 0; i < ETHER_ADDR_LEN; ++i)
507                 sc->arpcom.ac_enaddr[i] = ed_asic_inb(sc, ED_WD_PROM + i);
508
509         /*
510          * Set upper address bits and 8/16 bit access to shared memory.
511          */
512         if (isa16bit) {
513                 if (sc->chip_type == ED_CHIP_TYPE_WD790) {
514                         sc->wd_laar_proto = ed_asic_inb(sc, ED_WD_LAAR);
515                 } else {
516                         sc->wd_laar_proto = ED_WD_LAAR_L16EN |
517                             ((kvtop(sc->mem_start) >> 19) & ED_WD_LAAR_ADDRHI);
518                 }
519                 /*
520                  * Enable 16bit access
521                  */
522                 ed_asic_outb(sc, ED_WD_LAAR, sc->wd_laar_proto |
523                     ED_WD_LAAR_M16EN);
524         } else {
525                 if (((sc->type & ED_WD_SOFTCONFIG) ||
526                      (sc->type == ED_TYPE_TOSHIBA1) ||
527                      (sc->type == ED_TYPE_TOSHIBA4) ||
528                      (sc->type == ED_TYPE_WD8013EBT)) &&
529                     (sc->chip_type != ED_CHIP_TYPE_WD790)) {
530                         sc->wd_laar_proto = (kvtop(sc->mem_start) >> 19) &
531                             ED_WD_LAAR_ADDRHI;
532                         ed_asic_outb(sc, ED_WD_LAAR, sc->wd_laar_proto);
533                 }
534         }
535
536         /*
537          * Set address and enable interface shared memory.
538          */
539         if (sc->chip_type != ED_CHIP_TYPE_WD790) {
540                 if (ED_FLAGS_GETTYPE(flags) == ED_FLAGS_TOSH_ETHER) {
541                         ed_asic_outb(sc, ED_WD_MSR + 1,
542                                      ((kvtop(sc->mem_start) >> 8) & 0xe0) | 4);
543                         ed_asic_outb(sc, ED_WD_MSR + 2,
544                                      ((kvtop(sc->mem_start) >> 16) & 0x0f));
545                         ed_asic_outb(sc, ED_WD_MSR,
546                                      ED_WD_MSR_MENB | ED_WD_MSR_POW);
547                 } else {
548                         ed_asic_outb(sc, ED_WD_MSR,
549                                      ((kvtop(sc->mem_start) >> 13) &
550                                       ED_WD_MSR_ADDR) | ED_WD_MSR_MENB);
551                 }
552                 sc->cr_proto = ED_CR_RD2;
553         } else {
554                 ed_asic_outb(sc, ED_WD_MSR, ED_WD_MSR_MENB);
555                 ed_asic_outb(sc, ED_WD790_HWR, (ed_asic_inb(sc, ED_WD790_HWR) | ED_WD790_HWR_SWH));
556                 ed_asic_outb(sc, ED_WD790_RAR, ((kvtop(sc->mem_start) >> 13) & 0x0f) |
557                      ((kvtop(sc->mem_start) >> 11) & 0x40) |
558                      (ed_asic_inb(sc, ED_WD790_RAR) & 0xb0));
559                 ed_asic_outb(sc, ED_WD790_HWR, (ed_asic_inb(sc, ED_WD790_HWR) & ~ED_WD790_HWR_SWH));
560                 sc->cr_proto = 0;
561         }
562
563 #if 0
564         printf("starting memory performance test at 0x%x, size %d...\n",
565                 sc->mem_start, memsize*16384);
566         for (i = 0; i < 16384; i++)
567                 bzero(sc->mem_start, memsize);
568         printf("***DONE***\n");
569 #endif
570
571         /*
572          * Now zero memory and verify that it is clear
573          */
574         bzero(sc->mem_start, memsize);
575
576         for (i = 0; i < memsize; ++i) {
577                 if (sc->mem_start[i]) {
578                         device_printf(dev, "failed to clear shared memory at %llx - check configuration\n",
579                                       (long long)kvtop(sc->mem_start + i));
580
581                         /*
582                          * Disable 16 bit access to shared memory
583                          */
584                         if (isa16bit) {
585                                 if (sc->chip_type == ED_CHIP_TYPE_WD790) {
586                                         ed_asic_outb(sc, ED_WD_MSR, 0x00);
587                                 }
588                                 ed_asic_outb(sc, ED_WD_LAAR, sc->wd_laar_proto &
589                                     ~ED_WD_LAAR_M16EN);
590                         }
591                         return (ENXIO);
592                 }
593         }
594
595         /*
596          * Disable 16bit access to shared memory - we leave it
597          * disabled so that 1) machines reboot properly when the board
598          * is set 16 bit mode and there are conflicting 8bit
599          * devices/ROMS in the same 128k address space as this boards
600          * shared memory. and 2) so that other 8 bit devices with
601          * shared memory can be used in this 128k region, too.
602          */
603         if (isa16bit) {
604                 if (sc->chip_type == ED_CHIP_TYPE_WD790) {
605                         ed_asic_outb(sc, ED_WD_MSR, 0x00);
606                 }
607                 ed_asic_outb(sc, ED_WD_LAAR, sc->wd_laar_proto &
608                     ~ED_WD_LAAR_M16EN);
609         }
610         return (0);
611 }
612
613 int
614 ed_probe_WD80x3(dev, port_rid, flags)
615         device_t dev;
616         int port_rid;
617         int flags;
618 {
619         struct ed_softc *sc = device_get_softc(dev);
620         int     error;
621         static unsigned short *intr_vals[] = {ed_intr_val, ed_790_intr_val};
622
623         error = ed_alloc_port(dev, port_rid, ED_WD_IO_PORTS);
624         if (error)
625                 return (error);
626
627         sc->asic_offset = ED_WD_ASIC_OFFSET;
628         sc->nic_offset  = ED_WD_NIC_OFFSET;
629
630         return ed_probe_WD80x3_generic(dev, flags, intr_vals);
631 }
632
633 /*
634  * Probe and vendor-specific initialization routine for 3Com 3c503 boards
635  */
636 int
637 ed_probe_3Com(dev, port_rid, flags)
638         device_t dev;
639         int port_rid;
640         int flags;
641 {
642         struct ed_softc *sc = device_get_softc(dev);
643         int     error;
644         int     i;
645         u_int   memsize;
646         u_char  isa16bit;
647         u_long  conf_maddr, conf_msize, irq, junk;
648
649         error = ed_alloc_port(dev, 0, ED_3COM_IO_PORTS);
650         if (error)
651                 return (error);
652
653         sc->asic_offset = ED_3COM_ASIC_OFFSET;
654         sc->nic_offset  = ED_3COM_NIC_OFFSET;
655
656         /*
657          * Verify that the kernel configured I/O address matches the board
658          * configured address
659          */
660         switch (ed_asic_inb(sc, ED_3COM_BCFR)) {
661         case ED_3COM_BCFR_300:
662                 if (rman_get_start(sc->port_res) != 0x300)
663                         return (ENXIO);
664                 break;
665         case ED_3COM_BCFR_310:
666                 if (rman_get_start(sc->port_res) != 0x310)
667                         return (ENXIO);
668                 break;
669         case ED_3COM_BCFR_330:
670                 if (rman_get_start(sc->port_res) != 0x330)
671                         return (ENXIO);
672                 break;
673         case ED_3COM_BCFR_350:
674                 if (rman_get_start(sc->port_res) != 0x350)
675                         return (ENXIO);
676                 break;
677         case ED_3COM_BCFR_250:
678                 if (rman_get_start(sc->port_res) != 0x250)
679                         return (ENXIO);
680                 break;
681         case ED_3COM_BCFR_280:
682                 if (rman_get_start(sc->port_res) != 0x280)
683                         return (ENXIO);
684                 break;
685         case ED_3COM_BCFR_2A0:
686                 if (rman_get_start(sc->port_res) != 0x2a0)
687                         return (ENXIO);
688                 break;
689         case ED_3COM_BCFR_2E0:
690                 if (rman_get_start(sc->port_res) != 0x2e0)
691                         return (ENXIO);
692                 break;
693         default:
694                 return (ENXIO);
695         }
696
697         error = bus_get_resource(dev, SYS_RES_MEMORY, 0,
698                                  &conf_maddr, &conf_msize);
699         if (error)
700                 return (error);
701
702         /*
703          * Verify that the kernel shared memory address matches the board
704          * configured address.
705          */
706         switch (ed_asic_inb(sc, ED_3COM_PCFR)) {
707         case ED_3COM_PCFR_DC000:
708                 if (conf_maddr != 0xdc000)
709                         return (ENXIO);
710                 break;
711         case ED_3COM_PCFR_D8000:
712                 if (conf_maddr != 0xd8000)
713                         return (ENXIO);
714                 break;
715         case ED_3COM_PCFR_CC000:
716                 if (conf_maddr != 0xcc000)
717                         return (ENXIO);
718                 break;
719         case ED_3COM_PCFR_C8000:
720                 if (conf_maddr != 0xc8000)
721                         return (ENXIO);
722                 break;
723         default:
724                 return (ENXIO);
725         }
726
727
728         /*
729          * Reset NIC and ASIC. Enable on-board transceiver throughout reset
730          * sequence because it'll lock up if the cable isn't connected if we
731          * don't.
732          */
733         ed_asic_outb(sc, ED_3COM_CR, ED_3COM_CR_RST | ED_3COM_CR_XSEL);
734
735         /*
736          * Wait for a while, then un-reset it
737          */
738         DELAY(50);
739
740         /*
741          * The 3Com ASIC defaults to rather strange settings for the CR after
742          * a reset - it's important to set it again after the following outb
743          * (this is done when we map the PROM below).
744          */
745         ed_asic_outb(sc, ED_3COM_CR, ED_3COM_CR_XSEL);
746
747         /*
748          * Wait a bit for the NIC to recover from the reset
749          */
750         DELAY(5000);
751
752         sc->vendor = ED_VENDOR_3COM;
753         sc->type_str = "3c503";
754         sc->mem_shared = 1;
755         sc->cr_proto = ED_CR_RD2;
756
757         /*
758          * Hmmm...a 16bit 3Com board has 16k of memory, but only an 8k window
759          * to it.
760          */
761         memsize = 8192;
762
763         /*
764          * Get station address from on-board ROM
765          */
766
767         /*
768          * First, map ethernet address PROM over the top of where the NIC
769          * registers normally appear.
770          */
771         ed_asic_outb(sc, ED_3COM_CR, ED_3COM_CR_EALO | ED_3COM_CR_XSEL);
772
773         for (i = 0; i < ETHER_ADDR_LEN; ++i)
774                 sc->arpcom.ac_enaddr[i] = ed_nic_inb(sc, i);
775
776         /*
777          * Unmap PROM - select NIC registers. The proper setting of the
778          * tranceiver is set in ed_init so that the attach code is given a
779          * chance to set the default based on a compile-time config option
780          */
781         ed_asic_outb(sc, ED_3COM_CR, ED_3COM_CR_XSEL);
782
783         /*
784          * Determine if this is an 8bit or 16bit board
785          */
786
787         /*
788          * select page 0 registers
789          */
790         ed_nic_outb(sc, ED_P0_CR, ED_CR_RD2 | ED_CR_STP);
791
792         /*
793          * Attempt to clear WTS bit. If it doesn't clear, then this is a 16bit
794          * board.
795          */
796         ed_nic_outb(sc, ED_P0_DCR, 0);
797
798         /*
799          * select page 2 registers
800          */
801         ed_nic_outb(sc, ED_P0_CR, ED_CR_PAGE_2 | ED_CR_RD2 | ED_CR_STP);
802
803         /*
804          * The 3c503 forces the WTS bit to a one if this is a 16bit board
805          */
806         if (ed_nic_inb(sc, ED_P2_DCR) & ED_DCR_WTS)
807                 isa16bit = 1;
808         else
809                 isa16bit = 0;
810
811         /*
812          * select page 0 registers
813          */
814         ed_nic_outb(sc, ED_P2_CR, ED_CR_RD2 | ED_CR_STP);
815
816         error = ed_alloc_memory(dev, 0, memsize);
817         if (error)
818                 return (error);
819
820         sc->mem_start = (caddr_t) rman_get_virtual(sc->mem_res);
821         sc->mem_size = memsize;
822         sc->mem_end = sc->mem_start + memsize;
823
824         /*
825          * We have an entire 8k window to put the transmit buffers on the
826          * 16bit boards. But since the 16bit 3c503's shared memory is only
827          * fast enough to overlap the loading of one full-size packet, trying
828          * to load more than 2 buffers can actually leave the transmitter idle
829          * during the load. So 2 seems the best value. (Although a mix of
830          * variable-sized packets might change this assumption. Nonetheless,
831          * we optimize for linear transfers of same-size packets.)
832          */
833         if (isa16bit) {
834                 if (flags & ED_FLAGS_NO_MULTI_BUFFERING)
835                         sc->txb_cnt = 1;
836                 else
837                         sc->txb_cnt = 2;
838
839                 sc->tx_page_start = ED_3COM_TX_PAGE_OFFSET_16BIT;
840                 sc->rec_page_start = ED_3COM_RX_PAGE_OFFSET_16BIT;
841                 sc->rec_page_stop = memsize / ED_PAGE_SIZE +
842                     ED_3COM_RX_PAGE_OFFSET_16BIT;
843                 sc->mem_ring = sc->mem_start;
844         } else {
845                 sc->txb_cnt = 1;
846                 sc->tx_page_start = ED_3COM_TX_PAGE_OFFSET_8BIT;
847                 sc->rec_page_start = ED_TXBUF_SIZE + ED_3COM_TX_PAGE_OFFSET_8BIT;
848                 sc->rec_page_stop = memsize / ED_PAGE_SIZE +
849                     ED_3COM_TX_PAGE_OFFSET_8BIT;
850                 sc->mem_ring = sc->mem_start + (ED_PAGE_SIZE * ED_TXBUF_SIZE);
851         }
852
853         sc->isa16bit = isa16bit;
854
855         /*
856          * Initialize GA page start/stop registers. Probably only needed if
857          * doing DMA, but what the hell.
858          */
859         ed_asic_outb(sc, ED_3COM_PSTR, sc->rec_page_start);
860         ed_asic_outb(sc, ED_3COM_PSPR, sc->rec_page_stop);
861
862         /*
863          * Set IRQ. 3c503 only allows a choice of irq 2-5.
864          */
865         error = bus_get_resource(dev, SYS_RES_IRQ, 0, &irq, &junk);
866         if (error)
867                 return (error);
868
869         switch (irq) {
870         case 2:
871         case 9:
872                 ed_asic_outb(sc, ED_3COM_IDCFR, ED_3COM_IDCFR_IRQ2);
873                 break;
874         case 3:
875                 ed_asic_outb(sc, ED_3COM_IDCFR, ED_3COM_IDCFR_IRQ3);
876                 break;
877         case 4:
878                 ed_asic_outb(sc, ED_3COM_IDCFR, ED_3COM_IDCFR_IRQ4);
879                 break;
880         case 5:
881                 ed_asic_outb(sc, ED_3COM_IDCFR, ED_3COM_IDCFR_IRQ5);
882                 break;
883         default:
884                 device_printf(dev, "Invalid irq configuration (%ld) must be 3-5,9 for 3c503\n",
885                               irq);
886                 return (ENXIO);
887         }
888
889         /*
890          * Initialize GA configuration register. Set bank and enable shared
891          * mem.
892          */
893         ed_asic_outb(sc, ED_3COM_GACFR, ED_3COM_GACFR_RSEL |
894              ED_3COM_GACFR_MBS0);
895
896         /*
897          * Initialize "Vector Pointer" registers. These gawd-awful things are
898          * compared to 20 bits of the address on ISA, and if they match, the
899          * shared memory is disabled. We set them to 0xffff0...allegedly the
900          * reset vector.
901          */
902         ed_asic_outb(sc, ED_3COM_VPTR2, 0xff);
903         ed_asic_outb(sc, ED_3COM_VPTR1, 0xff);
904         ed_asic_outb(sc, ED_3COM_VPTR0, 0x00);
905
906         /*
907          * Zero memory and verify that it is clear
908          */
909         bzero(sc->mem_start, memsize);
910
911         for (i = 0; i < memsize; ++i)
912                 if (sc->mem_start[i]) {
913                         device_printf(dev, "failed to clear shared memory at %llx - check configuration\n",
914                                       (unsigned long long)kvtop(sc->mem_start + i));
915                         return (ENXIO);
916                 }
917         return (0);
918 }
919
920 /*
921  * Probe and vendor-specific initialization routine for SIC boards
922  */
923 int
924 ed_probe_SIC(dev, port_rid, flags)
925         device_t dev;
926         int port_rid;
927         int flags;
928 {
929         struct ed_softc *sc = device_get_softc(dev);
930         int     error;
931         int     i;
932         u_int   memsize;
933         u_long  conf_maddr, conf_msize;
934         u_char  sum;
935
936         error = ed_alloc_port(dev, 0, ED_SIC_IO_PORTS);
937         if (error)
938                 return (error);
939
940         sc->asic_offset = ED_SIC_ASIC_OFFSET;
941         sc->nic_offset  = ED_SIC_NIC_OFFSET;
942
943         error = bus_get_resource(dev, SYS_RES_MEMORY, 0,
944                                  &conf_maddr, &conf_msize);
945         if (error)
946                 return (error);
947
948         memsize = 16384;
949         if (conf_msize > 1)
950                 memsize = conf_msize;
951
952         error = ed_alloc_memory(dev, 0, memsize);
953         if (error)
954                 return (error);
955
956         sc->mem_start = (caddr_t) rman_get_virtual(sc->mem_res);
957         sc->mem_size  = memsize;
958
959         /* Reset card to force it into a known state. */
960         ed_asic_outb(sc, 0, 0x00);
961         DELAY(100);
962
963         /*
964          * Here we check the card ROM, if the checksum passes, and the
965          * type code and ethernet address check out, then we know we have
966          * an SIC card.
967          */
968         ed_asic_outb(sc, 0, 0x81);
969         DELAY(100);
970
971         sum = sc->mem_start[6];
972         for (i = 0; i < ETHER_ADDR_LEN; i++) {
973                 sum ^= (sc->arpcom.ac_enaddr[i] = sc->mem_start[i]);
974         }
975 #ifdef ED_DEBUG
976         device_printf(dev, "ed_probe_sic: got address %6D\n",
977                       sc->arpcom.ac_enaddr, ":");
978 #endif
979         if (sum != 0) {
980                 return (ENXIO);
981         }
982         if ((sc->arpcom.ac_enaddr[0] | sc->arpcom.ac_enaddr[1] |
983              sc->arpcom.ac_enaddr[2]) == 0) {
984                 return (ENXIO);
985         }
986
987         sc->vendor   = ED_VENDOR_SIC;
988         sc->type_str = "SIC";
989         sc->isa16bit = 0;
990         sc->cr_proto = 0;
991
992         /*
993          * SIC RAM page 0x0000-0x3fff(or 0x7fff)
994          */
995         ed_asic_outb(sc, 0, 0x80);
996         DELAY(100);
997
998         /*
999          * Now zero memory and verify that it is clear
1000          */
1001         bzero(sc->mem_start, sc->mem_size);
1002
1003         for (i = 0; i < sc->mem_size; i++) {
1004                 if (sc->mem_start[i]) {
1005                         device_printf(dev, "failed to clear shared memory "
1006                                 "at %llx - check configuration\n",
1007                                 (long long)kvtop(sc->mem_start + i));
1008
1009                         return (ENXIO);
1010                 }
1011         }
1012
1013         sc->mem_shared = 1;
1014         sc->mem_end = sc->mem_start + sc->mem_size;
1015
1016         /*
1017          * allocate one xmit buffer if < 16k, two buffers otherwise
1018          */
1019         if ((sc->mem_size < 16384) || (flags & ED_FLAGS_NO_MULTI_BUFFERING)) {
1020                 sc->txb_cnt = 1;
1021         } else {
1022                 sc->txb_cnt = 2;
1023         }
1024         sc->tx_page_start = 0;
1025
1026         sc->rec_page_start = sc->tx_page_start + ED_TXBUF_SIZE * sc->txb_cnt;
1027         sc->rec_page_stop = sc->tx_page_start + sc->mem_size / ED_PAGE_SIZE;
1028
1029         sc->mem_ring = sc->mem_start + sc->txb_cnt * ED_PAGE_SIZE * ED_TXBUF_SIZE;
1030
1031         return (0);
1032 }
1033
1034 /*
1035  * Probe and vendor-specific initialization routine for NE1000/2000 boards
1036  */
1037 int
1038 ed_probe_Novell_generic(dev, flags)
1039         device_t dev;
1040         int flags;
1041 {
1042         struct ed_softc *sc = device_get_softc(dev);
1043         u_int   memsize, n;
1044         u_char  romdata[16], tmp;
1045         static char test_pattern[32] = "THIS is A memory TEST pattern";
1046         char    test_buffer[32];
1047
1048         /* XXX - do Novell-specific probe here */
1049
1050         /* Reset the board */
1051         if (ED_FLAGS_GETTYPE(flags) == ED_FLAGS_GWETHER) {
1052                 ed_asic_outb(sc, ED_NOVELL_RESET, 0);
1053                 DELAY(200);
1054         }
1055         tmp = ed_asic_inb(sc, ED_NOVELL_RESET);
1056
1057         /*
1058          * I don't know if this is necessary; probably cruft leftover from
1059          * Clarkson packet driver code. Doesn't do a thing on the boards I've
1060          * tested. -DG [note that an outb(0x84, 0) seems to work here, and is
1061          * non-invasive...but some boards don't seem to reset and I don't have
1062          * complete documentation on what the 'right' thing to do is...so we
1063          * do the invasive thing for now. Yuck.]
1064          */
1065         ed_asic_outb(sc, ED_NOVELL_RESET, tmp);
1066         DELAY(5000);
1067
1068         /*
1069          * This is needed because some NE clones apparently don't reset the
1070          * NIC properly (or the NIC chip doesn't reset fully on power-up) XXX
1071          * - this makes the probe invasive! ...Done against my better
1072          * judgement. -DLG
1073          */
1074         ed_nic_outb(sc, ED_P0_CR, ED_CR_RD2 | ED_CR_STP);
1075
1076         DELAY(5000);
1077
1078         /* Make sure that we really have an 8390 based board */
1079         if (!ed_probe_generic8390(sc))
1080                 return (ENXIO);
1081
1082         sc->vendor = ED_VENDOR_NOVELL;
1083         sc->mem_shared = 0;
1084         sc->cr_proto = ED_CR_RD2;
1085
1086         /*
1087          * Test the ability to read and write to the NIC memory. This has the
1088          * side affect of determining if this is an NE1000 or an NE2000.
1089          */
1090
1091         /*
1092          * This prevents packets from being stored in the NIC memory when the
1093          * readmem routine turns on the start bit in the CR.
1094          */
1095         ed_nic_outb(sc, ED_P0_RCR, ED_RCR_MON);
1096
1097         /* Temporarily initialize DCR for byte operations */
1098         ed_nic_outb(sc, ED_P0_DCR, ED_DCR_FT1 | ED_DCR_LS);
1099
1100         ed_nic_outb(sc, ED_P0_PSTART, 8192 / ED_PAGE_SIZE);
1101         ed_nic_outb(sc, ED_P0_PSTOP, 16384 / ED_PAGE_SIZE);
1102
1103         sc->isa16bit = 0;
1104
1105         /*
1106          * Write a test pattern in byte mode. If this fails, then there
1107          * probably isn't any memory at 8k - which likely means that the board
1108          * is an NE2000.
1109          */
1110         ed_pio_writemem(sc, test_pattern, 8192, sizeof(test_pattern));
1111         ed_pio_readmem(sc, 8192, test_buffer, sizeof(test_pattern));
1112
1113         if (bcmp(test_pattern, test_buffer, sizeof(test_pattern)) == 0) {
1114                 sc->type = ED_TYPE_NE1000;
1115                 sc->type_str = "NE1000";
1116         } else {
1117
1118                 /* neither an NE1000 nor a Linksys - try NE2000 */
1119                 ed_nic_outb(sc, ED_P0_DCR, ED_DCR_WTS | ED_DCR_FT1 | ED_DCR_LS);
1120                 ed_nic_outb(sc, ED_P0_PSTART, 16384 / ED_PAGE_SIZE);
1121                 ed_nic_outb(sc, ED_P0_PSTOP, 32768 / ED_PAGE_SIZE);
1122
1123                 sc->isa16bit = 1;
1124
1125                 /*
1126                  * Write a test pattern in word mode. If this also fails, then
1127                  * we don't know what this board is.
1128                  */
1129                 ed_pio_writemem(sc, test_pattern, 16384, sizeof(test_pattern));
1130                 ed_pio_readmem(sc, 16384, test_buffer, sizeof(test_pattern));
1131                 if (bcmp(test_pattern, test_buffer, sizeof(test_pattern)) == 0) {
1132                         sc->type = ED_TYPE_NE2000;
1133                         sc->type_str = "NE2000";
1134                 } else {
1135                         return (ENXIO);
1136                 }
1137         }
1138
1139
1140         /* 8k of memory plus an additional 8k if 16bit */
1141         memsize = 8192 + sc->isa16bit * 8192;
1142
1143 #if 0   /* probably not useful - NE boards only come two ways */
1144         /* allow kernel config file overrides */
1145         if (isa_dev->id_msize)
1146                 memsize = isa_dev->id_msize;
1147 #endif
1148
1149         sc->mem_size = memsize;
1150
1151         /* NIC memory doesn't start at zero on an NE board */
1152         /* The start address is tied to the bus width */
1153         sc->mem_start = (char *) 8192 + sc->isa16bit * 8192;
1154         sc->mem_end = sc->mem_start + memsize;
1155         sc->tx_page_start = memsize / ED_PAGE_SIZE;
1156
1157         if (ED_FLAGS_GETTYPE(flags) == ED_FLAGS_GWETHER) {
1158                 int     x, i, mstart = 0, msize = 0;
1159                 char    pbuf0[ED_PAGE_SIZE], pbuf[ED_PAGE_SIZE], tbuf[ED_PAGE_SIZE];
1160
1161                 for (i = 0; i < ED_PAGE_SIZE; i++)
1162                         pbuf0[i] = 0;
1163
1164                 /* Clear all the memory. */
1165                 for (x = 1; x < 256; x++)
1166                         ed_pio_writemem(sc, pbuf0, x * 256, ED_PAGE_SIZE);
1167
1168                 /* Search for the start of RAM. */
1169                 for (x = 1; x < 256; x++) {
1170                         ed_pio_readmem(sc, x * 256, tbuf, ED_PAGE_SIZE);
1171                         if (bcmp(pbuf0, tbuf, ED_PAGE_SIZE) == 0) {
1172                                 for (i = 0; i < ED_PAGE_SIZE; i++)
1173                                         pbuf[i] = 255 - x;
1174                                 ed_pio_writemem(sc, pbuf, x * 256, ED_PAGE_SIZE);
1175                                 ed_pio_readmem(sc, x * 256, tbuf, ED_PAGE_SIZE);
1176                                 if (bcmp(pbuf, tbuf, ED_PAGE_SIZE) == 0) {
1177                                         mstart = x * ED_PAGE_SIZE;
1178                                         msize = ED_PAGE_SIZE;
1179                                         break;
1180                                 }
1181                         }
1182                 }
1183
1184                 if (mstart == 0) {
1185                         device_printf(dev, "Cannot find start of RAM.\n");
1186                         return (ENXIO);
1187                 }
1188                 /* Search for the start of RAM. */
1189                 for (x = (mstart / ED_PAGE_SIZE) + 1; x < 256; x++) {
1190                         ed_pio_readmem(sc, x * 256, tbuf, ED_PAGE_SIZE);
1191                         if (bcmp(pbuf0, tbuf, ED_PAGE_SIZE) == 0) {
1192                                 for (i = 0; i < ED_PAGE_SIZE; i++)
1193                                         pbuf[i] = 255 - x;
1194                                 ed_pio_writemem(sc, pbuf, x * 256, ED_PAGE_SIZE);
1195                                 ed_pio_readmem(sc, x * 256, tbuf, ED_PAGE_SIZE);
1196                                 if (bcmp(pbuf, tbuf, ED_PAGE_SIZE) == 0)
1197                                         msize += ED_PAGE_SIZE;
1198                                 else {
1199                                         break;
1200                                 }
1201                         } else {
1202                                 break;
1203                         }
1204                 }
1205
1206                 if (msize == 0) {
1207                         device_printf(dev, "Cannot find any RAM, start : %d, x = %d.\n", mstart, x);
1208                         return (ENXIO);
1209                 }
1210                 device_printf(dev, "RAM start at %d, size : %d.\n", mstart, msize);
1211
1212                 sc->mem_size = msize;
1213                 sc->mem_start = (caddr_t) mstart;
1214                 sc->mem_end = (caddr_t) (msize + mstart);
1215                 sc->tx_page_start = mstart / ED_PAGE_SIZE;
1216         }
1217
1218         /*
1219          * Use one xmit buffer if < 16k, two buffers otherwise (if not told
1220          * otherwise).
1221          */
1222         if ((memsize < 16384) || (flags & ED_FLAGS_NO_MULTI_BUFFERING))
1223                 sc->txb_cnt = 1;
1224         else
1225                 sc->txb_cnt = 2;
1226
1227         sc->rec_page_start = sc->tx_page_start + sc->txb_cnt * ED_TXBUF_SIZE;
1228         sc->rec_page_stop = sc->tx_page_start + memsize / ED_PAGE_SIZE;
1229
1230         sc->mem_ring = sc->mem_start + sc->txb_cnt * ED_PAGE_SIZE * ED_TXBUF_SIZE;
1231
1232         ed_pio_readmem(sc, 0, romdata, 16);
1233         for (n = 0; n < ETHER_ADDR_LEN; n++)
1234                 sc->arpcom.ac_enaddr[n] = romdata[n * (sc->isa16bit + 1)];
1235
1236         if ((ED_FLAGS_GETTYPE(flags) == ED_FLAGS_GWETHER) &&
1237             (sc->arpcom.ac_enaddr[2] == 0x86)) {
1238                 sc->type_str = "Gateway AT";
1239         }
1240
1241         /* clear any pending interrupts that might have occurred above */
1242         ed_nic_outb(sc, ED_P0_ISR, 0xff);
1243
1244         return (0);
1245 }
1246
1247 int
1248 ed_probe_Novell(dev, port_rid, flags)
1249         device_t dev;
1250         int port_rid;
1251         int flags;
1252 {
1253         struct ed_softc *sc = device_get_softc(dev);
1254         int     error;
1255
1256         error = ed_alloc_port(dev, port_rid, ED_NOVELL_IO_PORTS);
1257         if (error)
1258                 return (error);
1259
1260         sc->asic_offset = ED_NOVELL_ASIC_OFFSET;
1261         sc->nic_offset  = ED_NOVELL_NIC_OFFSET;
1262
1263         return ed_probe_Novell_generic(dev, flags);
1264 }
1265
1266 #define ED_HPP_TEST_SIZE        16
1267
1268 /*
1269  * Probe and vendor specific initialization for the HP PC Lan+ Cards.
1270  * (HP Part nos: 27247B and 27252A).
1271  *
1272  * The card has an asic wrapper around a DS8390 core.  The asic handles 
1273  * host accesses and offers both standard register IO and memory mapped 
1274  * IO.  Memory mapped I/O allows better performance at the expense of greater
1275  * chance of an incompatibility with existing ISA cards.
1276  *
1277  * The card has a few caveats: it isn't tolerant of byte wide accesses, only
1278  * short (16 bit) or word (32 bit) accesses are allowed.  Some card revisions
1279  * don't allow 32 bit accesses; these are indicated by a bit in the software
1280  * ID register (see if_edreg.h).
1281  * 
1282  * Other caveats are: we should read the MAC address only when the card
1283  * is inactive.
1284  *
1285  * For more information; please consult the CRYNWR packet driver.
1286  *
1287  * The AUI port is turned on using the "link2" option on the ifconfig 
1288  * command line.
1289  */
1290 int
1291 ed_probe_HP_pclanp(dev, port_rid, flags)
1292         device_t dev;
1293         int port_rid;
1294         int flags;
1295 {
1296         struct ed_softc *sc = device_get_softc(dev);
1297         int error;
1298         int n;                          /* temp var */
1299         int memsize;                    /* mem on board */
1300         u_char checksum;                /* checksum of board address */
1301         u_char irq;                     /* board configured IRQ */
1302         char test_pattern[ED_HPP_TEST_SIZE];    /* read/write areas for */
1303         char test_buffer[ED_HPP_TEST_SIZE];     /* probing card */
1304         u_long conf_maddr, conf_msize, conf_irq, junk;
1305
1306         error = ed_alloc_port(dev, 0, ED_HPP_IO_PORTS);
1307         if (error)
1308                 return (error);
1309
1310         /* Fill in basic information */
1311         sc->asic_offset = ED_HPP_ASIC_OFFSET;
1312         sc->nic_offset  = ED_HPP_NIC_OFFSET;
1313
1314         sc->chip_type = ED_CHIP_TYPE_DP8390;
1315         sc->isa16bit = 0;       /* the 8390 core needs to be in byte mode */
1316
1317         /* 
1318          * Look for the HP PCLAN+ signature: "0x50,0x48,0x00,0x53" 
1319          */
1320         
1321         if ((ed_asic_inb(sc, ED_HPP_ID) != 0x50) || 
1322             (ed_asic_inb(sc, ED_HPP_ID + 1) != 0x48) ||
1323             ((ed_asic_inb(sc, ED_HPP_ID + 2) & 0xF0) != 0) ||
1324             (ed_asic_inb(sc, ED_HPP_ID + 3) != 0x53))
1325                 return ENXIO;
1326
1327         /* 
1328          * Read the MAC address and verify checksum on the address.
1329          */
1330
1331         ed_asic_outw(sc, ED_HPP_PAGING, ED_HPP_PAGE_MAC);
1332         for (n  = 0, checksum = 0; n < ETHER_ADDR_LEN; n++)
1333                 checksum += (sc->arpcom.ac_enaddr[n] = 
1334                         ed_asic_inb(sc, ED_HPP_MAC_ADDR + n));
1335         
1336         checksum += ed_asic_inb(sc, ED_HPP_MAC_ADDR + ETHER_ADDR_LEN);
1337
1338         if (checksum != 0xFF)
1339                 return ENXIO;
1340
1341         /*
1342          * Verify that the software model number is 0.
1343          */
1344         
1345         ed_asic_outw(sc, ED_HPP_PAGING, ED_HPP_PAGE_ID);
1346         if (((sc->hpp_id = ed_asic_inw(sc, ED_HPP_PAGE_4)) & 
1347                 ED_HPP_ID_SOFT_MODEL_MASK) != 0x0000)
1348                 return ENXIO;
1349
1350         /*
1351          * Read in and save the current options configured on card.
1352          */
1353
1354         sc->hpp_options = ed_asic_inw(sc, ED_HPP_OPTION);
1355
1356         sc->hpp_options |= (ED_HPP_OPTION_NIC_RESET | 
1357                                 ED_HPP_OPTION_CHIP_RESET |
1358                                 ED_HPP_OPTION_ENABLE_IRQ);
1359
1360         /* 
1361          * Reset the chip.  This requires writing to the option register
1362          * so take care to preserve the other bits.
1363          */
1364
1365         ed_asic_outw(sc, ED_HPP_OPTION, 
1366                 (sc->hpp_options & ~(ED_HPP_OPTION_NIC_RESET | 
1367                         ED_HPP_OPTION_CHIP_RESET)));
1368
1369         DELAY(5000);    /* wait for chip reset to complete */
1370
1371         ed_asic_outw(sc, ED_HPP_OPTION,
1372                 (sc->hpp_options | (ED_HPP_OPTION_NIC_RESET |
1373                         ED_HPP_OPTION_CHIP_RESET |
1374                         ED_HPP_OPTION_ENABLE_IRQ)));
1375
1376         DELAY(5000);
1377
1378         if (!(ed_nic_inb(sc, ED_P0_ISR) & ED_ISR_RST))
1379                 return ENXIO;   /* reset did not complete */
1380
1381         /*
1382          * Read out configuration information.
1383          */
1384
1385         ed_asic_outw(sc, ED_HPP_PAGING, ED_HPP_PAGE_HW);
1386
1387         irq = ed_asic_inb(sc, ED_HPP_HW_IRQ);
1388
1389         /*
1390          * Check for impossible IRQ.
1391          */
1392
1393         if (irq >= (sizeof(ed_hpp_intr_val) / sizeof(ed_hpp_intr_val[0])))
1394                 return ENXIO;
1395
1396         /* 
1397          * If the kernel IRQ was specified with a '?' use the cards idea
1398          * of the IRQ.  If the kernel IRQ was explicitly specified, it
1399          * should match that of the hardware.
1400          */
1401         error = bus_get_resource(dev, SYS_RES_IRQ, 0,
1402                                  &conf_irq, &junk);
1403         if (error) {
1404                 bus_set_resource(dev, SYS_RES_IRQ, 0,
1405                                  ed_hpp_intr_val[irq], 1);
1406         } else {
1407                 if (conf_irq != ed_hpp_intr_val[irq])
1408                         return (ENXIO);
1409         }
1410
1411         /*
1412          * Fill in softconfig info.
1413          */
1414
1415         sc->vendor = ED_VENDOR_HP;
1416         sc->type = ED_TYPE_HP_PCLANPLUS;
1417         sc->type_str = "HP-PCLAN+";
1418
1419         sc->mem_shared = 0;     /* we DON'T have dual ported RAM */
1420         sc->mem_start = 0;      /* we use offsets inside the card RAM */
1421
1422         sc->hpp_mem_start = NULL;/* no memory mapped I/O by default */
1423
1424         /*
1425          * The board has 32KB of memory.  Is there a way to determine
1426          * this programmatically?
1427          */
1428         
1429         memsize = 32768;
1430
1431         /*
1432          * Check if memory mapping of the I/O registers possible.
1433          */
1434
1435         if (sc->hpp_options & ED_HPP_OPTION_MEM_ENABLE)
1436         {
1437                 u_long mem_addr;
1438
1439                 /*
1440                  * determine the memory address from the board.
1441                  */
1442                 
1443                 ed_asic_outw(sc, ED_HPP_PAGING, ED_HPP_PAGE_HW);
1444                 mem_addr = (ed_asic_inw(sc, ED_HPP_HW_MEM_MAP) << 8);
1445
1446                 /*
1447                  * Check that the kernel specified start of memory and
1448                  * hardware's idea of it match.
1449                  */
1450                 error = bus_get_resource(dev, SYS_RES_MEMORY, 0,
1451                                          &conf_maddr, &conf_msize);
1452                 if (error)
1453                         return (error);
1454                 
1455                 if (mem_addr != conf_maddr)
1456                         return ENXIO;
1457
1458                 error = ed_alloc_memory(dev, 0, memsize);
1459                 if (error)
1460                         return (error);
1461
1462                 sc->hpp_mem_start = rman_get_virtual(sc->mem_res);
1463         }
1464
1465         /*
1466          * Fill in the rest of the soft config structure.
1467          */
1468
1469         /*
1470          * The transmit page index.
1471          */
1472
1473         sc->tx_page_start = ED_HPP_TX_PAGE_OFFSET;
1474
1475         if (device_get_flags(dev) & ED_FLAGS_NO_MULTI_BUFFERING)
1476                 sc->txb_cnt = 1;
1477         else
1478                 sc->txb_cnt = 2;
1479
1480         /*
1481          * Memory description
1482          */
1483
1484         sc->mem_size = memsize;
1485         sc->mem_ring = sc->mem_start + 
1486                 (sc->txb_cnt * ED_PAGE_SIZE * ED_TXBUF_SIZE);
1487         sc->mem_end = sc->mem_start + sc->mem_size;
1488
1489         /*
1490          * Receive area starts after the transmit area and 
1491          * continues till the end of memory.
1492          */
1493
1494         sc->rec_page_start = sc->tx_page_start + 
1495                                 (sc->txb_cnt * ED_TXBUF_SIZE);
1496         sc->rec_page_stop = (sc->mem_size / ED_PAGE_SIZE);
1497
1498
1499         sc->cr_proto = 0;       /* value works */
1500
1501         /*
1502          * Set the wrap registers for string I/O reads.
1503          */
1504
1505         ed_asic_outw(sc, ED_HPP_PAGING, ED_HPP_PAGE_HW);
1506         ed_asic_outw(sc, ED_HPP_HW_WRAP,
1507                 ((sc->rec_page_start / ED_PAGE_SIZE) |
1508                  (((sc->rec_page_stop / ED_PAGE_SIZE) - 1) << 8)));
1509
1510         /*
1511          * Reset the register page to normal operation.
1512          */
1513
1514         ed_asic_outw(sc, ED_HPP_PAGING, ED_HPP_PAGE_PERF);
1515
1516         /*
1517          * Verify that we can read/write from adapter memory.
1518          * Create test pattern.
1519          */
1520
1521         for (n = 0; n < ED_HPP_TEST_SIZE; n++)
1522         {
1523                 test_pattern[n] = (n*n) ^ ~n;
1524         }
1525
1526 #undef  ED_HPP_TEST_SIZE
1527
1528         /*
1529          * Check that the memory is accessible thru the I/O ports.
1530          * Write out the contents of "test_pattern", read back
1531          * into "test_buffer" and compare the two for any
1532          * mismatch.
1533          */
1534
1535         for (n = 0; n < (32768 / ED_PAGE_SIZE); n ++) {
1536
1537                 ed_hpp_writemem(sc, test_pattern, (n * ED_PAGE_SIZE), 
1538                                 sizeof(test_pattern));
1539                 ed_hpp_readmem(sc, (n * ED_PAGE_SIZE), 
1540                         test_buffer, sizeof(test_pattern));
1541
1542                 if (bcmp(test_pattern, test_buffer, 
1543                         sizeof(test_pattern)))
1544                         return ENXIO;
1545         }
1546
1547         return (0);
1548
1549 }
1550
1551 /*
1552  * HP PC Lan+ : Set the physical link to use AUI or TP/TL.
1553  */
1554
1555 static void
1556 ed_hpp_set_physical_link(struct ed_softc *sc)
1557 {
1558         struct ifnet *ifp = &sc->arpcom.ac_if;
1559         int lan_page;
1560
1561         ed_asic_outw(sc, ED_HPP_PAGING, ED_HPP_PAGE_LAN);
1562         lan_page = ed_asic_inw(sc, ED_HPP_PAGE_0);
1563
1564         if (ifp->if_flags & IFF_ALTPHYS) {
1565
1566                 /*
1567                  * Use the AUI port.
1568                  */
1569
1570                 lan_page |= ED_HPP_LAN_AUI;
1571
1572                 ed_asic_outw(sc, ED_HPP_PAGING, ED_HPP_PAGE_LAN);
1573                 ed_asic_outw(sc, ED_HPP_PAGE_0, lan_page);
1574
1575
1576         } else {
1577
1578                 /*
1579                  * Use the ThinLan interface
1580                  */
1581
1582                 lan_page &= ~ED_HPP_LAN_AUI;
1583
1584                 ed_asic_outw(sc, ED_HPP_PAGING, ED_HPP_PAGE_LAN);
1585                 ed_asic_outw(sc, ED_HPP_PAGE_0, lan_page);
1586
1587         }
1588
1589         /*
1590          * Wait for the lan card to re-initialize itself
1591          */
1592
1593         DELAY(150000);  /* wait 150 ms */
1594
1595         /*
1596          * Restore normal pages.
1597          */
1598
1599         ed_asic_outw(sc, ED_HPP_PAGING, ED_HPP_PAGE_PERF);
1600
1601 }
1602
1603 /*
1604  * Allocate a port resource with the given resource id.
1605  */
1606 int
1607 ed_alloc_port(dev, rid, size)
1608         device_t dev;
1609         int rid;
1610         int size;
1611 {
1612         struct ed_softc *sc = device_get_softc(dev);
1613         struct resource *res;
1614
1615         res = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid,
1616                                  0ul, ~0ul, size, RF_ACTIVE);
1617         if (res) {
1618                 sc->port_rid = rid;
1619                 sc->port_res = res;
1620                 sc->port_used = size;
1621                 return (0);
1622         } else {
1623                 return (ENOENT);
1624         }
1625 }
1626
1627 /*
1628  * Allocate a memory resource with the given resource id.
1629  */
1630 int
1631 ed_alloc_memory(dev, rid, size)
1632         device_t dev;
1633         int rid;
1634         int size;
1635 {
1636         struct ed_softc *sc = device_get_softc(dev);
1637         struct resource *res;
1638
1639         res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
1640                                  0ul, ~0ul, size, RF_ACTIVE);
1641         if (res) {
1642                 sc->mem_rid = rid;
1643                 sc->mem_res = res;
1644                 sc->mem_used = size;
1645                 return (0);
1646         } else {
1647                 return (ENOENT);
1648         }
1649 }
1650
1651 /*
1652  * Allocate an irq resource with the given resource id.
1653  */
1654 int
1655 ed_alloc_irq(dev, rid, flags)
1656         device_t dev;
1657         int rid;
1658         int flags;
1659 {
1660         struct ed_softc *sc = device_get_softc(dev);
1661         struct resource *res;
1662
1663         res = bus_alloc_resource(dev, SYS_RES_IRQ, &rid,
1664                                  0ul, ~0ul, 1, (RF_ACTIVE | flags));
1665         if (res) {
1666                 sc->irq_rid = rid;
1667                 sc->irq_res = res;
1668                 return (0);
1669         } else {
1670                 return (ENOENT);
1671         }
1672 }
1673
1674 /*
1675  * Release all resources
1676  */
1677 void
1678 ed_release_resources(dev)
1679         device_t dev;
1680 {
1681         struct ed_softc *sc = device_get_softc(dev);
1682
1683         if (sc->port_res) {
1684                 bus_deactivate_resource(dev, SYS_RES_IOPORT,
1685                                         sc->port_rid, sc->port_res);
1686                 bus_release_resource(dev, SYS_RES_IOPORT,
1687                                      sc->port_rid, sc->port_res);
1688                 sc->port_res = 0;
1689         }
1690         if (sc->mem_res) {
1691                 bus_deactivate_resource(dev, SYS_RES_MEMORY,
1692                                         sc->mem_rid, sc->mem_res);
1693                 bus_release_resource(dev, SYS_RES_MEMORY,
1694                                      sc->mem_rid, sc->mem_res);
1695                 sc->mem_res = 0;
1696         }
1697         if (sc->irq_res) {
1698                 bus_deactivate_resource(dev, SYS_RES_IRQ,
1699                                         sc->irq_rid, sc->irq_res);
1700                 bus_release_resource(dev, SYS_RES_IRQ,
1701                                      sc->irq_rid, sc->irq_res);
1702                 sc->irq_res = 0;
1703         }
1704 }
1705
1706 /*
1707  * Install interface into kernel networking data structures
1708  */
1709 int
1710 ed_attach(device_t dev)
1711 {
1712         struct ed_softc *sc = device_get_softc(dev);
1713         struct ifnet *ifp = &sc->arpcom.ac_if;
1714
1715         callout_init(&sc->ed_timer);
1716         /*
1717          * Set interface to stopped condition (reset)
1718          */
1719         ed_stop(sc);
1720
1721         /*
1722          * Initialize ifnet structure
1723          */
1724         ifp->if_softc = sc;
1725         if_initname(ifp, device_get_name(dev), device_get_unit(dev));
1726         ifp->if_mtu = ETHERMTU;
1727         ifp->if_start = ed_start;
1728         ifp->if_ioctl = ed_ioctl;
1729         ifp->if_watchdog = ed_watchdog;
1730         ifp->if_init = ed_init;
1731         ifp->if_snd.ifq_maxlen = IFQ_MAXLEN;
1732         ifp->if_linkmib = &sc->mibdata;
1733         ifp->if_linkmiblen = sizeof sc->mibdata;
1734         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1735         /*
1736          * XXX - should do a better job.
1737          */
1738         if (sc->chip_type == ED_CHIP_TYPE_WD790)
1739                 sc->mibdata.dot3StatsEtherChipSet =
1740                         DOT3CHIPSET(dot3VendorWesternDigital,
1741                                     dot3ChipSetWesternDigital83C790);
1742         else
1743                 sc->mibdata.dot3StatsEtherChipSet =
1744                         DOT3CHIPSET(dot3VendorNational, 
1745                                     dot3ChipSetNational8390);
1746         sc->mibdata.dot3Compliance = DOT3COMPLIANCE_COLLS;
1747
1748         /*
1749          * Set default state for ALTPHYS flag (used to disable the 
1750          * tranceiver for AUI operation), based on compile-time 
1751          * config option.
1752          */
1753         if (device_get_flags(dev) & ED_FLAGS_DISABLE_TRANCEIVER)
1754                 ifp->if_flags |= IFF_ALTPHYS;
1755
1756         /*
1757          * Attach the interface
1758          */
1759         ether_ifattach(ifp, sc->arpcom.ac_enaddr);
1760
1761         /* device attach does transition from UNCONFIGURED to IDLE state */
1762
1763         if (sc->type_str && (*sc->type_str != 0))
1764                 printf("type %s ", sc->type_str);
1765         else
1766                 printf("type unknown (0x%x) ", sc->type);
1767
1768         if (sc->vendor == ED_VENDOR_HP)
1769                 printf("(%s %s IO)", (sc->hpp_id & ED_HPP_ID_16_BIT_ACCESS) ?
1770                         "16-bit" : "32-bit",
1771                         sc->hpp_mem_start ? "memory mapped" : "regular");
1772         else
1773                 printf("%s ", sc->isa16bit ? "(16 bit)" : "(8 bit)");
1774
1775         printf("%s\n", (((sc->vendor == ED_VENDOR_3COM) ||
1776                          (sc->vendor == ED_VENDOR_HP)) &&
1777                 (ifp->if_flags & IFF_ALTPHYS)) ? " tranceiver disabled" : "");
1778
1779         return (0);
1780 }
1781
1782 /*
1783  * Reset interface.
1784  */
1785 static void
1786 ed_reset(ifp)
1787         struct ifnet *ifp;
1788 {
1789         struct ed_softc *sc = ifp->if_softc;
1790         int     s;
1791
1792         if (sc->gone)
1793                 return;
1794         s = splimp();
1795
1796         /*
1797          * Stop interface and re-initialize.
1798          */
1799         ed_stop(sc);
1800         ed_init(sc);
1801
1802         (void) splx(s);
1803 }
1804
1805 /*
1806  * Take interface offline.
1807  */
1808 void
1809 ed_stop(sc)
1810         struct ed_softc *sc;
1811 {
1812         int     n = 5000;
1813
1814 #ifndef ED_NO_MIIBUS
1815         callout_stop(&sc->ed_timer);
1816 #endif
1817         if (sc->gone)
1818                 return;
1819         /*
1820          * Stop everything on the interface, and select page 0 registers.
1821          */
1822         ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_STP);
1823
1824         /*
1825          * Wait for interface to enter stopped state, but limit # of checks to
1826          * 'n' (about 5ms). It shouldn't even take 5us on modern DS8390's, but
1827          * just in case it's an old one.
1828          */
1829         if (sc->chip_type != ED_CHIP_TYPE_AX88190)
1830                 while (((ed_nic_inb(sc, ED_P0_ISR) & ED_ISR_RST) == 0) && --n);
1831 }
1832
1833 /*
1834  * Device timeout/watchdog routine. Entered if the device neglects to
1835  *      generate an interrupt after a transmit has been started on it.
1836  */
1837 static void
1838 ed_watchdog(ifp)
1839         struct ifnet *ifp;
1840 {
1841         struct ed_softc *sc = ifp->if_softc;
1842
1843         if (sc->gone)
1844                 return;
1845         log(LOG_ERR, "%s: device timeout\n", ifp->if_xname);
1846         ifp->if_oerrors++;
1847
1848         ed_reset(ifp);
1849 }
1850
1851 #ifndef ED_NO_MIIBUS
1852 static void
1853 ed_tick(arg)
1854         void *arg;
1855 {
1856         struct ed_softc *sc = arg;
1857         struct mii_data *mii;
1858         int s;
1859
1860         if (sc->gone)
1861                 return;
1862         s = splimp();
1863         if (sc->miibus != NULL) {
1864                 mii = device_get_softc(sc->miibus);
1865                 mii_tick(mii);
1866         }
1867         callout_reset(&sc->ed_timer, hz, ed_tick, sc);
1868         splx(s);
1869 }
1870 #endif
1871
1872 /*
1873  * Initialize device.
1874  */
1875 static void
1876 ed_init(xsc)
1877         void *xsc;
1878 {
1879         struct ed_softc *sc = xsc;
1880         struct ifnet *ifp = &sc->arpcom.ac_if;
1881         int     i, s;
1882
1883         if (sc->gone)
1884                 return;
1885
1886         /* address not known */
1887         if (TAILQ_EMPTY(&ifp->if_addrhead)) /* unlikely? XXX */
1888                 return;
1889
1890         /*
1891          * Initialize the NIC in the exact order outlined in the NS manual.
1892          * This init procedure is "mandatory"...don't change what or when
1893          * things happen.
1894          */
1895         s = splimp();
1896
1897         /* reset transmitter flags */
1898         sc->xmit_busy = 0;
1899         ifp->if_timer = 0;
1900
1901         sc->txb_inuse = 0;
1902         sc->txb_new = 0;
1903         sc->txb_next_tx = 0;
1904
1905         /* This variable is used below - don't move this assignment */
1906         sc->next_packet = sc->rec_page_start + 1;
1907
1908         /*
1909          * Set interface for page 0, Remote DMA complete, Stopped
1910          */
1911         ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_STP);
1912
1913         if (sc->isa16bit) {
1914
1915                 /*
1916                  * Set FIFO threshold to 8, No auto-init Remote DMA, byte
1917                  * order=80x86, word-wide DMA xfers,
1918                  */
1919                 ed_nic_outb(sc, ED_P0_DCR, ED_DCR_FT1 | ED_DCR_WTS | ED_DCR_LS);
1920         } else {
1921
1922                 /*
1923                  * Same as above, but byte-wide DMA xfers
1924                  */
1925                 ed_nic_outb(sc, ED_P0_DCR, ED_DCR_FT1 | ED_DCR_LS);
1926         }
1927
1928         /*
1929          * Clear Remote Byte Count Registers
1930          */
1931         ed_nic_outb(sc, ED_P0_RBCR0, 0);
1932         ed_nic_outb(sc, ED_P0_RBCR1, 0);
1933
1934         /*
1935          * For the moment, don't store incoming packets in memory.
1936          */
1937         ed_nic_outb(sc, ED_P0_RCR, ED_RCR_MON);
1938
1939         /*
1940          * Place NIC in internal loopback mode
1941          */
1942         ed_nic_outb(sc, ED_P0_TCR, ED_TCR_LB0);
1943
1944         /*
1945          * Initialize transmit/receive (ring-buffer) Page Start
1946          */
1947         ed_nic_outb(sc, ED_P0_TPSR, sc->tx_page_start);
1948         ed_nic_outb(sc, ED_P0_PSTART, sc->rec_page_start);
1949         /* Set lower bits of byte addressable framing to 0 */
1950         if (sc->chip_type == ED_CHIP_TYPE_WD790)
1951                 ed_nic_outb(sc, 0x09, 0);
1952
1953         /*
1954          * Initialize Receiver (ring-buffer) Page Stop and Boundry
1955          */
1956         ed_nic_outb(sc, ED_P0_PSTOP, sc->rec_page_stop);
1957         ed_nic_outb(sc, ED_P0_BNRY, sc->rec_page_start);
1958
1959         /*
1960          * Clear all interrupts. A '1' in each bit position clears the
1961          * corresponding flag.
1962          */
1963         ed_nic_outb(sc, ED_P0_ISR, 0xff);
1964
1965         /*
1966          * Enable the following interrupts: receive/transmit complete,
1967          * receive/transmit error, and Receiver OverWrite.
1968          *
1969          * Counter overflow and Remote DMA complete are *not* enabled.
1970          */
1971         ed_nic_outb(sc, ED_P0_IMR,
1972         ED_IMR_PRXE | ED_IMR_PTXE | ED_IMR_RXEE | ED_IMR_TXEE | ED_IMR_OVWE);
1973
1974         /*
1975          * Program Command Register for page 1
1976          */
1977         ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_PAGE_1 | ED_CR_STP);
1978
1979         /*
1980          * Copy out our station address
1981          */
1982         for (i = 0; i < ETHER_ADDR_LEN; ++i)
1983                 ed_nic_outb(sc, ED_P1_PAR(i), sc->arpcom.ac_enaddr[i]);
1984
1985         /*
1986          * Set Current Page pointer to next_packet (initialized above)
1987          */
1988         ed_nic_outb(sc, ED_P1_CURR, sc->next_packet);
1989
1990         /*
1991          * Program Receiver Configuration Register and multicast filter. CR is
1992          * set to page 0 on return.
1993          */
1994         ed_setrcr(sc);
1995
1996         /*
1997          * Take interface out of loopback
1998          */
1999         ed_nic_outb(sc, ED_P0_TCR, 0);
2000
2001         /*
2002          * If this is a 3Com board, the tranceiver must be software enabled
2003          * (there is no settable hardware default).
2004          */
2005         if (sc->vendor == ED_VENDOR_3COM) {
2006                 if (ifp->if_flags & IFF_ALTPHYS) {
2007                         ed_asic_outb(sc, ED_3COM_CR, 0);
2008                 } else {
2009                         ed_asic_outb(sc, ED_3COM_CR, ED_3COM_CR_XSEL);
2010                 }
2011         }
2012
2013 #ifndef ED_NO_MIIBUS
2014         if (sc->miibus != NULL) {
2015                 struct mii_data *mii;
2016                 mii = device_get_softc(sc->miibus);
2017                 mii_mediachg(mii);
2018         }
2019 #endif
2020         /*
2021          * Set 'running' flag, and clear output active flag.
2022          */
2023         ifp->if_flags |= IFF_RUNNING;
2024         ifp->if_flags &= ~IFF_OACTIVE;
2025
2026         /*
2027          * ...and attempt to start output
2028          */
2029         ed_start(ifp);
2030
2031 #ifndef ED_NO_MIIBUS
2032         callout_reset(&sc->ed_timer, hz, ed_tick, sc);
2033 #endif
2034         (void) splx(s);
2035 }
2036
2037 /*
2038  * This routine actually starts the transmission on the interface
2039  */
2040 static __inline void
2041 ed_xmit(sc)
2042         struct ed_softc *sc;
2043 {
2044         struct ifnet *ifp = (struct ifnet *)sc;
2045         unsigned short len;
2046
2047         if (sc->gone)
2048                 return;
2049         len = sc->txb_len[sc->txb_next_tx];
2050
2051         /*
2052          * Set NIC for page 0 register access
2053          */
2054         ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_STA);
2055
2056         /*
2057          * Set TX buffer start page
2058          */
2059         ed_nic_outb(sc, ED_P0_TPSR, sc->tx_page_start +
2060                     sc->txb_next_tx * ED_TXBUF_SIZE);
2061
2062         /*
2063          * Set TX length
2064          */
2065         ed_nic_outb(sc, ED_P0_TBCR0, len);
2066         ed_nic_outb(sc, ED_P0_TBCR1, len >> 8);
2067
2068         /*
2069          * Set page 0, Remote DMA complete, Transmit Packet, and *Start*
2070          */
2071         ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_TXP | ED_CR_STA);
2072         sc->xmit_busy = 1;
2073
2074         /*
2075          * Point to next transmit buffer slot and wrap if necessary.
2076          */
2077         sc->txb_next_tx++;
2078         if (sc->txb_next_tx == sc->txb_cnt)
2079                 sc->txb_next_tx = 0;
2080
2081         /*
2082          * Set a timer just in case we never hear from the board again
2083          */
2084         ifp->if_timer = 2;
2085 }
2086
2087 /*
2088  * Start output on interface.
2089  * We make two assumptions here:
2090  *  1) that the current priority is set to splimp _before_ this code
2091  *     is called *and* is returned to the appropriate priority after
2092  *     return
2093  *  2) that the IFF_OACTIVE flag is checked before this code is called
2094  *     (i.e. that the output part of the interface is idle)
2095  */
2096 static void
2097 ed_start(ifp)
2098         struct ifnet *ifp;
2099 {
2100         struct ed_softc *sc = ifp->if_softc;
2101         struct mbuf *m0, *m;
2102         caddr_t buffer;
2103         int     len;
2104
2105         if (sc->gone) {
2106                 printf("ed_start(%p) GONE\n",ifp);
2107                 return;
2108         }
2109 outloop:
2110
2111         /*
2112          * First, see if there are buffered packets and an idle transmitter -
2113          * should never happen at this point.
2114          */
2115         if (sc->txb_inuse && (sc->xmit_busy == 0)) {
2116                 printf("ed: packets buffered, but transmitter idle\n");
2117                 ed_xmit(sc);
2118         }
2119
2120         /*
2121          * See if there is room to put another packet in the buffer.
2122          */
2123         if (sc->txb_inuse == sc->txb_cnt) {
2124
2125                 /*
2126                  * No room. Indicate this to the outside world and exit.
2127                  */
2128                 ifp->if_flags |= IFF_OACTIVE;
2129                 return;
2130         }
2131         IF_DEQUEUE(&ifp->if_snd, m);
2132         if (m == 0) {
2133
2134                 /*
2135                  * We are using the !OACTIVE flag to indicate to the outside
2136                  * world that we can accept an additional packet rather than
2137                  * that the transmitter is _actually_ active. Indeed, the
2138                  * transmitter may be active, but if we haven't filled all the
2139                  * buffers with data then we still want to accept more.
2140                  */
2141                 ifp->if_flags &= ~IFF_OACTIVE;
2142                 return;
2143         }
2144
2145         /*
2146          * Copy the mbuf chain into the transmit buffer
2147          */
2148
2149         m0 = m;
2150
2151         /* txb_new points to next open buffer slot */
2152         buffer = sc->mem_start + (sc->txb_new * ED_TXBUF_SIZE * ED_PAGE_SIZE);
2153
2154         if (sc->mem_shared) {
2155
2156                 /*
2157                  * Special case setup for 16 bit boards...
2158                  */
2159                 if (sc->isa16bit) {
2160                         switch (sc->vendor) {
2161
2162                                 /*
2163                                  * For 16bit 3Com boards (which have 16k of
2164                                  * memory), we have the xmit buffers in a
2165                                  * different page of memory ('page 0') - so
2166                                  * change pages.
2167                                  */
2168                         case ED_VENDOR_3COM:
2169                                 ed_asic_outb(sc, ED_3COM_GACFR,
2170                                              ED_3COM_GACFR_RSEL);
2171                                 break;
2172
2173                                 /*
2174                                  * Enable 16bit access to shared memory on
2175                                  * WD/SMC boards.
2176                                  */
2177                         case ED_VENDOR_WD_SMC:
2178                                 ed_asic_outb(sc, ED_WD_LAAR,
2179                                              sc->wd_laar_proto | ED_WD_LAAR_M16EN);
2180                                 if (sc->chip_type == ED_CHIP_TYPE_WD790) {
2181                                         ed_asic_outb(sc, ED_WD_MSR, ED_WD_MSR_MENB);
2182                                 }
2183                                 break;
2184                         }
2185                 }
2186                 for (len = 0; m != 0; m = m->m_next) {
2187                         bcopy(mtod(m, caddr_t), buffer, m->m_len);
2188                         buffer += m->m_len;
2189                         len += m->m_len;
2190                 }
2191
2192                 /*
2193                  * Restore previous shared memory access
2194                  */
2195                 if (sc->isa16bit) {
2196                         switch (sc->vendor) {
2197                         case ED_VENDOR_3COM:
2198                                 ed_asic_outb(sc, ED_3COM_GACFR,
2199                                              ED_3COM_GACFR_RSEL | ED_3COM_GACFR_MBS0);
2200                                 break;
2201                         case ED_VENDOR_WD_SMC:
2202                                 if (sc->chip_type == ED_CHIP_TYPE_WD790) {
2203                                         ed_asic_outb(sc, ED_WD_MSR, 0x00);
2204                                 }
2205                                 ed_asic_outb(sc, ED_WD_LAAR,
2206                                              sc->wd_laar_proto & ~ED_WD_LAAR_M16EN);
2207                                 break;
2208                         }
2209                 }
2210         } else {
2211                 len = ed_pio_write_mbufs(sc, m, (int)buffer);
2212                 if (len == 0) {
2213                         m_freem(m0);
2214                         goto outloop;
2215                 }
2216         }
2217
2218         sc->txb_len[sc->txb_new] = max(len, (ETHER_MIN_LEN-ETHER_CRC_LEN));
2219
2220         sc->txb_inuse++;
2221
2222         /*
2223          * Point to next buffer slot and wrap if necessary.
2224          */
2225         sc->txb_new++;
2226         if (sc->txb_new == sc->txb_cnt)
2227                 sc->txb_new = 0;
2228
2229         if (sc->xmit_busy == 0)
2230                 ed_xmit(sc);
2231
2232         BPF_MTAP(ifp, m0);
2233
2234         m_freem(m0);
2235
2236         /*
2237          * Loop back to the top to possibly buffer more packets
2238          */
2239         goto outloop;
2240 }
2241
2242 /*
2243  * Ethernet interface receiver interrupt.
2244  */
2245 static __inline void
2246 ed_rint(sc)
2247         struct ed_softc *sc;
2248 {
2249         struct ifnet *ifp = &sc->arpcom.ac_if;
2250         u_char  boundry;
2251         u_short len;
2252         struct ed_ring packet_hdr;
2253         char   *packet_ptr;
2254
2255         if (sc->gone)
2256                 return;
2257
2258         /*
2259          * Set NIC to page 1 registers to get 'current' pointer
2260          */
2261         ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_PAGE_1 | ED_CR_STA);
2262
2263         /*
2264          * 'sc->next_packet' is the logical beginning of the ring-buffer -
2265          * i.e. it points to where new data has been buffered. The 'CURR'
2266          * (current) register points to the logical end of the ring-buffer -
2267          * i.e. it points to where additional new data will be added. We loop
2268          * here until the logical beginning equals the logical end (or in
2269          * other words, until the ring-buffer is empty).
2270          */
2271         while (sc->next_packet != ed_nic_inb(sc, ED_P1_CURR)) {
2272
2273                 /* get pointer to this buffer's header structure */
2274                 packet_ptr = sc->mem_ring +
2275                     (sc->next_packet - sc->rec_page_start) * ED_PAGE_SIZE;
2276
2277                 /*
2278                  * The byte count includes a 4 byte header that was added by
2279                  * the NIC.
2280                  */
2281                 if (sc->mem_shared)
2282                         packet_hdr = *(struct ed_ring *) packet_ptr;
2283                 else
2284                         ed_pio_readmem(sc, (int)packet_ptr, (char *) &packet_hdr,
2285                                        sizeof(packet_hdr));
2286                 len = packet_hdr.count;
2287                 if (len > (ETHER_MAX_LEN - ETHER_CRC_LEN + sizeof(struct ed_ring)) ||
2288                     len < (ETHER_MIN_LEN - ETHER_CRC_LEN + sizeof(struct ed_ring))) {
2289                         /*
2290                          * Length is a wild value. There's a good chance that
2291                          * this was caused by the NIC being old and buggy.
2292                          * The bug is that the length low byte is duplicated in
2293                          * the high byte. Try to recalculate the length based on
2294                          * the pointer to the next packet.
2295                          */
2296                         /*
2297                          * NOTE: sc->next_packet is pointing at the current packet.
2298                          */
2299                         len &= ED_PAGE_SIZE - 1;        /* preserve offset into page */
2300                         if (packet_hdr.next_packet >= sc->next_packet) {
2301                                 len += (packet_hdr.next_packet - sc->next_packet) * ED_PAGE_SIZE;
2302                         } else {
2303                                 len += ((packet_hdr.next_packet - sc->rec_page_start) +
2304                                         (sc->rec_page_stop - sc->next_packet)) * ED_PAGE_SIZE;
2305                         }
2306                         /*
2307                          * because buffers are aligned on 256-byte boundary,
2308                          * the length computed above is off by 256 in almost
2309                          * all cases. Fix it...
2310                          */
2311                         if (len & 0xff)
2312                                 len -= 256 ;
2313                         if (len > (ETHER_MAX_LEN - ETHER_CRC_LEN 
2314                                    + sizeof(struct ed_ring)))
2315                                 sc->mibdata.dot3StatsFrameTooLongs++;
2316                 }
2317                 /*
2318                  * Be fairly liberal about what we allow as a "reasonable" length
2319                  * so that a [crufty] packet will make it to BPF (and can thus
2320                  * be analyzed). Note that all that is really important is that
2321                  * we have a length that will fit into one mbuf cluster or less;
2322                  * the upper layer protocols can then figure out the length from
2323                  * their own length field(s).
2324                  * But make sure that we have at least a full ethernet header
2325                  * or we would be unable to call ether_input() later.
2326                  */
2327                 if ((len >= sizeof(struct ed_ring) + ETHER_HDR_LEN) &&
2328                     (len <= MCLBYTES) &&
2329                     (packet_hdr.next_packet >= sc->rec_page_start) &&
2330                     (packet_hdr.next_packet < sc->rec_page_stop)) {
2331                         /*
2332                          * Go get packet.
2333                          */
2334                         ed_get_packet(sc, packet_ptr + sizeof(struct ed_ring),
2335                                       len - sizeof(struct ed_ring));
2336                         ifp->if_ipackets++;
2337                 } else {
2338                         /*
2339                          * Really BAD. The ring pointers are corrupted.
2340                          */
2341                         log(LOG_ERR,
2342                             "%s: NIC memory corrupt - invalid packet length %d\n",
2343                             ifp->if_xname, len);
2344                         ifp->if_ierrors++;
2345                         ed_reset(ifp);
2346                         return;
2347                 }
2348
2349                 /*
2350                  * Update next packet pointer
2351                  */
2352                 sc->next_packet = packet_hdr.next_packet;
2353
2354                 /*
2355                  * Update NIC boundry pointer - being careful to keep it one
2356                  * buffer behind. (as recommended by NS databook)
2357                  */
2358                 boundry = sc->next_packet - 1;
2359                 if (boundry < sc->rec_page_start)
2360                         boundry = sc->rec_page_stop - 1;
2361
2362                 /*
2363                  * Set NIC to page 0 registers to update boundry register
2364                  */
2365                 ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_STA);
2366
2367                 ed_nic_outb(sc, ED_P0_BNRY, boundry);
2368
2369                 /*
2370                  * Set NIC to page 1 registers before looping to top (prepare
2371                  * to get 'CURR' current pointer)
2372                  */
2373                 ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_PAGE_1 | ED_CR_STA);
2374         }
2375 }
2376
2377 /*
2378  * Ethernet interface interrupt processor
2379  */
2380 void
2381 edintr(arg)
2382         void *arg;
2383 {
2384         struct ed_softc *sc = (struct ed_softc*) arg;
2385         struct ifnet *ifp = (struct ifnet *)sc;
2386         u_char  isr;
2387         int     count;
2388
2389         if (sc->gone)
2390                 return;
2391         /*
2392          * Set NIC to page 0 registers
2393          */
2394         ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_STA);
2395
2396         /*
2397          * loop until there are no more new interrupts.  When the card
2398          * goes away, the hardware will read back 0xff.  Looking at
2399          * the interrupts, it would appear that 0xff is impossible,
2400          * or at least extremely unlikely.
2401          */
2402         while ((isr = ed_nic_inb(sc, ED_P0_ISR)) != 0 && isr != 0xff) {
2403
2404                 /*
2405                  * reset all the bits that we are 'acknowledging' by writing a
2406                  * '1' to each bit position that was set (writing a '1'
2407                  * *clears* the bit)
2408                  */
2409                 ed_nic_outb(sc, ED_P0_ISR, isr);
2410
2411                 /* 
2412                  * XXX workaround for AX88190
2413                  * We limit this to 5000 iterations.  At 1us per inb/outb,
2414                  * this translates to about 15ms, which should be plenty
2415                  * of time, and also gives protection in the card eject
2416                  * case.
2417                  */
2418                 if (sc->chip_type == ED_CHIP_TYPE_AX88190) {
2419                         count = 5000;           /* 15ms */
2420                         while (count-- && (ed_nic_inb(sc, ED_P0_ISR) & isr)) {
2421                                 ed_nic_outb(sc, ED_P0_ISR,0);
2422                                 ed_nic_outb(sc, ED_P0_ISR,isr);
2423                         }
2424                         if (count == 0)
2425                                 break;
2426                 }
2427
2428                 /*
2429                  * Handle transmitter interrupts. Handle these first because
2430                  * the receiver will reset the board under some conditions.
2431                  */
2432                 if (isr & (ED_ISR_PTX | ED_ISR_TXE)) {
2433                         u_char  collisions = ed_nic_inb(sc, ED_P0_NCR) & 0x0f;
2434
2435                         /*
2436                          * Check for transmit error. If a TX completed with an
2437                          * error, we end up throwing the packet away. Really
2438                          * the only error that is possible is excessive
2439                          * collisions, and in this case it is best to allow
2440                          * the automatic mechanisms of TCP to backoff the
2441                          * flow. Of course, with UDP we're screwed, but this
2442                          * is expected when a network is heavily loaded.
2443                          */
2444                         (void) ed_nic_inb(sc, ED_P0_TSR);
2445                         if (isr & ED_ISR_TXE) {
2446                                 u_char tsr;
2447
2448                                 /*
2449                                  * Excessive collisions (16)
2450                                  */
2451                                 tsr = ed_nic_inb(sc, ED_P0_TSR);
2452                                 if ((tsr & ED_TSR_ABT)  
2453                                     && (collisions == 0)) {
2454
2455                                         /*
2456                                          * When collisions total 16, the
2457                                          * P0_NCR will indicate 0, and the
2458                                          * TSR_ABT is set.
2459                                          */
2460                                         collisions = 16;
2461                                         sc->mibdata.dot3StatsExcessiveCollisions++;
2462                                         sc->mibdata.dot3StatsCollFrequencies[15]++;
2463                                 }
2464                                 if (tsr & ED_TSR_OWC)
2465                                         sc->mibdata.dot3StatsLateCollisions++;
2466                                 if (tsr & ED_TSR_CDH)
2467                                         sc->mibdata.dot3StatsSQETestErrors++;
2468                                 if (tsr & ED_TSR_CRS)
2469                                         sc->mibdata.dot3StatsCarrierSenseErrors++;
2470                                 if (tsr & ED_TSR_FU)
2471                                         sc->mibdata.dot3StatsInternalMacTransmitErrors++;
2472
2473                                 /*
2474                                  * update output errors counter
2475                                  */
2476                                 ifp->if_oerrors++;
2477                         } else {
2478
2479                                 /*
2480                                  * Update total number of successfully
2481                                  * transmitted packets.
2482                                  */
2483                                 ifp->if_opackets++;
2484                         }
2485
2486                         /*
2487                          * reset tx busy and output active flags
2488                          */
2489                         sc->xmit_busy = 0;
2490                         ifp->if_flags &= ~IFF_OACTIVE;
2491
2492                         /*
2493                          * clear watchdog timer
2494                          */
2495                         ifp->if_timer = 0;
2496
2497                         /*
2498                          * Add in total number of collisions on last
2499                          * transmission.
2500                          */
2501                         ifp->if_collisions += collisions;
2502                         switch(collisions) {
2503                         case 0:
2504                         case 16:
2505                                 break;
2506                         case 1:
2507                                 sc->mibdata.dot3StatsSingleCollisionFrames++;
2508                                 sc->mibdata.dot3StatsCollFrequencies[0]++;
2509                                 break;
2510                         default:
2511                                 sc->mibdata.dot3StatsMultipleCollisionFrames++;
2512                                 sc->mibdata.
2513                                         dot3StatsCollFrequencies[collisions-1]
2514                                                 ++;
2515                                 break;
2516                         }
2517
2518                         /*
2519                          * Decrement buffer in-use count if not zero (can only
2520                          * be zero if a transmitter interrupt occured while
2521                          * not actually transmitting). If data is ready to
2522                          * transmit, start it transmitting, otherwise defer
2523                          * until after handling receiver
2524                          */
2525                         if (sc->txb_inuse && --sc->txb_inuse)
2526                                 ed_xmit(sc);
2527                 }
2528
2529                 /*
2530                  * Handle receiver interrupts
2531                  */
2532                 if (isr & (ED_ISR_PRX | ED_ISR_RXE | ED_ISR_OVW)) {
2533
2534                         /*
2535                          * Overwrite warning. In order to make sure that a
2536                          * lockup of the local DMA hasn't occurred, we reset
2537                          * and re-init the NIC. The NSC manual suggests only a
2538                          * partial reset/re-init is necessary - but some chips
2539                          * seem to want more. The DMA lockup has been seen
2540                          * only with early rev chips - Methinks this bug was
2541                          * fixed in later revs. -DG
2542                          */
2543                         if (isr & ED_ISR_OVW) {
2544                                 ifp->if_ierrors++;
2545 #ifdef DIAGNOSTIC
2546                                 log(LOG_WARNING,
2547                                     "%s: warning - receiver ring buffer overrun\n",
2548                                     ifp->if_xname);
2549 #endif
2550
2551                                 /*
2552                                  * Stop/reset/re-init NIC
2553                                  */
2554                                 ed_reset(ifp);
2555                         } else {
2556
2557                                 /*
2558                                  * Receiver Error. One or more of: CRC error,
2559                                  * frame alignment error FIFO overrun, or
2560                                  * missed packet.
2561                                  */
2562                                 if (isr & ED_ISR_RXE) {
2563                                         u_char rsr;
2564                                         rsr = ed_nic_inb(sc, ED_P0_RSR);
2565                                         if (rsr & ED_RSR_CRC)
2566                                                 sc->mibdata.dot3StatsFCSErrors++;
2567                                         if (rsr & ED_RSR_FAE)
2568                                                 sc->mibdata.dot3StatsAlignmentErrors++;
2569                                         if (rsr & ED_RSR_FO)
2570                                                 sc->mibdata.dot3StatsInternalMacReceiveErrors++;
2571                                         ifp->if_ierrors++;
2572 #ifdef ED_DEBUG
2573                                         if_printf("receive error %x\n",
2574                                                ed_nic_inb(sc, ED_P0_RSR));
2575 #endif
2576                                 }
2577
2578                                 /*
2579                                  * Go get the packet(s) XXX - Doing this on an
2580                                  * error is dubious because there shouldn't be
2581                                  * any data to get (we've configured the
2582                                  * interface to not accept packets with
2583                                  * errors).
2584                                  */
2585
2586                                 /*
2587                                  * Enable 16bit access to shared memory first
2588                                  * on WD/SMC boards.
2589                                  */
2590                                 if (sc->isa16bit &&
2591                                     (sc->vendor == ED_VENDOR_WD_SMC)) {
2592
2593                                         ed_asic_outb(sc, ED_WD_LAAR,
2594                                                      sc->wd_laar_proto | ED_WD_LAAR_M16EN);
2595                                         if (sc->chip_type == ED_CHIP_TYPE_WD790) {
2596                                                 ed_asic_outb(sc, ED_WD_MSR,
2597                                                              ED_WD_MSR_MENB);
2598                                         }
2599                                 }
2600                                 ed_rint(sc);
2601
2602                                 /* disable 16bit access */
2603                                 if (sc->isa16bit &&
2604                                     (sc->vendor == ED_VENDOR_WD_SMC)) {
2605
2606                                         if (sc->chip_type == ED_CHIP_TYPE_WD790) {
2607                                                 ed_asic_outb(sc, ED_WD_MSR, 0x00);
2608                                         }
2609                                         ed_asic_outb(sc, ED_WD_LAAR,
2610                                                      sc->wd_laar_proto & ~ED_WD_LAAR_M16EN);
2611                                 }
2612                         }
2613                 }
2614
2615                 /*
2616                  * If it looks like the transmitter can take more data,
2617                  * attempt to start output on the interface. This is done
2618                  * after handling the receiver to give the receiver priority.
2619                  */
2620                 if ((ifp->if_flags & IFF_OACTIVE) == 0)
2621                         ed_start(ifp);
2622
2623                 /*
2624                  * return NIC CR to standard state: page 0, remote DMA
2625                  * complete, start (toggling the TXP bit off, even if was just
2626                  * set in the transmit routine, is *okay* - it is 'edge'
2627                  * triggered from low to high)
2628                  */
2629                 ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_STA);
2630
2631                 /*
2632                  * If the Network Talley Counters overflow, read them to reset
2633                  * them. It appears that old 8390's won't clear the ISR flag
2634                  * otherwise - resulting in an infinite loop.
2635                  */
2636                 if (isr & ED_ISR_CNT) {
2637                         (void) ed_nic_inb(sc, ED_P0_CNTR0);
2638                         (void) ed_nic_inb(sc, ED_P0_CNTR1);
2639                         (void) ed_nic_inb(sc, ED_P0_CNTR2);
2640                 }
2641         }
2642 }
2643
2644 /*
2645  * Process an ioctl request. This code needs some work - it looks
2646  *      pretty ugly.
2647  */
2648 static int
2649 ed_ioctl(ifp, command, data, cr)
2650         struct ifnet *ifp;
2651         u_long     command;
2652         caddr_t data;
2653         struct ucred *cr;
2654 {
2655         struct ed_softc *sc = ifp->if_softc;
2656 #ifndef ED_NO_MIIBUS
2657         struct ifreq *ifr = (struct ifreq *)data;
2658         struct mii_data *mii;
2659 #endif
2660         int     s, error = 0;
2661
2662         if (sc == NULL || sc->gone) {
2663                 ifp->if_flags &= ~IFF_RUNNING;
2664                 return ENXIO;
2665         }
2666         s = splimp();
2667
2668         switch (command) {
2669
2670         case SIOCSIFADDR:
2671         case SIOCGIFADDR:
2672         case SIOCSIFMTU:
2673                 error = ether_ioctl(ifp, command, data);
2674                 break;
2675
2676         case SIOCSIFFLAGS:
2677
2678                 /*
2679                  * If the interface is marked up and stopped, then start it.
2680                  * If it is marked down and running, then stop it.
2681                  */
2682                 if (ifp->if_flags & IFF_UP) {
2683                         if ((ifp->if_flags & IFF_RUNNING) == 0)
2684                                 ed_init(sc);
2685                 } else {
2686                         if (ifp->if_flags & IFF_RUNNING) {
2687                                 ed_stop(sc);
2688                                 ifp->if_flags &= ~IFF_RUNNING;
2689                         }
2690                 }
2691
2692                 /*
2693                  * Promiscuous flag may have changed, so reprogram the RCR.
2694                  */
2695                 ed_setrcr(sc);
2696
2697                 /*
2698                  * An unfortunate hack to provide the (required) software
2699                  * control of the tranceiver for 3Com boards. The ALTPHYS flag
2700                  * disables the tranceiver if set.
2701                  */
2702                 if (sc->vendor == ED_VENDOR_3COM) {
2703                         if (ifp->if_flags & IFF_ALTPHYS) {
2704                                 ed_asic_outb(sc, ED_3COM_CR, 0);
2705                         } else {
2706                                 ed_asic_outb(sc, ED_3COM_CR, ED_3COM_CR_XSEL);
2707                         }
2708                 } else if (sc->vendor == ED_VENDOR_HP) 
2709                         ed_hpp_set_physical_link(sc);
2710                 break;
2711
2712         case SIOCADDMULTI:
2713         case SIOCDELMULTI:
2714                 /*
2715                  * Multicast list has changed; set the hardware filter
2716                  * accordingly.
2717                  */
2718                 ed_setrcr(sc);
2719                 error = 0;
2720                 break;
2721
2722 #ifndef ED_NO_MIIBUS
2723         case SIOCGIFMEDIA:
2724         case SIOCSIFMEDIA:
2725                 if (sc->miibus == NULL) {
2726                         error = EINVAL;
2727                         break;
2728                 }
2729                 mii = device_get_softc(sc->miibus);
2730                 error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
2731                 break;
2732 #endif
2733
2734         default:
2735                 error = EINVAL;
2736         }
2737         (void) splx(s);
2738         return (error);
2739 }
2740
2741 /*
2742  * Given a source and destination address, copy 'amount' of a packet from
2743  *      the ring buffer into a linear destination buffer. Takes into account
2744  *      ring-wrap.
2745  */
2746 static __inline char *
2747 ed_ring_copy(sc, src, dst, amount)
2748         struct ed_softc *sc;
2749         char   *src;
2750         char   *dst;
2751         u_short amount;
2752 {
2753         u_short tmp_amount;
2754
2755         /* does copy wrap to lower addr in ring buffer? */
2756         if (src + amount > sc->mem_end) {
2757                 tmp_amount = sc->mem_end - src;
2758
2759                 /* copy amount up to end of NIC memory */
2760                 if (sc->mem_shared)
2761                         bcopy(src, dst, tmp_amount);
2762                 else
2763                         ed_pio_readmem(sc, (int)src, dst, tmp_amount);
2764
2765                 amount -= tmp_amount;
2766                 src = sc->mem_ring;
2767                 dst += tmp_amount;
2768         }
2769         if (sc->mem_shared)
2770                 bcopy(src, dst, amount);
2771         else
2772                 ed_pio_readmem(sc, (int)src, dst, amount);
2773
2774         return (src + amount);
2775 }
2776
2777 /*
2778  * Retreive packet from shared memory and send to the next level up via
2779  * ether_input().
2780  */
2781 static void
2782 ed_get_packet(sc, buf, len)
2783         struct ed_softc *sc;
2784         char   *buf;
2785         u_short len;
2786 {
2787         struct ifnet *ifp = &sc->arpcom.ac_if;
2788         struct ether_header *eh;
2789         struct mbuf *m;
2790
2791         /* Allocate a header mbuf */
2792         MGETHDR(m, MB_DONTWAIT, MT_DATA);
2793         if (m == NULL)
2794                 return;
2795         m->m_pkthdr.rcvif = ifp;
2796         m->m_pkthdr.len = m->m_len = len;
2797
2798         /*
2799          * We always put the received packet in a single buffer -
2800          * either with just an mbuf header or in a cluster attached
2801          * to the header. The +2 is to compensate for the alignment
2802          * fixup below.
2803          */
2804         if ((len + 2) > MHLEN) {
2805                 /* Attach an mbuf cluster */
2806                 MCLGET(m, MB_DONTWAIT);
2807
2808                 /* Insist on getting a cluster */
2809                 if ((m->m_flags & M_EXT) == 0) {
2810                         m_freem(m);
2811                         return;
2812                 }
2813         }
2814
2815         /*
2816          * The +2 is to longword align the start of the real packet.
2817          * This is important for NFS.
2818          */
2819         m->m_data += 2;
2820         eh = mtod(m, struct ether_header *);
2821
2822         /*
2823          * Don't read in the entire packet if we know we're going to drop it
2824          * and no bpf is active.
2825          */
2826         if (!ifp->if_bpf && BDG_ACTIVE( (ifp) ) ) {
2827                 struct ifnet *bif;
2828
2829                 ed_ring_copy(sc, buf, (char *)eh, ETHER_HDR_LEN);
2830                 bif = bridge_in_ptr(ifp, eh) ;
2831                 if (bif == BDG_DROP) {
2832                         m_freem(m);
2833                         return;
2834                 }
2835                 if (len > ETHER_HDR_LEN)
2836                         ed_ring_copy(sc, buf + ETHER_HDR_LEN,
2837                                 (char *)(eh + 1), len - ETHER_HDR_LEN);
2838         } else
2839                 /*
2840                  * Get packet, including link layer address, from interface.
2841                  */
2842                 ed_ring_copy(sc, buf, (char *)eh, len);
2843
2844         m->m_pkthdr.len = m->m_len = len;
2845
2846         (*ifp->if_input)(ifp, m);
2847 }
2848
2849 /*
2850  * Supporting routines
2851  */
2852
2853 /*
2854  * Given a NIC memory source address and a host memory destination
2855  *      address, copy 'amount' from NIC to host using Programmed I/O.
2856  *      The 'amount' is rounded up to a word - okay as long as mbufs
2857  *              are word sized.
2858  *      This routine is currently Novell-specific.
2859  */
2860 void
2861 ed_pio_readmem(sc, src, dst, amount)
2862         struct ed_softc *sc;
2863         int src;
2864         unsigned char *dst;
2865         unsigned short amount;
2866 {
2867         /* HP PC Lan+ cards need special handling */
2868         if (sc->vendor == ED_VENDOR_HP && sc->type == ED_TYPE_HP_PCLANPLUS) {
2869                 ed_hpp_readmem(sc, src, dst, amount);
2870                 return;
2871         }
2872
2873         /* Regular Novell cards */
2874         /* select page 0 registers */
2875         ed_nic_outb(sc, ED_P0_CR, ED_CR_RD2 | ED_CR_STA);
2876
2877         /* round up to a word */
2878         if (amount & 1)
2879                 ++amount;
2880
2881         /* set up DMA byte count */
2882         ed_nic_outb(sc, ED_P0_RBCR0, amount);
2883         ed_nic_outb(sc, ED_P0_RBCR1, amount >> 8);
2884
2885         /* set up source address in NIC mem */
2886         ed_nic_outb(sc, ED_P0_RSAR0, src);
2887         ed_nic_outb(sc, ED_P0_RSAR1, src >> 8);
2888
2889         ed_nic_outb(sc, ED_P0_CR, ED_CR_RD0 | ED_CR_STA);
2890
2891         if (sc->isa16bit) {
2892                 ed_asic_insw(sc, ED_NOVELL_DATA, dst, amount / 2);
2893         } else {
2894                 ed_asic_insb(sc, ED_NOVELL_DATA, dst, amount);
2895         }
2896 }
2897
2898 /*
2899  * Stripped down routine for writing a linear buffer to NIC memory.
2900  *      Only used in the probe routine to test the memory. 'len' must
2901  *      be even.
2902  */
2903 void
2904 ed_pio_writemem(sc, src, dst, len)
2905         struct ed_softc *sc;
2906         char   *src;
2907         unsigned short dst;
2908         unsigned short len;
2909 {
2910         int     maxwait = 200;  /* about 240us */
2911
2912         /* select page 0 registers */
2913         ed_nic_outb(sc, ED_P0_CR, ED_CR_RD2 | ED_CR_STA);
2914
2915         /* reset remote DMA complete flag */
2916         ed_nic_outb(sc, ED_P0_ISR, ED_ISR_RDC);
2917
2918         /* set up DMA byte count */
2919         ed_nic_outb(sc, ED_P0_RBCR0, len);
2920         ed_nic_outb(sc, ED_P0_RBCR1, len >> 8);
2921
2922         /* set up destination address in NIC mem */
2923         ed_nic_outb(sc, ED_P0_RSAR0, dst);
2924         ed_nic_outb(sc, ED_P0_RSAR1, dst >> 8);
2925
2926         /* set remote DMA write */
2927         ed_nic_outb(sc, ED_P0_CR, ED_CR_RD1 | ED_CR_STA);
2928
2929         if (sc->isa16bit) {
2930                 ed_asic_outsw(sc, ED_NOVELL_DATA, src, len / 2);
2931         } else {
2932                 ed_asic_outsb(sc, ED_NOVELL_DATA, src, len);
2933         }
2934
2935         /*
2936          * Wait for remote DMA complete. This is necessary because on the
2937          * transmit side, data is handled internally by the NIC in bursts and
2938          * we can't start another remote DMA until this one completes. Not
2939          * waiting causes really bad things to happen - like the NIC
2940          * irrecoverably jamming the ISA bus.
2941          */
2942         while (((ed_nic_inb(sc, ED_P0_ISR) & ED_ISR_RDC) != ED_ISR_RDC) && --maxwait);
2943 }
2944
2945 /*
2946  * Write an mbuf chain to the destination NIC memory address using
2947  *      programmed I/O.
2948  */
2949 static u_short
2950 ed_pio_write_mbufs(sc, m, dst)
2951         struct ed_softc *sc;
2952         struct mbuf *m;
2953         int dst;
2954 {
2955         struct ifnet *ifp = (struct ifnet *)sc;
2956         unsigned short total_len, dma_len;
2957         struct mbuf *mp;
2958         int     maxwait = 200;  /* about 240us */
2959
2960         /* HP PC Lan+ cards need special handling */
2961         if (sc->vendor == ED_VENDOR_HP && sc->type == ED_TYPE_HP_PCLANPLUS) {
2962                 return ed_hpp_write_mbufs(sc, m, dst);
2963         }
2964
2965         /* Regular Novell cards */
2966         /* First, count up the total number of bytes to copy */
2967         for (total_len = 0, mp = m; mp; mp = mp->m_next)
2968                 total_len += mp->m_len;
2969
2970         dma_len = total_len;
2971         if (sc->isa16bit && (dma_len & 1))
2972                 dma_len++;
2973
2974         /* select page 0 registers */
2975         ed_nic_outb(sc, ED_P0_CR, ED_CR_RD2 | ED_CR_STA);
2976
2977         /* reset remote DMA complete flag */
2978         ed_nic_outb(sc, ED_P0_ISR, ED_ISR_RDC);
2979
2980         /* set up DMA byte count */
2981         ed_nic_outb(sc, ED_P0_RBCR0, dma_len);
2982         ed_nic_outb(sc, ED_P0_RBCR1, dma_len >> 8);
2983
2984         /* set up destination address in NIC mem */
2985         ed_nic_outb(sc, ED_P0_RSAR0, dst);
2986         ed_nic_outb(sc, ED_P0_RSAR1, dst >> 8);
2987
2988         /* set remote DMA write */
2989         ed_nic_outb(sc, ED_P0_CR, ED_CR_RD1 | ED_CR_STA);
2990
2991   /*
2992    * Transfer the mbuf chain to the NIC memory.
2993    * 16-bit cards require that data be transferred as words, and only words.
2994    * So that case requires some extra code to patch over odd-length mbufs.
2995    */
2996
2997         if (!sc->isa16bit) {
2998                 /* NE1000s are easy */
2999                 while (m) {
3000                         if (m->m_len) {
3001                                 ed_asic_outsb(sc, ED_NOVELL_DATA,
3002                                               m->m_data, m->m_len);
3003                         }
3004                         m = m->m_next;
3005                 }
3006         } else {
3007                 /* NE2000s are a pain */
3008                 unsigned char *data;
3009                 int len, wantbyte;
3010                 unsigned char savebyte[2];
3011
3012                 wantbyte = 0;
3013
3014                 while (m) {
3015                         len = m->m_len;
3016                         if (len) {
3017                                 data = mtod(m, caddr_t);
3018                                 /* finish the last word */
3019                                 if (wantbyte) {
3020                                         savebyte[1] = *data;
3021                                         ed_asic_outw(sc, ED_NOVELL_DATA,
3022                                                      *(u_short *)savebyte);
3023                                         data++;
3024                                         len--;
3025                                         wantbyte = 0;
3026                                 }
3027                                 /* output contiguous words */
3028                                 if (len > 1) {
3029                                         ed_asic_outsw(sc, ED_NOVELL_DATA,
3030                                                       data, len >> 1);
3031                                         data += len & ~1;
3032                                         len &= 1;
3033                                 }
3034                                 /* save last byte, if necessary */
3035                                 if (len == 1) {
3036                                         savebyte[0] = *data;
3037                                         wantbyte = 1;
3038                                 }
3039                         }
3040                         m = m->m_next;
3041                 }
3042                 /* spit last byte */
3043                 if (wantbyte) {
3044                         ed_asic_outw(sc, ED_NOVELL_DATA, *(u_short *)savebyte);
3045                 }
3046         }
3047
3048         /*
3049          * Wait for remote DMA complete. This is necessary because on the
3050          * transmit side, data is handled internally by the NIC in bursts and
3051          * we can't start another remote DMA until this one completes. Not
3052          * waiting causes really bad things to happen - like the NIC
3053          * irrecoverably jamming the ISA bus.
3054          */
3055         while (((ed_nic_inb(sc, ED_P0_ISR) & ED_ISR_RDC) != ED_ISR_RDC) && --maxwait);
3056
3057         if (!maxwait) {
3058                 log(LOG_WARNING, "%s: remote transmit DMA failed to complete\n",
3059                     ifp->if_xname);
3060                 ed_reset(ifp);
3061                 return(0);
3062         }
3063         return (total_len);
3064 }
3065
3066 /*
3067  * Support routines to handle the HP PC Lan+ card.
3068  */
3069
3070 /*
3071  * HP PC Lan+: Read from NIC memory, using either PIO or memory mapped
3072  * IO.
3073  */
3074
3075 static void
3076 ed_hpp_readmem(sc, src, dst, amount)
3077         struct ed_softc *sc; 
3078         unsigned short src;
3079         unsigned char *dst;
3080         unsigned short amount;
3081 {
3082
3083         int use_32bit_access = !(sc->hpp_id & ED_HPP_ID_16_BIT_ACCESS);
3084
3085
3086         /* Program the source address in RAM */
3087         ed_asic_outw(sc, ED_HPP_PAGE_2, src);
3088
3089         /*
3090          * The HP PC Lan+ card supports word reads as well as
3091          * a memory mapped i/o port that is aliased to every 
3092          * even address on the board.
3093          */
3094
3095         if (sc->hpp_mem_start) {
3096
3097                 /* Enable memory mapped access.  */
3098                 ed_asic_outw(sc, ED_HPP_OPTION, sc->hpp_options & 
3099                         ~(ED_HPP_OPTION_MEM_DISABLE | 
3100                           ED_HPP_OPTION_BOOT_ROM_ENB));
3101
3102                 if (use_32bit_access && (amount > 3)) {
3103                         u_int32_t *dl = (u_int32_t *) dst;      
3104                         volatile u_int32_t *const sl = 
3105                                 (u_int32_t *) sc->hpp_mem_start;
3106                         u_int32_t *const fence = dl + (amount >> 2);
3107                         
3108                         /* Copy out NIC data.  We could probably write this
3109                            as a `movsl'. The currently generated code is lousy.
3110                            */
3111
3112                         while (dl < fence)
3113                                 *dl++ = *sl;
3114                 
3115                         dst += (amount & ~3);
3116                         amount &= 3;
3117
3118                 } 
3119
3120                 /* Finish off any words left, as a series of short reads */
3121                 if (amount > 1) {
3122                         u_short *d = (u_short *) dst;   
3123                         volatile u_short *const s = 
3124                                 (u_short *) sc->hpp_mem_start;
3125                         u_short *const fence = d + (amount >> 1);
3126                         
3127                         /* Copy out NIC data.  */
3128
3129                         while (d < fence)
3130                                 *d++ = *s;
3131         
3132                         dst += (amount & ~1);
3133                         amount &= 1;
3134                 }
3135
3136                 /*
3137                  * read in a byte; however we need to always read 16 bits
3138                  * at a time or the hardware gets into a funny state
3139                  */
3140
3141                 if (amount == 1) {
3142                         /* need to read in a short and copy LSB */
3143                         volatile u_short *const s = 
3144                                 (volatile u_short *) sc->hpp_mem_start;
3145                         
3146                         *dst = (*s) & 0xFF;     
3147                 }
3148
3149                 /* Restore Boot ROM access.  */
3150
3151                 ed_asic_outw(sc, ED_HPP_OPTION, sc->hpp_options);
3152
3153
3154         } else { 
3155                 /* Read in data using the I/O port */
3156                 if (use_32bit_access && (amount > 3)) {
3157                         ed_asic_insl(sc, ED_HPP_PAGE_4, dst, amount >> 2);
3158                         dst += (amount & ~3);
3159                         amount &= 3;
3160                 }
3161                 if (amount > 1) {
3162                         ed_asic_insw(sc, ED_HPP_PAGE_4, dst, amount >> 1);
3163                         dst += (amount & ~1);
3164                         amount &= 1;
3165                 }
3166                 if (amount == 1) { /* read in a short and keep the LSB */
3167                         *dst = ed_asic_inw(sc, ED_HPP_PAGE_4) & 0xFF;
3168                 }
3169         }
3170 }
3171
3172 /*
3173  * HP PC Lan+: Write to NIC memory, using either PIO or memory mapped
3174  * IO.
3175  *      Only used in the probe routine to test the memory. 'len' must
3176  *      be even.
3177  */
3178 static void
3179 ed_hpp_writemem(sc, src, dst, len)
3180         struct ed_softc *sc;
3181         unsigned char *src;
3182         unsigned short dst;
3183         unsigned short len;
3184 {
3185         /* reset remote DMA complete flag */
3186         ed_nic_outb(sc, ED_P0_ISR, ED_ISR_RDC);
3187
3188         /* program the write address in RAM */
3189         ed_asic_outw(sc, ED_HPP_PAGE_0, dst);
3190
3191         if (sc->hpp_mem_start) {
3192                 u_short *s = (u_short *) src;
3193                 volatile u_short *d = (u_short *) sc->hpp_mem_start;
3194                 u_short *const fence = s + (len >> 1);
3195
3196                 /*
3197                  * Enable memory mapped access.
3198                  */
3199
3200                 ed_asic_outw(sc, ED_HPP_OPTION, sc->hpp_options & 
3201                         ~(ED_HPP_OPTION_MEM_DISABLE | 
3202                           ED_HPP_OPTION_BOOT_ROM_ENB));
3203
3204                 /*
3205                  * Copy to NIC memory.
3206                  */
3207
3208                 while (s < fence)
3209                         *d = *s++;
3210
3211                 /*
3212                  * Restore Boot ROM access.
3213                  */
3214
3215                 ed_asic_outw(sc, ED_HPP_OPTION, sc->hpp_options);
3216
3217         } else {
3218                 /* write data using I/O writes */
3219                 ed_asic_outsw(sc, ED_HPP_PAGE_4, src, len / 2);
3220         }
3221 }
3222
3223 /*
3224  * Write to HP PC Lan+ NIC memory.  Access to the NIC can be by using 
3225  * outsw() or via the memory mapped interface to the same register.
3226  * Writes have to be in word units; byte accesses won't work and may cause
3227  * the NIC to behave weirdly. Long word accesses are permitted if the ASIC
3228  * allows it.
3229  */
3230
3231 static u_short
3232 ed_hpp_write_mbufs(struct ed_softc *sc, struct mbuf *m, int dst)
3233 {
3234         int len, wantbyte;
3235         unsigned short total_len;
3236         unsigned char savebyte[2];
3237         volatile u_short * const d = 
3238                 (volatile u_short *) sc->hpp_mem_start;
3239         int use_32bit_accesses = !(sc->hpp_id & ED_HPP_ID_16_BIT_ACCESS);
3240
3241         /* select page 0 registers */
3242         ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_STA);
3243
3244         /* reset remote DMA complete flag */
3245         ed_nic_outb(sc, ED_P0_ISR, ED_ISR_RDC);
3246
3247         /* program the write address in RAM */
3248         ed_asic_outw(sc, ED_HPP_PAGE_0, dst);
3249
3250         if (sc->hpp_mem_start)  /* enable memory mapped I/O */
3251                 ed_asic_outw(sc, ED_HPP_OPTION, sc->hpp_options & 
3252                         ~(ED_HPP_OPTION_MEM_DISABLE |
3253                         ED_HPP_OPTION_BOOT_ROM_ENB));
3254
3255         wantbyte = 0;
3256         total_len = 0;
3257
3258         if (sc->hpp_mem_start) {        /* Memory mapped I/O port */
3259                 while (m) {
3260                         total_len += (len = m->m_len);
3261                         if (len) {
3262                                 caddr_t data = mtod(m, caddr_t);
3263                                 /* finish the last word of the previous mbuf */
3264                                 if (wantbyte) {
3265                                         savebyte[1] = *data;
3266                                         *d = *((u_short *) savebyte);
3267                                         data++; len--; wantbyte = 0;
3268                                 }
3269                                 /* output contiguous words */
3270                                 if ((len > 3) && (use_32bit_accesses)) {
3271                                         volatile u_int32_t *const dl = 
3272                                                 (volatile u_int32_t *) d;
3273                                         u_int32_t *sl = (u_int32_t *) data;
3274                                         u_int32_t *fence = sl + (len >> 2);
3275
3276                                         while (sl < fence)
3277                                                 *dl = *sl++;
3278
3279                                         data += (len & ~3);
3280                                         len &= 3;
3281                                 }
3282                                 /* finish off remain 16 bit writes */
3283                                 if (len > 1) {
3284                                         u_short *s = (u_short *) data;
3285                                         u_short *fence = s + (len >> 1);
3286
3287                                         while (s < fence)
3288                                                 *d = *s++;
3289
3290                                         data += (len & ~1); 
3291                                         len &= 1;
3292                                 }
3293                                 /* save last byte if needed */
3294                                 if ((wantbyte = (len == 1)) != 0)
3295                                         savebyte[0] = *data;
3296                         }
3297                         m = m->m_next;  /* to next mbuf */
3298                 }
3299                 if (wantbyte) /* write last byte */
3300                         *d = *((u_short *) savebyte);
3301         } else {
3302                 /* use programmed I/O */
3303                 while (m) {
3304                         total_len += (len = m->m_len);
3305                         if (len) {
3306                                 caddr_t data = mtod(m, caddr_t);
3307                                 /* finish the last word of the previous mbuf */
3308                                 if (wantbyte) {
3309                                         savebyte[1] = *data;
3310                                         ed_asic_outw(sc, ED_HPP_PAGE_4,
3311                                                      *((u_short *)savebyte));
3312                                         data++; 
3313                                         len--; 
3314                                         wantbyte = 0;
3315                                 }
3316                                 /* output contiguous words */
3317                                 if ((len > 3) && use_32bit_accesses) {
3318                                         ed_asic_outsl(sc, ED_HPP_PAGE_4,
3319                                                       data, len >> 2);
3320                                         data += (len & ~3);
3321                                         len &= 3;
3322                                 }
3323                                 /* finish off remaining 16 bit accesses */
3324                                 if (len > 1) {
3325                                         ed_asic_outsw(sc, ED_HPP_PAGE_4,
3326                                                       data, len >> 1);
3327                                         data += (len & ~1);
3328                                         len &= 1;
3329                                 }
3330                                 if ((wantbyte = (len == 1)) != 0)
3331                                         savebyte[0] = *data;
3332
3333                         } /* if len != 0 */
3334                         m = m->m_next;
3335                 }
3336                 if (wantbyte) /* spit last byte */
3337                         ed_asic_outw(sc, ED_HPP_PAGE_4, *(u_short *)savebyte);
3338
3339         }
3340
3341         if (sc->hpp_mem_start)  /* turn off memory mapped i/o */
3342                 ed_asic_outw(sc, ED_HPP_OPTION, sc->hpp_options);
3343
3344         return (total_len);
3345 }
3346
3347 #ifndef ED_NO_MIIBUS
3348 /*
3349  * MII bus support routines.
3350  */
3351 int
3352 ed_miibus_readreg(dev, phy, reg)
3353         device_t dev;
3354         int phy, reg;
3355 {
3356         struct ed_softc *sc;
3357         int failed, s, val;
3358
3359         s = splimp();
3360         sc = device_get_softc(dev);
3361         if (sc->gone) {
3362                 splx(s);
3363                 return (0);
3364         }
3365
3366         (*sc->mii_writebits)(sc, 0xffffffff, 32);
3367         (*sc->mii_writebits)(sc, ED_MII_STARTDELIM, ED_MII_STARTDELIM_BITS);
3368         (*sc->mii_writebits)(sc, ED_MII_READOP, ED_MII_OP_BITS);
3369         (*sc->mii_writebits)(sc, phy, ED_MII_PHY_BITS);
3370         (*sc->mii_writebits)(sc, reg, ED_MII_REG_BITS);
3371
3372         failed = (*sc->mii_readbits)(sc, ED_MII_ACK_BITS);
3373         val = (*sc->mii_readbits)(sc, ED_MII_DATA_BITS);
3374         (*sc->mii_writebits)(sc, ED_MII_IDLE, ED_MII_IDLE_BITS);
3375
3376         splx(s);
3377         return (failed ? 0 : val);
3378 }
3379
3380 void
3381 ed_miibus_writereg(dev, phy, reg, data)
3382         device_t dev;
3383         int phy, reg, data;
3384 {
3385         struct ed_softc *sc;
3386         int s;
3387
3388         s = splimp();
3389         sc = device_get_softc(dev);
3390         if (sc->gone) {
3391                 splx(s);
3392                 return;
3393         }
3394
3395         (*sc->mii_writebits)(sc, 0xffffffff, 32);
3396         (*sc->mii_writebits)(sc, ED_MII_STARTDELIM, ED_MII_STARTDELIM_BITS);
3397         (*sc->mii_writebits)(sc, ED_MII_WRITEOP, ED_MII_OP_BITS);
3398         (*sc->mii_writebits)(sc, phy, ED_MII_PHY_BITS);
3399         (*sc->mii_writebits)(sc, reg, ED_MII_REG_BITS);
3400         (*sc->mii_writebits)(sc, ED_MII_TURNAROUND, ED_MII_TURNAROUND_BITS);
3401         (*sc->mii_writebits)(sc, data, ED_MII_DATA_BITS);
3402         (*sc->mii_writebits)(sc, ED_MII_IDLE, ED_MII_IDLE_BITS);
3403
3404         splx(s);
3405 }
3406
3407 int
3408 ed_ifmedia_upd(ifp)
3409         struct ifnet *ifp;
3410 {
3411         struct ed_softc *sc;
3412         struct mii_data *mii;
3413
3414         sc = ifp->if_softc;
3415         if (sc->gone || sc->miibus == NULL)
3416                 return (ENXIO);
3417         
3418         mii = device_get_softc(sc->miibus);
3419         return mii_mediachg(mii);
3420 }
3421
3422 void
3423 ed_ifmedia_sts(ifp, ifmr)
3424         struct ifnet *ifp;
3425         struct ifmediareq *ifmr;
3426 {
3427         struct ed_softc *sc;
3428         struct mii_data *mii;
3429
3430         sc = ifp->if_softc;
3431         if (sc->gone || sc->miibus == NULL)
3432                 return;
3433
3434         mii = device_get_softc(sc->miibus);
3435         mii_pollstat(mii);
3436         ifmr->ifm_active = mii->mii_media_active;
3437         ifmr->ifm_status = mii->mii_media_status;
3438 }
3439
3440 void
3441 ed_child_detached(dev, child)
3442         device_t dev;
3443         device_t child;
3444 {
3445         struct ed_softc *sc;
3446
3447         sc = device_get_softc(dev);
3448         if (child == sc->miibus)
3449                 sc->miibus = NULL;
3450 }
3451 #endif
3452
3453 static void
3454 ed_setrcr(sc)
3455         struct ed_softc *sc;
3456 {
3457         struct ifnet *ifp = (struct ifnet *)sc;
3458         int     i;
3459         u_char  reg1;
3460
3461         /* Bit 6 in AX88190 RCR register must be set. */
3462         if (sc->chip_type == ED_CHIP_TYPE_AX88190)
3463                 reg1 = ED_RCR_INTT;
3464         else
3465                 reg1 = 0x00;
3466
3467         /* set page 1 registers */
3468         ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_PAGE_1 | ED_CR_STP);
3469
3470         if (ifp->if_flags & IFF_PROMISC) {
3471
3472                 /*
3473                  * Reconfigure the multicast filter.
3474                  */
3475                 for (i = 0; i < 8; i++)
3476                         ed_nic_outb(sc, ED_P1_MAR(i), 0xff);
3477
3478                 /*
3479                  * And turn on promiscuous mode. Also enable reception of
3480                  * runts and packets with CRC & alignment errors.
3481                  */
3482                 /* Set page 0 registers */
3483                 ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_STP);
3484
3485                 ed_nic_outb(sc, ED_P0_RCR, ED_RCR_PRO | ED_RCR_AM |
3486                             ED_RCR_AB | ED_RCR_AR | ED_RCR_SEP | reg1);
3487         } else {
3488                 /* set up multicast addresses and filter modes */
3489                 if (ifp->if_flags & IFF_MULTICAST) {
3490                         u_int32_t  mcaf[2];
3491
3492                         if (ifp->if_flags & IFF_ALLMULTI) {
3493                                 mcaf[0] = 0xffffffff;
3494                                 mcaf[1] = 0xffffffff;
3495                         } else
3496                                 ds_getmcaf(sc, mcaf);
3497
3498                         /*
3499                          * Set multicast filter on chip.
3500                          */
3501                         for (i = 0; i < 8; i++)
3502                                 ed_nic_outb(sc, ED_P1_MAR(i), ((u_char *) mcaf)[i]);
3503
3504                         /* Set page 0 registers */
3505                         ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_STP);
3506
3507                         ed_nic_outb(sc, ED_P0_RCR, ED_RCR_AM | ED_RCR_AB | reg1);
3508                 } else {
3509
3510                         /*
3511                          * Initialize multicast address hashing registers to
3512                          * not accept multicasts.
3513                          */
3514                         for (i = 0; i < 8; ++i)
3515                                 ed_nic_outb(sc, ED_P1_MAR(i), 0x00);
3516
3517                         /* Set page 0 registers */
3518                         ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_STP);
3519
3520                         ed_nic_outb(sc, ED_P0_RCR, ED_RCR_AB | reg1);
3521                 }
3522         }
3523
3524         /*
3525          * Start interface.
3526          */
3527         ed_nic_outb(sc, ED_P0_CR, sc->cr_proto | ED_CR_STA);
3528 }
3529
3530 /*
3531  * Compute crc for ethernet address
3532  */
3533 static uint32_t
3534 ds_mchash(addr)
3535         const uint8_t *addr;
3536 {
3537 #define ED_POLYNOMIAL 0x04c11db6
3538         uint32_t crc = 0xffffffff;
3539         int carry, idx, bit;
3540         uint8_t data;
3541
3542         for (idx = 6; --idx >= 0;) {
3543                 for (data = *addr++, bit = 8; --bit >= 0; data >>=1 ) {
3544                         carry = ((crc & 0x80000000) ? 1 : 0) ^ (data & 0x01);
3545                         crc <<= 1;
3546                         if (carry)
3547                                 crc = (crc ^ ED_POLYNOMIAL) | carry;
3548                 }
3549         }
3550         return crc;
3551 #undef POLYNOMIAL
3552 }
3553
3554 /*
3555  * Compute the multicast address filter from the
3556  * list of multicast addresses we need to listen to.
3557  */
3558 static void
3559 ds_getmcaf(sc, mcaf)
3560         struct ed_softc *sc;
3561         u_int32_t *mcaf;
3562 {
3563         u_int32_t index;
3564         u_char *af = (u_char *) mcaf;
3565         struct ifmultiaddr *ifma;
3566
3567         mcaf[0] = 0;
3568         mcaf[1] = 0;
3569
3570         for (ifma = sc->arpcom.ac_if.if_multiaddrs.lh_first; ifma;
3571              ifma = ifma->ifma_link.le_next) {
3572                 if (ifma->ifma_addr->sa_family != AF_LINK)
3573                         continue;
3574                 index = ds_mchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr))
3575                         >> 26;
3576                 af[index >> 3] |= 1 << (index & 7);
3577         }
3578 }