Home | History | Annotate | Line # | Download | only in isa
ym.c revision 1.44.30.2
      1  1.44.30.2    martin /*	$NetBSD: ym.c,v 1.44.30.2 2020/04/08 14:08:07 martin Exp $	*/
      2        1.1  augustss 
      3       1.10     itohy /*-
      4       1.42  jmcneill  * Copyright (c) 1999-2002, 2008 The NetBSD Foundation, Inc.
      5       1.10     itohy  * All rights reserved.
      6       1.10     itohy  *
      7       1.10     itohy  * This code is derived from software contributed to The NetBSD Foundation
      8       1.10     itohy  * by ITOH Yasufumi.
      9       1.10     itohy  *
     10       1.10     itohy  * Redistribution and use in source and binary forms, with or without
     11       1.10     itohy  * modification, are permitted provided that the following conditions
     12       1.10     itohy  * are met:
     13       1.10     itohy  * 1. Redistributions of source code must retain the above copyright
     14       1.10     itohy  *    notice, this list of conditions and the following disclaimer.
     15       1.10     itohy  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.10     itohy  *    notice, this list of conditions and the following disclaimer in the
     17       1.10     itohy  *    documentation and/or other materials provided with the distribution.
     18       1.10     itohy  *
     19       1.10     itohy  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.10     itohy  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.10     itohy  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.10     itohy  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.10     itohy  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.10     itohy  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.10     itohy  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.10     itohy  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.10     itohy  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.10     itohy  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.10     itohy  * POSSIBILITY OF SUCH DAMAGE.
     30       1.10     itohy  */
     31        1.1  augustss 
     32        1.1  augustss /*
     33        1.1  augustss  * Copyright (c) 1998 Constantine Sapuntzakis. All rights reserved.
     34       1.10     itohy  *
     35        1.1  augustss  * Redistribution and use in source and binary forms, with or without
     36        1.1  augustss  * modification, are permitted provided that the following conditions
     37        1.1  augustss  * are met:
     38        1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     39        1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     40        1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     41        1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     42        1.1  augustss  *    documentation and/or other materials provided with the distribution.
     43        1.1  augustss  * 3. The name of the author may not be used to endorse or promote products
     44        1.1  augustss  *    derived from this software without specific prior written permission.
     45        1.1  augustss  *
     46        1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     47        1.1  augustss  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     48        1.1  augustss  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     49        1.1  augustss  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     50        1.1  augustss  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     51        1.1  augustss  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     52        1.1  augustss  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     53        1.1  augustss  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     54        1.1  augustss  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     55        1.1  augustss  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     56        1.1  augustss  */
     57        1.1  augustss 
     58        1.1  augustss /*
     59        1.1  augustss  *  Original code from OpenBSD.
     60        1.1  augustss  */
     61       1.19     lukem 
     62       1.19     lukem #include <sys/cdefs.h>
     63  1.44.30.2    martin __KERNEL_RCSID(0, "$NetBSD: ym.c,v 1.44.30.2 2020/04/08 14:08:07 martin Exp $");
     64        1.1  augustss 
     65       1.10     itohy #include "mpu_ym.h"
     66       1.10     itohy #include "opt_ym.h"
     67        1.1  augustss 
     68        1.1  augustss #include <sys/param.h>
     69        1.1  augustss #include <sys/systm.h>
     70        1.1  augustss #include <sys/errno.h>
     71        1.1  augustss #include <sys/device.h>
     72       1.10     itohy #include <sys/fcntl.h>
     73       1.10     itohy #include <sys/kernel.h>
     74       1.10     itohy #include <sys/proc.h>
     75        1.1  augustss 
     76       1.32        ad #include <sys/cpu.h>
     77       1.32        ad #include <sys/intr.h>
     78       1.32        ad #include <sys/bus.h>
     79        1.1  augustss 
     80        1.1  augustss #include <sys/audioio.h>
     81  1.44.30.1  christos #include <dev/audio/audio_if.h>
     82        1.1  augustss 
     83        1.1  augustss #include <dev/isa/isavar.h>
     84        1.1  augustss #include <dev/isa/isadmavar.h>
     85        1.1  augustss 
     86        1.1  augustss #include <dev/ic/ad1848reg.h>
     87        1.1  augustss #include <dev/isa/ad1848var.h>
     88       1.10     itohy #include <dev/ic/opl3sa3reg.h>
     89       1.10     itohy #include <dev/isa/wssreg.h>
     90       1.10     itohy #if NMPU_YM > 0
     91       1.10     itohy #include <dev/ic/mpuvar.h>
     92       1.10     itohy #endif
     93        1.1  augustss #include <dev/isa/ymvar.h>
     94       1.10     itohy #include <dev/isa/sbreg.h>
     95        1.1  augustss 
     96       1.10     itohy /* Power management mode. */
     97       1.10     itohy #ifndef YM_POWER_MODE
     98       1.10     itohy #define YM_POWER_MODE		YM_POWER_POWERSAVE
     99       1.10     itohy #endif
    100       1.10     itohy 
    101       1.10     itohy /* Time in second before power down the chip. */
    102       1.10     itohy #ifndef YM_POWER_OFF_SEC
    103       1.10     itohy #define YM_POWER_OFF_SEC	5
    104       1.10     itohy #endif
    105       1.10     itohy 
    106       1.12     itohy /* Default mixer settings. */
    107       1.11     itohy #ifndef YM_VOL_MASTER
    108       1.20     itohy #define YM_VOL_MASTER		208
    109       1.11     itohy #endif
    110       1.11     itohy 
    111       1.11     itohy #ifndef YM_VOL_DAC
    112       1.11     itohy #define YM_VOL_DAC		224
    113       1.11     itohy #endif
    114       1.11     itohy 
    115       1.11     itohy #ifndef YM_VOL_OPL3
    116       1.11     itohy #define YM_VOL_OPL3		184
    117       1.11     itohy #endif
    118       1.11     itohy 
    119       1.16     itohy /*
    120       1.20     itohy  * Default position of the equalizer.
    121       1.16     itohy  */
    122       1.20     itohy #ifndef YM_DEFAULT_TREBLE
    123       1.20     itohy #define YM_DEFAULT_TREBLE	YM_EQ_FLAT_OFFSET
    124       1.16     itohy #endif
    125       1.20     itohy #ifndef YM_DEFAULT_BASS
    126       1.20     itohy #define YM_DEFAULT_BASS		YM_EQ_FLAT_OFFSET
    127       1.15  augustss #endif
    128       1.15  augustss 
    129       1.10     itohy #ifdef __i386__		/* XXX */
    130       1.10     itohy # include "joy.h"
    131       1.10     itohy #else
    132       1.10     itohy # define NJOY	0
    133       1.10     itohy #endif
    134       1.10     itohy 
    135       1.10     itohy #ifdef AUDIO_DEBUG
    136       1.10     itohy #define DPRINTF(x)	if (ymdebug) printf x
    137       1.10     itohy int	ymdebug = 0;
    138       1.10     itohy #else
    139       1.10     itohy #define DPRINTF(x)
    140       1.10     itohy #endif
    141       1.41   tsutsui #define DVNAME(softc)	(device_xname((softc)->sc_ad1848.sc_ad1848.sc_dev))
    142        1.1  augustss 
    143       1.24      kent int	ym_getdev(void *, struct audio_device *);
    144       1.24      kent int	ym_mixer_set_port(void *, mixer_ctrl_t *);
    145       1.24      kent int	ym_mixer_get_port(void *, mixer_ctrl_t *);
    146       1.24      kent int	ym_query_devinfo(void *, mixer_devinfo_t *);
    147       1.24      kent int	ym_intr(void *);
    148       1.10     itohy #ifndef AUDIO_NO_POWER_CTL
    149       1.24      kent static void ym_save_codec_regs(struct ym_softc *);
    150       1.24      kent static void ym_restore_codec_regs(struct ym_softc *);
    151       1.24      kent int	ym_codec_power_ctl(void *, int);
    152       1.24      kent static void ym_chip_powerdown(struct ym_softc *);
    153       1.24      kent static void ym_chip_powerup(struct ym_softc *, int);
    154       1.42  jmcneill static void	ym_powerdown_blocks(struct ym_softc *);
    155       1.42  jmcneill static void	ym_powerdown_callout(void *);
    156       1.24      kent void	ym_power_ctl(struct ym_softc *, int, int);
    157       1.24      kent #endif
    158       1.24      kent 
    159       1.24      kent static void ym_init(struct ym_softc *);
    160       1.24      kent static void ym_mute(struct ym_softc *, int, int);
    161       1.24      kent static void ym_set_master_gain(struct ym_softc *, struct ad1848_volume*);
    162       1.24      kent static void ym_hvol_to_master_gain(struct ym_softc *);
    163       1.24      kent static void ym_set_mic_gain(struct ym_softc *, int);
    164       1.24      kent static void ym_set_3d(struct ym_softc *, mixer_ctrl_t *,
    165       1.24      kent 	struct ad1848_volume *, int);
    166       1.39    dyoung static bool ym_suspend(device_t, const pmf_qual_t *);
    167       1.39    dyoung static bool ym_resume(device_t, const pmf_qual_t *);
    168        1.1  augustss 
    169        1.1  augustss 
    170       1.23      yamt const struct audio_hw_if ym_hw_if = {
    171  1.44.30.1  christos 	.open			= ad1848_isa_open,
    172  1.44.30.1  christos 	.close			= ad1848_isa_close,
    173  1.44.30.1  christos 	.query_format		= ad1848_query_format,
    174  1.44.30.1  christos 	.set_format		= ad1848_set_format,
    175  1.44.30.1  christos 	.commit_settings	= ad1848_commit_settings,
    176  1.44.30.1  christos 	.halt_output		= ad1848_isa_halt_output,
    177  1.44.30.1  christos 	.halt_input		= ad1848_isa_halt_input,
    178  1.44.30.1  christos 	.getdev			= ym_getdev,
    179  1.44.30.1  christos 	.set_port		= ym_mixer_set_port,
    180  1.44.30.1  christos 	.get_port		= ym_mixer_get_port,
    181  1.44.30.1  christos 	.query_devinfo		= ym_query_devinfo,
    182  1.44.30.1  christos 	.allocm			= ad1848_isa_malloc,
    183  1.44.30.1  christos 	.freem			= ad1848_isa_free,
    184  1.44.30.1  christos 	.round_buffersize	= ad1848_isa_round_buffersize,
    185  1.44.30.1  christos 	.get_props		= ad1848_isa_get_props,
    186  1.44.30.1  christos 	.trigger_output		= ad1848_isa_trigger_output,
    187  1.44.30.1  christos 	.trigger_input		= ad1848_isa_trigger_input,
    188  1.44.30.1  christos 	.get_locks		= ad1848_get_locks,
    189        1.1  augustss };
    190        1.1  augustss 
    191       1.27     perry static inline int ym_read(struct ym_softc *, int);
    192       1.27     perry static inline void ym_write(struct ym_softc *, int, int);
    193        1.1  augustss 
    194        1.1  augustss void
    195       1.24      kent ym_attach(struct ym_softc *sc)
    196        1.1  augustss {
    197       1.11     itohy 	static struct ad1848_volume vol_master = {YM_VOL_MASTER, YM_VOL_MASTER};
    198       1.11     itohy 	static struct ad1848_volume vol_dac    = {YM_VOL_DAC,    YM_VOL_DAC};
    199       1.11     itohy 	static struct ad1848_volume vol_opl3   = {YM_VOL_OPL3,   YM_VOL_OPL3};
    200       1.24      kent 	struct ad1848_softc *ac;
    201       1.15  augustss 	mixer_ctrl_t mctl;
    202       1.10     itohy 	struct audio_attach_args arg;
    203       1.10     itohy 
    204       1.24      kent 	ac = &sc->sc_ad1848.sc_ad1848;
    205       1.42  jmcneill 	callout_init(&sc->sc_powerdown_ch, CALLOUT_MPSAFE);
    206       1.42  jmcneill 	cv_init(&sc->sc_cv, "ym");
    207       1.43       mrg 	ad1848_init_locks(ac, IPL_AUDIO);
    208       1.14   thorpej 
    209       1.11     itohy 	/* Mute the output to reduce noise during initialization. */
    210       1.11     itohy 	ym_mute(sc, SA3_VOL_L, 1);
    211       1.11     itohy 	ym_mute(sc, SA3_VOL_R, 1);
    212       1.11     itohy 
    213       1.21     itohy 	sc->sc_version = ym_read(sc, SA3_MISC) & SA3_MISC_VER;
    214       1.21     itohy 	ac->chip_name = YM_IS_SA3(sc) ? "OPL3-SA3" : "OPL3-SA2";
    215       1.21     itohy 
    216        1.5        pk 	sc->sc_ad1848.sc_ih = isa_intr_establish(sc->sc_ic, sc->ym_irq,
    217       1.43       mrg 	    IST_EDGE, IPL_AUDIO, ym_intr, sc);
    218        1.1  augustss 
    219       1.10     itohy #ifndef AUDIO_NO_POWER_CTL
    220       1.10     itohy 	sc->sc_ad1848.powerctl = ym_codec_power_ctl;
    221       1.10     itohy 	sc->sc_ad1848.powerarg = sc;
    222       1.10     itohy #endif
    223        1.6  augustss 	ad1848_isa_attach(&sc->sc_ad1848);
    224        1.2  augustss 	printf("\n");
    225        1.5        pk 	ac->parent = sc;
    226        1.2  augustss 
    227        1.2  augustss 	/* Establish chip in well known mode */
    228       1.11     itohy 	ym_set_master_gain(sc, &vol_master);
    229       1.10     itohy 	ym_set_mic_gain(sc, 0);
    230        1.2  augustss 	sc->master_mute = 0;
    231       1.10     itohy 
    232       1.11     itohy 	/* Override ad1848 settings. */
    233       1.11     itohy 	ad1848_set_channel_gain(ac, AD1848_DAC_CHANNEL, &vol_dac);
    234       1.11     itohy 	ad1848_set_channel_gain(ac, AD1848_AUX2_CHANNEL, &vol_opl3);
    235       1.15  augustss 
    236       1.13     itohy 	/*
    237       1.13     itohy 	 * Mute all external sources.  If you change this, you must
    238       1.13     itohy 	 * also change the initial value of sc->sc_external_sources
    239       1.13     itohy 	 * (currently 0 --- no external source is active).
    240       1.13     itohy 	 */
    241       1.20     itohy 	sc->mic_mute = 1;
    242       1.20     itohy 	ym_mute(sc, SA3_MIC_VOL, sc->mic_mute);
    243       1.13     itohy 	ad1848_mute_channel(ac, AD1848_AUX1_CHANNEL, MUTE_ALL);	/* CD */
    244       1.13     itohy 	ad1848_mute_channel(ac, AD1848_LINE_CHANNEL, MUTE_ALL);	/* line */
    245       1.13     itohy 	ac->mute[AD1848_AUX1_CHANNEL] = MUTE_ALL;
    246       1.13     itohy 	ac->mute[AD1848_LINE_CHANNEL] = MUTE_ALL;
    247       1.13     itohy 	/* speaker is muted by default */
    248       1.13     itohy 
    249       1.10     itohy 	/* We use only one IRQ (IRQ-A). */
    250       1.10     itohy 	ym_write(sc, SA3_IRQ_CONF, SA3_IRQ_CONF_MPU_A | SA3_IRQ_CONF_WSS_A);
    251       1.10     itohy 	ym_write(sc, SA3_HVOL_INTR_CNF, SA3_HVOL_INTR_CNF_A);
    252       1.10     itohy 
    253       1.10     itohy 	/* audio at ym attachment */
    254       1.40    nonaka 	sc->sc_audiodev = audio_attach_mi(&ym_hw_if, ac, ac->sc_dev);
    255       1.10     itohy 
    256       1.10     itohy 	/* opl at ym attachment */
    257       1.10     itohy 	if (sc->sc_opl_ioh) {
    258       1.10     itohy 		arg.type = AUDIODEV_TYPE_OPL;
    259       1.10     itohy 		arg.hwif = 0;
    260       1.10     itohy 		arg.hdl = 0;
    261       1.40    nonaka 		(void)config_found(ac->sc_dev, &arg, audioprint);
    262       1.10     itohy 	}
    263       1.10     itohy 
    264       1.10     itohy #if NMPU_YM > 0
    265       1.10     itohy 	/* mpu at ym attachment */
    266       1.10     itohy 	if (sc->sc_mpu_ioh) {
    267       1.10     itohy 		arg.type = AUDIODEV_TYPE_MPU;
    268       1.10     itohy 		arg.hwif = 0;
    269       1.10     itohy 		arg.hdl = 0;
    270       1.40    nonaka 		sc->sc_mpudev = config_found(ac->sc_dev, &arg, audioprint);
    271       1.10     itohy 	}
    272       1.10     itohy #endif
    273       1.10     itohy 
    274       1.10     itohy 	/* This must be AFTER the attachment of sub-devices. */
    275       1.42  jmcneill 	mutex_spin_enter(&sc->sc_ad1848.sc_ad1848.sc_intr_lock);
    276       1.10     itohy 	ym_init(sc);
    277       1.10     itohy 
    278       1.10     itohy #ifndef AUDIO_NO_POWER_CTL
    279       1.10     itohy 	/*
    280       1.10     itohy 	 * Initialize power control.
    281       1.10     itohy 	 */
    282       1.10     itohy 	sc->sc_pow_mode = YM_POWER_MODE;
    283       1.10     itohy 	sc->sc_pow_timeout = YM_POWER_OFF_SEC;
    284       1.10     itohy 
    285       1.10     itohy 	sc->sc_on_blocks = sc->sc_turning_off =
    286       1.24      kent 	    YM_POWER_CODEC_P | YM_POWER_CODEC_R |
    287       1.24      kent 	    YM_POWER_OPL3 | YM_POWER_MPU401 | YM_POWER_3D |
    288       1.24      kent 	    YM_POWER_CODEC_DA | YM_POWER_CODEC_AD | YM_POWER_OPL3_DA;
    289       1.10     itohy #if NJOY > 0
    290       1.11     itohy 	sc->sc_on_blocks |= YM_POWER_JOYSTICK;	/* prevents chip powerdown */
    291       1.10     itohy #endif
    292       1.10     itohy 	ym_powerdown_blocks(sc);
    293       1.42  jmcneill 	mutex_spin_exit(&sc->sc_ad1848.sc_ad1848.sc_intr_lock);
    294        1.1  augustss 
    295       1.40    nonaka 	if (!pmf_device_register(ac->sc_dev, ym_suspend, ym_resume)) {
    296       1.40    nonaka 		aprint_error_dev(ac->sc_dev,
    297       1.36  christos 		    "cannot set power mgmt handler\n");
    298       1.36  christos 	}
    299       1.10     itohy #endif
    300       1.16     itohy 
    301       1.16     itohy 	/* Set tone control to the default position. */
    302       1.16     itohy 	mctl.un.value.num_channels = 1;
    303       1.20     itohy 	mctl.un.value.level[AUDIO_MIXER_LEVEL_MONO] = YM_DEFAULT_TREBLE;
    304       1.16     itohy 	mctl.dev = YM_MASTER_TREBLE;
    305       1.16     itohy 	ym_mixer_set_port(sc, &mctl);
    306       1.20     itohy 	mctl.un.value.level[AUDIO_MIXER_LEVEL_MONO] = YM_DEFAULT_BASS;
    307       1.16     itohy 	mctl.dev = YM_MASTER_BASS;
    308       1.16     itohy 	ym_mixer_set_port(sc, &mctl);
    309       1.20     itohy 
    310       1.20     itohy 	/* Unmute the output now if the chip is on. */
    311       1.20     itohy #ifndef AUDIO_NO_POWER_CTL
    312       1.20     itohy 	if (sc->sc_on_blocks & YM_POWER_ACTIVE)
    313       1.16     itohy #endif
    314       1.20     itohy 	{
    315       1.20     itohy 		ym_mute(sc, SA3_VOL_L, sc->master_mute);
    316       1.20     itohy 		ym_mute(sc, SA3_VOL_R, sc->master_mute);
    317       1.20     itohy 	}
    318        1.1  augustss }
    319        1.1  augustss 
    320       1.27     perry static inline int
    321       1.24      kent ym_read(struct ym_softc *sc, int reg)
    322        1.1  augustss {
    323       1.24      kent 
    324       1.10     itohy 	bus_space_write_1(sc->sc_iot, sc->sc_controlioh,
    325       1.24      kent 	    SA3_CTL_INDEX, (reg & 0xff));
    326       1.24      kent 	return bus_space_read_1(sc->sc_iot, sc->sc_controlioh, SA3_CTL_DATA);
    327        1.1  augustss }
    328        1.1  augustss 
    329       1.27     perry static inline void
    330       1.24      kent ym_write(struct ym_softc *sc, int reg, int data)
    331        1.1  augustss {
    332       1.24      kent 
    333       1.10     itohy 	bus_space_write_1(sc->sc_iot, sc->sc_controlioh,
    334       1.24      kent 	    SA3_CTL_INDEX, (reg & 0xff));
    335       1.10     itohy 	bus_space_write_1(sc->sc_iot, sc->sc_controlioh,
    336       1.24      kent 	    SA3_CTL_DATA, (data & 0xff));
    337        1.1  augustss }
    338        1.1  augustss 
    339       1.10     itohy static void
    340       1.24      kent ym_init(struct ym_softc *sc)
    341       1.10     itohy {
    342       1.24      kent 	uint8_t dpd, apd;
    343       1.10     itohy 
    344       1.42  jmcneill 	KASSERT(mutex_owned(&sc->sc_ad1848.sc_ad1848.sc_intr_lock));
    345       1.42  jmcneill 
    346       1.10     itohy 	/* Mute SoundBlaster output if possible. */
    347       1.10     itohy 	if (sc->sc_sb_ioh) {
    348       1.10     itohy 		bus_space_write_1(sc->sc_iot, sc->sc_sb_ioh, SBP_MIXER_ADDR,
    349       1.24      kent 		    SBP_MASTER_VOL);
    350       1.10     itohy 		bus_space_write_1(sc->sc_iot, sc->sc_sb_ioh, SBP_MIXER_DATA,
    351       1.24      kent 		    0x00);
    352       1.10     itohy 	}
    353       1.10     itohy 
    354       1.21     itohy 	if (!YM_IS_SA3(sc)) {
    355       1.21     itohy 		/* OPL3-SA2 */
    356       1.21     itohy 		ym_write(sc, SA3_PWR_MNG, SA2_PWR_MNG_CLKO |
    357       1.21     itohy 		    (sc->sc_opl_ioh == 0 ? SA2_PWR_MNG_FMPS : 0));
    358       1.21     itohy 		return;
    359       1.21     itohy 	}
    360       1.21     itohy 
    361       1.21     itohy 	/* OPL3-SA3 */
    362       1.10     itohy 	/* Figure out which part can be power down. */
    363       1.10     itohy 	dpd = SA3_DPWRDWN_SB		/* we never use SB */
    364       1.10     itohy #if NMPU_YM > 0
    365       1.24      kent 	    | (sc->sc_mpu_ioh ? 0 : SA3_DPWRDWN_MPU)
    366       1.10     itohy #else
    367       1.24      kent 	    | SA3_DPWRDWN_MPU
    368       1.10     itohy #endif
    369       1.10     itohy #if NJOY == 0
    370       1.24      kent 	    | SA3_DPWRDWN_JOY
    371       1.10     itohy #endif
    372       1.24      kent 	    | SA3_DPWRDWN_PNP	/* ISA Plug and Play is done */
    373       1.24      kent 	    /*
    374       1.24      kent 	     * The master clock is for external wavetable synthesizer
    375       1.24      kent 	     * OPL4-ML (YMF704) or OPL4-ML2 (YMF721),
    376       1.24      kent 	     * and is currently unused.
    377       1.24      kent 	     */
    378       1.24      kent 	    | SA3_DPWRDWN_MCLKO;
    379       1.10     itohy 
    380       1.10     itohy 	apd = SA3_APWRDWN_SBDAC;	/* we never use SB */
    381       1.10     itohy 
    382       1.10     itohy 	/* Power down OPL3 if not attached. */
    383       1.10     itohy 	if (sc->sc_opl_ioh == 0) {
    384       1.10     itohy 		dpd |= SA3_DPWRDWN_FM;
    385       1.10     itohy 		apd |= SA3_APWRDWN_FMDAC;
    386       1.10     itohy 	}
    387       1.10     itohy 	/* CODEC is always attached. */
    388       1.10     itohy 
    389       1.10     itohy 	/* Power down unused digital parts. */
    390       1.10     itohy 	ym_write(sc, SA3_DPWRDWN, dpd);
    391       1.10     itohy 
    392       1.10     itohy 	/* Power down unused analog parts. */
    393       1.10     itohy 	ym_write(sc, SA3_APWRDWN, apd);
    394       1.10     itohy }
    395        1.1  augustss 
    396        1.1  augustss 
    397        1.1  augustss int
    398       1.24      kent ym_getdev(void *addr, struct audio_device *retp)
    399        1.1  augustss {
    400       1.24      kent 	struct ym_softc *sc;
    401       1.24      kent 	struct ad1848_softc *ac;
    402       1.10     itohy 
    403       1.24      kent 	sc = addr;
    404       1.24      kent 	ac = &sc->sc_ad1848.sc_ad1848;
    405       1.22    itojun 	strlcpy(retp->name, ac->chip_name, sizeof(retp->name));
    406       1.22    itojun 	snprintf(retp->version, sizeof(retp->version), "%d", sc->sc_version);
    407       1.22    itojun 	strlcpy(retp->config, "ym", sizeof(retp->config));
    408       1.10     itohy 
    409        1.2  augustss 	return 0;
    410        1.1  augustss }
    411        1.1  augustss 
    412        1.1  augustss 
    413        1.1  augustss static ad1848_devmap_t mappings[] = {
    414       1.10     itohy 	{ YM_DAC_LVL, AD1848_KIND_LVL, AD1848_DAC_CHANNEL },
    415        1.2  augustss 	{ YM_MIDI_LVL, AD1848_KIND_LVL, AD1848_AUX2_CHANNEL },
    416        1.2  augustss 	{ YM_CD_LVL, AD1848_KIND_LVL, AD1848_AUX1_CHANNEL },
    417        1.2  augustss 	{ YM_LINE_LVL, AD1848_KIND_LVL, AD1848_LINE_CHANNEL },
    418        1.2  augustss 	{ YM_SPEAKER_LVL, AD1848_KIND_LVL, AD1848_MONO_CHANNEL },
    419        1.2  augustss 	{ YM_MONITOR_LVL, AD1848_KIND_LVL, AD1848_MONITOR_CHANNEL },
    420       1.10     itohy 	{ YM_DAC_MUTE, AD1848_KIND_MUTE, AD1848_DAC_CHANNEL },
    421        1.2  augustss 	{ YM_MIDI_MUTE, AD1848_KIND_MUTE, AD1848_AUX2_CHANNEL },
    422        1.2  augustss 	{ YM_CD_MUTE, AD1848_KIND_MUTE, AD1848_AUX1_CHANNEL },
    423        1.2  augustss 	{ YM_LINE_MUTE, AD1848_KIND_MUTE, AD1848_LINE_CHANNEL },
    424        1.2  augustss 	{ YM_SPEAKER_MUTE, AD1848_KIND_MUTE, AD1848_MONO_CHANNEL },
    425        1.2  augustss 	{ YM_MONITOR_MUTE, AD1848_KIND_MUTE, AD1848_MONITOR_CHANNEL },
    426        1.2  augustss 	{ YM_REC_LVL, AD1848_KIND_RECORDGAIN, -1 },
    427        1.2  augustss 	{ YM_RECORD_SOURCE, AD1848_KIND_RECORDSOURCE, -1}
    428        1.1  augustss };
    429        1.1  augustss 
    430       1.10     itohy #define NUMMAP	(sizeof(mappings) / sizeof(mappings[0]))
    431        1.1  augustss 
    432        1.1  augustss 
    433        1.1  augustss static void
    434       1.24      kent ym_mute(struct ym_softc *sc, int left_reg, int mute)
    435        1.1  augustss {
    436       1.24      kent 	uint8_t reg;
    437        1.1  augustss 
    438       1.10     itohy 	reg = ym_read(sc, left_reg);
    439       1.10     itohy 	if (mute)
    440       1.10     itohy 		ym_write(sc, left_reg, reg | 0x80);
    441       1.10     itohy 	else
    442       1.10     itohy 		ym_write(sc, left_reg, reg & ~0x80);
    443        1.1  augustss }
    444        1.1  augustss 
    445        1.1  augustss 
    446        1.1  augustss static void
    447       1.24      kent ym_set_master_gain(struct ym_softc *sc, struct ad1848_volume *vol)
    448        1.1  augustss {
    449       1.21     itohy 	u_int atten;
    450       1.10     itohy 
    451        1.2  augustss 	sc->master_gain = *vol;
    452       1.10     itohy 
    453       1.10     itohy 	atten = ((AUDIO_MAX_GAIN - vol->left) * (SA3_VOL_MV + 1)) /
    454       1.10     itohy 		(AUDIO_MAX_GAIN + 1);
    455       1.10     itohy 
    456       1.10     itohy 	ym_write(sc, SA3_VOL_L, (ym_read(sc, SA3_VOL_L) & ~SA3_VOL_MV) | atten);
    457       1.10     itohy 
    458       1.10     itohy 	atten = ((AUDIO_MAX_GAIN - vol->right) * (SA3_VOL_MV + 1)) /
    459       1.10     itohy 		(AUDIO_MAX_GAIN + 1);
    460       1.10     itohy 
    461       1.10     itohy 	ym_write(sc, SA3_VOL_R, (ym_read(sc, SA3_VOL_R) & ~SA3_VOL_MV) | atten);
    462        1.1  augustss }
    463        1.1  augustss 
    464       1.21     itohy /*
    465       1.21     itohy  * Read current setting of master volume from hardware
    466       1.21     itohy  * and update the software value if changed.
    467       1.21     itohy  * [SA3] This function clears hardware volume interrupt.
    468       1.21     itohy  */
    469       1.21     itohy static void
    470       1.24      kent ym_hvol_to_master_gain(struct ym_softc *sc)
    471       1.21     itohy {
    472       1.21     itohy 	u_int prevval, val;
    473       1.24      kent 	int changed;
    474       1.21     itohy 
    475       1.24      kent 	changed = 0;
    476       1.21     itohy 	val = SA3_VOL_MV & ~ym_read(sc, SA3_VOL_L);
    477       1.21     itohy 	prevval = (sc->master_gain.left * (SA3_VOL_MV + 1)) /
    478       1.21     itohy 	    (AUDIO_MAX_GAIN + 1);
    479       1.21     itohy 	if (val != prevval) {
    480       1.21     itohy 		sc->master_gain.left =
    481       1.21     itohy 		    val * ((AUDIO_MAX_GAIN + 1) / (SA3_VOL_MV + 1));
    482       1.21     itohy 		changed = 1;
    483       1.21     itohy 	}
    484       1.21     itohy 
    485       1.21     itohy 	val = SA3_VOL_MV & ~ym_read(sc, SA3_VOL_R);
    486       1.21     itohy 	prevval = (sc->master_gain.right * (SA3_VOL_MV + 1)) /
    487       1.21     itohy 	    (AUDIO_MAX_GAIN + 1);
    488       1.21     itohy 	if (val != prevval) {
    489       1.21     itohy 		sc->master_gain.right =
    490       1.21     itohy 		    val * ((AUDIO_MAX_GAIN + 1) / (SA3_VOL_MV + 1));
    491       1.21     itohy 		changed = 1;
    492       1.21     itohy 	}
    493       1.21     itohy 
    494       1.21     itohy #if 0	/* XXX NOT YET */
    495       1.21     itohy 	/* Notify the change to async processes. */
    496       1.21     itohy 	if (changed && sc->sc_audiodev)
    497       1.21     itohy 		mixer_signal(sc->sc_audiodev);
    498       1.44  christos #else
    499       1.44  christos 	__USE(changed);
    500       1.21     itohy #endif
    501       1.21     itohy }
    502       1.21     itohy 
    503        1.1  augustss static void
    504       1.24      kent ym_set_mic_gain(struct ym_softc *sc, int vol)
    505        1.1  augustss {
    506       1.10     itohy 	u_int atten;
    507       1.10     itohy 
    508       1.10     itohy 	sc->mic_gain = vol;
    509       1.10     itohy 
    510       1.10     itohy 	atten = ((AUDIO_MAX_GAIN - vol) * (SA3_MIC_MCV + 1)) /
    511       1.10     itohy 		(AUDIO_MAX_GAIN + 1);
    512       1.10     itohy 
    513       1.10     itohy 	ym_write(sc, SA3_MIC_VOL,
    514       1.10     itohy 		 (ym_read(sc, SA3_MIC_VOL) & ~SA3_MIC_MCV) | atten);
    515       1.10     itohy }
    516        1.1  augustss 
    517       1.10     itohy static void
    518       1.24      kent ym_set_3d(struct ym_softc *sc, mixer_ctrl_t *cp,
    519       1.24      kent     struct ad1848_volume *val, int reg)
    520       1.10     itohy {
    521       1.24      kent 	uint8_t l, r, e;
    522        1.1  augustss 
    523       1.42  jmcneill 	KASSERT(mutex_owned(&sc->sc_ad1848.sc_ad1848.sc_intr_lock));
    524       1.42  jmcneill 
    525       1.10     itohy 	ad1848_to_vol(cp, val);
    526        1.1  augustss 
    527       1.20     itohy 	l = val->left;
    528       1.20     itohy 	r = val->right;
    529       1.20     itohy 	if (reg != SA3_3D_WIDE) {
    530       1.20     itohy 		/* flat on center */
    531       1.20     itohy 		l = YM_EQ_EXPAND_VALUE(l);
    532       1.20     itohy 		r = YM_EQ_EXPAND_VALUE(r);
    533       1.20     itohy 	}
    534       1.20     itohy 
    535       1.20     itohy 	e = (l * (SA3_3D_BITS + 1) + (SA3_3D_BITS + 1) / 2) /
    536       1.24      kent 	    (AUDIO_MAX_GAIN + 1) << SA3_3D_LSHIFT |
    537       1.20     itohy 	    (r * (SA3_3D_BITS + 1) + (SA3_3D_BITS + 1) / 2) /
    538       1.24      kent 	    (AUDIO_MAX_GAIN + 1) << SA3_3D_RSHIFT;
    539       1.10     itohy 
    540       1.10     itohy #ifndef AUDIO_NO_POWER_CTL
    541       1.10     itohy 	/* turn wide stereo on if necessary */
    542       1.10     itohy 	if (e)
    543       1.10     itohy 		ym_power_ctl(sc, YM_POWER_3D, 1);
    544       1.10     itohy #endif
    545       1.10     itohy 
    546       1.10     itohy 	ym_write(sc, reg, e);
    547       1.10     itohy 
    548       1.10     itohy #ifndef AUDIO_NO_POWER_CTL
    549       1.10     itohy 	/* turn wide stereo off if necessary */
    550       1.10     itohy 	if (YM_EQ_OFF(&sc->sc_treble) && YM_EQ_OFF(&sc->sc_bass) &&
    551       1.20     itohy 	    YM_WIDE_OFF(&sc->sc_wide))
    552       1.10     itohy 		ym_power_ctl(sc, YM_POWER_3D, 0);
    553       1.10     itohy #endif
    554        1.1  augustss }
    555        1.1  augustss 
    556        1.1  augustss int
    557       1.24      kent ym_mixer_set_port(void *addr, mixer_ctrl_t *cp)
    558        1.1  augustss {
    559       1.24      kent 	struct ad1848_softc *ac;
    560       1.24      kent 	struct ym_softc *sc;
    561        1.2  augustss 	struct ad1848_volume vol;
    562       1.24      kent 	int error;
    563       1.24      kent 	uint8_t extsources;
    564        1.1  augustss 
    565       1.24      kent 	ac = addr;
    566       1.24      kent 	sc = ac->parent;
    567       1.24      kent 	error = 0;
    568       1.10     itohy 	DPRINTF(("%s: ym_mixer_set_port: dev 0x%x, type 0x%x, 0x%x (%d; %d, %d)\n",
    569       1.10     itohy 		DVNAME(sc), cp->dev, cp->type, cp->un.ord,
    570       1.10     itohy 		cp->un.value.num_channels, cp->un.value.level[0],
    571       1.10     itohy 		cp->un.value.level[1]));
    572       1.10     itohy 
    573       1.21     itohy 	/* SA2 doesn't have equalizer */
    574       1.21     itohy 	if (!YM_IS_SA3(sc) && YM_MIXER_SA3_ONLY(cp->dev))
    575       1.21     itohy 		return ENXIO;
    576       1.21     itohy 
    577       1.42  jmcneill 	mutex_spin_enter(&ac->sc_intr_lock);
    578       1.42  jmcneill 
    579       1.10     itohy #ifndef AUDIO_NO_POWER_CTL
    580       1.10     itohy 	/* Power-up chip */
    581       1.10     itohy 	ym_power_ctl(sc, YM_POWER_CODEC_CTL, 1);
    582       1.10     itohy #endif
    583        1.1  augustss 
    584        1.2  augustss 	switch (cp->dev) {
    585        1.2  augustss 	case YM_OUTPUT_LVL:
    586        1.2  augustss 		ad1848_to_vol(cp, &vol);
    587        1.2  augustss 		ym_set_master_gain(sc, &vol);
    588       1.10     itohy 		goto out;
    589        1.2  augustss 
    590        1.2  augustss 	case YM_OUTPUT_MUTE:
    591        1.2  augustss 		sc->master_mute = (cp->un.ord != 0);
    592       1.10     itohy 		ym_mute(sc, SA3_VOL_L, sc->master_mute);
    593       1.10     itohy 		ym_mute(sc, SA3_VOL_R, sc->master_mute);
    594       1.10     itohy 		goto out;
    595        1.2  augustss 
    596        1.2  augustss 	case YM_MIC_LVL:
    597        1.2  augustss 		if (cp->un.value.num_channels != 1)
    598        1.2  augustss 			error = EINVAL;
    599       1.10     itohy 		else
    600       1.10     itohy 			ym_set_mic_gain(sc,
    601       1.24      kent 			    cp->un.value.level[AUDIO_MIXER_LEVEL_MONO]);
    602       1.10     itohy 		goto out;
    603       1.10     itohy 
    604       1.10     itohy 	case YM_MASTER_EQMODE:
    605       1.10     itohy 		sc->sc_eqmode = cp->un.ord & SA3_SYS_CTL_YMODE;
    606       1.10     itohy 		ym_write(sc, SA3_SYS_CTL, (ym_read(sc, SA3_SYS_CTL) &
    607       1.24      kent 			     ~SA3_SYS_CTL_YMODE) | sc->sc_eqmode);
    608       1.10     itohy 		goto out;
    609       1.10     itohy 
    610       1.10     itohy 	case YM_MASTER_TREBLE:
    611       1.10     itohy 		ym_set_3d(sc, cp, &sc->sc_treble, SA3_3D_TREBLE);
    612       1.10     itohy 		goto out;
    613       1.10     itohy 
    614       1.10     itohy 	case YM_MASTER_BASS:
    615       1.10     itohy 		ym_set_3d(sc, cp, &sc->sc_bass, SA3_3D_BASS);
    616       1.10     itohy 		goto out;
    617       1.10     itohy 
    618       1.10     itohy 	case YM_MASTER_WIDE:
    619       1.10     itohy 		ym_set_3d(sc, cp, &sc->sc_wide, SA3_3D_WIDE);
    620       1.10     itohy 		goto out;
    621       1.10     itohy 
    622       1.10     itohy #ifndef AUDIO_NO_POWER_CTL
    623       1.10     itohy 	case YM_PWR_MODE:
    624       1.10     itohy 		if ((unsigned) cp->un.ord > YM_POWER_NOSAVE)
    625       1.10     itohy 			error = EINVAL;
    626       1.10     itohy 		else
    627       1.10     itohy 			sc->sc_pow_mode = cp->un.ord;
    628       1.10     itohy 		goto out;
    629       1.10     itohy 
    630       1.10     itohy 	case YM_PWR_TIMEOUT:
    631       1.10     itohy 		if (cp->un.value.num_channels != 1)
    632       1.10     itohy 			error = EINVAL;
    633       1.10     itohy 		else
    634       1.10     itohy 			sc->sc_pow_timeout =
    635       1.24      kent 			    cp->un.value.level[AUDIO_MIXER_LEVEL_MONO];
    636       1.10     itohy 		goto out;
    637       1.10     itohy 
    638       1.10     itohy 	/*
    639       1.13     itohy 	 * Needs power-up to hear external sources.
    640       1.13     itohy 	 */
    641       1.13     itohy 	case YM_CD_MUTE:
    642       1.13     itohy 	case YM_LINE_MUTE:
    643       1.13     itohy 	case YM_SPEAKER_MUTE:
    644       1.20     itohy 	case YM_MIC_MUTE:
    645       1.13     itohy 		extsources = YM_MIXER_TO_XS(cp->dev);
    646       1.13     itohy 		if (cp->un.ord) {
    647       1.13     itohy 			if ((sc->sc_external_sources &= ~extsources) == 0) {
    648       1.13     itohy 				/*
    649       1.13     itohy 				 * All the external sources are muted
    650       1.13     itohy 				 *  --- no need to keep the chip on.
    651       1.13     itohy 				 */
    652       1.13     itohy 				ym_power_ctl(sc, YM_POWER_EXT_SRC, 0);
    653       1.13     itohy 				DPRINTF(("%s: ym_mixer_set_port: off for ext\n",
    654       1.13     itohy 					DVNAME(sc)));
    655       1.13     itohy 			}
    656       1.13     itohy 		} else {
    657       1.13     itohy 			/* mute off - power-up the chip */
    658       1.13     itohy 			sc->sc_external_sources |= extsources;
    659       1.13     itohy 			ym_power_ctl(sc, YM_POWER_EXT_SRC, 1);
    660       1.13     itohy 			DPRINTF(("%s: ym_mixer_set_port: on for ext\n",
    661       1.13     itohy 				DVNAME(sc)));
    662       1.13     itohy 		}
    663       1.13     itohy 		break;	/* fall to ad1848_mixer_set_port() */
    664       1.13     itohy 
    665       1.13     itohy 	/*
    666       1.10     itohy 	 * Power on/off the playback part for monitoring.
    667       1.10     itohy 	 */
    668       1.10     itohy 	case YM_MONITOR_MUTE:
    669       1.10     itohy 		if ((ac->open_mode & (FREAD | FWRITE)) == FREAD)
    670       1.10     itohy 			ym_power_ctl(sc, YM_POWER_CODEC_P | YM_POWER_CODEC_DA,
    671       1.24      kent 			    cp->un.ord == 0);
    672       1.10     itohy 		break;	/* fall to ad1848_mixer_set_port() */
    673       1.10     itohy #endif
    674       1.10     itohy 	}
    675       1.10     itohy 
    676       1.10     itohy 	error = ad1848_mixer_set_port(ac, mappings, NUMMAP, cp);
    677       1.10     itohy 
    678       1.10     itohy 	if (error != ENXIO)
    679       1.10     itohy 		goto out;
    680       1.10     itohy 
    681       1.10     itohy 	error = 0;
    682        1.2  augustss 
    683       1.10     itohy 	switch (cp->dev) {
    684        1.2  augustss 	case YM_MIC_MUTE:
    685        1.2  augustss 		sc->mic_mute = (cp->un.ord != 0);
    686       1.10     itohy 		ym_mute(sc, SA3_MIC_VOL, sc->mic_mute);
    687        1.2  augustss 		break;
    688        1.2  augustss 
    689        1.2  augustss 	default:
    690       1.10     itohy 		error = ENXIO;
    691       1.10     itohy 		break;
    692        1.2  augustss 	}
    693       1.10     itohy 
    694       1.10     itohy out:
    695       1.10     itohy #ifndef AUDIO_NO_POWER_CTL
    696       1.10     itohy 	/* Power-down chip */
    697       1.10     itohy 	ym_power_ctl(sc, YM_POWER_CODEC_CTL, 0);
    698       1.10     itohy #endif
    699       1.42  jmcneill 	mutex_spin_exit(&ac->sc_intr_lock);
    700       1.10     itohy 
    701       1.24      kent 	return error;
    702        1.1  augustss }
    703        1.1  augustss 
    704        1.1  augustss int
    705       1.24      kent ym_mixer_get_port(void *addr, mixer_ctrl_t *cp)
    706        1.1  augustss {
    707       1.24      kent 	struct ad1848_softc *ac;
    708       1.24      kent 	struct ym_softc *sc;
    709       1.10     itohy 	int error;
    710        1.1  augustss 
    711       1.24      kent 	ac = addr;
    712       1.24      kent 	sc = ac->parent;
    713       1.21     itohy 	/* SA2 doesn't have equalizer */
    714       1.21     itohy 	if (!YM_IS_SA3(sc) && YM_MIXER_SA3_ONLY(cp->dev))
    715       1.21     itohy 		return ENXIO;
    716       1.21     itohy 
    717        1.2  augustss 	switch (cp->dev) {
    718        1.2  augustss 	case YM_OUTPUT_LVL:
    719       1.21     itohy 		if (!YM_IS_SA3(sc)) {
    720       1.21     itohy 			/*
    721       1.21     itohy 			 * SA2 doesn't have hardware volume interrupt.
    722       1.21     itohy 			 * Read current value and update every time.
    723       1.21     itohy 			 */
    724       1.42  jmcneill 			mutex_spin_enter(&ac->sc_intr_lock);
    725       1.21     itohy #ifndef AUDIO_NO_POWER_CTL
    726       1.21     itohy 			/* Power-up chip */
    727       1.21     itohy 			ym_power_ctl(sc, YM_POWER_CODEC_CTL, 1);
    728       1.21     itohy #endif
    729       1.21     itohy 			ym_hvol_to_master_gain(sc);
    730       1.21     itohy #ifndef AUDIO_NO_POWER_CTL
    731       1.21     itohy 			/* Power-down chip */
    732       1.21     itohy 			ym_power_ctl(sc, YM_POWER_CODEC_CTL, 0);
    733       1.21     itohy #endif
    734       1.42  jmcneill 			mutex_spin_exit(&ac->sc_intr_lock);
    735       1.21     itohy 		}
    736        1.2  augustss 		ad1848_from_vol(cp, &sc->master_gain);
    737       1.10     itohy 		return 0;
    738       1.10     itohy 
    739        1.2  augustss 	case YM_OUTPUT_MUTE:
    740        1.2  augustss 		cp->un.ord = sc->master_mute;
    741       1.10     itohy 		return 0;
    742       1.10     itohy 
    743        1.2  augustss 	case YM_MIC_LVL:
    744        1.2  augustss 		if (cp->un.value.num_channels != 1)
    745       1.10     itohy 			return EINVAL;
    746       1.10     itohy 		cp->un.value.level[AUDIO_MIXER_LEVEL_MONO] = sc->mic_gain;
    747       1.10     itohy 		return 0;
    748       1.10     itohy 
    749       1.10     itohy 	case YM_MASTER_EQMODE:
    750       1.10     itohy 		cp->un.ord = sc->sc_eqmode;
    751       1.10     itohy 		return 0;
    752       1.10     itohy 
    753       1.10     itohy 	case YM_MASTER_TREBLE:
    754       1.10     itohy 		ad1848_from_vol(cp, &sc->sc_treble);
    755       1.10     itohy 		return 0;
    756       1.10     itohy 
    757       1.10     itohy 	case YM_MASTER_BASS:
    758       1.10     itohy 		ad1848_from_vol(cp, &sc->sc_bass);
    759       1.10     itohy 		return 0;
    760       1.10     itohy 
    761       1.10     itohy 	case YM_MASTER_WIDE:
    762       1.10     itohy 		ad1848_from_vol(cp, &sc->sc_wide);
    763       1.10     itohy 		return 0;
    764       1.10     itohy 
    765       1.10     itohy #ifndef AUDIO_NO_POWER_CTL
    766       1.10     itohy 	case YM_PWR_MODE:
    767       1.10     itohy 		cp->un.ord = sc->sc_pow_mode;
    768       1.10     itohy 		return 0;
    769       1.10     itohy 
    770       1.10     itohy 	case YM_PWR_TIMEOUT:
    771       1.10     itohy 		if (cp->un.value.num_channels != 1)
    772       1.10     itohy 			return EINVAL;
    773       1.10     itohy 		cp->un.value.level[AUDIO_MIXER_LEVEL_MONO] = sc->sc_pow_timeout;
    774       1.10     itohy 		return 0;
    775       1.10     itohy #endif
    776       1.10     itohy 	}
    777       1.10     itohy 
    778       1.10     itohy 	error = ad1848_mixer_get_port(ac, mappings, NUMMAP, cp);
    779       1.10     itohy 
    780       1.10     itohy 	if (error != ENXIO)
    781       1.24      kent 		return error;
    782       1.10     itohy 
    783       1.10     itohy 	error = 0;
    784       1.10     itohy 
    785       1.10     itohy 	switch (cp->dev) {
    786        1.2  augustss 	case YM_MIC_MUTE:
    787        1.2  augustss 		cp->un.ord = sc->mic_mute;
    788        1.2  augustss 		break;
    789       1.10     itohy 
    790        1.2  augustss 	default:
    791        1.2  augustss 		error = ENXIO;
    792        1.2  augustss 		break;
    793        1.2  augustss 	}
    794       1.10     itohy 
    795       1.24      kent 	return error;
    796        1.1  augustss }
    797        1.1  augustss 
    798       1.25  christos static const char *mixer_classes[] = {
    799       1.10     itohy 	AudioCinputs, AudioCrecord, AudioCoutputs, AudioCmonitor,
    800       1.10     itohy #ifndef AUDIO_NO_POWER_CTL
    801       1.21     itohy 	AudioCpower,
    802       1.10     itohy #endif
    803       1.21     itohy 	AudioCequalization
    804       1.10     itohy };
    805        1.1  augustss 
    806        1.1  augustss int
    807       1.24      kent ym_query_devinfo(void *addr, mixer_devinfo_t *dip)
    808        1.1  augustss {
    809       1.25  christos 	static const char *mixer_port_names[] = {
    810       1.10     itohy 		AudioNdac, AudioNmidi, AudioNcd, AudioNline, AudioNspeaker,
    811       1.10     itohy 		AudioNmicrophone, AudioNmonitor
    812       1.10     itohy 	};
    813       1.24      kent 	struct ad1848_softc *ac;
    814       1.24      kent 	struct ym_softc *sc;
    815       1.21     itohy 
    816       1.24      kent 	ac = addr;
    817       1.24      kent 	sc = ac->parent;
    818       1.21     itohy 	/* SA2 doesn't have equalizer */
    819       1.21     itohy 	if (!YM_IS_SA3(sc) && YM_MIXER_SA3_ONLY(dip->index))
    820       1.21     itohy 		return ENXIO;
    821        1.1  augustss 
    822        1.2  augustss 	dip->next = dip->prev = AUDIO_MIXER_LAST;
    823       1.10     itohy 
    824        1.2  augustss 	switch(dip->index) {
    825       1.21     itohy 	case YM_INPUT_CLASS:
    826        1.2  augustss 	case YM_OUTPUT_CLASS:
    827        1.2  augustss 	case YM_MONITOR_CLASS:
    828        1.2  augustss 	case YM_RECORD_CLASS:
    829       1.10     itohy #ifndef AUDIO_NO_POWER_CTL
    830       1.10     itohy 	case YM_PWR_CLASS:
    831       1.10     itohy #endif
    832       1.21     itohy 	case YM_EQ_CLASS:
    833        1.2  augustss 		dip->type = AUDIO_MIXER_CLASS;
    834        1.2  augustss 		dip->mixer_class = dip->index;
    835       1.10     itohy 		strcpy(dip->label.name,
    836        1.2  augustss 		       mixer_classes[dip->index - YM_INPUT_CLASS]);
    837        1.2  augustss 		break;
    838       1.10     itohy 
    839       1.10     itohy 	case YM_DAC_LVL:
    840        1.2  augustss 	case YM_MIDI_LVL:
    841        1.2  augustss 	case YM_CD_LVL:
    842       1.10     itohy 	case YM_LINE_LVL:
    843        1.2  augustss 	case YM_SPEAKER_LVL:
    844        1.2  augustss 	case YM_MIC_LVL:
    845        1.2  augustss 	case YM_MONITOR_LVL:
    846        1.2  augustss 		dip->type = AUDIO_MIXER_VALUE;
    847        1.2  augustss 		if (dip->index == YM_MONITOR_LVL)
    848        1.2  augustss 			dip->mixer_class = YM_MONITOR_CLASS;
    849        1.2  augustss 		else
    850        1.2  augustss 			dip->mixer_class = YM_INPUT_CLASS;
    851       1.10     itohy 
    852        1.2  augustss 		dip->next = dip->index + 7;
    853       1.10     itohy 
    854        1.2  augustss 		strcpy(dip->label.name,
    855       1.10     itohy 		       mixer_port_names[dip->index - YM_DAC_LVL]);
    856       1.10     itohy 
    857        1.2  augustss 		if (dip->index == YM_SPEAKER_LVL ||
    858        1.2  augustss 		    dip->index == YM_MIC_LVL)
    859        1.2  augustss 			dip->un.v.num_channels = 1;
    860        1.2  augustss 		else
    861        1.2  augustss 			dip->un.v.num_channels = 2;
    862       1.10     itohy 
    863       1.20     itohy 		if (dip->index == YM_SPEAKER_LVL)
    864       1.20     itohy 			dip->un.v.delta = 1 << (8 - 4 /* valid bits */);
    865       1.20     itohy 		else if (dip->index == YM_DAC_LVL ||
    866       1.20     itohy 		    dip->index == YM_MONITOR_LVL)
    867       1.20     itohy 			dip->un.v.delta = 1 << (8 - 6 /* valid bits */);
    868       1.20     itohy 		else
    869       1.20     itohy 			dip->un.v.delta = 1 << (8 - 5 /* valid bits */);
    870       1.20     itohy 
    871        1.2  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
    872        1.2  augustss 		break;
    873       1.10     itohy 
    874       1.10     itohy 	case YM_DAC_MUTE:
    875        1.2  augustss 	case YM_MIDI_MUTE:
    876        1.2  augustss 	case YM_CD_MUTE:
    877        1.2  augustss 	case YM_LINE_MUTE:
    878        1.2  augustss 	case YM_SPEAKER_MUTE:
    879        1.2  augustss 	case YM_MIC_MUTE:
    880        1.2  augustss 	case YM_MONITOR_MUTE:
    881        1.2  augustss 		if (dip->index == YM_MONITOR_MUTE)
    882        1.2  augustss 			dip->mixer_class = YM_MONITOR_CLASS;
    883        1.2  augustss 		else
    884        1.2  augustss 			dip->mixer_class = YM_INPUT_CLASS;
    885        1.2  augustss 		dip->type = AUDIO_MIXER_ENUM;
    886        1.2  augustss 		dip->prev = dip->index - 7;
    887        1.2  augustss 	mute:
    888        1.2  augustss 		strcpy(dip->label.name, AudioNmute);
    889        1.2  augustss 		dip->un.e.num_mem = 2;
    890        1.2  augustss 		strcpy(dip->un.e.member[0].label.name, AudioNoff);
    891        1.2  augustss 		dip->un.e.member[0].ord = 0;
    892        1.2  augustss 		strcpy(dip->un.e.member[1].label.name, AudioNon);
    893        1.2  augustss 		dip->un.e.member[1].ord = 1;
    894        1.2  augustss 		break;
    895       1.10     itohy 
    896       1.10     itohy 
    897        1.2  augustss 	case YM_OUTPUT_LVL:
    898        1.2  augustss 		dip->type = AUDIO_MIXER_VALUE;
    899        1.2  augustss 		dip->mixer_class = YM_OUTPUT_CLASS;
    900        1.2  augustss 		dip->next = YM_OUTPUT_MUTE;
    901        1.2  augustss 		strcpy(dip->label.name, AudioNmaster);
    902        1.2  augustss 		dip->un.v.num_channels = 2;
    903       1.20     itohy 		dip->un.v.delta = (AUDIO_MAX_GAIN + 1) / (SA3_VOL_MV + 1);
    904        1.2  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
    905        1.2  augustss 		break;
    906       1.10     itohy 
    907        1.2  augustss 	case YM_OUTPUT_MUTE:
    908        1.2  augustss 		dip->mixer_class = YM_OUTPUT_CLASS;
    909        1.2  augustss 		dip->type = AUDIO_MIXER_ENUM;
    910        1.2  augustss 		dip->prev = YM_OUTPUT_LVL;
    911        1.2  augustss 		goto mute;
    912       1.10     itohy 
    913       1.10     itohy 
    914        1.2  augustss 	case YM_REC_LVL:	/* record level */
    915        1.2  augustss 		dip->type = AUDIO_MIXER_VALUE;
    916        1.2  augustss 		dip->mixer_class = YM_RECORD_CLASS;
    917        1.2  augustss 		dip->next = YM_RECORD_SOURCE;
    918        1.2  augustss 		strcpy(dip->label.name, AudioNrecord);
    919        1.2  augustss 		dip->un.v.num_channels = 2;
    920       1.20     itohy 		dip->un.v.delta = 1 << (8 - 4 /* valid bits */);
    921        1.2  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
    922        1.2  augustss 		break;
    923       1.10     itohy 
    924        1.2  augustss 	case YM_RECORD_SOURCE:
    925        1.2  augustss 		dip->mixer_class = YM_RECORD_CLASS;
    926        1.2  augustss 		dip->type = AUDIO_MIXER_ENUM;
    927        1.2  augustss 		dip->prev = YM_REC_LVL;
    928        1.2  augustss 		strcpy(dip->label.name, AudioNsource);
    929        1.2  augustss 		dip->un.e.num_mem = 4;
    930        1.2  augustss 		strcpy(dip->un.e.member[0].label.name, AudioNmicrophone);
    931        1.2  augustss 		dip->un.e.member[0].ord = MIC_IN_PORT;
    932        1.2  augustss 		strcpy(dip->un.e.member[1].label.name, AudioNline);
    933        1.2  augustss 		dip->un.e.member[1].ord = LINE_IN_PORT;
    934        1.2  augustss 		strcpy(dip->un.e.member[2].label.name, AudioNdac);
    935        1.2  augustss 		dip->un.e.member[2].ord = DAC_IN_PORT;
    936        1.2  augustss 		strcpy(dip->un.e.member[3].label.name, AudioNcd);
    937        1.2  augustss 		dip->un.e.member[3].ord = AUX1_IN_PORT;
    938        1.2  augustss 		break;
    939       1.10     itohy 
    940       1.10     itohy 
    941       1.10     itohy 	case YM_MASTER_EQMODE:
    942       1.10     itohy 		dip->type = AUDIO_MIXER_ENUM;
    943       1.10     itohy 		dip->mixer_class = YM_EQ_CLASS;
    944       1.10     itohy 		strcpy(dip->label.name, AudioNmode);
    945       1.10     itohy 		strcpy(dip->un.v.units.name, AudioNmode);
    946       1.10     itohy 		dip->un.e.num_mem = 4;
    947       1.10     itohy 		strcpy(dip->un.e.member[0].label.name, AudioNdesktop);
    948       1.10     itohy 		dip->un.e.member[0].ord = SA3_SYS_CTL_YMODE0;
    949       1.10     itohy 		strcpy(dip->un.e.member[1].label.name, AudioNlaptop);
    950       1.10     itohy 		dip->un.e.member[1].ord = SA3_SYS_CTL_YMODE1;
    951       1.10     itohy 		strcpy(dip->un.e.member[2].label.name, AudioNsubnote);
    952       1.10     itohy 		dip->un.e.member[2].ord = SA3_SYS_CTL_YMODE2;
    953       1.10     itohy 		strcpy(dip->un.e.member[3].label.name, AudioNhifi);
    954       1.10     itohy 		dip->un.e.member[3].ord = SA3_SYS_CTL_YMODE3;
    955       1.10     itohy 		break;
    956       1.10     itohy 
    957       1.10     itohy 	case YM_MASTER_TREBLE:
    958       1.10     itohy 		dip->type = AUDIO_MIXER_VALUE;
    959       1.10     itohy 		dip->mixer_class = YM_EQ_CLASS;
    960       1.10     itohy 		strcpy(dip->label.name, AudioNtreble);
    961       1.10     itohy 		dip->un.v.num_channels = 2;
    962       1.20     itohy 		dip->un.v.delta = (AUDIO_MAX_GAIN + 1) / (SA3_3D_BITS + 1)
    963       1.20     itohy 		    >> YM_EQ_REDUCE_BIT;
    964       1.10     itohy 		strcpy(dip->un.v.units.name, AudioNtreble);
    965       1.10     itohy 		break;
    966       1.10     itohy 
    967       1.10     itohy 	case YM_MASTER_BASS:
    968       1.10     itohy 		dip->type = AUDIO_MIXER_VALUE;
    969       1.10     itohy 		dip->mixer_class = YM_EQ_CLASS;
    970       1.10     itohy 		strcpy(dip->label.name, AudioNbass);
    971       1.10     itohy 		dip->un.v.num_channels = 2;
    972       1.20     itohy 		dip->un.v.delta = (AUDIO_MAX_GAIN + 1) / (SA3_3D_BITS + 1)
    973       1.20     itohy 		    >> YM_EQ_REDUCE_BIT;
    974       1.10     itohy 		strcpy(dip->un.v.units.name, AudioNbass);
    975       1.10     itohy 		break;
    976       1.10     itohy 
    977       1.10     itohy 	case YM_MASTER_WIDE:
    978       1.10     itohy 		dip->type = AUDIO_MIXER_VALUE;
    979       1.10     itohy 		dip->mixer_class = YM_EQ_CLASS;
    980       1.10     itohy 		strcpy(dip->label.name, AudioNsurround);
    981       1.10     itohy 		dip->un.v.num_channels = 2;
    982       1.20     itohy 		dip->un.v.delta = (AUDIO_MAX_GAIN + 1) / (SA3_3D_BITS + 1);
    983       1.10     itohy 		strcpy(dip->un.v.units.name, AudioNsurround);
    984       1.10     itohy 		break;
    985       1.10     itohy 
    986       1.10     itohy 
    987       1.10     itohy #ifndef AUDIO_NO_POWER_CTL
    988       1.10     itohy 	case YM_PWR_MODE:
    989       1.10     itohy 		dip->type = AUDIO_MIXER_ENUM;
    990       1.10     itohy 		dip->mixer_class = YM_PWR_CLASS;
    991       1.10     itohy 		dip->next = YM_PWR_TIMEOUT;
    992       1.13     itohy 		strcpy(dip->label.name, AudioNsave);
    993       1.10     itohy 		dip->un.e.num_mem = 3;
    994       1.10     itohy 		strcpy(dip->un.e.member[0].label.name, AudioNpowerdown);
    995       1.10     itohy 		dip->un.e.member[0].ord = YM_POWER_POWERDOWN;
    996       1.10     itohy 		strcpy(dip->un.e.member[1].label.name, AudioNpowersave);
    997       1.10     itohy 		dip->un.e.member[1].ord = YM_POWER_POWERSAVE;
    998       1.10     itohy 		strcpy(dip->un.e.member[2].label.name, AudioNnosave);
    999       1.10     itohy 		dip->un.e.member[2].ord = YM_POWER_NOSAVE;
   1000       1.10     itohy 		break;
   1001       1.10     itohy 
   1002       1.10     itohy 	case YM_PWR_TIMEOUT:
   1003       1.10     itohy 		dip->type = AUDIO_MIXER_VALUE;
   1004       1.10     itohy 		dip->mixer_class = YM_PWR_CLASS;
   1005       1.10     itohy 		dip->prev = YM_PWR_MODE;
   1006       1.10     itohy 		strcpy(dip->label.name, AudioNtimeout);
   1007       1.10     itohy 		dip->un.v.num_channels = 1;
   1008       1.10     itohy 		strcpy(dip->un.v.units.name, AudioNtimeout);
   1009       1.10     itohy 		break;
   1010       1.10     itohy #endif /* not AUDIO_NO_POWER_CTL */
   1011       1.10     itohy 
   1012        1.2  augustss 	default:
   1013        1.2  augustss 		return ENXIO;
   1014        1.2  augustss 		/*NOTREACHED*/
   1015        1.2  augustss 	}
   1016       1.10     itohy 
   1017       1.10     itohy 	return 0;
   1018       1.10     itohy }
   1019       1.10     itohy 
   1020       1.10     itohy int
   1021       1.24      kent ym_intr(void *arg)
   1022       1.10     itohy {
   1023       1.33   xtraeme 	struct ym_softc *sc = arg;
   1024       1.33   xtraeme #if NMPU_YM > 0
   1025       1.33   xtraeme 	struct mpu_softc *sc_mpu = device_private(sc->sc_mpudev);
   1026       1.33   xtraeme #endif
   1027       1.10     itohy 	u_int8_t ist;
   1028       1.10     itohy 	int processed;
   1029       1.10     itohy 
   1030       1.42  jmcneill 	mutex_spin_enter(&sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1031       1.42  jmcneill 
   1032       1.10     itohy 	/* OPL3 timer is currently unused. */
   1033       1.10     itohy 	if (((ist = ym_read(sc, SA3_IRQA_STAT)) &
   1034       1.10     itohy 	     ~(SA3_IRQ_STAT_SB|SA3_IRQ_STAT_OPL3)) == 0) {
   1035       1.10     itohy 		DPRINTF(("%s: ym_intr: spurious interrupt\n", DVNAME(sc)));
   1036       1.42  jmcneill 		mutex_spin_exit(&sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1037       1.10     itohy 		return 0;
   1038       1.10     itohy 	}
   1039       1.10     itohy 
   1040       1.10     itohy 	/* Process pending interrupts. */
   1041       1.10     itohy 	do {
   1042       1.10     itohy 		processed = 0;
   1043       1.10     itohy 		/*
   1044       1.10     itohy 		 * CODEC interrupts.
   1045       1.10     itohy 		 */
   1046       1.10     itohy 		if (ist & (SA3_IRQ_STAT_TI|SA3_IRQ_STAT_CI|SA3_IRQ_STAT_PI)) {
   1047       1.10     itohy 			ad1848_isa_intr(&sc->sc_ad1848);
   1048       1.10     itohy 			processed = 1;
   1049       1.10     itohy 		}
   1050       1.10     itohy #if NMPU_YM > 0
   1051       1.10     itohy 		/*
   1052       1.10     itohy 		 * MPU401 interrupt.
   1053       1.10     itohy 		 */
   1054       1.10     itohy 		if (ist & SA3_IRQ_STAT_MPU) {
   1055       1.33   xtraeme 			mpu_intr(sc_mpu);
   1056       1.10     itohy 			processed = 1;
   1057       1.10     itohy 		}
   1058       1.10     itohy #endif
   1059       1.10     itohy 		/*
   1060       1.21     itohy 		 * Hardware volume interrupt (SA3 only).
   1061       1.10     itohy 		 * Recalculate master volume from the hardware setting.
   1062       1.10     itohy 		 */
   1063       1.21     itohy 		if ((ist & SA3_IRQ_STAT_MV) && YM_IS_SA3(sc)) {
   1064       1.21     itohy 			ym_hvol_to_master_gain(sc);
   1065       1.10     itohy 			processed = 1;
   1066       1.10     itohy 		}
   1067       1.10     itohy 	} while (processed && (ist = ym_read(sc, SA3_IRQA_STAT)));
   1068       1.10     itohy 
   1069       1.42  jmcneill 	mutex_spin_exit(&sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1070       1.10     itohy 	return 1;
   1071       1.10     itohy }
   1072       1.10     itohy 
   1073       1.10     itohy 
   1074       1.10     itohy #ifndef AUDIO_NO_POWER_CTL
   1075       1.10     itohy static void
   1076       1.24      kent ym_save_codec_regs(struct ym_softc *sc)
   1077       1.10     itohy {
   1078       1.24      kent 	struct ad1848_softc *ac;
   1079       1.10     itohy 	int i;
   1080       1.10     itohy 
   1081       1.10     itohy 	DPRINTF(("%s: ym_save_codec_regs\n", DVNAME(sc)));
   1082       1.24      kent 	ac = &sc->sc_ad1848.sc_ad1848;
   1083       1.10     itohy 	for (i = 0; i <= 0x1f; i++)
   1084       1.10     itohy 		sc->sc_codec_scan[i] = ad_read(ac, i);
   1085       1.10     itohy }
   1086       1.10     itohy 
   1087       1.10     itohy static void
   1088       1.24      kent ym_restore_codec_regs(struct ym_softc *sc)
   1089       1.10     itohy {
   1090       1.24      kent 	struct ad1848_softc *ac;
   1091       1.10     itohy 	int i, t;
   1092       1.10     itohy 
   1093       1.10     itohy 	DPRINTF(("%s: ym_restore_codec_regs\n", DVNAME(sc)));
   1094       1.24      kent 	ac = &sc->sc_ad1848.sc_ad1848;
   1095       1.10     itohy 	for (i = 0; i <= 0x1f; i++) {
   1096       1.10     itohy 		/*
   1097       1.10     itohy 		 * Wait til the chip becomes ready.
   1098       1.10     itohy 		 * This is required after suspend/resume.
   1099       1.10     itohy 		 */
   1100       1.10     itohy 		for (t = 0;
   1101       1.10     itohy 		    t < 100000 && ADREAD(ac, AD1848_IADDR) & SP_IN_INIT; t++)
   1102       1.10     itohy 			;
   1103       1.10     itohy #ifdef AUDIO_DEBUG
   1104       1.10     itohy 		if (t)
   1105       1.10     itohy 			DPRINTF(("%s: ym_restore_codec_regs: reg %d, t %d\n",
   1106       1.10     itohy 				 DVNAME(sc), i, t));
   1107       1.10     itohy #endif
   1108       1.10     itohy 		ad_write(ac, i, sc->sc_codec_scan[i]);
   1109       1.10     itohy 	}
   1110       1.10     itohy }
   1111       1.10     itohy 
   1112       1.10     itohy /*
   1113       1.10     itohy  * Save and restore the state on suspending / resumning.
   1114       1.10     itohy  *
   1115       1.10     itohy  * XXX This is not complete.
   1116       1.10     itohy  * Currently only the parameters, such as output gain, are restored.
   1117       1.10     itohy  * DMA state should also be restored.  FIXME.
   1118       1.10     itohy  */
   1119       1.36  christos static bool
   1120       1.39    dyoung ym_suspend(device_t self, const pmf_qual_t *qual)
   1121       1.10     itohy {
   1122       1.36  christos 	struct ym_softc *sc = device_private(self);
   1123       1.10     itohy 
   1124       1.36  christos 	DPRINTF(("%s: ym_power_hook: suspend\n", DVNAME(sc)));
   1125       1.10     itohy 
   1126       1.42  jmcneill 	mutex_spin_enter(&sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1127       1.10     itohy 
   1128       1.36  christos 	/*
   1129       1.36  christos 	 * suspending...
   1130       1.36  christos 	 */
   1131       1.42  jmcneill 	callout_halt(&sc->sc_powerdown_ch,
   1132       1.42  jmcneill 	    &sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1133       1.36  christos 	if (sc->sc_turning_off)
   1134       1.36  christos 		ym_powerdown_blocks(sc);
   1135       1.10     itohy 
   1136       1.36  christos 	/*
   1137       1.36  christos 	 * Save CODEC registers.
   1138       1.36  christos 	 * Note that the registers read incorrect
   1139       1.36  christos 	 * if the CODEC part is in power-down mode.
   1140       1.36  christos 	 */
   1141       1.36  christos 	if (sc->sc_on_blocks & YM_POWER_CODEC_DIGITAL)
   1142       1.36  christos 		ym_save_codec_regs(sc);
   1143       1.10     itohy 
   1144       1.36  christos 	/*
   1145       1.36  christos 	 * Save OPL3-SA3 control registers and power-down the chip.
   1146       1.36  christos 	 * Note that the registers read incorrect
   1147       1.36  christos 	 * if the chip is in global power-down mode.
   1148       1.36  christos 	 */
   1149       1.36  christos 	sc->sc_sa3_scan[SA3_PWR_MNG] = ym_read(sc, SA3_PWR_MNG);
   1150       1.36  christos 	if (sc->sc_on_blocks)
   1151       1.36  christos 		ym_chip_powerdown(sc);
   1152       1.42  jmcneill 	mutex_spin_exit(&sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1153       1.36  christos 	return true;
   1154       1.37  christos }
   1155       1.17  takemura 
   1156       1.36  christos static bool
   1157       1.39    dyoung ym_resume(device_t self, const pmf_qual_t *qual)
   1158       1.36  christos {
   1159       1.36  christos 	struct ym_softc *sc = device_private(self);
   1160       1.36  christos 	int i, xmax;
   1161       1.10     itohy 
   1162       1.36  christos 	DPRINTF(("%s: ym_power_hook: resume\n", DVNAME(sc)));
   1163       1.10     itohy 
   1164       1.42  jmcneill 	mutex_spin_enter(&sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1165       1.36  christos 	/*
   1166       1.36  christos 	 * resuming...
   1167       1.36  christos 	 */
   1168       1.36  christos 	ym_chip_powerup(sc, 1);
   1169       1.36  christos 	ym_init(sc);		/* power-on CODEC */
   1170       1.10     itohy 
   1171       1.36  christos 	/* Restore control registers. */
   1172       1.36  christos 	xmax = YM_IS_SA3(sc)? YM_SAVE_REG_MAX_SA3 : YM_SAVE_REG_MAX_SA2;
   1173       1.36  christos 	for (i = SA3_PWR_MNG + 1; i <= xmax; i++) {
   1174       1.36  christos 		if (i == SA3_SB_SCAN || i == SA3_SB_SCAN_DATA ||
   1175       1.36  christos 		    i == SA3_DPWRDWN)
   1176       1.36  christos 			continue;
   1177       1.36  christos 		ym_write(sc, i, sc->sc_sa3_scan[i]);
   1178       1.10     itohy 	}
   1179       1.36  christos 
   1180       1.36  christos 	/* Restore CODEC registers (including mixer). */
   1181       1.36  christos 	ym_restore_codec_regs(sc);
   1182       1.36  christos 
   1183       1.36  christos 	/* Restore global/digital power-down state. */
   1184       1.36  christos 	ym_write(sc, SA3_PWR_MNG, sc->sc_sa3_scan[SA3_PWR_MNG]);
   1185       1.36  christos 	if (YM_IS_SA3(sc))
   1186       1.36  christos 		ym_write(sc, SA3_DPWRDWN, sc->sc_sa3_scan[SA3_DPWRDWN]);
   1187       1.42  jmcneill 	mutex_spin_exit(&sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1188       1.36  christos 	return true;
   1189       1.10     itohy }
   1190       1.10     itohy 
   1191       1.10     itohy int
   1192       1.24      kent ym_codec_power_ctl(void *arg, int flags)
   1193       1.10     itohy {
   1194       1.24      kent 	struct ym_softc *sc;
   1195       1.24      kent 	struct ad1848_softc *ac;
   1196       1.10     itohy 	int parts;
   1197       1.10     itohy 
   1198       1.24      kent 	sc = arg;
   1199       1.24      kent 	ac = &sc->sc_ad1848.sc_ad1848;
   1200       1.10     itohy 	DPRINTF(("%s: ym_codec_power_ctl: flags = 0x%x\n", DVNAME(sc), flags));
   1201       1.42  jmcneill 	KASSERT(mutex_owned(&ac->sc_intr_lock));
   1202       1.10     itohy 
   1203       1.10     itohy 	if (flags != 0) {
   1204       1.10     itohy 		parts = 0;
   1205       1.10     itohy 		if (flags & FREAD) {
   1206       1.10     itohy 			parts |= YM_POWER_CODEC_R | YM_POWER_CODEC_AD;
   1207       1.10     itohy 			if (ac->mute[AD1848_MONITOR_CHANNEL] == 0)
   1208       1.10     itohy 				parts |= YM_POWER_CODEC_P | YM_POWER_CODEC_DA;
   1209       1.10     itohy 		}
   1210       1.10     itohy 		if (flags & FWRITE)
   1211       1.10     itohy 			parts |= YM_POWER_CODEC_P | YM_POWER_CODEC_DA;
   1212       1.10     itohy 	} else
   1213       1.10     itohy 		parts = YM_POWER_CODEC_P | YM_POWER_CODEC_R |
   1214       1.10     itohy 			YM_POWER_CODEC_DA | YM_POWER_CODEC_AD;
   1215       1.10     itohy 
   1216       1.10     itohy 	ym_power_ctl(sc, parts, flags);
   1217       1.10     itohy 
   1218        1.2  augustss 	return 0;
   1219        1.1  augustss }
   1220       1.10     itohy 
   1221       1.10     itohy /*
   1222       1.10     itohy  * Enter Power Save mode or Global Power Down mode.
   1223       1.10     itohy  * Total dissipation becomes 5mA and 10uA (typ.) respective.
   1224       1.10     itohy  */
   1225       1.10     itohy static void
   1226       1.24      kent ym_chip_powerdown(struct ym_softc *sc)
   1227       1.10     itohy {
   1228       1.25  christos 	int i, xmax;
   1229       1.10     itohy 
   1230       1.10     itohy 	DPRINTF(("%s: ym_chip_powerdown\n", DVNAME(sc)));
   1231       1.42  jmcneill 	KASSERT(mutex_owned(&sc->sc_ad1848.sc_ad1848.sc_intr_lock));
   1232       1.10     itohy 
   1233       1.25  christos 	xmax = YM_IS_SA3(sc) ? YM_SAVE_REG_MAX_SA3 : YM_SAVE_REG_MAX_SA2;
   1234       1.21     itohy 
   1235       1.10     itohy 	/* Save control registers. */
   1236       1.25  christos 	for (i = SA3_PWR_MNG + 1; i <= xmax; i++) {
   1237       1.10     itohy 		if (i == SA3_SB_SCAN || i == SA3_SB_SCAN_DATA)
   1238       1.10     itohy 			continue;
   1239       1.10     itohy 		sc->sc_sa3_scan[i] = ym_read(sc, i);
   1240       1.10     itohy 	}
   1241       1.10     itohy 	ym_write(sc, SA3_PWR_MNG,
   1242       1.10     itohy 		 (sc->sc_pow_mode == YM_POWER_POWERDOWN ?
   1243       1.10     itohy 			SA3_PWR_MNG_PDN : SA3_PWR_MNG_PSV) | SA3_PWR_MNG_PDX);
   1244       1.10     itohy }
   1245       1.10     itohy 
   1246       1.10     itohy /*
   1247       1.10     itohy  * Power up from Power Save / Global Power Down Mode.
   1248       1.10     itohy  */
   1249       1.10     itohy static void
   1250       1.24      kent ym_chip_powerup(struct ym_softc *sc, int nosleep)
   1251       1.10     itohy {
   1252       1.24      kent 	uint8_t pw;
   1253       1.10     itohy 
   1254       1.10     itohy 	DPRINTF(("%s: ym_chip_powerup\n", DVNAME(sc)));
   1255       1.42  jmcneill 	KASSERT(mutex_owned(&sc->sc_ad1848.sc_ad1848.sc_intr_lock));
   1256       1.10     itohy 
   1257       1.10     itohy 	pw = ym_read(sc, SA3_PWR_MNG);
   1258       1.10     itohy 
   1259       1.10     itohy 	if ((pw & (SA3_PWR_MNG_PSV | SA3_PWR_MNG_PDN | SA3_PWR_MNG_PDX)) == 0)
   1260       1.10     itohy 		return;		/* already on */
   1261       1.10     itohy 
   1262       1.10     itohy 	pw &= ~SA3_PWR_MNG_PDX;
   1263       1.10     itohy 	ym_write(sc, SA3_PWR_MNG, pw);
   1264       1.10     itohy 
   1265       1.10     itohy 	/* wait 100 ms */
   1266       1.10     itohy 	if (nosleep)
   1267       1.10     itohy 		delay(100000);
   1268       1.10     itohy 	else
   1269       1.42  jmcneill 		kpause("ym_pu1", false, hz / 10,
   1270       1.42  jmcneill 		    &sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1271       1.10     itohy 
   1272       1.10     itohy 	pw &= ~(SA3_PWR_MNG_PSV | SA3_PWR_MNG_PDN);
   1273       1.10     itohy 	ym_write(sc, SA3_PWR_MNG, pw);
   1274       1.10     itohy 
   1275       1.10     itohy 	/* wait 70 ms */
   1276       1.10     itohy 	if (nosleep)
   1277       1.10     itohy 		delay(70000);
   1278       1.10     itohy 	else
   1279       1.42  jmcneill 		kpause("ym_pu1", false, hz / 10,
   1280       1.42  jmcneill 		    &sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1281       1.10     itohy 
   1282       1.10     itohy 	/* The chip is muted automatically --- unmute it now. */
   1283       1.10     itohy 	ym_mute(sc, SA3_VOL_L, sc->master_mute);
   1284       1.10     itohy 	ym_mute(sc, SA3_VOL_R, sc->master_mute);
   1285       1.10     itohy }
   1286       1.10     itohy 
   1287       1.14   thorpej /* callout handler for power-down */
   1288       1.42  jmcneill static void
   1289       1.42  jmcneill ym_powerdown_callout(void *arg)
   1290       1.10     itohy {
   1291       1.24      kent 	struct ym_softc *sc;
   1292       1.42  jmcneill 
   1293       1.42  jmcneill 	sc = arg;
   1294       1.42  jmcneill 
   1295       1.42  jmcneill 	mutex_spin_enter(&sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1296       1.42  jmcneill 	if ((sc->sc_in_power_ctl & YM_POWER_CTL_INUSE) == 0) {
   1297       1.42  jmcneill 		ym_powerdown_blocks(sc);
   1298       1.42  jmcneill 	}
   1299       1.42  jmcneill 	mutex_spin_exit(&sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1300       1.42  jmcneill }
   1301       1.42  jmcneill 
   1302       1.42  jmcneill static void
   1303       1.42  jmcneill ym_powerdown_blocks(struct ym_softc *sc)
   1304       1.42  jmcneill {
   1305       1.24      kent 	uint16_t parts;
   1306       1.24      kent 	uint16_t on_blocks;
   1307       1.24      kent 	uint8_t sv;
   1308       1.10     itohy 
   1309       1.24      kent 	on_blocks = sc->sc_on_blocks;
   1310       1.10     itohy 	DPRINTF(("%s: ym_powerdown_blocks: turning_off 0x%x\n",
   1311       1.10     itohy 		DVNAME(sc), sc->sc_turning_off));
   1312       1.42  jmcneill 	KASSERT(mutex_owned(&sc->sc_ad1848.sc_ad1848.sc_intr_lock));
   1313       1.10     itohy 
   1314       1.10     itohy 	on_blocks = sc->sc_on_blocks;
   1315       1.10     itohy 
   1316       1.10     itohy 	/* Be sure not to change the state of the chip.  Save it first. */
   1317       1.10     itohy 	sv =  bus_space_read_1(sc->sc_iot, sc->sc_controlioh, SA3_CTL_INDEX);
   1318       1.10     itohy 
   1319       1.10     itohy 	parts = sc->sc_turning_off;
   1320       1.10     itohy 
   1321       1.10     itohy 	if (on_blocks & ~parts & YM_POWER_CODEC_CTL)
   1322       1.10     itohy 		parts &= ~(YM_POWER_CODEC_P | YM_POWER_CODEC_R);
   1323       1.10     itohy 	if (parts & YM_POWER_CODEC_CTL) {
   1324       1.10     itohy 		if ((on_blocks & YM_POWER_CODEC_P) == 0)
   1325       1.10     itohy 			parts |= YM_POWER_CODEC_P;
   1326       1.10     itohy 		if ((on_blocks & YM_POWER_CODEC_R) == 0)
   1327       1.10     itohy 			parts |= YM_POWER_CODEC_R;
   1328       1.10     itohy 	}
   1329       1.13     itohy 	parts &= ~YM_POWER_CODEC_PSEUDO;
   1330       1.10     itohy 
   1331       1.10     itohy 	/* If CODEC is being off, save the state. */
   1332       1.10     itohy 	if ((sc->sc_on_blocks & YM_POWER_CODEC_DIGITAL) &&
   1333       1.10     itohy 	    (sc->sc_on_blocks & ~sc->sc_turning_off &
   1334       1.10     itohy 				YM_POWER_CODEC_DIGITAL) == 0)
   1335       1.10     itohy 		ym_save_codec_regs(sc);
   1336       1.10     itohy 
   1337       1.21     itohy 	if (YM_IS_SA3(sc)) {
   1338       1.21     itohy 		/* OPL3-SA3 */
   1339       1.21     itohy 		ym_write(sc, SA3_DPWRDWN,
   1340       1.21     itohy 		    ym_read(sc, SA3_DPWRDWN) | (u_int8_t) parts);
   1341       1.21     itohy 		ym_write(sc, SA3_APWRDWN,
   1342       1.21     itohy 		    ym_read(sc, SA3_APWRDWN) | (parts >> 8));
   1343       1.21     itohy 	} else {
   1344       1.21     itohy 		/* OPL3-SA2 (only OPL3 can be off partially) */
   1345       1.21     itohy 		if (parts & YM_POWER_OPL3)
   1346       1.21     itohy 			ym_write(sc, SA3_PWR_MNG,
   1347       1.21     itohy 			    ym_read(sc, SA3_PWR_MNG) | SA2_PWR_MNG_FMPS);
   1348       1.21     itohy 	}
   1349       1.10     itohy 
   1350       1.10     itohy 	if (((sc->sc_on_blocks &= ~sc->sc_turning_off) & YM_POWER_ACTIVE) == 0)
   1351       1.10     itohy 		ym_chip_powerdown(sc);
   1352       1.10     itohy 
   1353       1.10     itohy 	sc->sc_turning_off = 0;
   1354       1.10     itohy 
   1355       1.10     itohy 	/* Restore the state of the chip. */
   1356       1.10     itohy 	bus_space_write_1(sc->sc_iot, sc->sc_controlioh, SA3_CTL_INDEX, sv);
   1357       1.10     itohy }
   1358       1.10     itohy 
   1359       1.10     itohy /*
   1360       1.10     itohy  * Power control entry point.
   1361       1.10     itohy  */
   1362       1.10     itohy void
   1363       1.24      kent ym_power_ctl(struct ym_softc *sc, int parts, int onoff)
   1364       1.10     itohy {
   1365       1.10     itohy 	int need_restore_codec;
   1366       1.10     itohy 
   1367       1.42  jmcneill 	KASSERT(mutex_owned(&sc->sc_ad1848.sc_ad1848.sc_intr_lock));
   1368       1.42  jmcneill 
   1369       1.10     itohy 	DPRINTF(("%s: ym_power_ctl: parts = 0x%x, %s\n",
   1370       1.10     itohy 		DVNAME(sc), parts, onoff ? "on" : "off"));
   1371       1.10     itohy 
   1372       1.10     itohy 	/* This function may sleep --- needs locking. */
   1373       1.10     itohy 	while (sc->sc_in_power_ctl & YM_POWER_CTL_INUSE) {
   1374       1.10     itohy 		sc->sc_in_power_ctl |= YM_POWER_CTL_WANTED;
   1375       1.10     itohy 		DPRINTF(("%s: ym_power_ctl: sleeping\n", DVNAME(sc)));
   1376       1.42  jmcneill 		cv_wait(&sc->sc_cv, &sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1377       1.10     itohy 		DPRINTF(("%s: ym_power_ctl: awaken\n", DVNAME(sc)));
   1378       1.10     itohy 	}
   1379       1.10     itohy 	sc->sc_in_power_ctl |= YM_POWER_CTL_INUSE;
   1380       1.10     itohy 
   1381       1.10     itohy 	/* If ON requested to parts which are scheduled to OFF, cancel it. */
   1382       1.10     itohy 	if (onoff && sc->sc_turning_off && (sc->sc_turning_off &= ~parts) == 0)
   1383       1.42  jmcneill 		callout_halt(&sc->sc_powerdown_ch,
   1384       1.42  jmcneill 		    &sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1385       1.10     itohy 
   1386       1.10     itohy 	if (!onoff && sc->sc_turning_off)
   1387       1.10     itohy 		parts &= ~sc->sc_turning_off;
   1388       1.10     itohy 
   1389       1.10     itohy 	/* Discard bits which are currently {on,off}. */
   1390       1.10     itohy 	parts &= onoff ? ~sc->sc_on_blocks : sc->sc_on_blocks;
   1391       1.10     itohy 
   1392       1.10     itohy 	/* Cancel previous timeout if needed. */
   1393       1.10     itohy 	if (parts != 0 && sc->sc_turning_off)
   1394       1.42  jmcneill 		callout_halt(&sc->sc_powerdown_ch,
   1395       1.42  jmcneill 		    &sc->sc_ad1848.sc_ad1848.sc_intr_lock);
   1396       1.10     itohy 
   1397       1.10     itohy 	if (parts == 0)
   1398       1.10     itohy 		goto unlock;		/* no work to do */
   1399       1.10     itohy 
   1400       1.10     itohy 	if (onoff) {
   1401       1.10     itohy 		/* Turning on is done immediately. */
   1402       1.10     itohy 
   1403       1.10     itohy 		/* If the chip is off, turn it on. */
   1404       1.10     itohy 		if ((sc->sc_on_blocks & YM_POWER_ACTIVE) == 0)
   1405       1.10     itohy 			ym_chip_powerup(sc, 0);
   1406       1.10     itohy 
   1407       1.10     itohy 		need_restore_codec = (parts & YM_POWER_CODEC_DIGITAL) &&
   1408       1.10     itohy 		    (sc->sc_on_blocks & YM_POWER_CODEC_DIGITAL) == 0;
   1409       1.10     itohy 
   1410       1.10     itohy 		sc->sc_on_blocks |= parts;
   1411       1.10     itohy 		if (parts & YM_POWER_CODEC_CTL)
   1412       1.10     itohy 			parts |= YM_POWER_CODEC_P | YM_POWER_CODEC_R;
   1413       1.10     itohy 
   1414       1.21     itohy 		if (YM_IS_SA3(sc)) {
   1415       1.21     itohy 			/* OPL3-SA3 */
   1416       1.21     itohy 			ym_write(sc, SA3_DPWRDWN,
   1417       1.21     itohy 			    ym_read(sc, SA3_DPWRDWN) & (u_int8_t)~parts);
   1418       1.21     itohy 			ym_write(sc, SA3_APWRDWN,
   1419       1.21     itohy 			    ym_read(sc, SA3_APWRDWN) & ~(parts >> 8));
   1420       1.21     itohy 		} else {
   1421       1.21     itohy 			/* OPL3-SA2 (only OPL3 can be off partially) */
   1422       1.21     itohy 			if (parts & YM_POWER_OPL3)
   1423       1.21     itohy 				ym_write(sc, SA3_PWR_MNG,
   1424       1.21     itohy 				    ym_read(sc, SA3_PWR_MNG)
   1425       1.21     itohy 					& ~SA2_PWR_MNG_FMPS);
   1426       1.21     itohy 		}
   1427       1.10     itohy 		if (need_restore_codec)
   1428       1.10     itohy 			ym_restore_codec_regs(sc);
   1429       1.10     itohy 	} else {
   1430       1.10     itohy 		/* Turning off is delayed. */
   1431       1.10     itohy 		sc->sc_turning_off |= parts;
   1432       1.10     itohy 	}
   1433       1.10     itohy 
   1434       1.10     itohy 	/* Schedule turning off. */
   1435       1.10     itohy 	if (sc->sc_pow_mode != YM_POWER_NOSAVE && sc->sc_turning_off)
   1436       1.14   thorpej 		callout_reset(&sc->sc_powerdown_ch, hz * sc->sc_pow_timeout,
   1437       1.42  jmcneill 		    ym_powerdown_callout, sc);
   1438       1.10     itohy 
   1439       1.10     itohy unlock:
   1440       1.10     itohy 	if (sc->sc_in_power_ctl & YM_POWER_CTL_WANTED)
   1441       1.42  jmcneill 		cv_broadcast(&sc->sc_cv);
   1442       1.10     itohy 	sc->sc_in_power_ctl = 0;
   1443       1.10     itohy }
   1444       1.10     itohy #endif /* not AUDIO_NO_POWER_CTL */
   1445