Home | History | Annotate | Line # | Download | only in isapnp
gus_isapnp.c revision 1.8
      1 #include "guspnp.h"
      2 #if NGUSPNP > 0
      3 
      4 /*	$NetBSD: gus_isapnp.c,v 1.8 1998/06/09 07:28:30 thorpej Exp $	*/
      5 
      6 /*
      7  * Copyright (c) 1997 The NetBSD Foundation, Inc.
      8  * All rights reserved.
      9  *
     10  * Author: Kari Mettinen
     11  *
     12  * Redistribution and use in source and binary forms, with or without
     13  * modification, are permitted provided that the following conditions
     14  * are met:
     15  * 1. Redistributions of source code must retain the above copyright
     16  *    notice, this list of conditions and the following disclaimer.
     17  * 2. Redistributions in binary form must reproduce the above copyright
     18  *    notice, this list of conditions and the following disclaimer in the
     19  *    documentation and/or other materials provided with the distribution.
     20  * 3. All advertising materials mentioning features or use of this software
     21  *    must display the following acknowledgement:
     22  *        This product includes software developed by the NetBSD
     23  *        Foundation, Inc. and its contributors.
     24  * 4. Neither the name of The NetBSD Foundation nor the names of its
     25  *    contributors may be used to endorse or promote products derived
     26  *    from this software without specific prior written permission.
     27  *
     28  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     29  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     30  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     31  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     32  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     33  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     34  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     35  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     36  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     37  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     38  * POSSIBILITY OF SUCH DAMAGE.
     39  */
     40 
     41 #include <sys/param.h>
     42 #include <sys/fcntl.h>
     43 #include <sys/vnode.h>
     44 #include <sys/poll.h>
     45 #include <sys/malloc.h>
     46 #include <sys/select.h>
     47 #include <sys/systm.h>
     48 #include <sys/errno.h>
     49 #include <sys/ioctl.h>
     50 #include <sys/syslog.h>
     51 #include <sys/device.h>
     52 #include <sys/proc.h>
     53 
     54 #include <machine/bus.h>
     55 
     56 #include <sys/audioio.h>
     57 #include <dev/audio_if.h>
     58 #include <dev/audiovar.h>
     59 #include <dev/mulaw.h>
     60 
     61 #include <dev/isa/isavar.h>
     62 #include <dev/isa/isadmavar.h>
     63 #include <i386/isa/icu.h>
     64 
     65 #include <dev/isapnp/isapnpreg.h>
     66 #include <dev/isapnp/isapnpvar.h>
     67 
     68 
     69 #include <dev/ic/interwavevar.h>
     70 #include <dev/ic/interwavereg.h>
     71 
     72 
     73 int	gus_isapnp_match __P((struct device *, struct cfdata *, void *));
     74 void	gus_isapnp_attach __P((struct device *, struct device *, void *));
     75 static int     gus_isapnp_open __P((void *, int));
     76 
     77 static struct audio_hw_if guspnp_hw_if = {
     78 	gus_isapnp_open,
     79 	iwclose,
     80 	NULL,
     81 
     82 	iw_query_encoding,
     83 	iw_set_params,
     84 
     85 	iw_round_blocksize,
     86 
     87 	iw_commit_settings,
     88 
     89 	iw_init_output,
     90 	iw_init_input,
     91 	iw_start_output,
     92 	iw_start_input,
     93 	iw_halt_output,
     94 	iw_halt_input,
     95 
     96 	iw_speaker_ctl,
     97 
     98 	iw_getdev,
     99 	iw_setfd,
    100 	iw_set_port,
    101 	iw_get_port,
    102 	iw_query_devinfo,
    103 	iw_malloc,
    104 	iw_free,
    105 	iw_round,
    106 	iw_mappage,
    107 	iw_get_props,
    108 };
    109 
    110 
    111 
    112 struct cfattach guspnp_ca = {
    113 	sizeof(struct iw_softc), gus_isapnp_match, gus_isapnp_attach
    114 };
    115 
    116 extern struct cfdriver guspnp_cd;
    117 
    118 /*
    119  * Probe / attach routines.
    120  */
    121 
    122 /*
    123  * Probe for the guspnp hardware.
    124  *
    125  * The thing has 5 separate devices on the card
    126  */
    127 
    128 static int gus_0 = 0;		/* XXX what's this */
    129 
    130 int
    131 gus_isapnp_match(parent, match, aux)
    132 	struct device *parent;
    133 	struct cfdata *match;
    134 	void *aux;
    135 {
    136 	struct isapnp_attach_args *ipa = aux;
    137 
    138 	if (!strcmp(ipa->ipa_devlogic, "GRV0000")) {
    139 		gus_0 = 1;
    140 		return 1;
    141 		/* we'll add support for other logical devices later */
    142 	}
    143 	return 0;
    144 }
    145 
    146 
    147 
    148 /*
    149  * Attach hardware to driver, attach hardware driver to audio
    150  * pseudo-device driver.
    151  */
    152 
    153 static struct iw_softc *gussc;
    154 
    155 void
    156 gus_isapnp_attach(parent, self, aux)
    157 	struct device *parent, *self;
    158 	void *aux;
    159 {
    160         struct iw_softc *sc = (struct iw_softc *)self;
    161 	struct isapnp_attach_args *ipa = aux;
    162 
    163 	printf("\n");
    164 
    165 	if (!gus_0)
    166 		return;
    167 
    168 	if (isapnp_config(ipa->ipa_iot, ipa->ipa_memt, ipa)) {
    169 		printf("%s: error in region allocation\n",
    170 		       sc->sc_dev.dv_xname);
    171 		return;
    172 	}
    173 
    174 	gussc = sc;
    175 
    176 	sc->sc_iot = ipa->ipa_iot;
    177 
    178 	/* handle is the region base */
    179 
    180 	sc->dir_h = 0; /* XXXXX */
    181 	sc->p2xr = 0;
    182 	sc->p2xr_h = ipa->ipa_io[0].h;
    183 	sc->sc_p2xr_ic = ipa->ipa_ic;
    184 	sc->p3xr = 0;
    185 	sc->p3xr_h = ipa->ipa_io[1].h;
    186 	sc->sc_p3xr_ic = ipa->ipa_ic;
    187 	sc->codec_index = 0;
    188 	sc->codec_index_h = ipa->ipa_io[2].h;
    189 	sc->sc_irq = ipa->ipa_irq[0].num;
    190 	sc->sc_recdrq = ipa->ipa_drq[0].num;
    191 	sc->sc_playdrq = ipa->ipa_drq[1].num;
    192 
    193 	sc->sc_ic = ipa->ipa_ic;
    194 
    195         /*
    196          * Create our DMA maps.
    197          */
    198         if (sc->sc_playdrq != -1) {
    199                 if (isa_dmamap_create(sc->sc_ic, sc->sc_playdrq,
    200                     MAX_ISADMA, BUS_DMA_NOWAIT|BUS_DMA_ALLOCNOW)) {
    201                         printf("%s: can't create map for drq %d\n",
    202                             sc->sc_dev.dv_xname, sc->sc_playdrq);
    203                         return;
    204 		      }
    205 	      }
    206         if (sc->sc_recdrq != -1) {
    207                 if (isa_dmamap_create(sc->sc_ic, sc->sc_recdrq,
    208                     MAX_ISADMA, BUS_DMA_NOWAIT|BUS_DMA_ALLOCNOW)) {
    209                         printf("%s: can't create map for drq %d\n",
    210                             sc->sc_dev.dv_xname, sc->sc_recdrq);
    211                         return;
    212 		      }
    213 	      }
    214 
    215         /*
    216          * isapnp is a child if isa, and we need isa for the dma
    217          * routines.
    218          */
    219 	sc->iw_cd = &guspnp_cd;
    220 	sc->iw_hw_if = &guspnp_hw_if;
    221 
    222 	printf("%s: %s %s", sc->sc_dev.dv_xname, ipa->ipa_devident,
    223 	       ipa->ipa_devclass);
    224 
    225 	iwattach(sc);
    226 }
    227 
    228 static
    229 int
    230 gus_isapnp_open(addr, flags)
    231      void *addr;
    232      int flags;
    233 {
    234 	/* open hardware */
    235 	struct iw_softc *sc = (struct iw_softc *)addr;
    236 
    237 	if (!sc)
    238 		return ENXIO;
    239 
    240 	return iwopen(sc,flags);
    241 }
    242 
    243 #endif /* NGUSPNP */
    244