1997-03-31 11:32:14 +04:00
|
|
|
/* $NetBSD: if_le.c,v 1.40 1997/03/31 07:37:24 scottr Exp $ */
|
1994-10-26 10:22:45 +03:00
|
|
|
|
1995-12-10 03:49:33 +03:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1995 Charles M. Hannum. All rights reserved.
|
|
|
|
* 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.
|
1993-05-13 17:56:20 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
1995-12-10 03:49:33 +03:00
|
|
|
* @(#)if_le.c 8.2 (Berkeley) 11/16/93
|
1993-05-13 17:56:20 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "bpfilter.h"
|
|
|
|
|
1994-02-05 08:06:54 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/syslog.h>
|
1995-12-10 03:49:33 +03:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/device.h>
|
1994-02-05 08:06:54 +03:00
|
|
|
|
|
|
|
#include <net/if.h>
|
1997-03-15 21:09:08 +03:00
|
|
|
#include <net/if_ether.h>
|
1997-03-17 06:17:34 +03:00
|
|
|
#include <net/if_media.h>
|
1993-05-13 17:56:20 +04:00
|
|
|
|
|
|
|
#ifdef INET
|
1994-02-05 08:06:54 +03:00
|
|
|
#include <netinet/in.h>
|
1997-03-15 21:09:08 +03:00
|
|
|
#include <netinet/if_inarp.h>
|
1993-05-13 17:56:20 +04:00
|
|
|
#endif
|
|
|
|
|
1996-12-17 11:40:56 +03:00
|
|
|
#include <machine/autoconf.h>
|
1994-02-05 08:06:54 +03:00
|
|
|
#include <machine/cpu.h>
|
|
|
|
#include <machine/mtpr.h>
|
1995-12-10 03:49:33 +03:00
|
|
|
|
1994-09-18 04:43:19 +04:00
|
|
|
#include <hp300/hp300/isr.h>
|
1995-12-31 00:03:02 +03:00
|
|
|
|
1994-09-18 04:43:19 +04:00
|
|
|
#ifdef USELEDS
|
|
|
|
#include <hp300/hp300/led.h>
|
|
|
|
#endif
|
1993-05-13 17:56:20 +04:00
|
|
|
|
1995-12-10 03:49:33 +03:00
|
|
|
#include <dev/ic/am7990reg.h>
|
|
|
|
#include <dev/ic/am7990var.h>
|
1993-05-13 17:56:20 +04:00
|
|
|
|
1996-12-17 11:40:56 +03:00
|
|
|
#include <hp300/dev/dioreg.h>
|
|
|
|
#include <hp300/dev/diovar.h>
|
|
|
|
#include <hp300/dev/diodevs.h>
|
1996-05-07 04:57:58 +04:00
|
|
|
#include <hp300/dev/if_lereg.h>
|
|
|
|
#include <hp300/dev/if_levar.h>
|
|
|
|
|
1996-12-17 11:40:56 +03:00
|
|
|
int lematch __P((struct device *, struct cfdata *, void *));
|
|
|
|
void leattach __P((struct device *, struct device *, void *));
|
|
|
|
|
|
|
|
struct cfattach le_ca = {
|
|
|
|
sizeof(struct le_softc), lematch, leattach
|
|
|
|
};
|
|
|
|
|
|
|
|
int leintr __P((void *));
|
1994-02-06 03:46:02 +03:00
|
|
|
|
1995-12-10 03:49:33 +03:00
|
|
|
/* offsets for: ID, REGS, MEM, NVRAM */
|
|
|
|
int lestd[] = { 0, 0x4000, 0x8000, 0xC008 };
|
|
|
|
|
1996-05-07 04:57:58 +04:00
|
|
|
hide void lewrcsr __P((struct am7990_softc *, u_int16_t, u_int16_t));
|
|
|
|
hide u_int16_t lerdcsr __P((struct am7990_softc *, u_int16_t));
|
1996-04-22 06:25:54 +04:00
|
|
|
|
1996-05-07 04:57:58 +04:00
|
|
|
hide void
|
1994-07-06 05:36:23 +04:00
|
|
|
lewrcsr(sc, port, val)
|
1996-05-07 04:57:58 +04:00
|
|
|
struct am7990_softc *sc;
|
1995-12-10 03:49:33 +03:00
|
|
|
u_int16_t port, val;
|
1994-07-06 05:36:23 +04:00
|
|
|
{
|
1997-03-31 11:32:14 +04:00
|
|
|
struct lereg0 *ler0 = ((struct le_softc *)sc)->sc_r0;
|
|
|
|
struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
|
1994-07-06 05:36:23 +04:00
|
|
|
|
|
|
|
do {
|
|
|
|
ler1->ler1_rap = port;
|
|
|
|
} while ((ler0->ler0_status & LE_ACK) == 0);
|
|
|
|
do {
|
|
|
|
ler1->ler1_rdp = val;
|
|
|
|
} while ((ler0->ler0_status & LE_ACK) == 0);
|
|
|
|
}
|
|
|
|
|
1996-05-07 04:57:58 +04:00
|
|
|
hide u_int16_t
|
1994-07-06 05:36:23 +04:00
|
|
|
lerdcsr(sc, port)
|
1996-05-07 04:57:58 +04:00
|
|
|
struct am7990_softc *sc;
|
1995-12-10 03:49:33 +03:00
|
|
|
u_int16_t port;
|
1994-07-06 05:36:23 +04:00
|
|
|
{
|
1997-03-31 11:32:14 +04:00
|
|
|
struct lereg0 *ler0 = ((struct le_softc *)sc)->sc_r0;
|
|
|
|
struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
|
1995-12-10 03:49:33 +03:00
|
|
|
u_int16_t val;
|
1994-07-06 05:36:23 +04:00
|
|
|
|
|
|
|
do {
|
|
|
|
ler1->ler1_rap = port;
|
|
|
|
} while ((ler0->ler0_status & LE_ACK) == 0);
|
|
|
|
do {
|
|
|
|
val = ler1->ler1_rdp;
|
|
|
|
} while ((ler0->ler0_status & LE_ACK) == 0);
|
|
|
|
return (val);
|
|
|
|
}
|
|
|
|
|
1996-12-17 11:40:56 +03:00
|
|
|
int
|
|
|
|
lematch(parent, match, aux)
|
|
|
|
struct device *parent;
|
|
|
|
struct cfdata *match;
|
|
|
|
void *aux;
|
|
|
|
{
|
|
|
|
struct dio_attach_args *da = aux;
|
|
|
|
|
|
|
|
if (da->da_id == DIO_DEVICE_ID_LAN)
|
|
|
|
return (1);
|
|
|
|
return (0);
|
|
|
|
}
|
1995-12-02 21:21:49 +03:00
|
|
|
|
1993-05-13 17:56:20 +04:00
|
|
|
/*
|
|
|
|
* Interface exists: make available by filling in network interface
|
|
|
|
* record. System will initialize the interface when it is ready
|
|
|
|
* to accept packets.
|
|
|
|
*/
|
1996-12-17 11:40:56 +03:00
|
|
|
void
|
|
|
|
leattach(parent, self, aux)
|
|
|
|
struct device *parent, *self;
|
|
|
|
void *aux;
|
1993-05-13 17:56:20 +04:00
|
|
|
{
|
1997-03-31 11:32:14 +04:00
|
|
|
struct lereg0 *ler0;
|
1996-12-17 11:40:56 +03:00
|
|
|
struct dio_attach_args *da = aux;
|
|
|
|
struct le_softc *lesc = (struct le_softc *)self;
|
|
|
|
caddr_t addr;
|
1996-05-10 01:11:47 +04:00
|
|
|
struct am7990_softc *sc = &lesc->sc_am7990;
|
1993-05-13 17:56:20 +04:00
|
|
|
char *cp;
|
1996-12-17 11:40:56 +03:00
|
|
|
int i, ipl;
|
|
|
|
|
|
|
|
addr = iomap(dio_scodetopa(da->da_scode), da->da_size);
|
|
|
|
if (addr == 0) {
|
|
|
|
printf("\n%s: can't map LANCE registers\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
return;
|
|
|
|
}
|
1993-05-13 17:56:20 +04:00
|
|
|
|
1996-12-17 11:40:56 +03:00
|
|
|
ler0 = lesc->sc_r0 = (struct lereg0 *)(lestd[0] + (int)addr);
|
1993-05-13 17:56:20 +04:00
|
|
|
ler0->ler0_id = 0xFF;
|
|
|
|
DELAY(100);
|
|
|
|
|
1996-12-17 11:40:56 +03:00
|
|
|
ipl = DIO_IPL(addr);
|
|
|
|
printf(" ipl %d", ipl);
|
1995-12-10 03:49:33 +03:00
|
|
|
|
1996-12-17 11:40:56 +03:00
|
|
|
lesc->sc_r1 = (struct lereg1 *)(lestd[1] + (int)addr);
|
|
|
|
sc->sc_mem = (void *)(lestd[2] + (int)addr);
|
1995-12-10 03:49:33 +03:00
|
|
|
sc->sc_conf3 = LE_C3_BSWP;
|
|
|
|
sc->sc_addr = 0;
|
|
|
|
sc->sc_memsize = 16384;
|
|
|
|
|
1993-05-13 17:56:20 +04:00
|
|
|
/*
|
|
|
|
* Read the ethernet address off the board, one nibble at a time.
|
|
|
|
*/
|
1996-12-17 11:40:56 +03:00
|
|
|
cp = (char *)(lestd[3] + (int)addr);
|
1997-03-15 21:09:08 +03:00
|
|
|
for (i = 0; i < sizeof(sc->sc_enaddr); i++) {
|
|
|
|
sc->sc_enaddr[i] = (*++cp & 0xF) << 4;
|
1993-05-13 17:56:20 +04:00
|
|
|
cp++;
|
1997-03-15 21:09:08 +03:00
|
|
|
sc->sc_enaddr[i] |= *++cp & 0xF;
|
1993-05-13 17:56:20 +04:00
|
|
|
cp++;
|
|
|
|
}
|
1994-07-06 05:36:23 +04:00
|
|
|
|
1996-04-18 04:25:11 +04:00
|
|
|
sc->sc_copytodesc = am7990_copytobuf_contig;
|
|
|
|
sc->sc_copyfromdesc = am7990_copyfrombuf_contig;
|
|
|
|
sc->sc_copytobuf = am7990_copytobuf_contig;
|
|
|
|
sc->sc_copyfrombuf = am7990_copyfrombuf_contig;
|
|
|
|
sc->sc_zerobuf = am7990_zerobuf_contig;
|
1993-05-13 17:56:20 +04:00
|
|
|
|
1996-05-07 04:57:58 +04:00
|
|
|
sc->sc_rdcsr = lerdcsr;
|
|
|
|
sc->sc_wrcsr = lewrcsr;
|
|
|
|
sc->sc_hwinit = NULL;
|
|
|
|
|
|
|
|
am7990_config(sc);
|
1994-07-06 05:36:23 +04:00
|
|
|
|
1996-02-14 05:43:54 +03:00
|
|
|
/* Establish the interrupt handler. */
|
1996-12-17 11:40:56 +03:00
|
|
|
(void) isrlink(leintr, sc, ipl, ISRPRI_NET);
|
1995-12-10 03:49:33 +03:00
|
|
|
ler0->ler0_status = LE_IE;
|
1993-05-13 17:56:20 +04:00
|
|
|
}
|
1994-07-07 05:31:00 +04:00
|
|
|
|
1996-05-07 04:57:58 +04:00
|
|
|
int
|
|
|
|
leintr(arg)
|
1996-02-14 05:43:54 +03:00
|
|
|
void *arg;
|
1996-01-03 00:56:21 +03:00
|
|
|
{
|
1996-05-07 04:57:58 +04:00
|
|
|
struct am7990_softc *sc = arg;
|
1996-01-03 00:56:21 +03:00
|
|
|
u_int16_t isr;
|
|
|
|
|
|
|
|
#ifdef USELEDS
|
|
|
|
isr = lerdcsr(sc, LE_CSR0);
|
|
|
|
|
|
|
|
if ((isr & LE_C0_INTR) == 0)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
if (isr & LE_C0_RINT)
|
|
|
|
if (inledcontrol == 0)
|
|
|
|
ledcontrol(0, 0, LED_LANRCV);
|
|
|
|
|
|
|
|
if (isr & LE_C0_TINT)
|
|
|
|
if (inledcontrol == 0)
|
|
|
|
ledcontrol(0, 0, LED_LANXMT);
|
|
|
|
#endif /* USELEDS */
|
|
|
|
|
1996-05-07 04:57:58 +04:00
|
|
|
return (am7990_intr(sc));
|
1996-01-03 00:56:21 +03:00
|
|
|
}
|