Home | History | Annotate | Line # | Download | only in isa
wss_isa.c revision 1.11
      1  1.11     lukem /*	$NetBSD: wss_isa.c,v 1.11 2001/11/13 08:01:35 lukem Exp $	*/
      2   1.1  augustss 
      3   1.1  augustss /*
      4   1.1  augustss  * Copyright (c) 1994 John Brezak
      5   1.1  augustss  * Copyright (c) 1991-1993 Regents of the University of California.
      6   1.1  augustss  * All rights reserved.
      7   1.1  augustss  *
      8   1.1  augustss  * MAD support:
      9   1.1  augustss  * Copyright (c) 1996 Lennart Augustsson
     10   1.1  augustss  * Based on code which is
     11   1.1  augustss  * Copyright (c) 1994 Hannu Savolainen
     12   1.1  augustss  *
     13   1.1  augustss  * Redistribution and use in source and binary forms, with or without
     14   1.1  augustss  * modification, are permitted provided that the following conditions
     15   1.1  augustss  * are met:
     16   1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     17   1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     18   1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     19   1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     20   1.1  augustss  *    documentation and/or other materials provided with the distribution.
     21   1.1  augustss  * 3. All advertising materials mentioning features or use of this software
     22   1.1  augustss  *    must display the following acknowledgement:
     23   1.1  augustss  *	This product includes software developed by the Computer Systems
     24   1.1  augustss  *	Engineering Group at Lawrence Berkeley Laboratory.
     25   1.1  augustss  * 4. Neither the name of the University nor of the Laboratory may be used
     26   1.1  augustss  *    to endorse or promote products derived from this software without
     27   1.1  augustss  *    specific prior written permission.
     28   1.1  augustss  *
     29   1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     30   1.1  augustss  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     31   1.1  augustss  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     32   1.1  augustss  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     33   1.1  augustss  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     34   1.1  augustss  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     35   1.1  augustss  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     36   1.1  augustss  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     37   1.1  augustss  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     38   1.1  augustss  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     39   1.1  augustss  * SUCH DAMAGE.
     40   1.1  augustss  *
     41   1.1  augustss  */
     42  1.11     lukem 
     43  1.11     lukem #include <sys/cdefs.h>
     44  1.11     lukem __KERNEL_RCSID(0, "$NetBSD: wss_isa.c,v 1.11 2001/11/13 08:01:35 lukem Exp $");
     45  1.11     lukem 
     46   1.1  augustss #include <sys/param.h>
     47   1.1  augustss #include <sys/systm.h>
     48   1.5        pk #include <sys/device.h>
     49   1.1  augustss #include <sys/errno.h>
     50   1.1  augustss 
     51   1.1  augustss #include <machine/cpu.h>
     52   1.1  augustss #include <machine/intr.h>
     53   1.1  augustss #include <machine/bus.h>
     54   1.1  augustss 
     55   1.1  augustss #include <sys/audioio.h>
     56   1.1  augustss #include <dev/audio_if.h>
     57   1.1  augustss 
     58   1.1  augustss #include <dev/isa/isavar.h>
     59   1.1  augustss #include <dev/isa/isadmavar.h>
     60   1.1  augustss 
     61   1.1  augustss #include <dev/ic/ad1848reg.h>
     62   1.1  augustss #include <dev/isa/ad1848var.h>
     63   1.1  augustss #include <dev/isa/wssreg.h>
     64   1.1  augustss #include <dev/isa/wssvar.h>
     65   1.1  augustss #include <dev/isa/madreg.h>
     66   1.1  augustss 
     67   1.1  augustss #ifdef AUDIO_DEBUG
     68   1.1  augustss #define DPRINTF(x)	if (wssdebug) printf x
     69   1.1  augustss extern int	wssdebug;
     70   1.1  augustss #else
     71   1.1  augustss #define DPRINTF(x)
     72   1.1  augustss #endif
     73   1.1  augustss 
     74   1.1  augustss static int	wssfind __P((struct device *, struct wss_softc *, struct isa_attach_args *));
     75   1.1  augustss 
     76   1.1  augustss static void	madprobe __P((struct wss_softc *, int));
     77   1.1  augustss static void	madunmap __P((struct wss_softc *));
     78   1.1  augustss static int	detect_mad16 __P((struct wss_softc *, int));
     79   1.1  augustss 
     80   1.2  drochner int		wss_isa_probe __P((struct device *, struct cfdata *, void *));
     81   1.1  augustss void		wss_isa_attach __P((struct device *, struct device *, void *));
     82   1.1  augustss 
     83   1.1  augustss struct cfattach wss_isa_ca = {
     84   1.1  augustss 	sizeof(struct wss_softc), wss_isa_probe, wss_isa_attach
     85   1.1  augustss };
     86   1.1  augustss 
     87   1.1  augustss /*
     88   1.1  augustss  * Probe for the Microsoft Sound System hardware.
     89   1.1  augustss  */
     90   1.1  augustss int
     91   1.1  augustss wss_isa_probe(parent, match, aux)
     92   1.1  augustss     struct device *parent;
     93   1.1  augustss     struct cfdata *match;
     94   1.1  augustss     void *aux;
     95   1.1  augustss {
     96   1.1  augustss     struct wss_softc probesc, *sc = &probesc;
     97   1.5        pk     struct ad1848_softc *ac = (struct ad1848_softc *)&sc->sc_ad1848;
     98   1.1  augustss 
     99  1.10   thorpej     memset(sc, 0, sizeof *sc);
    100   1.5        pk     ac->sc_dev.dv_cfdata = match;
    101   1.1  augustss     if (wssfind(parent, sc, aux)) {
    102   1.1  augustss         bus_space_unmap(sc->sc_iot, sc->sc_ioh, WSS_CODEC);
    103   1.5        pk         ad1848_isa_unmap(&sc->sc_ad1848);
    104   1.1  augustss         madunmap(sc);
    105   1.1  augustss         return 1;
    106   1.1  augustss     } else
    107   1.1  augustss         /* Everything is already unmapped */
    108   1.1  augustss         return 0;
    109   1.1  augustss }
    110   1.1  augustss 
    111   1.1  augustss static int
    112   1.1  augustss wssfind(parent, sc, ia)
    113   1.1  augustss     struct device *parent;
    114   1.1  augustss     struct wss_softc *sc;
    115   1.1  augustss     struct isa_attach_args *ia;
    116   1.1  augustss {
    117   1.9  drochner     struct ad1848_softc *ac = &sc->sc_ad1848.sc_ad1848;
    118   1.1  augustss     static u_char interrupt_bits[12] = {
    119   1.1  augustss 	-1, -1, -1, -1, -1, -1, -1, 0x08, -1, 0x10, 0x18, 0x20
    120   1.1  augustss     };
    121   1.1  augustss     static u_char dma_bits[4] = {1, 2, 0, 3};
    122   1.1  augustss 
    123   1.1  augustss     sc->sc_iot = ia->ia_iot;
    124   1.5        pk     if (ac->sc_dev.dv_cfdata->cf_flags & 1)
    125   1.1  augustss 	madprobe(sc, ia->ia_iobase);
    126   1.1  augustss     else
    127   1.1  augustss 	sc->mad_chip_type = MAD_NONE;
    128   1.1  augustss 
    129   1.6   mycroft #if 0
    130   1.1  augustss     if (!WSS_BASE_VALID(ia->ia_iobase)) {
    131   1.1  augustss 	DPRINTF(("wss: configured iobase %x invalid\n", ia->ia_iobase));
    132   1.1  augustss 	goto bad1;
    133   1.1  augustss     }
    134   1.6   mycroft #endif
    135   1.1  augustss 
    136   1.1  augustss     /* Map the ports upto the AD1848 port */
    137   1.1  augustss     if (bus_space_map(sc->sc_iot, ia->ia_iobase, WSS_CODEC, 0, &sc->sc_ioh))
    138   1.1  augustss 	goto bad1;
    139   1.1  augustss 
    140   1.5        pk     ac->sc_iot = sc->sc_iot;
    141   1.1  augustss 
    142   1.1  augustss     /* Is there an ad1848 chip at (WSS iobase + WSS_CODEC)? */
    143   1.5        pk     if (ad1848_isa_mapprobe(&sc->sc_ad1848, ia->ia_iobase + WSS_CODEC) == 0)
    144   1.1  augustss 	goto bad;
    145   1.1  augustss 
    146   1.1  augustss     ia->ia_iosize = WSS_NPORT;
    147   1.1  augustss 
    148   1.6   mycroft #if 0
    149   1.1  augustss     /* Setup WSS interrupt and DMA */
    150   1.1  augustss     if (!WSS_DRQ_VALID(ia->ia_drq)) {
    151   1.1  augustss 	DPRINTF(("wss: configured dma chan %d invalid\n", ia->ia_drq));
    152   1.1  augustss 	goto bad;
    153   1.1  augustss     }
    154   1.6   mycroft #endif
    155   1.7   mycroft     sc->wss_playdrq = ia->ia_drq;
    156   1.7   mycroft     sc->wss_ic      = ia->ia_ic;
    157   1.1  augustss 
    158   1.7   mycroft     if (sc->wss_playdrq != DRQUNK && !isa_drq_isfree(sc->wss_ic, sc->wss_playdrq))
    159   1.1  augustss 	    goto bad;
    160   1.1  augustss 
    161   1.6   mycroft #if 0
    162   1.1  augustss     if (!WSS_IRQ_VALID(ia->ia_irq)) {
    163   1.1  augustss 	DPRINTF(("wss: configured interrupt %d invalid\n", ia->ia_irq));
    164   1.1  augustss 	goto bad;
    165   1.1  augustss     }
    166   1.6   mycroft #endif
    167   1.1  augustss 
    168   1.1  augustss     sc->wss_irq = ia->ia_irq;
    169   1.1  augustss 
    170   1.5        pk     if (ac->mode <= 1)
    171   1.1  augustss 	ia->ia_drq2 = DRQUNK;
    172   1.1  augustss     sc->wss_recdrq =
    173   1.5        pk 	ac->mode > 1 && ia->ia_drq2 != DRQUNK ?
    174   1.1  augustss 	ia->ia_drq2 : ia->ia_drq;
    175   1.7   mycroft     if (sc->wss_recdrq != sc->wss_playdrq && !isa_drq_isfree(sc->wss_ic,
    176   1.3   thorpej       sc->wss_recdrq))
    177   1.1  augustss 	goto bad;
    178   1.1  augustss 
    179   1.1  augustss     /* XXX recdrq */
    180   1.1  augustss     bus_space_write_1(sc->sc_iot, sc->sc_ioh, WSS_CONFIG,
    181   1.1  augustss 		      (interrupt_bits[ia->ia_irq] | dma_bits[ia->ia_drq]));
    182   1.1  augustss 
    183   1.1  augustss     return 1;
    184   1.1  augustss 
    185   1.1  augustss bad:
    186   1.1  augustss     bus_space_unmap(sc->sc_iot, sc->sc_ioh, WSS_CODEC);
    187   1.1  augustss bad1:
    188   1.1  augustss     madunmap(sc);
    189   1.1  augustss     return 0;
    190   1.1  augustss }
    191   1.1  augustss 
    192   1.1  augustss /*
    193   1.1  augustss  * Attach hardware to driver, attach hardware driver to audio
    194   1.1  augustss  * pseudo-device driver .
    195   1.1  augustss  */
    196   1.1  augustss void
    197   1.1  augustss wss_isa_attach(parent, self, aux)
    198   1.1  augustss     struct device *parent, *self;
    199   1.1  augustss     void *aux;
    200   1.1  augustss {
    201   1.1  augustss     struct wss_softc *sc = (struct wss_softc *)self;
    202   1.5        pk     struct ad1848_softc *ac = (struct ad1848_softc *)&sc->sc_ad1848;
    203   1.1  augustss     struct isa_attach_args *ia = (struct isa_attach_args *)aux;
    204   1.1  augustss 
    205   1.1  augustss     if (!wssfind(parent, sc, ia)) {
    206   1.5        pk         printf("%s: wssfind failed\n", ac->sc_dev.dv_xname);
    207   1.1  augustss         return;
    208   1.1  augustss     }
    209   1.1  augustss 
    210   1.3   thorpej     sc->wss_ic = ia->ia_ic;
    211   1.1  augustss 
    212   1.1  augustss     wssattach(sc);
    213   1.1  augustss }
    214   1.1  augustss 
    215   1.1  augustss /*
    216   1.1  augustss  * Copyright by Hannu Savolainen 1994
    217   1.1  augustss  *
    218   1.1  augustss  * Redistribution and use in source and binary forms, with or without
    219   1.1  augustss  * modification, are permitted provided that the following conditions are
    220   1.1  augustss  * met: 1. Redistributions of source code must retain the above copyright
    221   1.1  augustss  * notice, this list of conditions and the following disclaimer. 2.
    222   1.1  augustss  * Redistributions in binary form must reproduce the above copyright notice,
    223   1.1  augustss  * this list of conditions and the following disclaimer in the documentation
    224   1.1  augustss  * and/or other materials provided with the distribution.
    225   1.1  augustss  *
    226   1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
    227   1.1  augustss  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    228   1.1  augustss  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    229   1.1  augustss  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
    230   1.1  augustss  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    231   1.1  augustss  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    232   1.1  augustss  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
    233   1.1  augustss  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    234   1.1  augustss  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    235   1.1  augustss  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    236   1.1  augustss  * SUCH DAMAGE.
    237   1.1  augustss  *
    238   1.1  augustss  */
    239   1.1  augustss 
    240   1.1  augustss /*
    241   1.1  augustss  * Initialization code for OPTi MAD16 compatible audio chips. Including
    242   1.1  augustss  *
    243   1.1  augustss  *      OPTi 82C928     MAD16           (replaced by C929)
    244   1.1  augustss  *      OAK OTI-601D    Mozart
    245   1.1  augustss  *      OPTi 82C929     MAD16 Pro
    246   1.1  augustss  *	OPTi 82C931
    247   1.1  augustss  */
    248   1.1  augustss 
    249   1.1  augustss static int
    250   1.1  augustss detect_mad16(sc, chip_type)
    251   1.1  augustss     struct wss_softc *sc;
    252   1.1  augustss     int chip_type;
    253   1.1  augustss {
    254   1.1  augustss     unsigned char tmp, tmp2;
    255   1.1  augustss 
    256   1.1  augustss     sc->mad_chip_type = chip_type;
    257   1.1  augustss     /*
    258   1.1  augustss      * Check that reading a register doesn't return bus float (0xff)
    259   1.1  augustss      * when the card is accessed using password. This may fail in case
    260   1.1  augustss      * the card is in low power mode. Normally at least the power saving mode
    261   1.1  augustss      * bit should be 0.
    262   1.1  augustss      */
    263   1.1  augustss     if ((tmp = mad_read(sc, MC1_PORT)) == 0xff) {
    264   1.1  augustss 	DPRINTF(("MC1_PORT returned 0xff\n"));
    265   1.1  augustss 	return 0;
    266   1.1  augustss     }
    267   1.1  augustss 
    268   1.1  augustss     /*
    269   1.1  augustss      * Now check that the gate is closed on first I/O after writing
    270   1.1  augustss      * the password. (This is how a MAD16 compatible card works).
    271   1.1  augustss      */
    272   1.1  augustss     if ((tmp2 = bus_space_read_1(sc->sc_iot, sc->mad_ioh, MC1_PORT)) == tmp)	{
    273   1.1  augustss 	DPRINTF(("MC1_PORT didn't close after read (0x%02x)\n", tmp2));
    274   1.1  augustss 	return 0;
    275   1.1  augustss     }
    276   1.1  augustss 
    277   1.1  augustss     mad_write(sc, MC1_PORT, tmp ^ 0x80);	/* Toggle a bit */
    278   1.1  augustss 
    279   1.1  augustss     /* Compare the bit */
    280   1.1  augustss     if ((tmp2 = mad_read(sc, MC1_PORT)) != (tmp ^ 0x80)) {
    281   1.1  augustss 	mad_write(sc, MC1_PORT, tmp);	/* Restore */
    282   1.1  augustss 	DPRINTF(("Bit revert test failed (0x%02x, 0x%02x)\n", tmp, tmp2));
    283   1.1  augustss 	return 0;
    284   1.1  augustss     }
    285   1.1  augustss 
    286   1.1  augustss     mad_write(sc, MC1_PORT, tmp);	/* Restore */
    287   1.1  augustss     return 1;
    288   1.1  augustss }
    289   1.1  augustss 
    290   1.1  augustss static void
    291   1.1  augustss madprobe(sc, iobase)
    292   1.1  augustss     struct wss_softc *sc;
    293   1.1  augustss     int iobase;
    294   1.1  augustss {
    295   1.1  augustss     static int valid_ports[M_WSS_NPORTS] =
    296   1.1  augustss         { M_WSS_PORT0, M_WSS_PORT1, M_WSS_PORT2, M_WSS_PORT3 };
    297   1.1  augustss     int i;
    298   1.1  augustss 
    299   1.1  augustss     /* Allocate bus space that the MAD chip wants */
    300   1.1  augustss     if (bus_space_map(sc->sc_iot, MAD_BASE, MAD_NPORT, 0, &sc->mad_ioh))
    301   1.1  augustss 	goto bad0;
    302   1.1  augustss     if (bus_space_map(sc->sc_iot, MAD_REG1, MAD_LEN1, 0, &sc->mad_ioh1))
    303   1.1  augustss         goto bad1;
    304   1.1  augustss     if (bus_space_map(sc->sc_iot, MAD_REG2, MAD_LEN2, 0, &sc->mad_ioh2))
    305   1.1  augustss         goto bad2;
    306   1.8  augustss     if (bus_space_map(sc->sc_iot, MAD_REG3, MAD_LEN3, 0, &sc->sc_opl_ioh))
    307   1.1  augustss         goto bad3;
    308   1.1  augustss 
    309   1.1  augustss     DPRINTF(("mad: Detect using password = 0xE2\n"));
    310   1.1  augustss     if (!detect_mad16(sc, MAD_82C928)) {
    311   1.1  augustss 	/* No luck. Try different model */
    312   1.1  augustss 	DPRINTF(("mad: Detect using password = 0xE3\n"));
    313   1.1  augustss 	if (!detect_mad16(sc, MAD_82C929))
    314   1.1  augustss 	    goto bad;
    315   1.1  augustss 	sc->mad_chip_type = MAD_82C929;
    316   1.1  augustss 	DPRINTF(("mad: 82C929 detected\n"));
    317   1.1  augustss     } else {
    318   1.1  augustss 	sc->mad_chip_type = MAD_82C928;
    319   1.1  augustss 	if ((mad_read(sc, MC3_PORT) & 0x03) == 0x03) {
    320   1.1  augustss 	    DPRINTF(("mad: Mozart detected\n"));
    321   1.1  augustss 	    sc->mad_chip_type = MAD_OTI601D;
    322   1.1  augustss 	} else {
    323   1.1  augustss 	    DPRINTF(("mad: 82C928 detected?\n"));
    324   1.1  augustss 	    sc->mad_chip_type = MAD_82C928;
    325   1.1  augustss 	}
    326   1.1  augustss     }
    327   1.1  augustss 
    328   1.1  augustss #ifdef AUDIO_DEBUG
    329   1.1  augustss     if (wssdebug)
    330   1.1  augustss 	for (i = MC1_PORT; i <= MC7_PORT; i++)
    331   1.1  augustss 	    printf("mad: port %03x = %02x\n", i, mad_read(sc, i));
    332   1.1  augustss #endif
    333   1.1  augustss 
    334   1.1  augustss     /* Set the WSS address. */
    335   1.1  augustss     for (i = 0; i < M_WSS_NPORTS; i++)
    336   1.1  augustss 	if (valid_ports[i] == iobase)
    337   1.1  augustss 	    break;
    338   1.1  augustss     if (i >= M_WSS_NPORTS) {		/* Not a valid port */
    339   1.1  augustss 	printf("mad: Bad WSS base address 0x%x\n", iobase);
    340   1.1  augustss 	goto bad;
    341   1.1  augustss     }
    342   1.1  augustss     sc->mad_ioindex = i;
    343   1.1  augustss     /* enable WSS emulation at the I/O port, no joystick */
    344   1.1  augustss     mad_write(sc, MC1_PORT, M_WSS_PORT_SELECT(i) | MC1_JOYDISABLE);
    345   1.1  augustss     mad_write(sc, MC2_PORT, 0x03); /* ? */
    346   1.1  augustss     mad_write(sc, MC3_PORT, 0xf0); /* Disable SB */
    347   1.1  augustss     return;
    348   1.1  augustss 
    349   1.1  augustss bad:
    350   1.8  augustss     bus_space_unmap(sc->sc_iot, sc->sc_opl_ioh, MAD_LEN3);
    351   1.1  augustss bad3:
    352   1.1  augustss     bus_space_unmap(sc->sc_iot, sc->mad_ioh2, MAD_LEN2);
    353   1.1  augustss bad2:
    354   1.1  augustss     bus_space_unmap(sc->sc_iot, sc->mad_ioh1, MAD_LEN1);
    355   1.1  augustss bad1:
    356   1.1  augustss     bus_space_unmap(sc->sc_iot, sc->mad_ioh, MAD_NPORT);
    357   1.1  augustss bad0:
    358   1.1  augustss     sc->mad_chip_type = MAD_NONE;
    359   1.1  augustss }
    360   1.1  augustss 
    361   1.1  augustss static void
    362   1.1  augustss madunmap(sc)
    363   1.1  augustss     struct wss_softc *sc;
    364   1.1  augustss {
    365   1.1  augustss     if (sc->mad_chip_type == MAD_NONE)
    366   1.1  augustss         return;
    367   1.1  augustss     bus_space_unmap(sc->sc_iot, sc->mad_ioh, MAD_NPORT);
    368   1.1  augustss     bus_space_unmap(sc->sc_iot, sc->mad_ioh1, MAD_LEN1);
    369   1.1  augustss     bus_space_unmap(sc->sc_iot, sc->mad_ioh2, MAD_LEN2);
    370   1.8  augustss     bus_space_unmap(sc->sc_iot, sc->sc_opl_ioh, MAD_LEN3);
    371   1.1  augustss }
    372