/* $NetBSD: if_le.c,v 1.13 1998/08/15 10:18:19 mycroft Exp $ */ /* #define LE_CHIP_IS_POKEY /* does VS2000 need this ??? */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Charles M. Hannum. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the NetBSD * Foundation, Inc. and its contributors. * 4. Neither the name of The NetBSD Foundation nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berkeley by * Ralph Campbell and Rick Macklem. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)if_le.c 8.2 (Berkeley) 11/16/93 */ #include "opt_inet.h" #include "bpfilter.h" #include #include #include #include #include #include #include #include #if INET #include #include #endif /* * This would be nice, but it's not yet there... * * #include */ #include #include #include #include #include #include #include #include #include #include #define LE_NEED_BUF_CONTIG #include #include #define xdebug(x) #ifdef LE_CHIP_IS_POKEY /* * access LANCE registers and double-check their contents */ #define wbflush() /* do nothing */ void lewritereg(); #define LERDWR(cntl, src, dst) { (dst) = (src); wbflush(); } #define LEWREG(src, dst) lewritereg(&(dst), (src)) #endif #define LE_IOSIZE 64*1024 /* 64K of real-mem are reserved and already */ extern void *le_iomem; /* mapped into virt-mem by cpu_steal_pages */ extern u_long le_ioaddr; /* le_iomem is virt, le_ioaddr is phys */ #define LE_SOFTC(unit) le_cd.cd_devs[unit] #define LE_DELAY(x) DELAY(x) int lematch __P((struct device *, struct cfdata *, void *)); void leattach __P((struct device *, struct device *, void *)); int leintr __P((void *sc)); struct cfattach le_ca = { sizeof(struct le_softc), lematch, leattach }; extern struct cfdriver le_cd; #if defined(_KERNEL) && !defined(_LKM) #include "opt_ddb.h" #endif #ifdef DDB #define integrate #define hide #else #define integrate static __inline #define hide static #endif hide void lewrcsr __P ((struct lance_softc *, u_int16_t, u_int16_t)); hide u_int16_t lerdcsr __P ((struct lance_softc *, u_int16_t)); hide void lewrcsr(sc, port, val) struct lance_softc *sc; u_int16_t port, val; { struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1; #ifdef LE_CHIP_IS_POKEY LEWREG(port, ler1->ler1_rap); LERDWR(port, val, ler1->ler1_rdp); #else ler1->ler1_rap = port; ler1->ler1_rdp = val; #endif } hide u_int16_t lerdcsr(sc, port) struct lance_softc *sc; u_int16_t port; { struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1; u_int16_t val; #ifdef LE_CHIP_IS_POKEY LEWREG(port, ler1->ler1_rap); LERDWR(0, ler1->ler1_rdp, val); #else ler1->ler1_rap = port; val = ler1->ler1_rdp; #endif return (val); } integrate void lehwinit(sc) struct lance_softc *sc; { } int lematch(parent, cf, aux) struct device *parent; struct cfdata *cf; void *aux; { struct confargs *ca = aux; /* * There could/should be more checks, but for now... */ if (strcmp(ca->ca_name, "le") && strcmp(ca->ca_name, "am7990") && strcmp(ca->ca_name, "AM7990")) return (0); return (1); } /* * */ void leattach(parent, self, aux) struct device *parent, *self; void *aux; { register struct le_softc *sc = (void *)self; struct confargs *ca = aux; u_char *cp; /* pointer to MAC address */ int i; sc->sc_r1 = (void*)uvax_phys2virt(ca->ca_ioaddr); sc->sc_am7990.lsc.sc_conf3 = 0; sc->sc_am7990.lsc.sc_mem = le_iomem; sc->sc_am7990.lsc.sc_addr = le_ioaddr; sc->sc_am7990.lsc.sc_memsize = LE_IOSIZE; sc->sc_am7990.lsc.sc_wrcsr = lewrcsr; sc->sc_am7990.lsc.sc_rdcsr = lerdcsr; sc->sc_am7990.lsc.sc_hwinit = lehwinit; sc->sc_am7990.lsc.sc_nocarrier = NULL; xdebug(("leattach: mem=%x, addr=%x, size=%x (%d)\n", sc->sc_am7990.lsc.sc_mem, sc->sc_am7990.lsc.sc_addr, sc->sc_am7990.lsc.sc_memsize, sc->sc_am7990.lsc.sc_memsize)); sc->sc_am7990.lsc.sc_copytodesc = lance_copytobuf_contig; sc->sc_am7990.lsc.sc_copyfromdesc = lance_copyfrombuf_contig; sc->sc_am7990.lsc.sc_copytobuf = lance_copytobuf_contig; sc->sc_am7990.lsc.sc_copyfrombuf = lance_copyfrombuf_contig; sc->sc_am7990.lsc.sc_zerobuf = lance_zerobuf_contig; /* * Get the ethernet address out of rom */ for (i = 0; i < sizeof(sc->sc_am7990.lsc.sc_enaddr); i++) { int *eaddr = (void*)uvax_phys2virt(ca->ca_enaddr); sc->sc_am7990.lsc.sc_enaddr[i] = (u_char)eaddr[i]; } bcopy(self->dv_xname, sc->sc_am7990.lsc.sc_ethercom.ec_if.if_xname, IFNAMSIZ); am7990_config(&sc->sc_am7990); #ifdef LEDEBUG sc->sc_am7990.lsc.sc_debug = LEDEBUG; #endif vsbus_intr_register(ca, am7990_intr, &sc->sc_am7990); vsbus_intr_enable(ca); /* * Register this device as boot device if we booted from it. * This will fail if there are more than one le in a machine, * fortunately there may be only one. */ if (B_TYPE(bootdev) == BDEV_LE) booted_from = self; } #ifdef LE_CHIP_IS_POKEY /* * Write a lance register port, reading it back to ensure success. This seems * to be necessary during initialization, since the chip appears to be a bit * pokey sometimes. */ void lewritereg(regptr, val) register volatile u_short *regptr; register u_short val; { register int i = 0; while (*regptr != val) { *regptr = val; wbflush(); if (++i > 10000) { printf("le: Reg did not settle (to x%x): x%x\n", val, *regptr); return; } DELAY(100); } } #endif