Support for on-board LANCE on MicroVAX 3300/3400. Also use MI LANCE
code for VAXstations again; though not functioning correctly on all types of machines. (Will fix that later).
This commit is contained in:
parent
7cef41650e
commit
962bc94a90
@ -1,13 +1,12 @@
|
||||
/* $NetBSD: if_le.c,v 1.13 1998/08/15 10:18:19 mycroft Exp $ */
|
||||
|
||||
/* #define LE_CHIP_IS_POKEY /* does VS2000 need this ??? */
|
||||
/* $NetBSD: if_le.c,v 1.14 1999/08/14 18:40:23 ragge Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to The NetBSD Foundation
|
||||
* by Charles M. Hannum.
|
||||
* by Charles M. Hannum and by Jason R. Thorpe of the Numerical Aerospace
|
||||
* Simulation Facility, NASA Ames Research Center.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
@ -19,8 +18,8 @@
|
||||
* 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.
|
||||
* 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.
|
||||
@ -85,6 +84,9 @@
|
||||
#include <sys/device.h>
|
||||
#include <sys/reboot.h>
|
||||
|
||||
#include <vm/vm.h>
|
||||
#include <vm/vm_kern.h>
|
||||
|
||||
#include <net/if.h>
|
||||
#include <net/if_ether.h>
|
||||
#include <net/if_media.h>
|
||||
@ -94,185 +96,138 @@
|
||||
#include <netinet/if_inarp.h>
|
||||
#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/nexus.h>
|
||||
#include <machine/rpb.h>
|
||||
#include <machine/scb.h>
|
||||
|
||||
#include <dev/ic/lancereg.h>
|
||||
#include <dev/ic/lancevar.h>
|
||||
#include <dev/ic/am7990reg.h>
|
||||
#define LE_NEED_BUF_CONTIG
|
||||
#include <dev/ic/am7990var.h>
|
||||
|
||||
#include <dev/tc/if_levar.h>
|
||||
#include "ioconf.h"
|
||||
|
||||
#define xdebug(x)
|
||||
#define LEVEC 0xd4 /* Interrupt vector on 3300/3400 */
|
||||
|
||||
#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
|
||||
struct le_softc {
|
||||
struct am7990_softc sc_am7990; /* Must be first */
|
||||
volatile u_short *sc_rap;
|
||||
volatile u_short *sc_rdp;
|
||||
};
|
||||
|
||||
extern struct cfdriver le_cd;
|
||||
int le_ibus_match __P((struct device *, struct cfdata *, void *));
|
||||
void le_ibus_attach __P((struct device *, struct device *, void *));
|
||||
void lewrcsr __P((struct lance_softc *, u_int16_t, u_int16_t));
|
||||
u_int16_t lerdcsr __P((struct lance_softc *, u_int16_t));
|
||||
void lance_copytobuf_gap2 __P((struct lance_softc *, void *, int, int));
|
||||
void lance_copyfrombuf_gap2 __P((struct lance_softc *, void *, int, int));
|
||||
void lance_zerobuf_gap2 __P((struct lance_softc *, int, int));
|
||||
void leintr __P((int));
|
||||
|
||||
#if defined(_KERNEL) && !defined(_LKM)
|
||||
#include "opt_ddb.h"
|
||||
#endif
|
||||
struct cfattach le_ibus_ca = {
|
||||
sizeof(struct le_softc), le_ibus_match, le_ibus_attach
|
||||
};
|
||||
|
||||
#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;
|
||||
void
|
||||
lewrcsr(ls, port, val)
|
||||
struct lance_softc *ls;
|
||||
u_int16_t port, val;
|
||||
{
|
||||
struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
|
||||
struct le_softc *sc = (void *)ls;
|
||||
|
||||
#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
|
||||
*sc->sc_rap = port;
|
||||
*sc->sc_rdp = val;
|
||||
}
|
||||
|
||||
hide u_int16_t
|
||||
lerdcsr(sc, port)
|
||||
struct lance_softc *sc;
|
||||
u_int16_t
|
||||
lerdcsr(ls, port)
|
||||
struct lance_softc *ls;
|
||||
u_int16_t port;
|
||||
{
|
||||
struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
|
||||
u_int16_t val;
|
||||
struct le_softc *sc = (void *)ls;
|
||||
|
||||
#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;
|
||||
{
|
||||
*sc->sc_rap = port;
|
||||
return *sc->sc_rdp;
|
||||
}
|
||||
|
||||
int
|
||||
lematch(parent, cf, aux)
|
||||
le_ibus_match(parent, cf, aux)
|
||||
struct device *parent;
|
||||
struct cfdata *cf;
|
||||
void *aux;
|
||||
{
|
||||
struct confargs *ca = aux;
|
||||
struct bp_conf *bp = 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);
|
||||
if (strcmp("lance", bp->type))
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
/*
|
||||
*
|
||||
*/
|
||||
void
|
||||
leattach(parent, self, aux)
|
||||
le_ibus_attach(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;
|
||||
struct le_softc *sc = (void *)self;
|
||||
int *lance_addr;
|
||||
int i, vec, br;
|
||||
|
||||
sc->sc_r1 = (void*)uvax_phys2virt(ca->ca_ioaddr);
|
||||
sc->sc_rdp = (short *)vax_map_physmem(0x20084400, 1);
|
||||
sc->sc_rap = sc->sc_rdp + 2;
|
||||
|
||||
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;
|
||||
/*
|
||||
* Set interrupt vector, by forcing an interrupt.
|
||||
*/
|
||||
scb_vecref(0, 0); /* Clear vector ref */
|
||||
*sc->sc_rap = LE_CSR0;
|
||||
*sc->sc_rdp = LE_C0_STOP;
|
||||
DELAY(100);
|
||||
*sc->sc_rdp = LE_C0_INIT|LE_C0_INEA;
|
||||
DELAY(100000);
|
||||
i = scb_vecref(&vec, &br);
|
||||
if (i == 0 || vec == 0)
|
||||
return;
|
||||
scb_vecalloc(vec, leintr, self->dv_unit, SCB_ISTACK);
|
||||
|
||||
printf(": vec %o ipl %x\n%s", vec, br, self->dv_xname);
|
||||
/*
|
||||
* MD functions.
|
||||
*/
|
||||
sc->sc_am7990.lsc.sc_rdcsr = lerdcsr;
|
||||
sc->sc_am7990.lsc.sc_hwinit = lehwinit;
|
||||
sc->sc_am7990.lsc.sc_wrcsr = lewrcsr;
|
||||
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_mem =
|
||||
(void *)uvm_km_valloc(kernel_map, (128 * 1024));
|
||||
if (sc->sc_am7990.lsc.sc_mem == 0)
|
||||
return;
|
||||
|
||||
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;
|
||||
ioaccess((vaddr_t)sc->sc_am7990.lsc.sc_mem, 0x20120000,
|
||||
(128 * 1024) >> VAX_PGSHIFT);
|
||||
|
||||
|
||||
sc->sc_am7990.lsc.sc_addr = 0;
|
||||
sc->sc_am7990.lsc.sc_memsize = (64 * 1024);
|
||||
|
||||
sc->sc_am7990.lsc.sc_copytodesc = lance_copytobuf_gap2;
|
||||
sc->sc_am7990.lsc.sc_copyfromdesc = lance_copyfrombuf_gap2;
|
||||
sc->sc_am7990.lsc.sc_copytobuf = lance_copytobuf_gap2;
|
||||
sc->sc_am7990.lsc.sc_copyfrombuf = lance_copyfrombuf_gap2;
|
||||
sc->sc_am7990.lsc.sc_zerobuf = lance_zerobuf_gap2;
|
||||
|
||||
/*
|
||||
* 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];
|
||||
}
|
||||
lance_addr = (int *)vax_map_physmem(0x20084200, 1);
|
||||
for (i = 0; i < 6; i++)
|
||||
sc->sc_am7990.lsc.sc_enaddr[i] = (u_char)lance_addr[i];
|
||||
vax_unmap_physmem((vaddr_t)lance_addr, 1);
|
||||
|
||||
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,
|
||||
@ -282,28 +237,97 @@ leattach(parent, self, aux)
|
||||
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.
|
||||
* gap2: two bytes of data followed by two bytes of pad.
|
||||
*
|
||||
* Buffers must be 4-byte aligned. The code doesn't worry about
|
||||
* doing an extra byte.
|
||||
*/
|
||||
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);
|
||||
void
|
||||
lance_copytobuf_gap2(sc, fromv, boff, len)
|
||||
struct lance_softc *sc;
|
||||
void *fromv;
|
||||
int boff;
|
||||
register int len;
|
||||
{
|
||||
volatile caddr_t buf = sc->sc_mem;
|
||||
register caddr_t from = fromv;
|
||||
register volatile u_int16_t *bptr;
|
||||
|
||||
if (boff & 0x1) {
|
||||
/* handle unaligned first byte */
|
||||
bptr = ((volatile u_int16_t *)buf) + (boff - 1);
|
||||
*bptr = (*from++ << 8) | (*bptr & 0xff);
|
||||
bptr += 2;
|
||||
len--;
|
||||
} else
|
||||
bptr = ((volatile u_int16_t *)buf) + boff;
|
||||
while (len > 1) {
|
||||
*bptr = (from[1] << 8) | (from[0] & 0xff);
|
||||
bptr += 2;
|
||||
from += 2;
|
||||
len -= 2;
|
||||
}
|
||||
if (len == 1)
|
||||
*bptr = (u_int16_t)*from;
|
||||
}
|
||||
|
||||
void
|
||||
lance_copyfrombuf_gap2(sc, tov, boff, len)
|
||||
struct lance_softc *sc;
|
||||
void *tov;
|
||||
int boff, len;
|
||||
{
|
||||
volatile caddr_t buf = sc->sc_mem;
|
||||
register caddr_t to = tov;
|
||||
register volatile u_int16_t *bptr;
|
||||
register u_int16_t tmp;
|
||||
|
||||
if (boff & 0x1) {
|
||||
/* handle unaligned first byte */
|
||||
bptr = ((volatile u_int16_t *)buf) + (boff - 1);
|
||||
*to++ = (*bptr >> 8) & 0xff;
|
||||
bptr += 2;
|
||||
len--;
|
||||
} else
|
||||
bptr = ((volatile u_int16_t *)buf) + boff;
|
||||
while (len > 1) {
|
||||
tmp = *bptr;
|
||||
*to++ = tmp & 0xff;
|
||||
*to++ = (tmp >> 8) & 0xff;
|
||||
bptr += 2;
|
||||
len -= 2;
|
||||
}
|
||||
if (len == 1)
|
||||
*to = *bptr & 0xff;
|
||||
}
|
||||
|
||||
void
|
||||
lance_zerobuf_gap2(sc, boff, len)
|
||||
struct lance_softc *sc;
|
||||
int boff, len;
|
||||
{
|
||||
volatile caddr_t buf = sc->sc_mem;
|
||||
register volatile u_int16_t *bptr;
|
||||
|
||||
if ((unsigned)boff & 0x1) {
|
||||
bptr = ((volatile u_int16_t *)buf) + (boff - 1);
|
||||
*bptr &= 0xff;
|
||||
bptr += 2;
|
||||
len--;
|
||||
} else
|
||||
bptr = ((volatile u_int16_t *)buf) + boff;
|
||||
while (len > 0) {
|
||||
*bptr = 0;
|
||||
bptr += 2;
|
||||
len -= 2;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
void
|
||||
leintr(unit)
|
||||
int unit;
|
||||
{
|
||||
am7990_intr(le_cd.cd_devs[unit]);
|
||||
}
|
||||
|
255
sys/arch/vax/if/if_le_vsbus.c
Normal file
255
sys/arch/vax/if/if_le_vsbus.c
Normal file
@ -0,0 +1,255 @@
|
||||
/* $NetBSD: if_le_vsbus.c,v 1.1 1999/08/14 18:40:23 ragge Exp $ */
|
||||
|
||||
/*-
|
||||
* 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 <sys/param.h>
|
||||
#include <sys/syslog.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/device.h>
|
||||
#include <sys/reboot.h>
|
||||
|
||||
#include <vm/vm.h>
|
||||
#include <vm/vm_kern.h>
|
||||
|
||||
#include <net/if.h>
|
||||
#include <net/if_ether.h>
|
||||
#include <net/if_media.h>
|
||||
|
||||
#if INET
|
||||
#include <netinet/in.h>
|
||||
#include <netinet/if_inarp.h>
|
||||
#endif
|
||||
|
||||
#include <machine/cpu.h>
|
||||
#include <machine/bus.h>
|
||||
#include <machine/rpb.h>
|
||||
#include <machine/vsbus.h>
|
||||
|
||||
#include <dev/ic/lancereg.h>
|
||||
#include <dev/ic/lancevar.h>
|
||||
#include <dev/ic/am7990reg.h>
|
||||
#include <dev/ic/am7990var.h>
|
||||
|
||||
#include "ioconf.h"
|
||||
|
||||
struct le_softc {
|
||||
struct am7990_softc sc_am7990; /* Must be first */
|
||||
volatile u_short *sc_rap;
|
||||
volatile u_short *sc_rdp;
|
||||
};
|
||||
|
||||
int le_vsbus_match __P((struct device *, struct cfdata *, void *));
|
||||
void le_vsbus_attach __P((struct device *, struct device *, void *));
|
||||
static void lewrcsr __P((struct lance_softc *, u_int16_t, u_int16_t));
|
||||
static u_int16_t lerdcsr __P((struct lance_softc *, u_int16_t));
|
||||
static void leintr __P((int));
|
||||
|
||||
struct cfattach le_vsbus_ca = {
|
||||
sizeof(struct le_softc), le_vsbus_match, le_vsbus_attach
|
||||
};
|
||||
|
||||
void
|
||||
lewrcsr(ls, port, val)
|
||||
struct lance_softc *ls;
|
||||
u_int16_t port, val;
|
||||
{
|
||||
struct le_softc *sc = (void *)ls;
|
||||
|
||||
*sc->sc_rap = port;
|
||||
*sc->sc_rdp = val;
|
||||
}
|
||||
|
||||
u_int16_t
|
||||
lerdcsr(ls, port)
|
||||
struct lance_softc *ls;
|
||||
u_int16_t port;
|
||||
{
|
||||
struct le_softc *sc = (void *)ls;
|
||||
|
||||
*sc->sc_rap = port;
|
||||
return *sc->sc_rdp;
|
||||
}
|
||||
|
||||
int
|
||||
le_vsbus_match(parent, cf, aux)
|
||||
struct device *parent;
|
||||
struct cfdata *cf;
|
||||
void *aux;
|
||||
{
|
||||
struct vsbus_attach_args *va = aux;
|
||||
volatile short *rdp, *rap;
|
||||
|
||||
rdp = (short *)va->va_addr;
|
||||
rap = rdp + 2;
|
||||
|
||||
/* Make sure the chip is stopped. */
|
||||
*rap = LE_CSR0;
|
||||
*rdp = LE_C0_STOP;
|
||||
DELAY(100);
|
||||
*rdp = LE_C0_INIT|LE_C0_INEA;
|
||||
|
||||
/* Wait for initialization to finish. */
|
||||
DELAY(100000);
|
||||
va->va_ivec = leintr;
|
||||
|
||||
/* Should have interrupted by now */
|
||||
if (*rdp & LE_C0_IDON)
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
le_vsbus_attach(parent, self, aux)
|
||||
struct device *parent, *self;
|
||||
void *aux;
|
||||
{
|
||||
struct vsbus_attach_args *va = aux;
|
||||
struct le_softc *sc = (void *)self;
|
||||
bus_dma_segment_t seg;
|
||||
int *lance_addr;
|
||||
int i, err, rseg;
|
||||
|
||||
sc->sc_rdp = (short *)vax_map_physmem(NI_BASE, 1);
|
||||
sc->sc_rap = sc->sc_rdp + 2;
|
||||
|
||||
/* Prettier printout */
|
||||
printf("\n%s", self->dv_xname);
|
||||
|
||||
/*
|
||||
* MD functions.
|
||||
*/
|
||||
sc->sc_am7990.lsc.sc_rdcsr = lerdcsr;
|
||||
sc->sc_am7990.lsc.sc_wrcsr = lewrcsr;
|
||||
sc->sc_am7990.lsc.sc_nocarrier = NULL;
|
||||
|
||||
/*
|
||||
* Allocate a (DMA-safe) block for all descriptors and buffers.
|
||||
*/
|
||||
|
||||
#define ALLOCSIZ (64 * 1024)
|
||||
err = bus_dmamem_alloc(va->va_dmat, ALLOCSIZ, NBPG, 0,
|
||||
&seg, 1, &rseg, BUS_DMA_NOWAIT);
|
||||
if (err) {
|
||||
printf(": unable to alloc buffer block: err %d\n", err);
|
||||
return;
|
||||
}
|
||||
err = bus_dmamem_map(va->va_dmat, &seg, rseg, ALLOCSIZ,
|
||||
(caddr_t *)&sc->sc_am7990.lsc.sc_mem,
|
||||
BUS_DMA_NOWAIT|BUS_DMA_COHERENT);
|
||||
if (err) {
|
||||
printf(": unable to map buffer block: err %d\n", err);
|
||||
bus_dmamem_free(va->va_dmat, &seg, rseg);
|
||||
return;
|
||||
}
|
||||
sc->sc_am7990.lsc.sc_addr =
|
||||
(paddr_t)sc->sc_am7990.lsc.sc_mem & 0xffffff;
|
||||
sc->sc_am7990.lsc.sc_memsize = ALLOCSIZ;
|
||||
|
||||
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
|
||||
*/
|
||||
lance_addr = (int *)vax_map_physmem(NI_ADDR, 1);
|
||||
for (i = 0; i < 6; i++)
|
||||
sc->sc_am7990.lsc.sc_enaddr[i] = (u_char)lance_addr[i];
|
||||
vax_unmap_physmem((vaddr_t)lance_addr, 1);
|
||||
|
||||
bcopy(self->dv_xname, sc->sc_am7990.lsc.sc_ethercom.ec_if.if_xname,
|
||||
IFNAMSIZ);
|
||||
am7990_config(&sc->sc_am7990);
|
||||
|
||||
/*
|
||||
* 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;
|
||||
}
|
||||
|
||||
void
|
||||
leintr(unit)
|
||||
int unit;
|
||||
{
|
||||
am7990_intr(le_cd.cd_devs[unit]);
|
||||
}
|
Loading…
Reference in New Issue
Block a user