2001-01-07 18:56:01 +03:00
|
|
|
/* $NetBSD: if_ea.c,v 1.22 2001/01/07 15:56:02 bjh21 Exp $ */
|
2000-05-10 01:55:44 +04:00
|
|
|
|
|
|
|
/*
|
2000-08-23 01:22:48 +04:00
|
|
|
* Copyright (c) 2000 Ben Harris
|
2000-05-10 01:55:44 +04:00
|
|
|
* Copyright (c) 1995 Mark Brinicombe
|
|
|
|
* 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 Mark Brinicombe.
|
|
|
|
* 4. The name of the company nor the name of the author may 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 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.
|
2000-08-11 02:43:45 +04:00
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* if_ea.c - Ether3 device driver
|
2000-05-10 01:55:44 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
2000-08-09 01:16:59 +04:00
|
|
|
|
2001-01-07 18:56:01 +03:00
|
|
|
__RCSID("$NetBSD: if_ea.c,v 1.22 2001/01/07 15:56:02 bjh21 Exp $");
|
2000-08-09 01:16:59 +04:00
|
|
|
|
2000-05-10 01:55:44 +04:00
|
|
|
#include <sys/device.h>
|
2000-09-19 00:51:14 +04:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/systm.h>
|
2000-05-10 01:55:44 +04:00
|
|
|
|
2000-08-12 17:35:08 +04:00
|
|
|
#include <machine/bus.h>
|
2000-08-23 01:22:48 +04:00
|
|
|
#include <machine/intr.h>
|
2000-05-10 01:55:44 +04:00
|
|
|
#include <machine/irq.h>
|
|
|
|
|
2000-09-19 00:51:14 +04:00
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_ether.h>
|
|
|
|
|
2000-05-10 01:55:44 +04:00
|
|
|
#include <arm26/podulebus/podulebus.h>
|
|
|
|
#include <arm32/podulebus/podules.h>
|
|
|
|
|
2000-09-19 00:51:14 +04:00
|
|
|
#include <arm26/podulebus/if_eareg.h>
|
|
|
|
#include <dev/ic/seeq8005var.h>
|
2000-05-10 01:55:44 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* per-line info and status
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct ea_softc {
|
2000-09-19 00:51:14 +04:00
|
|
|
struct seeq8005_softc sc_8005;
|
2000-05-10 01:55:44 +04:00
|
|
|
struct irq_handler *sc_ih;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* prototypes
|
|
|
|
*/
|
|
|
|
|
2000-08-09 01:16:59 +04:00
|
|
|
int eaprobe(struct device *, struct cfdata *, void *);
|
|
|
|
void eaattach(struct device *, struct device *, void *);
|
|
|
|
|
2000-05-10 01:55:44 +04:00
|
|
|
/* driver structure for autoconf */
|
|
|
|
|
|
|
|
struct cfattach ea_ca = {
|
|
|
|
sizeof(struct ea_softc), eaprobe, eaattach
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Probe routine.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Probe for the ether3 podule.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2000-08-09 01:16:59 +04:00
|
|
|
eaprobe(struct device *parent, struct cfdata *cf, void *aux)
|
2000-05-10 01:55:44 +04:00
|
|
|
{
|
2000-08-09 01:16:59 +04:00
|
|
|
struct podulebus_attach_args *pa = aux;
|
2000-05-10 01:55:44 +04:00
|
|
|
|
2000-08-08 02:21:44 +04:00
|
|
|
if ((matchpodule(pa, MANUFACTURER_ATOMWIDE,
|
|
|
|
PODULE_ATOMWIDE_ETHER3, -1) == 0)
|
|
|
|
&& (matchpodule(pa, MANUFACTURER_ACORN,
|
|
|
|
PODULE_ACORN_ETHER3XXX, -1) == 0)
|
2000-05-10 01:55:44 +04:00
|
|
|
&& (matchpodule(pa, MANUFACTURER_ANT, PODULE_ANT_ETHER3, -1) == 0))
|
2000-08-12 16:20:17 +04:00
|
|
|
return 0;
|
2000-05-10 01:55:44 +04:00
|
|
|
|
2000-08-12 16:20:17 +04:00
|
|
|
return 1;
|
2000-05-10 01:55:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach podule.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2000-08-09 01:16:59 +04:00
|
|
|
eaattach(struct device *parent, struct device *self, void *aux)
|
2000-05-10 01:55:44 +04:00
|
|
|
{
|
|
|
|
struct ea_softc *sc = (void *)self;
|
2000-08-09 01:16:59 +04:00
|
|
|
struct podulebus_attach_args *pa = aux;
|
2000-05-10 01:55:44 +04:00
|
|
|
u_int8_t myaddr[ETHER_ADDR_LEN];
|
2000-07-21 00:25:10 +04:00
|
|
|
char *ptr;
|
|
|
|
int i;
|
|
|
|
|
2000-05-10 01:55:44 +04:00
|
|
|
/* dprintf(("Attaching %s...\n", sc->sc_dev.dv_xname));*/
|
|
|
|
|
2000-07-21 00:25:10 +04:00
|
|
|
/* Set the address of the controller for easy access */
|
2000-08-12 17:35:08 +04:00
|
|
|
bus_space_shift(pa->pa_memc_t, pa->pa_memc_h, EA_8005_SHIFT,
|
2000-09-19 00:51:14 +04:00
|
|
|
&sc->sc_8005.sc_iot, &sc->sc_8005.sc_ioh);
|
2000-05-10 01:55:44 +04:00
|
|
|
|
2000-07-21 00:25:10 +04:00
|
|
|
/* Get the Ethernet address from the device description string. */
|
2000-08-11 02:57:01 +04:00
|
|
|
if (pa->pa_descr == NULL) {
|
|
|
|
printf(": No description for Ethernet address\n");
|
|
|
|
return;
|
|
|
|
}
|
2000-07-21 00:25:10 +04:00
|
|
|
ptr = strchr(pa->pa_descr, '(');
|
|
|
|
if (ptr == NULL) {
|
|
|
|
printf(": Ethernet address not found in description\n");
|
|
|
|
return;
|
2000-05-10 01:55:44 +04:00
|
|
|
}
|
2000-07-21 00:25:10 +04:00
|
|
|
ptr++;
|
|
|
|
for (i = 0; i < ETHER_ADDR_LEN; i++) {
|
|
|
|
myaddr[i] = strtoul(ptr, &ptr, 16);
|
|
|
|
if (*ptr++ != (i == ETHER_ADDR_LEN - 1 ? ')' : ':')) {
|
|
|
|
printf(": Bad Ethernet address found in "
|
|
|
|
"description\n");
|
|
|
|
return;
|
|
|
|
}
|
2000-05-10 01:55:44 +04:00
|
|
|
}
|
|
|
|
|
2000-09-22 02:20:38 +04:00
|
|
|
printf(":");
|
2000-09-19 00:51:14 +04:00
|
|
|
seeq8005_attach(&sc->sc_8005, myaddr);
|
2000-05-10 01:55:44 +04:00
|
|
|
|
2000-08-08 02:21:44 +04:00
|
|
|
/* Claim a podule interrupt */
|
2000-05-10 01:55:44 +04:00
|
|
|
|
2000-09-19 00:51:14 +04:00
|
|
|
sc->sc_ih = podulebus_irq_establish(sc->sc_8005.sc_dev.dv_parent,
|
2001-01-07 18:56:01 +03:00
|
|
|
pa->pa_slotnum, IPL_NET, seeq8005intr, sc, self->dv_xname);
|
2000-05-10 01:55:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* End of if_ea.c */
|