Home | History | Annotate | Line # | Download | only in pnpbios
ess_pnpbios.c revision 1.9.6.4
      1  1.9.6.4    skrll /*	$NetBSD: ess_pnpbios.c,v 1.9.6.4 2004/09/21 13:17:08 skrll Exp $	*/
      2      1.1  nathanw 
      3      1.1  nathanw /*-
      4      1.1  nathanw  * Copyright (c) 2000 The NetBSD Foundation, Inc.
      5      1.1  nathanw  * All rights reserved.
      6      1.1  nathanw  *
      7      1.1  nathanw  * This code is derived from software contributed to The NetBSD Foundation
      8      1.1  nathanw  * by Nathan J. Williams.
      9      1.1  nathanw  *
     10      1.1  nathanw  * Redistribution and use in source and binary forms, with or without
     11      1.1  nathanw  * modification, are permitted provided that the following conditions
     12      1.1  nathanw  * are met:
     13      1.1  nathanw  * 1. Redistributions of source code must retain the above copyright
     14      1.1  nathanw  *    notice, this list of conditions and the following disclaimer.
     15      1.1  nathanw  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1  nathanw  *    notice, this list of conditions and the following disclaimer in the
     17      1.1  nathanw  *    documentation and/or other materials provided with the distribution.
     18      1.1  nathanw  * 3. All advertising materials mentioning features or use of this software
     19      1.1  nathanw  *    must display the following acknowledgement:
     20      1.1  nathanw  *        This product includes software developed by the NetBSD
     21      1.1  nathanw  *        Foundation, Inc. and its contributors.
     22      1.1  nathanw  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.1  nathanw  *    contributors may be used to endorse or promote products derived
     24      1.1  nathanw  *    from this software without specific prior written permission.
     25      1.1  nathanw  *
     26      1.1  nathanw  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.1  nathanw  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.1  nathanw  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.1  nathanw  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.1  nathanw  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.1  nathanw  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.1  nathanw  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.1  nathanw  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.1  nathanw  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.1  nathanw  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.1  nathanw  * POSSIBILITY OF SUCH DAMAGE.
     37      1.1  nathanw  */
     38      1.5    lukem 
     39      1.5    lukem #include <sys/cdefs.h>
     40  1.9.6.4    skrll __KERNEL_RCSID(0, "$NetBSD: ess_pnpbios.c,v 1.9.6.4 2004/09/21 13:17:08 skrll Exp $");
     41      1.1  nathanw 
     42      1.1  nathanw #include <sys/param.h>
     43      1.1  nathanw #include <sys/systm.h>
     44      1.1  nathanw #include <sys/errno.h>
     45      1.1  nathanw #include <sys/ioctl.h>
     46      1.1  nathanw #include <sys/syslog.h>
     47      1.1  nathanw #include <sys/device.h>
     48      1.1  nathanw #include <sys/proc.h>
     49      1.1  nathanw 
     50      1.1  nathanw #include <machine/bus.h>
     51      1.1  nathanw 
     52      1.1  nathanw #include <sys/audioio.h>
     53      1.1  nathanw #include <dev/audio_if.h>
     54      1.1  nathanw #include <dev/midi_if.h>
     55      1.1  nathanw #include <dev/mulaw.h>
     56      1.1  nathanw 
     57      1.1  nathanw #include <dev/isa/isavar.h>
     58      1.1  nathanw #include <dev/isa/isadmavar.h>
     59      1.1  nathanw 
     60      1.1  nathanw #include <i386/pnpbios/pnpbiosvar.h>
     61      1.1  nathanw 
     62      1.1  nathanw #include <dev/isa/essreg.h>
     63      1.1  nathanw #include <dev/isa/essvar.h>
     64      1.1  nathanw 
     65      1.1  nathanw int ess_pnpbios_match __P((struct device *, struct cfdata *, void *));
     66      1.1  nathanw void ess_pnpbios_attach __P((struct device *, struct device *, void *));
     67      1.1  nathanw 
     68      1.9  thorpej CFATTACH_DECL(ess_pnpbios, sizeof(struct ess_softc),
     69      1.9  thorpej     ess_pnpbios_match, ess_pnpbios_attach, NULL, NULL);
     70      1.1  nathanw 
     71      1.1  nathanw int
     72      1.1  nathanw ess_pnpbios_match(parent, match, aux)
     73      1.1  nathanw 	struct device *parent;
     74      1.1  nathanw 	struct cfdata *match;
     75      1.1  nathanw 	void *aux;
     76      1.1  nathanw {
     77      1.1  nathanw 	struct pnpbiosdev_attach_args *aa = aux;
     78      1.1  nathanw 
     79      1.6  nathanw 	if (strcmp(aa->idstr, "ESS0104") && /* 1788 */
     80      1.6  nathanw 	    strcmp(aa->idstr, "ESS0114") && /* 1788 */
     81      1.6  nathanw 	    strcmp(aa->idstr, "CPQAE27") && /* 1788 */
     82      1.6  nathanw 	    strcmp(aa->idstr, "ESS1869") && /* 1869 */
     83      1.6  nathanw 	    strcmp(aa->idstr, "CPQB0AB") && /* 1869 */
     84      1.6  nathanw 	    strcmp(aa->idstr, "CPQB0AC") && /* 1869 */
     85      1.6  nathanw 	    strcmp(aa->idstr, "CPQB0AD") && /* 1869 */
     86  1.9.6.1    skrll 	    strcmp(aa->idstr, "CPQB0F1") && /* 1869 */
     87  1.9.6.1    skrll 	    strcmp(aa->idstr, "ESS1879"))   /* 1879 */
     88      1.1  nathanw 		return (0);
     89      1.1  nathanw 
     90      1.1  nathanw 	return (1);
     91      1.1  nathanw }
     92      1.1  nathanw 
     93      1.1  nathanw void
     94      1.1  nathanw ess_pnpbios_attach(parent, self, aux)
     95      1.1  nathanw 	struct device *parent, *self;
     96      1.1  nathanw 	void *aux;
     97      1.1  nathanw {
     98      1.1  nathanw 	struct ess_softc *sc = (void *)self;
     99      1.1  nathanw 	struct pnpbiosdev_attach_args *aa = aux;
    100      1.1  nathanw 
    101      1.1  nathanw 	if (pnpbios_io_map(aa->pbt, aa->resc, 0, &sc->sc_iot, &sc->sc_ioh)) {
    102      1.1  nathanw 		printf(": can't map i/o space\n");
    103      1.1  nathanw 		return;
    104      1.1  nathanw 	}
    105      1.1  nathanw 
    106      1.1  nathanw 	sc->sc_ic = aa->ic;
    107      1.1  nathanw 
    108      1.1  nathanw 	/* XXX These are only for setting chip configuration registers. */
    109      1.1  nathanw 	pnpbios_getiobase(aa->pbt, aa->resc, 0, 0, &sc->sc_iobase);
    110      1.1  nathanw 
    111      1.1  nathanw 	sc->sc_audio1.ist = IST_EDGE;
    112      1.1  nathanw 	sc->sc_audio2.ist = IST_EDGE;
    113      1.1  nathanw 
    114      1.4  thorpej 	if (pnpbios_getirqnum(aa->pbt, aa->resc, 0, &sc->sc_audio1.irq,
    115      1.4  thorpej 	    NULL)) {
    116      1.1  nathanw 		printf(": can't get IRQ\n");
    117      1.1  nathanw 		return;
    118      1.1  nathanw 	}
    119      1.1  nathanw 
    120      1.4  thorpej 	if (pnpbios_getirqnum(aa->pbt, aa->resc, 1, &sc->sc_audio2.irq,
    121      1.4  thorpej 	    NULL))
    122      1.1  nathanw 		sc->sc_audio2.irq = -1;
    123      1.1  nathanw 
    124      1.1  nathanw 	if (pnpbios_getdmachan(aa->pbt, aa->resc, 0, &sc->sc_audio1.drq)) {
    125      1.1  nathanw 		printf(": can't get DMA channel\n");
    126      1.1  nathanw 		return;
    127      1.1  nathanw 	}
    128      1.1  nathanw 
    129      1.1  nathanw 	if (pnpbios_getdmachan(aa->pbt, aa->resc, 1, &sc->sc_audio2.drq))
    130      1.1  nathanw 		sc->sc_audio2.drq = -1;
    131      1.1  nathanw 
    132      1.1  nathanw 	printf("\n");
    133      1.1  nathanw 	pnpbios_print_devres(self, aa);
    134      1.1  nathanw 
    135      1.1  nathanw 	printf("%s", self->dv_xname);
    136      1.1  nathanw 
    137      1.1  nathanw 	if (!essmatch(sc)) {
    138      1.1  nathanw 		printf("%s: essmatch failed\n", sc->sc_dev.dv_xname);
    139      1.3  nathanw 		pnpbios_io_unmap(aa->pbt, aa->resc, 0, sc->sc_iot, sc->sc_ioh);
    140      1.1  nathanw 		return;
    141      1.1  nathanw 	}
    142      1.1  nathanw 
    143  1.9.6.2    skrll 	essattach(sc, 0);
    144      1.1  nathanw }
    145