Home | History | Annotate | Line # | Download | only in qbus
if_de.c revision 1.30.2.1
      1  1.30.2.1  pgoyette /*	$NetBSD: if_de.c,v 1.30.2.1 2017/01/07 08:56:40 pgoyette Exp $	*/
      2       1.5     ragge 
      3       1.1     ragge /*
      4       1.1     ragge  * Copyright (c) 1982, 1986, 1989 Regents of the University of California.
      5      1.15       agc  * All rights reserved.
      6      1.15       agc  *
      7      1.15       agc  *
      8      1.15       agc  * Redistribution and use in source and binary forms, with or without
      9      1.15       agc  * modification, are permitted provided that the following conditions
     10      1.15       agc  * are met:
     11      1.15       agc  * 1. Redistributions of source code must retain the above copyright
     12      1.15       agc  *    notice, this list of conditions and the following disclaimer.
     13      1.15       agc  * 2. Redistributions in binary form must reproduce the above copyright
     14      1.15       agc  *    notice, this list of conditions and the following disclaimer in the
     15      1.15       agc  *    documentation and/or other materials provided with the distribution.
     16      1.15       agc  * 3. Neither the name of the University nor the names of its contributors
     17      1.15       agc  *    may be used to endorse or promote products derived from this software
     18      1.15       agc  *    without specific prior written permission.
     19      1.15       agc  *
     20      1.15       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     21      1.15       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     22      1.15       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     23      1.15       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     24      1.15       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25      1.15       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26      1.15       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27      1.15       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28      1.15       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29      1.15       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30      1.15       agc  * SUCH DAMAGE.
     31      1.15       agc  *
     32      1.15       agc  *	@(#)if_de.c	7.12 (Berkeley) 12/16/90
     33      1.15       agc  */
     34      1.15       agc 
     35      1.15       agc /*
     36       1.1     ragge  * Copyright (c) 2000 Ludd, University of Lule}, Sweden.
     37       1.1     ragge  * All rights reserved.
     38       1.1     ragge  *
     39       1.1     ragge  *
     40       1.1     ragge  * Redistribution and use in source and binary forms, with or without
     41       1.1     ragge  * modification, are permitted provided that the following conditions
     42       1.1     ragge  * are met:
     43       1.1     ragge  * 1. Redistributions of source code must retain the above copyright
     44       1.1     ragge  *    notice, this list of conditions and the following disclaimer.
     45       1.1     ragge  * 2. Redistributions in binary form must reproduce the above copyright
     46       1.1     ragge  *    notice, this list of conditions and the following disclaimer in the
     47       1.1     ragge  *    documentation and/or other materials provided with the distribution.
     48       1.1     ragge  * 3. All advertising materials mentioning features or use of this software
     49       1.1     ragge  *    must display the following acknowledgement:
     50       1.1     ragge  *	This product includes software developed by the University of
     51       1.1     ragge  *	California, Berkeley and its contributors.
     52       1.1     ragge  * 4. Neither the name of the University nor the names of its contributors
     53       1.1     ragge  *    may be used to endorse or promote products derived from this software
     54       1.1     ragge  *    without specific prior written permission.
     55       1.1     ragge  *
     56       1.1     ragge  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     57       1.1     ragge  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     58       1.1     ragge  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     59       1.1     ragge  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     60       1.1     ragge  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     61       1.1     ragge  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     62       1.1     ragge  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     63       1.1     ragge  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     64       1.1     ragge  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     65       1.1     ragge  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     66       1.1     ragge  * SUCH DAMAGE.
     67       1.1     ragge  *
     68       1.1     ragge  *	@(#)if_de.c	7.12 (Berkeley) 12/16/90
     69       1.1     ragge  */
     70       1.1     ragge 
     71       1.1     ragge /*
     72       1.1     ragge  * DEC DEUNA interface
     73       1.1     ragge  *
     74       1.1     ragge  *	Lou Salkind
     75       1.1     ragge  *	New York University
     76       1.1     ragge  *
     77       1.2     ragge  *	Rewritten by Ragge 30 April 2000 to match new world.
     78       1.1     ragge  *
     79       1.1     ragge  * TODO:
     80       1.1     ragge  *	timeout routine (get statistics)
     81       1.1     ragge  */
     82      1.11     lukem 
     83      1.11     lukem #include <sys/cdefs.h>
     84  1.30.2.1  pgoyette __KERNEL_RCSID(0, "$NetBSD: if_de.c,v 1.30.2.1 2017/01/07 08:56:40 pgoyette Exp $");
     85       1.1     ragge 
     86       1.1     ragge #include "opt_inet.h"
     87       1.1     ragge 
     88       1.1     ragge #include <sys/param.h>
     89       1.1     ragge #include <sys/systm.h>
     90       1.1     ragge #include <sys/mbuf.h>
     91       1.1     ragge #include <sys/buf.h>
     92       1.1     ragge #include <sys/protosw.h>
     93       1.1     ragge #include <sys/socket.h>
     94       1.1     ragge #include <sys/ioctl.h>
     95       1.1     ragge #include <sys/errno.h>
     96       1.1     ragge #include <sys/syslog.h>
     97       1.1     ragge #include <sys/device.h>
     98       1.1     ragge 
     99       1.1     ragge #include <net/if.h>
    100       1.1     ragge #include <net/if_ether.h>
    101       1.1     ragge #include <net/if_dl.h>
    102       1.1     ragge 
    103       1.1     ragge #ifdef INET
    104       1.1     ragge #include <netinet/in.h>
    105       1.1     ragge #include <netinet/if_inarp.h>
    106       1.1     ragge #endif
    107       1.1     ragge 
    108       1.2     ragge #include <net/bpf.h>
    109       1.2     ragge #include <net/bpfdesc.h>
    110       1.1     ragge 
    111      1.22        ad #include <sys/bus.h>
    112       1.1     ragge 
    113       1.1     ragge #include <dev/qbus/ubavar.h>
    114       1.1     ragge #include <dev/qbus/if_dereg.h>
    115      1.10     ragge #include <dev/qbus/if_uba.h>
    116       1.1     ragge 
    117       1.1     ragge #include "ioconf.h"
    118       1.1     ragge 
    119       1.1     ragge /*
    120       1.1     ragge  * Be careful with transmit/receive buffers, each entry steals 4 map
    121       1.1     ragge  * registers, and there is only 496 on one unibus...
    122       1.1     ragge  */
    123      1.10     ragge #define NRCV	7	/* number of receive buffers (must be > 1) */
    124      1.10     ragge #define NXMT	3	/* number of transmit buffers */
    125       1.1     ragge 
    126       1.1     ragge /*
    127       1.1     ragge  * Structure containing the elements that must be in DMA-safe memory.
    128       1.1     ragge  */
    129       1.1     ragge struct	de_cdata {
    130       1.1     ragge 	/* the following structures are always mapped in */
    131       1.1     ragge 	struct	de_pcbb dc_pcbb;	/* port control block */
    132       1.1     ragge 	struct	de_ring dc_xrent[NXMT]; /* transmit ring entrys */
    133       1.1     ragge 	struct	de_ring dc_rrent[NRCV]; /* receive ring entrys */
    134       1.1     ragge 	struct	de_udbbuf dc_udbbuf;	/* UNIBUS data buffer */
    135       1.1     ragge 	/* end mapped area */
    136       1.1     ragge };
    137       1.1     ragge 
    138       1.1     ragge /*
    139       1.1     ragge  * Ethernet software status per interface.
    140       1.1     ragge  *
    141       1.1     ragge  * Each interface is referenced by a network interface structure,
    142       1.1     ragge  * ds_if, which the routing code uses to locate the interface.
    143       1.1     ragge  * This structure contains the output queue for the interface, its address, ...
    144       1.1     ragge  * We also have, for each interface, a UBA interface structure, which
    145       1.1     ragge  * contains information about the UNIBUS resources held by the interface:
    146       1.1     ragge  * map registers, buffered data paths, etc.  Information is cached in this
    147       1.1     ragge  * structure for use by the if_uba.c routines in running the interface
    148       1.1     ragge  * efficiently.
    149       1.1     ragge  */
    150       1.1     ragge struct	de_softc {
    151      1.23      matt 	device_t sc_dev;		/* Configuration common part */
    152      1.23      matt 	struct uba_softc *sc_uh;	/* our parent */
    153      1.23      matt 	struct evcnt sc_intrcnt;	/* Interrupt counting */
    154      1.23      matt 	struct ethercom sc_ec;		/* Ethernet common part */
    155       1.1     ragge #define sc_if	sc_ec.ec_if		/* network-visible interface */
    156       1.1     ragge 	bus_space_tag_t sc_iot;
    157       1.1     ragge 	bus_addr_t sc_ioh;
    158       1.1     ragge 	bus_dma_tag_t sc_dmat;
    159      1.23      matt 	int sc_flags;
    160      1.10     ragge #define	DSF_MAPPED	1
    161       1.9     ragge 	struct ubinfo sc_ui;
    162       1.1     ragge 	struct de_cdata *sc_dedata;	/* Control structure */
    163       1.1     ragge 	struct de_cdata *sc_pdedata;	/* Bus-mapped control structure */
    164      1.23      matt 	struct ifubinfo sc_ifuba;	/* UNIBUS resources */
    165      1.23      matt 	struct ifrw sc_ifr[NRCV];	/* UNIBUS receive buffer maps */
    166      1.23      matt 	struct ifxmt sc_ifw[NXMT];	/* UNIBUS receive buffer maps */
    167      1.23      matt 
    168      1.23      matt 	int sc_xindex;			/* UNA index into transmit chain */
    169      1.23      matt 	int sc_rindex;			/* UNA index into receive chain */
    170      1.23      matt 	int sc_xfree;			/* index for next transmit buffer */
    171      1.23      matt 	int sc_nxmit;			/* # of transmits in progress */
    172       1.2     ragge 	void *sc_sh;			/* shutdownhook cookie */
    173       1.1     ragge };
    174       1.1     ragge 
    175      1.23      matt static	int dematch(device_t, cfdata_t, void *);
    176      1.23      matt static	void deattach(device_t, device_t, void *);
    177      1.17     ragge static	void dewait(struct de_softc *, const char *);
    178      1.10     ragge static	int deinit(struct ifnet *);
    179      1.21  christos static	int deioctl(struct ifnet *, u_long, void *);
    180      1.27    cegger static	void dereset(device_t);
    181      1.10     ragge static	void destop(struct ifnet *, int);
    182       1.1     ragge static	void destart(struct ifnet *);
    183       1.1     ragge static	void derecv(struct de_softc *);
    184       1.1     ragge static	void deintr(void *);
    185       1.2     ragge static	void deshutdown(void *);
    186       1.1     ragge 
    187      1.23      matt CFATTACH_DECL_NEW(de, sizeof(struct de_softc),
    188      1.14   thorpej     dematch, deattach, NULL, NULL);
    189       1.1     ragge 
    190       1.1     ragge #define DE_WCSR(csr, val) \
    191       1.1     ragge 	bus_space_write_2(sc->sc_iot, sc->sc_ioh, csr, val)
    192       1.1     ragge #define DE_WLOW(val) \
    193       1.1     ragge 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, DE_PCSR0, val)
    194       1.1     ragge #define DE_WHIGH(val) \
    195       1.1     ragge 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, DE_PCSR0 + 1, val)
    196       1.1     ragge #define DE_RCSR(csr) \
    197       1.1     ragge 	bus_space_read_2(sc->sc_iot, sc->sc_ioh, csr)
    198       1.1     ragge 
    199       1.1     ragge #define LOWORD(x)	((int)(x) & 0xffff)
    200       1.1     ragge #define HIWORD(x)	(((int)(x) >> 16) & 0x3)
    201       1.1     ragge /*
    202       1.1     ragge  * Interface exists: make available by filling in network interface
    203       1.1     ragge  * record.  System will initialize the interface when it is ready
    204       1.1     ragge  * to accept packets.  We get the ethernet address here.
    205       1.1     ragge  */
    206       1.1     ragge void
    207      1.23      matt deattach(device_t parent, device_t self, void *aux)
    208       1.1     ragge {
    209       1.1     ragge 	struct uba_attach_args *ua = aux;
    210      1.20   thorpej 	struct de_softc *sc = device_private(self);
    211       1.1     ragge 	struct ifnet *ifp = &sc->sc_if;
    212       1.1     ragge 	u_int8_t myaddr[ETHER_ADDR_LEN];
    213      1.10     ragge 	int csr1, error;
    214      1.17     ragge 	const char *c;
    215       1.1     ragge 
    216      1.23      matt 	sc->sc_dev = self;
    217      1.23      matt 	sc->sc_uh = device_private(parent);
    218       1.1     ragge 	sc->sc_iot = ua->ua_iot;
    219       1.1     ragge 	sc->sc_ioh = ua->ua_ioh;
    220       1.1     ragge 	sc->sc_dmat = ua->ua_dmat;
    221       1.1     ragge 
    222       1.1     ragge 	/*
    223       1.1     ragge 	 * What kind of a board is this?
    224       1.1     ragge 	 * The error bits 4-6 in pcsr1 are a device id as long as
    225       1.1     ragge 	 * the high byte is zero.
    226       1.1     ragge 	 */
    227       1.1     ragge 	csr1 = DE_RCSR(DE_PCSR1);
    228       1.1     ragge 	if (csr1 & 0xff60)
    229       1.1     ragge 		c = "broken";
    230       1.1     ragge 	else if (csr1 & 0x10)
    231       1.1     ragge 		c = "delua";
    232       1.1     ragge 	else
    233       1.1     ragge 		c = "deuna";
    234       1.1     ragge 
    235       1.1     ragge 	/*
    236       1.1     ragge 	 * Reset the board and temporarily map
    237       1.1     ragge 	 * the pcbb buffer onto the Unibus.
    238       1.1     ragge 	 */
    239       1.1     ragge 	DE_WCSR(DE_PCSR0, 0);		/* reset INTE */
    240       1.1     ragge 	DELAY(100);
    241       1.1     ragge 	DE_WCSR(DE_PCSR0, PCSR0_RSET);
    242       1.2     ragge 	dewait(sc, "reset");
    243       1.1     ragge 
    244       1.9     ragge 	sc->sc_ui.ui_size = sizeof(struct de_cdata);
    245      1.23      matt 	if ((error = ubmemalloc(sc->sc_uh, &sc->sc_ui, 0)))
    246      1.10     ragge 		return printf(": failed ubmemalloc(), error = %d\n", error);
    247       1.9     ragge 	sc->sc_dedata = (struct de_cdata *)sc->sc_ui.ui_vaddr;
    248       1.2     ragge 
    249       1.1     ragge 	/*
    250       1.1     ragge 	 * Tell the DEUNA about our PCB
    251       1.1     ragge 	 */
    252      1.10     ragge 	DE_WCSR(DE_PCSR2, LOWORD(sc->sc_ui.ui_baddr));
    253      1.10     ragge 	DE_WCSR(DE_PCSR3, HIWORD(sc->sc_ui.ui_baddr));
    254       1.1     ragge 	DE_WLOW(CMD_GETPCBB);
    255       1.2     ragge 	dewait(sc, "pcbb");
    256       1.1     ragge 
    257       1.1     ragge 	sc->sc_dedata->dc_pcbb.pcbb0 = FC_RDPHYAD;
    258       1.1     ragge 	DE_WLOW(CMD_GETCMD);
    259       1.2     ragge 	dewait(sc, "read addr ");
    260       1.1     ragge 
    261      1.26   tsutsui 	memcpy(myaddr, (void *)&sc->sc_dedata->dc_pcbb.pcbb2, sizeof (myaddr));
    262      1.23      matt 	printf(": %s, hardware address %s\n", c, ether_sprintf(myaddr));
    263       1.1     ragge 
    264      1.16    simonb 	uba_intr_establish(ua->ua_icookie, ua->ua_cvec, deintr, sc,
    265       1.5     ragge 	    &sc->sc_intrcnt);
    266      1.23      matt 	uba_reset_establish(dereset, sc->sc_dev);
    267       1.4      matt 	evcnt_attach_dynamic(&sc->sc_intrcnt, EVCNT_TYPE_INTR, ua->ua_evcnt,
    268      1.23      matt 	    device_xname(sc->sc_dev), "intr");
    269       1.1     ragge 
    270      1.23      matt 	strcpy(ifp->if_xname, device_xname(sc->sc_dev));
    271       1.1     ragge 	ifp->if_softc = sc;
    272       1.5     ragge 	ifp->if_flags = IFF_BROADCAST|IFF_SIMPLEX|IFF_MULTICAST|IFF_ALLMULTI;
    273       1.1     ragge 	ifp->if_ioctl = deioctl;
    274       1.1     ragge 	ifp->if_start = destart;
    275      1.10     ragge 	ifp->if_init = deinit;
    276      1.10     ragge 	ifp->if_stop = destop;
    277       1.8   thorpej 	IFQ_SET_READY(&ifp->if_snd);
    278       1.8   thorpej 
    279       1.1     ragge 	if_attach(ifp);
    280       1.1     ragge 	ether_ifattach(ifp, myaddr);
    281      1.23      matt 	ubmemfree(sc->sc_uh, &sc->sc_ui);
    282       1.7   thorpej 
    283       1.2     ragge 	sc->sc_sh = shutdownhook_establish(deshutdown, sc);
    284      1.10     ragge }
    285       1.1     ragge 
    286      1.10     ragge void
    287      1.10     ragge destop(struct ifnet *ifp, int a)
    288      1.10     ragge {
    289      1.10     ragge 	struct de_softc *sc = ifp->if_softc;
    290      1.10     ragge 
    291      1.10     ragge 	DE_WLOW(0);
    292      1.10     ragge 	DELAY(5000);
    293      1.10     ragge 	DE_WLOW(PCSR0_RSET);
    294       1.1     ragge }
    295       1.1     ragge 
    296      1.10     ragge 
    297       1.1     ragge /*
    298       1.1     ragge  * Reset of interface after UNIBUS reset.
    299       1.1     ragge  */
    300       1.1     ragge void
    301      1.23      matt dereset(device_t dev)
    302       1.1     ragge {
    303       1.1     ragge 	struct de_softc *sc = (void *)dev;
    304       1.1     ragge 
    305       1.1     ragge 	sc->sc_if.if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
    306      1.10     ragge 	sc->sc_flags &= ~DSF_MAPPED;
    307       1.5     ragge 	sc->sc_pdedata = NULL;	/* All mappings lost */
    308       1.1     ragge 	DE_WCSR(DE_PCSR0, PCSR0_RSET);
    309       1.2     ragge 	dewait(sc, "reset");
    310      1.10     ragge 	deinit(&sc->sc_if);
    311       1.1     ragge }
    312       1.1     ragge 
    313       1.1     ragge /*
    314       1.1     ragge  * Initialization of interface; clear recorded pending
    315       1.1     ragge  * operations, and reinitialize UNIBUS usage.
    316       1.1     ragge  */
    317      1.10     ragge int
    318      1.10     ragge deinit(struct ifnet *ifp)
    319       1.1     ragge {
    320      1.10     ragge 	struct de_softc *sc = ifp->if_softc;
    321       1.2     ragge 	struct de_cdata *dc, *pdc;
    322      1.10     ragge 	struct ifrw *ifrw;
    323      1.10     ragge 	struct ifxmt *ifxp;
    324      1.10     ragge 	struct de_ring *rp;
    325      1.10     ragge 	int s, error;
    326      1.10     ragge 
    327      1.10     ragge 	if (ifp->if_flags & IFF_RUNNING)
    328      1.10     ragge 		return 0;
    329      1.10     ragge 	if ((sc->sc_flags & DSF_MAPPED) == 0) {
    330      1.23      matt 		if (if_ubaminit(&sc->sc_ifuba, sc->sc_uh, MCLBYTES,
    331      1.23      matt 				sc->sc_ifr, NRCV, sc->sc_ifw, NXMT)) {
    332      1.23      matt 			aprint_error_dev(sc->sc_dev, " can't initialize\n");
    333      1.10     ragge 			ifp->if_flags &= ~IFF_UP;
    334      1.10     ragge 			return 0;
    335      1.10     ragge 		}
    336      1.10     ragge 		sc->sc_ui.ui_size = sizeof(struct de_cdata);
    337      1.23      matt 		if ((error = ubmemalloc(sc->sc_uh, &sc->sc_ui, 0))) {
    338      1.23      matt 			aprint_error(": unable to ubmemalloc(), error = %d\n",
    339      1.23      matt 			    error);
    340      1.10     ragge 			return 0;
    341      1.10     ragge 		}
    342      1.10     ragge 		sc->sc_pdedata = (struct de_cdata *)sc->sc_ui.ui_baddr;
    343      1.10     ragge 		sc->sc_dedata = (struct de_cdata *)sc->sc_ui.ui_vaddr;
    344      1.10     ragge 		sc->sc_flags |= DSF_MAPPED;
    345      1.10     ragge 	}
    346       1.1     ragge 
    347       1.1     ragge 	/*
    348       1.1     ragge 	 * Tell the DEUNA about our PCB
    349       1.1     ragge 	 */
    350       1.1     ragge 	DE_WCSR(DE_PCSR2, LOWORD(sc->sc_pdedata));
    351       1.1     ragge 	DE_WCSR(DE_PCSR3, HIWORD(sc->sc_pdedata));
    352       1.1     ragge 	DE_WLOW(0);		/* reset INTE */
    353       1.1     ragge 	DELAY(500);
    354       1.1     ragge 	DE_WLOW(CMD_GETPCBB);
    355       1.2     ragge 	dewait(sc, "pcbb");
    356       1.1     ragge 
    357       1.1     ragge 	dc = sc->sc_dedata;
    358       1.2     ragge 	pdc = sc->sc_pdedata;
    359       1.1     ragge 	/* set the transmit and receive ring header addresses */
    360       1.1     ragge 	dc->dc_pcbb.pcbb0 = FC_WTRING;
    361       1.2     ragge 	dc->dc_pcbb.pcbb2 = LOWORD(&pdc->dc_udbbuf);
    362       1.2     ragge 	dc->dc_pcbb.pcbb4 = HIWORD(&pdc->dc_udbbuf);
    363       1.1     ragge 
    364       1.2     ragge 	dc->dc_udbbuf.b_tdrbl = LOWORD(&pdc->dc_xrent[0]);
    365       1.2     ragge 	dc->dc_udbbuf.b_tdrbh = HIWORD(&pdc->dc_xrent[0]);
    366       1.1     ragge 	dc->dc_udbbuf.b_telen = sizeof (struct de_ring) / sizeof(u_int16_t);
    367       1.1     ragge 	dc->dc_udbbuf.b_trlen = NXMT;
    368       1.2     ragge 	dc->dc_udbbuf.b_rdrbl = LOWORD(&pdc->dc_rrent[0]);
    369       1.2     ragge 	dc->dc_udbbuf.b_rdrbh = HIWORD(&pdc->dc_rrent[0]);
    370       1.1     ragge 	dc->dc_udbbuf.b_relen = sizeof (struct de_ring) / sizeof(u_int16_t);
    371       1.1     ragge 	dc->dc_udbbuf.b_rrlen = NRCV;
    372       1.1     ragge 
    373       1.1     ragge 	DE_WLOW(CMD_GETCMD);
    374       1.2     ragge 	dewait(sc, "wtring");
    375       1.1     ragge 
    376       1.5     ragge 	sc->sc_dedata->dc_pcbb.pcbb0 = FC_WTMODE;
    377       1.5     ragge 	sc->sc_dedata->dc_pcbb.pcbb2 = MOD_TPAD|MOD_HDX|MOD_DRDC|MOD_ENAL;
    378       1.5     ragge 	DE_WLOW(CMD_GETCMD);
    379       1.5     ragge 	dewait(sc, "wtmode");
    380       1.1     ragge 
    381       1.5     ragge 	/* set up the receive and transmit ring entries */
    382      1.10     ragge 	ifxp = &sc->sc_ifw[0];
    383      1.10     ragge 	for (rp = &dc->dc_xrent[0]; rp < &dc->dc_xrent[NXMT]; rp++) {
    384      1.10     ragge 		rp->r_segbl = LOWORD(ifxp->ifw_info);
    385      1.10     ragge 		rp->r_segbh = HIWORD(ifxp->ifw_info);
    386      1.10     ragge 		rp->r_flags = 0;
    387      1.10     ragge 		ifxp++;
    388      1.10     ragge 	}
    389      1.10     ragge 	ifrw = &sc->sc_ifr[0];
    390      1.10     ragge 	for (rp = &dc->dc_rrent[0]; rp < &dc->dc_rrent[NRCV]; rp++) {
    391      1.10     ragge 		rp->r_slen = MCLBYTES - 2;
    392      1.10     ragge 		rp->r_segbl = LOWORD(ifrw->ifrw_info);
    393      1.10     ragge 		rp->r_segbh = HIWORD(ifrw->ifrw_info);
    394      1.10     ragge 		rp->r_flags = RFLG_OWN;
    395      1.10     ragge 		ifrw++;
    396      1.10     ragge 	}
    397       1.1     ragge 
    398       1.1     ragge 	/* start up the board (rah rah) */
    399       1.1     ragge 	s = splnet();
    400       1.5     ragge 	sc->sc_rindex = sc->sc_xindex = sc->sc_xfree = sc->sc_nxmit = 0;
    401       1.1     ragge 	sc->sc_if.if_flags |= IFF_RUNNING;
    402       1.5     ragge 	DE_WLOW(PCSR0_INTE);			/* avoid interlock */
    403       1.5     ragge 	destart(&sc->sc_if);		/* queue output packets */
    404       1.1     ragge 	DE_WLOW(CMD_START|PCSR0_INTE);
    405       1.1     ragge 	splx(s);
    406      1.10     ragge 	return 0;
    407       1.1     ragge }
    408       1.1     ragge 
    409       1.1     ragge /*
    410       1.1     ragge  * Setup output on interface.
    411       1.1     ragge  * Get another datagram to send off of the interface queue,
    412       1.1     ragge  * and map it to the interface before starting the output.
    413       1.1     ragge  * Must be called from ipl >= our interrupt level.
    414       1.1     ragge  */
    415       1.1     ragge void
    416       1.1     ragge destart(struct ifnet *ifp)
    417       1.1     ragge {
    418       1.1     ragge 	struct de_softc *sc = ifp->if_softc;
    419       1.2     ragge 	struct de_cdata *dc;
    420      1.10     ragge 	struct de_ring *rp;
    421       1.2     ragge 	struct mbuf *m;
    422      1.10     ragge 	int nxmit, len;
    423       1.1     ragge 
    424       1.1     ragge 	/*
    425       1.1     ragge 	 * the following test is necessary, since
    426       1.1     ragge 	 * the code is not reentrant and we have
    427       1.1     ragge 	 * multiple transmission buffers.
    428       1.1     ragge 	 */
    429       1.5     ragge 	if (sc->sc_if.if_flags & IFF_OACTIVE)
    430       1.1     ragge 		return;
    431       1.2     ragge 	dc = sc->sc_dedata;
    432       1.5     ragge 	for (nxmit = sc->sc_nxmit; nxmit < NXMT; nxmit++) {
    433       1.8   thorpej 		IFQ_DEQUEUE(&ifp->if_snd, m);
    434       1.1     ragge 		if (m == 0)
    435       1.5     ragge 			break;
    436      1.10     ragge 
    437      1.10     ragge 		rp = &dc->dc_xrent[sc->sc_xfree];
    438       1.5     ragge 		if (rp->r_flags & XFLG_OWN)
    439       1.5     ragge 			panic("deuna xmit in progress");
    440      1.29     joerg 		bpf_mtap(ifp, m);
    441       1.5     ragge 
    442      1.10     ragge 		len = if_ubaput(&sc->sc_ifuba, &sc->sc_ifw[sc->sc_xfree], m);
    443      1.10     ragge 		rp->r_slen = len;
    444      1.10     ragge 		rp->r_tdrerr = 0;
    445      1.10     ragge 		rp->r_flags = XFLG_STP|XFLG_ENP|XFLG_OWN;
    446      1.10     ragge 
    447       1.5     ragge 		sc->sc_xfree++;
    448       1.5     ragge 		if (sc->sc_xfree == NXMT)
    449       1.5     ragge 			sc->sc_xfree = 0;
    450       1.5     ragge 	}
    451      1.10     ragge 	if (sc->sc_nxmit != nxmit) {
    452       1.5     ragge 		sc->sc_nxmit = nxmit;
    453       1.5     ragge 		if (ifp->if_flags & IFF_RUNNING)
    454       1.5     ragge 			DE_WLOW(PCSR0_INTE|CMD_PDMD);
    455       1.1     ragge 	}
    456       1.1     ragge }
    457       1.1     ragge 
    458       1.1     ragge /*
    459       1.1     ragge  * Command done interrupt.
    460       1.1     ragge  */
    461       1.1     ragge void
    462       1.1     ragge deintr(void *arg)
    463       1.1     ragge {
    464      1.10     ragge 	struct ifxmt *ifxp;
    465       1.5     ragge 	struct de_cdata *dc;
    466       1.1     ragge 	struct de_softc *sc = arg;
    467       1.5     ragge 	struct de_ring *rp;
    468       1.5     ragge 	short csr0;
    469       1.1     ragge 
    470       1.1     ragge 	/* save flags right away - clear out interrupt bits */
    471       1.1     ragge 	csr0 = DE_RCSR(DE_PCSR0);
    472       1.1     ragge 	DE_WHIGH(csr0 >> 8);
    473       1.1     ragge 
    474       1.1     ragge 
    475       1.5     ragge 	sc->sc_if.if_flags |= IFF_OACTIVE;	/* prevent entering destart */
    476       1.5     ragge 	/*
    477       1.5     ragge 	 * if receive, put receive buffer on mbuf
    478       1.5     ragge 	 * and hang the request again
    479       1.5     ragge 	 */
    480       1.5     ragge 	derecv(sc);
    481       1.1     ragge 
    482       1.1     ragge 	/*
    483       1.1     ragge 	 * Poll transmit ring and check status.
    484       1.5     ragge 	 * Be careful about loopback requests.
    485       1.1     ragge 	 * Then free buffer space and check for
    486       1.1     ragge 	 * more transmit requests.
    487       1.1     ragge 	 */
    488       1.5     ragge 	dc = sc->sc_dedata;
    489       1.5     ragge 	for ( ; sc->sc_nxmit > 0; sc->sc_nxmit--) {
    490       1.5     ragge 		rp = &dc->dc_xrent[sc->sc_xindex];
    491       1.5     ragge 		if (rp->r_flags & XFLG_OWN)
    492       1.2     ragge 			break;
    493      1.10     ragge 
    494       1.5     ragge 		sc->sc_if.if_opackets++;
    495      1.10     ragge 		ifxp = &sc->sc_ifw[sc->sc_xindex];
    496       1.5     ragge 		/* check for unusual conditions */
    497       1.1     ragge 		if (rp->r_flags & (XFLG_ERRS|XFLG_MTCH|XFLG_ONE|XFLG_MORE)) {
    498       1.1     ragge 			if (rp->r_flags & XFLG_ERRS) {
    499       1.5     ragge 				/* output error */
    500       1.5     ragge 				sc->sc_if.if_oerrors++;
    501       1.1     ragge 			} else if (rp->r_flags & XFLG_ONE) {
    502       1.5     ragge 				/* one collision */
    503       1.5     ragge 				sc->sc_if.if_collisions++;
    504       1.1     ragge 			} else if (rp->r_flags & XFLG_MORE) {
    505       1.5     ragge 				/* more than one collision */
    506       1.5     ragge 				sc->sc_if.if_collisions += 2;	/* guess */
    507       1.1     ragge 			}
    508       1.1     ragge 		}
    509      1.10     ragge 		if_ubaend(&sc->sc_ifuba, ifxp);
    510       1.5     ragge 		/* check if next transmit buffer also finished */
    511       1.5     ragge 		sc->sc_xindex++;
    512       1.5     ragge 		if (sc->sc_xindex == NXMT)
    513       1.5     ragge 			sc->sc_xindex = 0;
    514       1.5     ragge 	}
    515       1.5     ragge 	sc->sc_if.if_flags &= ~IFF_OACTIVE;
    516       1.5     ragge 	destart(&sc->sc_if);
    517       1.5     ragge 
    518       1.5     ragge 	if (csr0 & PCSR0_RCBI) {
    519       1.5     ragge 		DE_WLOW(PCSR0_INTE|CMD_PDMD);
    520       1.5     ragge 	}
    521       1.1     ragge }
    522       1.1     ragge 
    523       1.1     ragge /*
    524       1.1     ragge  * Ethernet interface receiver interface.
    525       1.1     ragge  * If input error just drop packet.
    526      1.16    simonb  * Otherwise purge input buffered data path and examine
    527       1.1     ragge  * packet to determine type.  If can't determine length
    528       1.1     ragge  * from type, then have to drop packet.	 Othewise decapsulate
    529       1.1     ragge  * packet based on type and pass to type specific higher-level
    530       1.1     ragge  * input routine.
    531       1.1     ragge  */
    532       1.1     ragge void
    533       1.1     ragge derecv(struct de_softc *sc)
    534       1.1     ragge {
    535       1.1     ragge 	struct ifnet *ifp = &sc->sc_if;
    536       1.1     ragge 	struct de_ring *rp;
    537       1.5     ragge 	struct de_cdata *dc;
    538       1.1     ragge 	struct mbuf *m;
    539       1.1     ragge 	int len;
    540       1.1     ragge 
    541       1.5     ragge 	dc = sc->sc_dedata;
    542       1.5     ragge 	rp = &dc->dc_rrent[sc->sc_rindex];
    543       1.1     ragge 	while ((rp->r_flags & RFLG_OWN) == 0) {
    544       1.5     ragge 		len = (rp->r_lenerr&RERR_MLEN) - ETHER_CRC_LEN;
    545       1.1     ragge 		/* check for errors */
    546       1.1     ragge 		if ((rp->r_flags & (RFLG_ERRS|RFLG_FRAM|RFLG_OFLO|RFLG_CRC)) ||
    547       1.2     ragge 		    (rp->r_lenerr & (RERR_BUFL|RERR_UBTO))) {
    548       1.5     ragge 			sc->sc_if.if_ierrors++;
    549       1.1     ragge 			goto next;
    550       1.1     ragge 		}
    551      1.10     ragge 		m = if_ubaget(&sc->sc_ifuba, &sc->sc_ifr[sc->sc_rindex],
    552      1.10     ragge 		    ifp, len);
    553      1.10     ragge 		if (m == 0) {
    554      1.10     ragge 			sc->sc_if.if_ierrors++;
    555      1.10     ragge 			goto next;
    556      1.10     ragge 		}
    557       1.5     ragge 
    558      1.30     ozaki 		if_percpuq_enqueue(ifp->if_percpuq, m);
    559       1.1     ragge 
    560       1.1     ragge 		/* hang the receive buffer again */
    561       1.1     ragge next:		rp->r_lenerr = 0;
    562       1.1     ragge 		rp->r_flags = RFLG_OWN;
    563       1.1     ragge 
    564       1.1     ragge 		/* check next receive buffer */
    565       1.5     ragge 		sc->sc_rindex++;
    566       1.5     ragge 		if (sc->sc_rindex == NRCV)
    567       1.5     ragge 			sc->sc_rindex = 0;
    568       1.5     ragge 		rp = &dc->dc_rrent[sc->sc_rindex];
    569       1.1     ragge 	}
    570       1.1     ragge }
    571       1.1     ragge 
    572       1.1     ragge /*
    573       1.1     ragge  * Process an ioctl request.
    574       1.1     ragge  */
    575       1.1     ragge int
    576      1.21  christos deioctl(struct ifnet *ifp, u_long cmd, void *data)
    577       1.1     ragge {
    578      1.10     ragge 	int s, error = 0;
    579       1.1     ragge 
    580      1.10     ragge 	s = splnet();
    581       1.1     ragge 
    582      1.10     ragge 	error = ether_ioctl(ifp, cmd, data);
    583      1.10     ragge 	if (error == ENETRESET)
    584      1.10     ragge 		error = 0;
    585       1.2     ragge 
    586       1.1     ragge 	splx(s);
    587       1.1     ragge 	return (error);
    588       1.1     ragge }
    589       1.1     ragge 
    590       1.1     ragge /*
    591       1.1     ragge  * Await completion of the named function
    592       1.1     ragge  * and check for errors.
    593       1.1     ragge  */
    594       1.2     ragge void
    595      1.17     ragge dewait(struct de_softc *sc, const char *fn)
    596       1.1     ragge {
    597      1.23      matt 	int csr0, csr1;
    598       1.1     ragge 
    599       1.1     ragge 	while ((DE_RCSR(DE_PCSR0) & PCSR0_INTR) == 0)
    600       1.1     ragge 		;
    601       1.1     ragge 	csr0 = DE_RCSR(DE_PCSR0);
    602       1.1     ragge 	DE_WHIGH(csr0 >> 8);
    603       1.1     ragge 	if (csr0 & PCSR0_PCEI) {
    604      1.23      matt 		char bits0[64];
    605      1.23      matt 		char bits1[64];
    606      1.23      matt 		csr1 = DE_RCSR(DE_PCSR1);
    607      1.24  christos 		snprintb(bits0, sizeof(bits0), PCSR0_BITS, csr0);
    608      1.24  christos 		snprintb(bits1, sizeof(bits1), PCSR1_BITS, csr1);
    609      1.23      matt 		aprint_error_dev(sc->sc_dev, "%s failed, csr0=%s csr1=%s\n",
    610      1.24  christos 		    fn, bits0, bits1);
    611       1.1     ragge 	}
    612       1.1     ragge }
    613       1.1     ragge 
    614       1.1     ragge int
    615      1.23      matt dematch(device_t parent, cfdata_t cf, void *aux)
    616       1.1     ragge {
    617       1.1     ragge 	struct uba_attach_args *ua = aux;
    618       1.1     ragge 	struct de_softc ssc;
    619       1.1     ragge 	struct de_softc *sc = &ssc;
    620       1.1     ragge 	int i;
    621       1.1     ragge 
    622       1.1     ragge 	sc->sc_iot = ua->ua_iot;
    623       1.1     ragge 	sc->sc_ioh = ua->ua_ioh;
    624       1.1     ragge 	/*
    625       1.1     ragge 	 * Make sure self-test is finished before we screw with the board.
    626       1.1     ragge 	 * Self-test on a DELUA can take 15 seconds (argh).
    627       1.1     ragge 	 */
    628       1.1     ragge 	for (i = 0;
    629       1.1     ragge 	    (i < 160) &&
    630       1.1     ragge 	    (DE_RCSR(DE_PCSR0) & PCSR0_FATI) == 0 &&
    631       1.1     ragge 	    (DE_RCSR(DE_PCSR1) & PCSR1_STMASK) == STAT_RESET;
    632       1.1     ragge 	    ++i)
    633       1.1     ragge 		DELAY(50000);
    634       1.1     ragge 	if (((DE_RCSR(DE_PCSR0) & PCSR0_FATI) != 0) ||
    635       1.1     ragge 	    (((DE_RCSR(DE_PCSR1) & PCSR1_STMASK) != STAT_READY) &&
    636       1.1     ragge 	    ((DE_RCSR(DE_PCSR1) & PCSR1_STMASK) != STAT_RUN)))
    637       1.1     ragge 		return(0);
    638       1.1     ragge 
    639       1.1     ragge 	DE_WCSR(DE_PCSR0, 0);
    640       1.1     ragge 	DELAY(5000);
    641       1.1     ragge 	DE_WCSR(DE_PCSR0, PCSR0_RSET);
    642       1.1     ragge 	while ((DE_RCSR(DE_PCSR0) & PCSR0_INTR) == 0)
    643       1.1     ragge 		;
    644       1.1     ragge 	/* make board interrupt by executing a GETPCBB command */
    645       1.1     ragge 	DE_WCSR(DE_PCSR0, PCSR0_INTE);
    646       1.1     ragge 	DE_WCSR(DE_PCSR2, 0);
    647       1.1     ragge 	DE_WCSR(DE_PCSR3, 0);
    648       1.1     ragge 	DE_WCSR(DE_PCSR0, PCSR0_INTE|CMD_GETPCBB);
    649       1.1     ragge 	DELAY(50000);
    650       1.1     ragge 
    651       1.1     ragge 	return 1;
    652       1.1     ragge }
    653       1.2     ragge 
    654       1.2     ragge void
    655       1.2     ragge deshutdown(void *arg)
    656       1.2     ragge {
    657       1.2     ragge 	struct de_softc *sc = arg;
    658       1.2     ragge 
    659       1.5     ragge 	DE_WCSR(DE_PCSR0, 0);
    660       1.5     ragge 	DELAY(1000);
    661       1.2     ragge 	DE_WCSR(DE_PCSR0, PCSR0_RSET);
    662       1.2     ragge 	dewait(sc, "shutdown");
    663       1.2     ragge }
    664