Home | History | Annotate | Line # | Download | only in dev
if_ie.c revision 1.18
      1  1.18       gwr /*	$NetBSD: if_ie.c,v 1.18 1997/02/28 17:17:22 gwr Exp $ */
      2   1.1       gwr 
      3   1.1       gwr /*-
      4   1.3       gwr  * Copyright (c) 1993, 1994, 1995 Charles Hannum.
      5   1.1       gwr  * Copyright (c) 1992, 1993, University of Vermont and State
      6   1.1       gwr  *  Agricultural College.
      7   1.1       gwr  * Copyright (c) 1992, 1993, Garrett A. Wollman.
      8   1.1       gwr  *
      9   1.1       gwr  * Portions:
     10   1.3       gwr  * Copyright (c) 1994, 1995, Rafal K. Boni
     11   1.1       gwr  * Copyright (c) 1990, 1991, William F. Jolitz
     12   1.1       gwr  * Copyright (c) 1990, The Regents of the University of California
     13   1.1       gwr  *
     14   1.1       gwr  * All rights reserved.
     15   1.1       gwr  *
     16   1.1       gwr  * Redistribution and use in source and binary forms, with or without
     17   1.1       gwr  * modification, are permitted provided that the following conditions
     18   1.1       gwr  * are met:
     19   1.1       gwr  * 1. Redistributions of source code must retain the above copyright
     20   1.1       gwr  *    notice, this list of conditions and the following disclaimer.
     21   1.1       gwr  * 2. Redistributions in binary form must reproduce the above copyright
     22   1.1       gwr  *    notice, this list of conditions and the following disclaimer in the
     23   1.1       gwr  *    documentation and/or other materials provided with the distribution.
     24   1.1       gwr  * 3. All advertising materials mentioning features or use of this software
     25   1.1       gwr  *    must display the following acknowledgement:
     26   1.1       gwr  *	This product includes software developed by Charles Hannum, by the
     27   1.1       gwr  *	University of Vermont and State Agricultural College and Garrett A.
     28   1.1       gwr  *	Wollman, by William F. Jolitz, and by the University of California,
     29   1.1       gwr  *	Berkeley, Lawrence Berkeley Laboratory, and its contributors.
     30   1.1       gwr  * 4. Neither the names of the Universities nor the names of the authors
     31   1.1       gwr  *    may be used to endorse or promote products derived from this software
     32   1.1       gwr  *    without specific prior written permission.
     33   1.1       gwr  *
     34   1.1       gwr  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     35   1.1       gwr  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     36   1.1       gwr  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     37   1.1       gwr  * ARE DISCLAIMED.  IN NO EVENT SHALL THE UNIVERSITY OR AUTHORS BE LIABLE
     38   1.1       gwr  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     39   1.1       gwr  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     40   1.1       gwr  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     41   1.1       gwr  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     42   1.1       gwr  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     43   1.1       gwr  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     44   1.1       gwr  * SUCH DAMAGE.
     45   1.1       gwr  */
     46   1.1       gwr 
     47   1.1       gwr /*
     48   1.1       gwr  * Intel 82586 Ethernet chip
     49   1.1       gwr  * Register, bit, and structure definitions.
     50   1.1       gwr  *
     51   1.1       gwr  * Original StarLAN driver written by Garrett Wollman with reference to the
     52   1.1       gwr  * Clarkson Packet Driver code for this chip written by Russ Nelson and others.
     53   1.1       gwr  *
     54   1.1       gwr  * BPF support code taken from hpdev/if_le.c, supplied with tcpdump.
     55   1.1       gwr  *
     56   1.1       gwr  * 3C507 support is loosely based on code donated to NetBSD by Rafal Boni.
     57   1.1       gwr  *
     58   1.1       gwr  * Majorly cleaned up and 3C507 code merged by Charles Hannum.
     59   1.1       gwr  *
     60   1.3       gwr  * Converted to SUN ie driver by Charles D. Cranor,
     61   1.3       gwr  *		October 1994, January 1995.
     62   1.3       gwr  * This sun version based on i386 version 1.30.
     63  1.17       gwr  * [ see sys/dev/isa/if_ie.c ]
     64   1.1       gwr  */
     65   1.1       gwr 
     66   1.1       gwr /*
     67   1.1       gwr  * The i82586 is a very painful chip, found in sun3's, sun-4/100's
     68   1.1       gwr  * sun-4/200's, and VME based suns.  The byte order is all wrong for a
     69   1.1       gwr  * SUN, making life difficult.  Programming this chip is mostly the same,
     70   1.1       gwr  * but certain details differ from system to system.  This driver is
     71   1.1       gwr  * written so that different "ie" interfaces can be controled by the same
     72   1.1       gwr  * driver.
     73   1.1       gwr  */
     74   1.1       gwr 
     75   1.1       gwr /*
     76   1.1       gwr    Mode of operation:
     77   1.1       gwr 
     78   1.1       gwr    We run the 82586 in a standard Ethernet mode.  We keep NFRAMES
     79   1.1       gwr    received frame descriptors around for the receiver to use, and
     80   1.1       gwr    NRXBUF associated receive buffer descriptors, both in a circular
     81   1.1       gwr    list.  Whenever a frame is received, we rotate both lists as
     82   1.1       gwr    necessary.  (The 586 treats both lists as a simple queue.)  We also
     83   1.1       gwr    keep a transmit command around so that packets can be sent off
     84   1.1       gwr    quickly.
     85   1.3       gwr 
     86   1.1       gwr    We configure the adapter in AL-LOC = 1 mode, which means that the
     87   1.1       gwr    Ethernet/802.3 MAC header is placed at the beginning of the receive
     88   1.1       gwr    buffer rather than being split off into various fields in the RFD.
     89   1.1       gwr    This also means that we must include this header in the transmit
     90   1.1       gwr    buffer as well.
     91   1.3       gwr 
     92   1.1       gwr    By convention, all transmit commands, and only transmit commands,
     93   1.1       gwr    shall have the I (IE_CMD_INTR) bit set in the command.  This way,
     94   1.1       gwr    when an interrupt arrives at ieintr(), it is immediately possible
     95   1.1       gwr    to tell what precisely caused it.  ANY OTHER command-sending
     96   1.6   mycroft    routines should run at splnet(), and should post an acknowledgement
     97   1.1       gwr    to every interrupt they generate.
     98   1.1       gwr */
     99   1.1       gwr 
    100   1.1       gwr #include "bpfilter.h"
    101   1.1       gwr 
    102   1.1       gwr #include <sys/param.h>
    103   1.1       gwr #include <sys/systm.h>
    104   1.1       gwr #include <sys/mbuf.h>
    105   1.1       gwr #include <sys/buf.h>
    106   1.1       gwr #include <sys/protosw.h>
    107   1.1       gwr #include <sys/socket.h>
    108   1.1       gwr #include <sys/ioctl.h>
    109   1.3       gwr #include <sys/errno.h>
    110   1.1       gwr #include <sys/syslog.h>
    111   1.3       gwr #include <sys/device.h>
    112   1.1       gwr 
    113   1.1       gwr #include <net/if.h>
    114   1.1       gwr #include <net/if_types.h>
    115   1.1       gwr #include <net/if_dl.h>
    116   1.1       gwr #include <net/netisr.h>
    117   1.1       gwr #include <net/route.h>
    118   1.1       gwr 
    119   1.1       gwr #if NBPFILTER > 0
    120   1.1       gwr #include <net/bpf.h>
    121   1.1       gwr #include <net/bpfdesc.h>
    122   1.1       gwr #endif
    123   1.1       gwr 
    124   1.1       gwr #ifdef INET
    125   1.1       gwr #include <netinet/in.h>
    126   1.1       gwr #include <netinet/in_systm.h>
    127   1.1       gwr #include <netinet/in_var.h>
    128   1.1       gwr #include <netinet/ip.h>
    129   1.1       gwr #include <netinet/if_ether.h>
    130   1.1       gwr #endif
    131   1.1       gwr 
    132   1.1       gwr #ifdef NS
    133   1.1       gwr #include <netns/ns.h>
    134   1.1       gwr #include <netns/ns_if.h>
    135   1.1       gwr #endif
    136   1.1       gwr 
    137   1.1       gwr #include <vm/vm.h>
    138   1.1       gwr 
    139  1.16       gwr #include <machine/autoconf.h>
    140  1.16       gwr #include <machine/cpu.h>
    141  1.16       gwr #include <machine/pmap.h>
    142  1.16       gwr 
    143   1.1       gwr /*
    144   1.1       gwr  * ugly byte-order hack for SUNs
    145   1.1       gwr  */
    146   1.1       gwr 
    147  1.17       gwr #define XSWAP(y)	( (((y)&0xff00) >> 8) | (((y)&0xff) << 8) )
    148   1.1       gwr #define SWAP(x)		((u_short)(XSWAP((u_short)(x))))
    149   1.1       gwr 
    150   1.1       gwr #include "i82586.h"
    151  1.10       gwr #include "if_iereg.h"
    152  1.10       gwr #include "if_ievar.h"
    153   1.1       gwr 
    154  1.18       gwr /* #define	IEDEBUG	XXX */
    155   1.1       gwr 
    156   1.1       gwr /*
    157   1.1       gwr  * IED: ie debug flags
    158   1.1       gwr  */
    159   1.1       gwr 
    160   1.1       gwr #define	IED_RINT	0x01
    161   1.1       gwr #define	IED_TINT	0x02
    162   1.1       gwr #define	IED_RNR		0x04
    163   1.1       gwr #define	IED_CNA		0x08
    164   1.1       gwr #define	IED_READFRAME	0x10
    165  1.17       gwr #define	IED_ENQ		0x20
    166  1.17       gwr #define	IED_XMIT	0x40
    167  1.17       gwr #define	IED_ALL		0x7f
    168   1.1       gwr 
    169   1.1       gwr #define	ETHER_MIN_LEN	64
    170   1.1       gwr #define	ETHER_MAX_LEN	1518
    171   1.1       gwr #define	ETHER_ADDR_LEN	6
    172   1.1       gwr 
    173  1.17       gwr #ifdef	IEDEBUG
    174  1.17       gwr #define	inline	/* not */
    175  1.17       gwr void print_rbd __P((volatile struct ie_recv_buf_desc *));
    176  1.17       gwr int     in_ierint = 0;
    177  1.17       gwr int     in_ietint = 0;
    178  1.17       gwr int     ie_debug_flags = 0;
    179  1.17       gwr #endif
    180  1.17       gwr 
    181  1.18       gwr /* XXX - Skip TDR for now - it always complains... */
    182  1.18       gwr int 	ie_run_tdr = 0;
    183  1.18       gwr 
    184  1.17       gwr static void iewatchdog __P((struct ifnet *));
    185  1.17       gwr static int ieinit __P((struct ie_softc *));
    186  1.17       gwr static int ieioctl __P((struct ifnet *, u_long, caddr_t));
    187  1.17       gwr static void iestart __P((struct ifnet *));
    188  1.17       gwr static void iereset __P((struct ie_softc *));
    189  1.17       gwr static int ie_setupram __P((struct ie_softc *sc));
    190  1.16       gwr 
    191  1.16       gwr static int cmd_and_wait __P((struct ie_softc *, int, void *, int));
    192  1.16       gwr 
    193  1.16       gwr static void ie_drop_packet_buffer __P((struct ie_softc *));
    194   1.3       gwr static void ie_readframe __P((struct ie_softc *, int));
    195  1.17       gwr static inline void ie_setup_config __P((struct ie_config_cmd *, int, int));
    196  1.16       gwr 
    197   1.3       gwr static void ierint __P((struct ie_softc *));
    198  1.16       gwr static void iestop __P((struct ie_softc *));
    199   1.3       gwr static void ietint __P((struct ie_softc *));
    200  1.16       gwr static void iexmit __P((struct ie_softc *));
    201  1.16       gwr 
    202   1.3       gwr static int mc_setup __P((struct ie_softc *, void *));
    203   1.3       gwr static void mc_reset __P((struct ie_softc *));
    204  1.16       gwr static void run_tdr __P((struct ie_softc *, struct ie_tdr_cmd *));
    205  1.17       gwr static void iememinit __P((struct ie_softc *));
    206  1.17       gwr 
    207  1.17       gwr static inline char * Align __P((char *));
    208  1.17       gwr static inline u_int Swap32 __P((u_int x));
    209  1.17       gwr static inline u_int vtop24 __P((struct ie_softc *, void *));
    210  1.17       gwr static inline u_short vtop16sw __P((struct ie_softc *, void *));
    211  1.16       gwr 
    212  1.16       gwr static inline void ie_ack __P((struct ie_softc *, u_int));
    213  1.16       gwr static inline u_short ether_cmp __P((u_char *, u_char *));
    214  1.16       gwr static inline int check_eh __P((struct ie_softc *,
    215  1.16       gwr 		struct ether_header *eh, int *));
    216  1.16       gwr static inline int ie_buflen __P((struct ie_softc *, int));
    217  1.16       gwr static inline int ie_packet_len __P((struct ie_softc *));
    218  1.17       gwr static inline struct mbuf * ieget __P((struct ie_softc *sc,
    219  1.17       gwr 		struct ether_header *ehp, int *to_bpf));
    220   1.1       gwr 
    221   1.8   thorpej 
    222   1.8   thorpej struct cfdriver ie_cd = {
    223   1.8   thorpej 	NULL, "ie", DV_IFNET
    224   1.1       gwr };
    225   1.1       gwr 
    226   1.1       gwr /*
    227   1.1       gwr  * Here are a few useful functions.  We could have done these as macros,
    228   1.1       gwr  * but since we have the inline facility, it makes sense to use that
    229   1.1       gwr  * instead.
    230   1.1       gwr  */
    231  1.17       gwr 
    232  1.17       gwr /* KVA to 24 bit device address */
    233  1.17       gwr static inline u_int
    234  1.17       gwr vtop24(sc, ptr)
    235  1.17       gwr 	struct ie_softc *sc;
    236  1.17       gwr 	void *ptr;
    237  1.17       gwr {
    238  1.17       gwr 	u_int pa;
    239  1.17       gwr 
    240  1.17       gwr 	pa = ((caddr_t)ptr) - sc->sc_iobase;
    241  1.17       gwr #ifdef	IEDEBUG
    242  1.17       gwr 	if (pa & ~0xffFFff)
    243  1.17       gwr 		panic("ie:vtop24");
    244  1.17       gwr #endif
    245  1.17       gwr 	return (pa);
    246  1.17       gwr }
    247  1.17       gwr 
    248  1.17       gwr /* KVA to 16 bit offset, swapped */
    249  1.17       gwr static inline u_short
    250  1.17       gwr vtop16sw(sc, ptr)
    251  1.17       gwr 	struct ie_softc *sc;
    252  1.17       gwr 	void *ptr;
    253  1.17       gwr {
    254  1.17       gwr 	u_int pa;
    255  1.17       gwr 
    256  1.17       gwr 	pa = ((caddr_t)ptr) - sc->sc_maddr;
    257  1.17       gwr #ifdef	IEDEBUG
    258  1.17       gwr 	if (pa & ~0xFFff)
    259  1.17       gwr 		panic("ie:vtop16");
    260  1.17       gwr #endif
    261  1.17       gwr 
    262  1.17       gwr 	return (SWAP(pa));
    263  1.17       gwr }
    264  1.17       gwr 
    265  1.17       gwr static inline u_int
    266  1.17       gwr Swap32(x)
    267  1.17       gwr 	u_int x;
    268   1.1       gwr {
    269  1.17       gwr 	u_int y;
    270  1.17       gwr 
    271  1.17       gwr 	y = x & 0xFF;
    272  1.17       gwr 	y <<= 8; x >>= 8;
    273  1.17       gwr 	y |= x & 0xFF;
    274  1.17       gwr 	y <<= 8; x >>= 8;
    275  1.17       gwr 	y |= x & 0xFF;
    276  1.17       gwr 	y <<= 8; x >>= 8;
    277  1.17       gwr 	y |= x & 0xFF;
    278   1.1       gwr 
    279  1.17       gwr 	return (y);
    280   1.1       gwr }
    281   1.1       gwr 
    282  1.17       gwr static inline char *
    283   1.1       gwr Align(ptr)
    284   1.1       gwr 	caddr_t ptr;
    285   1.1       gwr {
    286   1.1       gwr 	u_long  l = (u_long)ptr;
    287   1.1       gwr 
    288   1.1       gwr 	l = (l + 3) & ~3L;
    289  1.17       gwr 	return ((char *)l);
    290   1.1       gwr }
    291   1.1       gwr 
    292  1.17       gwr 
    293   1.1       gwr static inline void
    294   1.1       gwr ie_ack(sc, mask)
    295   1.1       gwr 	struct ie_softc *sc;
    296  1.17       gwr 	u_int mask;
    297   1.1       gwr {
    298   1.1       gwr 	volatile struct ie_sys_ctl_block *scb = sc->scb;
    299   1.1       gwr 
    300  1.16       gwr 	cmd_and_wait(sc, scb->ie_status & mask, 0, 0);
    301   1.1       gwr }
    302   1.1       gwr 
    303   1.1       gwr 
    304   1.1       gwr /*
    305   1.1       gwr  * Taken almost exactly from Bill's if_is.c,
    306   1.1       gwr  * then modified beyond recognition...
    307   1.1       gwr  */
    308   1.1       gwr void
    309   1.9       gwr ie_attach(sc)
    310   1.9       gwr 	struct ie_softc *sc;
    311   1.1       gwr {
    312   1.1       gwr 	struct ifnet *ifp = &sc->sc_if;
    313   1.1       gwr 
    314   1.9       gwr 	/* MD code has done its part before calling this. */
    315  1.17       gwr 	printf(": macaddr %s\n", ether_sprintf(sc->sc_addr));
    316   1.1       gwr 
    317  1.17       gwr 	/*
    318  1.17       gwr 	 * Compute number of transmit and receive buffers.
    319  1.17       gwr 	 * Tx buffers take 1536 bytes, and fixed in number.
    320  1.17       gwr 	 * Rx buffers are 512 bytes each, variable number.
    321  1.17       gwr 	 * Need at least 1 frame for each 3 rx buffers.
    322  1.17       gwr 	 * The ratio 3bufs:2frames is a compromise.
    323  1.17       gwr 	 */
    324  1.17       gwr 	sc->ntxbuf = NTXBUF;	/* XXX - Fix me... */
    325  1.17       gwr 	switch (sc->sc_msize) {
    326  1.17       gwr 	case 16384:
    327  1.17       gwr 		sc->nframes = 8 * 4;
    328  1.17       gwr 		sc->nrxbuf  = 8 * 6;
    329  1.17       gwr 		break;
    330  1.17       gwr 	case 32768:
    331  1.17       gwr 		sc->nframes = 16 * 4;
    332  1.17       gwr 		sc->nrxbuf  = 16 * 6;
    333  1.17       gwr 		break;
    334  1.17       gwr 	case 65536:
    335  1.17       gwr 		sc->nframes = 32 * 4;
    336  1.17       gwr 		sc->nrxbuf  = 32 * 6;
    337  1.17       gwr 		break;
    338  1.17       gwr 	default:
    339  1.17       gwr 		sc->nframes = 0;
    340  1.17       gwr 	}
    341  1.17       gwr 	if (sc->nframes > MXFRAMES)
    342  1.17       gwr 		sc->nframes = MXFRAMES;
    343  1.17       gwr 	if (sc->nrxbuf > MXRXBUF)
    344  1.17       gwr 		sc->nrxbuf = MXRXBUF;
    345   1.9       gwr 
    346  1.18       gwr #ifdef	IEDEBUG
    347  1.17       gwr 	printf("%s: %dK memory, %d tx frames, %d rx frames, %d rx bufs\n",
    348  1.17       gwr 	    sc->sc_dev.dv_xname, (sc->sc_msize >> 10),
    349  1.17       gwr 	    sc->ntxbuf, sc->nframes, sc->nrxbuf);
    350  1.18       gwr #endif
    351   1.9       gwr 
    352  1.17       gwr 	if ((sc->nframes <= 0) || (sc->nrxbuf <= 0))
    353  1.17       gwr 		panic("ie_attach: weird memory size");
    354   1.9       gwr 
    355   1.1       gwr 	/*
    356   1.9       gwr 	 * Setup RAM for transmit/receive
    357   1.1       gwr 	 */
    358   1.1       gwr 	if (ie_setupram(sc) == 0) {
    359  1.14  christos 		printf(": RAM CONFIG FAILED!\n");
    360   1.1       gwr 		/* XXX should reclaim resources? */
    361   1.1       gwr 		return;
    362   1.1       gwr 	}
    363   1.1       gwr 
    364   1.1       gwr 	/*
    365   1.1       gwr 	 * Initialize and attach S/W interface
    366   1.1       gwr 	 */
    367  1.11   thorpej 	bcopy(sc->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ);
    368  1.11   thorpej 	ifp->if_softc = sc;
    369   1.1       gwr 	ifp->if_start = iestart;
    370   1.1       gwr 	ifp->if_ioctl = ieioctl;
    371   1.1       gwr 	ifp->if_watchdog = iewatchdog;
    372   1.5   mycroft 	ifp->if_flags =
    373   1.5   mycroft 	    IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS | IFF_MULTICAST;
    374   1.1       gwr 
    375   1.1       gwr 	/* Attach the interface. */
    376   1.1       gwr 	if_attach(ifp);
    377   1.1       gwr 	ether_ifattach(ifp);
    378   1.1       gwr #if NBPFILTER > 0
    379   1.5   mycroft 	bpfattach(&ifp->if_bpf, ifp, DLT_EN10MB, sizeof(struct ether_header));
    380   1.1       gwr #endif
    381   1.1       gwr }
    382   1.1       gwr 
    383   1.1       gwr /*
    384  1.17       gwr  * Setup IE's ram space.
    385  1.17       gwr  */
    386  1.17       gwr static int
    387  1.17       gwr ie_setupram(sc)
    388  1.17       gwr 	struct ie_softc *sc;
    389  1.17       gwr {
    390  1.17       gwr 	volatile struct ie_sys_conf_ptr *scp;
    391  1.17       gwr 	volatile struct ie_int_sys_conf_ptr *iscp;
    392  1.17       gwr 	volatile struct ie_sys_ctl_block *scb;
    393  1.17       gwr 	int off;
    394  1.17       gwr 
    395  1.17       gwr 	/*
    396  1.17       gwr 	 * Allocate from end of buffer space for
    397  1.17       gwr 	 * ISCP, SCB, and other small stuff.
    398  1.17       gwr 	 */
    399  1.17       gwr 	off = sc->buf_area_sz;
    400  1.17       gwr 	off &= ~3;
    401  1.17       gwr 
    402  1.17       gwr 	/* SCP (address already chosen). */
    403  1.17       gwr 	scp = sc->scp;
    404  1.17       gwr 	(sc->sc_bzero)((char *) scp, sizeof(*scp));
    405  1.17       gwr 
    406  1.17       gwr 	/* ISCP */
    407  1.17       gwr 	off -= sizeof(*iscp);
    408  1.17       gwr 	iscp = (volatile void *) (sc->buf_area + off);
    409  1.17       gwr 	(sc->sc_bzero)((char *) iscp, sizeof(*iscp));
    410  1.17       gwr 	sc->iscp = iscp;
    411  1.17       gwr 
    412  1.17       gwr 	/* SCB */
    413  1.17       gwr 	off -= sizeof(*scb);
    414  1.17       gwr 	scb  = (volatile void *) (sc->buf_area + off);
    415  1.17       gwr 	(sc->sc_bzero)((char *) scb, sizeof(*scb));
    416  1.17       gwr 	sc->scb = scb;
    417  1.17       gwr 
    418  1.17       gwr 	/* Remainder is for buffers, etc. */
    419  1.17       gwr 	sc->buf_area_sz = off;
    420  1.17       gwr 
    421  1.17       gwr 	/*
    422  1.17       gwr 	 * Now fill in the structures we just allocated.
    423  1.17       gwr 	 */
    424  1.17       gwr 
    425  1.17       gwr 	/* SCP: main thing is 24-bit ptr to ISCP */
    426  1.17       gwr 	scp->ie_bus_use = 0;	/* 16-bit */
    427  1.17       gwr 	scp->ie_iscp_ptr = Swap32(vtop24(sc, (void*)iscp));
    428  1.17       gwr 
    429  1.17       gwr 	/* ISCP */
    430  1.17       gwr 	iscp->ie_busy = 1;	/* ie_busy == char */
    431  1.17       gwr 	iscp->ie_scb_offset = vtop16sw(sc, (void*)scb);
    432  1.17       gwr 	iscp->ie_base = Swap32(vtop24(sc, sc->sc_maddr));
    433  1.17       gwr 
    434  1.17       gwr 	/* SCB */
    435  1.17       gwr 	scb->ie_command_list = SWAP(0xffff);
    436  1.17       gwr 	scb->ie_recv_list    = SWAP(0xffff);
    437  1.17       gwr 
    438  1.17       gwr 	/* Other stuff is done in ieinit() */
    439  1.17       gwr 	(sc->reset_586) (sc);
    440  1.17       gwr 	(sc->chan_attn) (sc);
    441  1.17       gwr 
    442  1.17       gwr 	delay(100);		/* wait a while... */
    443  1.17       gwr 
    444  1.17       gwr 	if (iscp->ie_busy) {
    445  1.17       gwr 		return 0;
    446  1.17       gwr 	}
    447  1.17       gwr 	/*
    448  1.17       gwr 	 * Acknowledge any interrupts we may have caused...
    449  1.17       gwr 	 */
    450  1.17       gwr 	ie_ack(sc, IE_ST_WHENCE);
    451  1.17       gwr 
    452  1.17       gwr 	return 1;
    453  1.17       gwr }
    454  1.17       gwr 
    455  1.17       gwr /*
    456   1.1       gwr  * Device timeout/watchdog routine.  Entered if the device neglects to
    457   1.1       gwr  * generate an interrupt after a transmit has been started on it.
    458   1.1       gwr  */
    459  1.17       gwr static void
    460  1.11   thorpej iewatchdog(ifp)
    461  1.11   thorpej 	struct ifnet *ifp;
    462   1.1       gwr {
    463  1.12   thorpej 	struct ie_softc *sc = ifp->if_softc;
    464   1.1       gwr 
    465   1.1       gwr 	log(LOG_ERR, "%s: device timeout\n", sc->sc_dev.dv_xname);
    466   1.1       gwr 	++sc->sc_arpcom.ac_if.if_oerrors;
    467   1.1       gwr 	iereset(sc);
    468   1.1       gwr }
    469   1.1       gwr 
    470   1.1       gwr /*
    471   1.1       gwr  * What to do upon receipt of an interrupt.
    472   1.1       gwr  */
    473   1.1       gwr int
    474  1.17       gwr ie_intr(arg)
    475  1.17       gwr 	void *arg;
    476   1.1       gwr {
    477  1.17       gwr 	struct ie_softc *sc = arg;
    478   1.1       gwr 	register u_short status;
    479  1.17       gwr 	int loopcnt;
    480   1.1       gwr 
    481   1.1       gwr 	/*
    482   1.1       gwr 	 * check for parity error
    483   1.1       gwr 	 */
    484   1.1       gwr 	if (sc->hard_type == IE_VME) {
    485   1.1       gwr 		volatile struct ievme *iev = (volatile struct ievme *)sc->sc_reg;
    486   1.1       gwr 		if (iev->status & IEVME_PERR) {
    487  1.14  christos 			printf("%s: parity error (ctrl %x @ %02x%04x)\n",
    488  1.16       gwr 			    sc->sc_dev.dv_xname, iev->pectrl,
    489  1.16       gwr 			    iev->pectrl & IEVME_HADDR, iev->peaddr);
    490   1.1       gwr 			iev->pectrl = iev->pectrl | IEVME_PARACK;
    491   1.1       gwr 		}
    492   1.1       gwr 	}
    493   1.3       gwr 
    494  1.17       gwr 	status = sc->scb->ie_status & IE_ST_WHENCE;
    495  1.17       gwr 	if (status == 0)
    496  1.17       gwr 		return 0;
    497  1.17       gwr 
    498  1.17       gwr 	loopcnt = 5;
    499   1.1       gwr loop:
    500   1.3       gwr 	/* Ack interrupts FIRST in case we receive more during the ISR. */
    501  1.17       gwr 	ie_ack(sc, status);
    502   1.3       gwr 
    503   1.1       gwr 	if (status & (IE_ST_RECV | IE_ST_RNR)) {
    504   1.1       gwr #ifdef IEDEBUG
    505   1.1       gwr 		in_ierint++;
    506   1.1       gwr 		if (sc->sc_debug & IED_RINT)
    507  1.14  christos 			printf("%s: rint\n", sc->sc_dev.dv_xname);
    508   1.1       gwr #endif
    509   1.1       gwr 		ierint(sc);
    510   1.1       gwr #ifdef IEDEBUG
    511   1.1       gwr 		in_ierint--;
    512   1.1       gwr #endif
    513   1.1       gwr 	}
    514   1.3       gwr 
    515   1.1       gwr 	if (status & IE_ST_DONE) {
    516   1.1       gwr #ifdef IEDEBUG
    517   1.1       gwr 		in_ietint++;
    518   1.1       gwr 		if (sc->sc_debug & IED_TINT)
    519  1.14  christos 			printf("%s: tint\n", sc->sc_dev.dv_xname);
    520   1.1       gwr #endif
    521   1.1       gwr 		ietint(sc);
    522   1.1       gwr #ifdef IEDEBUG
    523   1.1       gwr 		in_ietint--;
    524   1.1       gwr #endif
    525   1.1       gwr 	}
    526   1.3       gwr 
    527  1.17       gwr 	/*
    528  1.18       gwr 	 * Receiver not ready (RNR) just means it has
    529  1.18       gwr 	 * run out of resources (buffers or frames).
    530  1.18       gwr 	 * One can easily cause this with (i.e.) spray.
    531  1.18       gwr 	 * This is not really an error, so be silent.
    532  1.17       gwr 	 */
    533   1.1       gwr 	if (status & IE_ST_RNR) {
    534  1.18       gwr #ifdef IEDEBUG
    535  1.14  christos 		printf("%s: receiver not ready\n", sc->sc_dev.dv_xname);
    536  1.18       gwr #endif
    537   1.3       gwr 		sc->sc_arpcom.ac_if.if_ierrors++;
    538   1.3       gwr 		iereset(sc);
    539   1.1       gwr 	}
    540   1.3       gwr 
    541   1.1       gwr #ifdef IEDEBUG
    542   1.1       gwr 	if ((status & IE_ST_ALLDONE) && (sc->sc_debug & IED_CNA))
    543  1.14  christos 		printf("%s: cna\n", sc->sc_dev.dv_xname);
    544   1.1       gwr #endif
    545   1.1       gwr 
    546  1.17       gwr 	status = sc->scb->ie_status & IE_ST_WHENCE;
    547  1.17       gwr 	if (status) {
    548  1.17       gwr 		if (--loopcnt > 0)
    549  1.17       gwr 			goto loop;
    550  1.17       gwr 		printf("%s: interrupt stuck?\n", sc->sc_dev.dv_xname);
    551  1.17       gwr 		iereset(sc);
    552  1.17       gwr 	}
    553   1.1       gwr 	return 1;
    554   1.1       gwr }
    555   1.1       gwr 
    556   1.1       gwr /*
    557   1.1       gwr  * Process a received-frame interrupt.
    558   1.1       gwr  */
    559   1.1       gwr void
    560   1.1       gwr ierint(sc)
    561   1.1       gwr 	struct ie_softc *sc;
    562   1.1       gwr {
    563   1.1       gwr 	volatile struct ie_sys_ctl_block *scb = sc->scb;
    564  1.17       gwr 	int i, status;
    565   1.1       gwr 	static int timesthru = 1024;
    566   1.1       gwr 
    567   1.1       gwr 	i = sc->rfhead;
    568   1.1       gwr 	for (;;) {
    569   1.1       gwr 		status = sc->rframes[i]->ie_fd_status;
    570   1.1       gwr 
    571   1.1       gwr 		if ((status & IE_FD_COMPLETE) && (status & IE_FD_OK)) {
    572   1.1       gwr 			if (!--timesthru) {
    573   1.1       gwr 				sc->sc_arpcom.ac_if.if_ierrors +=
    574   1.1       gwr 				    SWAP(scb->ie_err_crc) +
    575   1.1       gwr 				    SWAP(scb->ie_err_align) +
    576   1.1       gwr 				    SWAP(scb->ie_err_resource) +
    577   1.1       gwr 				    SWAP(scb->ie_err_overrun);
    578   1.3       gwr 				scb->ie_err_crc = 0;
    579   1.3       gwr 				scb->ie_err_align = 0;
    580   1.1       gwr 				scb->ie_err_resource = 0;
    581   1.1       gwr 				scb->ie_err_overrun = 0;
    582   1.1       gwr 				timesthru = 1024;
    583   1.1       gwr 			}
    584   1.1       gwr 			ie_readframe(sc, i);
    585   1.1       gwr 		} else {
    586   1.1       gwr 			if ((status & IE_FD_RNR) != 0 &&
    587   1.1       gwr 			    (scb->ie_status & IE_RU_READY) == 0) {
    588   1.3       gwr 				sc->rframes[0]->ie_fd_buf_desc =
    589  1.17       gwr 					vtop16sw(sc, (void*) sc->rbuffs[0]);
    590   1.2       gwr 				scb->ie_recv_list =
    591  1.17       gwr 					vtop16sw(sc, (void*) sc->rframes[0]);
    592  1.16       gwr 				cmd_and_wait(sc, IE_RU_START, 0, 0);
    593   1.1       gwr 			}
    594   1.1       gwr 			break;
    595   1.1       gwr 		}
    596   1.1       gwr 		i = (i + 1) % sc->nframes;
    597   1.1       gwr 	}
    598   1.1       gwr }
    599   1.1       gwr 
    600   1.1       gwr /*
    601  1.17       gwr  * Process a command-complete interrupt.  These are only generated by the
    602  1.17       gwr  * transmission of frames.  This routine is deceptively simple, since most
    603  1.17       gwr  * of the real work is done by iestart().
    604   1.1       gwr  */
    605   1.1       gwr void
    606   1.1       gwr ietint(sc)
    607   1.1       gwr 	struct ie_softc *sc;
    608   1.1       gwr {
    609  1.17       gwr 	struct ifnet *ifp = &sc->sc_arpcom.ac_if;
    610  1.17       gwr 	int status;
    611   1.1       gwr 
    612  1.17       gwr 	ifp->if_timer = 0;
    613  1.17       gwr 	ifp->if_flags &= ~IFF_OACTIVE;
    614   1.1       gwr 
    615   1.3       gwr 	status = sc->xmit_cmds[sc->xctail]->ie_xmit_status;
    616   1.1       gwr 
    617   1.3       gwr 	if (!(status & IE_STAT_COMPL) || (status & IE_STAT_BUSY))
    618  1.14  christos 		printf("ietint: command still busy!\n");
    619   1.3       gwr 
    620   1.3       gwr 	if (status & IE_STAT_OK) {
    621  1.17       gwr 		ifp->if_opackets++;
    622  1.17       gwr 		ifp->if_collisions +=
    623   1.3       gwr 		  SWAP(status & IE_XS_MAXCOLL);
    624  1.17       gwr 	} else {
    625  1.17       gwr 		ifp->if_oerrors++;
    626  1.17       gwr 		/*
    627  1.17       gwr 		 * XXX
    628  1.17       gwr 		 * Check SQE and DEFERRED?
    629  1.17       gwr 		 * What if more than one bit is set?
    630  1.17       gwr 		 */
    631  1.17       gwr 		if (status & IE_STAT_ABORT)
    632  1.17       gwr 			printf("%s: send aborted\n", sc->sc_dev.dv_xname);
    633  1.17       gwr 		if (status & IE_XS_LATECOLL)
    634  1.17       gwr 			printf("%s: late collision\n", sc->sc_dev.dv_xname);
    635  1.17       gwr 		if (status & IE_XS_NOCARRIER)
    636  1.17       gwr 			printf("%s: no carrier\n", sc->sc_dev.dv_xname);
    637  1.17       gwr 		if (status & IE_XS_LOSTCTS)
    638  1.17       gwr 			printf("%s: lost CTS\n", sc->sc_dev.dv_xname);
    639  1.17       gwr 		if (status & IE_XS_UNDERRUN)
    640  1.17       gwr 			printf("%s: DMA underrun\n", sc->sc_dev.dv_xname);
    641  1.17       gwr 		if (status & IE_XS_EXCMAX) {
    642  1.17       gwr 			printf("%s: too many collisions\n", sc->sc_dev.dv_xname);
    643  1.17       gwr 			ifp->if_collisions += 16;
    644  1.17       gwr 		}
    645   1.1       gwr 	}
    646   1.1       gwr 
    647   1.1       gwr 	/*
    648   1.1       gwr 	 * If multicast addresses were added or deleted while we
    649   1.1       gwr 	 * were transmitting, mc_reset() set the want_mcsetup flag
    650   1.1       gwr 	 * indicating that we should do it.
    651   1.1       gwr 	 */
    652   1.1       gwr 	if (sc->want_mcsetup) {
    653   1.3       gwr 		mc_setup(sc, (caddr_t)sc->xmit_cbuffs[sc->xctail]);
    654   1.1       gwr 		sc->want_mcsetup = 0;
    655   1.1       gwr 	}
    656   1.3       gwr 
    657   1.3       gwr 	/* Done with the buffer. */
    658  1.17       gwr 	sc->xmit_busy--;
    659   1.3       gwr 	sc->xctail = (sc->xctail + 1) % NTXBUF;
    660   1.1       gwr 
    661  1.17       gwr 	/* Start the next packet, if any, transmitting. */
    662  1.17       gwr 	if (sc->xmit_busy > 0)
    663  1.17       gwr 		iexmit(sc);
    664  1.17       gwr 
    665  1.17       gwr 	iestart(ifp);
    666   1.1       gwr }
    667   1.1       gwr 
    668   1.1       gwr /*
    669   1.1       gwr  * Compare two Ether/802 addresses for equality, inlined and
    670   1.1       gwr  * unrolled for speed.  I'd love to have an inline assembler
    671   1.9       gwr  * version of this...   XXX: Who wanted that? mycroft?
    672   1.9       gwr  * I wrote one, but the following is just as efficient.
    673   1.9       gwr  * This expands to 10 short m68k instructions! -gwr
    674   1.9       gwr  * Note: use this like bcmp()
    675   1.1       gwr  */
    676   1.9       gwr static inline u_short
    677   1.9       gwr ether_cmp(one, two)
    678   1.1       gwr 	u_char *one, *two;
    679   1.1       gwr {
    680   1.9       gwr 	register u_short *a = (u_short *) one;
    681   1.9       gwr 	register u_short *b = (u_short *) two;
    682   1.9       gwr 	register u_short diff;
    683   1.9       gwr 
    684   1.9       gwr 	diff  = *a++ - *b++;
    685   1.9       gwr 	diff |= *a++ - *b++;
    686   1.9       gwr 	diff |= *a++ - *b++;
    687   1.1       gwr 
    688   1.9       gwr 	return (diff);
    689   1.1       gwr }
    690   1.9       gwr #define	ether_equal !ether_cmp
    691   1.1       gwr 
    692   1.1       gwr /*
    693   1.1       gwr  * Check for a valid address.  to_bpf is filled in with one of the following:
    694   1.1       gwr  *   0 -> BPF doesn't get this packet
    695   1.1       gwr  *   1 -> BPF does get this packet
    696   1.1       gwr  *   2 -> BPF does get this packet, but we don't
    697   1.1       gwr  * Return value is true if the packet is for us, and false otherwise.
    698   1.1       gwr  *
    699   1.1       gwr  * This routine is a mess, but it's also critical that it be as fast
    700   1.1       gwr  * as possible.  It could be made cleaner if we can assume that the
    701   1.1       gwr  * only client which will fiddle with IFF_PROMISC is BPF.  This is
    702   1.1       gwr  * probably a good assumption, but we do not make it here.  (Yet.)
    703   1.1       gwr  */
    704   1.1       gwr static inline int
    705   1.1       gwr check_eh(sc, eh, to_bpf)
    706   1.1       gwr 	struct ie_softc *sc;
    707   1.1       gwr 	struct ether_header *eh;
    708  1.17       gwr 	int *to_bpf;
    709   1.1       gwr {
    710  1.17       gwr 	int i;
    711   1.1       gwr 
    712   1.1       gwr 	switch (sc->promisc) {
    713   1.1       gwr 	case IFF_ALLMULTI:
    714   1.1       gwr 		/*
    715   1.1       gwr 		 * Receiving all multicasts, but no unicasts except those
    716   1.1       gwr 		 * destined for us.
    717   1.1       gwr 		 */
    718   1.1       gwr #if NBPFILTER > 0
    719   1.3       gwr 		/* BPF gets this packet if anybody cares */
    720   1.1       gwr 		*to_bpf = (sc->sc_arpcom.ac_if.if_bpf != 0);
    721   1.1       gwr #endif
    722   1.1       gwr 		if (eh->ether_dhost[0] & 1)
    723   1.1       gwr 			return 1;
    724   1.1       gwr 		if (ether_equal(eh->ether_dhost, sc->sc_arpcom.ac_enaddr))
    725   1.1       gwr 			return 1;
    726   1.1       gwr 		return 0;
    727   1.1       gwr 
    728   1.1       gwr 	case IFF_PROMISC:
    729   1.1       gwr 		/*
    730   1.1       gwr 		 * Receiving all packets.  These need to be passed on to BPF.
    731   1.1       gwr 		 */
    732   1.1       gwr #if NBPFILTER > 0
    733   1.1       gwr 		*to_bpf = (sc->sc_arpcom.ac_if.if_bpf != 0);
    734   1.1       gwr #endif
    735   1.1       gwr 		/* If for us, accept and hand up to BPF */
    736   1.1       gwr 		if (ether_equal(eh->ether_dhost, sc->sc_arpcom.ac_enaddr))
    737   1.1       gwr 			return 1;
    738   1.1       gwr 
    739   1.1       gwr #if NBPFILTER > 0
    740   1.1       gwr 		if (*to_bpf)
    741   1.1       gwr 			*to_bpf = 2;	/* we don't need to see it */
    742   1.1       gwr #endif
    743   1.1       gwr 
    744   1.1       gwr 		/*
    745   1.1       gwr 		 * Not a multicast, so BPF wants to see it but we don't.
    746   1.1       gwr 		 */
    747   1.1       gwr 		if (!(eh->ether_dhost[0] & 1))
    748   1.1       gwr 			return 1;
    749   1.1       gwr 
    750   1.1       gwr 		/*
    751   1.1       gwr 		 * If it's one of our multicast groups, accept it and pass it
    752   1.1       gwr 		 * up.
    753   1.1       gwr 		 */
    754   1.1       gwr 		for (i = 0; i < sc->mcast_count; i++) {
    755   1.1       gwr 			if (ether_equal(eh->ether_dhost,
    756   1.1       gwr 			    (u_char *)&sc->mcast_addrs[i])) {
    757   1.1       gwr #if NBPFILTER > 0
    758   1.1       gwr 				if (*to_bpf)
    759   1.1       gwr 					*to_bpf = 1;
    760   1.1       gwr #endif
    761   1.1       gwr 				return 1;
    762   1.1       gwr 			}
    763   1.1       gwr 		}
    764   1.1       gwr 		return 1;
    765   1.1       gwr 
    766   1.1       gwr 	case IFF_ALLMULTI | IFF_PROMISC:
    767   1.1       gwr 		/*
    768   1.1       gwr 		 * Acting as a multicast router, and BPF running at the same
    769   1.1       gwr 		 * time.  Whew!  (Hope this is a fast machine...)
    770   1.1       gwr 		 */
    771   1.1       gwr #if NBPFILTER > 0
    772   1.1       gwr 		*to_bpf = (sc->sc_arpcom.ac_if.if_bpf != 0);
    773   1.1       gwr #endif
    774   1.1       gwr 		/* We want to see multicasts. */
    775   1.1       gwr 		if (eh->ether_dhost[0] & 1)
    776   1.1       gwr 			return 1;
    777   1.1       gwr 
    778   1.1       gwr 		/* We want to see our own packets */
    779   1.1       gwr 		if (ether_equal(eh->ether_dhost, sc->sc_arpcom.ac_enaddr))
    780   1.1       gwr 			return 1;
    781   1.1       gwr 
    782   1.1       gwr 		/* Anything else goes to BPF but nothing else. */
    783   1.1       gwr #if NBPFILTER > 0
    784   1.1       gwr 		if (*to_bpf)
    785   1.1       gwr 			*to_bpf = 2;
    786   1.1       gwr #endif
    787   1.1       gwr 		return 1;
    788   1.1       gwr 
    789  1.17       gwr 	case 0:
    790   1.1       gwr 		/*
    791   1.1       gwr 		 * Only accept unicast packets destined for us, or multicasts
    792   1.1       gwr 		 * for groups that we belong to.  For now, we assume that the
    793   1.1       gwr 		 * '586 will only return packets that we asked it for.  This
    794   1.1       gwr 		 * isn't strictly true (it uses hashing for the multicast filter),
    795   1.1       gwr 		 * but it will do in this case, and we want to get out of here
    796   1.1       gwr 		 * as quickly as possible.
    797   1.1       gwr 		 */
    798   1.1       gwr #if NBPFILTER > 0
    799   1.1       gwr 		*to_bpf = (sc->sc_arpcom.ac_if.if_bpf != 0);
    800   1.1       gwr #endif
    801   1.1       gwr 		return 1;
    802   1.1       gwr 	}
    803  1.17       gwr #ifdef	DIAGNOSTIC
    804  1.17       gwr 	panic("ie: check_eh, impossible");
    805  1.17       gwr #endif
    806   1.1       gwr 	return 0;
    807   1.1       gwr }
    808   1.1       gwr 
    809   1.1       gwr /*
    810   1.1       gwr  * We want to isolate the bits that have meaning...  This assumes that
    811   1.1       gwr  * IE_RBUF_SIZE is an even power of two.  If somehow the act_len exceeds
    812   1.1       gwr  * the size of the buffer, then we are screwed anyway.
    813   1.1       gwr  */
    814   1.1       gwr static inline int
    815   1.1       gwr ie_buflen(sc, head)
    816   1.1       gwr 	struct ie_softc *sc;
    817  1.17       gwr 	int head;
    818   1.1       gwr {
    819  1.17       gwr 	register int len;
    820   1.1       gwr 
    821  1.17       gwr 	len = SWAP(sc->rbuffs[head]->ie_rbd_actual);
    822  1.17       gwr 	len &= (IE_RBUF_SIZE | (IE_RBUF_SIZE - 1));
    823  1.17       gwr 	return (len);
    824   1.1       gwr }
    825   1.1       gwr 
    826   1.1       gwr static inline int
    827   1.1       gwr ie_packet_len(sc)
    828   1.1       gwr 	struct ie_softc *sc;
    829   1.1       gwr {
    830  1.17       gwr 	int i;
    831  1.17       gwr 	int head = sc->rbhead;
    832  1.17       gwr 	int acc = 0;
    833   1.1       gwr 
    834   1.1       gwr 	do {
    835   1.1       gwr 		if (!(sc->rbuffs[sc->rbhead]->ie_rbd_actual & IE_RBD_USED)) {
    836   1.1       gwr #ifdef IEDEBUG
    837   1.1       gwr 			print_rbd(sc->rbuffs[sc->rbhead]);
    838   1.1       gwr #endif
    839   1.1       gwr 			log(LOG_ERR, "%s: receive descriptors out of sync at %d\n",
    840   1.1       gwr 			    sc->sc_dev.dv_xname, sc->rbhead);
    841   1.1       gwr 			iereset(sc);
    842   1.1       gwr 			return -1;
    843   1.1       gwr 		}
    844   1.3       gwr 
    845   1.1       gwr 		i = sc->rbuffs[head]->ie_rbd_actual & IE_RBD_LAST;
    846   1.1       gwr 
    847   1.1       gwr 		acc += ie_buflen(sc, head);
    848   1.1       gwr 		head = (head + 1) % sc->nrxbuf;
    849   1.1       gwr 	} while (!i);
    850   1.1       gwr 
    851   1.1       gwr 	return acc;
    852   1.1       gwr }
    853   1.1       gwr 
    854   1.1       gwr /*
    855   1.3       gwr  * Setup all necessary artifacts for an XMIT command, and then pass the XMIT
    856   1.3       gwr  * command to the chip to be executed.  On the way, if we have a BPF listener
    857   1.3       gwr  * also give him a copy.
    858   1.3       gwr  */
    859  1.16       gwr static void
    860   1.3       gwr iexmit(sc)
    861   1.3       gwr 	struct ie_softc *sc;
    862   1.3       gwr {
    863   1.3       gwr 
    864  1.17       gwr #ifdef IEDEBUG
    865  1.17       gwr 	if (sc->sc_debug & IED_XMIT)
    866  1.17       gwr 		printf("%s: xmit buffer %d\n", sc->sc_dev.dv_xname,
    867  1.17       gwr 		    sc->xctail);
    868  1.17       gwr #endif
    869  1.17       gwr 
    870   1.3       gwr #if NBPFILTER > 0
    871   1.3       gwr 	/*
    872   1.3       gwr 	 * If BPF is listening on this interface, let it see the packet before
    873   1.3       gwr 	 * we push it on the wire.
    874   1.3       gwr 	 */
    875   1.3       gwr 	if (sc->sc_arpcom.ac_if.if_bpf)
    876   1.3       gwr 		bpf_tap(sc->sc_arpcom.ac_if.if_bpf,
    877   1.3       gwr 		    sc->xmit_cbuffs[sc->xctail],
    878   1.3       gwr 		    SWAP(sc->xmit_buffs[sc->xctail]->ie_xmit_flags));
    879   1.3       gwr #endif
    880   1.3       gwr 
    881   1.3       gwr 	sc->xmit_buffs[sc->xctail]->ie_xmit_flags |= IE_XMIT_LAST;
    882   1.3       gwr 	sc->xmit_buffs[sc->xctail]->ie_xmit_next = SWAP(0xffff);
    883  1.17       gwr 	sc->xmit_buffs[sc->xctail]->ie_xmit_buf =
    884  1.17       gwr 	    Swap32(vtop24(sc, sc->xmit_cbuffs[sc->xctail]));
    885   1.3       gwr 
    886   1.3       gwr 	sc->xmit_cmds[sc->xctail]->com.ie_cmd_link = SWAP(0xffff);
    887   1.3       gwr 	sc->xmit_cmds[sc->xctail]->com.ie_cmd_cmd =
    888  1.17       gwr 	    IE_CMD_XMIT | IE_CMD_INTR | IE_CMD_LAST;
    889   1.3       gwr 
    890   1.3       gwr 	sc->xmit_cmds[sc->xctail]->ie_xmit_status = SWAP(0);
    891   1.3       gwr 	sc->xmit_cmds[sc->xctail]->ie_xmit_desc =
    892  1.17       gwr 	    vtop16sw(sc, (void*) sc->xmit_buffs[sc->xctail]);
    893   1.3       gwr 
    894   1.3       gwr 	sc->scb->ie_command_list =
    895  1.17       gwr 	    vtop16sw(sc, (void*) sc->xmit_cmds[sc->xctail]);
    896  1.16       gwr 	cmd_and_wait(sc, IE_CU_START, 0, 0);
    897   1.3       gwr 
    898   1.3       gwr 	sc->sc_arpcom.ac_if.if_timer = 5;
    899   1.3       gwr }
    900   1.3       gwr 
    901   1.3       gwr /*
    902   1.1       gwr  * Read data off the interface, and turn it into an mbuf chain.
    903   1.1       gwr  *
    904   1.1       gwr  * This code is DRAMATICALLY different from the previous version; this
    905   1.1       gwr  * version tries to allocate the entire mbuf chain up front, given the
    906   1.1       gwr  * length of the data available.  This enables us to allocate mbuf
    907   1.1       gwr  * clusters in many situations where before we would have had a long
    908   1.1       gwr  * chain of partially-full mbufs.  This should help to speed up the
    909   1.1       gwr  * operation considerably.  (Provided that it works, of course.)
    910   1.1       gwr  */
    911  1.17       gwr static inline struct mbuf *
    912  1.17       gwr ieget(sc, ehp, to_bpf)
    913   1.1       gwr 	struct ie_softc *sc;
    914   1.1       gwr 	struct ether_header *ehp;
    915  1.17       gwr 	int *to_bpf;
    916   1.1       gwr {
    917  1.17       gwr 	struct mbuf *top, **mp, *m;
    918  1.17       gwr 	int len, totlen, resid;
    919  1.17       gwr 	int thisrboff, thismboff;
    920  1.17       gwr 	int head;
    921   1.1       gwr 
    922   1.1       gwr 	totlen = ie_packet_len(sc);
    923   1.1       gwr 	if (totlen <= 0)
    924  1.17       gwr 		return 0;
    925   1.1       gwr 
    926  1.17       gwr 	head = sc->rbhead;
    927   1.1       gwr 
    928   1.1       gwr 	/*
    929   1.1       gwr 	 * Snarf the Ethernet header.
    930   1.1       gwr 	 */
    931  1.17       gwr 	(sc->sc_bcopy)((caddr_t)sc->cbuffs[head], (caddr_t)ehp, sizeof *ehp);
    932   1.1       gwr 
    933   1.1       gwr 	/*
    934   1.1       gwr 	 * As quickly as possible, check if this packet is for us.
    935   1.1       gwr 	 * If not, don't waste a single cycle copying the rest of the
    936   1.1       gwr 	 * packet in.
    937   1.1       gwr 	 * This is only a consideration when FILTER is defined; i.e., when
    938   1.1       gwr 	 * we are either running BPF or doing multicasting.
    939   1.1       gwr 	 */
    940   1.1       gwr 	if (!check_eh(sc, ehp, to_bpf)) {
    941   1.3       gwr 		/* just this case, it's not an error */
    942   1.3       gwr 		sc->sc_arpcom.ac_if.if_ierrors--;
    943  1.17       gwr 		return 0;
    944   1.1       gwr 	}
    945   1.1       gwr 
    946  1.17       gwr 	resid = totlen -= (thisrboff = sizeof *ehp);
    947  1.17       gwr 
    948  1.17       gwr 	MGETHDR(m, M_DONTWAIT, MT_DATA);
    949  1.17       gwr 	if (m == 0)
    950  1.17       gwr 		return 0;
    951   1.3       gwr 
    952   1.1       gwr 	m->m_pkthdr.rcvif = &sc->sc_arpcom.ac_if;
    953  1.17       gwr 	m->m_pkthdr.len = totlen;
    954  1.17       gwr 	len = MHLEN;
    955   1.1       gwr 	top = 0;
    956  1.17       gwr 	mp = &top;
    957   1.1       gwr 
    958   1.1       gwr 	/*
    959   1.1       gwr 	 * This loop goes through and allocates mbufs for all the data we will
    960   1.1       gwr 	 * be copying in.  It does not actually do the copying yet.
    961   1.1       gwr 	 */
    962  1.17       gwr 	while (totlen > 0) {
    963   1.1       gwr 		if (top) {
    964   1.1       gwr 			MGET(m, M_DONTWAIT, MT_DATA);
    965  1.17       gwr 			if (m == 0) {
    966   1.1       gwr 				m_freem(top);
    967  1.17       gwr 				return 0;
    968   1.1       gwr 			}
    969  1.17       gwr 			len = MLEN;
    970   1.1       gwr 		}
    971  1.17       gwr 		if (totlen >= MINCLSIZE) {
    972   1.1       gwr 			MCLGET(m, M_DONTWAIT);
    973   1.1       gwr 			if (m->m_flags & M_EXT)
    974  1.17       gwr 				len = MCLBYTES;
    975   1.1       gwr 		}
    976  1.17       gwr 		m->m_len = len = min(totlen, len);
    977  1.17       gwr 		totlen -= len;
    978  1.17       gwr 		*mp = m;
    979  1.17       gwr 		mp = &m->m_next;
    980  1.17       gwr 	}
    981   1.1       gwr 
    982   1.1       gwr 	m = top;
    983   1.1       gwr 	thismboff = 0;
    984   1.1       gwr 
    985   1.1       gwr 	/*
    986   1.1       gwr 	 * Now we take the mbuf chain (hopefully only one mbuf most of the
    987   1.1       gwr 	 * time) and stuff the data into it.  There are no possible failures
    988   1.1       gwr 	 * at or after this point.
    989   1.1       gwr 	 */
    990  1.17       gwr 	while (resid > 0) {
    991  1.17       gwr 		int thisrblen = ie_buflen(sc, head) - thisrboff;
    992  1.17       gwr 		int thismblen = m->m_len - thismboff;
    993  1.17       gwr 
    994  1.17       gwr 		len = min(thisrblen, thismblen);
    995  1.17       gwr 		(sc->sc_bcopy)((caddr_t)(sc->cbuffs[head] + thisrboff),
    996  1.17       gwr 		    mtod(m, caddr_t) + thismboff, (u_int)len);
    997  1.17       gwr 		resid -= len;
    998   1.1       gwr 
    999  1.17       gwr 		if (len == thismblen) {
   1000   1.1       gwr 			m = m->m_next;
   1001  1.17       gwr 			thismboff = 0;
   1002  1.17       gwr 		} else
   1003  1.17       gwr 			thismboff += len;
   1004  1.17       gwr 
   1005  1.17       gwr 		if (len == thisrblen) {
   1006  1.17       gwr 			head = (head + 1) % sc->nrxbuf;
   1007  1.17       gwr 			thisrboff = 0;
   1008  1.17       gwr 		} else
   1009  1.17       gwr 			thisrboff += len;
   1010   1.1       gwr 	}
   1011   1.1       gwr 
   1012   1.1       gwr 	/*
   1013   1.1       gwr 	 * Unless something changed strangely while we were doing the copy,
   1014   1.1       gwr 	 * we have now copied everything in from the shared memory.
   1015   1.1       gwr 	 * This means that we are done.
   1016   1.1       gwr 	 */
   1017  1.17       gwr 	return top;
   1018   1.1       gwr }
   1019   1.1       gwr 
   1020   1.1       gwr /*
   1021   1.1       gwr  * Read frame NUM from unit UNIT (pre-cached as IE).
   1022   1.1       gwr  *
   1023   1.1       gwr  * This routine reads the RFD at NUM, and copies in the buffers from
   1024   1.1       gwr  * the list of RBD, then rotates the RBD and RFD lists so that the receiver
   1025   1.1       gwr  * doesn't start complaining.  Trailers are DROPPED---there's no point
   1026   1.1       gwr  * in wasting time on confusing code to deal with them.  Hopefully,
   1027   1.1       gwr  * this machine will never ARP for trailers anyway.
   1028   1.1       gwr  */
   1029   1.1       gwr static void
   1030   1.1       gwr ie_readframe(sc, num)
   1031   1.1       gwr 	struct ie_softc *sc;
   1032  1.17       gwr 	int num;			/* frame number to read */
   1033   1.1       gwr {
   1034   1.3       gwr 	int status;
   1035   1.1       gwr 	struct mbuf *m = 0;
   1036   1.1       gwr 	struct ether_header eh;
   1037   1.1       gwr #if NBPFILTER > 0
   1038  1.17       gwr 	int bpf_gets_it = 0;
   1039   1.1       gwr #endif
   1040   1.1       gwr 
   1041   1.3       gwr 	status = sc->rframes[num]->ie_fd_status;
   1042   1.1       gwr 
   1043  1.17       gwr 	/* Advance the RFD list, since we're done with this descriptor. */
   1044   1.1       gwr 	sc->rframes[num]->ie_fd_status = SWAP(0);
   1045   1.1       gwr 	sc->rframes[num]->ie_fd_last |= IE_FD_LAST;
   1046   1.1       gwr 	sc->rframes[sc->rftail]->ie_fd_last &= ~IE_FD_LAST;
   1047   1.1       gwr 	sc->rftail = (sc->rftail + 1) % sc->nframes;
   1048   1.1       gwr 	sc->rfhead = (sc->rfhead + 1) % sc->nframes;
   1049   1.1       gwr 
   1050   1.3       gwr 	if (status & IE_FD_OK) {
   1051   1.1       gwr #if NBPFILTER > 0
   1052  1.17       gwr 		m = ieget(sc, &eh, &bpf_gets_it);
   1053   1.1       gwr #else
   1054  1.17       gwr 		m = ieget(sc, &eh, 0);
   1055   1.1       gwr #endif
   1056  1.17       gwr 		ie_drop_packet_buffer(sc);
   1057  1.17       gwr 	}
   1058  1.17       gwr 	if (m == 0) {
   1059  1.17       gwr 		sc->sc_arpcom.ac_if.if_ierrors++;
   1060  1.17       gwr 		return;
   1061   1.1       gwr 	}
   1062   1.3       gwr 
   1063   1.1       gwr #ifdef IEDEBUG
   1064   1.1       gwr 	if (sc->sc_debug & IED_READFRAME)
   1065  1.14  christos 		printf("%s: frame from ether %s type %x\n", sc->sc_dev.dv_xname,
   1066   1.1       gwr 		    ether_sprintf(eh.ether_shost), (u_int)eh.ether_type);
   1067   1.1       gwr #endif
   1068   1.1       gwr 
   1069   1.1       gwr #if NBPFILTER > 0
   1070   1.1       gwr 	/*
   1071   1.1       gwr 	 * Check for a BPF filter; if so, hand it up.
   1072   1.1       gwr 	 * Note that we have to stick an extra mbuf up front, because
   1073   1.1       gwr 	 * bpf_mtap expects to have the ether header at the front.
   1074   1.1       gwr 	 * It doesn't matter that this results in an ill-formatted mbuf chain,
   1075   1.1       gwr 	 * since BPF just looks at the data.  (It doesn't try to free the mbuf,
   1076   1.1       gwr 	 * tho' it will make a copy for tcpdump.)
   1077   1.1       gwr 	 */
   1078   1.1       gwr 	if (bpf_gets_it) {
   1079   1.1       gwr 		struct mbuf m0;
   1080   1.1       gwr 		m0.m_len = sizeof eh;
   1081   1.1       gwr 		m0.m_data = (caddr_t)&eh;
   1082   1.1       gwr 		m0.m_next = m;
   1083   1.1       gwr 
   1084  1.17       gwr 		/* Pass it up. */
   1085   1.1       gwr 		bpf_mtap(sc->sc_arpcom.ac_if.if_bpf, &m0);
   1086  1.17       gwr 
   1087  1.17       gwr 		/*
   1088  1.17       gwr 		 * A signal passed up from the filtering code indicating that
   1089  1.17       gwr 		 * the packet is intended for BPF but not for the protocol
   1090  1.17       gwr 		 * machinery.  We can save a few cycles by not handing it off
   1091  1.17       gwr 		 * to them.
   1092  1.17       gwr 		 */
   1093  1.17       gwr 		if (bpf_gets_it == 2) {
   1094  1.17       gwr 			m_freem(m);
   1095  1.17       gwr 			return;
   1096  1.17       gwr 		}
   1097   1.1       gwr 	}
   1098   1.3       gwr #endif	/* NBPFILTER > 0 */
   1099   1.1       gwr 
   1100   1.1       gwr 	/*
   1101   1.1       gwr 	 * In here there used to be code to check destination addresses upon
   1102   1.1       gwr 	 * receipt of a packet.  We have deleted that code, and replaced it
   1103   1.1       gwr 	 * with code to check the address much earlier in the cycle, before
   1104   1.1       gwr 	 * copying the data in; this saves us valuable cycles when operating
   1105   1.1       gwr 	 * as a multicast router or when using BPF.
   1106   1.1       gwr 	 */
   1107   1.1       gwr 
   1108   1.1       gwr 	/*
   1109   1.1       gwr 	 * Finally pass this packet up to higher layers.
   1110   1.1       gwr 	 */
   1111   1.1       gwr 	ether_input(&sc->sc_arpcom.ac_if, &eh, m);
   1112  1.17       gwr 	sc->sc_arpcom.ac_if.if_ipackets++;
   1113   1.1       gwr }
   1114   1.1       gwr 
   1115   1.1       gwr static void
   1116   1.1       gwr ie_drop_packet_buffer(sc)
   1117   1.1       gwr 	struct ie_softc *sc;
   1118   1.1       gwr {
   1119   1.3       gwr 	int i;
   1120   1.1       gwr 
   1121   1.1       gwr 	do {
   1122   1.1       gwr 		/*
   1123   1.1       gwr 		 * This means we are somehow out of sync.  So, we reset the
   1124   1.1       gwr 		 * adapter.
   1125   1.1       gwr 		 */
   1126   1.1       gwr 		if (!(sc->rbuffs[sc->rbhead]->ie_rbd_actual & IE_RBD_USED)) {
   1127   1.1       gwr #ifdef IEDEBUG
   1128   1.1       gwr 			print_rbd(sc->rbuffs[sc->rbhead]);
   1129   1.1       gwr #endif
   1130   1.1       gwr 			log(LOG_ERR, "%s: receive descriptors out of sync at %d\n",
   1131   1.1       gwr 			    sc->sc_dev.dv_xname, sc->rbhead);
   1132   1.1       gwr 			iereset(sc);
   1133   1.1       gwr 			return;
   1134   1.1       gwr 		}
   1135   1.3       gwr 
   1136   1.1       gwr 		i = sc->rbuffs[sc->rbhead]->ie_rbd_actual & IE_RBD_LAST;
   1137   1.1       gwr 
   1138   1.1       gwr 		sc->rbuffs[sc->rbhead]->ie_rbd_length |= IE_RBD_LAST;
   1139   1.1       gwr 		sc->rbuffs[sc->rbhead]->ie_rbd_actual = SWAP(0);
   1140   1.1       gwr 		sc->rbhead = (sc->rbhead + 1) % sc->nrxbuf;
   1141   1.1       gwr 		sc->rbuffs[sc->rbtail]->ie_rbd_length &= ~IE_RBD_LAST;
   1142   1.1       gwr 		sc->rbtail = (sc->rbtail + 1) % sc->nrxbuf;
   1143   1.1       gwr 	} while (!i);
   1144   1.1       gwr }
   1145   1.1       gwr 
   1146   1.1       gwr /*
   1147   1.1       gwr  * Start transmission on an interface.
   1148   1.1       gwr  */
   1149  1.17       gwr static void
   1150   1.1       gwr iestart(ifp)
   1151   1.1       gwr 	struct ifnet *ifp;
   1152   1.1       gwr {
   1153  1.11   thorpej 	struct ie_softc *sc = ifp->if_softc;
   1154   1.1       gwr 	struct mbuf *m0, *m;
   1155   1.1       gwr 	u_char *buffer;
   1156   1.1       gwr 	u_short len;
   1157   1.1       gwr 
   1158  1.17       gwr 	if ((ifp->if_flags & (IFF_RUNNING | IFF_OACTIVE)) != IFF_RUNNING)
   1159   1.4       gwr 		return;
   1160   1.1       gwr 
   1161  1.17       gwr 	for (;;) {
   1162  1.17       gwr 		if (sc->xmit_busy == sc->ntxbuf) {
   1163  1.17       gwr 			ifp->if_flags |= IFF_OACTIVE;
   1164  1.17       gwr 			break;
   1165  1.17       gwr 		}
   1166   1.3       gwr 
   1167  1.17       gwr 		IF_DEQUEUE(&ifp->if_snd, m0);
   1168  1.17       gwr 		if (m0 == 0)
   1169   1.1       gwr 			break;
   1170   1.1       gwr 
   1171  1.17       gwr 		/* We need to use m->m_pkthdr.len, so require the header */
   1172  1.17       gwr 		if ((m0->m_flags & M_PKTHDR) == 0)
   1173  1.17       gwr 			panic("iestart: no header mbuf");
   1174  1.17       gwr 
   1175  1.17       gwr #if NBPFILTER > 0
   1176  1.17       gwr 		/* Tap off here if there is a BPF listener. */
   1177  1.17       gwr 		if (ifp->if_bpf)
   1178  1.17       gwr 			bpf_mtap(ifp->if_bpf, m0);
   1179  1.17       gwr #endif
   1180  1.17       gwr 
   1181  1.17       gwr #ifdef IEDEBUG
   1182  1.17       gwr 		if (sc->sc_debug & IED_ENQ)
   1183  1.17       gwr 			printf("%s: fill buffer %d\n", sc->sc_dev.dv_xname,
   1184  1.17       gwr 			    sc->xchead);
   1185  1.17       gwr #endif
   1186  1.17       gwr 
   1187   1.3       gwr 		buffer = sc->xmit_cbuffs[sc->xchead];
   1188  1.17       gwr 		for (m = m0; m != 0; m = m->m_next) {
   1189   1.3       gwr 			(sc->sc_bcopy)(mtod(m, caddr_t), buffer, m->m_len);
   1190   1.1       gwr 			buffer += m->m_len;
   1191   1.1       gwr 		}
   1192  1.17       gwr 		len = max(m0->m_pkthdr.len, ETHER_MIN_LEN);
   1193   1.1       gwr 
   1194   1.1       gwr 		m_freem(m0);
   1195   1.3       gwr 		sc->xmit_buffs[sc->xchead]->ie_xmit_flags = SWAP(len);
   1196   1.1       gwr 
   1197  1.17       gwr 		/* Start the first packet transmitting. */
   1198  1.17       gwr 		if (sc->xmit_busy == 0)
   1199  1.17       gwr 			iexmit(sc);
   1200   1.1       gwr 
   1201  1.17       gwr 		sc->xchead = (sc->xchead + 1) % sc->ntxbuf;
   1202  1.17       gwr 		sc->xmit_busy++;
   1203   1.1       gwr 	}
   1204   1.1       gwr }
   1205   1.1       gwr 
   1206  1.17       gwr static void
   1207   1.1       gwr iereset(sc)
   1208   1.1       gwr 	struct ie_softc *sc;
   1209   1.1       gwr {
   1210   1.6   mycroft 	int s = splnet();
   1211   1.1       gwr 
   1212  1.18       gwr 	/* No message here.  The caller does that. */
   1213  1.17       gwr 	iestop(sc);
   1214   1.1       gwr 
   1215   1.1       gwr 	/*
   1216   1.1       gwr 	 * Stop i82586 dead in its tracks.
   1217   1.1       gwr 	 */
   1218  1.16       gwr 	if (cmd_and_wait(sc, IE_RU_ABORT | IE_CU_ABORT, 0, 0))
   1219  1.14  christos 		printf("%s: abort commands timed out\n", sc->sc_dev.dv_xname);
   1220   1.1       gwr 
   1221  1.16       gwr 	if (cmd_and_wait(sc, IE_RU_DISABLE | IE_CU_STOP, 0, 0))
   1222  1.14  christos 		printf("%s: disable commands timed out\n", sc->sc_dev.dv_xname);
   1223   1.1       gwr 
   1224  1.17       gwr 	ieinit(sc);
   1225   1.1       gwr 
   1226   1.1       gwr 	splx(s);
   1227   1.1       gwr }
   1228   1.1       gwr 
   1229   1.1       gwr /*
   1230   1.1       gwr  * Send a command to the controller and wait for it to either
   1231   1.1       gwr  * complete or be accepted, depending on the command.  If the
   1232   1.1       gwr  * command pointer is null, then pretend that the command is
   1233   1.1       gwr  * not an action command.  If the command pointer is not null,
   1234   1.1       gwr  * and the command is an action command, wait for
   1235   1.1       gwr  * ((volatile struct ie_cmd_common *)pcmd)->ie_cmd_status & MASK
   1236   1.1       gwr  * to become true.
   1237   1.1       gwr  */
   1238   1.1       gwr static int
   1239  1.16       gwr cmd_and_wait(sc, cmd, pcmd, mask)
   1240   1.1       gwr 	struct ie_softc *sc;
   1241  1.17       gwr 	int cmd;
   1242  1.17       gwr 	void *pcmd;	/* XXX - Was volatile */
   1243  1.17       gwr 	int mask;
   1244   1.1       gwr {
   1245   1.1       gwr 	volatile struct ie_cmd_common *cc = pcmd;
   1246   1.1       gwr 	volatile struct ie_sys_ctl_block *scb = sc->scb;
   1247  1.17       gwr 	int tmo;
   1248   1.1       gwr 
   1249   1.1       gwr 	scb->ie_command = (u_short)cmd;
   1250  1.17       gwr 	(sc->chan_attn)(sc);
   1251  1.17       gwr 
   1252  1.17       gwr 	/* Wait for the command to be accepted by the CU. */
   1253  1.17       gwr 	tmo = 10;
   1254  1.17       gwr 	while (scb->ie_command && --tmo)
   1255  1.17       gwr 		delay(10);
   1256  1.17       gwr 	if (scb->ie_command) {
   1257  1.17       gwr #ifdef	IEDEBUG
   1258  1.17       gwr 		printf("%s: cmd_and_wait, CU stuck (1)\n",
   1259  1.17       gwr 		    sc->sc_dev.dv_xname);
   1260  1.17       gwr #endif
   1261  1.17       gwr 		return -1;	/* timed out */
   1262  1.17       gwr 	}
   1263   1.1       gwr 
   1264  1.17       gwr 	/*
   1265  1.17       gwr 	 * If asked, also wait for it to finish.
   1266  1.17       gwr 	 */
   1267   1.1       gwr 	if (IE_ACTION_COMMAND(cmd) && pcmd) {
   1268   1.1       gwr 
   1269   1.1       gwr 		/*
   1270  1.17       gwr 		 * According to the packet driver, the minimum timeout should
   1271  1.17       gwr 		 * be .369 seconds, which we round up to .4.
   1272   1.1       gwr 		 */
   1273  1.17       gwr 		tmo = 36900;
   1274   1.1       gwr 
   1275   1.1       gwr 		/*
   1276   1.1       gwr 		 * Now spin-lock waiting for status.  This is not a very nice
   1277   1.1       gwr 		 * thing to do, but I haven't figured out how, or indeed if, we
   1278   1.1       gwr 		 * can put the process waiting for action to sleep.  (We may
   1279   1.1       gwr 		 * be getting called through some other timeout running in the
   1280   1.1       gwr 		 * kernel.)
   1281   1.1       gwr 		 */
   1282  1.17       gwr 		while (((cc->ie_cmd_status & mask) == 0) && --tmo)
   1283  1.17       gwr 			delay(10);
   1284   1.1       gwr 
   1285  1.17       gwr 		if ((cc->ie_cmd_status & mask) == 0) {
   1286  1.17       gwr #ifdef	IEDEBUG
   1287  1.17       gwr 			printf("%s: cmd_and_wait, CU stuck (2)\n",
   1288  1.17       gwr 				   sc->sc_dev.dv_xname);
   1289  1.17       gwr #endif
   1290  1.17       gwr 			return -1;	/* timed out */
   1291  1.17       gwr 		}
   1292   1.1       gwr 	}
   1293  1.17       gwr 	return 0;
   1294   1.1       gwr }
   1295   1.1       gwr 
   1296   1.1       gwr /*
   1297  1.17       gwr  * Run the time-domain reflectometer.
   1298   1.1       gwr  */
   1299   1.3       gwr static void
   1300   1.1       gwr run_tdr(sc, cmd)
   1301   1.1       gwr 	struct ie_softc *sc;
   1302   1.1       gwr 	struct ie_tdr_cmd *cmd;
   1303   1.1       gwr {
   1304   1.3       gwr 	int result;
   1305   1.1       gwr 
   1306   1.1       gwr 	cmd->com.ie_cmd_status = SWAP(0);
   1307   1.1       gwr 	cmd->com.ie_cmd_cmd = IE_CMD_TDR | IE_CMD_LAST;
   1308   1.1       gwr 	cmd->com.ie_cmd_link = SWAP(0xffff);
   1309   1.1       gwr 
   1310  1.17       gwr 	sc->scb->ie_command_list = vtop16sw(sc, cmd);
   1311   1.1       gwr 	cmd->ie_tdr_time = SWAP(0);
   1312   1.1       gwr 
   1313  1.16       gwr 	if (cmd_and_wait(sc, IE_CU_START, cmd, IE_STAT_COMPL) ||
   1314   1.1       gwr 	    !(cmd->com.ie_cmd_status & IE_STAT_OK))
   1315  1.17       gwr 		result = 0x10000;	/* impossible value */
   1316   1.1       gwr 	else
   1317   1.1       gwr 		result = cmd->ie_tdr_time;
   1318   1.1       gwr 
   1319   1.1       gwr 	ie_ack(sc, IE_ST_WHENCE);
   1320   1.1       gwr 
   1321   1.1       gwr 	if (result & IE_TDR_SUCCESS)
   1322   1.1       gwr 		return;
   1323   1.1       gwr 
   1324   1.1       gwr 	if (result & 0x10000) {
   1325  1.14  christos 		printf("%s: TDR command failed\n", sc->sc_dev.dv_xname);
   1326   1.1       gwr 	} else if (result & IE_TDR_XCVR) {
   1327  1.14  christos 		printf("%s: transceiver problem\n", sc->sc_dev.dv_xname);
   1328   1.1       gwr 	} else if (result & IE_TDR_OPEN) {
   1329  1.14  christos 		printf("%s: TDR detected an open %d clocks away\n",
   1330   1.1       gwr 		    sc->sc_dev.dv_xname, SWAP(result & IE_TDR_TIME));
   1331   1.1       gwr 	} else if (result & IE_TDR_SHORT) {
   1332  1.14  christos 		printf("%s: TDR detected a short %d clocks away\n",
   1333   1.1       gwr 		    sc->sc_dev.dv_xname, SWAP(result & IE_TDR_TIME));
   1334   1.1       gwr 	} else {
   1335  1.14  christos 		printf("%s: TDR returned unknown status %x\n",
   1336   1.1       gwr 		    sc->sc_dev.dv_xname, result);
   1337   1.1       gwr 	}
   1338   1.1       gwr }
   1339   1.1       gwr 
   1340   1.1       gwr /*
   1341  1.17       gwr  * iememinit: set up the buffers
   1342   1.1       gwr  *
   1343   1.1       gwr  * we have a block of KVA at sc->buf_area which is of size sc->buf_area_sz.
   1344   1.1       gwr  * this is to be used for the buffers.  the chip indexs its control data
   1345   1.1       gwr  * structures with 16 bit offsets, and it indexes actual buffers with
   1346   1.1       gwr  * 24 bit addresses.   so we should allocate control buffers first so that
   1347   1.1       gwr  * we don't overflow the 16 bit offset field.   The number of transmit
   1348   1.1       gwr  * buffers is fixed at compile time.
   1349   1.1       gwr  *
   1350   1.1       gwr  * note: this function was written to be easy to understand, rather than
   1351   1.1       gwr  *       highly efficient (it isn't in the critical path).
   1352  1.17       gwr  *
   1353  1.17       gwr  * The memory layout is: tbufs, rbufs, (gap), control blocks
   1354  1.17       gwr  * [tbuf0, tbuf1] [rbuf0,...rbufN] gap [rframes] [tframes]
   1355  1.17       gwr  * XXX - This needs review...
   1356   1.1       gwr  */
   1357   1.1       gwr static void
   1358  1.17       gwr iememinit(sc)
   1359   1.1       gwr 	struct ie_softc *sc;
   1360   1.1       gwr {
   1361  1.17       gwr 	char *ptr;
   1362  1.17       gwr 	int i;
   1363  1.17       gwr 	u_short nxt;
   1364   1.1       gwr 
   1365  1.17       gwr 	/* First, zero all the memory. */
   1366  1.17       gwr 	ptr = sc->buf_area;
   1367   1.3       gwr 	(sc->sc_bzero)(ptr, sc->buf_area_sz);
   1368   1.1       gwr 
   1369  1.17       gwr 	/* Allocate tx/rx buffers. */
   1370  1.17       gwr 	for (i = 0; i < NTXBUF; i++) {
   1371  1.17       gwr 		sc->xmit_cbuffs[i] = ptr;
   1372  1.17       gwr 		ptr += IE_TBUF_SIZE;
   1373  1.17       gwr 	}
   1374  1.17       gwr 	for (i = 0; i < sc->nrxbuf; i++) {
   1375  1.17       gwr 		sc->cbuffs[i] = ptr;
   1376  1.17       gwr 		ptr += IE_RBUF_SIZE;
   1377  1.17       gwr 	}
   1378  1.17       gwr 
   1379  1.17       gwr 	/* Small pad (Don't trust the chip...) */
   1380  1.17       gwr 	ptr += 16;
   1381  1.17       gwr 
   1382  1.17       gwr 	/* Allocate and fill in xmit buffer descriptors. */
   1383  1.17       gwr 	for (i = 0; i < NTXBUF; i++) {
   1384  1.17       gwr 		sc->xmit_buffs[i] = (volatile void *) ptr;
   1385  1.17       gwr 		ptr = Align(ptr + sizeof(*sc->xmit_buffs[i]));
   1386  1.17       gwr 		sc->xmit_buffs[i]->ie_xmit_buf =
   1387  1.17       gwr 		    Swap32(vtop24(sc, sc->xmit_cbuffs[i]));
   1388  1.17       gwr 		sc->xmit_buffs[i]->ie_xmit_next = SWAP(0xffff);
   1389  1.17       gwr 	}
   1390  1.17       gwr 
   1391  1.17       gwr 	/* Allocate and fill in recv buffer descriptors. */
   1392  1.17       gwr 	for (i = 0; i < sc->nrxbuf; i++) {
   1393  1.17       gwr 		sc->rbuffs[i] = (volatile void *) ptr;
   1394  1.17       gwr 		ptr = Align(ptr + sizeof(*sc->rbuffs[i]));
   1395  1.17       gwr 		sc->rbuffs[i]->ie_rbd_buffer =
   1396  1.17       gwr 			Swap32(vtop24(sc, sc->cbuffs[i]));
   1397  1.17       gwr 		sc->rbuffs[i]->ie_rbd_length = SWAP(IE_RBUF_SIZE);
   1398  1.17       gwr 	}
   1399  1.17       gwr 
   1400  1.17       gwr 	/* link together recv bufs and set EOL on last */
   1401  1.17       gwr 	i = sc->nrxbuf - 1;
   1402  1.17       gwr 	sc->rbuffs[i]->ie_rbd_length |= IE_RBD_LAST;
   1403  1.17       gwr 	nxt = vtop16sw(sc, (void*) sc->rbuffs[0]);
   1404  1.17       gwr 	do {
   1405  1.17       gwr 		sc->rbuffs[i]->ie_rbd_next = nxt;
   1406  1.17       gwr 		nxt = vtop16sw(sc, (void*) sc->rbuffs[i]);
   1407  1.17       gwr 	} while (--i >= 0);
   1408  1.17       gwr 
   1409  1.17       gwr 	/* Allocate transmit commands. */
   1410  1.17       gwr 	for (i = 0; i < NTXBUF; i++) {
   1411  1.17       gwr 		sc->xmit_cmds[i] = (volatile void *) ptr;
   1412  1.17       gwr 		ptr = Align(ptr + sizeof(*sc->xmit_cmds[i]));
   1413  1.17       gwr 		sc->xmit_cmds[i]->com.ie_cmd_link = SWAP(0xffff);
   1414  1.17       gwr 	}
   1415  1.17       gwr 
   1416  1.17       gwr 	/* Allocate receive frames. */
   1417  1.17       gwr 	for (i = 0; i < sc->nframes; i++) {
   1418  1.17       gwr 		sc->rframes[i] = (volatile void *) ptr;
   1419  1.17       gwr 		ptr = Align(ptr + sizeof(*sc->rframes[i]));
   1420  1.17       gwr 	}
   1421  1.17       gwr 
   1422  1.17       gwr 	/* Link together recv frames and set EOL on last */
   1423  1.17       gwr 	i = sc->nframes - 1;
   1424  1.17       gwr 	sc->rframes[i]->ie_fd_last |= IE_FD_LAST;
   1425  1.17       gwr 	nxt = vtop16sw(sc, (void*) sc->rframes[0]);
   1426  1.17       gwr 	do {
   1427  1.17       gwr 		sc->rframes[i]->ie_fd_next = nxt;
   1428  1.17       gwr 		nxt = vtop16sw(sc, (void*) sc->rframes[i]);
   1429  1.17       gwr 	} while (--i >= 0);
   1430   1.1       gwr 
   1431   1.1       gwr 
   1432   1.3       gwr 	/* Pointers to last packet sent and next available transmit buffer. */
   1433   1.3       gwr 	sc->xchead = sc->xctail = 0;
   1434   1.3       gwr 
   1435  1.17       gwr 	/* Clear transmit-busy flag. */
   1436   1.3       gwr 	sc->xmit_busy = 0;
   1437   1.1       gwr 
   1438   1.1       gwr 	/*
   1439  1.17       gwr 	 * Set the head and tail pointers on receive to keep track of
   1440  1.17       gwr 	 * the order in which RFDs and RBDs are used.   link the
   1441  1.17       gwr 	 * recv frames and buffer into the scb.
   1442   1.1       gwr 	 */
   1443   1.1       gwr 	sc->rfhead = 0;
   1444   1.1       gwr 	sc->rftail = sc->nframes - 1;
   1445   1.1       gwr 	sc->rbhead = 0;
   1446   1.1       gwr 	sc->rbtail = sc->nrxbuf - 1;
   1447   1.1       gwr 
   1448  1.17       gwr 	sc->scb->ie_recv_list =
   1449  1.17       gwr 	    vtop16sw(sc, (void*) sc->rframes[0]);
   1450  1.17       gwr 	sc->rframes[0]->ie_fd_buf_desc =
   1451  1.17       gwr 	    vtop16sw(sc, (void*) sc->rbuffs[0]);
   1452   1.1       gwr 
   1453  1.17       gwr 	i = (ptr - sc->buf_area);
   1454   1.1       gwr #ifdef IEDEBUG
   1455  1.17       gwr 	printf("IE_DEBUG: used %d of %d bytes\n", i, sc->buf_area_sz);
   1456   1.1       gwr #endif
   1457  1.17       gwr 	if (i > sc->buf_area_sz)
   1458  1.17       gwr 		panic("ie: iememinit, out of space");
   1459   1.1       gwr }
   1460   1.1       gwr 
   1461   1.1       gwr /*
   1462   1.1       gwr  * Run the multicast setup command.
   1463   1.6   mycroft  * Called at splnet().
   1464   1.1       gwr  */
   1465   1.1       gwr static int
   1466   1.1       gwr mc_setup(sc, ptr)
   1467   1.1       gwr 	struct ie_softc *sc;
   1468   1.3       gwr 	void *ptr;
   1469   1.1       gwr {
   1470  1.17       gwr 	struct ie_mcast_cmd *cmd = ptr;	/* XXX - Was volatile */
   1471   1.1       gwr 
   1472   1.1       gwr 	cmd->com.ie_cmd_status = SWAP(0);
   1473   1.1       gwr 	cmd->com.ie_cmd_cmd = IE_CMD_MCAST | IE_CMD_LAST;
   1474   1.1       gwr 	cmd->com.ie_cmd_link = SWAP(0xffff);
   1475   1.1       gwr 
   1476   1.3       gwr 	(sc->sc_bcopy)((caddr_t)sc->mcast_addrs, (caddr_t)cmd->ie_mcast_addrs,
   1477   1.1       gwr 	    sc->mcast_count * sizeof *sc->mcast_addrs);
   1478   1.1       gwr 
   1479   1.1       gwr 	cmd->ie_mcast_bytes =
   1480   1.3       gwr 		SWAP(sc->mcast_count * ETHER_ADDR_LEN);	/* grrr... */
   1481   1.1       gwr 
   1482  1.17       gwr 	sc->scb->ie_command_list = vtop16sw(sc, cmd);
   1483  1.16       gwr 	if (cmd_and_wait(sc, IE_CU_START, cmd, IE_STAT_COMPL) ||
   1484   1.1       gwr 	    !(cmd->com.ie_cmd_status & IE_STAT_OK)) {
   1485  1.14  christos 		printf("%s: multicast address setup command failed\n",
   1486   1.1       gwr 		    sc->sc_dev.dv_xname);
   1487   1.1       gwr 		return 0;
   1488   1.1       gwr 	}
   1489   1.1       gwr 	return 1;
   1490   1.1       gwr }
   1491   1.1       gwr 
   1492  1.17       gwr static inline void
   1493  1.17       gwr ie_setup_config(cmd, promiscuous, manchester)
   1494  1.17       gwr 	struct ie_config_cmd *cmd;	/* XXX - was volatile */
   1495  1.17       gwr 	int promiscuous, manchester;
   1496  1.17       gwr {
   1497  1.17       gwr 
   1498  1.17       gwr 	/*
   1499  1.17       gwr 	 * these are all char's so no need to byte-swap
   1500  1.17       gwr 	 */
   1501  1.17       gwr 	cmd->ie_config_count = 0x0c;
   1502  1.17       gwr 	cmd->ie_fifo = 8;
   1503  1.17       gwr 	cmd->ie_save_bad = 0x40;
   1504  1.17       gwr 	cmd->ie_addr_len = 0x2e;
   1505  1.17       gwr 	cmd->ie_priority = 0;
   1506  1.17       gwr 	cmd->ie_ifs = 0x60;
   1507  1.17       gwr 	cmd->ie_slot_low = 0;
   1508  1.17       gwr 	cmd->ie_slot_high = 0xf2;
   1509  1.17       gwr 	cmd->ie_promisc = promiscuous | manchester << 2;
   1510  1.17       gwr 	cmd->ie_crs_cdt = 0;
   1511  1.17       gwr 	cmd->ie_min_len = 64;
   1512  1.17       gwr 	cmd->ie_junk = 0xff;
   1513  1.17       gwr }
   1514  1.17       gwr 
   1515   1.1       gwr /*
   1516   1.1       gwr  * This routine inits the ie.
   1517   1.1       gwr  * This includes executing the CONFIGURE, IA-SETUP, and MC-SETUP commands,
   1518   1.1       gwr  * starting the receiver unit, and clearing interrupts.
   1519   1.1       gwr  *
   1520   1.6   mycroft  * THIS ROUTINE MUST BE CALLED AT splnet() OR HIGHER.
   1521   1.1       gwr  */
   1522  1.17       gwr static int
   1523   1.1       gwr ieinit(sc)
   1524   1.1       gwr 	struct ie_softc *sc;
   1525   1.1       gwr {
   1526   1.1       gwr 	volatile struct ie_sys_ctl_block *scb = sc->scb;
   1527   1.3       gwr 	void *ptr;
   1528   1.1       gwr 
   1529  1.17       gwr 	ptr = sc->buf_area;	/* XXX - Use scb instead? */
   1530   1.1       gwr 
   1531   1.1       gwr 	/*
   1532   1.1       gwr 	 * Send the configure command first.
   1533   1.1       gwr 	 */
   1534   1.1       gwr 	{
   1535  1.17       gwr 		struct ie_config_cmd *cmd = ptr;	/* XXX - Was volatile */
   1536   1.1       gwr 
   1537  1.17       gwr 		scb->ie_command_list = vtop16sw(sc, cmd);
   1538   1.1       gwr 		cmd->com.ie_cmd_status = SWAP(0);
   1539   1.1       gwr 		cmd->com.ie_cmd_cmd = IE_CMD_CONFIG | IE_CMD_LAST;
   1540   1.1       gwr 		cmd->com.ie_cmd_link = SWAP(0xffff);
   1541   1.1       gwr 
   1542  1.17       gwr 		ie_setup_config(cmd, (sc->promisc != 0), 0);
   1543   1.1       gwr 
   1544  1.16       gwr 		if (cmd_and_wait(sc, IE_CU_START, cmd, IE_STAT_COMPL) ||
   1545   1.1       gwr 		    !(cmd->com.ie_cmd_status & IE_STAT_OK)) {
   1546  1.14  christos 			printf("%s: configure command failed\n",
   1547   1.1       gwr 			    sc->sc_dev.dv_xname);
   1548   1.1       gwr 			return 0;
   1549   1.1       gwr 		}
   1550   1.1       gwr 	}
   1551   1.3       gwr 
   1552   1.1       gwr 	/*
   1553   1.1       gwr 	 * Now send the Individual Address Setup command.
   1554   1.1       gwr 	 */
   1555   1.1       gwr 	{
   1556  1.17       gwr 		struct ie_iasetup_cmd *cmd = ptr;	/* XXX - Was volatile */
   1557   1.1       gwr 
   1558  1.17       gwr 		scb->ie_command_list = vtop16sw(sc, cmd);
   1559   1.1       gwr 		cmd->com.ie_cmd_status = SWAP(0);
   1560   1.1       gwr 		cmd->com.ie_cmd_cmd = IE_CMD_IASETUP | IE_CMD_LAST;
   1561   1.1       gwr 		cmd->com.ie_cmd_link = SWAP(0xffff);
   1562   1.1       gwr 
   1563   1.3       gwr 		(sc->sc_bcopy)(sc->sc_arpcom.ac_enaddr,
   1564  1.17       gwr 		    (caddr_t)&cmd->ie_address, sizeof(cmd->ie_address));
   1565   1.1       gwr 
   1566  1.16       gwr 		if (cmd_and_wait(sc, IE_CU_START, cmd, IE_STAT_COMPL) ||
   1567   1.1       gwr 		    !(cmd->com.ie_cmd_status & IE_STAT_OK)) {
   1568  1.14  christos 			printf("%s: individual address setup command failed\n",
   1569   1.1       gwr 			    sc->sc_dev.dv_xname);
   1570   1.1       gwr 			return 0;
   1571   1.1       gwr 		}
   1572   1.1       gwr 	}
   1573   1.1       gwr 
   1574   1.1       gwr 	/*
   1575   1.1       gwr 	 * Now run the time-domain reflectometer.
   1576   1.1       gwr 	 */
   1577  1.18       gwr 	if (ie_run_tdr)
   1578  1.18       gwr 		run_tdr(sc, ptr);
   1579   1.1       gwr 
   1580   1.1       gwr 	/*
   1581   1.1       gwr 	 * Acknowledge any interrupts we have generated thus far.
   1582   1.1       gwr 	 */
   1583   1.1       gwr 	ie_ack(sc, IE_ST_WHENCE);
   1584   1.1       gwr 
   1585   1.1       gwr 	/*
   1586   1.1       gwr 	 * Set up the transmit and recv buffers.
   1587   1.1       gwr 	 */
   1588  1.17       gwr 	iememinit(sc);
   1589   1.1       gwr 
   1590   1.3       gwr 	/* tell higher levels that we are here */
   1591   1.3       gwr 	sc->sc_arpcom.ac_if.if_flags |= IFF_RUNNING;
   1592  1.17       gwr 	sc->sc_arpcom.ac_if.if_flags &= ~IFF_OACTIVE;
   1593   1.3       gwr 
   1594  1.17       gwr 	sc->scb->ie_recv_list =
   1595  1.17       gwr 	    vtop16sw(sc, (void*) sc->rframes[0]);
   1596  1.16       gwr 	cmd_and_wait(sc, IE_RU_START, 0, 0);
   1597   1.1       gwr 
   1598   1.3       gwr 	ie_ack(sc, IE_ST_WHENCE);
   1599   1.1       gwr 
   1600   1.1       gwr 	if (sc->run_586)
   1601   1.3       gwr 		(sc->run_586)(sc);
   1602   1.1       gwr 
   1603   1.1       gwr 	return 0;
   1604   1.1       gwr }
   1605   1.1       gwr 
   1606   1.1       gwr static void
   1607   1.1       gwr iestop(sc)
   1608   1.1       gwr 	struct ie_softc *sc;
   1609   1.1       gwr {
   1610   1.1       gwr 
   1611  1.16       gwr 	cmd_and_wait(sc, IE_RU_DISABLE, 0, 0);
   1612   1.1       gwr }
   1613   1.1       gwr 
   1614  1.17       gwr static int
   1615   1.1       gwr ieioctl(ifp, cmd, data)
   1616   1.1       gwr 	register struct ifnet *ifp;
   1617  1.17       gwr 	u_long cmd;
   1618   1.1       gwr 	caddr_t data;
   1619   1.1       gwr {
   1620  1.11   thorpej 	struct ie_softc *sc = ifp->if_softc;
   1621  1.17       gwr 	struct ifaddr *ifa = (struct ifaddr *)data;
   1622  1.17       gwr 	struct ifreq *ifr = (struct ifreq *)data;
   1623  1.17       gwr 	int s, error = 0;
   1624   1.1       gwr 
   1625   1.6   mycroft 	s = splnet();
   1626   1.1       gwr 
   1627   1.1       gwr 	switch (cmd) {
   1628   1.1       gwr 
   1629   1.1       gwr 	case SIOCSIFADDR:
   1630   1.1       gwr 		ifp->if_flags |= IFF_UP;
   1631   1.1       gwr 
   1632   1.1       gwr 		switch (ifa->ifa_addr->sa_family) {
   1633   1.1       gwr #ifdef INET
   1634   1.1       gwr 		case AF_INET:
   1635   1.1       gwr 			ieinit(sc);
   1636   1.5   mycroft 			arp_ifinit(&sc->sc_arpcom, ifa);
   1637   1.1       gwr 			break;
   1638   1.1       gwr #endif
   1639   1.1       gwr #ifdef NS
   1640   1.1       gwr 		/* XXX - This code is probably wrong. */
   1641   1.1       gwr 		case AF_NS:
   1642   1.1       gwr 		    {
   1643   1.1       gwr 			struct ns_addr *ina = &IA_SNS(ifa)->sns_addr;
   1644   1.1       gwr 
   1645   1.1       gwr 			if (ns_nullhost(*ina))
   1646   1.1       gwr 				ina->x_host =
   1647   1.3       gwr 				    *(union ns_host *)(sc->sc_arpcom.ac_enaddr);
   1648   1.1       gwr 			else
   1649   1.1       gwr 				bcopy(ina->x_host.c_host,
   1650   1.1       gwr 				    sc->sc_arpcom.ac_enaddr,
   1651   1.1       gwr 				    sizeof(sc->sc_arpcom.ac_enaddr));
   1652   1.1       gwr 			/* Set new address. */
   1653   1.1       gwr 			ieinit(sc);
   1654   1.1       gwr 			break;
   1655   1.1       gwr 		    }
   1656   1.1       gwr #endif /* NS */
   1657   1.1       gwr 		default:
   1658   1.1       gwr 			ieinit(sc);
   1659   1.1       gwr 			break;
   1660   1.1       gwr 		}
   1661   1.1       gwr 		break;
   1662   1.1       gwr 
   1663   1.1       gwr 	case SIOCSIFFLAGS:
   1664   1.1       gwr 		sc->promisc = ifp->if_flags & (IFF_PROMISC | IFF_ALLMULTI);
   1665   1.1       gwr 
   1666   1.1       gwr 		if ((ifp->if_flags & IFF_UP) == 0 &&
   1667   1.1       gwr 		    (ifp->if_flags & IFF_RUNNING) != 0) {
   1668   1.1       gwr 			/*
   1669   1.1       gwr 			 * If interface is marked down and it is running, then
   1670   1.1       gwr 			 * stop it.
   1671   1.1       gwr 			 */
   1672   1.1       gwr 			iestop(sc);
   1673   1.1       gwr 			ifp->if_flags &= ~IFF_RUNNING;
   1674   1.1       gwr 		} else if ((ifp->if_flags & IFF_UP) != 0 &&
   1675   1.3       gwr 			(ifp->if_flags & IFF_RUNNING) == 0) {
   1676   1.1       gwr 			/*
   1677   1.1       gwr 			 * If interface is marked up and it is stopped, then
   1678   1.1       gwr 			 * start it.
   1679   1.1       gwr 			 */
   1680   1.1       gwr 			ieinit(sc);
   1681   1.1       gwr 		} else {
   1682   1.1       gwr 			/*
   1683   1.1       gwr 			 * Reset the interface to pick up changes in any other
   1684   1.1       gwr 			 * flags that affect hardware registers.
   1685   1.1       gwr 			 */
   1686   1.1       gwr 			iestop(sc);
   1687   1.1       gwr 			ieinit(sc);
   1688   1.1       gwr 		}
   1689   1.1       gwr #ifdef IEDEBUG
   1690   1.1       gwr 		if (ifp->if_flags & IFF_DEBUG)
   1691   1.1       gwr 			sc->sc_debug = IED_ALL;
   1692   1.1       gwr 		else
   1693  1.17       gwr 			sc->sc_debug = ie_debug_flags;
   1694   1.1       gwr #endif
   1695   1.1       gwr 		break;
   1696   1.1       gwr 
   1697   1.1       gwr 	case SIOCADDMULTI:
   1698   1.1       gwr 	case SIOCDELMULTI:
   1699   1.1       gwr 		error = (cmd == SIOCADDMULTI) ?
   1700   1.1       gwr 		    ether_addmulti(ifr, &sc->sc_arpcom) :
   1701   1.1       gwr 		    ether_delmulti(ifr, &sc->sc_arpcom);
   1702   1.1       gwr 
   1703   1.1       gwr 		if (error == ENETRESET) {
   1704   1.1       gwr 			/*
   1705   1.1       gwr 			 * Multicast list has changed; set the hardware filter
   1706   1.1       gwr 			 * accordingly.
   1707   1.1       gwr 			 */
   1708   1.1       gwr 			mc_reset(sc);
   1709   1.1       gwr 			error = 0;
   1710   1.1       gwr 		}
   1711   1.1       gwr 		break;
   1712   1.1       gwr 
   1713   1.1       gwr 	default:
   1714   1.1       gwr 		error = EINVAL;
   1715   1.1       gwr 	}
   1716   1.1       gwr 	splx(s);
   1717   1.1       gwr 	return error;
   1718   1.1       gwr }
   1719   1.1       gwr 
   1720   1.1       gwr static void
   1721   1.1       gwr mc_reset(sc)
   1722   1.1       gwr 	struct ie_softc *sc;
   1723   1.1       gwr {
   1724   1.1       gwr 	struct ether_multi *enm;
   1725   1.1       gwr 	struct ether_multistep step;
   1726   1.1       gwr 
   1727   1.1       gwr 	/*
   1728   1.1       gwr 	 * Step through the list of addresses.
   1729   1.1       gwr 	 */
   1730   1.1       gwr 	sc->mcast_count = 0;
   1731   1.1       gwr 	ETHER_FIRST_MULTI(step, &sc->sc_arpcom, enm);
   1732   1.1       gwr 	while (enm) {
   1733   1.1       gwr 		if (sc->mcast_count >= MAXMCAST ||
   1734   1.1       gwr 		    bcmp(enm->enm_addrlo, enm->enm_addrhi, 6) != 0) {
   1735   1.1       gwr 			sc->sc_arpcom.ac_if.if_flags |= IFF_ALLMULTI;
   1736   1.1       gwr 			ieioctl(&sc->sc_arpcom.ac_if, SIOCSIFFLAGS, (void *)0);
   1737   1.1       gwr 			goto setflag;
   1738   1.1       gwr 		}
   1739   1.1       gwr 		bcopy(enm->enm_addrlo, &sc->mcast_addrs[sc->mcast_count], 6);
   1740   1.1       gwr 		sc->mcast_count++;
   1741   1.1       gwr 		ETHER_NEXT_MULTI(step, enm);
   1742   1.1       gwr 	}
   1743   1.1       gwr setflag:
   1744   1.1       gwr 	sc->want_mcsetup = 1;
   1745   1.1       gwr }
   1746   1.1       gwr 
   1747   1.1       gwr #ifdef IEDEBUG
   1748   1.1       gwr void
   1749   1.1       gwr print_rbd(rbd)
   1750   1.1       gwr 	volatile struct ie_recv_buf_desc *rbd;
   1751   1.1       gwr {
   1752   1.1       gwr 
   1753  1.14  christos 	printf("RBD at %08lx:\nactual %04x, next %04x, buffer %08x\n"
   1754   1.1       gwr 	    "length %04x, mbz %04x\n", (u_long)rbd, rbd->ie_rbd_actual,
   1755   1.1       gwr 	    rbd->ie_rbd_next, rbd->ie_rbd_buffer, rbd->ie_rbd_length,
   1756   1.1       gwr 	    rbd->mbz);
   1757   1.1       gwr }
   1758   1.1       gwr #endif
   1759