Home | History | Annotate | Line # | Download | only in ofisa
if_cs_ofisa.c revision 1.19
      1 /*	$NetBSD: if_cs_ofisa.c,v 1.19 2009/03/14 15:36:19 dsl Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9  * NASA Ames Research Center.
     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_cs_ofisa.c,v 1.19 2009/03/14 15:36:19 dsl Exp $");
     35 
     36 #include <sys/param.h>
     37 #include <sys/systm.h>
     38 #include <sys/socket.h>
     39 #include <sys/device.h>
     40 #include <sys/malloc.h>
     41 
     42 #include "rnd.h"
     43 #if NRND > 0
     44 #include <sys/rnd.h>
     45 #endif
     46 
     47 #include <net/if.h>
     48 #include <net/if_ether.h>
     49 #include <net/if_media.h>
     50 #ifdef INET
     51 #include <netinet/in.h>
     52 #include <netinet/if_inarp.h>
     53 #endif
     54 
     55 #include <sys/bus.h>
     56 #include <sys/intr.h>
     57 
     58 #include <dev/ofw/openfirm.h>
     59 #include <dev/isa/isavar.h>
     60 #include <dev/ofisa/ofisavar.h>
     61 
     62 #include <dev/ic/cs89x0reg.h>
     63 #include <dev/ic/cs89x0var.h>
     64 #include <dev/isa/cs89x0isavar.h>
     65 
     66 int	cs_ofisa_match(struct device *, struct cfdata *, void *);
     67 void	cs_ofisa_attach(struct device *, struct device *, void *);
     68 
     69 CFATTACH_DECL(cs_ofisa, sizeof(struct cs_softc_isa),
     70     cs_ofisa_match, cs_ofisa_attach, NULL, NULL);
     71 
     72 int
     73 cs_ofisa_match(struct device *parent, struct cfdata *cf, void *aux)
     74 {
     75 	struct ofisa_attach_args *aa = aux;
     76 	static const char *const compatible_strings[] = {
     77 		"CRUS,CS8900",
     78 		/* XXX CS8920, CS8920M? */
     79 		/* XXX PNP names? */
     80 		NULL,
     81 	};
     82 	int rv = 0;
     83 
     84 	if (of_compatible(aa->oba.oba_phandle, compatible_strings) != -1)
     85 		rv = 5;
     86 #ifdef _CS_OFISA_MD_MATCH
     87 	if (rv == 0)
     88 		rv = cs_ofisa_md_match(parent, cf, aux);
     89 #endif
     90 	return (rv);
     91 }
     92 
     93 void
     94 cs_ofisa_attach(parent, self, aux)
     95 	struct device *parent, *self;
     96 	void *aux;
     97 {
     98 	struct cs_softc *sc = device_private(self);
     99 	struct cs_softc_isa *isc = (void *)sc;
    100 	struct ofisa_attach_args *aa = aux;
    101 	struct ofisa_reg_desc reg[2];
    102 	struct ofisa_intr_desc intr;
    103 	struct ofisa_dma_desc dma;
    104 	int i, n, *media, nmedia, defmedia;
    105 	bus_addr_t io_addr, mem_addr;
    106 	char *model = NULL;
    107 	const char *message = NULL;
    108 	u_int8_t enaddr[6];
    109 
    110 	isc->sc_ic = aa->ic;
    111 	sc->sc_iot = aa->iot;
    112 	sc->sc_memt = aa->memt;
    113 
    114 	/*
    115 	 * We're living on an OFW.  We have to ask the OFW what our
    116 	 * registers and interrupts properties look like.
    117 	 *
    118 	 * We expect:
    119 	 *
    120 	 *	1 i/o register region
    121 	 *	0 or 1 memory region
    122 	 *	1 interrupt
    123 	 *	0 or 1 DMA channel
    124 	 */
    125 
    126 	io_addr = mem_addr = -1;
    127 
    128 	n = ofisa_reg_get(aa->oba.oba_phandle, reg, 2);
    129 #ifdef _CS_OFISA_MD_REG_FIXUP
    130 	n = cs_ofisa_md_reg_fixup(parent, self, aux, reg, 2, n);
    131 #endif
    132 	if (n < 1 || n > 2) {
    133 		printf(": error getting register data\n");
    134 		return;
    135 	}
    136 
    137 	for (i = 0; i < n; i++) {
    138 		if (reg[i].type == OFISA_REG_TYPE_IO) {
    139 			if (io_addr != (bus_addr_t) -1) {
    140 				printf(": multiple I/O regions\n");
    141 				return;
    142 			}
    143 			if (reg[i].len != CS8900_IOSIZE) {
    144 				printf(": weird register size (%lu, expected %d)\n",
    145 				    (unsigned long)reg[i].len, CS8900_IOSIZE);
    146 				return;
    147 			}
    148 			io_addr = reg[i].addr;
    149 		} else {
    150 			if (mem_addr != (bus_addr_t) -1) {
    151 				printf(": multiple memory regions\n");
    152 				return;
    153 			}
    154 			if (reg[i].len != CS8900_MEMSIZE) {
    155 				printf(": weird register size (%lu, expected %d)\n",
    156 				    (unsigned long)reg[i].len, CS8900_MEMSIZE);
    157 				return;
    158 			}
    159 			mem_addr = reg[i].addr;
    160 		}
    161 	}
    162 
    163 	n = ofisa_intr_get(aa->oba.oba_phandle, &intr, 1);
    164 #ifdef _CS_OFISA_MD_INTR_FIXUP
    165 	n = cs_ofisa_md_intr_fixup(parent, self, aux, &intr, 1, n);
    166 #endif
    167 	if (n != 1) {
    168 		printf(": error getting interrupt data\n");
    169 		return;
    170 	}
    171 	sc->sc_irq = intr.irq;
    172 
    173 	if (CS8900_IRQ_ISVALID(sc->sc_irq) == 0) {
    174 		printf(": invalid IRQ %d\n", sc->sc_irq);
    175 		return;
    176 	}
    177 
    178 	isc->sc_drq = -1;
    179 	n = ofisa_dma_get(aa->oba.oba_phandle, &dma, 1);
    180 #ifdef _CS_OFISA_MD_DMA_FIXUP
    181 	n = cs_ofisa_md_dma_fixup(parent, self, aux, &dma, 1, n);
    182 #endif
    183 	if (n == 1)
    184 		isc->sc_drq = dma.drq;
    185 
    186 	if (io_addr == (bus_addr_t) -1) {
    187 		printf(": no I/O space\n");
    188 		return;
    189 	}
    190 	if (bus_space_map(sc->sc_iot, io_addr, CS8900_IOSIZE, 0,
    191 	    &sc->sc_ioh)) {
    192 		printf(": unable to map register space\n");
    193 		return;
    194 	}
    195 
    196 	if (mem_addr != (bus_addr_t) -1) {
    197 		if (bus_space_map(sc->sc_memt, mem_addr, CS8900_MEMSIZE, 0,
    198 		    &sc->sc_memh)) {
    199 			message = "unable to map memory space";
    200 		} else {
    201 			sc->sc_cfgflags |= CFGFLG_MEM_MODE;
    202 			sc->sc_pktpgaddr = mem_addr;
    203 		}
    204 	}
    205 
    206 	/* Dig MAC address out of the firmware. */
    207 	if (OF_getprop(aa->oba.oba_phandle, "mac-address", enaddr,
    208 	    sizeof(enaddr)) < 0) {
    209 		printf(": unable to get Ethernet address\n");
    210 		return;
    211 	}
    212 
    213 	/* Dig media out of the firmware. */
    214 	media = of_network_decode_media(aa->oba.oba_phandle, &nmedia,
    215 	    &defmedia);
    216 #ifdef _CS_OFISA_MD_MEDIA_FIXUP
    217 	media = cs_ofisa_md_media_fixup(parent, self, aux, media, &nmedia,
    218 	    &defmedia);
    219 #endif
    220 	if (media == NULL) {
    221 		printf(": unable to get media information\n");
    222 		return;
    223 	}
    224 
    225 	n = OF_getproplen(aa->oba.oba_phandle, "model");
    226 	if (n > 0) {
    227 		model = alloca(n);
    228 		if (OF_getprop(aa->oba.oba_phandle, "model", model, n) != n)
    229 			model = NULL;	/* Safe; alloca is on-stack */
    230 	}
    231 	if (model != NULL)
    232 		printf(": %s\n", model);
    233 	else
    234 		printf("\n");
    235 
    236 	if (message != NULL)
    237 		printf("%s: %s\n", device_xname(&sc->sc_dev), message);
    238 
    239 	if (defmedia == -1) {
    240 		aprint_error_dev(&sc->sc_dev, "unable to get default media\n");
    241 		defmedia = media[0];	/* XXX What to do? */
    242 	}
    243 
    244 	sc->sc_ih = isa_intr_establish(isc->sc_ic, sc->sc_irq, intr.share,
    245 	    IPL_NET, cs_intr, sc);
    246 	if (sc->sc_ih == NULL) {
    247 		aprint_error_dev(&sc->sc_dev, "unable to establish interrupt\n");
    248 		return;
    249 	}
    250 
    251 #ifdef _CS_OFISA_MD_CFGFLAGS_FIXUP
    252 	sc->sc_cfgflags |= cs_ofisa_md_cfgflags_fixup(parent, self, aux);
    253 #endif
    254 
    255 	sc->sc_dma_chipinit = cs_isa_dma_chipinit;
    256 	sc->sc_dma_attach = cs_isa_dma_attach;
    257 	sc->sc_dma_process_rx = cs_process_rx_dma;
    258 
    259 	cs_attach(sc, enaddr, media, nmedia, defmedia);
    260 
    261 	/* This is malloc'd. */
    262 	free(media, M_DEVBUF);
    263 }
    264