NetBSD/sys/arch/vax/if/if_le.c

310 lines
9.0 KiB
C
Raw Normal View History

1998-08-15 14:10:47 +04:00
/* $NetBSD: if_le.c,v 1.13 1998/08/15 10:18:19 mycroft Exp $ */
1996-07-20 23:01:55 +04:00
/* #define LE_CHIP_IS_POKEY /* does VS2000 need this ??? */
/*-
1998-08-15 14:10:47 +04:00
* 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.
*/
/*-
1996-07-20 23:01:55 +04:00
* 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
*/
1998-07-05 04:51:04 +04:00
#include "opt_inet.h"
1996-07-20 23:01:55 +04:00
#include "bpfilter.h"
#include <sys/param.h>
#include <sys/syslog.h>
#include <sys/socket.h>
#include <sys/device.h>
#include <sys/reboot.h>
1996-07-20 23:01:55 +04:00
#include <net/if.h>
#include <net/if_ether.h>
1997-03-17 06:17:34 +03:00
#include <net/if_media.h>
1996-07-20 23:01:55 +04:00
#if INET
#include <netinet/in.h>
#include <netinet/if_inarp.h>
1996-07-20 23:01:55 +04:00
#endif
/*
* This would be nice, but it's not yet there...
*
* #include <machine/autoconf.h>
*/
#include <machine/pte.h>
#include <machine/cpu.h>
#include <machine/mtpr.h>
#include <machine/uvax.h>
#include <machine/ka410.h>
#include <machine/vsbus.h>
#include <machine/rpb.h>
1996-07-20 23:01:55 +04:00
1998-07-21 21:36:01 +04:00
#include <dev/ic/lancereg.h>
#include <dev/ic/lancevar.h>
1996-07-20 23:01:55 +04:00
#include <dev/ic/am7990reg.h>
#define LE_NEED_BUF_CONTIG
#include <dev/ic/am7990var.h>
#include <dev/tc/if_levar.h>
#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 *));
1996-07-20 23:01:55 +04:00
void leattach __P((struct device *, struct device *, void *));
int leintr __P((void *sc));
struct cfattach le_ca = {
sizeof(struct le_softc), lematch, leattach
};
1998-01-12 23:52:29 +03:00
extern struct cfdriver le_cd;
1998-07-21 21:36:01 +04:00
#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
1996-07-20 23:01:55 +04:00
lewrcsr(sc, port, val)
1998-07-21 21:36:01 +04:00
struct lance_softc *sc;
1996-07-20 23:01:55 +04:00
u_int16_t port, val;
{
struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
1996-07-20 23:01:55 +04:00
#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
1996-07-20 23:01:55 +04:00
lerdcsr(sc, port)
1998-07-21 21:36:01 +04:00
struct lance_softc *sc;
1996-07-20 23:01:55 +04:00
u_int16_t port;
{
struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
1996-07-20 23:01:55 +04:00
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)
1998-07-21 21:36:01 +04:00
struct lance_softc *sc;
{
}
1996-07-20 23:01:55 +04:00
int
lematch(parent, cf, aux)
1996-07-20 23:01:55 +04:00
struct device *parent;
struct cfdata *cf;
void *aux;
1996-07-20 23:01:55 +04:00
{
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);
1998-07-21 21:36:01 +04:00
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;
1996-07-20 23:01:55 +04:00
xdebug(("leattach: mem=%x, addr=%x, size=%x (%d)\n",
1998-07-21 21:36:01 +04:00
sc->sc_am7990.lsc.sc_mem, sc->sc_am7990.lsc.sc_addr,
sc->sc_am7990.lsc.sc_memsize, sc->sc_am7990.lsc.sc_memsize));
1996-07-20 23:01:55 +04:00
1998-07-21 21:36:01 +04:00
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;
1996-07-20 23:01:55 +04:00
/*
* Get the ethernet address out of rom
*/
1998-07-21 21:36:01 +04:00
for (i = 0; i < sizeof(sc->sc_am7990.lsc.sc_enaddr); i++) {
1996-07-20 23:01:55 +04:00
int *eaddr = (void*)uvax_phys2virt(ca->ca_enaddr);
1998-07-21 21:36:01 +04:00
sc->sc_am7990.lsc.sc_enaddr[i] = (u_char)eaddr[i];
1996-07-20 23:01:55 +04:00
}
1998-07-21 21:36:01 +04:00
bcopy(self->dv_xname, sc->sc_am7990.lsc.sc_ethercom.ec_if.if_xname,
IFNAMSIZ);
1996-07-20 23:01:55 +04:00
am7990_config(&sc->sc_am7990);
#ifdef LEDEBUG
1998-07-21 21:36:01 +04:00
sc->sc_am7990.lsc.sc_debug = LEDEBUG;
1996-07-20 23:01:55 +04:00
#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;
1996-07-20 23:01:55 +04:00
}
#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) {
1996-10-13 07:29:05 +04:00
printf("le: Reg did not settle (to x%x): x%x\n", val,
1996-07-20 23:01:55 +04:00
*regptr);
return;
}
DELAY(100);
}
}
#endif