Home | History | Annotate | Line # | Download | only in ic
mb86960.c revision 1.32
      1 /*	$NetBSD: mb86960.c,v 1.32 1999/03/25 23:19:16 thorpej Exp $	*/
      2 
      3 /*
      4  * All Rights Reserved, Copyright (C) Fujitsu Limited 1995
      5  *
      6  * This software may be used, modified, copied, distributed, and sold, in
      7  * both source and binary form provided that the above copyright, these
      8  * terms and the following disclaimer are retained.  The name of the author
      9  * and/or the contributor may not be used to endorse or promote products
     10  * derived from this software without specific prior written permission.
     11  *
     12  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND THE CONTRIBUTOR ``AS IS'' AND
     13  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     14  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     15  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR THE CONTRIBUTOR BE LIABLE
     16  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     17  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     18  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION.
     19  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     20  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     21  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     22  * SUCH DAMAGE.
     23  */
     24 
     25 /*
     26  * Portions copyright (C) 1993, David Greenman.  This software may be used,
     27  * modified, copied, distributed, and sold, in both source and binary form
     28  * provided that the above copyright and these terms are retained.  Under no
     29  * circumstances is the author responsible for the proper functioning of this
     30  * software, nor does the author assume any responsibility for damages
     31  * incurred with its use.
     32  */
     33 
     34 #define FE_VERSION "if_fe.c ver. 0.8"
     35 
     36 /*
     37  * Device driver for Fujitsu MB86960A/MB86965A based Ethernet cards.
     38  * Contributed by M.S. <seki (at) sysrap.cs.fujitsu.co.jp>
     39  *
     40  * This version is intended to be a generic template for various
     41  * MB86960A/MB86965A based Ethernet cards.  It currently supports
     42  * Fujitsu FMV-180 series (i.e., FMV-181 and FMV-182) and Allied-
     43  * Telesis AT1700 series and RE2000 series.  There are some
     44  * unnecessary hooks embedded, which are primarily intended to support
     45  * other types of Ethernet cards, but the author is not sure whether
     46  * they are useful.
     47  */
     48 
     49 #include "opt_inet.h"
     50 #include "opt_ns.h"
     51 #include "bpfilter.h"
     52 #include "rnd.h"
     53 
     54 #include <sys/param.h>
     55 #include <sys/systm.h>
     56 #include <sys/errno.h>
     57 #include <sys/ioctl.h>
     58 #include <sys/mbuf.h>
     59 #include <sys/socket.h>
     60 #include <sys/syslog.h>
     61 #include <sys/device.h>
     62 #if NRND > 0
     63 #include <sys/rnd.h>
     64 #endif
     65 
     66 #include <net/if.h>
     67 #include <net/if_dl.h>
     68 #include <net/if_types.h>
     69 #include <net/if_media.h>
     70 #include <net/if_ether.h>
     71 
     72 #ifdef INET
     73 #include <netinet/in.h>
     74 #include <netinet/in_systm.h>
     75 #include <netinet/in_var.h>
     76 #include <netinet/ip.h>
     77 #include <netinet/if_inarp.h>
     78 #endif
     79 
     80 #ifdef NS
     81 #include <netns/ns.h>
     82 #include <netns/ns_if.h>
     83 #endif
     84 
     85 #if NBPFILTER > 0
     86 #include <net/bpf.h>
     87 #include <net/bpfdesc.h>
     88 #endif
     89 
     90 #include <machine/bus.h>
     91 
     92 #include <dev/ic/mb86960reg.h>
     93 #include <dev/ic/mb86960var.h>
     94 
     95 /* Standard driver entry points.  These can be static. */
     96 void	mb86960_init	__P((struct mb86960_softc *));
     97 int	mb86960_ioctl	__P((struct ifnet *, u_long, caddr_t));
     98 void	mb86960_start	__P((struct ifnet *));
     99 void	mb86960_reset	__P((struct mb86960_softc *));
    100 void	mb86960_watchdog __P((struct ifnet *));
    101 
    102 /* Local functions.  Order of declaration is confused.  FIXME. */
    103 int	mb86960_get_packet __P((struct mb86960_softc *, int));
    104 void	mb86960_stop __P((struct mb86960_softc *));
    105 void	mb86960_tint __P((struct mb86960_softc *, u_char));
    106 void	mb86960_rint __P((struct mb86960_softc *, u_char));
    107 static __inline__
    108 void	mb86960_xmit __P((struct mb86960_softc *));
    109 void	mb86960_write_mbufs __P((struct mb86960_softc *, struct mbuf *));
    110 static __inline__
    111 void	mb86960_droppacket __P((struct mb86960_softc *));
    112 void	mb86960_getmcaf __P((struct ethercom *, u_char *));
    113 void	mb86960_setmode __P((struct mb86960_softc *));
    114 void	mb86960_loadmar __P((struct mb86960_softc *));
    115 
    116 int	mb86960_mediachange __P((struct ifnet *));
    117 void	mb86960_mediastatus __P((struct ifnet *, struct ifmediareq *));
    118 
    119 #if FE_DEBUG >= 1
    120 void	mb86960_dump __P((int, struct mb86960_softc *));
    121 #endif
    122 
    123 void
    124 mb86960_attach(sc, type, myea)
    125 	struct mb86960_softc *sc;
    126 	enum mb86960_type type;
    127 	u_int8_t *myea;
    128 {
    129 	bus_space_tag_t bst = sc->sc_bst;
    130 	bus_space_handle_t bsh = sc->sc_bsh;
    131 
    132 	sc->type = type;
    133 
    134 	/* Register values which depend on board design. */
    135 	sc->proto_dlcr4 = FE_D4_LBC_DISABLE | FE_D4_CNTRL;
    136 	sc->proto_dlcr5 = 0;
    137 	sc->proto_bmpr13 = FE_B13_TPTYPE_UTP | FE_B13_PORT_AUTO;
    138 
    139 	switch (sc->type) {
    140 	case MB86960_TYPE_86960:
    141 		sc->proto_dlcr7 = FE_D7_BYTSWP_LH | FE_D7_IDENT_EC;
    142 		break;
    143 	case MB86960_TYPE_86965:
    144 		sc->proto_dlcr7 = FE_D7_BYTSWP_LH;
    145 		break;
    146 	}
    147 
    148 	/*
    149 	 * Program the 86960 as follows:
    150 	 *	SRAM: 32KB, 100ns, byte-wide access.
    151 	 *	Transmission buffer: 4KB x 2.
    152 	 *	System bus interface: 16 bits.
    153 	 * We cannot change these values but TXBSIZE, because they
    154 	 * are hard-wired on the board.  Modifying TXBSIZE will affect
    155 	 * the driver performance.
    156 	 */
    157 	sc->proto_dlcr6 = FE_D6_BUFSIZ_32KB | FE_D6_TXBSIZ_2x4KB |
    158 	    FE_D6_BBW_BYTE | FE_D6_SBW_WORD | FE_D6_SRAM_100ns;
    159 
    160 	/*
    161 	 * Minimum initialization of the hardware.
    162 	 * We write into registers; hope I/O ports have no
    163 	 * overlap with other boards.
    164 	 */
    165 
    166 	/* Initialize 86960. */
    167 	bus_space_write_1(bst, bsh, FE_DLCR6,
    168 	    sc->proto_dlcr6 | FE_D6_DLC_DISABLE);
    169 	delay(200);
    170 
    171 #ifdef DIAGNOSTIC
    172 	if (myea == NULL) {
    173 		printf("%s: ethernet address shouldn't be NULL\n",
    174 		    sc->sc_dev.dv_xname);
    175 		panic("NULL ethernet address");
    176 	}
    177 #endif
    178 	bcopy(myea, sc->sc_enaddr, sizeof(sc->sc_enaddr));
    179 
    180 	/* Disable all interrupts. */
    181 	bus_space_write_1(bst, bsh, FE_DLCR2, 0);
    182 	bus_space_write_1(bst, bsh, FE_DLCR3, 0);
    183 }
    184 
    185 /*
    186  * Install interface into kernel networking data structures
    187  */
    188 void
    189 mb86960_config(sc, media, nmedia, defmedia)
    190 	struct mb86960_softc *sc;
    191 	int *media, nmedia, defmedia;
    192 {
    193 	struct cfdata *cf = sc->sc_dev.dv_cfdata;
    194 	struct ifnet *ifp = &sc->sc_ec.ec_if;
    195 	int i;
    196 
    197 	/* Stop the 86960. */
    198 	mb86960_stop(sc);
    199 
    200 	/* Initialize ifnet structure. */
    201 	bcopy(sc->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ);
    202 	ifp->if_softc = sc;
    203 	ifp->if_start = mb86960_start;
    204 	ifp->if_ioctl = mb86960_ioctl;
    205 	ifp->if_watchdog = mb86960_watchdog;
    206 	ifp->if_flags =
    207 	    IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS | IFF_MULTICAST;
    208 
    209 #if FE_DEBUG >= 3
    210 	log(LOG_INFO, "%s: mb86960_config()\n", sc->sc_dev.dv_xname);
    211 	mb86960_dump(LOG_INFO, sc);
    212 #endif
    213 
    214 #if FE_SINGLE_TRANSMISSION
    215 	/* Override txb config to allocate minimum. */
    216 	sc->proto_dlcr6 &= ~FE_D6_TXBSIZ
    217 	sc->proto_dlcr6 |=  FE_D6_TXBSIZ_2x2KB;
    218 #endif
    219 
    220 	/* Modify hardware config if it is requested. */
    221 	if ((cf->cf_flags & FE_FLAGS_OVERRIDE_DLCR6) != 0)
    222 		sc->proto_dlcr6 = cf->cf_flags & FE_FLAGS_DLCR6_VALUE;
    223 
    224 	/* Find TX buffer size, based on the hardware dependent proto. */
    225 	switch (sc->proto_dlcr6 & FE_D6_TXBSIZ) {
    226 	case FE_D6_TXBSIZ_2x2KB:
    227 		sc->txb_size = 2048;
    228 		break;
    229 	case FE_D6_TXBSIZ_2x4KB:
    230 		sc->txb_size = 4096;
    231 		break;
    232 	case FE_D6_TXBSIZ_2x8KB:
    233 		sc->txb_size = 8192;
    234 		break;
    235 	default:
    236 		/* Oops, we can't work with single buffer configuration. */
    237 #if FE_DEBUG >= 2
    238 		log(LOG_WARNING, "%s: strange TXBSIZ config; fixing\n",
    239 		    sc->sc_dev.dv_xname);
    240 #endif
    241 		sc->proto_dlcr6 &= ~FE_D6_TXBSIZ;
    242 		sc->proto_dlcr6 |=  FE_D6_TXBSIZ_2x2KB;
    243 		sc->txb_size = 2048;
    244 		break;
    245 	}
    246 
    247 	/* Initialize media goo. */
    248 	ifmedia_init(&sc->sc_media, 0, mb86960_mediachange,
    249 	    mb86960_mediastatus);
    250 	if (media != NULL) {
    251 		for (i = 0; i < nmedia; i++)
    252 			ifmedia_add(&sc->sc_media, media[i], 0, NULL);
    253 		ifmedia_set(&sc->sc_media, defmedia);
    254 	} else {
    255 		ifmedia_add(&sc->sc_media, IFM_ETHER|IFM_MANUAL, 0, NULL);
    256 		ifmedia_set(&sc->sc_media, IFM_ETHER|IFM_MANUAL);
    257 	}
    258 
    259 	/* Attach the interface. */
    260 	if_attach(ifp);
    261 	ether_ifattach(ifp, sc->sc_enaddr);
    262 
    263 #if NBPFILTER > 0
    264 	/* If BPF is in the kernel, call the attach for it. */
    265 	bpfattach(&ifp->if_bpf, ifp, DLT_EN10MB, sizeof(struct ether_header));
    266 #endif
    267 #if NRND > 0
    268 	rnd_attach_source(&sc->rnd_source, sc->sc_dev.dv_xname,
    269 			  RND_TYPE_NET, 0);
    270 #endif
    271 	/* Print additional info when attached. */
    272 	printf("%s: Ethernet address %s\n", sc->sc_dev.dv_xname,
    273 	    ether_sprintf(sc->sc_enaddr));
    274 
    275 #if FE_DEBUG >= 3
    276 	{
    277 		int buf, txb, bbw, sbw, ram;
    278 
    279 		buf = txb = bbw = sbw = ram = -1;
    280 		switch (sc->proto_dlcr6 & FE_D6_BUFSIZ) {
    281 		case FE_D6_BUFSIZ_8KB:
    282 			buf = 8;
    283 			break;
    284 		case FE_D6_BUFSIZ_16KB:
    285 			buf = 16;
    286 			break;
    287 		case FE_D6_BUFSIZ_32KB:
    288 			buf = 32;
    289 			break;
    290 		case FE_D6_BUFSIZ_64KB:
    291 			buf = 64;
    292 			break;
    293 		}
    294 		switch (sc->proto_dlcr6 & FE_D6_TXBSIZ) {
    295 		case FE_D6_TXBSIZ_2x2KB:
    296 			txb = 2;
    297 			break;
    298 		case FE_D6_TXBSIZ_2x4KB:
    299 			txb = 4;
    300 			break;
    301 		case FE_D6_TXBSIZ_2x8KB:
    302 			txb = 8;
    303 			break;
    304 		}
    305 		switch (sc->proto_dlcr6 & FE_D6_BBW) {
    306 		case FE_D6_BBW_BYTE:
    307 			bbw = 8;
    308 			break;
    309 		case FE_D6_BBW_WORD:
    310 			bbw = 16;
    311 			break;
    312 		}
    313 		switch (sc->proto_dlcr6 & FE_D6_SBW) {
    314 		case FE_D6_SBW_BYTE:
    315 			sbw = 8;
    316 			break;
    317 		case FE_D6_SBW_WORD:
    318 			sbw = 16;
    319 			break;
    320 		}
    321 		switch (sc->proto_dlcr6 & FE_D6_SRAM) {
    322 		case FE_D6_SRAM_100ns:
    323 			ram = 100;
    324 			break;
    325 		case FE_D6_SRAM_150ns:
    326 			ram = 150;
    327 			break;
    328 		}
    329 		printf("%s: SRAM %dKB %dbit %dns, TXB %dKBx2, %dbit I/O\n",
    330 		    sc->sc_dev.dv_xname, buf, bbw, ram, txb, sbw);
    331 	}
    332 #endif
    333 }
    334 
    335 /*
    336  * Media change callback.
    337  */
    338 int
    339 mb86960_mediachange(ifp)
    340 	struct ifnet *ifp;
    341 {
    342 	struct mb86960_softc *sc = ifp->if_softc;
    343 
    344 	if (sc->sc_mediachange)
    345 		return ((*sc->sc_mediachange)(sc));
    346 	return (EINVAL);
    347 }
    348 
    349 /*
    350  * Media status callback.
    351  */
    352 void
    353 mb86960_mediastatus(ifp, ifmr)
    354 	struct ifnet *ifp;
    355 	struct ifmediareq *ifmr;
    356 {
    357 	struct mb86960_softc *sc = ifp->if_softc;
    358 
    359 	if (sc->sc_enabled == 0) {
    360 		ifmr->ifm_active = IFM_ETHER | IFM_NONE;
    361 		ifmr->ifm_status = 0;
    362 		return;
    363 	}
    364 
    365 	if (sc->sc_mediastatus)
    366 		(*sc->sc_mediastatus)(sc, ifmr);
    367 }
    368 
    369 /*
    370  * Reset interface.
    371  */
    372 void
    373 mb86960_reset(sc)
    374 	struct mb86960_softc *sc;
    375 {
    376 	int s;
    377 
    378 	s = splnet();
    379 	mb86960_stop(sc);
    380 	mb86960_init(sc);
    381 	splx(s);
    382 }
    383 
    384 /*
    385  * Stop everything on the interface.
    386  *
    387  * All buffered packets, both transmitting and receiving,
    388  * if any, will be lost by stopping the interface.
    389  */
    390 void
    391 mb86960_stop(sc)
    392 	struct mb86960_softc *sc;
    393 {
    394 	bus_space_tag_t bst = sc->sc_bst;
    395 	bus_space_handle_t bsh = sc->sc_bsh;
    396 
    397 #if FE_DEBUG >= 3
    398 	log(LOG_INFO, "%s: top of mb86960_stop()\n", sc->sc_dev.dv_xname);
    399 	mb86960_dump(LOG_INFO, sc);
    400 #endif
    401 
    402 	/* Disable interrupts. */
    403 	bus_space_write_1(bst, bsh, FE_DLCR2, 0x00);
    404 	bus_space_write_1(bst, bsh, FE_DLCR3, 0x00);
    405 
    406 	/* Stop interface hardware. */
    407 	delay(200);
    408 	bus_space_write_1(bst, bsh, FE_DLCR6,
    409 	    sc->proto_dlcr6 | FE_D6_DLC_DISABLE);
    410 	delay(200);
    411 
    412 	/* Clear all interrupt status. */
    413 	bus_space_write_1(bst, bsh, FE_DLCR0, 0xFF);
    414 	bus_space_write_1(bst, bsh, FE_DLCR1, 0xFF);
    415 
    416 	/* Put the chip in stand-by mode. */
    417 	delay(200);
    418 	bus_space_write_1(bst, bsh, FE_DLCR7,
    419 	    sc->proto_dlcr7 | FE_D7_POWER_DOWN);
    420 	delay(200);
    421 
    422 	/* MAR loading can be delayed. */
    423 	sc->filter_change = 0;
    424 
    425 	/* Call a hook. */
    426 	if (sc->stop_card)
    427 		(*sc->stop_card)(sc);
    428 
    429 #if DEBUG >= 3
    430 	log(LOG_INFO, "%s: end of mb86960_stop()\n", sc->sc_dev.dv_xname);
    431 	mb86960_dump(LOG_INFO, sc);
    432 #endif
    433 }
    434 
    435 /*
    436  * Device timeout/watchdog routine. Entered if the device neglects to
    437  * generate an interrupt after a transmit has been started on it.
    438  */
    439 void
    440 mb86960_watchdog(ifp)
    441 	struct ifnet *ifp;
    442 {
    443 	struct mb86960_softc *sc = ifp->if_softc;
    444 
    445 	log(LOG_ERR, "%s: device timeout\n", sc->sc_dev.dv_xname);
    446 #if FE_DEBUG >= 3
    447 	mb86960_dump(LOG_INFO, sc);
    448 #endif
    449 
    450 	/* Record how many packets are lost by this accident. */
    451 	sc->sc_ec.ec_if.if_oerrors += sc->txb_sched + sc->txb_count;
    452 
    453 	mb86960_reset(sc);
    454 }
    455 
    456 /*
    457  * Drop (skip) a packet from receive buffer in 86960 memory.
    458  */
    459 static __inline__ void
    460 mb86960_droppacket(sc)
    461 	struct mb86960_softc *sc;
    462 {
    463 	bus_space_tag_t bst = sc->sc_bst;
    464 	bus_space_handle_t bsh = sc->sc_bsh;
    465 
    466 	bus_space_write_1(bst, bsh, FE_BMPR14, FE_B14_FILTER | FE_B14_SKIP);
    467 }
    468 
    469 /*
    470  * Initialize device.
    471  */
    472 void
    473 mb86960_init(sc)
    474 	struct mb86960_softc *sc;
    475 {
    476 	bus_space_tag_t bst = sc->sc_bst;
    477 	bus_space_handle_t bsh = sc->sc_bsh;
    478 	struct ifnet *ifp = &sc->sc_ec.ec_if;
    479 	int i;
    480 
    481 #if FE_DEBUG >= 3
    482 	log(LOG_INFO, "%s: top of mb86960_init()\n", sc->sc_dev.dv_xname);
    483 	mb86960_dump(LOG_INFO, sc);
    484 #endif
    485 
    486 	/* Reset transmitter flags. */
    487 	ifp->if_flags &= ~IFF_OACTIVE;
    488 	ifp->if_timer = 0;
    489 
    490 	sc->txb_free = sc->txb_size;
    491 	sc->txb_count = 0;
    492 	sc->txb_sched = 0;
    493 
    494 	/* Do any card-specific initialization, if applicable. */
    495 	if (sc->init_card)
    496 		(*sc->init_card)(sc);
    497 
    498 #if FE_DEBUG >= 3
    499 	log(LOG_INFO, "%s: after init hook\n", sc->sc_dev.dv_xname);
    500 	mb86960_dump(LOG_INFO, sc);
    501 #endif
    502 
    503 	/*
    504 	 * Make sure to disable the chip, also.
    505 	 * This may also help re-programming the chip after
    506 	 * hot insertion of PCMCIAs.
    507 	 */
    508 	bus_space_write_1(bst, bsh, FE_DLCR6,
    509 	    sc->proto_dlcr6 | FE_D6_DLC_DISABLE);
    510 	delay(200);
    511 
    512 	/* Power up the chip and select register bank for DLCRs. */
    513 	bus_space_write_1(bst, bsh, FE_DLCR7,
    514 	    sc->proto_dlcr7 | FE_D7_RBS_DLCR | FE_D7_POWER_UP);
    515 	delay(200);
    516 
    517 	/* Feed the station address. */
    518 	bus_space_write_region_1(bst, bsh, FE_DLCR8,
    519 	    sc->sc_enaddr, ETHER_ADDR_LEN);
    520 
    521 	/* Select the BMPR bank for runtime register access. */
    522 	bus_space_write_1(bst, bsh, FE_DLCR7,
    523 	    sc->proto_dlcr7 | FE_D7_RBS_BMPR | FE_D7_POWER_UP);
    524 
    525 	/* Initialize registers. */
    526 	bus_space_write_1(bst, bsh, FE_DLCR0, 0xFF);	/* Clear all bits. */
    527 	bus_space_write_1(bst, bsh, FE_DLCR1, 0xFF);	/* ditto. */
    528 	bus_space_write_1(bst, bsh, FE_DLCR2, 0x00);
    529 	bus_space_write_1(bst, bsh, FE_DLCR3, 0x00);
    530 	bus_space_write_1(bst, bsh, FE_DLCR4, sc->proto_dlcr4);
    531 	bus_space_write_1(bst, bsh, FE_DLCR5, sc->proto_dlcr5);
    532 	bus_space_write_1(bst, bsh, FE_BMPR10, 0x00);
    533 	bus_space_write_1(bst, bsh, FE_BMPR11, FE_B11_CTRL_SKIP);
    534 	bus_space_write_1(bst, bsh, FE_BMPR12, 0x00);
    535 	bus_space_write_1(bst, bsh, FE_BMPR13, sc->proto_bmpr13);
    536 	bus_space_write_1(bst, bsh, FE_BMPR14, FE_B14_FILTER);
    537 	bus_space_write_1(bst, bsh, FE_BMPR15, 0x00);
    538 
    539 #if FE_DEBUG >= 3
    540 	log(LOG_INFO, "%s: just before enabling DLC\n", sc->sc_dev.dv_xname);
    541 	mb86960_dump(LOG_INFO, sc);
    542 #endif
    543 
    544 	/* Enable interrupts. */
    545 	bus_space_write_1(bst, bsh, FE_DLCR2, FE_TMASK);
    546 	bus_space_write_1(bst, bsh, FE_DLCR3, FE_RMASK);
    547 
    548 	/* Enable transmitter and receiver. */
    549 	delay(200);
    550 	bus_space_write_1(bst, bsh, FE_DLCR6,
    551 	    sc->proto_dlcr6 | FE_D6_DLC_ENABLE);
    552 	delay(200);
    553 
    554 #if FE_DEBUG >= 3
    555 	log(LOG_INFO, "%s: just after enabling DLC\n", sc->sc_dev.dv_xname);
    556 	mb86960_dump(LOG_INFO, sc);
    557 #endif
    558 
    559 	/*
    560 	 * Make sure to empty the receive buffer.
    561 	 *
    562 	 * This may be redundant, but *if* the receive buffer were full
    563 	 * at this point, the driver would hang.  I have experienced
    564 	 * some strange hangups just after UP.  I hope the following
    565 	 * code solve the problem.
    566 	 *
    567 	 * I have changed the order of hardware initialization.
    568 	 * I think the receive buffer cannot have any packets at this
    569 	 * point in this version.  The following code *must* be
    570 	 * redundant now.  FIXME.
    571 	 */
    572 	for (i = 0; i < FE_MAX_RECV_COUNT; i++) {
    573 		if (bus_space_read_1(bst, bsh, FE_DLCR5) & FE_D5_BUFEMP)
    574 			break;
    575 		mb86960_droppacket(sc);
    576 	}
    577 #if FE_DEBUG >= 1
    578 	if (i >= FE_MAX_RECV_COUNT)
    579 		log(LOG_ERR, "%s: cannot empty receive buffer\n",
    580 		    sc->sc_dev.dv_xname);
    581 #endif
    582 #if FE_DEBUG >= 3
    583 	if (i < FE_MAX_RECV_COUNT)
    584 		log(LOG_INFO, "%s: receive buffer emptied (%d)\n",
    585 		    sc->sc_dev.dv_xname, i);
    586 #endif
    587 
    588 #if FE_DEBUG >= 3
    589 	log(LOG_INFO, "%s: after ERB loop\n", sc->sc_dev.dv_xname);
    590 	mb86960_dump(LOG_INFO, sc);
    591 #endif
    592 
    593 	/* Do we need this here? */
    594 	bus_space_write_1(bst, bsh, FE_DLCR0, 0xFF);	/* Clear all bits. */
    595 	bus_space_write_1(bst, bsh, FE_DLCR1, 0xFF);	/* ditto. */
    596 
    597 #if FE_DEBUG >= 3
    598 	log(LOG_INFO, "%s: after FIXME\n", sc->sc_dev.dv_xname);
    599 	mb86960_dump(LOG_INFO, sc);
    600 #endif
    601 
    602 	/* Set 'running' flag. */
    603 	ifp->if_flags |= IFF_RUNNING;
    604 
    605 	/*
    606 	 * At this point, the interface is runnung properly,
    607 	 * except that it receives *no* packets.  we then call
    608 	 * mb86960_setmode() to tell the chip what packets to be
    609 	 * received, based on the if_flags and multicast group
    610 	 * list.  It completes the initialization process.
    611 	 */
    612 	mb86960_setmode(sc);
    613 
    614 #if FE_DEBUG >= 3
    615 	log(LOG_INFO, "%s: after setmode\n", sc->sc_dev.dv_xname);
    616 	mb86960_dump(LOG_INFO, sc);
    617 #endif
    618 
    619 	/* ...and attempt to start output. */
    620 	mb86960_start(ifp);
    621 
    622 #if FE_DEBUG >= 3
    623 	log(LOG_INFO, "%s: end of mb86960_init()\n", sc->sc_dev.dv_xname);
    624 	mb86960_dump(LOG_INFO, sc);
    625 #endif
    626 }
    627 
    628 /*
    629  * This routine actually starts the transmission on the interface
    630  */
    631 static __inline__ void
    632 mb86960_xmit(sc)
    633 	struct mb86960_softc *sc;
    634 {
    635 	bus_space_tag_t bst = sc->sc_bst;
    636 	bus_space_handle_t bsh = sc->sc_bsh;
    637 
    638 	/*
    639 	 * Set a timer just in case we never hear from the board again.
    640 	 * We use longer timeout for multiple packet transmission.
    641 	 * I'm not sure this timer value is appropriate.  FIXME.
    642 	 */
    643 	sc->sc_ec.ec_if.if_timer = 1 + sc->txb_count;
    644 
    645 	/* Update txb variables. */
    646 	sc->txb_sched = sc->txb_count;
    647 	sc->txb_count = 0;
    648 	sc->txb_free = sc->txb_size;
    649 
    650 #if FE_DELAYED_PADDING
    651 	/* Omit the postponed padding process. */
    652 	sc->txb_padding = 0;
    653 #endif
    654 
    655 	/* Start transmitter, passing packets in TX buffer. */
    656 	bus_space_write_1(bst, bsh, FE_BMPR10, sc->txb_sched | FE_B10_START);
    657 }
    658 
    659 /*
    660  * Start output on interface.
    661  * We make two assumptions here:
    662  *  1) that the current priority is set to splnet _before_ this code
    663  *     is called *and* is returned to the appropriate priority after
    664  *     return
    665  *  2) that the IFF_OACTIVE flag is checked before this code is called
    666  *     (i.e. that the output part of the interface is idle)
    667  */
    668 void
    669 mb86960_start(ifp)
    670 	struct ifnet *ifp;
    671 {
    672 	struct mb86960_softc *sc = ifp->if_softc;
    673 	struct mbuf *m;
    674 
    675 #if FE_DEBUG >= 1
    676 	/* Just a sanity check. */
    677 	if ((sc->txb_count == 0) != (sc->txb_free == sc->txb_size)) {
    678 		/*
    679 		 * Txb_count and txb_free co-works to manage the
    680 		 * transmission buffer.  Txb_count keeps track of the
    681 		 * used potion of the buffer, while txb_free does unused
    682 		 * potion.  So, as long as the driver runs properly,
    683 		 * txb_count is zero if and only if txb_free is same
    684 		 * as txb_size (which represents whole buffer.)
    685 		 */
    686 		log(LOG_ERR, "%s: inconsistent txb variables (%d, %d)\n",
    687 		    sc->sc_dev.dv_xname, sc->txb_count, sc->txb_free);
    688 		/*
    689 		 * So, what should I do, then?
    690 		 *
    691 		 * We now know txb_count and txb_free contradicts.  We
    692 		 * cannot, however, tell which is wrong.  More
    693 		 * over, we cannot peek 86960 transmission buffer or
    694 		 * reset the transmission buffer.  (In fact, we can
    695 		 * reset the entire interface.  I don't want to do it.)
    696 		 *
    697 		 * If txb_count is incorrect, leaving it as is will cause
    698 		 * sending of gabages after next interrupt.  We have to
    699 		 * avoid it.  Hence, we reset the txb_count here.  If
    700 		 * txb_free was incorrect, resetting txb_count just loose
    701 		 * some packets.  We can live with it.
    702 		 */
    703 		sc->txb_count = 0;
    704 	}
    705 #endif
    706 
    707 #if FE_DEBUG >= 1
    708 	/*
    709 	 * First, see if there are buffered packets and an idle
    710 	 * transmitter - should never happen at this point.
    711 	 */
    712 	if ((sc->txb_count > 0) && (sc->txb_sched == 0)) {
    713 		log(LOG_ERR, "%s: transmitter idle with %d buffered packets\n",
    714 		    sc->sc_dev.dv_xname, sc->txb_count);
    715 		mb86960_xmit(sc);
    716 	}
    717 #endif
    718 
    719 	/*
    720 	 * Stop accepting more transmission packets temporarily, when
    721 	 * a filter change request is delayed.  Updating the MARs on
    722 	 * 86960 flushes the transmisstion buffer, so it is delayed
    723 	 * until all buffered transmission packets have been sent
    724 	 * out.
    725 	 */
    726 	if (sc->filter_change) {
    727 		/*
    728 		 * Filter change requst is delayed only when the DLC is
    729 		 * working.  DLC soon raise an interrupt after finishing
    730 		 * the work.
    731 		 */
    732 		goto indicate_active;
    733 	}
    734 
    735 	for (;;) {
    736 		/*
    737 		 * See if there is room to put another packet in the buffer.
    738 		 * We *could* do better job by peeking the send queue to
    739 		 * know the length of the next packet.  Current version just
    740 		 * tests against the worst case (i.e., longest packet).  FIXME.
    741 		 *
    742 		 * When adding the packet-peek feature, don't forget adding a
    743 		 * test on txb_count against QUEUEING_MAX.
    744 		 * There is a little chance the packet count exceeds
    745 		 * the limit.  Assume transmission buffer is 8KB (2x8KB
    746 		 * configuration) and an application sends a bunch of small
    747 		 * (i.e., minimum packet sized) packets rapidly.  An 8KB
    748 		 * buffer can hold 130 blocks of 62 bytes long...
    749 		 */
    750 		if (sc->txb_free <
    751 		    (ETHER_MAX_LEN - ETHER_CRC_LEN) + FE_DATA_LEN_LEN) {
    752 			/* No room. */
    753 			goto indicate_active;
    754 		}
    755 
    756 #if FE_SINGLE_TRANSMISSION
    757 		if (sc->txb_count > 0) {
    758 			/* Just one packet per a transmission buffer. */
    759 			goto indicate_active;
    760 		}
    761 #endif
    762 
    763 		/*
    764 		 * Get the next mbuf chain for a packet to send.
    765 		 */
    766 		IF_DEQUEUE(&ifp->if_snd, m);
    767 		if (m == 0) {
    768 			/* No more packets to send. */
    769 			goto indicate_inactive;
    770 		}
    771 
    772 #if NBPFILTER > 0
    773 		/* Tap off here if there is a BPF listener. */
    774 		if (ifp->if_bpf)
    775 			bpf_mtap(ifp->if_bpf, m);
    776 #endif
    777 
    778 		/*
    779 		 * Copy the mbuf chain into the transmission buffer.
    780 		 * txb_* variables are updated as necessary.
    781 		 */
    782 		mb86960_write_mbufs(sc, m);
    783 
    784 		m_freem(m);
    785 
    786 		/* Start transmitter if it's idle. */
    787 		if (sc->txb_sched == 0)
    788 			mb86960_xmit(sc);
    789 	}
    790 
    791 indicate_inactive:
    792 	/*
    793 	 * We are using the !OACTIVE flag to indicate to
    794 	 * the outside world that we can accept an
    795 	 * additional packet rather than that the
    796 	 * transmitter is _actually_ active.  Indeed, the
    797 	 * transmitter may be active, but if we haven't
    798 	 * filled all the buffers with data then we still
    799 	 * want to accept more.
    800 	 */
    801 	ifp->if_flags &= ~IFF_OACTIVE;
    802 	return;
    803 
    804 indicate_active:
    805 	/*
    806 	 * The transmitter is active, and there are no room for
    807 	 * more outgoing packets in the transmission buffer.
    808 	 */
    809 	ifp->if_flags |= IFF_OACTIVE;
    810 	return;
    811 }
    812 
    813 /*
    814  * Transmission interrupt handler
    815  * The control flow of this function looks silly.  FIXME.
    816  */
    817 void
    818 mb86960_tint(sc, tstat)
    819 	struct mb86960_softc *sc;
    820 	u_char tstat;
    821 {
    822 	bus_space_tag_t bst = sc->sc_bst;
    823 	bus_space_handle_t bsh = sc->sc_bsh;
    824 	struct ifnet *ifp = &sc->sc_ec.ec_if;
    825 	int left;
    826 	int col;
    827 
    828 	/*
    829 	 * Handle "excessive collision" interrupt.
    830 	 */
    831 	if (tstat & FE_D0_COLL16) {
    832 		/*
    833 		 * Find how many packets (including this collided one)
    834 		 * are left unsent in transmission buffer.
    835 		 */
    836 		left = bus_space_read_1(bst, bsh, FE_BMPR10);
    837 
    838 #if FE_DEBUG >= 2
    839 		log(LOG_WARNING, "%s: excessive collision (%d/%d)\n",
    840 		    sc->sc_dev.dv_xname, left, sc->txb_sched);
    841 #endif
    842 #if FE_DEBUG >= 3
    843 		mb86960_dump(LOG_INFO, sc);
    844 #endif
    845 
    846 		/*
    847 		 * Update statistics.
    848 		 */
    849 		ifp->if_collisions += 16;
    850 		ifp->if_oerrors++;
    851 		ifp->if_opackets += sc->txb_sched - left;
    852 
    853 		/*
    854 		 * Collision statistics has been updated.
    855 		 * Clear the collision flag on 86960 now to avoid confusion.
    856 		 */
    857 		bus_space_write_1(bst, bsh, FE_DLCR0, FE_D0_COLLID);
    858 
    859 		/*
    860 		 * Restart transmitter, skipping the
    861 		 * collided packet.
    862 		 *
    863 		 * We *must* skip the packet to keep network running
    864 		 * properly.  Excessive collision error is an
    865 		 * indication of the network overload.  If we
    866 		 * tried sending the same packet after excessive
    867 		 * collision, the network would be filled with
    868 		 * out-of-time packets.  Packets belonging
    869 		 * to reliable transport (such as TCP) are resent
    870 		 * by some upper layer.
    871 		 */
    872 		bus_space_write_1(bst, bsh, FE_BMPR11,
    873 		    FE_B11_CTRL_SKIP | FE_B11_MODE1);
    874 		sc->txb_sched = left - 1;
    875 	}
    876 
    877 	/*
    878 	 * Handle "transmission complete" interrupt.
    879 	 */
    880 	if (tstat & FE_D0_TXDONE) {
    881 		/*
    882 		 * Add in total number of collisions on last
    883 		 * transmission.  We also clear "collision occurred" flag
    884 		 * here.
    885 		 *
    886 		 * 86960 has a design flow on collision count on multiple
    887 		 * packet transmission.  When we send two or more packets
    888 		 * with one start command (that's what we do when the
    889 		 * transmission queue is clauded), 86960 informs us number
    890 		 * of collisions occured on the last packet on the
    891 		 * transmission only.  Number of collisions on previous
    892 		 * packets are lost.  I have told that the fact is clearly
    893 		 * stated in the Fujitsu document.
    894 		 *
    895 		 * I considered not to mind it seriously.  Collision
    896 		 * count is not so important, anyway.  Any comments?  FIXME.
    897 		 */
    898 
    899 		if (bus_space_read_1(bst, bsh, FE_DLCR0) & FE_D0_COLLID) {
    900 			/* Clear collision flag. */
    901 			bus_space_write_1(bst, bsh, FE_DLCR0, FE_D0_COLLID);
    902 
    903 			/* Extract collision count from 86960. */
    904 			col = bus_space_read_1(bst, bsh, FE_DLCR4) & FE_D4_COL;
    905 			if (col == 0) {
    906 				/*
    907 				 * Status register indicates collisions,
    908 				 * while the collision count is zero.
    909 				 * This can happen after multiple packet
    910 				 * transmission, indicating that one or more
    911 				 * previous packet(s) had been collided.
    912 				 *
    913 				 * Since the accurate number of collisions
    914 				 * has been lost, we just guess it as 1;
    915 				 * Am I too optimistic?  FIXME.
    916 				 */
    917 				col = 1;
    918 			} else
    919 				col >>= FE_D4_COL_SHIFT;
    920 			ifp->if_collisions += col;
    921 #if FE_DEBUG >= 4
    922 			log(LOG_WARNING, "%s: %d collision%s (%d)\n",
    923 			    sc->sc_dev.dv_xname, col, col == 1 ? "" : "s",
    924 			    sc->txb_sched);
    925 #endif
    926 		}
    927 
    928 		/*
    929 		 * Update total number of successfully
    930 		 * transmitted packets.
    931 		 */
    932 		ifp->if_opackets += sc->txb_sched;
    933 		sc->txb_sched = 0;
    934 	}
    935 
    936 	if (sc->txb_sched == 0) {
    937 		/*
    938 		 * The transmitter is no more active.
    939 		 * Reset output active flag and watchdog timer.
    940 		 */
    941 		ifp->if_flags &= ~IFF_OACTIVE;
    942 		ifp->if_timer = 0;
    943 
    944 		/*
    945 		 * If more data is ready to transmit in the buffer, start
    946 		 * transmitting them.  Otherwise keep transmitter idle,
    947 		 * even if more data is queued.  This gives receive
    948 		 * process a slight priority.
    949 		 */
    950 		if (sc->txb_count > 0)
    951 			mb86960_xmit(sc);
    952 	}
    953 }
    954 
    955 /*
    956  * Ethernet interface receiver interrupt.
    957  */
    958 void
    959 mb86960_rint(sc, rstat)
    960 	struct mb86960_softc *sc;
    961 	u_char rstat;
    962 {
    963 	bus_space_tag_t bst = sc->sc_bst;
    964 	bus_space_handle_t bsh = sc->sc_bsh;
    965 	struct ifnet *ifp = &sc->sc_ec.ec_if;
    966 	int len;
    967 	u_char status;
    968 	int i;
    969 
    970 	/*
    971 	 * Update statistics if this interrupt is caused by an error.
    972 	 */
    973 	if (rstat & (FE_D1_OVRFLO | FE_D1_CRCERR | FE_D1_ALGERR |
    974 	    FE_D1_SRTPKT)) {
    975 #if FE_DEBUG >= 3
    976 		log(LOG_WARNING, "%s: receive error: %b\n",
    977 		    sc->sc_dev.dv_xname, rstat, FE_D1_ERRBITS);
    978 #endif
    979 		ifp->if_ierrors++;
    980 	}
    981 
    982 	/*
    983 	 * MB86960 has a flag indicating "receive queue empty."
    984 	 * We just loop cheking the flag to pull out all received
    985 	 * packets.
    986 	 *
    987 	 * We limit the number of iterrations to avoid infinite loop.
    988 	 * It can be caused by a very slow CPU (some broken
    989 	 * peripheral may insert incredible number of wait cycles)
    990 	 * or, worse, by a broken MB86960 chip.
    991 	 */
    992 	for (i = 0; i < FE_MAX_RECV_COUNT; i++) {
    993 		/* Stop the iterration if 86960 indicates no packets. */
    994 		if (bus_space_read_1(bst, bsh, FE_DLCR5) & FE_D5_BUFEMP)
    995 			break;
    996 
    997 		/*
    998 		 * Extract A receive status byte.
    999 		 * As our 86960 is in 16 bit bus access mode, we have to
   1000 		 * use inw() to get the status byte.  The significant
   1001 		 * value is returned in lower 8 bits.
   1002 		 */
   1003 		status = (u_char)bus_space_read_2(bst, bsh, FE_BMPR8);
   1004 #if FE_DEBUG >= 4
   1005 		log(LOG_INFO, "%s: receive status = %02x\n",
   1006 		    sc->sc_dev.dv_xname, status);
   1007 #endif
   1008 
   1009 		/*
   1010 		 * If there was an error, update statistics and drop
   1011 		 * the packet, unless the interface is in promiscuous
   1012 		 * mode.
   1013 		 */
   1014 		if ((status & 0xF0) != 0x20) {	/* XXXX ? */
   1015 			if ((ifp->if_flags & IFF_PROMISC) == 0) {
   1016 				ifp->if_ierrors++;
   1017 				mb86960_droppacket(sc);
   1018 				continue;
   1019 			}
   1020 		}
   1021 
   1022 		/*
   1023 		 * Extract the packet length.
   1024 		 * It is a sum of a header (14 bytes) and a payload.
   1025 		 * CRC has been stripped off by the 86960.
   1026 		 */
   1027 		len = bus_space_read_2(bst, bsh, FE_BMPR8);
   1028 
   1029 		/*
   1030 		 * MB86965 checks the packet length and drop big packet
   1031 		 * before passing it to us.  There are no chance we can
   1032 		 * get [crufty] packets.  Hence, if the length exceeds
   1033 		 * the specified limit, it means some serious failure,
   1034 		 * such as out-of-sync on receive buffer management.
   1035 		 *
   1036 		 * Is this statement true?  FIXME.
   1037 		 */
   1038 		if (len > (ETHER_MAX_LEN - ETHER_CRC_LEN) ||
   1039 		    len < ETHER_HDR_LEN) {
   1040 #if FE_DEBUG >= 2
   1041 			log(LOG_WARNING,
   1042 			    "%s: received a %s packet? (%u bytes)\n",
   1043 			    sc->sc_dev.dv_xname,
   1044 			    len < ETHER_HDR_LEN ? "partial" : "big", len);
   1045 #endif
   1046 			ifp->if_ierrors++;
   1047 			mb86960_droppacket(sc);
   1048 			continue;
   1049 		}
   1050 
   1051 		/*
   1052 		 * Check for a short (RUNT) packet.  We *do* check
   1053 		 * but do nothing other than print a message.
   1054 		 * Short packets are illegal, but does nothing bad
   1055 		 * if it carries data for upper layer.
   1056 		 */
   1057 #if FE_DEBUG >= 2
   1058 		if (len < (ETHER_MIN_LEN - ETHER_CRC_LEN)) {
   1059 			log(LOG_WARNING,
   1060 			    "%s: received a short packet? (%u bytes)\n",
   1061 			    sc->sc_dev.dv_xname, len);
   1062 		}
   1063 #endif
   1064 
   1065 		/*
   1066 		 * Go get a packet.
   1067 		 */
   1068 		if (!mb86960_get_packet(sc, len)) {
   1069 			/* Skip a packet, updating statistics. */
   1070 #if FE_DEBUG >= 2
   1071 			log(LOG_WARNING,
   1072 			    "%s: out of mbufs; dropping packet (%u bytes)\n",
   1073 			    sc->sc_dev.dv_xname, len);
   1074 #endif
   1075 			ifp->if_ierrors++;
   1076 			mb86960_droppacket(sc);
   1077 
   1078 			/*
   1079 			 * We stop receiving packets, even if there are
   1080 			 * more in the buffer.  We hope we can get more
   1081 			 * mbufs next time.
   1082 			 */
   1083 			return;
   1084 		}
   1085 
   1086 		/* Successfully received a packet.  Update stat. */
   1087 		ifp->if_ipackets++;
   1088 	}
   1089 }
   1090 
   1091 /*
   1092  * Ethernet interface interrupt processor
   1093  */
   1094 int
   1095 mb86960_intr(arg)
   1096 	void *arg;
   1097 {
   1098 	struct mb86960_softc *sc = arg;
   1099 	bus_space_tag_t bst = sc->sc_bst;
   1100 	bus_space_handle_t bsh = sc->sc_bsh;
   1101 	struct ifnet *ifp = &sc->sc_ec.ec_if;
   1102 	u_char tstat, rstat;
   1103 
   1104 	if (sc->sc_enabled == 0)
   1105 		return (0);
   1106 
   1107 #if FE_DEBUG >= 4
   1108 	log(LOG_INFO, "%s: mb86960_intr()\n", sc->sc_dev.dv_xname);
   1109 	mb86960_dump(LOG_INFO, sc);
   1110 #endif
   1111 
   1112 	/*
   1113 	 * Get interrupt conditions, masking unneeded flags.
   1114 	 */
   1115 	tstat = bus_space_read_1(bst, bsh, FE_DLCR0) & FE_TMASK;
   1116 	rstat = bus_space_read_1(bst, bsh, FE_DLCR1) & FE_RMASK;
   1117 	if (tstat == 0 && rstat == 0)
   1118 		return (0);
   1119 
   1120 	/*
   1121 	 * Loop until there are no more new interrupt conditions.
   1122 	 */
   1123 	for (;;) {
   1124 		/*
   1125 		 * Reset the conditions we are acknowledging.
   1126 		 */
   1127 		bus_space_write_1(bst, bsh, FE_DLCR0, tstat);
   1128 		bus_space_write_1(bst, bsh, FE_DLCR1, rstat);
   1129 
   1130 		/*
   1131 		 * Handle transmitter interrupts. Handle these first because
   1132 		 * the receiver will reset the board under some conditions.
   1133 		 */
   1134 		if (tstat != 0)
   1135 			mb86960_tint(sc, tstat);
   1136 
   1137 		/*
   1138 		 * Handle receiver interrupts.
   1139 		 */
   1140 		if (rstat != 0)
   1141 			mb86960_rint(sc, rstat);
   1142 
   1143 		/*
   1144 		 * Update the multicast address filter if it is
   1145 		 * needed and possible.  We do it now, because
   1146 		 * we can make sure the transmission buffer is empty,
   1147 		 * and there is a good chance that the receive queue
   1148 		 * is empty.  It will minimize the possibility of
   1149 		 * packet lossage.
   1150 		 */
   1151 		if (sc->filter_change &&
   1152 		    sc->txb_count == 0 && sc->txb_sched == 0) {
   1153 			mb86960_loadmar(sc);
   1154 			ifp->if_flags &= ~IFF_OACTIVE;
   1155 		}
   1156 
   1157 		/*
   1158 		 * If it looks like the transmitter can take more data,
   1159 		 * attempt to start output on the interface. This is done
   1160 		 * after handling the receiver interrupt to give the
   1161 		 * receive operation priority.
   1162 		 */
   1163 		if ((ifp->if_flags & IFF_OACTIVE) == 0)
   1164 			mb86960_start(ifp);
   1165 
   1166 #if NRND > 0
   1167 		if (rstat != 0 || tstat != 0)
   1168 			rnd_add_uint32(&sc->rnd_source, rstat + tstat);
   1169 #endif
   1170 
   1171 		/*
   1172 		 * Get interrupt conditions, masking unneeded flags.
   1173 		 */
   1174 		tstat = bus_space_read_1(bst, bsh, FE_DLCR0) & FE_TMASK;
   1175 		rstat = bus_space_read_1(bst, bsh, FE_DLCR1) & FE_RMASK;
   1176 		if (tstat == 0 && rstat == 0)
   1177 			return (1);
   1178 	}
   1179 }
   1180 
   1181 /*
   1182  * Process an ioctl request.  This code needs some work - it looks pretty ugly.
   1183  */
   1184 int
   1185 mb86960_ioctl(ifp, cmd, data)
   1186 	struct ifnet *ifp;
   1187 	u_long cmd;
   1188 	caddr_t data;
   1189 {
   1190 	struct mb86960_softc *sc = ifp->if_softc;
   1191 	struct ifaddr *ifa = (struct ifaddr *)data;
   1192 	struct ifreq *ifr = (struct ifreq *)data;
   1193 	int s, error = 0;
   1194 
   1195 #if FE_DEBUG >= 3
   1196 	log(LOG_INFO, "%s: ioctl(%lx)\n", sc->sc_dev.dv_xname, cmd);
   1197 #endif
   1198 
   1199 	s = splnet();
   1200 
   1201 	switch (cmd) {
   1202 	case SIOCSIFADDR:
   1203 		if ((error = mb86960_enable(sc)) != 0)
   1204 			break;
   1205 		ifp->if_flags |= IFF_UP;
   1206 
   1207 		switch (ifa->ifa_addr->sa_family) {
   1208 #ifdef INET
   1209 		case AF_INET:
   1210 			mb86960_init(sc);
   1211 			arp_ifinit(ifp, ifa);
   1212 			break;
   1213 #endif
   1214 #ifdef NS
   1215 		case AF_NS:
   1216 		    {
   1217 			struct ns_addr *ina = &IA_SNS(ifa)->sns_addr;
   1218 
   1219 			if (ns_nullhost(*ina))
   1220 				ina->x_host =
   1221 				    *(union ns_host *)LLADDR(ifp->if_sadl);
   1222 			else {
   1223 				bcopy(ina->x_host.c_host, LLADDR(ifp->if_sadl),
   1224 				    ETHER_ADDR_LEN);
   1225 			}
   1226 			/* Set new address. */
   1227 			mb86960_init(sc);
   1228 			break;
   1229 		    }
   1230 #endif
   1231 		default:
   1232 			mb86960_init(sc);
   1233 			break;
   1234 		}
   1235 		break;
   1236 
   1237 	case SIOCSIFFLAGS:
   1238 		if ((ifp->if_flags & IFF_UP) == 0 &&
   1239 		    (ifp->if_flags & IFF_RUNNING) != 0) {
   1240 			/*
   1241 			 * If interface is marked down and it is running, then
   1242 			 * stop it.
   1243 			 */
   1244 			mb86960_stop(sc);
   1245 			ifp->if_flags &= ~IFF_RUNNING;
   1246 			mb86960_disable(sc);
   1247 		} else if ((ifp->if_flags & IFF_UP) != 0 &&
   1248 		    (ifp->if_flags & IFF_RUNNING) == 0) {
   1249 			/*
   1250 			 * If interface is marked up and it is stopped, then
   1251 			 * start it.
   1252 			 */
   1253 			if ((error = mb86960_enable(sc)) != 0)
   1254 				break;
   1255 			mb86960_init(sc);
   1256 		} else if ((ifp->if_flags & IFF_UP) != 0) {
   1257 			/*
   1258 			 * Reset the interface to pick up changes in any other
   1259 			 * flags that affect hardware registers.
   1260 			 */
   1261 			mb86960_setmode(sc);
   1262 		}
   1263 #if DEBUG >= 1
   1264 		/* "ifconfig fe0 debug" to print register dump. */
   1265 		if (ifp->if_flags & IFF_DEBUG) {
   1266 			log(LOG_INFO, "%s: SIOCSIFFLAGS(DEBUG)\n",
   1267 			    sc->sc_dev.dv_xname);
   1268 			mb86960_dump(LOG_DEBUG, sc);
   1269 		}
   1270 #endif
   1271 		break;
   1272 
   1273 	case SIOCADDMULTI:
   1274 	case SIOCDELMULTI:
   1275 		if (sc->sc_enabled == 0) {
   1276 			error = EIO;
   1277 			break;
   1278 		}
   1279 
   1280 		/* Update our multicast list. */
   1281 		error = (cmd == SIOCADDMULTI) ?
   1282 		    ether_addmulti(ifr, &sc->sc_ec) :
   1283 		    ether_delmulti(ifr, &sc->sc_ec);
   1284 
   1285 		if (error == ENETRESET) {
   1286 			/*
   1287 			 * Multicast list has changed; set the hardware filter
   1288 			 * accordingly.
   1289 			 */
   1290 			mb86960_setmode(sc);
   1291 			error = 0;
   1292 		}
   1293 		break;
   1294 
   1295 	case SIOCGIFMEDIA:
   1296 	case SIOCSIFMEDIA:
   1297 		error = ifmedia_ioctl(ifp, ifr, &sc->sc_media, cmd);
   1298 		break;
   1299 
   1300 	default:
   1301 		error = EINVAL;
   1302 		break;
   1303 	}
   1304 
   1305 	splx(s);
   1306 	return (error);
   1307 }
   1308 
   1309 /*
   1310  * Retreive packet from receive buffer and send to the next level up via
   1311  * ether_input(). If there is a BPF listener, give a copy to BPF, too.
   1312  * Returns 0 if success, -1 if error (i.e., mbuf allocation failure).
   1313  */
   1314 int
   1315 mb86960_get_packet(sc, len)
   1316 	struct mb86960_softc *sc;
   1317 	int len;
   1318 {
   1319 	bus_space_tag_t bst = sc->sc_bst;
   1320 	bus_space_handle_t bsh = sc->sc_bsh;
   1321 	struct ifnet *ifp = &sc->sc_ec.ec_if;
   1322 	struct ether_header *eh;
   1323 	struct mbuf *m;
   1324 
   1325 	/* Allocate a header mbuf. */
   1326 	MGETHDR(m, M_DONTWAIT, MT_DATA);
   1327 	if (m == 0)
   1328 		return (0);
   1329 	m->m_pkthdr.rcvif = ifp;
   1330 	m->m_pkthdr.len = len;
   1331 
   1332 	/* The following silliness is to make NFS happy. */
   1333 #define	EROUND	((sizeof(struct ether_header) + 3) & ~3)
   1334 #define	EOFF	(EROUND - sizeof(struct ether_header))
   1335 
   1336 	/*
   1337 	 * Our strategy has one more problem.  There is a policy on
   1338 	 * mbuf cluster allocation.  It says that we must have at
   1339 	 * least MINCLSIZE (208 bytes) to allocate a cluster.  For a
   1340 	 * packet of a size between (MHLEN - 2) to (MINCLSIZE - 2),
   1341 	 * our code violates the rule...
   1342 	 * On the other hand, the current code is short, simle,
   1343 	 * and fast, however.  It does no harmful thing, just waists
   1344 	 * some memory.  Any comments?  FIXME.
   1345 	 */
   1346 
   1347 	/* Attach a cluster if this packet doesn't fit in a normal mbuf. */
   1348 	if (len > MHLEN - EOFF) {
   1349 		MCLGET(m, M_DONTWAIT);
   1350 		if ((m->m_flags & M_EXT) == 0) {
   1351 			m_freem(m);
   1352 			return (0);
   1353 		}
   1354 	}
   1355 
   1356 	/*
   1357 	 * The following assumes there is room for the ether header in the
   1358 	 * header mbuf.
   1359 	 */
   1360 	m->m_data += EOFF;
   1361 	eh = mtod(m, struct ether_header *);
   1362 
   1363 	/* Set the length of this packet. */
   1364 	m->m_len = len;
   1365 
   1366 	/* Get a packet. */
   1367 	bus_space_read_multi_2(bst, bsh, FE_BMPR8, mtod(m, u_int16_t *),
   1368 			       (len + 1) >> 1);
   1369 
   1370 #if NBPFILTER > 0
   1371 	/*
   1372 	 * Check if there's a BPF listener on this interface.  If so, hand off
   1373 	 * the raw packet to bpf.
   1374 	 */
   1375 	if (ifp->if_bpf) {
   1376 		bpf_mtap(ifp->if_bpf, m);
   1377 
   1378 		/*
   1379 		 * Note that the interface cannot be in promiscuous mode if
   1380 		 * there are no BPF listeners.  And if we are in promiscuous
   1381 		 * mode, we have to check if this packet is really ours.
   1382 		 */
   1383 		if ((ifp->if_flags & IFF_PROMISC) != 0 &&
   1384 		    (eh->ether_dhost[0] & 1) == 0 && /* !mcast and !bcast */
   1385 	  	    bcmp(eh->ether_dhost, sc->sc_enaddr,
   1386 			sizeof(eh->ether_dhost)) != 0) {
   1387 			m_freem(m);
   1388 			return (1);
   1389 		}
   1390 	}
   1391 #endif
   1392 
   1393 	/* Fix up data start offset in mbuf to point past ether header. */
   1394 	m_adj(m, sizeof(struct ether_header));
   1395 	ether_input(ifp, eh, m);
   1396 	return (1);
   1397 }
   1398 
   1399 /*
   1400  * Write an mbuf chain to the transmission buffer memory using 16 bit PIO.
   1401  * Returns number of bytes actually written, including length word.
   1402  *
   1403  * If an mbuf chain is too long for an Ethernet frame, it is not sent.
   1404  * Packets shorter than Ethernet minimum are legal, and we pad them
   1405  * before sending out.  An exception is "partial" packets which are
   1406  * shorter than mandatory Ethernet header.
   1407  *
   1408  * I wrote a code for an experimental "delayed padding" technique.
   1409  * When employed, it postpones the padding process for short packets.
   1410  * If xmit() occured at the moment, the padding process is omitted, and
   1411  * garbages are sent as pad data.  If next packet is stored in the
   1412  * transmission buffer before xmit(), write_mbuf() pads the previous
   1413  * packet before transmitting new packet.  This *may* gain the
   1414  * system performance (slightly).
   1415  */
   1416 void
   1417 mb86960_write_mbufs(sc, m)
   1418 	struct mb86960_softc *sc;
   1419 	struct mbuf *m;
   1420 {
   1421 	bus_space_tag_t bst = sc->sc_bst;
   1422 	bus_space_handle_t bsh = sc->sc_bsh;
   1423 	u_char *data;
   1424 	u_short savebyte;	/* WARNING: Architecture dependent! */
   1425 	int totlen, len, wantbyte;
   1426 #if FE_DEBUG >= 2
   1427 	struct mbuf *mp;
   1428 #endif
   1429 
   1430 	/* XXX thorpej 960116 - quiet bogus compiler warning. */
   1431 	savebyte = 0;
   1432 
   1433 #if FE_DELAYED_PADDING
   1434 	/* Do the "delayed padding." */
   1435 	len = sc->txb_padding >> 1;
   1436 	if (len > 0) {
   1437 		while (--len >= 0)
   1438 			bus_space_write_2(bst, bsh, FE_BMPR8, 0);
   1439 		sc->txb_padding = 0;
   1440 	}
   1441 #endif
   1442 
   1443 	/* We need to use m->m_pkthdr.len, so require the header */
   1444 	if ((m->m_flags & M_PKTHDR) == 0)
   1445 	  	panic("mb86960_write_mbufs: no header mbuf");
   1446 
   1447 #if FE_DEBUG >= 2
   1448 	/* First, count up the total number of bytes to copy. */
   1449 	for (totlen = 0, mp = m; mp != 0; mp = mp->m_next)
   1450 		totlen += mp->m_len;
   1451 	/* Check if this matches the one in the packet header. */
   1452 	if (totlen != m->m_pkthdr.len)
   1453 		log(LOG_WARNING, "%s: packet length mismatch? (%d/%d)\n",
   1454 		    sc->sc_dev.dv_xname, totlen, m->m_pkthdr.len);
   1455 #else
   1456 	/* Just use the length value in the packet header. */
   1457 	totlen = m->m_pkthdr.len;
   1458 #endif
   1459 
   1460 #if FE_DEBUG >= 1
   1461 	/*
   1462 	 * Should never send big packets.  If such a packet is passed,
   1463 	 * it should be a bug of upper layer.  We just ignore it.
   1464 	 * ... Partial (too short) packets, neither.
   1465 	 */
   1466 	if (totlen > (ETHER_MAX_LEN - ETHER_CRC_LEN) ||
   1467 	    totlen < ETHER_HDR_LEN) {
   1468 		log(LOG_ERR, "%s: got a %s packet (%u bytes) to send\n",
   1469 		    sc->sc_dev.dv_xname,
   1470 		    totlen < ETHER_HDR_LEN ? "partial" : "big", totlen);
   1471 		sc->sc_ec.ec_if.if_oerrors++;
   1472 		return;
   1473 	}
   1474 #endif
   1475 
   1476 	/*
   1477 	 * Put the length word for this frame.
   1478 	 * Does 86960 accept odd length?  -- Yes.
   1479 	 * Do we need to pad the length to minimum size by ourselves?
   1480 	 * -- Generally yes.  But for (or will be) the last
   1481 	 * packet in the transmission buffer, we can skip the
   1482 	 * padding process.  It may gain performance slightly.  FIXME.
   1483 	 */
   1484 	bus_space_write_2(bst, bsh, FE_BMPR8,
   1485 	    max(totlen, (ETHER_MIN_LEN - ETHER_CRC_LEN)));
   1486 
   1487 	/*
   1488 	 * Update buffer status now.
   1489 	 * Truncate the length up to an even number, since we use outw().
   1490 	 */
   1491 	totlen = (totlen + 1) & ~1;
   1492 	sc->txb_free -= FE_DATA_LEN_LEN +
   1493 	    max(totlen, (ETHER_MIN_LEN - ETHER_CRC_LEN));
   1494 	sc->txb_count++;
   1495 
   1496 #if FE_DELAYED_PADDING
   1497 	/* Postpone the packet padding if necessary. */
   1498 	if (totlen < (ETHER_MIN_LEN - ETHER_CRC_LEN))
   1499 		sc->txb_padding = (ETHER_MIN_LEN - ETHER_CRC_LEN) - totlen;
   1500 #endif
   1501 
   1502 	/*
   1503 	 * Transfer the data from mbuf chain to the transmission buffer.
   1504 	 * MB86960 seems to require that data be transferred as words, and
   1505 	 * only words.  So that we require some extra code to patch
   1506 	 * over odd-length mbufs.
   1507 	 */
   1508 	wantbyte = 0;
   1509 	for (; m != 0; m = m->m_next) {
   1510 		/* Ignore empty mbuf. */
   1511 		len = m->m_len;
   1512 		if (len == 0)
   1513 			continue;
   1514 
   1515 		/* Find the actual data to send. */
   1516 		data = mtod(m, caddr_t);
   1517 
   1518 		/* Finish the last byte. */
   1519 		if (wantbyte) {
   1520 			bus_space_write_2(bst, bsh, FE_BMPR8,
   1521 			    savebyte | (*data << 8));
   1522 			data++;
   1523 			len--;
   1524 			wantbyte = 0;
   1525 		}
   1526 
   1527 		/* Output contiguous words. */
   1528 		if (len > 1)
   1529 			bus_space_write_multi_2(bst, bsh, FE_BMPR8,
   1530 						(u_int16_t *)data, len >> 1);
   1531 
   1532 		/* Save remaining byte, if there is one. */
   1533 		if (len & 1) {
   1534 			data += len & ~1;
   1535 			savebyte = *data;
   1536 			wantbyte = 1;
   1537 		}
   1538 	}
   1539 
   1540 	/* Spit the last byte, if the length is odd. */
   1541 	if (wantbyte)
   1542 		bus_space_write_2(bst, bsh, FE_BMPR8, savebyte);
   1543 
   1544 #if ! FE_DELAYED_PADDING
   1545 	/*
   1546 	 * Pad the packet to the minimum length if necessary.
   1547 	 */
   1548 	len = ((ETHER_MIN_LEN - ETHER_CRC_LEN) >> 1) - (totlen >> 1);
   1549 	while (--len >= 0)
   1550 		bus_space_write_2(bst, bsh, FE_BMPR8, 0);
   1551 #endif
   1552 }
   1553 
   1554 /*
   1555  * Compute the multicast address filter from the
   1556  * list of multicast addresses we need to listen to.
   1557  */
   1558 void
   1559 mb86960_getmcaf(ec, af)
   1560 	struct ethercom *ec;
   1561 	u_char *af;
   1562 {
   1563 	struct ifnet *ifp = &ec->ec_if;
   1564 	struct ether_multi *enm;
   1565 	register u_char *cp;
   1566 	register u_int32_t crc;
   1567 	static const u_int32_t crctab[] = {
   1568 		0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac,
   1569 		0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c,
   1570 		0xedb88320, 0xf00f9344, 0xd6d6a3e8, 0xcb61b38c,
   1571 		0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c
   1572 	};
   1573 	register int len;
   1574 	struct ether_multistep step;
   1575 
   1576 	/*
   1577 	 * Set up multicast address filter by passing all multicast addresses
   1578 	 * through a crc generator, and then using the high order 6 bits as an
   1579 	 * index into the 64 bit logical address filter.  The high order bit
   1580 	 * selects the word, while the rest of the bits select the bit within
   1581 	 * the word.
   1582 	 */
   1583 
   1584 	if ((ifp->if_flags & IFF_PROMISC) != 0)
   1585 		goto allmulti;
   1586 
   1587 	af[0] = af[1] = af[2] = af[3] = af[4] = af[5] = af[6] = af[7] = 0x00;
   1588 	ETHER_FIRST_MULTI(step, ec, enm);
   1589 	while (enm != NULL) {
   1590 		if (bcmp(enm->enm_addrlo, enm->enm_addrhi,
   1591 		    sizeof(enm->enm_addrlo)) != 0) {
   1592 			/*
   1593 			 * We must listen to a range of multicast addresses.
   1594 			 * For now, just accept all multicasts, rather than
   1595 			 * trying to set only those filter bits needed to match
   1596 			 * the range.  (At this time, the only use of address
   1597 			 * ranges is for IP multicast routing, for which the
   1598 			 * range is big enough to require all bits set.)
   1599 			 */
   1600 			goto allmulti;
   1601 		}
   1602 
   1603 		cp = enm->enm_addrlo;
   1604 		crc = 0xffffffff;
   1605 		for (len = sizeof(enm->enm_addrlo); --len >= 0;) {
   1606 			crc ^= *cp++;
   1607 			crc = (crc >> 4) ^ crctab[crc & 0xf];
   1608 			crc = (crc >> 4) ^ crctab[crc & 0xf];
   1609 		}
   1610 		/* Just want the 6 most significant bits. */
   1611 		crc >>= 26;
   1612 
   1613 		/* Turn on the corresponding bit in the filter. */
   1614 		af[crc >> 3] |= 1 << (crc & 7);
   1615 
   1616 		ETHER_NEXT_MULTI(step, enm);
   1617 	}
   1618 	ifp->if_flags &= ~IFF_ALLMULTI;
   1619 	return;
   1620 
   1621 allmulti:
   1622 	ifp->if_flags |= IFF_ALLMULTI;
   1623 	af[0] = af[1] = af[2] = af[3] = af[4] = af[5] = af[6] = af[7] = 0xff;
   1624 }
   1625 
   1626 /*
   1627  * Calculate a new "multicast packet filter" and put the 86960
   1628  * receiver in appropriate mode.
   1629  */
   1630 void
   1631 mb86960_setmode(sc)
   1632 	struct mb86960_softc *sc;
   1633 {
   1634 	bus_space_tag_t bst = sc->sc_bst;
   1635 	bus_space_handle_t bsh = sc->sc_bsh;
   1636 	int flags = sc->sc_ec.ec_if.if_flags;
   1637 
   1638 	/*
   1639 	 * If the interface is not running, we postpone the update
   1640 	 * process for receive modes and multicast address filter
   1641 	 * until the interface is restarted.  It reduces some
   1642 	 * complicated job on maintaining chip states.  (Earlier versions
   1643 	 * of this driver had a bug on that point...)
   1644 	 *
   1645 	 * To complete the trick, mb86960_init() calls mb86960_setmode() after
   1646 	 * restarting the interface.
   1647 	 */
   1648 	if ((flags & IFF_RUNNING) == 0)
   1649 		return;
   1650 
   1651 	/*
   1652 	 * Promiscuous mode is handled separately.
   1653 	 */
   1654 	if ((flags & IFF_PROMISC) != 0) {
   1655 		/*
   1656 		 * Program 86960 to receive all packets on the segment
   1657 		 * including those directed to other stations.
   1658 		 * Multicast filter stored in MARs are ignored
   1659 		 * under this setting, so we don't need to update it.
   1660 		 *
   1661 		 * Promiscuous mode is used solely by BPF, and BPF only
   1662 		 * listens to valid (no error) packets.  So, we ignore
   1663 		 * errornous ones even in this mode.
   1664 		 */
   1665 		bus_space_write_1(bst, bsh, FE_DLCR5,
   1666 		    sc->proto_dlcr5 | FE_D5_AFM0 | FE_D5_AFM1);
   1667 		sc->filter_change = 0;
   1668 
   1669 #if FE_DEBUG >= 3
   1670 		log(LOG_INFO, "%s: promiscuous mode\n", sc->sc_dev.dv_xname);
   1671 #endif
   1672 		return;
   1673 	}
   1674 
   1675 	/*
   1676 	 * Turn the chip to the normal (non-promiscuous) mode.
   1677 	 */
   1678 	bus_space_write_1(bst, bsh, FE_DLCR5, sc->proto_dlcr5 | FE_D5_AFM1);
   1679 
   1680 	/*
   1681 	 * Find the new multicast filter value.
   1682 	 */
   1683 	mb86960_getmcaf(&sc->sc_ec, sc->filter);
   1684 	sc->filter_change = 1;
   1685 
   1686 #if FE_DEBUG >= 3
   1687 	log(LOG_INFO,
   1688 	    "%s: address filter: [%02x %02x %02x %02x %02x %02x %02x %02x]\n",
   1689 	    sc->sc_dev.dv_xname,
   1690 	    sc->filter[0], sc->filter[1], sc->filter[2], sc->filter[3],
   1691 	    sc->filter[4], sc->filter[5], sc->filter[6], sc->filter[7]);
   1692 #endif
   1693 
   1694 	/*
   1695 	 * We have to update the multicast filter in the 86960, A.S.A.P.
   1696 	 *
   1697 	 * Note that the DLC (Data Linc Control unit, i.e. transmitter
   1698 	 * and receiver) must be stopped when feeding the filter, and
   1699 	 * DLC trushes all packets in both transmission and receive
   1700 	 * buffers when stopped.
   1701 	 *
   1702 	 * ... Are the above sentenses correct?  I have to check the
   1703 	 *     manual of the MB86960A.  FIXME.
   1704 	 *
   1705 	 * To reduce the packet lossage, we delay the filter update
   1706 	 * process until buffers are empty.
   1707 	 */
   1708 	if (sc->txb_sched == 0 && sc->txb_count == 0 &&
   1709 	    (bus_space_read_1(bst, bsh, FE_DLCR1) & FE_D1_PKTRDY) == 0) {
   1710 		/*
   1711 		 * Buffers are (apparently) empty.  Load
   1712 		 * the new filter value into MARs now.
   1713 		 */
   1714 		mb86960_loadmar(sc);
   1715 	} else {
   1716 		/*
   1717 		 * Buffers are not empty.  Mark that we have to update
   1718 		 * the MARs.  The new filter will be loaded by mb86960_intr()
   1719 		 * later.
   1720 		 */
   1721 #if FE_DEBUG >= 4
   1722 		log(LOG_INFO, "%s: filter change delayed\n",
   1723 		    sc->sc_dev.dv_xname);
   1724 #endif
   1725 	}
   1726 }
   1727 
   1728 /*
   1729  * Load a new multicast address filter into MARs.
   1730  *
   1731  * The caller must have splnet'ed befor mb86960_loadmar.
   1732  * This function starts the DLC upon return.  So it can be called only
   1733  * when the chip is working, i.e., from the driver's point of view, when
   1734  * a device is RUNNING.  (I mistook the point in previous versions.)
   1735  */
   1736 void
   1737 mb86960_loadmar(sc)
   1738 	struct mb86960_softc *sc;
   1739 {
   1740 	bus_space_tag_t bst = sc->sc_bst;
   1741 	bus_space_handle_t bsh = sc->sc_bsh;
   1742 
   1743 	/* Stop the DLC (transmitter and receiver). */
   1744 	bus_space_write_1(bst, bsh, FE_DLCR6,
   1745 	    sc->proto_dlcr6 | FE_D6_DLC_DISABLE);
   1746 
   1747 	/* Select register bank 1 for MARs. */
   1748 	bus_space_write_1(bst, bsh, FE_DLCR7,
   1749 	    sc->proto_dlcr7 | FE_D7_RBS_MAR | FE_D7_POWER_UP);
   1750 
   1751 	/* Copy filter value into the registers. */
   1752 	bus_space_write_region_1(bst, bsh, FE_MAR8, sc->filter, FE_FILTER_LEN);
   1753 
   1754 	/* Restore the bank selection for BMPRs (i.e., runtime registers). */
   1755 	bus_space_write_1(bst, bsh, FE_DLCR7,
   1756 	    sc->proto_dlcr7 | FE_D7_RBS_BMPR | FE_D7_POWER_UP);
   1757 
   1758 	/* Restart the DLC. */
   1759 	bus_space_write_1(bst, bsh, FE_DLCR6,
   1760 	    sc->proto_dlcr6 | FE_D6_DLC_ENABLE);
   1761 
   1762 	/* We have just updated the filter. */
   1763 	sc->filter_change = 0;
   1764 
   1765 #if FE_DEBUG >= 3
   1766 	log(LOG_INFO, "%s: address filter changed\n", sc->sc_dev.dv_xname);
   1767 #endif
   1768 }
   1769 
   1770 /*
   1771  * Enable power on the interface.
   1772  */
   1773 int
   1774 mb86960_enable(sc)
   1775 	struct mb86960_softc *sc;
   1776 {
   1777 
   1778 #if FE_DEBUG >= 3
   1779 	log(LOG_INFO, "%s: mb86960_enable()\n", sc->sc_dev.dv_xname);
   1780 #endif
   1781 
   1782 	if (sc->sc_enabled == 0 && sc->sc_enable != NULL) {
   1783 		if ((*sc->sc_enable)(sc) != 0) {
   1784 			printf("%s: device enable failed\n",
   1785 			    sc->sc_dev.dv_xname);
   1786 			return (EIO);
   1787 		}
   1788 	}
   1789 
   1790 	sc->sc_enabled = 1;
   1791 	return (0);
   1792 }
   1793 
   1794 /*
   1795  * Disable power on the interface.
   1796  */
   1797 void
   1798 mb86960_disable(sc)
   1799 	struct mb86960_softc *sc;
   1800 {
   1801 
   1802 #if FE_DEBUG >= 3
   1803 	log(LOG_INFO, "%s: mb86960_disable()\n", sc->sc_dev.dv_xname);
   1804 #endif
   1805 
   1806 	if (sc->sc_enabled != 0 && sc->sc_disable != NULL) {
   1807 		(*sc->sc_disable)(sc);
   1808 		sc->sc_enabled = 0;
   1809 	}
   1810 }
   1811 
   1812 int
   1813 mb86960_activate(self, act)
   1814 	struct device *self;
   1815 	enum devact act;
   1816 {
   1817 	struct mb86960_softc *sc = (struct mb86960_softc *)self;
   1818 	int rv = 0, s;
   1819 
   1820 	s = splnet();
   1821 	switch (act) {
   1822 	case DVACT_ACTIVATE:
   1823 		rv = EOPNOTSUPP;
   1824 		break;
   1825 
   1826 	case DVACT_DEACTIVATE:
   1827 #ifdef notyet
   1828 		/* First, kill off the interface. */
   1829 		if_detach(sc->sc_ec.ec_if);
   1830 #endif
   1831 
   1832 		/* Now disable the interface. */
   1833 		mb86960_disable(sc);
   1834 		break;
   1835 	}
   1836 	splx(s);
   1837 	return (rv);
   1838 }
   1839 
   1840 #if FE_DEBUG >= 1
   1841 void
   1842 mb86960_dump(level, sc)
   1843 	int level;
   1844 	struct mb86960_softc *sc;
   1845 {
   1846 	bus_space_tag_t bst = sc->sc_bst;
   1847 	bus_space_handle_t bsh = sc->sc_bsh;
   1848 	u_char save_dlcr7;
   1849 
   1850 	save_dlcr7 = bus_space_read_1(bst, bsh, FE_DLCR7);
   1851 
   1852 	log(level, "\tDLCR = %02x %02x %02x %02x %02x %02x %02x %02x\n",
   1853 	    bus_space_read_1(bst, bsh, FE_DLCR0),
   1854 	    bus_space_read_1(bst, bsh, FE_DLCR1),
   1855 	    bus_space_read_1(bst, bsh, FE_DLCR2),
   1856 	    bus_space_read_1(bst, bsh, FE_DLCR3),
   1857 	    bus_space_read_1(bst, bsh, FE_DLCR4),
   1858 	    bus_space_read_1(bst, bsh, FE_DLCR5),
   1859 	    bus_space_read_1(bst, bsh, FE_DLCR6),
   1860 	    bus_space_read_1(bst, bsh, FE_DLCR7));
   1861 
   1862 	bus_space_write_1(bst, bsh, FE_DLCR7,
   1863 	    (save_dlcr7 & ~FE_D7_RBS) | FE_D7_RBS_DLCR);
   1864 	log(level, "\t       %02x %02x %02x %02x %02x %02x %02x %02x\n",
   1865 	    bus_space_read_1(bst, bsh, FE_DLCR8),
   1866 	    bus_space_read_1(bst, bsh, FE_DLCR9),
   1867 	    bus_space_read_1(bst, bsh, FE_DLCR10),
   1868 	    bus_space_read_1(bst, bsh, FE_DLCR11),
   1869 	    bus_space_read_1(bst, bsh, FE_DLCR12),
   1870 	    bus_space_read_1(bst, bsh, FE_DLCR13),
   1871 	    bus_space_read_1(bst, bsh, FE_DLCR14),
   1872 	    bus_space_read_1(bst, bsh, FE_DLCR15));
   1873 
   1874 	bus_space_write_1(bst, bsh, FE_DLCR7,
   1875 	    (save_dlcr7 & ~FE_D7_RBS) | FE_D7_RBS_MAR);
   1876 	log(level, "\tMAR  = %02x %02x %02x %02x %02x %02x %02x %02x\n",
   1877 	    bus_space_read_1(bst, bsh, FE_MAR8),
   1878 	    bus_space_read_1(bst, bsh, FE_MAR9),
   1879 	    bus_space_read_1(bst, bsh, FE_MAR10),
   1880 	    bus_space_read_1(bst, bsh, FE_MAR11),
   1881 	    bus_space_read_1(bst, bsh, FE_MAR12),
   1882 	    bus_space_read_1(bst, bsh, FE_MAR13),
   1883 	    bus_space_read_1(bst, bsh, FE_MAR14),
   1884 	    bus_space_read_1(bst, bsh, FE_MAR15));
   1885 
   1886 	bus_space_write_1(bst, bsh, FE_DLCR7,
   1887 	    (save_dlcr7 & ~FE_D7_RBS) | FE_D7_RBS_BMPR);
   1888 	log(level,
   1889 	    "\tBMPR = xx xx %02x %02x %02x %02x %02x %02x %02x %02x xx %02x\n",
   1890 	    bus_space_read_1(bst, bsh, FE_BMPR10),
   1891 	    bus_space_read_1(bst, bsh, FE_BMPR11),
   1892 	    bus_space_read_1(bst, bsh, FE_BMPR12),
   1893 	    bus_space_read_1(bst, bsh, FE_BMPR13),
   1894 	    bus_space_read_1(bst, bsh, FE_BMPR14),
   1895 	    bus_space_read_1(bst, bsh, FE_BMPR15),
   1896 	    bus_space_read_1(bst, bsh, FE_BMPR16),
   1897 	    bus_space_read_1(bst, bsh, FE_BMPR17),
   1898 	    bus_space_read_1(bst, bsh, FE_BMPR19));
   1899 
   1900 	bus_space_write_1(bst, bsh, FE_DLCR7, save_dlcr7);
   1901 }
   1902 #endif
   1903