Home | History | Annotate | Line # | Download | only in ofisa
ess_ofisa.c revision 1.1
      1 /*	$NetBSD: ess_ofisa.c,v 1.1 1998/07/30 14:15:59 augustss 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  * 3. All advertising materials mentioning features or use of this software
     20  *    must display the following acknowledgement:
     21  *	This product includes software developed by the NetBSD
     22  *	Foundation, Inc. and its contributors.
     23  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  *    contributors may be used to endorse or promote products derived
     25  *    from this software without specific prior written permission.
     26  *
     27  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  * POSSIBILITY OF SUCH DAMAGE.
     38  */
     39 
     40 #include <sys/param.h>
     41 #include <sys/systm.h>
     42 #include <sys/device.h>
     43 
     44 #include <machine/bus.h>
     45 #include <machine/intr.h>
     46 
     47 #include <sys/audioio.h>
     48 #include <dev/audio_if.h>
     49 #include <dev/mulaw.h>
     50 
     51 #include <dev/ofw/openfirm.h>
     52 #include <dev/isa/isavar.h>
     53 #include <dev/ofisa/ofisavar.h>
     54 
     55 #include <dev/isa/essreg.h>
     56 #include <dev/isa/essvar.h>
     57 
     58 int	ess_ofisa_match __P((struct device *, struct cfdata *, void *));
     59 void	ess_ofisa_attach __P((struct device *, struct device *, void *));
     60 
     61 struct cfattach ess_ofisa_ca = {
     62 	sizeof(struct ess_softc), ess_ofisa_match, ess_ofisa_attach
     63 };
     64 
     65 int
     66 ess_ofisa_match(parent, cf, aux)
     67 	struct device *parent;
     68 	struct cfdata *cf;
     69 	void *aux;
     70 {
     71 	struct ofisa_attach_args *aa = aux;
     72 	const char *compatible_strings[] = {
     73 		"pnpPNP,b000",			/* generic SB 1.5 */
     74 		"pnpPNP,b001",			/* generic SB 2.0 */
     75 		"pnpPNP,b002",			/* generic SB Pro */
     76 		"pnpPNP,b003",			/* generic SB 16 */
     77 		NULL,
     78 	};
     79 	int rv = 0;
     80 
     81 	/* XXX table */
     82 	if (of_compatible(aa->oba.oba_phandle, compatible_strings) != -1) {
     83 		rv = 10;
     84 	}
     85 
     86 	return (rv);
     87 }
     88 
     89 void
     90 ess_ofisa_attach(parent, self, aux)
     91 	struct device *parent, *self;
     92 	void *aux;
     93 {
     94 	struct ess_softc *sc = (void *)self;
     95 	struct ofisa_attach_args *aa = aux;
     96 	struct ofisa_reg_desc reg;
     97 	struct ofisa_intr_desc intr[2];
     98 	struct ofisa_dma_desc dma[2];
     99 	int n, ndrq;
    100 	char *model;
    101 
    102 	/*
    103 	 * We're living on an OFW.  We have to ask the OFW what our
    104 	 * registers and interrupts properties look like.
    105 	 *
    106 	 * We expect:
    107 	 *
    108 	 *	1 i/o register region
    109 	 *	1 interrupt
    110 	 *	1 or 2 dma channels
    111 	 */
    112 
    113 	n = ofisa_reg_get(aa->oba.oba_phandle, &reg, 1);
    114 	if (n != 1) {
    115 		printf(": error getting register data\n");
    116 		return;
    117 	}
    118 	if (reg.type != OFISA_REG_TYPE_IO) {
    119 		printf(": register type not i/o\n");
    120 		return;
    121 	}
    122 	if (reg.len != ESS_NPORT) {
    123 		printf(": weird register size (%lu, expected %d)\n",
    124 		    (unsigned long)reg.len, ESS_NPORT);
    125 		return;
    126 	}
    127 
    128 	n = ofisa_intr_get(aa->oba.oba_phandle, intr, 2);
    129 	if (n != 2) {
    130 		printf(": error getting interrupt data\n");
    131 		return;
    132 	}
    133 	sc->sc_in.irq = intr[0].irq;
    134 	sc->sc_in.ist = intr[0].share;
    135 	sc->sc_out.irq = intr[1].irq;
    136 	sc->sc_out.ist = intr[1].share;
    137 
    138 	ndrq = ofisa_dma_get(aa->oba.oba_phandle, dma, 2);
    139 	if (ndrq != 2) {
    140 		printf(": error getting DMA data\n");
    141 		return;
    142 	}
    143 	sc->sc_in.drq = dma[0].drq;
    144 	sc->sc_out.drq = dma[1].drq;
    145 
    146 	sc->sc_in.mode = ESS_DMA_SIZE(sc->sc_in.drq);
    147 	sc->sc_out.mode = ESS_DMA_SIZE(sc->sc_out.drq);
    148 
    149 	sc->sc_ic = aa->ic;
    150 
    151 	sc->sc_iot = aa->iot;
    152 	sc->sc_iobase = reg.addr;
    153 	if (bus_space_map(sc->sc_iot, sc->sc_iobase, reg.len, 0,
    154 	    &sc->sc_ioh)) {
    155 		printf(": unable to map register space\n");
    156 		return;
    157 	}
    158 
    159 printf("ess attach irq i=%d o=%d, drq i=%d o=%d\n",
    160        sc->sc_in.irq, sc->sc_out.irq,
    161        sc->sc_in.drq, sc->sc_out.drq);
    162 
    163 	if (essmatch(sc) == 0) {
    164 		printf(": essmatch failed\n");
    165 		return;
    166 	}
    167 
    168 	n = OF_getproplen(aa->oba.oba_phandle, "model");
    169 	if (n > 0) {
    170 		model = alloca(n);
    171 		if (OF_getprop(aa->oba.oba_phandle, "model", model, n) == n)
    172 			printf(": %s\n%s", model, sc->sc_dev.dv_xname);
    173 	}
    174 
    175 	essattach(sc);
    176 }
    177