Home | History | Annotate | Line # | Download | only in dev
am79c950.c revision 1.23.28.1
      1  1.23.28.1     skrll /*	$NetBSD: am79c950.c,v 1.23.28.1 2009/01/19 13:16:25 skrll Exp $	*/
      2        1.1    tsubai 
      3        1.1    tsubai /*-
      4        1.1    tsubai  * Copyright (c) 1997 David Huang <khym (at) bga.com>
      5        1.1    tsubai  * All rights reserved.
      6        1.1    tsubai  *
      7        1.1    tsubai  * Portions of this code are based on code by Denton Gentry <denny1 (at) home.com>,
      8        1.1    tsubai  * Charles M. Hannum, Yanagisawa Takeshi <yanagisw (at) aa.ap.titech.ac.jp>, and
      9        1.1    tsubai  * Jason R. Thorpe.
     10        1.1    tsubai  *
     11        1.1    tsubai  * Redistribution and use in source and binary forms, with or without
     12        1.1    tsubai  * modification, are permitted provided that the following conditions
     13        1.1    tsubai  * are met:
     14        1.1    tsubai  * 1. Redistributions of source code must retain the above copyright
     15        1.1    tsubai  *    notice, this list of conditions and the following disclaimer.
     16        1.1    tsubai  * 2. The name of the author may not be used to endorse or promote products
     17        1.1    tsubai  *    derived from this software without specific prior written permission
     18        1.1    tsubai  *
     19        1.1    tsubai  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     20        1.1    tsubai  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     21        1.1    tsubai  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     22        1.1    tsubai  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     23        1.1    tsubai  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     24        1.1    tsubai  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     25        1.1    tsubai  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     26        1.1    tsubai  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     27        1.1    tsubai  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     28        1.1    tsubai  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     29        1.1    tsubai  *
     30        1.1    tsubai  */
     31        1.1    tsubai 
     32        1.1    tsubai /*
     33        1.1    tsubai  * Driver for the AMD Am79C940 (MACE) ethernet chip, used for onboard
     34        1.1    tsubai  * ethernet on the Centris/Quadra 660av and Quadra 840av.
     35        1.1    tsubai  */
     36       1.15     lukem 
     37       1.15     lukem #include <sys/cdefs.h>
     38  1.23.28.1     skrll __KERNEL_RCSID(0, "$NetBSD: am79c950.c,v 1.23.28.1 2009/01/19 13:16:25 skrll Exp $");
     39       1.15     lukem 
     40        1.2  jonathan #include "opt_inet.h"
     41        1.1    tsubai 
     42        1.1    tsubai #include <sys/param.h>
     43        1.1    tsubai #include <sys/systm.h>
     44        1.1    tsubai #include <sys/mbuf.h>
     45        1.1    tsubai #include <sys/buf.h>
     46        1.1    tsubai #include <sys/protosw.h>
     47        1.1    tsubai #include <sys/socket.h>
     48        1.1    tsubai #include <sys/syslog.h>
     49        1.1    tsubai #include <sys/ioctl.h>
     50        1.1    tsubai #include <sys/errno.h>
     51        1.1    tsubai #include <sys/device.h>
     52        1.1    tsubai 
     53       1.13   thorpej #include <uvm/uvm_extern.h>
     54       1.13   thorpej 
     55        1.1    tsubai #include <net/if.h>
     56        1.1    tsubai #include <net/if_dl.h>
     57        1.1    tsubai #include <net/if_ether.h>
     58        1.1    tsubai #include <net/if_media.h>
     59        1.1    tsubai 
     60        1.1    tsubai #ifdef INET
     61        1.1    tsubai #include <netinet/in.h>
     62        1.1    tsubai #include <netinet/if_inarp.h>
     63        1.1    tsubai #include <netinet/in_systm.h>
     64        1.1    tsubai #include <netinet/in_var.h>
     65        1.1    tsubai #include <netinet/ip.h>
     66        1.1    tsubai #endif
     67        1.1    tsubai 
     68        1.1    tsubai #include "bpfilter.h"
     69        1.1    tsubai #if NBPFILTER > 0
     70        1.1    tsubai #include <net/bpf.h>
     71        1.1    tsubai #include <net/bpfdesc.h>
     72        1.1    tsubai #endif
     73        1.1    tsubai 
     74        1.1    tsubai #include <machine/bus.h>
     75        1.1    tsubai 
     76        1.1    tsubai #include <macppc/dev/am79c950reg.h>
     77        1.1    tsubai #include <macppc/dev/if_mcvar.h>
     78        1.1    tsubai 
     79        1.1    tsubai hide void	mcwatchdog __P((struct ifnet *));
     80        1.1    tsubai hide int	mcinit __P((struct mc_softc *sc));
     81        1.1    tsubai hide int	mcstop __P((struct mc_softc *sc));
     82       1.20  christos hide int	mcioctl __P((struct ifnet *ifp, u_long cmd, void *data));
     83        1.1    tsubai hide void	mcstart __P((struct ifnet *ifp));
     84        1.1    tsubai hide void	mcreset __P((struct mc_softc *sc));
     85        1.1    tsubai 
     86        1.1    tsubai integrate u_int	maceput __P((struct mc_softc *sc, struct mbuf *m0));
     87        1.1    tsubai integrate void	mc_tint __P((struct mc_softc *sc));
     88       1.21   tsutsui integrate void	mace_read __P((struct mc_softc *, uint8_t *, int));
     89       1.21   tsutsui integrate struct mbuf *mace_get __P((struct mc_softc *, uint8_t *, int));
     90        1.1    tsubai static void mace_calcladrf __P((struct ethercom *ac, u_int8_t *af));
     91        1.1    tsubai static inline u_int16_t ether_cmp __P((void *, void *));
     92        1.1    tsubai static int mc_mediachange __P((struct ifnet *));
     93        1.1    tsubai static void mc_mediastatus __P((struct ifnet *, struct ifmediareq *));
     94        1.1    tsubai 
     95        1.1    tsubai /*
     96        1.1    tsubai  * Compare two Ether/802 addresses for equality, inlined and
     97       1.11       wiz  * unrolled for speed.  Use this like memcmp().
     98        1.1    tsubai  *
     99        1.1    tsubai  * XXX: Add <machine/inlines.h> for stuff like this?
    100        1.1    tsubai  * XXX: or maybe add it to libkern.h instead?
    101        1.1    tsubai  *
    102        1.1    tsubai  * "I'd love to have an inline assembler version of this."
    103        1.1    tsubai  * XXX: Who wanted that? mycroft?  I wrote one, but this
    104        1.1    tsubai  * version in C is as good as hand-coded assembly. -gwr
    105        1.1    tsubai  *
    106        1.1    tsubai  * Please do NOT tweak this without looking at the actual
    107        1.1    tsubai  * assembly code generated before and after your tweaks!
    108        1.1    tsubai  */
    109        1.1    tsubai static inline u_int16_t
    110        1.1    tsubai ether_cmp(one, two)
    111        1.1    tsubai 	void *one, *two;
    112        1.1    tsubai {
    113        1.1    tsubai 	register u_int16_t *a = (u_short *) one;
    114        1.1    tsubai 	register u_int16_t *b = (u_short *) two;
    115        1.1    tsubai 	register u_int16_t diff;
    116        1.1    tsubai 
    117        1.1    tsubai #ifdef	m68k
    118        1.1    tsubai 	/*
    119        1.1    tsubai 	 * The post-increment-pointer form produces the best
    120        1.1    tsubai 	 * machine code for m68k.  This was carefully tuned
    121        1.1    tsubai 	 * so it compiles to just 8 short (2-byte) op-codes!
    122        1.1    tsubai 	 */
    123        1.1    tsubai 	diff  = *a++ - *b++;
    124        1.1    tsubai 	diff |= *a++ - *b++;
    125        1.1    tsubai 	diff |= *a++ - *b++;
    126        1.1    tsubai #else
    127        1.1    tsubai 	/*
    128        1.1    tsubai 	 * Most modern CPUs do better with a single expresion.
    129        1.1    tsubai 	 * Note that short-cut evaluation is NOT helpful here,
    130        1.1    tsubai 	 * because it just makes the code longer, not faster!
    131        1.1    tsubai 	 */
    132        1.1    tsubai 	diff = (a[0] - b[0]) | (a[1] - b[1]) | (a[2] - b[2]);
    133        1.1    tsubai #endif
    134        1.1    tsubai 
    135        1.1    tsubai 	return (diff);
    136        1.1    tsubai }
    137        1.1    tsubai 
    138        1.1    tsubai #define ETHER_CMP	ether_cmp
    139        1.1    tsubai 
    140        1.1    tsubai /*
    141        1.1    tsubai  * Interface exists: make available by filling in network interface
    142        1.1    tsubai  * record.  System will initialize the interface when it is ready
    143        1.1    tsubai  * to accept packets.
    144        1.1    tsubai  */
    145        1.1    tsubai int
    146        1.1    tsubai mcsetup(sc, lladdr)
    147        1.1    tsubai 	struct mc_softc	*sc;
    148        1.1    tsubai 	u_int8_t *lladdr;
    149        1.1    tsubai {
    150        1.1    tsubai 	struct ifnet *ifp = &sc->sc_if;
    151        1.1    tsubai 
    152        1.1    tsubai 	/* reset the chip and disable all interrupts */
    153        1.1    tsubai 	NIC_PUT(sc, MACE_BIUCC, SWRST);
    154        1.1    tsubai 	DELAY(100);
    155        1.1    tsubai 	NIC_PUT(sc, MACE_IMR, ~0);
    156        1.1    tsubai 
    157       1.11       wiz 	memcpy(sc->sc_enaddr, lladdr, ETHER_ADDR_LEN);
    158        1.1    tsubai 	printf(": address %s\n", ether_sprintf(lladdr));
    159        1.1    tsubai 
    160       1.11       wiz 	memcpy(ifp->if_xname, sc->sc_dev.dv_xname, IFNAMSIZ);
    161        1.1    tsubai 	ifp->if_softc = sc;
    162        1.1    tsubai 	ifp->if_ioctl = mcioctl;
    163        1.1    tsubai 	ifp->if_start = mcstart;
    164        1.1    tsubai 	ifp->if_flags =
    165        1.1    tsubai 	    IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS | IFF_MULTICAST;
    166        1.1    tsubai 	ifp->if_watchdog = mcwatchdog;
    167        1.1    tsubai 
    168        1.1    tsubai 	/* initialize ifmedia structures */
    169        1.1    tsubai 	ifmedia_init(&sc->sc_media, 0, mc_mediachange, mc_mediastatus);
    170        1.1    tsubai 	ifmedia_add(&sc->sc_media, IFM_ETHER|IFM_MANUAL, 0, NULL);
    171        1.1    tsubai 	ifmedia_set(&sc->sc_media, IFM_ETHER|IFM_MANUAL);
    172        1.1    tsubai 
    173        1.1    tsubai 	if_attach(ifp);
    174        1.1    tsubai 	ether_ifattach(ifp, lladdr);
    175        1.1    tsubai 
    176        1.1    tsubai 	return (0);
    177        1.1    tsubai }
    178        1.1    tsubai 
    179        1.1    tsubai hide int
    180        1.1    tsubai mcioctl(ifp, cmd, data)
    181        1.1    tsubai 	struct ifnet *ifp;
    182        1.1    tsubai 	u_long cmd;
    183       1.20  christos 	void *data;
    184        1.1    tsubai {
    185        1.1    tsubai 	struct mc_softc *sc = ifp->if_softc;
    186        1.1    tsubai 	struct ifaddr *ifa;
    187        1.1    tsubai 	struct ifreq *ifr;
    188        1.1    tsubai 
    189        1.1    tsubai 	int	s = splnet(), err = 0;
    190        1.1    tsubai 
    191        1.1    tsubai 	switch (cmd) {
    192        1.1    tsubai 
    193  1.23.28.1     skrll 	case SIOCINITIFADDR:
    194        1.1    tsubai 		ifa = (struct ifaddr *)data;
    195        1.1    tsubai 		ifp->if_flags |= IFF_UP;
    196  1.23.28.1     skrll 		mcinit(sc);
    197        1.1    tsubai 		switch (ifa->ifa_addr->sa_family) {
    198        1.1    tsubai #ifdef INET
    199        1.1    tsubai 		case AF_INET:
    200        1.1    tsubai 			arp_ifinit(ifp, ifa);
    201        1.1    tsubai 			break;
    202        1.1    tsubai #endif
    203        1.1    tsubai 		default:
    204        1.1    tsubai 			break;
    205        1.1    tsubai 		}
    206        1.1    tsubai 		break;
    207        1.1    tsubai 
    208        1.1    tsubai 	case SIOCSIFFLAGS:
    209  1.23.28.1     skrll 		if ((err = ifioctl_common(ifp, cmd, data)) != 0)
    210  1.23.28.1     skrll 			break;
    211  1.23.28.1     skrll 		/* XXX see the comment in ed_ioctl() about code re-use */
    212        1.1    tsubai 		if ((ifp->if_flags & IFF_UP) == 0 &&
    213        1.1    tsubai 		    (ifp->if_flags & IFF_RUNNING) != 0) {
    214        1.1    tsubai 			/*
    215        1.1    tsubai 			 * If interface is marked down and it is running,
    216        1.1    tsubai 			 * then stop it.
    217        1.1    tsubai 			 */
    218        1.1    tsubai 			mcstop(sc);
    219        1.1    tsubai 			ifp->if_flags &= ~IFF_RUNNING;
    220        1.1    tsubai 		} else if ((ifp->if_flags & IFF_UP) != 0 &&
    221        1.1    tsubai 		    (ifp->if_flags & IFF_RUNNING) == 0) {
    222        1.1    tsubai 			/*
    223        1.1    tsubai 			 * If interface is marked up and it is stopped,
    224        1.1    tsubai 			 * then start it.
    225        1.1    tsubai 			 */
    226        1.1    tsubai 			(void)mcinit(sc);
    227        1.1    tsubai 		} else {
    228        1.1    tsubai 			/*
    229        1.1    tsubai 			 * reset the interface to pick up any other changes
    230        1.1    tsubai 			 * in flags
    231        1.1    tsubai 			 */
    232        1.1    tsubai 			mcreset(sc);
    233        1.1    tsubai 			mcstart(ifp);
    234        1.1    tsubai 		}
    235        1.1    tsubai 		break;
    236        1.1    tsubai 
    237        1.1    tsubai 	case SIOCADDMULTI:
    238        1.1    tsubai 	case SIOCDELMULTI:
    239       1.22    dyoung 		if ((err = ether_ioctl(ifp, cmd, data)) == ENETRESET) {
    240        1.1    tsubai 			/*
    241        1.1    tsubai 			 * Multicast list has changed; set the hardware
    242        1.1    tsubai 			 * filter accordingly. But remember UP flag!
    243        1.1    tsubai 			 */
    244       1.16   thorpej 			if (ifp->if_flags & IFF_RUNNING)
    245       1.16   thorpej 				mcreset(sc);
    246        1.1    tsubai 			err = 0;
    247        1.1    tsubai 		}
    248        1.1    tsubai 		break;
    249        1.1    tsubai 
    250        1.1    tsubai 	case SIOCGIFMEDIA:
    251        1.1    tsubai 	case SIOCSIFMEDIA:
    252        1.1    tsubai 		ifr = (struct ifreq *) data;
    253        1.1    tsubai 		err = ifmedia_ioctl(ifp, ifr, &sc->sc_media, cmd);
    254        1.1    tsubai 		break;
    255        1.1    tsubai 
    256        1.1    tsubai 	default:
    257  1.23.28.1     skrll 		err = ether_ioctl(ifp, cmd, data);
    258  1.23.28.1     skrll 		break;
    259        1.1    tsubai 	}
    260        1.1    tsubai 	splx(s);
    261        1.1    tsubai 	return (err);
    262        1.1    tsubai }
    263        1.1    tsubai 
    264        1.1    tsubai /*
    265        1.1    tsubai  * Encapsulate a packet of type family for the local net.
    266        1.1    tsubai  */
    267        1.1    tsubai hide void
    268        1.1    tsubai mcstart(ifp)
    269        1.1    tsubai 	struct ifnet *ifp;
    270        1.1    tsubai {
    271        1.1    tsubai 	struct mc_softc	*sc = ifp->if_softc;
    272        1.1    tsubai 	struct mbuf	*m;
    273        1.1    tsubai 
    274        1.1    tsubai 	if ((ifp->if_flags & (IFF_RUNNING | IFF_OACTIVE)) != IFF_RUNNING)
    275        1.1    tsubai 		return;
    276        1.1    tsubai 
    277        1.1    tsubai 	while (1) {
    278        1.1    tsubai 		if (ifp->if_flags & IFF_OACTIVE)
    279        1.1    tsubai 			return;
    280        1.1    tsubai 
    281        1.1    tsubai 		IF_DEQUEUE(&ifp->if_snd, m);
    282        1.1    tsubai 		if (m == 0)
    283        1.1    tsubai 			return;
    284        1.1    tsubai 
    285        1.1    tsubai #if NBPFILTER > 0
    286        1.1    tsubai 		/*
    287        1.1    tsubai 		 * If bpf is listening on this interface, let it
    288        1.1    tsubai 		 * see the packet before we commit it to the wire.
    289        1.1    tsubai 		 */
    290        1.1    tsubai 		if (ifp->if_bpf)
    291        1.1    tsubai 			bpf_mtap(ifp->if_bpf, m);
    292        1.1    tsubai #endif
    293        1.1    tsubai 
    294        1.1    tsubai 		/*
    295        1.1    tsubai 		 * Copy the mbuf chain into the transmit buffer.
    296        1.1    tsubai 		 */
    297        1.1    tsubai 		ifp->if_flags |= IFF_OACTIVE;
    298        1.1    tsubai 		maceput(sc, m);
    299        1.1    tsubai 
    300        1.1    tsubai 		ifp->if_opackets++;		/* # of pkts */
    301        1.1    tsubai 	}
    302        1.1    tsubai }
    303        1.1    tsubai 
    304        1.1    tsubai /*
    305        1.1    tsubai  * reset and restart the MACE.  Called in case of fatal
    306        1.1    tsubai  * hardware/software errors.
    307        1.1    tsubai  */
    308        1.1    tsubai hide void
    309        1.1    tsubai mcreset(sc)
    310        1.1    tsubai 	struct mc_softc *sc;
    311        1.1    tsubai {
    312        1.1    tsubai 	mcstop(sc);
    313        1.1    tsubai 	mcinit(sc);
    314        1.1    tsubai }
    315        1.1    tsubai 
    316        1.1    tsubai hide int
    317        1.1    tsubai mcinit(sc)
    318        1.1    tsubai 	struct mc_softc *sc;
    319        1.1    tsubai {
    320        1.1    tsubai 	int s;
    321        1.1    tsubai 	u_int8_t maccc, ladrf[8];
    322        1.1    tsubai 
    323        1.1    tsubai 	if (sc->sc_if.if_flags & IFF_RUNNING)
    324        1.1    tsubai 		/* already running */
    325        1.1    tsubai 		return (0);
    326        1.1    tsubai 
    327        1.1    tsubai 	s = splnet();
    328        1.1    tsubai 
    329        1.1    tsubai 	NIC_PUT(sc, MACE_BIUCC, sc->sc_biucc);
    330        1.1    tsubai 	NIC_PUT(sc, MACE_FIFOCC, sc->sc_fifocc);
    331        1.1    tsubai 	NIC_PUT(sc, MACE_IMR, ~0); /* disable all interrupts */
    332        1.1    tsubai 	NIC_PUT(sc, MACE_PLSCC, sc->sc_plscc);
    333        1.1    tsubai 
    334        1.1    tsubai 	NIC_PUT(sc, MACE_UTR, RTRD); /* disable reserved test registers */
    335        1.1    tsubai 
    336        1.1    tsubai 	/* set MAC address */
    337        1.1    tsubai 	NIC_PUT(sc, MACE_IAC, ADDRCHG);
    338        1.1    tsubai 	while (NIC_GET(sc, MACE_IAC) & ADDRCHG)
    339        1.1    tsubai 		;
    340        1.1    tsubai 	NIC_PUT(sc, MACE_IAC, PHYADDR);
    341        1.1    tsubai 	bus_space_write_multi_1(sc->sc_regt, sc->sc_regh, MACE_REG(MACE_PADR),
    342        1.1    tsubai 	    sc->sc_enaddr, ETHER_ADDR_LEN);
    343        1.1    tsubai 
    344        1.1    tsubai 	/* set logical address filter */
    345        1.1    tsubai 	mace_calcladrf(&sc->sc_ethercom, ladrf);
    346        1.1    tsubai 
    347        1.1    tsubai 	NIC_PUT(sc, MACE_IAC, ADDRCHG);
    348        1.1    tsubai 	while (NIC_GET(sc, MACE_IAC) & ADDRCHG)
    349        1.1    tsubai 		;
    350        1.1    tsubai 	NIC_PUT(sc, MACE_IAC, LOGADDR);
    351        1.1    tsubai 	bus_space_write_multi_1(sc->sc_regt, sc->sc_regh, MACE_REG(MACE_LADRF),
    352        1.1    tsubai 	    ladrf, 8);
    353        1.1    tsubai 
    354        1.1    tsubai 	NIC_PUT(sc, MACE_XMTFC, APADXMT);
    355        1.1    tsubai 	/*
    356        1.1    tsubai 	 * No need to autostrip padding on receive... Ethernet frames
    357        1.1    tsubai 	 * don't have a length field, unlike 802.3 frames, so the MACE
    358        1.1    tsubai 	 * can't figure out the length of the packet anyways.
    359        1.1    tsubai 	 */
    360        1.1    tsubai 	NIC_PUT(sc, MACE_RCVFC, 0);
    361        1.1    tsubai 
    362        1.1    tsubai 	maccc = ENXMT | ENRCV;
    363        1.1    tsubai 	if (sc->sc_if.if_flags & IFF_PROMISC)
    364        1.1    tsubai 		maccc |= PROM;
    365        1.1    tsubai 
    366        1.1    tsubai 	NIC_PUT(sc, MACE_MACCC, maccc);
    367        1.1    tsubai 
    368        1.1    tsubai 	if (sc->sc_bus_init)
    369        1.1    tsubai 		(*sc->sc_bus_init)(sc);
    370        1.1    tsubai 
    371        1.1    tsubai 	/*
    372        1.1    tsubai 	 * Enable all interrupts except receive, since we use the DMA
    373        1.1    tsubai 	 * completion interrupt for that.
    374        1.1    tsubai 	 */
    375        1.1    tsubai 	NIC_PUT(sc, MACE_IMR, RCVINTM);
    376        1.1    tsubai 
    377        1.1    tsubai 	/* flag interface as "running" */
    378        1.1    tsubai 	sc->sc_if.if_flags |= IFF_RUNNING;
    379        1.1    tsubai 	sc->sc_if.if_flags &= ~IFF_OACTIVE;
    380        1.1    tsubai 
    381        1.1    tsubai 	splx(s);
    382        1.1    tsubai 	return (0);
    383        1.1    tsubai }
    384        1.1    tsubai 
    385        1.1    tsubai /*
    386        1.1    tsubai  * close down an interface and free its buffers
    387        1.1    tsubai  * Called on final close of device, or if mcinit() fails
    388        1.1    tsubai  * part way through.
    389        1.1    tsubai  */
    390        1.1    tsubai hide int
    391        1.1    tsubai mcstop(sc)
    392        1.1    tsubai 	struct mc_softc *sc;
    393        1.1    tsubai {
    394        1.1    tsubai 	int	s = splnet();
    395        1.1    tsubai 
    396        1.1    tsubai 	NIC_PUT(sc, MACE_BIUCC, SWRST);
    397        1.1    tsubai 	DELAY(100);
    398        1.1    tsubai 
    399        1.1    tsubai 	sc->sc_if.if_timer = 0;
    400       1.14     bjh21 	sc->sc_if.if_flags &= ~IFF_RUNNING;
    401        1.1    tsubai 
    402        1.1    tsubai 	splx(s);
    403        1.1    tsubai 	return (0);
    404        1.1    tsubai }
    405        1.1    tsubai 
    406        1.1    tsubai /*
    407        1.1    tsubai  * Called if any Tx packets remain unsent after 5 seconds,
    408        1.1    tsubai  * In all cases we just reset the chip, and any retransmission
    409        1.1    tsubai  * will be handled by higher level protocol timeouts.
    410        1.1    tsubai  */
    411        1.1    tsubai hide void
    412        1.1    tsubai mcwatchdog(ifp)
    413        1.1    tsubai 	struct ifnet *ifp;
    414        1.1    tsubai {
    415        1.1    tsubai 	struct mc_softc *sc = ifp->if_softc;
    416        1.1    tsubai 
    417        1.1    tsubai 	printf("mcwatchdog: resetting chip\n");
    418        1.1    tsubai 	mcreset(sc);
    419        1.1    tsubai }
    420        1.1    tsubai 
    421        1.1    tsubai /*
    422        1.1    tsubai  * stuff packet into MACE (at splnet)
    423        1.1    tsubai  */
    424        1.1    tsubai integrate u_int
    425        1.1    tsubai maceput(sc, m)
    426        1.1    tsubai 	struct mc_softc *sc;
    427        1.1    tsubai 	struct mbuf *m;
    428        1.1    tsubai {
    429        1.1    tsubai 	struct mbuf *n;
    430        1.1    tsubai 	u_int len, totlen = 0;
    431        1.1    tsubai 	u_char *buff;
    432        1.1    tsubai 
    433        1.1    tsubai 	buff = sc->sc_txbuf;
    434        1.1    tsubai 
    435        1.1    tsubai 	for (; m; m = n) {
    436        1.1    tsubai 		u_char *data = mtod(m, u_char *);
    437        1.1    tsubai 		len = m->m_len;
    438        1.1    tsubai 		totlen += len;
    439       1.11       wiz 		memcpy(buff, data, len);
    440        1.1    tsubai 		buff += len;
    441        1.1    tsubai 		MFREE(m, n);
    442        1.1    tsubai 	}
    443        1.1    tsubai 
    444       1.13   thorpej 	if (totlen > PAGE_SIZE)
    445        1.1    tsubai 		panic("%s: maceput: packet overflow", sc->sc_dev.dv_xname);
    446        1.1    tsubai 
    447        1.1    tsubai #if 0
    448        1.1    tsubai 	if (totlen < ETHERMIN + sizeof(struct ether_header)) {
    449        1.1    tsubai 		int pad = ETHERMIN + sizeof(struct ether_header) - totlen;
    450       1.11       wiz 		memset(sc->sc_txbuf + totlen, 0, pad);
    451        1.1    tsubai 		totlen = ETHERMIN + sizeof(struct ether_header);
    452        1.1    tsubai 	}
    453        1.1    tsubai #endif
    454        1.1    tsubai 
    455        1.1    tsubai 	(*sc->sc_putpacket)(sc, totlen);
    456        1.1    tsubai 
    457        1.1    tsubai 	sc->sc_if.if_timer = 5;	/* 5 seconds to watch for failing to transmit */
    458        1.1    tsubai 	return (totlen);
    459        1.1    tsubai }
    460        1.1    tsubai 
    461        1.6    tsubai int
    462        1.1    tsubai mcintr(arg)
    463        1.1    tsubai 	void *arg;
    464        1.1    tsubai {
    465        1.1    tsubai 	struct mc_softc *sc = arg;
    466        1.1    tsubai 	u_int8_t ir;
    467        1.1    tsubai 
    468        1.1    tsubai 	ir = NIC_GET(sc, MACE_IR) & ~NIC_GET(sc, MACE_IMR);
    469        1.6    tsubai 	if (ir == 0)
    470        1.6    tsubai 		return 0;
    471        1.6    tsubai 
    472        1.1    tsubai 	if (ir & JAB) {
    473        1.1    tsubai #ifdef MCDEBUG
    474        1.1    tsubai 		printf("%s: jabber error\n", sc->sc_dev.dv_xname);
    475        1.1    tsubai #endif
    476        1.1    tsubai 		sc->sc_if.if_oerrors++;
    477        1.1    tsubai 	}
    478        1.1    tsubai 
    479        1.1    tsubai 	if (ir & BABL) {
    480        1.1    tsubai #ifdef MCDEBUG
    481        1.1    tsubai 		printf("%s: babble\n", sc->sc_dev.dv_xname);
    482        1.1    tsubai #endif
    483        1.1    tsubai 		sc->sc_if.if_oerrors++;
    484        1.1    tsubai 	}
    485        1.1    tsubai 
    486        1.1    tsubai 	if (ir & CERR) {
    487        1.1    tsubai 		printf("%s: collision error\n", sc->sc_dev.dv_xname);
    488        1.1    tsubai 		sc->sc_if.if_collisions++;
    489        1.1    tsubai 	}
    490        1.1    tsubai 
    491        1.1    tsubai 	/*
    492        1.1    tsubai 	 * Pretend we have carrier; if we don't this will be cleared
    493        1.1    tsubai 	 * shortly.
    494        1.1    tsubai 	 */
    495        1.1    tsubai 	sc->sc_havecarrier = 1;
    496        1.1    tsubai 
    497        1.1    tsubai 	if (ir & XMTINT)
    498        1.1    tsubai 		mc_tint(sc);
    499        1.1    tsubai 
    500        1.1    tsubai 	if (ir & RCVINT)
    501        1.1    tsubai 		mc_rint(sc);
    502        1.6    tsubai 
    503        1.6    tsubai 	return 1;
    504        1.1    tsubai }
    505        1.1    tsubai 
    506        1.1    tsubai integrate void
    507        1.1    tsubai mc_tint(sc)
    508        1.1    tsubai 	struct mc_softc *sc;
    509        1.1    tsubai {
    510        1.1    tsubai 	u_int8_t xmtrc, xmtfs;
    511        1.1    tsubai 
    512        1.1    tsubai 	xmtrc = NIC_GET(sc, MACE_XMTRC);
    513        1.1    tsubai 	xmtfs = NIC_GET(sc, MACE_XMTFS);
    514        1.1    tsubai 
    515        1.1    tsubai 	if ((xmtfs & XMTSV) == 0)
    516        1.1    tsubai 		return;
    517        1.1    tsubai 
    518        1.1    tsubai 	if (xmtfs & UFLO) {
    519        1.1    tsubai 		printf("%s: underflow\n", sc->sc_dev.dv_xname);
    520        1.1    tsubai 		mcreset(sc);
    521        1.1    tsubai 		return;
    522        1.1    tsubai 	}
    523        1.1    tsubai 
    524        1.1    tsubai 	if (xmtfs & LCOL) {
    525        1.1    tsubai 		printf("%s: late collision\n", sc->sc_dev.dv_xname);
    526        1.1    tsubai 		sc->sc_if.if_oerrors++;
    527        1.1    tsubai 		sc->sc_if.if_collisions++;
    528        1.1    tsubai 	}
    529        1.1    tsubai 
    530        1.1    tsubai 	if (xmtfs & MORE)
    531        1.1    tsubai 		/* Real number is unknown. */
    532        1.1    tsubai 		sc->sc_if.if_collisions += 2;
    533        1.1    tsubai 	else if (xmtfs & ONE)
    534        1.1    tsubai 		sc->sc_if.if_collisions++;
    535        1.1    tsubai 	else if (xmtfs & RTRY) {
    536        1.1    tsubai 		sc->sc_if.if_collisions += 16;
    537        1.1    tsubai 		sc->sc_if.if_oerrors++;
    538        1.1    tsubai 	}
    539        1.1    tsubai 
    540        1.1    tsubai 	if (xmtfs & LCAR) {
    541        1.1    tsubai 		sc->sc_havecarrier = 0;
    542        1.1    tsubai 		printf("%s: lost carrier\n", sc->sc_dev.dv_xname);
    543        1.1    tsubai 		sc->sc_if.if_oerrors++;
    544        1.1    tsubai 	}
    545        1.1    tsubai 
    546        1.1    tsubai 	sc->sc_if.if_flags &= ~IFF_OACTIVE;
    547        1.1    tsubai 	sc->sc_if.if_timer = 0;
    548        1.1    tsubai 	mcstart(&sc->sc_if);
    549        1.1    tsubai }
    550        1.1    tsubai 
    551        1.1    tsubai void
    552        1.1    tsubai mc_rint(sc)
    553        1.1    tsubai 	struct mc_softc *sc;
    554        1.1    tsubai {
    555        1.1    tsubai #define	rxf	sc->sc_rxframe
    556        1.1    tsubai 	u_int len;
    557        1.1    tsubai 
    558        1.1    tsubai 	len = (rxf.rx_rcvcnt | ((rxf.rx_rcvsts & 0xf) << 8)) - 4;
    559        1.1    tsubai 
    560        1.1    tsubai #ifdef MCDEBUG
    561        1.1    tsubai 	if (rxf.rx_rcvsts & 0xf0)
    562        1.1    tsubai 		printf("%s: rcvcnt %02x rcvsts %02x rntpc 0x%02x rcvcc 0x%02x\n",
    563        1.1    tsubai 		    sc->sc_dev.dv_xname, rxf.rx_rcvcnt, rxf.rx_rcvsts,
    564        1.1    tsubai 		    rxf.rx_rntpc, rxf.rx_rcvcc);
    565        1.1    tsubai #endif
    566        1.1    tsubai 
    567        1.1    tsubai 	if (rxf.rx_rcvsts & OFLO) {
    568        1.1    tsubai 		printf("%s: receive FIFO overflow\n", sc->sc_dev.dv_xname);
    569        1.1    tsubai 		sc->sc_if.if_ierrors++;
    570        1.1    tsubai 		return;
    571        1.1    tsubai 	}
    572        1.1    tsubai 
    573        1.1    tsubai 	if (rxf.rx_rcvsts & CLSN)
    574        1.1    tsubai 		sc->sc_if.if_collisions++;
    575        1.1    tsubai 
    576        1.1    tsubai 	if (rxf.rx_rcvsts & FRAM) {
    577        1.1    tsubai #ifdef MCDEBUG
    578        1.1    tsubai 		printf("%s: framing error\n", sc->sc_dev.dv_xname);
    579        1.1    tsubai #endif
    580        1.1    tsubai 		sc->sc_if.if_ierrors++;
    581        1.1    tsubai 		return;
    582        1.1    tsubai 	}
    583        1.1    tsubai 
    584        1.1    tsubai 	if (rxf.rx_rcvsts & FCS) {
    585        1.1    tsubai #ifdef MCDEBUG
    586        1.1    tsubai 		printf("%s: frame control checksum error\n", sc->sc_dev.dv_xname);
    587        1.1    tsubai #endif
    588        1.1    tsubai 		sc->sc_if.if_ierrors++;
    589        1.1    tsubai 		return;
    590        1.1    tsubai 	}
    591        1.1    tsubai 
    592        1.1    tsubai 	mace_read(sc, rxf.rx_frame, len);
    593        1.1    tsubai #undef	rxf
    594        1.1    tsubai }
    595        1.1    tsubai 
    596        1.1    tsubai integrate void
    597        1.1    tsubai mace_read(sc, pkt, len)
    598        1.1    tsubai 	struct mc_softc *sc;
    599       1.21   tsutsui 	uint8_t *pkt;
    600        1.1    tsubai 	int len;
    601        1.1    tsubai {
    602        1.1    tsubai 	struct ifnet *ifp = &sc->sc_if;
    603        1.1    tsubai 	struct mbuf *m;
    604        1.1    tsubai 
    605        1.1    tsubai 	if (len <= sizeof(struct ether_header) ||
    606        1.1    tsubai 	    len > ETHERMTU + sizeof(struct ether_header)) {
    607        1.1    tsubai #ifdef MCDEBUG
    608        1.1    tsubai 		printf("%s: invalid packet size %d; dropping\n",
    609        1.1    tsubai 		    sc->sc_dev.dv_xname, len);
    610        1.1    tsubai #endif
    611        1.1    tsubai 		ifp->if_ierrors++;
    612        1.1    tsubai 		return;
    613        1.1    tsubai 	}
    614        1.1    tsubai 
    615        1.1    tsubai 	m = mace_get(sc, pkt, len);
    616        1.1    tsubai 	if (m == NULL) {
    617        1.1    tsubai 		ifp->if_ierrors++;
    618        1.1    tsubai 		return;
    619        1.1    tsubai 	}
    620        1.1    tsubai 
    621        1.1    tsubai 	ifp->if_ipackets++;
    622       1.12   thorpej 
    623       1.12   thorpej #if NBPFILTER > 0
    624       1.12   thorpej 	/* Pass this up to any BPF listeners. */
    625       1.12   thorpej 	if (ifp->if_bpf)
    626       1.12   thorpej 		bpf_mtap(ifp->if_bpf, m);
    627       1.12   thorpej #endif
    628        1.1    tsubai 
    629        1.7   thorpej 	/* Pass the packet up. */
    630        1.7   thorpej 	(*ifp->if_input)(ifp, m);
    631        1.1    tsubai }
    632        1.1    tsubai 
    633        1.1    tsubai /*
    634        1.1    tsubai  * Pull data off an interface.
    635        1.1    tsubai  * Len is length of data, with local net header stripped.
    636        1.1    tsubai  * We copy the data into mbufs.  When full cluster sized units are present
    637        1.1    tsubai  * we copy into clusters.
    638        1.1    tsubai  */
    639        1.1    tsubai integrate struct mbuf *
    640        1.1    tsubai mace_get(sc, pkt, totlen)
    641        1.1    tsubai 	struct mc_softc *sc;
    642       1.21   tsutsui 	uint8_t *pkt;
    643        1.1    tsubai 	int totlen;
    644        1.1    tsubai {
    645        1.1    tsubai 	register struct mbuf *m;
    646        1.1    tsubai 	struct mbuf *top, **mp;
    647        1.1    tsubai 	int len;
    648        1.1    tsubai 
    649        1.1    tsubai 	MGETHDR(m, M_DONTWAIT, MT_DATA);
    650        1.1    tsubai 	if (m == 0)
    651        1.1    tsubai 		return (0);
    652        1.1    tsubai 	m->m_pkthdr.rcvif = &sc->sc_if;
    653        1.1    tsubai 	m->m_pkthdr.len = totlen;
    654        1.1    tsubai 	len = MHLEN;
    655        1.1    tsubai 	top = 0;
    656        1.1    tsubai 	mp = &top;
    657        1.1    tsubai 
    658        1.1    tsubai 	while (totlen > 0) {
    659        1.1    tsubai 		if (top) {
    660        1.1    tsubai 			MGET(m, M_DONTWAIT, MT_DATA);
    661        1.1    tsubai 			if (m == 0) {
    662        1.1    tsubai 				m_freem(top);
    663        1.1    tsubai 				return 0;
    664        1.1    tsubai 			}
    665        1.1    tsubai 			len = MLEN;
    666        1.1    tsubai 		}
    667        1.1    tsubai 		if (totlen >= MINCLSIZE) {
    668        1.1    tsubai 			MCLGET(m, M_DONTWAIT);
    669        1.1    tsubai 			if ((m->m_flags & M_EXT) == 0) {
    670        1.1    tsubai 				m_free(m);
    671        1.1    tsubai 				m_freem(top);
    672        1.1    tsubai 				return 0;
    673        1.1    tsubai 			}
    674        1.1    tsubai 			len = MCLBYTES;
    675        1.1    tsubai 		}
    676        1.1    tsubai 		m->m_len = len = min(totlen, len);
    677       1.20  christos 		memcpy(mtod(m, void *), pkt, len);
    678        1.1    tsubai 		pkt += len;
    679        1.1    tsubai 		totlen -= len;
    680        1.1    tsubai 		*mp = m;
    681        1.1    tsubai 		mp = &m->m_next;
    682        1.1    tsubai 	}
    683        1.1    tsubai 
    684        1.1    tsubai 	return (top);
    685        1.1    tsubai }
    686        1.1    tsubai 
    687        1.1    tsubai /*
    688        1.1    tsubai  * Go through the list of multicast addresses and calculate the logical
    689        1.1    tsubai  * address filter.
    690        1.1    tsubai  */
    691        1.1    tsubai void
    692        1.1    tsubai mace_calcladrf(ac, af)
    693        1.1    tsubai 	struct ethercom *ac;
    694        1.1    tsubai 	u_int8_t *af;
    695        1.1    tsubai {
    696        1.1    tsubai 	struct ifnet *ifp = &ac->ec_if;
    697        1.1    tsubai 	struct ether_multi *enm;
    698        1.1    tsubai 	register u_char *cp, c;
    699        1.1    tsubai 	register u_int32_t crc;
    700        1.1    tsubai 	register int i, len;
    701        1.1    tsubai 	struct ether_multistep step;
    702        1.1    tsubai 
    703        1.1    tsubai 	/*
    704        1.1    tsubai 	 * Set up multicast address filter by passing all multicast addresses
    705        1.1    tsubai 	 * through a crc generator, and then using the high order 6 bits as an
    706        1.1    tsubai 	 * index into the 64 bit logical address filter.  The high order bit
    707        1.1    tsubai 	 * selects the word, while the rest of the bits select the bit within
    708        1.1    tsubai 	 * the word.
    709        1.1    tsubai 	 */
    710        1.1    tsubai 
    711        1.1    tsubai 	*((u_int32_t *)af) = *((u_int32_t *)af + 1) = 0;
    712        1.1    tsubai 
    713        1.1    tsubai 	ETHER_FIRST_MULTI(step, ac, enm);
    714        1.1    tsubai 	while (enm != NULL) {
    715        1.1    tsubai 		if (ETHER_CMP(enm->enm_addrlo, enm->enm_addrhi)) {
    716        1.1    tsubai 			/*
    717        1.1    tsubai 			 * We must listen to a range of multicast addresses.
    718        1.1    tsubai 			 * For now, just accept all multicasts, rather than
    719        1.1    tsubai 			 * trying to set only those filter bits needed to match
    720        1.1    tsubai 			 * the range.  (At this time, the only use of address
    721        1.1    tsubai 			 * ranges is for IP multicast routing, for which the
    722        1.1    tsubai 			 * range is big enough to require all bits set.)
    723        1.1    tsubai 			 */
    724        1.1    tsubai 			goto allmulti;
    725        1.1    tsubai 		}
    726        1.1    tsubai 
    727        1.1    tsubai 		cp = enm->enm_addrlo;
    728        1.1    tsubai 		crc = 0xffffffff;
    729        1.1    tsubai 		for (len = sizeof(enm->enm_addrlo); --len >= 0;) {
    730        1.1    tsubai 			c = *cp++;
    731        1.1    tsubai 			for (i = 8; --i >= 0;) {
    732        1.1    tsubai 				if ((crc & 0x01) ^ (c & 0x01)) {
    733        1.1    tsubai 					crc >>= 1;
    734        1.1    tsubai 					crc ^= 0xedb88320;
    735        1.1    tsubai 				} else
    736        1.1    tsubai 					crc >>= 1;
    737        1.1    tsubai 				c >>= 1;
    738        1.1    tsubai 			}
    739        1.1    tsubai 		}
    740        1.1    tsubai 		/* Just want the 6 most significant bits. */
    741        1.1    tsubai 		crc >>= 26;
    742        1.1    tsubai 
    743        1.1    tsubai 		/* Set the corresponding bit in the filter. */
    744        1.1    tsubai 		af[crc >> 3] |= 1 << (crc & 7);
    745        1.1    tsubai 
    746        1.1    tsubai 		ETHER_NEXT_MULTI(step, enm);
    747        1.1    tsubai 	}
    748        1.1    tsubai 	ifp->if_flags &= ~IFF_ALLMULTI;
    749        1.1    tsubai 	return;
    750        1.1    tsubai 
    751        1.1    tsubai allmulti:
    752        1.1    tsubai 	ifp->if_flags |= IFF_ALLMULTI;
    753        1.1    tsubai 	*((u_int32_t *)af) = *((u_int32_t *)af + 1) = 0xffffffff;
    754        1.1    tsubai }
    755        1.1    tsubai 
    756        1.1    tsubai int
    757        1.1    tsubai mc_mediachange(ifp)
    758        1.1    tsubai 	struct ifnet *ifp;
    759        1.1    tsubai {
    760        1.1    tsubai 	return EINVAL;
    761        1.1    tsubai }
    762        1.1    tsubai 
    763        1.1    tsubai void
    764        1.1    tsubai mc_mediastatus(ifp, ifmr)
    765        1.1    tsubai 	struct ifnet *ifp;
    766        1.1    tsubai 	struct ifmediareq *ifmr;
    767        1.1    tsubai {
    768        1.1    tsubai 	struct mc_softc *sc = ifp->if_softc;
    769        1.1    tsubai 
    770        1.1    tsubai 	if ((ifp->if_flags & IFF_UP) == 0)
    771        1.1    tsubai 		return;
    772        1.1    tsubai 
    773        1.1    tsubai 	if (sc->sc_havecarrier)
    774        1.1    tsubai 		ifmr->ifm_status |= IFM_ACTIVE;
    775        1.1    tsubai }
    776