1996-03-27 01:04:14 +03:00
|
|
|
/* $NetBSD: if_ie_vmes.c,v 1.2 1996/03/26 22:04:28 gwr Exp $ */
|
1994-12-12 21:58:45 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1994 Gordon W. Ross
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 Gordon Ross
|
|
|
|
* 4. The name of the Author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Machine-dependent glue for the Intel Ethernet (ie) driver.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/protosw.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <net/if.h>
|
|
|
|
|
|
|
|
#ifdef INET
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/in_var.h>
|
|
|
|
#include <netinet/ip.h>
|
|
|
|
#include <netinet/if_ether.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <machine/autoconf.h>
|
|
|
|
#include <machine/cpu.h>
|
1995-09-26 07:01:53 +03:00
|
|
|
#include <machine/dvma.h>
|
1994-12-12 21:58:45 +03:00
|
|
|
#include <machine/isr.h>
|
|
|
|
#include <machine/idprom.h>
|
1995-02-14 01:23:55 +03:00
|
|
|
#include <machine/vmparam.h>
|
1994-12-12 21:58:45 +03:00
|
|
|
|
1994-12-16 00:08:06 +03:00
|
|
|
#include "i82586.h"
|
1996-03-27 01:04:14 +03:00
|
|
|
#include "if_iereg.h"
|
|
|
|
#include "if_ievar.h"
|
1994-12-12 21:58:45 +03:00
|
|
|
|
|
|
|
static void ie_vmereset __P((struct ie_softc *));
|
|
|
|
static void ie_vmeattend __P((struct ie_softc *));
|
|
|
|
static void ie_vmerun __P((struct ie_softc *));
|
|
|
|
|
1995-01-27 02:23:34 +03:00
|
|
|
/*
|
|
|
|
* zero/copy functions: OBIO can use the normal functions, but VME
|
|
|
|
* must do only byte or half-word (16 bit) accesses...
|
|
|
|
*/
|
1995-01-11 23:32:08 +03:00
|
|
|
static void wcopy(), wzero();
|
1994-12-12 21:58:45 +03:00
|
|
|
|
1996-03-26 17:38:29 +03:00
|
|
|
/*
|
|
|
|
* New-style autoconfig attachment
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int ie_vmes_match __P((struct device *, void *, void *));
|
|
|
|
static void ie_vmes_attach __P((struct device *, struct device *, void *));
|
|
|
|
|
|
|
|
struct cfattach ie_vmes_ca = {
|
|
|
|
sizeof(struct ie_softc), ie_vmes_match, ie_vmes_attach
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
ie_vmes_match(parent, vcf, args)
|
1994-12-12 21:58:45 +03:00
|
|
|
struct device *parent;
|
|
|
|
void *vcf, *args;
|
|
|
|
{
|
|
|
|
struct confargs *ca = args;
|
1994-12-16 00:08:06 +03:00
|
|
|
int x, sz;
|
1994-12-12 21:58:45 +03:00
|
|
|
|
1996-03-26 17:38:29 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (ca->ca_bustype != BUS_VME16) {
|
|
|
|
printf("ie_vmes_match: bustype %d?\n", ca->ca_bustype);
|
1994-12-12 21:58:45 +03:00
|
|
|
return (0);
|
|
|
|
}
|
1996-03-26 17:38:29 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* No default VME address. */
|
|
|
|
if (ca->ca_paddr == -1)
|
|
|
|
return(0);
|
1994-12-12 21:58:45 +03:00
|
|
|
|
|
|
|
/* Default interrupt level. */
|
|
|
|
if (ca->ca_intpri == -1)
|
|
|
|
ca->ca_intpri = 3;
|
|
|
|
|
1996-03-26 17:38:29 +03:00
|
|
|
x = bus_peek(ca->ca_bustype, ca->ca_paddr, 2);
|
1994-12-13 21:26:39 +03:00
|
|
|
return (x != -1);
|
1994-12-12 21:58:45 +03:00
|
|
|
}
|
|
|
|
|
1996-03-26 17:38:29 +03:00
|
|
|
/*
|
|
|
|
* *note*: we don't detect the difference between a VME3E and
|
|
|
|
* a multibus/vme card. if you want to use a 3E you'll have
|
|
|
|
* to fix this.
|
|
|
|
*/
|
1994-12-12 21:58:45 +03:00
|
|
|
void
|
1996-03-26 17:38:29 +03:00
|
|
|
ie_vmes_attach(parent, self, args)
|
1994-12-12 21:58:45 +03:00
|
|
|
struct device *parent;
|
|
|
|
struct device *self;
|
|
|
|
void *args;
|
|
|
|
{
|
|
|
|
struct ie_softc *sc = (void *) self;
|
|
|
|
struct confargs *ca = args;
|
1996-03-26 17:38:29 +03:00
|
|
|
volatile struct ievme *iev;
|
|
|
|
u_long rampaddr;
|
|
|
|
int lcv, off;
|
|
|
|
|
|
|
|
sc->hard_type = IE_VME;
|
|
|
|
sc->reset_586 = ie_vmereset;
|
|
|
|
sc->chan_attn = ie_vmeattend;
|
|
|
|
sc->run_586 = ie_vmerun;
|
|
|
|
sc->sc_bcopy = wcopy;
|
|
|
|
sc->sc_bzero = wzero;
|
1994-12-12 21:58:45 +03:00
|
|
|
|
|
|
|
/*
|
1996-03-26 17:38:29 +03:00
|
|
|
* There is 64K of memory on the VME board.
|
|
|
|
* (determined by hardware - NOT configurable!)
|
1994-12-12 21:58:45 +03:00
|
|
|
*/
|
1996-03-26 17:38:29 +03:00
|
|
|
sc->sc_msize = 0x10000; /* MEMSIZE 64K */
|
1994-12-12 21:58:45 +03:00
|
|
|
|
1996-03-26 17:38:29 +03:00
|
|
|
/* Map in the board control regs. */
|
|
|
|
sc->sc_reg = bus_mapin(ca->ca_bustype, ca->ca_paddr,
|
|
|
|
sizeof(struct ievme));
|
|
|
|
iev = (volatile struct ievme *) sc->sc_reg;
|
1994-12-12 21:58:45 +03:00
|
|
|
|
1996-03-26 17:38:29 +03:00
|
|
|
/*
|
|
|
|
* Find and map in the board memory.
|
|
|
|
*/
|
|
|
|
/* top 12 bits */
|
|
|
|
rampaddr = ca->ca_paddr & 0xfff00000;
|
|
|
|
/* 4 more */
|
|
|
|
rampaddr |= ((iev->status & IEVME_HADDR) << 16);
|
|
|
|
sc->sc_maddr = bus_mapin(ca->ca_bustype, rampaddr, sc->sc_msize);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* On this hardware, the i82586 address is just
|
|
|
|
* masked to 16 bits, so sc_iobase == sc_maddr
|
|
|
|
*/
|
|
|
|
sc->sc_iobase = sc->sc_maddr;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up on-board mapping registers for linear map.
|
|
|
|
*/
|
|
|
|
iev->pectrl |= IEVME_PARACK; /* clear to start */
|
|
|
|
for (lcv = 0; lcv < IEVME_MAPSZ; lcv++)
|
|
|
|
iev->pgmap[lcv] = IEVME_SBORDR | IEVME_OBMEM | lcv;
|
|
|
|
(sc->sc_bzero)(sc->sc_maddr, sc->sc_msize);
|
1994-12-12 21:58:45 +03:00
|
|
|
|
1994-12-16 00:08:06 +03:00
|
|
|
/*
|
1996-03-26 17:38:29 +03:00
|
|
|
* Set the System Configuration Pointer (SCP).
|
|
|
|
* Its location is system-dependent because the
|
|
|
|
* i82586 reads it from a fixed physical address.
|
|
|
|
* On this hardware, the i82586 address is just
|
|
|
|
* masked down to 16 bits, so the SCP is found
|
|
|
|
* at the end of the RAM on the VME board.
|
1994-12-16 00:08:06 +03:00
|
|
|
*/
|
1996-03-26 17:38:29 +03:00
|
|
|
off = IE_SCP_ADDR & 0xFFFF;
|
|
|
|
sc->scp = (volatile void *) (sc->sc_maddr + off);
|
1994-12-16 00:08:06 +03:00
|
|
|
|
|
|
|
/*
|
1996-03-26 17:38:29 +03:00
|
|
|
* The rest of ram is used for buffers, etc.
|
1994-12-16 00:08:06 +03:00
|
|
|
*/
|
1996-03-26 17:38:29 +03:00
|
|
|
sc->buf_area = sc->sc_maddr;
|
|
|
|
sc->buf_area_sz = off;
|
|
|
|
|
|
|
|
/* Set the ethernet address. */
|
|
|
|
idprom_etheraddr(sc->sc_addr);
|
1994-12-16 00:08:06 +03:00
|
|
|
|
1996-03-26 17:38:29 +03:00
|
|
|
/* Do machine-independent parts of attach. */
|
|
|
|
ie_attach(sc);
|
|
|
|
|
|
|
|
/* Install interrupt handler. */
|
|
|
|
isr_add_vectored(ie_intr, (void *)sc,
|
|
|
|
ca->ca_intpri, ca->ca_intvec);
|
1994-12-12 21:58:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* MULTIBUS/VME support
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ie_vmereset(sc)
|
|
|
|
struct ie_softc *sc;
|
|
|
|
{
|
|
|
|
volatile struct ievme *iev = (struct ievme *) sc->sc_reg;
|
|
|
|
iev->status = IEVME_RESET;
|
|
|
|
delay(100); /* XXX could be shorter? */
|
|
|
|
iev->status = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ie_vmeattend(sc)
|
|
|
|
struct ie_softc *sc;
|
|
|
|
{
|
|
|
|
volatile struct ievme *iev = (struct ievme *) sc->sc_reg;
|
|
|
|
|
|
|
|
iev->status |= IEVME_ATTEN; /* flag! */
|
|
|
|
iev->status &= ~IEVME_ATTEN; /* down. */
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ie_vmerun(sc)
|
|
|
|
struct ie_softc *sc;
|
|
|
|
{
|
|
|
|
volatile struct ievme *iev = (struct ievme *) sc->sc_reg;
|
|
|
|
|
|
|
|
iev->status |= (IEVME_ONAIR | IEVME_IENAB | IEVME_PEINT);
|
|
|
|
}
|
|
|
|
|
1995-01-11 23:32:08 +03:00
|
|
|
/*
|
|
|
|
* wcopy/wzero - like bcopy/bzero but largest access is 16-bits,
|
|
|
|
* and also does byte swaps...
|
|
|
|
* XXX - Would be nice to have asm versions in some library...
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
wzero(vb, l)
|
|
|
|
void *vb;
|
|
|
|
u_int l;
|
|
|
|
{
|
|
|
|
u_char *b = vb;
|
|
|
|
u_char *be = b + l;
|
|
|
|
u_short *sp;
|
|
|
|
|
|
|
|
if (l == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* front, */
|
|
|
|
if ((u_long)b & 1)
|
|
|
|
*b++ = 0;
|
|
|
|
|
|
|
|
/* back, */
|
|
|
|
if (b != be && ((u_long)be & 1) != 0) {
|
|
|
|
be--;
|
|
|
|
*be = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* and middle. */
|
|
|
|
sp = (u_short *)b;
|
|
|
|
while (sp != (u_short *)be)
|
|
|
|
*sp++ = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wcopy(vb1, vb2, l)
|
|
|
|
const void *vb1;
|
|
|
|
void *vb2;
|
|
|
|
u_int l;
|
|
|
|
{
|
|
|
|
const u_char *b1e, *b1 = vb1;
|
|
|
|
u_char *b2 = vb2;
|
|
|
|
u_short *sp;
|
|
|
|
int bstore = 0;
|
|
|
|
|
|
|
|
if (l == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* front, */
|
|
|
|
if ((u_long)b1 & 1) {
|
|
|
|
*b2++ = *b1++;
|
|
|
|
l--;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* middle, */
|
|
|
|
sp = (u_short *)b1;
|
|
|
|
b1e = b1 + l;
|
|
|
|
if (l & 1)
|
|
|
|
b1e--;
|
|
|
|
bstore = (u_long)b2 & 1;
|
|
|
|
|
|
|
|
while (sp < (u_short *)b1e) {
|
|
|
|
if (bstore) {
|
|
|
|
b2[1] = *sp & 0xff;
|
|
|
|
b2[0] = *sp >> 8;
|
|
|
|
} else
|
|
|
|
*((short *)b2) = *sp;
|
|
|
|
sp++;
|
|
|
|
b2 += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* and back. */
|
|
|
|
if (l & 1)
|
|
|
|
*b2 = *b1e;
|
|
|
|
}
|