Home | History | Annotate | Line # | Download | only in obio
if_le.c revision 1.1
      1 /*	$NetBSD: if_le.c,v 1.1 2000/08/12 22:58:57 wdk Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1996, 2000 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Adam Glass, Gordon W. Ross and Wayne Knowles
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *        This product includes software developed by the NetBSD
     21  *        Foundation, Inc. and its contributors.
     22  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  *    contributors may be used to endorse or promote products derived
     24  *    from this software without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  * POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 
     39 #include "opt_inet.h"
     40 #include "bpfilter.h"
     41 
     42 #include <sys/param.h>
     43 #include <sys/systm.h>
     44 #include <sys/mbuf.h>
     45 #include <sys/syslog.h>
     46 #include <sys/socket.h>
     47 #include <sys/device.h>
     48 
     49 #include <net/if.h>
     50 #include <net/if_ether.h>
     51 #include <net/if_media.h>
     52 
     53 #ifdef INET
     54 #include <netinet/in.h>
     55 #include <netinet/if_inarp.h>
     56 #endif
     57 
     58 #include <machine/cpu.h>
     59 #include <machine/mainboard.h>
     60 #include <machine/autoconf.h>
     61 #include <machine/bus.h>
     62 
     63 #include <dev/ic/lancereg.h>
     64 #include <dev/ic/lancevar.h>
     65 #include <dev/ic/am7990reg.h>
     66 #include <dev/ic/am7990var.h>
     67 
     68 /*
     69  * LANCE registers.
     70  */
     71 
     72 #define	LEREG1_RDP	2	/* Offset to LANCE data register */
     73 #define	LEREG1_RAP	6	/* Offset to LANCE address register */
     74 
     75 /*
     76  * Ethernet software status per interface.
     77  * The real stuff is in dev/ic/am7990var.h
     78  */
     79 struct	le_softc {
     80 	struct am7990_softc	sc_am7990;	/* glue to MI code */
     81 	bus_space_tag_t		sc_bustag;
     82 	bus_dma_tag_t		sc_dmatag;
     83 	bus_space_handle_t	sc_reg;		/* LANCE registers */
     84         bus_dmamap_t		sc_dmamap;
     85 	struct evcnt		sc_intrcnt;	/* Interrupt event counter */
     86 };
     87 
     88 static int	le_match __P((struct device *, struct cfdata *, void *));
     89 static void	le_attach __P((struct device *, struct device *, void *));
     90 
     91 struct cfattach le_ca = {
     92 	sizeof(struct le_softc), le_match, le_attach
     93 };
     94 
     95 #if defined(_KERNEL) && !defined(_LKM)
     96 #include "opt_ddb.h"
     97 #endif
     98 
     99 #ifdef DDB
    100 #define	integrate
    101 #define hide
    102 #else
    103 #define	integrate	static __inline
    104 #define hide		static
    105 #endif
    106 
    107 hide void lewrcsr __P((struct lance_softc *, u_int16_t, u_int16_t));
    108 hide u_int16_t lerdcsr __P((struct lance_softc *, u_int16_t));
    109 
    110 hide void
    111 lewrcsr(sc, port, val)
    112 	struct lance_softc *sc;
    113 	u_int16_t port, val;
    114 {
    115 	struct le_softc *lesc = (struct le_softc *)sc;
    116 
    117 	bus_space_write_2(lesc->sc_bustag, lesc->sc_reg, LEREG1_RAP, port);
    118 	bus_space_write_2(lesc->sc_bustag, lesc->sc_reg, LEREG1_RDP, val);
    119 }
    120 
    121 hide u_int16_t
    122 lerdcsr(sc, port)
    123 	struct lance_softc *sc;
    124 	u_int16_t port;
    125 {
    126 	struct le_softc *lesc = (struct le_softc *)sc;
    127 
    128 	bus_space_write_2(lesc->sc_bustag, lesc->sc_reg, LEREG1_RAP, port);
    129 	return (bus_space_read_2(lesc->sc_bustag, lesc->sc_reg, LEREG1_RDP));
    130 }
    131 
    132 int
    133 le_match(parent, cf, aux)
    134 	struct device *parent;
    135 	struct cfdata *cf;
    136 	void *aux;
    137 {
    138 	struct confargs *ca = aux;
    139 	int addr;
    140 
    141 	if (strcmp(ca->ca_name, "le"))
    142 		return 0;
    143 
    144 	switch(cf->cf_unit) {
    145 
    146 	case 0:
    147 		addr = LANCE_PORT;
    148 		break;
    149 	default:
    150 		return 0;
    151 	}
    152 
    153 	if (badaddr((void *)addr, 1))
    154 		return 0;
    155 
    156 	return 1;
    157 }
    158 
    159 #define	LE_MEMSIZE	(32*1024)
    160 
    161 void
    162 le_attach(parent, self, aux)
    163 	struct device *parent, *self;
    164 	void *aux;
    165 {
    166 	struct le_softc *lesc = (struct le_softc *)self;
    167 	struct lance_softc *sc = &lesc->sc_am7990.lsc;
    168 	struct confargs *ca = aux;
    169 
    170 	bus_dma_tag_t dmat;
    171 	bus_dma_segment_t seg;
    172 	int rseg;
    173 
    174 	/*struct confargs *ca = aux;*/
    175 	u_char *id;
    176 	int i;
    177 	caddr_t kvaddr;
    178 
    179 	switch (sc->sc_dev.dv_unit) {
    180 	case 0:
    181 		id = (u_char *)(ETHER_ID);
    182 		break;
    183 	default:
    184 		panic("le_attach");
    185 	}
    186 
    187 	lesc->sc_bustag = ca->ca_bustag;
    188 	dmat = lesc->sc_dmatag = ca->ca_dmatag;
    189 
    190 	if (bus_space_map(ca->ca_bustag, ca->ca_addr,
    191 			  8,	/* size */
    192 			  BUS_SPACE_MAP_LINEAR,
    193 			  &lesc->sc_reg) != 0) {
    194 		printf(": cannot map registers\n");
    195 		return;
    196 	}
    197 
    198 	/*
    199 	 * Allocate a physically contiguous DMA area for the chip.
    200 	 */
    201 	if (bus_dmamem_alloc(dmat, LE_MEMSIZE, 0, 0, &seg, 1,
    202 			     &rseg, BUS_DMA_NOWAIT)) {
    203 		printf(": can't allocate DMA area\n");
    204 		return;
    205 	}
    206 	/* Map pages into kernel memory */
    207 	if (bus_dmamem_map(dmat, &seg, rseg, LE_MEMSIZE,
    208 	    &kvaddr, BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) {
    209 		printf(": can't map DMA area\n");
    210 		bus_dmamem_free(dmat, &seg, rseg);
    211 		return;
    212 	}
    213 	/* Build DMA map so we can get physical address */
    214 	if (bus_dmamap_create(dmat, LE_MEMSIZE, 1, LE_MEMSIZE,
    215 			      0, BUS_DMA_NOWAIT, &lesc->sc_dmamap)) {
    216 		printf(": can't create DMA map\n");
    217 		goto bad;
    218 	}
    219 	if (bus_dmamap_load(dmat, lesc->sc_dmamap, kvaddr, LE_MEMSIZE,
    220 			    NULL, BUS_DMA_NOWAIT)) {
    221 		printf(": can't load DMA map\n");
    222 		goto bad;
    223 	}
    224 
    225 	sc->sc_memsize = LE_MEMSIZE;	/* 16K Buffer space*/
    226 	sc->sc_mem  = (void *) MIPS_PHYS_TO_KSEG1(kvaddr);
    227 	sc->sc_addr = lesc->sc_dmamap->dm_segs[0].ds_addr;
    228 
    229 	sc->sc_conf3 = LE_C3_BSWP;
    230 
    231 	/* Copy Ethernet hardware address from NVRAM */
    232 	for (i=0; i < 6; i++)
    233 		sc->sc_enaddr[i] = id[i*4+3];	/* XXX */
    234 
    235 	sc->sc_copytodesc = lance_copytobuf_contig;
    236 	sc->sc_copyfromdesc = lance_copyfrombuf_contig;
    237 	sc->sc_copytobuf = lance_copytobuf_contig;
    238 	sc->sc_copyfrombuf = lance_copyfrombuf_contig;
    239 	sc->sc_zerobuf = lance_zerobuf_contig;
    240 
    241 	sc->sc_rdcsr = lerdcsr;
    242 	sc->sc_wrcsr = lewrcsr;
    243 	sc->sc_hwinit = NULL;
    244 
    245 	evcnt_attach_dynamic(&lesc->sc_intrcnt, EVCNT_TYPE_INTR, NULL,
    246 			     self->dv_xname, "intr");
    247 
    248 	am7990_config(&lesc->sc_am7990);
    249 	return;
    250 
    251 bad:
    252 	bus_dmamem_unmap(dmat, kvaddr, LE_MEMSIZE);
    253 	bus_dmamem_free(dmat, &seg, rseg);
    254 }
    255 
    256 int
    257 leintr(unit)
    258 	int unit;
    259 {
    260 	struct am7990_softc *sc;
    261 	extern struct cfdriver le_cd;
    262 
    263 	if (unit >= le_cd.cd_ndevs)
    264 		return 0;
    265 
    266 	sc = le_cd.cd_devs[unit];
    267 	((struct le_softc *)sc)->sc_intrcnt.ev_count++;
    268 	return am7990_intr(sc);
    269 }
    270