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