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