Home | History | Annotate | Line # | Download | only in isa
if_eg.c revision 1.77.4.1
      1  1.77.4.1       jym /*	$NetBSD: if_eg.c,v 1.77.4.1 2009/05/13 17:19:53 jym Exp $	*/
      2       1.4       cgd 
      3       1.1   deraadt /*
      4       1.1   deraadt  * Copyright (c) 1993 Dean Huxley <dean (at) fsa.ca>
      5       1.1   deraadt  * All rights reserved.
      6       1.1   deraadt  *
      7       1.1   deraadt  * Redistribution and use in source and binary forms, with or without
      8       1.1   deraadt  * modification, are permitted provided that the following conditions
      9       1.1   deraadt  * are met:
     10       1.1   deraadt  * 1. Redistributions of source code must retain the above copyright
     11       1.1   deraadt  *    notice, this list of conditions and the following disclaimer.
     12       1.1   deraadt  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1   deraadt  *    notice, this list of conditions and the following disclaimer in the
     14       1.1   deraadt  *    documentation and/or other materials provided with the distribution.
     15       1.1   deraadt  * 3. All advertising materials mentioning features or use of this software
     16       1.1   deraadt  *    must display the following acknowledgement:
     17       1.1   deraadt  *      This product includes software developed by Dean Huxley.
     18       1.1   deraadt  * 4. The name of Dean Huxley may not be used to endorse or promote products
     19       1.1   deraadt  *    derived from this software without specific prior written permission.
     20       1.1   deraadt  *
     21       1.1   deraadt  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22       1.1   deraadt  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23       1.1   deraadt  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24       1.1   deraadt  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25       1.1   deraadt  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26       1.1   deraadt  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27       1.1   deraadt  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28       1.1   deraadt  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29       1.1   deraadt  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30       1.1   deraadt  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31      1.22   hpeyerl  */
     32      1.22   hpeyerl /*
     33      1.22   hpeyerl  * Support for 3Com 3c505 Etherlink+ card.
     34       1.1   deraadt  */
     35       1.1   deraadt 
     36      1.57   thorpej /*
     37      1.57   thorpej  * To do:
     38       1.1   deraadt  * - multicast
     39       1.1   deraadt  * - promiscuous
     40       1.1   deraadt  */
     41      1.55     lukem 
     42      1.55     lukem #include <sys/cdefs.h>
     43  1.77.4.1       jym __KERNEL_RCSID(0, "$NetBSD: if_eg.c,v 1.77.4.1 2009/05/13 17:19:53 jym Exp $");
     44      1.55     lukem 
     45      1.42  jonathan #include "opt_inet.h"
     46       1.1   deraadt #include "bpfilter.h"
     47      1.37  explorer #include "rnd.h"
     48       1.1   deraadt 
     49       1.1   deraadt #include <sys/param.h>
     50      1.31   thorpej #include <sys/systm.h>
     51       1.1   deraadt #include <sys/mbuf.h>
     52       1.1   deraadt #include <sys/socket.h>
     53       1.1   deraadt #include <sys/ioctl.h>
     54       1.1   deraadt #include <sys/errno.h>
     55       1.1   deraadt #include <sys/syslog.h>
     56       1.1   deraadt #include <sys/select.h>
     57       1.1   deraadt #include <sys/device.h>
     58      1.37  explorer #if NRND > 0
     59      1.37  explorer #include <sys/rnd.h>
     60      1.37  explorer #endif
     61       1.1   deraadt 
     62       1.1   deraadt #include <net/if.h>
     63       1.1   deraadt #include <net/if_dl.h>
     64       1.1   deraadt #include <net/if_types.h>
     65      1.33        is 
     66      1.33        is #include <net/if_ether.h>
     67       1.1   deraadt 
     68       1.1   deraadt #ifdef INET
     69       1.1   deraadt #include <netinet/in.h>
     70       1.1   deraadt #include <netinet/in_systm.h>
     71       1.1   deraadt #include <netinet/in_var.h>
     72       1.1   deraadt #include <netinet/ip.h>
     73      1.33        is #include <netinet/if_inarp.h>
     74       1.1   deraadt #endif
     75       1.1   deraadt 
     76       1.1   deraadt 
     77       1.1   deraadt #if NBPFILTER > 0
     78       1.1   deraadt #include <net/bpf.h>
     79       1.1   deraadt #include <net/bpfdesc.h>
     80       1.1   deraadt #endif
     81       1.1   deraadt 
     82      1.73        ad #include <sys/cpu.h>
     83      1.73        ad #include <sys/intr.h>
     84      1.73        ad #include <sys/bus.h>
     85       1.1   deraadt 
     86      1.12       cgd #include <dev/isa/isavar.h>
     87      1.10       cgd #include <dev/isa/if_egreg.h>
     88      1.10       cgd #include <dev/isa/elink.h>
     89       1.1   deraadt 
     90       1.1   deraadt /* for debugging convenience */
     91       1.1   deraadt #ifdef EGDEBUG
     92      1.30  christos #define DPRINTF(x) printf x
     93       1.1   deraadt #else
     94      1.29  christos #define DPRINTF(x)
     95       1.1   deraadt #endif
     96       1.1   deraadt 
     97       1.1   deraadt #define EG_INLEN  	10
     98       1.1   deraadt #define EG_BUFLEN	0x0670
     99       1.1   deraadt 
    100      1.40  drochner #define EG_PCBLEN 64
    101      1.40  drochner 
    102       1.1   deraadt /*
    103       1.1   deraadt  * Ethernet software status per interface.
    104       1.1   deraadt  */
    105       1.1   deraadt struct eg_softc {
    106       1.1   deraadt 	struct device sc_dev;
    107      1.12       cgd 	void *sc_ih;
    108      1.33        is 	struct ethercom sc_ethercom;	/* Ethernet common part */
    109      1.32   thorpej 	bus_space_tag_t sc_iot;		/* bus space identifier */
    110      1.32   thorpej 	bus_space_handle_t sc_ioh;	/* i/o handle */
    111      1.65     perry 	u_int8_t eg_rom_major;		/* Cards ROM version (major number) */
    112      1.65     perry 	u_int8_t eg_rom_minor;		/* Cards ROM version (minor number) */
    113      1.27   thorpej 	short	 eg_ram;		/* Amount of RAM on the card */
    114      1.40  drochner 	u_int8_t eg_pcb[EG_PCBLEN];	/* Primary Command Block buffer */
    115      1.27   thorpej 	u_int8_t eg_incount;		/* Number of buffers currently used */
    116      1.72  christos 	void *	eg_inbuf;		/* Incoming packet buffer */
    117      1.72  christos 	void *	eg_outbuf;		/* Outgoing packet buffer */
    118      1.37  explorer 
    119      1.37  explorer #if NRND > 0
    120      1.37  explorer 	rndsource_element_t rnd_source;
    121      1.37  explorer #endif
    122       1.1   deraadt };
    123       1.1   deraadt 
    124  1.77.4.1       jym int egprobe(device_t, cfdata_t, void *);
    125  1.77.4.1       jym void egattach(device_t, device_t, void *);
    126       1.1   deraadt 
    127      1.59   thorpej CFATTACH_DECL(eg, sizeof(struct eg_softc),
    128      1.60   thorpej     egprobe, egattach, NULL, NULL);
    129       1.1   deraadt 
    130      1.64     perry int egintr(void *);
    131      1.64     perry void eginit(struct eg_softc *);
    132      1.72  christos int egioctl(struct ifnet *, u_long, void *);
    133      1.64     perry void egrecv(struct eg_softc *);
    134      1.64     perry void egstart(struct ifnet *);
    135      1.64     perry void egwatchdog(struct ifnet *);
    136      1.64     perry void egreset(struct eg_softc *);
    137      1.72  christos void egread(struct eg_softc *, void *, int);
    138      1.72  christos struct mbuf *egget(struct eg_softc *, void *, int);
    139      1.64     perry void egstop(struct eg_softc *);
    140      1.64     perry 
    141      1.64     perry static inline void egprintpcb(u_int8_t *);
    142      1.64     perry static inline void egprintstat(u_char);
    143      1.64     perry static int egoutPCB(bus_space_tag_t, bus_space_handle_t, u_int8_t);
    144      1.64     perry static int egreadPCBstat(bus_space_tag_t, bus_space_handle_t, u_int8_t);
    145      1.64     perry static int egreadPCBready(bus_space_tag_t, bus_space_handle_t);
    146      1.64     perry static int egwritePCB(bus_space_tag_t, bus_space_handle_t, u_int8_t *);
    147      1.64     perry static int egreadPCB(bus_space_tag_t, bus_space_handle_t, u_int8_t *);
    148      1.31   thorpej 
    149       1.1   deraadt /*
    150       1.1   deraadt  * Support stuff
    151       1.1   deraadt  */
    152      1.65     perry 
    153       1.1   deraadt static inline void
    154  1.77.4.1       jym egprintpcb(u_int8_t *pcb)
    155       1.1   deraadt {
    156       1.1   deraadt 	int i;
    157      1.65     perry 
    158      1.40  drochner 	for (i = 0; i < pcb[1] + 2; i++)
    159      1.40  drochner 		DPRINTF(("pcb[%2d] = %x\n", i, pcb[i]));
    160       1.1   deraadt }
    161       1.1   deraadt 
    162       1.1   deraadt 
    163       1.1   deraadt static inline void
    164      1.71  christos egprintstat(u_char b)
    165       1.1   deraadt {
    166      1.65     perry 	DPRINTF(("%s %s %s %s %s %s %s\n",
    167       1.1   deraadt 		 (b & EG_STAT_HCRE)?"HCRE":"",
    168       1.1   deraadt 		 (b & EG_STAT_ACRF)?"ACRF":"",
    169       1.1   deraadt 		 (b & EG_STAT_DIR )?"DIR ":"",
    170       1.1   deraadt 		 (b & EG_STAT_DONE)?"DONE":"",
    171       1.1   deraadt 		 (b & EG_STAT_ASF3)?"ASF3":"",
    172       1.1   deraadt 		 (b & EG_STAT_ASF2)?"ASF2":"",
    173       1.1   deraadt 		 (b & EG_STAT_ASF1)?"ASF1":""));
    174       1.1   deraadt }
    175       1.1   deraadt 
    176       1.1   deraadt static int
    177  1.77.4.1       jym egoutPCB(bus_space_tag_t iot, bus_space_handle_t ioh, u_int8_t b)
    178       1.1   deraadt {
    179       1.1   deraadt 	int i;
    180       1.1   deraadt 
    181       1.1   deraadt 	for (i=0; i < 4000; i++) {
    182      1.32   thorpej 		if (bus_space_read_1(iot, ioh, EG_STATUS) & EG_STAT_HCRE) {
    183      1.32   thorpej 			bus_space_write_1(iot, ioh, EG_COMMAND, b);
    184       1.1   deraadt 			return 0;
    185       1.1   deraadt 		}
    186       1.1   deraadt 		delay(10);
    187       1.1   deraadt 	}
    188      1.29  christos 	DPRINTF(("egoutPCB failed\n"));
    189       1.1   deraadt 	return 1;
    190       1.1   deraadt }
    191      1.65     perry 
    192       1.1   deraadt static int
    193  1.77.4.1       jym egreadPCBstat(bus_space_tag_t iot, bus_space_handle_t ioh, u_int8_t statb)
    194       1.1   deraadt {
    195       1.1   deraadt 	int i;
    196       1.1   deraadt 
    197       1.1   deraadt 	for (i=0; i < 5000; i++) {
    198      1.32   thorpej 		if ((bus_space_read_1(iot, ioh, EG_STATUS) &
    199      1.65     perry 		    EG_PCB_STAT) != EG_PCB_NULL)
    200       1.1   deraadt 			break;
    201       1.1   deraadt 		delay(10);
    202       1.1   deraadt 	}
    203      1.65     perry 	if ((bus_space_read_1(iot, ioh, EG_STATUS) & EG_PCB_STAT) == statb)
    204       1.1   deraadt 		return 0;
    205       1.1   deraadt 	return 1;
    206       1.1   deraadt }
    207       1.1   deraadt 
    208       1.1   deraadt static int
    209  1.77.4.1       jym egreadPCBready(bus_space_tag_t iot, bus_space_handle_t ioh)
    210       1.1   deraadt {
    211       1.1   deraadt 	int i;
    212       1.1   deraadt 
    213       1.1   deraadt 	for (i=0; i < 10000; i++) {
    214      1.32   thorpej 		if (bus_space_read_1(iot, ioh, EG_STATUS) & EG_STAT_ACRF)
    215       1.1   deraadt 			return 0;
    216       1.1   deraadt 		delay(5);
    217       1.1   deraadt 	}
    218      1.29  christos 	DPRINTF(("PCB read not ready\n"));
    219       1.1   deraadt 	return 1;
    220       1.1   deraadt }
    221      1.65     perry 
    222       1.1   deraadt static int
    223  1.77.4.1       jym egwritePCB(bus_space_tag_t iot, bus_space_handle_t ioh, u_int8_t *pcb)
    224       1.1   deraadt {
    225       1.1   deraadt 	int i;
    226      1.27   thorpej 	u_int8_t len;
    227       1.1   deraadt 
    228      1.32   thorpej 	bus_space_write_1(iot, ioh, EG_CONTROL,
    229      1.32   thorpej 	    (bus_space_read_1(iot, ioh, EG_CONTROL) & ~EG_PCB_STAT) | EG_PCB_NULL);
    230       1.1   deraadt 
    231      1.40  drochner 	len = pcb[1] + 2;
    232       1.1   deraadt 	for (i = 0; i < len; i++)
    233      1.40  drochner 		egoutPCB(iot, ioh, pcb[i]);
    234      1.27   thorpej 
    235       1.1   deraadt 	for (i=0; i < 4000; i++) {
    236      1.32   thorpej 		if (bus_space_read_1(iot, ioh, EG_STATUS) & EG_STAT_HCRE)
    237       1.1   deraadt 			break;
    238       1.1   deraadt 		delay(10);
    239       1.1   deraadt 	}
    240      1.17   mycroft 
    241      1.32   thorpej 	bus_space_write_1(iot, ioh, EG_CONTROL,
    242      1.32   thorpej 	    (bus_space_read_1(iot, ioh, EG_CONTROL) & ~EG_PCB_STAT) | EG_PCB_DONE);
    243      1.17   mycroft 
    244      1.40  drochner 	egoutPCB(iot, ioh, len);
    245       1.1   deraadt 
    246      1.40  drochner 	if (egreadPCBstat(iot, ioh, EG_PCB_ACCEPT))
    247       1.1   deraadt 		return 1;
    248       1.1   deraadt 	return 0;
    249      1.65     perry }
    250      1.65     perry 
    251       1.1   deraadt static int
    252  1.77.4.1       jym egreadPCB(bus_space_tag_t iot, bus_space_handle_t ioh, u_int8_t *pcb)
    253       1.1   deraadt {
    254       1.1   deraadt 	int i;
    255      1.27   thorpej 
    256      1.32   thorpej 	bus_space_write_1(iot, ioh, EG_CONTROL,
    257      1.32   thorpej 	    (bus_space_read_1(iot, ioh, EG_CONTROL) & ~EG_PCB_STAT) | EG_PCB_NULL);
    258       1.1   deraadt 
    259      1.53   thorpej 	memset(pcb, 0, EG_PCBLEN);
    260       1.1   deraadt 
    261      1.40  drochner 	if (egreadPCBready(iot, ioh))
    262       1.1   deraadt 		return 1;
    263       1.1   deraadt 
    264      1.40  drochner 	pcb[0] = bus_space_read_1(iot, ioh, EG_COMMAND);
    265      1.27   thorpej 
    266      1.40  drochner 	if (egreadPCBready(iot, ioh))
    267       1.1   deraadt 		return 1;
    268       1.1   deraadt 
    269      1.40  drochner 	pcb[1] = bus_space_read_1(iot, ioh, EG_COMMAND);
    270       1.1   deraadt 
    271      1.40  drochner 	if (pcb[1] > 62) {
    272      1.40  drochner 		DPRINTF(("len %d too large\n", pcb[1]));
    273       1.1   deraadt 		return 1;
    274       1.1   deraadt 	}
    275      1.27   thorpej 
    276      1.40  drochner 	for (i = 0; i < pcb[1]; i++) {
    277      1.40  drochner 		if (egreadPCBready(iot, ioh))
    278       1.1   deraadt 			return 1;
    279      1.40  drochner 		pcb[2+i] = bus_space_read_1(iot, ioh, EG_COMMAND);
    280       1.1   deraadt 	}
    281      1.40  drochner 	if (egreadPCBready(iot, ioh))
    282       1.1   deraadt 		return 1;
    283      1.40  drochner 	if (egreadPCBstat(iot, ioh, EG_PCB_DONE))
    284       1.1   deraadt 		return 1;
    285      1.62    simonb 	if (bus_space_read_1(iot, ioh, EG_COMMAND) != pcb[1] + 2) {
    286       1.1   deraadt 		return 1;
    287       1.1   deraadt 	}
    288      1.17   mycroft 
    289      1.32   thorpej 	bus_space_write_1(iot, ioh, EG_CONTROL,
    290      1.32   thorpej 	    (bus_space_read_1(iot, ioh, EG_CONTROL) &
    291      1.27   thorpej 	    ~EG_PCB_STAT) | EG_PCB_ACCEPT);
    292      1.17   mycroft 
    293       1.1   deraadt 	return 0;
    294      1.65     perry }
    295       1.1   deraadt 
    296       1.1   deraadt /*
    297       1.1   deraadt  * Real stuff
    298       1.1   deraadt  */
    299       1.1   deraadt 
    300       1.1   deraadt int
    301  1.77.4.1       jym egprobe(device_t parent, cfdata_t match, void *aux)
    302       1.1   deraadt {
    303       1.1   deraadt 	struct isa_attach_args *ia = aux;
    304      1.32   thorpej 	bus_space_tag_t iot = ia->ia_iot;
    305      1.32   thorpej 	bus_space_handle_t ioh;
    306      1.27   thorpej 	int i, rval;
    307      1.40  drochner 	static u_int8_t pcb[EG_PCBLEN];
    308      1.27   thorpej 
    309      1.27   thorpej 	rval = 0;
    310       1.1   deraadt 
    311      1.75        ad 	/*
    312      1.75        ad 	 * XXX This probe is slow.  If there are no ISA expansion slots,
    313      1.75        ad 	 * then skip it.
    314      1.75        ad 	 */
    315      1.75        ad 	if (isa_get_slotcount() == 0)
    316      1.75        ad 		return (0);
    317      1.75        ad 
    318      1.57   thorpej 	if (ia->ia_nio < 1)
    319      1.57   thorpej 		return (0);
    320      1.57   thorpej 	if (ia->ia_nirq < 1)
    321      1.57   thorpej 		return (0);
    322      1.57   thorpej 
    323      1.57   thorpej 	if (ISA_DIRECT_CONFIG(ia))
    324      1.57   thorpej 		return (0);
    325      1.38   thorpej 
    326      1.38   thorpej 	/* Disallow wildcarded i/o address. */
    327      1.63  drochner 	if (ia->ia_io[0].ir_addr == ISA_UNKNOWN_PORT)
    328      1.38   thorpej 		return (0);
    329      1.27   thorpej 
    330      1.57   thorpej 	/* Disallow wildcarded IRQ. */
    331      1.63  drochner 	if (ia->ia_irq[0].ir_irq == ISA_UNKNOWN_IRQ)
    332      1.57   thorpej 		return (0);
    333      1.57   thorpej 
    334      1.57   thorpej 	if ((ia->ia_io[0].ir_addr & ~0x07f0) != 0) {
    335      1.57   thorpej 		DPRINTF(("Weird iobase %x\n", ia->ia_io[0].ir_addr));
    336      1.57   thorpej 		return 0;
    337      1.57   thorpej 	}
    338      1.57   thorpej 
    339      1.27   thorpej 	/* Map i/o space. */
    340      1.57   thorpej 	if (bus_space_map(iot, ia->ia_io[0].ir_addr, 0x08, 0, &ioh)) {
    341      1.29  christos 		DPRINTF(("egprobe: can't map i/o space in probe\n"));
    342      1.27   thorpej 		return 0;
    343      1.27   thorpej 	}
    344      1.27   thorpej 
    345       1.1   deraadt 	/* hard reset card */
    346      1.65     perry 	bus_space_write_1(iot, ioh, EG_CONTROL, EG_CTL_RESET);
    347      1.32   thorpej 	bus_space_write_1(iot, ioh, EG_CONTROL, 0);
    348      1.74        ad 	for (i = 0; i < 500; i++) {
    349       1.1   deraadt 		delay(1000);
    350      1.32   thorpej 		if ((bus_space_read_1(iot, ioh, EG_STATUS) &
    351      1.65     perry 		    EG_PCB_STAT) == EG_PCB_NULL)
    352       1.1   deraadt 			break;
    353       1.1   deraadt 	}
    354      1.32   thorpej 	if ((bus_space_read_1(iot, ioh, EG_STATUS) & EG_PCB_STAT) != EG_PCB_NULL) {
    355      1.29  christos 		DPRINTF(("egprobe: Reset failed\n"));
    356      1.27   thorpej 		goto out;
    357       1.1   deraadt 	}
    358      1.40  drochner 	pcb[0] = EG_CMD_GETINFO; /* Get Adapter Info */
    359      1.40  drochner 	pcb[1] = 0;
    360      1.40  drochner 	if (egwritePCB(iot, ioh, pcb) != 0)
    361      1.27   thorpej 		goto out;
    362      1.27   thorpej 
    363      1.40  drochner 	if ((egreadPCB(iot, ioh, pcb) != 0) ||
    364      1.40  drochner 	    pcb[0] != EG_RSP_GETINFO || /* Get Adapter Info Response */
    365      1.40  drochner 	    pcb[1] != 0x0a) {
    366      1.40  drochner 		egprintpcb(pcb);
    367      1.27   thorpej 		goto out;
    368       1.1   deraadt 	}
    369      1.27   thorpej 
    370      1.57   thorpej 	ia->ia_nio = 1;
    371      1.57   thorpej 	ia->ia_io[0].ir_size = 0x08;
    372      1.57   thorpej 
    373      1.57   thorpej 	ia->ia_nirq = 1;
    374      1.57   thorpej 
    375      1.57   thorpej 	ia->ia_niomem = 0;
    376      1.57   thorpej 	ia->ia_ndrq = 0;
    377      1.57   thorpej 
    378      1.27   thorpej 	rval = 1;
    379      1.27   thorpej 
    380      1.27   thorpej  out:
    381      1.32   thorpej 	bus_space_unmap(iot, ioh, 0x08);
    382      1.27   thorpej 	return rval;
    383       1.1   deraadt }
    384       1.1   deraadt 
    385      1.19   mycroft void
    386  1.77.4.1       jym egattach(device_t parent, device_t self, void *aux)
    387       1.1   deraadt {
    388       1.2   mycroft 	struct eg_softc *sc = (void *)self;
    389       1.2   mycroft 	struct isa_attach_args *ia = aux;
    390      1.32   thorpej 	bus_space_tag_t iot = ia->ia_iot;
    391      1.32   thorpej 	bus_space_handle_t ioh;
    392      1.33        is 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    393      1.33        is 	u_int8_t myaddr[ETHER_ADDR_LEN];
    394      1.27   thorpej 
    395      1.30  christos 	printf("\n");
    396      1.27   thorpej 
    397      1.27   thorpej 	/* Map i/o space. */
    398      1.57   thorpej 	if (bus_space_map(iot, ia->ia_io[0].ir_addr, 0x08, 0, &ioh)) {
    399      1.76    cegger 		aprint_error_dev(self, "can't map i/o space\n");
    400      1.27   thorpej 		return;
    401      1.27   thorpej 	}
    402      1.27   thorpej 
    403      1.32   thorpej 	sc->sc_iot = iot;
    404      1.27   thorpej 	sc->sc_ioh = ioh;
    405      1.27   thorpej 
    406      1.40  drochner 	sc->eg_pcb[0] = EG_CMD_GETINFO; /* Get Adapter Info */
    407      1.40  drochner 	sc->eg_pcb[1] = 0;
    408      1.40  drochner 	if (egwritePCB(iot, ioh, sc->eg_pcb) != 0) {
    409      1.76    cegger 		aprint_error_dev(self, "error requesting adapter info\n");
    410      1.40  drochner 		return;
    411      1.40  drochner 	}
    412      1.40  drochner 	if (egreadPCB(iot, ioh, sc->eg_pcb) != 0) {
    413      1.40  drochner 		egprintpcb(sc->eg_pcb);
    414      1.76    cegger 		aprint_error_dev(self, "error reading adapter info\n");
    415      1.40  drochner 		return;
    416      1.40  drochner 	}
    417      1.40  drochner 
    418      1.40  drochner 	if (sc->eg_pcb[0] != EG_RSP_GETINFO || /* Get Adapter Info Response */
    419      1.40  drochner 	    sc->eg_pcb[1] != 0x0a) {
    420      1.40  drochner 		egprintpcb(sc->eg_pcb);
    421      1.76    cegger 		aprint_error_dev(self, "bogus adapter info\n");
    422      1.40  drochner 		return;
    423      1.40  drochner 	}
    424      1.40  drochner 
    425      1.40  drochner 	sc->eg_rom_major = sc->eg_pcb[3];
    426      1.40  drochner 	sc->eg_rom_minor = sc->eg_pcb[2];
    427      1.40  drochner 	sc->eg_ram = sc->eg_pcb[6] | (sc->eg_pcb[7] << 8);
    428      1.40  drochner 
    429       1.2   mycroft 	egstop(sc);
    430       1.1   deraadt 
    431       1.1   deraadt 	sc->eg_pcb[0] = EG_CMD_GETEADDR; /* Get Station address */
    432       1.1   deraadt 	sc->eg_pcb[1] = 0;
    433      1.40  drochner 	if (egwritePCB(iot, ioh, sc->eg_pcb) != 0) {
    434      1.76    cegger 		aprint_error_dev(self, "can't send Get Station Address\n");
    435       1.1   deraadt 		return;
    436      1.65     perry 	}
    437      1.40  drochner 	if (egreadPCB(iot, ioh, sc->eg_pcb) != 0) {
    438      1.76    cegger 		aprint_error_dev(self, "can't read station address\n");
    439      1.40  drochner 		egprintpcb(sc->eg_pcb);
    440       1.1   deraadt 		return;
    441       1.1   deraadt 	}
    442       1.1   deraadt 
    443       1.1   deraadt 	/* check Get station address response */
    444      1.65     perry 	if (sc->eg_pcb[0] != EG_RSP_GETEADDR || sc->eg_pcb[1] != 0x06) {
    445      1.76    cegger 		aprint_error_dev(self, "card responded with garbage (1)\n");
    446      1.40  drochner 		egprintpcb(sc->eg_pcb);
    447       1.1   deraadt 		return;
    448       1.1   deraadt 	}
    449      1.54   thorpej 	memcpy(myaddr, &sc->eg_pcb[2], ETHER_ADDR_LEN);
    450       1.1   deraadt 
    451      1.76    cegger 	printf("%s: ROM v%d.%02d %dk address %s\n", device_xname(self),
    452       1.2   mycroft 	    sc->eg_rom_major, sc->eg_rom_minor, sc->eg_ram,
    453      1.33        is 	    ether_sprintf(myaddr));
    454       1.1   deraadt 
    455       1.1   deraadt 	sc->eg_pcb[0] = EG_CMD_SETEADDR; /* Set station address */
    456      1.40  drochner 	if (egwritePCB(iot, ioh, sc->eg_pcb) != 0) {
    457      1.76    cegger 		printf("%s: can't send Set Station Address\n", device_xname(self));
    458       1.1   deraadt 		return;
    459       1.1   deraadt 	}
    460      1.40  drochner 	if (egreadPCB(iot, ioh, sc->eg_pcb) != 0) {
    461      1.76    cegger 		aprint_error_dev(self, "can't read Set Station Address status\n");
    462      1.40  drochner 		egprintpcb(sc->eg_pcb);
    463       1.1   deraadt 		return;
    464       1.1   deraadt 	}
    465       1.2   mycroft 	if (sc->eg_pcb[0] != EG_RSP_SETEADDR || sc->eg_pcb[1] != 0x02 ||
    466       1.7   mycroft 	    sc->eg_pcb[2] != 0 || sc->eg_pcb[3] != 0) {
    467      1.76    cegger 		aprint_error_dev(self, "card responded with garbage (2)\n");
    468      1.40  drochner 		egprintpcb(sc->eg_pcb);
    469       1.1   deraadt 		return;
    470       1.1   deraadt 	}
    471       1.1   deraadt 
    472       1.2   mycroft 	/* Initialize ifnet structure. */
    473      1.76    cegger 	strlcpy(ifp->if_xname, device_xname(&sc->sc_dev), IFNAMSIZ);
    474      1.25   thorpej 	ifp->if_softc = sc;
    475       1.1   deraadt 	ifp->if_start = egstart;
    476       1.1   deraadt 	ifp->if_ioctl = egioctl;
    477       1.1   deraadt 	ifp->if_watchdog = egwatchdog;
    478       1.1   deraadt 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS;
    479      1.52   thorpej 	IFQ_SET_READY(&ifp->if_snd);
    480      1.52   thorpej 
    481       1.1   deraadt 	/* Now we can attach the interface. */
    482       1.1   deraadt 	if_attach(ifp);
    483      1.33        is 	ether_ifattach(ifp, myaddr);
    484      1.65     perry 
    485      1.57   thorpej 	sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq,
    486      1.57   thorpej 	    IST_EDGE, IPL_NET, egintr, sc);
    487      1.37  explorer 
    488      1.37  explorer #if NRND > 0
    489      1.76    cegger 	rnd_attach_source(&sc->rnd_source, device_xname(&sc->sc_dev),
    490      1.45  explorer 			  RND_TYPE_NET, 0);
    491      1.37  explorer #endif
    492       1.1   deraadt }
    493       1.1   deraadt 
    494      1.18   mycroft void
    495  1.77.4.1       jym eginit(struct eg_softc *sc)
    496       1.1   deraadt {
    497      1.49  augustss 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    498      1.32   thorpej 	bus_space_tag_t iot = sc->sc_iot;
    499      1.32   thorpej 	bus_space_handle_t ioh = sc->sc_ioh;
    500       1.1   deraadt 
    501       1.1   deraadt 	/* soft reset the board */
    502      1.32   thorpej 	bus_space_write_1(iot, ioh, EG_CONTROL, EG_CTL_FLSH);
    503       1.1   deraadt 	delay(100);
    504      1.32   thorpej 	bus_space_write_1(iot, ioh, EG_CONTROL, EG_CTL_ATTN);
    505       1.1   deraadt 	delay(100);
    506      1.32   thorpej 	bus_space_write_1(iot, ioh, EG_CONTROL, 0);
    507       1.1   deraadt 	delay(200);
    508       1.1   deraadt 
    509       1.1   deraadt 	sc->eg_pcb[0] = EG_CMD_CONFIG82586; /* Configure 82586 */
    510       1.1   deraadt 	sc->eg_pcb[1] = 2;
    511       1.1   deraadt 	sc->eg_pcb[2] = 3; /* receive broadcast & multicast */
    512       1.1   deraadt 	sc->eg_pcb[3] = 0;
    513      1.40  drochner 	if (egwritePCB(iot, ioh, sc->eg_pcb) != 0)
    514      1.76    cegger 		aprint_error_dev(&sc->sc_dev, "can't send Configure 82586\n");
    515       1.1   deraadt 
    516      1.40  drochner 	if (egreadPCB(iot, ioh, sc->eg_pcb) != 0) {
    517      1.76    cegger 		aprint_error_dev(&sc->sc_dev, "can't read Configure 82586 status\n");
    518      1.40  drochner 		egprintpcb(sc->eg_pcb);
    519       1.1   deraadt 	} else if (sc->eg_pcb[2] != 0 || sc->eg_pcb[3] != 0)
    520      1.76    cegger 		aprint_error_dev(&sc->sc_dev, "configure card command failed\n");
    521       1.1   deraadt 
    522      1.27   thorpej 	if (sc->eg_inbuf == NULL) {
    523       1.1   deraadt 		sc->eg_inbuf = malloc(EG_BUFLEN, M_TEMP, M_NOWAIT);
    524      1.27   thorpej 		if (sc->eg_inbuf == NULL) {
    525      1.76    cegger 			aprint_error_dev(&sc->sc_dev, "can't allocate inbuf\n");
    526      1.27   thorpej 			panic("eginit");
    527      1.27   thorpej 		}
    528      1.27   thorpej 	}
    529       1.1   deraadt 	sc->eg_incount = 0;
    530       1.1   deraadt 
    531      1.27   thorpej 	if (sc->eg_outbuf == NULL) {
    532       1.1   deraadt 		sc->eg_outbuf = malloc(EG_BUFLEN, M_TEMP, M_NOWAIT);
    533      1.27   thorpej 		if (sc->eg_outbuf == NULL) {
    534      1.76    cegger 			aprint_error_dev(&sc->sc_dev, "can't allocate outbuf\n");
    535      1.27   thorpej 			panic("eginit");
    536      1.27   thorpej 		}
    537      1.27   thorpej 	}
    538      1.15   mycroft 
    539      1.32   thorpej 	bus_space_write_1(iot, ioh, EG_CONTROL, EG_CTL_CMDE);
    540      1.16   mycroft 
    541      1.16   mycroft 	sc->eg_incount = 0;
    542      1.16   mycroft 	egrecv(sc);
    543      1.16   mycroft 
    544      1.16   mycroft 	/* Interface is now `running', with no output active. */
    545       1.1   deraadt 	ifp->if_flags |= IFF_RUNNING;
    546       1.1   deraadt 	ifp->if_flags &= ~IFF_OACTIVE;
    547       1.1   deraadt 
    548      1.16   mycroft 	/* Attempt to start output, if any. */
    549       1.1   deraadt 	egstart(ifp);
    550       1.1   deraadt }
    551       1.1   deraadt 
    552      1.18   mycroft void
    553  1.77.4.1       jym egrecv(struct eg_softc *sc)
    554       1.1   deraadt {
    555       1.2   mycroft 
    556       1.1   deraadt 	while (sc->eg_incount < EG_INLEN) {
    557       1.1   deraadt 		sc->eg_pcb[0] = EG_CMD_RECVPACKET;
    558       1.1   deraadt 		sc->eg_pcb[1] = 0x08;
    559       1.1   deraadt 		sc->eg_pcb[2] = 0; /* address not used.. we send zero */
    560       1.1   deraadt 		sc->eg_pcb[3] = 0;
    561       1.1   deraadt 		sc->eg_pcb[4] = 0;
    562       1.1   deraadt 		sc->eg_pcb[5] = 0;
    563      1.25   thorpej 		sc->eg_pcb[6] = EG_BUFLEN & 0xff; /* our buffer size */
    564      1.25   thorpej 		sc->eg_pcb[7] = (EG_BUFLEN >> 8) & 0xff;
    565       1.1   deraadt 		sc->eg_pcb[8] = 0; /* timeout, 0 == none */
    566       1.1   deraadt 		sc->eg_pcb[9] = 0;
    567      1.40  drochner 		if (egwritePCB(sc->sc_iot, sc->sc_ioh, sc->eg_pcb) != 0)
    568       1.1   deraadt 			break;
    569      1.16   mycroft 		sc->eg_incount++;
    570       1.1   deraadt 	}
    571       1.1   deraadt }
    572       1.1   deraadt 
    573      1.18   mycroft void
    574  1.77.4.1       jym egstart(struct ifnet *ifp)
    575       1.1   deraadt {
    576      1.49  augustss 	struct eg_softc *sc = ifp->if_softc;
    577      1.32   thorpej 	bus_space_tag_t iot = sc->sc_iot;
    578      1.32   thorpej 	bus_space_handle_t ioh = sc->sc_ioh;
    579       1.1   deraadt 	struct mbuf *m0, *m;
    580      1.72  christos 	char *buffer;
    581       1.1   deraadt 	int len;
    582      1.27   thorpej 	u_int16_t *ptr;
    583       1.1   deraadt 
    584       1.1   deraadt 	/* Don't transmit if interface is busy or not running */
    585      1.15   mycroft 	if ((ifp->if_flags & (IFF_RUNNING|IFF_OACTIVE)) != IFF_RUNNING)
    586      1.14   mycroft 		return;
    587       1.1   deraadt 
    588      1.15   mycroft loop:
    589       1.1   deraadt 	/* Dequeue the next datagram. */
    590      1.52   thorpej 	IFQ_DEQUEUE(&ifp->if_snd, m0);
    591      1.15   mycroft 	if (m0 == 0)
    592      1.14   mycroft 		return;
    593      1.65     perry 
    594      1.15   mycroft 	ifp->if_flags |= IFF_OACTIVE;
    595      1.15   mycroft 
    596      1.15   mycroft 	/* We need to use m->m_pkthdr.len, so require the header */
    597      1.27   thorpej 	if ((m0->m_flags & M_PKTHDR) == 0) {
    598      1.76    cegger 		aprint_error_dev(&sc->sc_dev, "no header mbuf\n");
    599      1.27   thorpej 		panic("egstart");
    600      1.27   thorpej 	}
    601      1.48   thorpej 	len = max(m0->m_pkthdr.len, ETHER_MIN_LEN - ETHER_CRC_LEN);
    602       1.1   deraadt 
    603       1.1   deraadt #if NBPFILTER > 0
    604      1.15   mycroft 	if (ifp->if_bpf)
    605      1.15   mycroft 		bpf_mtap(ifp->if_bpf, m0);
    606       1.1   deraadt #endif
    607       1.1   deraadt 
    608       1.1   deraadt 	sc->eg_pcb[0] = EG_CMD_SENDPACKET;
    609       1.1   deraadt 	sc->eg_pcb[1] = 0x06;
    610       1.1   deraadt 	sc->eg_pcb[2] = 0; /* address not used, we send zero */
    611       1.1   deraadt 	sc->eg_pcb[3] = 0;
    612       1.1   deraadt 	sc->eg_pcb[4] = 0;
    613       1.1   deraadt 	sc->eg_pcb[5] = 0;
    614      1.15   mycroft 	sc->eg_pcb[6] = len; /* length of packet */
    615      1.15   mycroft 	sc->eg_pcb[7] = len >> 8;
    616      1.40  drochner 	if (egwritePCB(iot, ioh, sc->eg_pcb) != 0) {
    617      1.76    cegger 		aprint_error_dev(&sc->sc_dev, "can't send Send Packet command\n");
    618      1.15   mycroft 		ifp->if_oerrors++;
    619      1.15   mycroft 		ifp->if_flags &= ~IFF_OACTIVE;
    620      1.27   thorpej 		m_freem(m0);
    621      1.15   mycroft 		goto loop;
    622      1.15   mycroft 	}
    623      1.15   mycroft 
    624      1.15   mycroft 	buffer = sc->eg_outbuf;
    625      1.15   mycroft 	for (m = m0; m != 0; m = m->m_next) {
    626      1.72  christos 		memcpy(buffer, mtod(m, void *), m->m_len);
    627      1.15   mycroft 		buffer += m->m_len;
    628       1.1   deraadt 	}
    629      1.61    bouyer 	if (len > m0->m_pkthdr.len)
    630      1.61    bouyer 		memset(buffer, 0, len - m0->m_pkthdr.len);
    631      1.15   mycroft 
    632      1.16   mycroft 	/* set direction bit: host -> adapter */
    633      1.32   thorpej 	bus_space_write_1(iot, ioh, EG_CONTROL,
    634      1.65     perry 	    bus_space_read_1(iot, ioh, EG_CONTROL) & ~EG_CTL_DIR);
    635      1.65     perry 
    636      1.27   thorpej 	for (ptr = (u_int16_t *) sc->eg_outbuf; len > 0; len -= 2) {
    637      1.32   thorpej 		bus_space_write_2(iot, ioh, EG_DATA, *ptr++);
    638      1.32   thorpej 		while (!(bus_space_read_1(iot, ioh, EG_STATUS) & EG_STAT_HRDY))
    639      1.15   mycroft 			; /* XXX need timeout here */
    640      1.15   mycroft 	}
    641      1.65     perry 
    642      1.15   mycroft 	m_freem(m0);
    643       1.1   deraadt }
    644       1.1   deraadt 
    645       1.1   deraadt int
    646  1.77.4.1       jym egintr(void *arg)
    647       1.1   deraadt {
    648      1.49  augustss 	struct eg_softc *sc = arg;
    649      1.32   thorpej 	bus_space_tag_t iot = sc->sc_iot;
    650      1.32   thorpej 	bus_space_handle_t ioh = sc->sc_ioh;
    651      1.27   thorpej 	int i, len, serviced;
    652      1.27   thorpej 	u_int16_t *ptr;
    653       1.1   deraadt 
    654      1.27   thorpej 	serviced = 0;
    655      1.27   thorpej 
    656      1.32   thorpej 	while (bus_space_read_1(iot, ioh, EG_STATUS) & EG_STAT_ACRF) {
    657      1.40  drochner 		egreadPCB(iot, ioh, sc->eg_pcb);
    658       1.2   mycroft 		switch (sc->eg_pcb[0]) {
    659       1.1   deraadt 		case EG_RSP_RECVPACKET:
    660       1.7   mycroft 			len = sc->eg_pcb[6] | (sc->eg_pcb[7] << 8);
    661      1.65     perry 
    662      1.16   mycroft 			/* Set direction bit : Adapter -> host */
    663      1.32   thorpej 			bus_space_write_1(iot, ioh, EG_CONTROL,
    664      1.65     perry 			    bus_space_read_1(iot, ioh, EG_CONTROL) | EG_CTL_DIR);
    665      1.16   mycroft 
    666      1.27   thorpej 			for (ptr = (u_int16_t *) sc->eg_inbuf;
    667      1.27   thorpej 			    len > 0; len -= 2) {
    668      1.32   thorpej 				while (!(bus_space_read_1(iot, ioh, EG_STATUS) &
    669      1.27   thorpej 				    EG_STAT_HRDY))
    670       1.1   deraadt 					;
    671      1.32   thorpej 				*ptr++ = bus_space_read_2(iot, ioh, EG_DATA);
    672       1.1   deraadt 			}
    673      1.16   mycroft 
    674       1.7   mycroft 			len = sc->eg_pcb[8] | (sc->eg_pcb[9] << 8);
    675       1.1   deraadt 			egread(sc, sc->eg_inbuf, len);
    676      1.16   mycroft 
    677       1.1   deraadt 			sc->eg_incount--;
    678      1.16   mycroft 			egrecv(sc);
    679      1.27   thorpej 			serviced = 1;
    680       1.1   deraadt 			break;
    681       1.1   deraadt 
    682       1.1   deraadt 		case EG_RSP_SENDPACKET:
    683       1.1   deraadt 			if (sc->eg_pcb[6] || sc->eg_pcb[7]) {
    684      1.29  christos 				DPRINTF(("%s: packet dropped\n",
    685      1.76    cegger 				    device_xname(&sc->sc_dev)));
    686      1.33        is 				sc->sc_ethercom.ec_if.if_oerrors++;
    687       1.2   mycroft 			} else
    688      1.33        is 				sc->sc_ethercom.ec_if.if_opackets++;
    689      1.33        is 			sc->sc_ethercom.ec_if.if_collisions +=
    690      1.27   thorpej 			    sc->eg_pcb[8] & 0xf;
    691      1.33        is 			sc->sc_ethercom.ec_if.if_flags &= ~IFF_OACTIVE;
    692      1.33        is 			egstart(&sc->sc_ethercom.ec_if);
    693      1.27   thorpej 			serviced = 1;
    694       1.1   deraadt 			break;
    695       1.1   deraadt 
    696      1.27   thorpej 		/* XXX byte-order and type-size bugs here... */
    697       1.1   deraadt 		case EG_RSP_GETSTATS:
    698      1.29  christos 			DPRINTF(("%s: Card Statistics\n",
    699      1.76    cegger 			    device_xname(&sc->sc_dev)));
    700      1.54   thorpej 			memcpy(&i, &sc->eg_pcb[2], sizeof(i));
    701      1.29  christos 			DPRINTF(("Receive Packets %d\n", i));
    702      1.54   thorpej 			memcpy(&i, &sc->eg_pcb[6], sizeof(i));
    703      1.29  christos 			DPRINTF(("Transmit Packets %d\n", i));
    704      1.29  christos 			DPRINTF(("CRC errors %d\n",
    705      1.27   thorpej 			    *(short *) &sc->eg_pcb[10]));
    706      1.29  christos 			DPRINTF(("alignment errors %d\n",
    707      1.27   thorpej 			    *(short *) &sc->eg_pcb[12]));
    708      1.29  christos 			DPRINTF(("no resources errors %d\n",
    709      1.27   thorpej 			    *(short *) &sc->eg_pcb[14]));
    710      1.29  christos 			DPRINTF(("overrun errors %d\n",
    711      1.27   thorpej 			    *(short *) &sc->eg_pcb[16]));
    712      1.27   thorpej 			serviced = 1;
    713       1.1   deraadt 			break;
    714      1.65     perry 
    715       1.1   deraadt 		default:
    716      1.30  christos 			printf("%s: egintr: Unknown response %x??\n",
    717      1.76    cegger 			    device_xname(&sc->sc_dev), sc->eg_pcb[0]);
    718      1.40  drochner 			egprintpcb(sc->eg_pcb);
    719       1.1   deraadt 			break;
    720       1.1   deraadt 		}
    721      1.37  explorer 
    722      1.37  explorer #if NRND > 0
    723      1.37  explorer 		rnd_add_uint32(&sc->rnd_source, sc->eg_pcb[0]);
    724      1.37  explorer #endif
    725       1.1   deraadt 	}
    726       1.1   deraadt 
    727      1.27   thorpej 	return serviced;
    728       1.1   deraadt }
    729       1.1   deraadt 
    730       1.1   deraadt /*
    731       1.1   deraadt  * Pass a packet up to the higher levels.
    732       1.1   deraadt  */
    733      1.18   mycroft void
    734  1.77.4.1       jym egread(struct eg_softc *sc, void *buf, int len)
    735       1.1   deraadt {
    736      1.33        is 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    737       1.1   deraadt 	struct mbuf *m;
    738      1.65     perry 
    739       1.1   deraadt 	if (len <= sizeof(struct ether_header) ||
    740       1.1   deraadt 	    len > ETHER_MAX_LEN) {
    741      1.76    cegger 		aprint_error_dev(&sc->sc_dev, "invalid packet size %d; dropping\n", len);
    742      1.18   mycroft 		ifp->if_ierrors++;
    743       1.1   deraadt 		return;
    744       1.1   deraadt 	}
    745       1.1   deraadt 
    746       1.2   mycroft 	/* Pull packet off interface. */
    747      1.18   mycroft 	m = egget(sc, buf, len);
    748       1.1   deraadt 	if (m == 0) {
    749      1.18   mycroft 		ifp->if_ierrors++;
    750       1.1   deraadt 		return;
    751       1.1   deraadt 	}
    752       1.1   deraadt 
    753      1.18   mycroft 	ifp->if_ipackets++;
    754      1.18   mycroft 
    755       1.1   deraadt #if NBPFILTER > 0
    756       1.1   deraadt 	/*
    757       1.1   deraadt 	 * Check if there's a BPF listener on this interface.
    758       1.2   mycroft 	 * If so, hand off the raw packet to BPF.
    759       1.1   deraadt 	 */
    760      1.50   thorpej 	if (ifp->if_bpf)
    761       1.2   mycroft 		bpf_mtap(ifp->if_bpf, m);
    762       1.1   deraadt #endif
    763       1.1   deraadt 
    764      1.47   thorpej 	(*ifp->if_input)(ifp, m);
    765       1.1   deraadt }
    766       1.1   deraadt 
    767       1.1   deraadt /*
    768       1.1   deraadt  * convert buf into mbufs
    769       1.1   deraadt  */
    770      1.18   mycroft struct mbuf *
    771  1.77.4.1       jym egget(struct eg_softc *sc, void *buf, int totlen)
    772       1.2   mycroft {
    773      1.33        is 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    774      1.44   mycroft 	struct mbuf *m, *m0, *newm;
    775       1.2   mycroft 	int len;
    776       1.1   deraadt 
    777      1.44   mycroft 	MGETHDR(m0, M_DONTWAIT, MT_DATA);
    778      1.44   mycroft 	if (m0 == 0)
    779      1.44   mycroft 		return (0);
    780      1.44   mycroft 	m0->m_pkthdr.rcvif = ifp;
    781      1.44   mycroft 	m0->m_pkthdr.len = totlen;
    782       1.2   mycroft 	len = MHLEN;
    783      1.44   mycroft 	m = m0;
    784       1.2   mycroft 
    785       1.2   mycroft 	while (totlen > 0) {
    786       1.2   mycroft 		if (totlen >= MINCLSIZE) {
    787       1.2   mycroft 			MCLGET(m, M_DONTWAIT);
    788      1.44   mycroft 			if ((m->m_flags & M_EXT) == 0)
    789      1.44   mycroft 				goto bad;
    790      1.34   mycroft 			len = MCLBYTES;
    791       1.2   mycroft 		}
    792      1.44   mycroft 
    793       1.2   mycroft 		m->m_len = len = min(totlen, len);
    794      1.72  christos 		memcpy(mtod(m, void *), buf, len);
    795      1.72  christos 		buf = (char *)buf + len;
    796      1.44   mycroft 
    797       1.2   mycroft 		totlen -= len;
    798      1.44   mycroft 		if (totlen > 0) {
    799      1.44   mycroft 			MGET(newm, M_DONTWAIT, MT_DATA);
    800      1.44   mycroft 			if (newm == 0)
    801      1.44   mycroft 				goto bad;
    802      1.44   mycroft 			len = MLEN;
    803      1.44   mycroft 			m = m->m_next = newm;
    804      1.44   mycroft 		}
    805       1.2   mycroft 	}
    806       1.1   deraadt 
    807      1.44   mycroft 	return (m0);
    808      1.44   mycroft 
    809      1.44   mycroft bad:
    810      1.44   mycroft 	m_freem(m0);
    811      1.44   mycroft 	return (0);
    812       1.1   deraadt }
    813       1.1   deraadt 
    814      1.18   mycroft int
    815      1.77    dyoung egioctl(struct ifnet *ifp, unsigned long cmd, void *data)
    816       1.1   deraadt {
    817      1.25   thorpej 	struct eg_softc *sc = ifp->if_softc;
    818      1.18   mycroft 	struct ifaddr *ifa = (struct ifaddr *)data;
    819       1.2   mycroft 	int s, error = 0;
    820       1.2   mycroft 
    821      1.21   mycroft 	s = splnet();
    822       1.2   mycroft 
    823      1.18   mycroft 	switch (cmd) {
    824       1.1   deraadt 
    825      1.77    dyoung 	case SIOCINITIFADDR:
    826       1.1   deraadt 		ifp->if_flags |= IFF_UP;
    827       1.2   mycroft 
    828      1.77    dyoung 		eginit(sc);
    829       1.1   deraadt 		switch (ifa->ifa_addr->sa_family) {
    830       1.1   deraadt #ifdef INET
    831       1.1   deraadt 		case AF_INET:
    832      1.33        is 			arp_ifinit(ifp, ifa);
    833       1.1   deraadt 			break;
    834       1.1   deraadt #endif
    835       1.1   deraadt 		default:
    836       1.1   deraadt 			break;
    837       1.1   deraadt 		}
    838       1.1   deraadt 		break;
    839       1.2   mycroft 
    840       1.1   deraadt 	case SIOCSIFFLAGS:
    841      1.77    dyoung 		if ((error = ifioctl_common(ifp, cmd, data)) != 0)
    842      1.77    dyoung 			break;
    843      1.77    dyoung 		/* XXX re-use ether_ioctl() */
    844      1.77    dyoung 		switch (ifp->if_flags & (IFF_UP|IFF_RUNNING)) {
    845      1.77    dyoung 		case IFF_RUNNING:
    846       1.2   mycroft 			/*
    847       1.2   mycroft 			 * If interface is marked down and it is running, then
    848       1.2   mycroft 			 * stop it.
    849       1.2   mycroft 			 */
    850       1.2   mycroft 			egstop(sc);
    851       1.1   deraadt 			ifp->if_flags &= ~IFF_RUNNING;
    852      1.77    dyoung 			break;
    853      1.77    dyoung 		case IFF_UP:
    854       1.2   mycroft 			/*
    855       1.2   mycroft 			 * If interface is marked up and it is stopped, then
    856       1.2   mycroft 			 * start it.
    857       1.2   mycroft 			 */
    858       1.1   deraadt 			eginit(sc);
    859      1.77    dyoung 			break;
    860      1.77    dyoung 		default:
    861       1.3   deraadt 			sc->eg_pcb[0] = EG_CMD_GETSTATS;
    862       1.3   deraadt 			sc->eg_pcb[1] = 0;
    863      1.69  christos 			if (egwritePCB(sc->sc_iot, sc->sc_ioh, sc->eg_pcb) != 0) {
    864      1.29  christos 				DPRINTF(("write error\n"));
    865      1.69  christos 			}
    866       1.1   deraadt 			/*
    867       1.1   deraadt 			 * XXX deal with flags changes:
    868       1.1   deraadt 			 * IFF_MULTICAST, IFF_PROMISC,
    869       1.1   deraadt 			 * IFF_LINK0, IFF_LINK1,
    870       1.1   deraadt 			 */
    871      1.77    dyoung 			break;
    872       1.1   deraadt 		}
    873       1.1   deraadt 		break;
    874       1.2   mycroft 
    875       1.1   deraadt 	default:
    876      1.77    dyoung 		error = ether_ioctl(ifp, cmd, data);
    877      1.18   mycroft 		break;
    878       1.1   deraadt 	}
    879       1.2   mycroft 
    880       1.2   mycroft 	splx(s);
    881       1.2   mycroft 	return error;
    882       1.1   deraadt }
    883       1.1   deraadt 
    884      1.18   mycroft void
    885  1.77.4.1       jym egreset(struct eg_softc *sc)
    886       1.1   deraadt {
    887       1.2   mycroft 	int s;
    888       1.1   deraadt 
    889      1.76    cegger 	DPRINTF(("%s: egreset()\n", device_xname(&sc->sc_dev)));
    890      1.21   mycroft 	s = splnet();
    891       1.2   mycroft 	egstop(sc);
    892       1.2   mycroft 	eginit(sc);
    893       1.2   mycroft 	splx(s);
    894       1.1   deraadt }
    895       1.1   deraadt 
    896      1.18   mycroft void
    897  1.77.4.1       jym egwatchdog(struct ifnet *ifp)
    898       1.1   deraadt {
    899      1.25   thorpej 	struct eg_softc *sc = ifp->if_softc;
    900       1.1   deraadt 
    901      1.76    cegger 	log(LOG_ERR, "%s: device timeout\n", device_xname(&sc->sc_dev));
    902      1.33        is 	sc->sc_ethercom.ec_if.if_oerrors++;
    903       1.1   deraadt 
    904       1.1   deraadt 	egreset(sc);
    905       1.1   deraadt }
    906       1.1   deraadt 
    907      1.18   mycroft void
    908  1.77.4.1       jym egstop(struct eg_softc *sc)
    909       1.1   deraadt {
    910      1.65     perry 
    911      1.32   thorpej 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, EG_CONTROL, 0);
    912       1.1   deraadt }
    913