Home | History | Annotate | Line # | Download | only in isa
wss.c revision 1.69.2.1
      1  1.69.2.1      yamt /*	$NetBSD: wss.c,v 1.69.2.1 2012/04/17 00:07:40 yamt Exp $	*/
      2       1.1    brezak 
      3       1.1    brezak /*
      4       1.1    brezak  * Copyright (c) 1994 John Brezak
      5       1.1    brezak  * Copyright (c) 1991-1993 Regents of the University of California.
      6       1.1    brezak  * All rights reserved.
      7       1.1    brezak  *
      8       1.1    brezak  * Redistribution and use in source and binary forms, with or without
      9       1.1    brezak  * modification, are permitted provided that the following conditions
     10       1.1    brezak  * are met:
     11       1.1    brezak  * 1. Redistributions of source code must retain the above copyright
     12       1.1    brezak  *    notice, this list of conditions and the following disclaimer.
     13       1.1    brezak  * 2. Redistributions in binary form must reproduce the above copyright
     14       1.1    brezak  *    notice, this list of conditions and the following disclaimer in the
     15       1.1    brezak  *    documentation and/or other materials provided with the distribution.
     16       1.1    brezak  * 3. All advertising materials mentioning features or use of this software
     17       1.1    brezak  *    must display the following acknowledgement:
     18       1.1    brezak  *	This product includes software developed by the Computer Systems
     19       1.1    brezak  *	Engineering Group at Lawrence Berkeley Laboratory.
     20       1.1    brezak  * 4. Neither the name of the University nor of the Laboratory may be used
     21       1.1    brezak  *    to endorse or promote products derived from this software without
     22       1.1    brezak  *    specific prior written permission.
     23       1.1    brezak  *
     24       1.1    brezak  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25       1.1    brezak  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26       1.1    brezak  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27       1.1    brezak  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28       1.1    brezak  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29       1.1    brezak  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30       1.1    brezak  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31       1.1    brezak  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32       1.1    brezak  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33       1.1    brezak  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34       1.1    brezak  * SUCH DAMAGE.
     35       1.1    brezak  *
     36       1.1    brezak  */
     37      1.59     lukem 
     38      1.59     lukem #include <sys/cdefs.h>
     39  1.69.2.1      yamt __KERNEL_RCSID(0, "$NetBSD: wss.c,v 1.69.2.1 2012/04/17 00:07:40 yamt Exp $");
     40       1.1    brezak 
     41       1.1    brezak #include <sys/param.h>
     42       1.1    brezak #include <sys/systm.h>
     43      1.52        pk #include <sys/device.h>
     44       1.1    brezak #include <sys/errno.h>
     45      1.68        ad #include <sys/cpu.h>
     46      1.68        ad #include <sys/intr.h>
     47      1.68        ad #include <sys/bus.h>
     48       1.1    brezak #include <sys/audioio.h>
     49  1.69.2.1      yamt 
     50       1.1    brezak #include <dev/audio_if.h>
     51       1.1    brezak 
     52       1.3       cgd #include <dev/isa/isavar.h>
     53       1.3       cgd #include <dev/isa/isadmavar.h>
     54       1.1    brezak 
     55       1.6    brezak #include <dev/ic/ad1848reg.h>
     56      1.48   mycroft #include <dev/ic/cs4231reg.h>
     57       1.4       cgd #include <dev/isa/ad1848var.h>
     58      1.48   mycroft #include <dev/isa/cs4231var.h>
     59       1.4       cgd #include <dev/isa/wssreg.h>
     60      1.42  augustss #include <dev/isa/wssvar.h>
     61      1.21  augustss #include <dev/isa/madreg.h>
     62       1.1    brezak 
     63       1.6    brezak #ifdef AUDIO_DEBUG
     64      1.15  christos #define DPRINTF(x)	if (wssdebug) printf x
     65       1.1    brezak int	wssdebug = 0;
     66       1.1    brezak #else
     67       1.1    brezak #define DPRINTF(x)
     68       1.1    brezak #endif
     69       1.1    brezak 
     70       1.1    brezak struct audio_device wss_device = {
     71       1.1    brezak 	"wss,ad1848",
     72       1.1    brezak 	"",
     73       1.1    brezak 	"WSS"
     74       1.1    brezak };
     75       1.1    brezak 
     76  1.69.2.1      yamt int	wss_intr(void *);
     77      1.62      kent int	wss_getdev(void *, struct audio_device *);
     78       1.1    brezak 
     79      1.62      kent int	wss_mixer_set_port(void *, mixer_ctrl_t *);
     80      1.62      kent int	wss_mixer_get_port(void *, mixer_ctrl_t *);
     81      1.62      kent int	wss_query_devinfo(void *, mixer_devinfo_t *);
     82       1.1    brezak 
     83       1.1    brezak /*
     84       1.1    brezak  * Define our interface to the higher level audio driver.
     85       1.1    brezak  */
     86       1.1    brezak 
     87      1.61      yamt const struct audio_hw_if wss_hw_if = {
     88      1.53        pk 	ad1848_isa_open,
     89      1.53        pk 	ad1848_isa_close,
     90       1.1    brezak 	NULL,
     91       1.1    brezak 	ad1848_query_encoding,
     92      1.25  augustss 	ad1848_set_params,
     93      1.56   mycroft 	ad1848_round_blocksize,
     94       1.1    brezak 	ad1848_commit_settings,
     95      1.56   mycroft 	NULL,
     96      1.56   mycroft 	NULL,
     97      1.56   mycroft 	NULL,
     98      1.56   mycroft 	NULL,
     99      1.57   mycroft 	ad1848_isa_halt_output,
    100      1.57   mycroft 	ad1848_isa_halt_input,
    101       1.1    brezak 	NULL,
    102       1.1    brezak 	wss_getdev,
    103      1.28  augustss 	NULL,
    104       1.1    brezak 	wss_mixer_set_port,
    105       1.1    brezak 	wss_mixer_get_port,
    106       1.1    brezak 	wss_query_devinfo,
    107      1.52        pk 	ad1848_isa_malloc,
    108      1.52        pk 	ad1848_isa_free,
    109      1.55   mycroft 	ad1848_isa_round_buffersize,
    110      1.52        pk 	ad1848_isa_mappage,
    111      1.52        pk 	ad1848_isa_get_props,
    112      1.56   mycroft 	ad1848_isa_trigger_output,
    113      1.56   mycroft 	ad1848_isa_trigger_input,
    114      1.58  augustss 	NULL,
    115  1.69.2.1      yamt 	ad1848_get_locks,
    116       1.1    brezak };
    117       1.1    brezak 
    118       1.1    brezak /*
    119       1.1    brezak  * Attach hardware to driver, attach hardware driver to audio
    120       1.1    brezak  * pseudo-device driver .
    121       1.1    brezak  */
    122       1.1    brezak void
    123      1.62      kent wssattach(struct wss_softc *sc)
    124       1.1    brezak {
    125      1.62      kent 	struct ad1848_softc *ac;
    126      1.49   mycroft #if 0 /* loses on CS423X chips */
    127      1.46  augustss 	int version;
    128      1.49   mycroft #endif
    129      1.62      kent 
    130      1.62      kent 	ac = &sc->sc_ad1848.sc_ad1848;
    131  1.69.2.1      yamt 
    132  1.69.2.1      yamt 	ad1848_init_locks(ac, IPL_AUDIO);
    133  1.69.2.1      yamt 
    134      1.46  augustss 	madattach(sc);
    135      1.33  augustss 
    136      1.52        pk 	sc->sc_ad1848.sc_ih = isa_intr_establish(sc->wss_ic, sc->wss_irq,
    137  1.69.2.1      yamt 	    IST_EDGE, IPL_AUDIO, wss_intr, &sc->sc_ad1848);
    138       1.1    brezak 
    139      1.52        pk 	ad1848_isa_attach(&sc->sc_ad1848);
    140      1.62      kent 
    141      1.48   mycroft #if 0 /* loses on CS423X chips */
    142      1.62      kent 	version = bus_space_read_1(sc->sc_iot, sc->sc_ioh, WSS_STATUS)
    143      1.62      kent 	    & WSS_VERSMASK;
    144      1.46  augustss 	printf(" (vers %d)", version);
    145      1.48   mycroft #endif
    146      1.49   mycroft 
    147      1.46  augustss 	switch(sc->mad_chip_type) {
    148      1.46  augustss 	case MAD_82C928:
    149      1.46  augustss 		printf(", 82C928");
    150      1.46  augustss 		break;
    151      1.46  augustss 	case MAD_OTI601D:
    152      1.46  augustss 		printf(", OTI-601D");
    153      1.46  augustss 		break;
    154      1.46  augustss 	case MAD_82C929:
    155      1.46  augustss 		printf(", 82C929");
    156      1.46  augustss 		break;
    157      1.46  augustss 	case MAD_82C931:
    158      1.46  augustss 		printf(", 82C931");
    159      1.46  augustss 		break;
    160      1.46  augustss 	default:
    161      1.46  augustss 		break;
    162      1.46  augustss 	}
    163      1.46  augustss 	printf("\n");
    164       1.1    brezak 
    165      1.52        pk 	ac->parent = sc;
    166       1.1    brezak 
    167      1.69    nonaka 	audio_attach_mi(&wss_hw_if, &sc->sc_ad1848, ac->sc_dev);
    168      1.54  augustss 
    169      1.54  augustss 	if (sc->mad_chip_type != MAD_NONE) {
    170      1.54  augustss 		struct audio_attach_args arg;
    171      1.54  augustss 		arg.type = AUDIODEV_TYPE_OPL;
    172      1.54  augustss 		arg.hwif = 0;
    173      1.54  augustss 		arg.hdl = 0;
    174      1.69    nonaka 		(void)config_found(ac->sc_dev, &arg, audioprint);
    175      1.54  augustss 	}
    176       1.1    brezak }
    177       1.1    brezak 
    178       1.1    brezak int
    179  1.69.2.1      yamt wss_intr(void *addr)
    180  1.69.2.1      yamt {
    181  1.69.2.1      yamt 	struct ad1848_isa_softc *sc;
    182  1.69.2.1      yamt 	int handled;
    183  1.69.2.1      yamt 
    184  1.69.2.1      yamt 	sc = addr;
    185  1.69.2.1      yamt 
    186  1.69.2.1      yamt 	mutex_spin_enter(&sc->sc_ad1848.sc_intr_lock);
    187  1.69.2.1      yamt 
    188  1.69.2.1      yamt 	handled = ad1848_isa_intr(sc);
    189  1.69.2.1      yamt 
    190  1.69.2.1      yamt 	mutex_spin_exit(&sc->sc_ad1848.sc_intr_lock);
    191  1.69.2.1      yamt 
    192  1.69.2.1      yamt 	return handled;
    193  1.69.2.1      yamt }
    194  1.69.2.1      yamt 
    195  1.69.2.1      yamt int
    196      1.67  christos wss_getdev(void *addr, struct audio_device *retp)
    197       1.1    brezak {
    198      1.62      kent 
    199      1.46  augustss 	*retp = wss_device;
    200      1.54  augustss 	return 0;
    201       1.1    brezak }
    202       1.1    brezak 
    203      1.45  augustss static ad1848_devmap_t mappings[] = {
    204      1.46  augustss 	{ WSS_MIC_IN_LVL, AD1848_KIND_LVL, AD1848_AUX2_CHANNEL },
    205      1.46  augustss 	{ WSS_LINE_IN_LVL, AD1848_KIND_LVL, AD1848_AUX1_CHANNEL },
    206      1.46  augustss 	{ WSS_DAC_LVL, AD1848_KIND_LVL, AD1848_DAC_CHANNEL },
    207      1.48   mycroft 	{ WSS_MONITOR_LVL, AD1848_KIND_LVL, AD1848_MONO_CHANNEL },
    208      1.46  augustss 	{ WSS_MIC_IN_MUTE, AD1848_KIND_MUTE, AD1848_AUX2_CHANNEL },
    209      1.46  augustss 	{ WSS_LINE_IN_MUTE, AD1848_KIND_MUTE, AD1848_AUX1_CHANNEL },
    210      1.46  augustss 	{ WSS_DAC_MUTE, AD1848_KIND_MUTE, AD1848_DAC_CHANNEL },
    211      1.48   mycroft 	{ WSS_MONITOR_MUTE, AD1848_KIND_MUTE, AD1848_MONO_CHANNEL },
    212      1.46  augustss 	{ WSS_REC_LVL, AD1848_KIND_RECORDGAIN, -1 },
    213      1.46  augustss 	{ WSS_RECORD_SOURCE, AD1848_KIND_RECORDSOURCE, -1}
    214      1.45  augustss };
    215      1.45  augustss 
    216      1.45  augustss static int nummap = sizeof(mappings) / sizeof(mappings[0]);
    217      1.45  augustss 
    218       1.1    brezak int
    219      1.62      kent wss_mixer_set_port(void *addr, mixer_ctrl_t *cp)
    220       1.1    brezak {
    221      1.62      kent 	struct ad1848_softc *ac;
    222       1.1    brezak 
    223      1.62      kent 	ac = addr;
    224      1.62      kent 	return ad1848_mixer_set_port(ac, mappings, nummap, cp);
    225       1.1    brezak }
    226       1.1    brezak 
    227       1.1    brezak int
    228      1.62      kent wss_mixer_get_port(void *addr, mixer_ctrl_t *cp)
    229       1.1    brezak {
    230      1.62      kent 	struct ad1848_softc *ac;
    231       1.1    brezak 
    232      1.62      kent 	ac = addr;
    233      1.62      kent 	return ad1848_mixer_get_port(ac, mappings, nummap, cp);
    234       1.1    brezak }
    235       1.1    brezak 
    236       1.1    brezak int
    237      1.67  christos wss_query_devinfo(void *addr, mixer_devinfo_t *dip)
    238       1.1    brezak {
    239      1.62      kent 
    240      1.46  augustss 	DPRINTF(("wss_query_devinfo: index=%d\n", dip->index));
    241      1.46  augustss 	switch(dip->index) {
    242      1.46  augustss 	case WSS_MIC_IN_LVL:	/* Microphone */
    243      1.46  augustss 		dip->type = AUDIO_MIXER_VALUE;
    244      1.46  augustss 		dip->mixer_class = WSS_INPUT_CLASS;
    245      1.46  augustss 		dip->prev = AUDIO_MIXER_LAST;
    246      1.46  augustss 		dip->next = WSS_MIC_IN_MUTE;
    247      1.46  augustss 		strcpy(dip->label.name, AudioNmicrophone);
    248      1.46  augustss 		dip->un.v.num_channels = 2;
    249      1.46  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
    250      1.46  augustss 		break;
    251      1.62      kent 
    252      1.46  augustss 	case WSS_LINE_IN_LVL:	/* line/CD */
    253      1.46  augustss 		dip->type = AUDIO_MIXER_VALUE;
    254      1.46  augustss 		dip->mixer_class = WSS_INPUT_CLASS;
    255      1.46  augustss 		dip->prev = AUDIO_MIXER_LAST;
    256      1.46  augustss 		dip->next = WSS_LINE_IN_MUTE;
    257      1.46  augustss 		strcpy(dip->label.name, AudioNcd);
    258      1.46  augustss 		dip->un.v.num_channels = 2;
    259      1.46  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
    260      1.46  augustss 		break;
    261      1.62      kent 
    262      1.46  augustss 	case WSS_DAC_LVL:		/*  dacout */
    263      1.46  augustss 		dip->type = AUDIO_MIXER_VALUE;
    264      1.46  augustss 		dip->mixer_class = WSS_INPUT_CLASS;
    265      1.46  augustss 		dip->prev = AUDIO_MIXER_LAST;
    266      1.46  augustss 		dip->next = WSS_DAC_MUTE;
    267      1.46  augustss 		strcpy(dip->label.name, AudioNdac);
    268      1.46  augustss 		dip->un.v.num_channels = 2;
    269      1.46  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
    270      1.46  augustss 		break;
    271      1.62      kent 
    272      1.46  augustss 	case WSS_REC_LVL:	/* record level */
    273      1.46  augustss 		dip->type = AUDIO_MIXER_VALUE;
    274      1.46  augustss 		dip->mixer_class = WSS_RECORD_CLASS;
    275      1.46  augustss 		dip->prev = AUDIO_MIXER_LAST;
    276      1.46  augustss 		dip->next = WSS_RECORD_SOURCE;
    277      1.46  augustss 		strcpy(dip->label.name, AudioNrecord);
    278      1.46  augustss 		dip->un.v.num_channels = 2;
    279      1.46  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
    280      1.46  augustss 		break;
    281      1.62      kent 
    282      1.48   mycroft 	case WSS_MONITOR_LVL:	/* monitor level */
    283      1.46  augustss 		dip->type = AUDIO_MIXER_VALUE;
    284      1.46  augustss 		dip->mixer_class = WSS_MONITOR_CLASS;
    285      1.48   mycroft 		dip->prev = AUDIO_MIXER_LAST;
    286      1.48   mycroft 		dip->next = WSS_MONITOR_MUTE;
    287      1.46  augustss 		strcpy(dip->label.name, AudioNmonitor);
    288      1.46  augustss 		dip->un.v.num_channels = 1;
    289      1.46  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
    290      1.46  augustss 		break;
    291      1.62      kent 
    292      1.46  augustss 	case WSS_INPUT_CLASS:			/* input class descriptor */
    293      1.46  augustss 		dip->type = AUDIO_MIXER_CLASS;
    294      1.46  augustss 		dip->mixer_class = WSS_INPUT_CLASS;
    295      1.46  augustss 		dip->next = dip->prev = AUDIO_MIXER_LAST;
    296      1.46  augustss 		strcpy(dip->label.name, AudioCinputs);
    297      1.46  augustss 		break;
    298      1.62      kent 
    299      1.46  augustss 	case WSS_MONITOR_CLASS:			/* monitor class descriptor */
    300      1.46  augustss 		dip->type = AUDIO_MIXER_CLASS;
    301      1.46  augustss 		dip->mixer_class = WSS_MONITOR_CLASS;
    302      1.46  augustss 		dip->next = dip->prev = AUDIO_MIXER_LAST;
    303      1.46  augustss 		strcpy(dip->label.name, AudioCmonitor);
    304      1.46  augustss 		break;
    305      1.62      kent 
    306      1.46  augustss 	case WSS_RECORD_CLASS:			/* record source class */
    307      1.46  augustss 		dip->type = AUDIO_MIXER_CLASS;
    308      1.46  augustss 		dip->mixer_class = WSS_RECORD_CLASS;
    309      1.46  augustss 		dip->next = dip->prev = AUDIO_MIXER_LAST;
    310      1.46  augustss 		strcpy(dip->label.name, AudioCrecord);
    311      1.46  augustss 		break;
    312      1.62      kent 
    313      1.46  augustss 	case WSS_MIC_IN_MUTE:
    314      1.46  augustss 		dip->mixer_class = WSS_INPUT_CLASS;
    315      1.46  augustss 		dip->type = AUDIO_MIXER_ENUM;
    316      1.46  augustss 		dip->prev = WSS_MIC_IN_LVL;
    317      1.46  augustss 		dip->next = AUDIO_MIXER_LAST;
    318      1.46  augustss 		goto mute;
    319      1.62      kent 
    320      1.46  augustss 	case WSS_LINE_IN_MUTE:
    321      1.46  augustss 		dip->mixer_class = WSS_INPUT_CLASS;
    322      1.46  augustss 		dip->type = AUDIO_MIXER_ENUM;
    323      1.46  augustss 		dip->prev = WSS_LINE_IN_LVL;
    324      1.46  augustss 		dip->next = AUDIO_MIXER_LAST;
    325      1.46  augustss 		goto mute;
    326      1.62      kent 
    327      1.46  augustss 	case WSS_DAC_MUTE:
    328      1.46  augustss 		dip->mixer_class = WSS_INPUT_CLASS;
    329      1.46  augustss 		dip->type = AUDIO_MIXER_ENUM;
    330      1.46  augustss 		dip->prev = WSS_DAC_LVL;
    331      1.48   mycroft 		dip->next = AUDIO_MIXER_LAST;
    332      1.48   mycroft 		goto mute;
    333      1.48   mycroft 
    334      1.48   mycroft 	case WSS_MONITOR_MUTE:
    335      1.48   mycroft 		dip->mixer_class = WSS_MONITOR_CLASS;
    336      1.48   mycroft 		dip->type = AUDIO_MIXER_ENUM;
    337      1.48   mycroft 		dip->prev = WSS_MONITOR_LVL;
    338      1.46  augustss 		dip->next = AUDIO_MIXER_LAST;
    339      1.46  augustss 	mute:
    340      1.46  augustss 		strcpy(dip->label.name, AudioNmute);
    341      1.46  augustss 		dip->un.e.num_mem = 2;
    342      1.46  augustss 		strcpy(dip->un.e.member[0].label.name, AudioNoff);
    343      1.46  augustss 		dip->un.e.member[0].ord = 0;
    344      1.46  augustss 		strcpy(dip->un.e.member[1].label.name, AudioNon);
    345      1.46  augustss 		dip->un.e.member[1].ord = 1;
    346      1.46  augustss 		break;
    347      1.62      kent 
    348      1.46  augustss 	case WSS_RECORD_SOURCE:
    349      1.46  augustss 		dip->mixer_class = WSS_RECORD_CLASS;
    350      1.46  augustss 		dip->type = AUDIO_MIXER_ENUM;
    351      1.46  augustss 		dip->prev = WSS_REC_LVL;
    352      1.46  augustss 		dip->next = AUDIO_MIXER_LAST;
    353      1.46  augustss 		strcpy(dip->label.name, AudioNsource);
    354      1.46  augustss 		dip->un.e.num_mem = 3;
    355      1.46  augustss 		strcpy(dip->un.e.member[0].label.name, AudioNmicrophone);
    356      1.46  augustss 		dip->un.e.member[0].ord = WSS_MIC_IN_LVL;
    357      1.46  augustss 		strcpy(dip->un.e.member[1].label.name, AudioNcd);
    358      1.46  augustss 		dip->un.e.member[1].ord = WSS_LINE_IN_LVL;
    359      1.46  augustss 		strcpy(dip->un.e.member[2].label.name, AudioNdac);
    360      1.46  augustss 		dip->un.e.member[2].ord = WSS_DAC_LVL;
    361      1.46  augustss 		break;
    362      1.46  augustss 
    363      1.46  augustss 	default:
    364      1.46  augustss 		return ENXIO;
    365      1.46  augustss 		/*NOTREACHED*/
    366      1.46  augustss 	}
    367      1.46  augustss 	DPRINTF(("AUDIO_MIXER_DEVINFO: name=%s\n", dip->label.name));
    368      1.62      kent 
    369      1.46  augustss 	return 0;
    370      1.21  augustss }
    371      1.21  augustss 
    372      1.42  augustss 
    373      1.42  augustss /*
    374      1.42  augustss  * Copyright by Hannu Savolainen 1994
    375      1.42  augustss  *
    376      1.42  augustss  * Redistribution and use in source and binary forms, with or without
    377      1.42  augustss  * modification, are permitted provided that the following conditions are
    378      1.42  augustss  * met: 1. Redistributions of source code must retain the above copyright
    379      1.42  augustss  * notice, this list of conditions and the following disclaimer. 2.
    380      1.42  augustss  * Redistributions in binary form must reproduce the above copyright notice,
    381      1.42  augustss  * this list of conditions and the following disclaimer in the documentation
    382      1.42  augustss  * and/or other materials provided with the distribution.
    383      1.42  augustss  *
    384      1.42  augustss  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
    385      1.42  augustss  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    386      1.42  augustss  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    387      1.42  augustss  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
    388      1.42  augustss  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    389      1.42  augustss  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    390      1.42  augustss  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
    391      1.42  augustss  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    392      1.42  augustss  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    393      1.42  augustss  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    394      1.42  augustss  * SUCH DAMAGE.
    395      1.42  augustss  *
    396      1.42  augustss  */
    397      1.21  augustss /*
    398      1.21  augustss  * Initialization code for OPTi MAD16 compatible audio chips. Including
    399      1.21  augustss  *
    400      1.21  augustss  *      OPTi 82C928     MAD16           (replaced by C929)
    401      1.21  augustss  *      OAK OTI-601D    Mozart
    402      1.21  augustss  *      OPTi 82C929     MAD16 Pro
    403      1.21  augustss  *
    404      1.21  augustss  */
    405      1.21  augustss 
    406      1.42  augustss u_int
    407      1.62      kent mad_read(struct wss_softc *sc, int port)
    408      1.21  augustss {
    409      1.46  augustss 	u_int tmp;
    410      1.46  augustss 	int pwd;
    411      1.62      kent 
    412      1.46  augustss 	switch (sc->mad_chip_type) {	/* Output password */
    413      1.46  augustss 	case MAD_82C928:
    414      1.46  augustss 	case MAD_OTI601D:
    415      1.46  augustss 		pwd = M_PASSWD_928;
    416      1.46  augustss 		break;
    417      1.46  augustss 	case MAD_82C929:
    418      1.46  augustss 		pwd = M_PASSWD_929;
    419      1.46  augustss 		break;
    420      1.46  augustss 	case MAD_82C931:
    421      1.46  augustss 		pwd = M_PASSWD_931;
    422      1.46  augustss 		break;
    423      1.46  augustss 	default:
    424      1.60    provos 		panic("mad_read: Bad chip type=%d", sc->mad_chip_type);
    425      1.46  augustss 	}
    426      1.46  augustss 	bus_space_write_1(sc->sc_iot, sc->mad_ioh, MC_PASSWD_REG, pwd);
    427      1.46  augustss 	tmp = bus_space_read_1(sc->sc_iot, sc->mad_ioh, port);
    428      1.46  augustss 	return tmp;
    429      1.21  augustss }
    430      1.21  augustss 
    431      1.42  augustss void
    432      1.62      kent mad_write(struct wss_softc *sc, int port, int value)
    433      1.21  augustss {
    434      1.46  augustss 	int pwd;
    435      1.62      kent 
    436      1.46  augustss 	switch (sc->mad_chip_type) {	/* Output password */
    437      1.46  augustss 	case MAD_82C928:
    438      1.46  augustss 	case MAD_OTI601D:
    439      1.46  augustss 		pwd = M_PASSWD_928;
    440      1.46  augustss 		break;
    441      1.46  augustss 	case MAD_82C929:
    442      1.46  augustss 		pwd = M_PASSWD_929;
    443      1.46  augustss 		break;
    444      1.46  augustss 	case MAD_82C931:
    445      1.46  augustss 		pwd = M_PASSWD_931;
    446      1.46  augustss 		break;
    447      1.46  augustss 	default:
    448      1.60    provos 		panic("mad_write: Bad chip type=%d", sc->mad_chip_type);
    449      1.46  augustss 	}
    450      1.46  augustss 	bus_space_write_1(sc->sc_iot, sc->mad_ioh, MC_PASSWD_REG, pwd);
    451      1.46  augustss 	bus_space_write_1(sc->sc_iot, sc->mad_ioh, port, value & 0xff);
    452      1.21  augustss }
    453      1.21  augustss 
    454      1.42  augustss void
    455      1.62      kent madattach(struct wss_softc *sc)
    456      1.21  augustss {
    457      1.62      kent 	struct ad1848_softc *ac;
    458      1.46  augustss 	unsigned char cs4231_mode;
    459      1.46  augustss 	int joy;
    460      1.62      kent 
    461      1.62      kent 	ac = (struct ad1848_softc *)&sc->sc_ad1848;
    462      1.46  augustss 	if (sc->mad_chip_type == MAD_NONE)
    463      1.46  augustss 		return;
    464      1.62      kent 
    465      1.46  augustss 	/* Do we want the joystick disabled? */
    466      1.69    nonaka 	joy = device_cfdata(ac->sc_dev)->cf_flags & 2 ? MC1_JOYDISABLE : 0;
    467      1.62      kent 
    468      1.46  augustss 	/* enable WSS emulation at the I/O port */
    469      1.46  augustss 	mad_write(sc, MC1_PORT, M_WSS_PORT_SELECT(sc->mad_ioindex) | joy);
    470      1.54  augustss 	mad_write(sc, MC2_PORT, MC2_NO_CD_DRQ); /* disable CD */
    471      1.46  augustss 	mad_write(sc, MC3_PORT, 0xf0); /* Disable SB */
    472      1.62      kent 
    473      1.62      kent 	cs4231_mode =
    474      1.52        pk 		strncmp(ac->chip_name, "CS4248", 6) == 0 ||
    475      1.52        pk 		strncmp(ac->chip_name, "CS4231", 6) == 0 ? 0x02 : 0;
    476      1.62      kent 
    477      1.46  augustss 	if (sc->mad_chip_type == MAD_82C929) {
    478      1.46  augustss 		mad_write(sc, MC4_PORT, 0x92);
    479      1.46  augustss 		mad_write(sc, MC5_PORT, 0xA5 | cs4231_mode);
    480      1.46  augustss 		mad_write(sc, MC6_PORT, 0x03);	/* Disable MPU401 */
    481      1.46  augustss 	} else {
    482      1.46  augustss 		mad_write(sc, MC4_PORT, 0x02);
    483      1.46  augustss 		mad_write(sc, MC5_PORT, 0x30 | cs4231_mode);
    484      1.46  augustss 	}
    485      1.62      kent 
    486      1.21  augustss #ifdef AUDIO_DEBUG
    487      1.46  augustss 	if (wssdebug) {
    488      1.46  augustss 		int i;
    489      1.46  augustss 		for (i = MC1_PORT; i <= MC7_PORT; i++)
    490      1.62      kent 			DPRINTF(("port %03x after init = %02x\n",
    491      1.46  augustss 				 i, mad_read(sc, i)));
    492      1.46  augustss 	}
    493      1.21  augustss #endif
    494       1.1    brezak }
    495