Home | History | Annotate | Line # | Download | only in sbus
if_le.c revision 1.35.4.2
      1 /*	$NetBSD: if_le.c,v 1.35.4.2 2009/09/16 13:37:57 yamt Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Charles M. Hannum; Jason R. Thorpe of the Numerical Aerospace
      9  * Simulation Facility, NASA Ames Research Center; Paul Kranenburg.
     10  *
     11  * Redistribution and use in source and binary forms, with or without
     12  * modification, are permitted provided that the following conditions
     13  * are met:
     14  * 1. Redistributions of source code must retain the above copyright
     15  *    notice, this list of conditions and the following disclaimer.
     16  * 2. Redistributions in binary form must reproduce the above copyright
     17  *    notice, this list of conditions and the following disclaimer in the
     18  *    documentation and/or other materials provided with the distribution.
     19  *
     20  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30  * POSSIBILITY OF SUCH DAMAGE.
     31  */
     32 
     33 #include <sys/cdefs.h>
     34 __KERNEL_RCSID(0, "$NetBSD: if_le.c,v 1.35.4.2 2009/09/16 13:37:57 yamt Exp $");
     35 
     36 #include "opt_inet.h"
     37 #include "bpfilter.h"
     38 
     39 #include <sys/param.h>
     40 #include <sys/systm.h>
     41 #include <sys/mbuf.h>
     42 #include <sys/syslog.h>
     43 #include <sys/socket.h>
     44 #include <sys/device.h>
     45 #include <sys/malloc.h>
     46 
     47 #include <net/if.h>
     48 #include <net/if_ether.h>
     49 #include <net/if_media.h>
     50 
     51 #include <sys/bus.h>
     52 #include <sys/intr.h>
     53 #include <machine/autoconf.h>
     54 
     55 #include <dev/sbus/sbusvar.h>
     56 #include <dev/sbus/lebuffervar.h>	/*XXX*/
     57 
     58 #include <dev/ic/lancereg.h>
     59 #include <dev/ic/lancevar.h>
     60 #include <dev/ic/am7990reg.h>
     61 #include <dev/ic/am7990var.h>
     62 
     63 #include "ioconf.h"
     64 
     65 /*
     66  * LANCE registers.
     67  */
     68 #define LEREG1_RDP	0	/* Register Data port */
     69 #define LEREG1_RAP	2	/* Register Address port */
     70 
     71 struct	le_softc {
     72 	struct	am7990_softc	sc_am7990;	/* glue to MI code */
     73 	struct	sbusdev		sc_sd;		/* sbus device */
     74 	bus_space_tag_t		sc_bustag;
     75 	bus_dma_tag_t		sc_dmatag;
     76 	bus_dmamap_t		sc_dmamap;
     77 	bus_space_handle_t	sc_reg;
     78 };
     79 
     80 #define MEMSIZE 0x4000		/* LANCE memory size */
     81 
     82 int	lematch_sbus(device_t, cfdata_t, void *);
     83 void	leattach_sbus(device_t, device_t, void *);
     84 
     85 static void le_sbus_reset(device_t);
     86 
     87 /*
     88  * Media types supported.
     89  */
     90 static int lemedia[] = {
     91 	IFM_ETHER|IFM_10_5,
     92 };
     93 #define NLEMEDIA	__arraycount(lemedia)
     94 
     95 CFATTACH_DECL_NEW(le_sbus, sizeof(struct le_softc),
     96     lematch_sbus, leattach_sbus, NULL, NULL);
     97 
     98 #if defined(_KERNEL_OPT)
     99 #include "opt_ddb.h"
    100 #endif
    101 
    102 static void lewrcsr(struct lance_softc *, uint16_t, uint16_t);
    103 static uint16_t lerdcsr(struct lance_softc *, uint16_t);
    104 
    105 static void
    106 lewrcsr(struct lance_softc *sc, uint16_t port, uint16_t val)
    107 {
    108 	struct le_softc *lesc = (struct le_softc *)sc;
    109 	bus_space_tag_t t = lesc->sc_bustag;
    110 	bus_space_handle_t h = lesc->sc_reg;
    111 
    112 	bus_space_write_2(t, h, LEREG1_RAP, port);
    113 	bus_space_write_2(t, h, LEREG1_RDP, val);
    114 
    115 #if defined(SUN4M)
    116 	/*
    117 	 * We need to flush the Sbus->Mbus write buffers. This can most
    118 	 * easily be accomplished by reading back the register that we
    119 	 * just wrote (thanks to Chris Torek for this solution).
    120 	 */
    121 	(void)bus_space_read_2(t, h, LEREG1_RDP);
    122 #endif
    123 }
    124 
    125 static uint16_t
    126 lerdcsr(struct lance_softc *sc, uint16_t port)
    127 {
    128 	struct le_softc *lesc = (struct le_softc *)sc;
    129 	bus_space_tag_t t = lesc->sc_bustag;
    130 	bus_space_handle_t h = lesc->sc_reg;
    131 
    132 	bus_space_write_2(t, h, LEREG1_RAP, port);
    133 	return (bus_space_read_2(t, h, LEREG1_RDP));
    134 }
    135 
    136 
    137 int
    138 lematch_sbus(device_t parent, cfdata_t cf, void *aux)
    139 {
    140 	struct sbus_attach_args *sa = aux;
    141 
    142 	return (strcmp(cf->cf_name, sa->sa_name) == 0);
    143 }
    144 
    145 void
    146 leattach_sbus(device_t parent, device_t self, void *aux)
    147 {
    148 	struct le_softc *lesc = device_private(self);
    149 	struct lance_softc *sc = &lesc->sc_am7990.lsc;
    150 	struct sbus_softc *sbsc = device_private(parent);
    151 	struct sbus_attach_args *sa = aux;
    152 	bus_dma_tag_t dmatag;
    153 	struct sbusdev *sd;
    154 
    155 	sc->sc_dev = self;
    156 	lesc->sc_bustag = sa->sa_bustag;
    157 	lesc->sc_dmatag = dmatag = sa->sa_dmatag;
    158 
    159 	if (sbus_bus_map(sa->sa_bustag,
    160 			 sa->sa_slot,
    161 			 sa->sa_offset,
    162 			 sa->sa_size,
    163 			 0, &lesc->sc_reg) != 0) {
    164 		aprint_error(": cannot map registers\n");
    165 		return;
    166 	}
    167 
    168 	/*
    169 	 * Look for an "unallocated" lebuffer and pair it with
    170 	 * this `le' device on the assumption that we're on
    171 	 * a pre-historic ROM that doesn't establish le<=>lebuffer
    172 	 * parent-child relationships.
    173 	 */
    174 	for (sd = sbsc->sc_sbdev; sd != NULL; sd = sd->sd_bchain) {
    175 
    176 		struct lebuf_softc *lebuf = device_private(sd->sd_dev);
    177 
    178 		if (strncmp("lebuffer", device_xname(sd->sd_dev), 8) != 0)
    179 			continue;
    180 
    181 		if (lebuf->attached != 0)
    182 			continue;
    183 
    184 		sc->sc_mem = lebuf->sc_buffer;
    185 		sc->sc_memsize = lebuf->sc_bufsiz;
    186 		sc->sc_addr = 0; /* Lance view is offset by buffer location */
    187 		lebuf->attached = 1;
    188 
    189 		/* That old black magic... */
    190 		sc->sc_conf3 = prom_getpropint(sa->sa_node,
    191 					  "busmaster-regval",
    192 					  LE_C3_BSWP | LE_C3_ACON | LE_C3_BCON);
    193 		break;
    194 	}
    195 
    196 	lesc->sc_sd.sd_reset = le_sbus_reset;
    197 	sbus_establish(&lesc->sc_sd, self);
    198 
    199 	if (sc->sc_mem == 0) {
    200 		bus_dma_segment_t seg;
    201 		int rseg, error;
    202 
    203 #ifndef BUS_DMA_24BIT
    204 /* XXX - This flag is not defined on all archs */
    205 #define BUS_DMA_24BIT	0
    206 #endif
    207 		/* Get a DMA handle */
    208 		if ((error = bus_dmamap_create(dmatag, MEMSIZE, 1, MEMSIZE, 0,
    209 						BUS_DMA_NOWAIT|BUS_DMA_24BIT,
    210 						&lesc->sc_dmamap)) != 0) {
    211 			aprint_error(": DMA map create error %d\n", error);
    212 			return;
    213 		}
    214 
    215 		/* Allocate DMA buffer */
    216 		if ((error = bus_dmamem_alloc(dmatag, MEMSIZE, 0, 0,
    217 					 &seg, 1, &rseg,
    218 					 BUS_DMA_NOWAIT|BUS_DMA_24BIT)) != 0){
    219 			aprint_error(": DMA buffer allocation error %d\n",
    220 			    error);
    221 			return;
    222 		}
    223 
    224 		/* Map DMA buffer into kernel space */
    225 		if ((error = bus_dmamem_map(dmatag, &seg, rseg, MEMSIZE,
    226 				       (void **)&sc->sc_mem,
    227 				       BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) != 0) {
    228 			aprint_error(": DMA buffer map error %d\n", error);
    229 			bus_dmamem_free(lesc->sc_dmatag, &seg, rseg);
    230 			return;
    231 		}
    232 
    233 		/* Load DMA buffer */
    234 		if ((error = bus_dmamap_load(dmatag, lesc->sc_dmamap,
    235 		    sc->sc_mem, MEMSIZE, NULL, BUS_DMA_NOWAIT)) != 0) {
    236 			aprint_error(": DMA buffer map load error %d\n", error);
    237 			bus_dmamem_free(dmatag, &seg, rseg);
    238 			bus_dmamem_unmap(dmatag, sc->sc_mem, MEMSIZE);
    239 			return;
    240 		}
    241 
    242 		sc->sc_addr = lesc->sc_dmamap->dm_segs[0].ds_addr & 0xffffff;
    243 		sc->sc_memsize = MEMSIZE;
    244 		sc->sc_conf3 = LE_C3_BSWP | LE_C3_ACON | LE_C3_BCON;
    245 	}
    246 
    247 	prom_getether(sa->sa_node, sc->sc_enaddr);
    248 
    249 	sc->sc_supmedia = lemedia;
    250 	sc->sc_nsupmedia = NLEMEDIA;
    251 	sc->sc_defaultmedia = lemedia[0];
    252 
    253 	sc->sc_copytodesc = lance_copytobuf_contig;
    254 	sc->sc_copyfromdesc = lance_copyfrombuf_contig;
    255 	sc->sc_copytobuf = lance_copytobuf_contig;
    256 	sc->sc_copyfrombuf = lance_copyfrombuf_contig;
    257 	sc->sc_zerobuf = lance_zerobuf_contig;
    258 
    259 	sc->sc_rdcsr = lerdcsr;
    260 	sc->sc_wrcsr = lewrcsr;
    261 
    262 	am7990_config(&lesc->sc_am7990);
    263 
    264 	/* Establish interrupt handler */
    265 	if (sa->sa_nintr != 0)
    266 		(void)bus_intr_establish(lesc->sc_bustag, sa->sa_pri,
    267 					 IPL_NET, am7990_intr, sc);
    268 }
    269 
    270 void
    271 le_sbus_reset(device_t self)
    272 {
    273 	struct le_softc *lesc = device_private(self);
    274 	struct lance_softc *sc = &lesc->sc_am7990.lsc;
    275 
    276 	lance_reset(sc);
    277 }
    278