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