Home | History | Annotate | Line # | Download | only in dev
if_le.c revision 1.17
      1  1.17  drochner /*	$NetBSD: if_le.c,v 1.17 1998/07/21 17:36:02 drochner Exp $	*/
      2   1.1     chuck 
      3   1.1     chuck /*-
      4   1.2   mycroft  * Copyright (c) 1995 Charles M. Hannum.  All rights reserved.
      5   1.2   mycroft  * Copyright (c) 1992, 1993
      6   1.1     chuck  *	The Regents of the University of California.  All rights reserved.
      7   1.1     chuck  *
      8   1.2   mycroft  * This code is derived from software contributed to Berkeley by
      9   1.2   mycroft  * Ralph Campbell and Rick Macklem.
     10   1.2   mycroft  *
     11   1.1     chuck  * Redistribution and use in source and binary forms, with or without
     12   1.1     chuck  * modification, are permitted provided that the following conditions
     13   1.1     chuck  * are met:
     14   1.1     chuck  * 1. Redistributions of source code must retain the above copyright
     15   1.1     chuck  *    notice, this list of conditions and the following disclaimer.
     16   1.1     chuck  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.1     chuck  *    notice, this list of conditions and the following disclaimer in the
     18   1.1     chuck  *    documentation and/or other materials provided with the distribution.
     19   1.1     chuck  * 3. All advertising materials mentioning features or use of this software
     20   1.1     chuck  *    must display the following acknowledgement:
     21   1.1     chuck  *	This product includes software developed by the University of
     22   1.1     chuck  *	California, Berkeley and its contributors.
     23   1.1     chuck  * 4. Neither the name of the University nor the names of its contributors
     24   1.1     chuck  *    may be used to endorse or promote products derived from this software
     25   1.1     chuck  *    without specific prior written permission.
     26   1.1     chuck  *
     27   1.1     chuck  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     28   1.1     chuck  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     29   1.1     chuck  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     30   1.1     chuck  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     31   1.1     chuck  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     32   1.1     chuck  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     33   1.1     chuck  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     34   1.1     chuck  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     35   1.1     chuck  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     36   1.1     chuck  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     37   1.1     chuck  * SUCH DAMAGE.
     38   1.1     chuck  *
     39   1.2   mycroft  *	@(#)if_le.c	8.2 (Berkeley) 11/16/93
     40   1.1     chuck  */
     41   1.1     chuck 
     42  1.16  jonathan #include "opt_inet.h"
     43   1.1     chuck #include "bpfilter.h"
     44   1.1     chuck 
     45   1.1     chuck #include <sys/param.h>
     46   1.1     chuck #include <sys/systm.h>
     47   1.1     chuck #include <sys/mbuf.h>
     48   1.2   mycroft #include <sys/syslog.h>
     49   1.1     chuck #include <sys/socket.h>
     50   1.2   mycroft #include <sys/device.h>
     51   1.1     chuck 
     52   1.1     chuck #include <net/if.h>
     53  1.12        is #include <net/if_ether.h>
     54  1.13   thorpej #include <net/if_media.h>
     55   1.1     chuck 
     56   1.1     chuck #ifdef INET
     57   1.1     chuck #include <netinet/in.h>
     58  1.12        is #include <netinet/if_inarp.h>
     59   1.1     chuck #endif
     60   1.1     chuck 
     61   1.2   mycroft #include <vm/vm.h>
     62   1.1     chuck 
     63  1.10     chuck #include <machine/autoconf.h>
     64   1.1     chuck #include <machine/cpu.h>
     65   1.1     chuck #include <machine/pmap.h>
     66   1.1     chuck 
     67   1.2   mycroft #include <mvme68k/dev/pccreg.h>
     68   1.7     chuck #include <mvme68k/dev/pccvar.h>
     69   1.7     chuck 
     70  1.17  drochner #include <dev/ic/lancereg.h>
     71  1.17  drochner #include <dev/ic/lancevar.h>
     72   1.2   mycroft #include <dev/ic/am7990reg.h>
     73   1.2   mycroft #include <dev/ic/am7990var.h>
     74   1.2   mycroft 
     75   1.8   thorpej #include <mvme68k/dev/if_lereg.h>
     76   1.8   thorpej #include <mvme68k/dev/if_levar.h>
     77   1.2   mycroft 
     78  1.14       gwr int 	le_pcc_match __P((struct device *, struct cfdata  *, void *));
     79   1.7     chuck void	le_pcc_attach __P((struct device *, struct device *, void *));
     80   1.1     chuck 
     81   1.7     chuck struct cfattach le_pcc_ca = {
     82   1.7     chuck 	sizeof(struct le_softc), le_pcc_match, le_pcc_attach
     83   1.4   thorpej };
     84  1.15   thorpej 
     85  1.15   thorpej extern struct cfdriver le_cd;
     86   1.4   thorpej 
     87  1.17  drochner #if defined(_KERNEL) && !defined(_LKM)
     88  1.17  drochner #include "opt_ddb.h"
     89  1.17  drochner #endif
     90  1.17  drochner 
     91  1.17  drochner #ifdef DDB
     92  1.17  drochner #define	integrate
     93  1.17  drochner #define hide
     94  1.17  drochner #else
     95  1.17  drochner #define	integrate	static __inline
     96  1.17  drochner #define hide		static
     97  1.17  drochner #endif
     98  1.17  drochner 
     99  1.17  drochner hide void le_pcc_wrcsr __P((struct lance_softc *, u_int16_t, u_int16_t));
    100  1.17  drochner hide u_int16_t le_pcc_rdcsr __P((struct lance_softc *, u_int16_t));
    101   1.1     chuck 
    102   1.1     chuck void *ledatabuf; /* XXXCDC hack from pmap bootstrap */
    103   1.6  christos 
    104   1.8   thorpej hide void
    105   1.8   thorpej le_pcc_wrcsr(sc, port, val)
    106  1.17  drochner 	struct lance_softc *sc;
    107   1.2   mycroft 	u_int16_t port, val;
    108   1.1     chuck {
    109   1.8   thorpej 	register struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
    110   1.1     chuck 
    111   1.2   mycroft 	ler1->ler1_rap = port;
    112   1.2   mycroft 	ler1->ler1_rdp = val;
    113   1.1     chuck }
    114   1.1     chuck 
    115   1.8   thorpej hide u_int16_t
    116   1.8   thorpej le_pcc_rdcsr(sc, port)
    117  1.17  drochner 	struct lance_softc *sc;
    118   1.2   mycroft 	u_int16_t port;
    119   1.1     chuck {
    120   1.8   thorpej 	register struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
    121   1.2   mycroft 	u_int16_t val;
    122   1.1     chuck 
    123   1.2   mycroft 	ler1->ler1_rap = port;
    124   1.2   mycroft 	val = ler1->ler1_rdp;
    125   1.2   mycroft 	return (val);
    126   1.1     chuck }
    127   1.1     chuck 
    128   1.1     chuck int
    129  1.14       gwr le_pcc_match(parent, cf, aux)
    130   1.2   mycroft 	struct device *parent;
    131  1.14       gwr 	struct cfdata *cf;
    132  1.14       gwr 	void *aux;
    133   1.1     chuck {
    134   1.7     chuck 	struct pcc_attach_args *pa = aux;
    135   1.7     chuck 
    136   1.7     chuck 	if (strcmp(pa->pa_name, le_cd.cd_name))
    137   1.7     chuck 		return (0);
    138   1.1     chuck 
    139   1.7     chuck 	pa->pa_ipl = cf->pcccf_ipl;
    140   1.7     chuck 	return (1);
    141   1.1     chuck }
    142   1.1     chuck 
    143   1.1     chuck void
    144   1.7     chuck le_pcc_attach(parent, self, aux)
    145   1.2   mycroft 	struct device *parent, *self;
    146   1.2   mycroft 	void *aux;
    147   1.2   mycroft {
    148   1.8   thorpej 	struct le_softc *lesc = (void *)self;
    149  1.17  drochner 	struct lance_softc *sc = &lesc->sc_am7990.lsc;
    150   1.7     chuck 	struct pcc_attach_args *pa = aux;
    151   1.1     chuck 
    152   1.2   mycroft 	/* XXX the following declarations should be elsewhere */
    153   1.2   mycroft 	extern void myetheraddr __P((u_char *));
    154   1.1     chuck 
    155   1.7     chuck 	/* Map control registers. */
    156   1.8   thorpej 	lesc->sc_r1 = (struct lereg1 *)PCC_VADDR(pa->pa_offset);
    157   1.1     chuck 
    158   1.2   mycroft 	sc->sc_mem = ledatabuf;		/* XXX */
    159   1.2   mycroft 	sc->sc_conf3 = LE_C3_BSWP;
    160   1.2   mycroft 	sc->sc_addr = (u_long)sc->sc_mem;
    161   1.2   mycroft 	sc->sc_memsize = 4 * NBPG;	/* XXX */
    162   1.2   mycroft 
    163  1.12        is 	myetheraddr(sc->sc_enaddr);
    164   1.2   mycroft 
    165  1.17  drochner 	sc->sc_copytodesc = lance_copytobuf_contig;
    166  1.17  drochner 	sc->sc_copyfromdesc = lance_copyfrombuf_contig;
    167  1.17  drochner 	sc->sc_copytobuf = lance_copytobuf_contig;
    168  1.17  drochner 	sc->sc_copyfrombuf = lance_copyfrombuf_contig;
    169  1.17  drochner 	sc->sc_zerobuf = lance_zerobuf_contig;
    170   1.1     chuck 
    171   1.8   thorpej 	sc->sc_rdcsr = le_pcc_rdcsr;
    172   1.8   thorpej 	sc->sc_wrcsr = le_pcc_wrcsr;
    173   1.8   thorpej 	sc->sc_hwinit = NULL;
    174   1.1     chuck 
    175  1.17  drochner 	am7990_config(&lesc->sc_am7990);
    176  1.10     chuck 
    177  1.10     chuck 	/* Are we the boot device? */
    178  1.10     chuck 	if (PCC_PADDR(pa->pa_offset) == bootaddr)
    179  1.11   thorpej 		booted_device = self;
    180   1.8   thorpej 
    181   1.8   thorpej 	pccintr_establish(PCCV_LE, am7990_intr, pa->pa_ipl, sc);
    182   1.7     chuck 	sys_pcc->le_int = pa->pa_ipl | PCC_IENABLE;
    183   1.1     chuck }
    184