2002-10-02 08:55:47 +04:00
|
|
|
/* $NetBSD: if_le.c,v 1.38 2002/10/02 04:55:51 thorpej Exp $ */
|
1994-10-26 05:01:24 +03:00
|
|
|
|
1995-09-29 16:51:30 +03:00
|
|
|
/*-
|
1998-08-17 04:26:32 +04:00
|
|
|
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
|
1997-10-04 13:38:47 +04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
1998-08-17 04:26:32 +04:00
|
|
|
* by Charles M. Hannum and by Jason R. Thorpe of the Numerical Aerospace
|
|
|
|
* Simulation Facility, NASA Ames Research Center.
|
1997-10-04 13:38:47 +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 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) 1997 Bernd Ernesti. All rights reserved.
|
1995-09-29 16:51:30 +03: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.
|
1993-09-02 20:52:31 +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:
|
1997-03-28 00:15:11 +03:00
|
|
|
* This product includes software developed for the NetBSD Project
|
1997-10-04 13:38:47 +04:00
|
|
|
* by Bernd Ernesti.
|
1993-09-02 20:52:31 +04:00
|
|
|
* 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-09-29 16:51:30 +03:00
|
|
|
* @(#)if_le.c 8.2 (Berkeley) 11/16/93
|
1993-09-02 20:52:31 +04:00
|
|
|
*/
|
|
|
|
|
1998-07-05 04:51:04 +04:00
|
|
|
#include "opt_inet.h"
|
2002-01-28 12:56:43 +03:00
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2002-10-02 08:55:47 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: if_le.c,v 1.38 2002/10/02 04:55:51 thorpej Exp $");
|
2002-01-28 12:56:43 +03:00
|
|
|
|
1993-09-02 20:52:31 +04:00
|
|
|
#include "bpfilter.h"
|
|
|
|
|
1994-02-14 00:10:20 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/syslog.h>
|
1995-09-29 16:51:30 +03:00
|
|
|
#include <sys/socket.h>
|
1994-06-21 08:02:13 +04:00
|
|
|
#include <sys/device.h>
|
1993-09-02 20:52:31 +04:00
|
|
|
|
1994-02-14 00:10:20 +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-09-02 20:52:31 +04:00
|
|
|
|
|
|
|
#ifdef INET
|
1994-02-14 00:10:20 +03:00
|
|
|
#include <netinet/in.h>
|
1997-03-15 21:09:08 +03:00
|
|
|
#include <netinet/if_inarp.h>
|
1993-09-02 20:52:31 +04:00
|
|
|
#endif
|
|
|
|
|
1994-02-14 00:10:20 +03:00
|
|
|
#include <machine/cpu.h>
|
|
|
|
#include <machine/mtpr.h>
|
1995-09-29 16:51:30 +03:00
|
|
|
|
1994-06-21 08:02:13 +04:00
|
|
|
#include <amiga/amiga/device.h>
|
1995-02-12 22:18:33 +03:00
|
|
|
#include <amiga/amiga/isr.h>
|
1996-05-07 04:35:07 +04:00
|
|
|
|
1998-07-21 21:36:01 +04:00
|
|
|
#include <dev/ic/lancereg.h>
|
|
|
|
#include <dev/ic/lancevar.h>
|
1995-09-29 16:51:30 +03:00
|
|
|
#include <dev/ic/am7990reg.h>
|
|
|
|
#include <dev/ic/am7990var.h>
|
1994-06-21 08:02:13 +04:00
|
|
|
|
1996-05-07 04:35:07 +04:00
|
|
|
#include <amiga/dev/zbusvar.h>
|
|
|
|
#include <amiga/dev/if_levar.h>
|
|
|
|
|
2002-01-26 16:40:52 +03:00
|
|
|
int le_zbus_match(struct device *, struct cfdata *, void *);
|
|
|
|
void le_zbus_attach(struct device *, struct device *, void *);
|
1994-06-21 08:02:13 +04:00
|
|
|
|
2002-10-02 08:55:47 +04:00
|
|
|
CFATTACH_DECL(le_zbus, sizeof(struct le_softc),
|
|
|
|
le_zbus_match, le_zbus_attach, NULL, NULL);
|
1996-03-17 04:16:48 +03:00
|
|
|
|
2001-05-30 15:57:16 +04:00
|
|
|
#if defined(_KERNEL_OPT)
|
1998-07-21 21:36:01 +04:00
|
|
|
#include "opt_ddb.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DDB
|
|
|
|
#define integrate
|
|
|
|
#define hide
|
|
|
|
#else
|
|
|
|
#define integrate static __inline
|
|
|
|
#define hide static
|
|
|
|
#endif
|
|
|
|
|
2002-01-26 16:40:52 +03:00
|
|
|
hide void lepcnet_reset(struct lance_softc *);
|
|
|
|
hide void lewrcsr(struct lance_softc *, u_int16_t, u_int16_t);
|
|
|
|
hide u_int16_t lerdcsr(struct lance_softc *, u_int16_t);
|
|
|
|
|
|
|
|
hide u_int16_t ariadne_swapreg(u_int16_t);
|
|
|
|
hide void ariadne_wrcsr(struct lance_softc *, u_int16_t, u_int16_t);
|
|
|
|
hide u_int16_t ariadne_rdcsr(struct lance_softc *, u_int16_t);
|
|
|
|
hide void ariadne_wribcr(struct lance_softc *, u_int16_t, u_int16_t);
|
|
|
|
integrate void ariadne_copytodesc_word(struct lance_softc *, void *, int, int);
|
|
|
|
integrate void ariadne_copyfromdesc_word(struct lance_softc *, void *,
|
|
|
|
int, int);
|
|
|
|
integrate void ariadne_copytobuf_word(struct lance_softc *, void *, int, int);
|
|
|
|
integrate void ariadne_copyfrombuf_word(struct lance_softc *, void *, int, int);
|
|
|
|
integrate void ariadne_zerobuf_word(struct lance_softc *, int, int);
|
|
|
|
void ariadne_autoselect(struct lance_softc *, int);
|
|
|
|
int ariadne_mediachange(struct lance_softc *);
|
|
|
|
void ariadne_hwinit(struct lance_softc *);
|
|
|
|
|
|
|
|
/*
|
1997-03-28 00:15:11 +03:00
|
|
|
* Media types supported by the Ariadne.
|
|
|
|
*/
|
|
|
|
int lemedia_ariadne[] = {
|
|
|
|
IFM_ETHER | IFM_10_T,
|
|
|
|
IFM_ETHER | IFM_10_2,
|
|
|
|
IFM_ETHER | IFM_AUTO,
|
|
|
|
};
|
|
|
|
#define NLEMEDIA_ARIADNE (sizeof(lemedia_ariadne) / sizeof(lemedia_ariadne[0]))
|
|
|
|
|
|
|
|
|
|
|
|
hide u_int16_t
|
2002-01-26 16:40:52 +03:00
|
|
|
ariadne_swapreg(u_int16_t val)
|
1997-03-28 00:15:11 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
return (((val & 0xff) << 8 ) | (( val >> 8) & 0xff));
|
|
|
|
}
|
|
|
|
|
|
|
|
hide void
|
2002-01-26 16:40:52 +03:00
|
|
|
ariadne_wrcsr(struct lance_softc *sc, u_int16_t port, u_int16_t val)
|
1997-03-28 00:15:11 +03:00
|
|
|
{
|
|
|
|
struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
|
|
|
|
|
|
|
|
ler1->ler1_rap = ariadne_swapreg(port);
|
|
|
|
ler1->ler1_rdp = ariadne_swapreg(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
hide u_int16_t
|
2002-01-26 16:40:52 +03:00
|
|
|
ariadne_rdcsr(struct lance_softc *sc, u_int16_t port)
|
1997-03-28 00:15:11 +03:00
|
|
|
{
|
|
|
|
struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
|
|
|
|
u_int16_t val;
|
|
|
|
|
|
|
|
ler1->ler1_rap = ariadne_swapreg(port);
|
|
|
|
val = ariadne_swapreg(ler1->ler1_rdp);
|
|
|
|
return (val);
|
|
|
|
}
|
|
|
|
|
|
|
|
hide void
|
2002-01-26 16:40:52 +03:00
|
|
|
ariadne_wribcr(struct lance_softc *sc, u_int16_t port, u_int16_t val)
|
1997-03-28 00:15:11 +03:00
|
|
|
{
|
|
|
|
struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
|
|
|
|
|
|
|
|
ler1->ler1_rap = ariadne_swapreg(port);
|
|
|
|
ler1->ler1_idp = ariadne_swapreg(val);
|
|
|
|
}
|
|
|
|
|
1996-05-07 04:35:07 +04:00
|
|
|
hide void
|
2002-01-26 16:40:52 +03:00
|
|
|
lewrcsr(struct lance_softc *sc, u_int16_t port, u_int16_t val)
|
1995-09-29 16:51:30 +03:00
|
|
|
{
|
1996-05-07 04:35:07 +04:00
|
|
|
struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
|
1995-09-29 16:51:30 +03:00
|
|
|
|
|
|
|
ler1->ler1_rap = port;
|
|
|
|
ler1->ler1_rdp = val;
|
|
|
|
}
|
|
|
|
|
1996-05-07 04:35:07 +04:00
|
|
|
hide u_int16_t
|
2002-01-26 16:40:52 +03:00
|
|
|
lerdcsr(struct lance_softc *sc, u_int16_t port)
|
1994-06-21 08:02:13 +04:00
|
|
|
{
|
1996-05-07 04:35:07 +04:00
|
|
|
struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
|
1995-09-29 16:51:30 +03:00
|
|
|
u_int16_t val;
|
1994-06-21 08:02:13 +04:00
|
|
|
|
1995-09-29 16:51:30 +03:00
|
|
|
ler1->ler1_rap = port;
|
|
|
|
val = ler1->ler1_rdp;
|
|
|
|
return (val);
|
|
|
|
}
|
1994-06-21 08:02:13 +04:00
|
|
|
|
1997-03-28 00:15:11 +03:00
|
|
|
hide void
|
2002-01-26 16:40:52 +03:00
|
|
|
lepcnet_reset(struct lance_softc *sc)
|
1997-03-28 00:15:11 +03:00
|
|
|
{
|
|
|
|
struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
|
|
|
|
volatile int dummy;
|
|
|
|
|
|
|
|
dummy = ler1->ler1_reset; /* Reset PCNet-ISA */
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-01-26 16:40:52 +03:00
|
|
|
ariadne_autoselect(struct lance_softc *sc, int on)
|
1997-03-28 00:15:11 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
/*
|
|
|
|
* on = 0: autoselect disabled
|
|
|
|
* on = 1: autoselect enabled
|
|
|
|
*/
|
|
|
|
if (on == 0)
|
|
|
|
ariadne_wribcr(sc, LE_BCR_MC, 0x0000);
|
|
|
|
else
|
|
|
|
ariadne_wribcr(sc, LE_BCR_MC, LE_MC_ASEL);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-01-26 16:40:52 +03:00
|
|
|
ariadne_mediachange(struct lance_softc *sc)
|
1997-03-28 00:15:11 +03:00
|
|
|
{
|
|
|
|
struct ifmedia *ifm = &sc->sc_media;
|
|
|
|
|
|
|
|
if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Switch to the selected media. If autoselect is
|
|
|
|
* set, switch it on otherwise disable it. We'll
|
|
|
|
* switch to the other media when we detect loss of
|
|
|
|
* carrier.
|
|
|
|
*/
|
|
|
|
switch (IFM_SUBTYPE(ifm->ifm_media)) {
|
|
|
|
case IFM_10_T:
|
|
|
|
sc->sc_initmodemedia = 1;
|
2001-06-20 14:10:12 +04:00
|
|
|
lance_init(&sc->sc_ethercom.ec_if);
|
1997-03-28 00:15:11 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IFM_10_2:
|
|
|
|
sc->sc_initmodemedia = 0;
|
2001-06-20 14:10:12 +04:00
|
|
|
lance_init(&sc->sc_ethercom.ec_if);
|
1997-03-28 00:15:11 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IFM_AUTO:
|
|
|
|
sc->sc_initmodemedia = 2;
|
|
|
|
ariadne_hwinit(sc);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-01-26 16:40:52 +03:00
|
|
|
ariadne_hwinit(struct lance_softc *sc)
|
1997-03-28 00:15:11 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Re-program LEDs to match meaning used on the Ariadne board.
|
|
|
|
*/
|
|
|
|
ariadne_wribcr(sc, LE_BCR_LED1, 0x0090);
|
|
|
|
ariadne_wribcr(sc, LE_BCR_LED2, 0x0081);
|
|
|
|
ariadne_wribcr(sc, LE_BCR_LED3, 0x0084);
|
|
|
|
|
|
|
|
/*
|
2002-01-26 16:40:52 +03:00
|
|
|
* Enabel/Disable auto selection
|
1997-03-28 00:15:11 +03:00
|
|
|
*/
|
|
|
|
if (sc->sc_initmodemedia == 2)
|
|
|
|
ariadne_autoselect(sc, 1);
|
|
|
|
else
|
|
|
|
ariadne_autoselect(sc, 0);
|
|
|
|
}
|
|
|
|
|
1995-09-29 16:51:30 +03:00
|
|
|
int
|
2002-01-26 16:40:52 +03:00
|
|
|
le_zbus_match(struct device *parent, struct cfdata *cfp, void *aux)
|
1995-09-29 16:51:30 +03:00
|
|
|
{
|
|
|
|
struct zbus_args *zap = aux;
|
1994-06-21 08:02:13 +04:00
|
|
|
|
|
|
|
/* Commodore ethernet card */
|
1995-09-29 16:51:30 +03:00
|
|
|
if (zap->manid == 514 && zap->prodid == 112)
|
|
|
|
return (1);
|
1994-06-21 08:02:13 +04:00
|
|
|
|
|
|
|
/* Ameristar ethernet card */
|
1995-09-29 16:51:30 +03:00
|
|
|
if (zap->manid == 1053 && zap->prodid == 1)
|
|
|
|
return (1);
|
1994-06-21 08:02:13 +04:00
|
|
|
|
1997-03-28 00:15:11 +03:00
|
|
|
/* Ariadne ethernet card */
|
|
|
|
if (zap->manid == 2167 && zap->prodid == 201)
|
|
|
|
return (1);
|
|
|
|
|
1994-06-21 08:02:13 +04:00
|
|
|
return (0);
|
|
|
|
}
|
1993-09-02 20:52:31 +04:00
|
|
|
|
1994-06-21 08:02:13 +04:00
|
|
|
void
|
2002-01-26 16:40:52 +03:00
|
|
|
le_zbus_attach(struct device *parent, struct device *self, void *aux)
|
1993-09-02 20:52:31 +04:00
|
|
|
{
|
1996-05-07 04:35:07 +04:00
|
|
|
struct le_softc *lesc = (struct le_softc *)self;
|
1998-07-21 21:36:01 +04:00
|
|
|
struct lance_softc *sc = &lesc->sc_am7990.lsc;
|
1995-09-29 16:51:30 +03:00
|
|
|
struct zbus_args *zap = aux;
|
|
|
|
u_long ser;
|
1993-09-02 20:52:31 +04:00
|
|
|
|
1997-03-28 00:15:11 +03:00
|
|
|
/* This has no effect on PCnet-ISA LANCE chips */
|
1995-09-29 16:51:30 +03:00
|
|
|
sc->sc_conf3 = LE_C3_BSWP;
|
1994-06-21 08:02:13 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Manufacturer decides the 3 first bytes, i.e. ethernet vendor ID.
|
|
|
|
*/
|
1995-09-29 16:51:30 +03:00
|
|
|
switch (zap->manid) {
|
1997-03-28 00:15:11 +03:00
|
|
|
case 514:
|
1995-09-29 16:51:30 +03:00
|
|
|
/* Commodore */
|
|
|
|
sc->sc_memsize = 32768;
|
1997-03-15 21:09:08 +03:00
|
|
|
sc->sc_enaddr[0] = 0x00;
|
|
|
|
sc->sc_enaddr[1] = 0x80;
|
|
|
|
sc->sc_enaddr[2] = 0x10;
|
1997-03-28 00:15:11 +03:00
|
|
|
lesc->sc_r1 = (struct lereg1 *)(0x4000 + (int)zap->va);
|
|
|
|
sc->sc_mem = (void *)(0x8000 + (int)zap->va);
|
|
|
|
sc->sc_addr = 0x8000;
|
1998-07-21 21:36:01 +04:00
|
|
|
sc->sc_copytodesc = lance_copytobuf_contig;
|
|
|
|
sc->sc_copyfromdesc = lance_copyfrombuf_contig;
|
|
|
|
sc->sc_copytobuf = lance_copytobuf_contig;
|
|
|
|
sc->sc_copyfrombuf = lance_copyfrombuf_contig;
|
|
|
|
sc->sc_zerobuf = lance_zerobuf_contig;
|
1997-03-28 00:15:11 +03:00
|
|
|
sc->sc_rdcsr = lerdcsr;
|
|
|
|
sc->sc_wrcsr = lewrcsr;
|
|
|
|
sc->sc_hwreset = NULL;
|
|
|
|
sc->sc_hwinit = NULL;
|
1995-09-29 16:51:30 +03:00
|
|
|
break;
|
1993-09-02 20:52:31 +04:00
|
|
|
|
1997-03-28 00:15:11 +03:00
|
|
|
case 1053:
|
1995-09-29 16:51:30 +03:00
|
|
|
/* Ameristar */
|
|
|
|
sc->sc_memsize = 32768;
|
1997-03-15 21:09:08 +03:00
|
|
|
sc->sc_enaddr[0] = 0x00;
|
|
|
|
sc->sc_enaddr[1] = 0x00;
|
|
|
|
sc->sc_enaddr[2] = 0x9f;
|
1997-03-28 00:15:11 +03:00
|
|
|
lesc->sc_r1 = (struct lereg1 *)(0x4000 + (int)zap->va);
|
|
|
|
sc->sc_mem = (void *)(0x8000 + (int)zap->va);
|
|
|
|
sc->sc_addr = 0x8000;
|
1998-07-21 21:36:01 +04:00
|
|
|
sc->sc_copytodesc = lance_copytobuf_contig;
|
|
|
|
sc->sc_copyfromdesc = lance_copyfrombuf_contig;
|
|
|
|
sc->sc_copytobuf = lance_copytobuf_contig;
|
|
|
|
sc->sc_copyfrombuf = lance_copyfrombuf_contig;
|
|
|
|
sc->sc_zerobuf = lance_zerobuf_contig;
|
1997-03-28 00:15:11 +03:00
|
|
|
sc->sc_rdcsr = lerdcsr;
|
|
|
|
sc->sc_wrcsr = lewrcsr;
|
|
|
|
sc->sc_hwreset = NULL;
|
|
|
|
sc->sc_hwinit = NULL;
|
1995-09-29 16:51:30 +03:00
|
|
|
break;
|
1994-06-21 08:02:13 +04:00
|
|
|
|
1997-03-28 00:15:11 +03:00
|
|
|
case 2167:
|
|
|
|
/* Village Tronic */
|
|
|
|
sc->sc_memsize = 32768;
|
|
|
|
sc->sc_enaddr[0] = 0x00;
|
|
|
|
sc->sc_enaddr[1] = 0x60;
|
|
|
|
sc->sc_enaddr[2] = 0x30;
|
|
|
|
lesc->sc_r1 = (struct lereg1 *)(0x0370 + (int)zap->va);
|
|
|
|
sc->sc_mem = (void *)(0x8000 + (int)zap->va);
|
|
|
|
sc->sc_addr = 0x8000;
|
|
|
|
sc->sc_copytodesc = ariadne_copytodesc_word;
|
|
|
|
sc->sc_copyfromdesc = ariadne_copyfromdesc_word;
|
|
|
|
sc->sc_copytobuf = ariadne_copytobuf_word;
|
|
|
|
sc->sc_copyfrombuf = ariadne_copyfrombuf_word;
|
|
|
|
sc->sc_zerobuf = ariadne_zerobuf_word;
|
|
|
|
sc->sc_rdcsr = ariadne_rdcsr;
|
|
|
|
sc->sc_wrcsr = ariadne_wrcsr;
|
|
|
|
sc->sc_hwreset = lepcnet_reset;
|
|
|
|
sc->sc_hwinit = ariadne_hwinit;
|
|
|
|
sc->sc_mediachange = ariadne_mediachange;
|
|
|
|
sc->sc_supmedia = lemedia_ariadne;
|
|
|
|
sc->sc_nsupmedia = NLEMEDIA_ARIADNE;
|
|
|
|
sc->sc_defaultmedia = IFM_ETHER | IFM_AUTO;
|
|
|
|
sc->sc_initmodemedia = 2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
1996-05-07 04:35:07 +04:00
|
|
|
panic("le_zbus_attach: bad manid");
|
1993-09-02 20:52:31 +04:00
|
|
|
}
|
|
|
|
|
1994-06-21 08:02:13 +04:00
|
|
|
/*
|
1995-09-29 16:51:30 +03:00
|
|
|
* Serial number for board is used as host ID.
|
1994-06-21 08:02:13 +04:00
|
|
|
*/
|
1995-09-29 16:51:30 +03:00
|
|
|
ser = (u_long)zap->serno;
|
1997-03-15 21:09:08 +03:00
|
|
|
sc->sc_enaddr[3] = (ser >> 16) & 0xff;
|
|
|
|
sc->sc_enaddr[4] = (ser >> 8) & 0xff;
|
|
|
|
sc->sc_enaddr[5] = (ser ) & 0xff;
|
1994-06-21 08:02:13 +04:00
|
|
|
|
1998-07-21 21:36:01 +04:00
|
|
|
am7990_config(&lesc->sc_am7990);
|
1993-09-02 20:52:31 +04:00
|
|
|
|
1996-05-07 04:35:07 +04:00
|
|
|
lesc->sc_isr.isr_intr = am7990_intr;
|
|
|
|
lesc->sc_isr.isr_arg = sc;
|
|
|
|
lesc->sc_isr.isr_ipl = 2;
|
|
|
|
add_isr(&lesc->sc_isr);
|
1993-09-02 20:52:31 +04:00
|
|
|
}
|
1997-03-28 00:15:11 +03:00
|
|
|
|
|
|
|
|
|
|
|
integrate void
|
2002-01-26 16:40:52 +03:00
|
|
|
ariadne_copytodesc_word(struct lance_softc *sc, void *from, int boff, int len)
|
1997-03-28 00:15:11 +03:00
|
|
|
{
|
|
|
|
u_short *b1 = from;
|
1999-01-10 15:56:25 +03:00
|
|
|
volatile u_short *b2 = (u_short *)((u_char *)sc->sc_mem + boff);
|
1997-03-28 00:15:11 +03:00
|
|
|
|
|
|
|
for (len >>= 1; len > 0; len--)
|
|
|
|
*b2++ = ariadne_swapreg(*b1++);
|
|
|
|
}
|
|
|
|
|
|
|
|
integrate void
|
2002-01-26 16:40:52 +03:00
|
|
|
ariadne_copyfromdesc_word(struct lance_softc *sc, void *to, int boff, int len)
|
1997-03-28 00:15:11 +03:00
|
|
|
{
|
1999-01-10 15:56:25 +03:00
|
|
|
volatile u_short *b1 = (u_short *)((u_char *)sc->sc_mem + boff);
|
1997-03-28 00:15:11 +03:00
|
|
|
u_short *b2 = to;
|
|
|
|
|
|
|
|
for (len >>= 1; len > 0; len--)
|
|
|
|
*b2++ = ariadne_swapreg(*b1++);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define isodd(n) ((n) & 1)
|
|
|
|
|
|
|
|
integrate void
|
2002-01-26 16:40:52 +03:00
|
|
|
ariadne_copytobuf_word(struct lance_softc *sc, void *from, int boff, int len)
|
1997-03-28 00:15:11 +03:00
|
|
|
{
|
|
|
|
u_char *a1 = from;
|
1999-01-10 15:56:25 +03:00
|
|
|
volatile u_char *a2 = (u_char *)sc->sc_mem + boff;
|
1997-03-28 00:15:11 +03:00
|
|
|
u_short *b1;
|
|
|
|
volatile u_short *b2;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (len > 0 && isodd(boff)) {
|
1998-03-09 20:00:33 +03:00
|
|
|
/* adjust source pointer */
|
1997-03-28 00:15:11 +03:00
|
|
|
b1 = (u_short *)(a1 + 1);
|
1998-03-09 20:00:33 +03:00
|
|
|
/* compute aligned destination pointer */
|
1997-03-28 00:15:11 +03:00
|
|
|
b2 = (u_short *)(a2 + 1);
|
1998-03-09 20:00:33 +03:00
|
|
|
/* copy first unaligned byte to buf */
|
|
|
|
b2[-1] = (b2[-1] & 0xff00) | *a1;
|
1997-03-28 00:15:11 +03:00
|
|
|
--len;
|
|
|
|
} else {
|
1998-03-09 20:00:33 +03:00
|
|
|
/* destination is aligned or length is zero */
|
1997-03-28 00:15:11 +03:00
|
|
|
b1 = (u_short *)a1;
|
|
|
|
b2 = (u_short *)a2;
|
|
|
|
}
|
|
|
|
|
1998-03-09 20:00:33 +03:00
|
|
|
/* copy full words with aligned destination */
|
1997-03-28 00:15:11 +03:00
|
|
|
for (i = len >> 1; i > 0; i--)
|
|
|
|
*b2++ = *b1++;
|
|
|
|
|
1998-03-09 20:00:33 +03:00
|
|
|
/* copy remaining byte */
|
1997-03-28 00:15:11 +03:00
|
|
|
if (isodd(len))
|
1998-03-09 20:00:33 +03:00
|
|
|
*b2 = (*b2 & 0x00ff) | (*(u_char *)b1) << 8;
|
1997-03-28 00:15:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
integrate void
|
2002-01-26 16:40:52 +03:00
|
|
|
ariadne_copyfrombuf_word(struct lance_softc *sc, void *to, int boff, int len)
|
1997-03-28 00:15:11 +03:00
|
|
|
{
|
1999-01-10 15:56:25 +03:00
|
|
|
volatile u_char *a1 = (u_char *)sc->sc_mem + boff;
|
1997-03-28 00:15:11 +03:00
|
|
|
u_char *a2 = to;
|
|
|
|
volatile u_short *b1;
|
|
|
|
u_short *b2;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (len > 0 && isodd(boff)) {
|
1998-03-09 20:00:33 +03:00
|
|
|
/* compute aligned source pointer */
|
|
|
|
b1 = (u_short *)(a1 + 1);
|
|
|
|
/* adjust destination pointer (possibly unaligned) */
|
|
|
|
b2 = (u_short *)(a2 + 1);
|
|
|
|
/* copy first unaligned byte from buf */
|
|
|
|
*a2 = b1[-1];
|
1997-03-28 00:15:11 +03:00
|
|
|
--len;
|
|
|
|
} else {
|
1998-03-09 20:00:33 +03:00
|
|
|
/* source is aligned or length is zero */
|
1997-03-28 00:15:11 +03:00
|
|
|
b1 = (u_short *)a1;
|
|
|
|
b2 = (u_short *)a2;
|
|
|
|
}
|
|
|
|
|
1998-03-09 20:00:33 +03:00
|
|
|
/* copy full words with aligned source */
|
1997-03-28 00:15:11 +03:00
|
|
|
for (i = len >> 1; i > 0; i--)
|
|
|
|
*b2++ = *b1++;
|
|
|
|
|
1998-03-09 20:00:33 +03:00
|
|
|
/* copy remaining byte */
|
1997-03-28 00:15:11 +03:00
|
|
|
if (isodd(len))
|
1998-03-09 20:00:33 +03:00
|
|
|
*(u_char *)b2 = *b1 >> 8;
|
1997-03-28 00:15:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
integrate void
|
2002-01-26 16:40:52 +03:00
|
|
|
ariadne_zerobuf_word(struct lance_softc *sc, int boff, int len)
|
1997-03-28 00:15:11 +03:00
|
|
|
{
|
1999-01-10 15:56:25 +03:00
|
|
|
volatile u_char *a1 = (u_char *)sc->sc_mem + boff;
|
1997-03-28 00:15:11 +03:00
|
|
|
volatile u_short *b1;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (len > 0 && isodd(boff)) {
|
|
|
|
b1 = (u_short *)(a1 + 1);
|
|
|
|
b1[-1] &= 0xff00;
|
|
|
|
--len;
|
|
|
|
} else {
|
|
|
|
b1 = (u_short *)a1;
|
|
|
|
}
|
2002-01-26 16:40:52 +03:00
|
|
|
|
1997-03-28 00:15:11 +03:00
|
|
|
for (i = len >> 1; i > 0; i--)
|
|
|
|
*b1++ = 0;
|
|
|
|
|
|
|
|
if (isodd(len))
|
|
|
|
*b1 &= 0x00ff;
|
|
|
|
}
|