Home | History | Annotate | Line # | Download | only in isa
ymvar.h revision 1.6.4.1
      1  1.6.4.1        he /*	$NetBSD: ymvar.h,v 1.6.4.1 2002/03/27 10:18:30 he Exp $	*/
      2      1.4     itohy 
      3      1.4     itohy /*-
      4  1.6.4.1        he  * Copyright (c) 1999-2000, 2002 The NetBSD Foundation, Inc.
      5      1.4     itohy  * All rights reserved.
      6      1.4     itohy  *
      7      1.4     itohy  * This code is derived from software contributed to The NetBSD Foundation
      8      1.4     itohy  * by ITOH Yasufumi.
      9      1.4     itohy  *
     10      1.4     itohy  * Redistribution and use in source and binary forms, with or without
     11      1.4     itohy  * modification, are permitted provided that the following conditions
     12      1.4     itohy  * are met:
     13      1.4     itohy  * 1. Redistributions of source code must retain the above copyright
     14      1.4     itohy  *    notice, this list of conditions and the following disclaimer.
     15      1.4     itohy  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.4     itohy  *    notice, this list of conditions and the following disclaimer in the
     17      1.4     itohy  *    documentation and/or other materials provided with the distribution.
     18      1.4     itohy  * 3. All advertising materials mentioning features or use of this software
     19      1.4     itohy  *    must display the following acknowledgement:
     20      1.4     itohy  *	This product includes software developed by the NetBSD
     21      1.4     itohy  *	Foundation, Inc. and its contributors.
     22      1.4     itohy  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.4     itohy  *    contributors may be used to endorse or promote products derived
     24      1.4     itohy  *    from this software without specific prior written permission.
     25      1.4     itohy  *
     26      1.4     itohy  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.4     itohy  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.4     itohy  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.4     itohy  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.4     itohy  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.4     itohy  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.4     itohy  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.4     itohy  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.4     itohy  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.4     itohy  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.4     itohy  * POSSIBILITY OF SUCH DAMAGE.
     37      1.4     itohy  */
     38      1.1  augustss 
     39      1.1  augustss /*
     40      1.1  augustss  * Copyright (c) 1994 John Brezak
     41      1.1  augustss  * Copyright (c) 1991-1993 Regents of the University of California.
     42      1.1  augustss  * All rights reserved.
     43      1.1  augustss  *
     44      1.1  augustss  * Redistribution and use in source and binary forms, with or without
     45      1.1  augustss  * modification, are permitted provided that the following conditions
     46      1.1  augustss  * are met:
     47      1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     48      1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     49      1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     50      1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     51      1.1  augustss  *    documentation and/or other materials provided with the distribution.
     52      1.1  augustss  * 3. All advertising materials mentioning features or use of this software
     53      1.1  augustss  *    must display the following acknowledgement:
     54      1.1  augustss  *	This product includes software developed by the Computer Systems
     55      1.1  augustss  *	Engineering Group at Lawrence Berkeley Laboratory.
     56      1.1  augustss  * 4. Neither the name of the University nor of the Laboratory may be used
     57      1.1  augustss  *    to endorse or promote products derived from this software without
     58      1.1  augustss  *    specific prior written permission.
     59      1.1  augustss  *
     60      1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     61      1.1  augustss  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     62      1.1  augustss  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     63      1.1  augustss  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     64      1.1  augustss  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     65      1.1  augustss  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     66      1.1  augustss  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     67      1.1  augustss  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     68      1.1  augustss  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     69      1.1  augustss  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     70      1.1  augustss  * SUCH DAMAGE.
     71      1.1  augustss  *
     72      1.1  augustss  */
     73      1.1  augustss 
     74      1.6   thorpej #include <sys/callout.h>
     75      1.6   thorpej 
     76      1.1  augustss /*
     77      1.1  augustss  *  Original code from OpenBSD.
     78      1.1  augustss  */
     79      1.1  augustss 
     80      1.1  augustss /*
     81      1.1  augustss  * Mixer devices
     82      1.1  augustss  */
     83  1.6.4.1        he #define YM_DAC_LVL		0	/* inputs.dac */
     84  1.6.4.1        he #define YM_MIDI_LVL		1	/* inputs.midi */
     85  1.6.4.1        he #define YM_CD_LVL		2	/* inputs.cd */
     86  1.6.4.1        he #define YM_LINE_LVL		3	/* inputs.line */
     87  1.6.4.1        he #define YM_SPEAKER_LVL		4	/* inputs.speaker */
     88  1.6.4.1        he #define YM_MIC_LVL		5	/* inputs.mic */
     89  1.6.4.1        he #define YM_MONITOR_LVL		6	/* monitor.monitor */
     90  1.6.4.1        he #define YM_DAC_MUTE		7	/* inputs.dac.mute */
     91  1.6.4.1        he #define YM_MIDI_MUTE		8	/* inputs.midi.mute */
     92  1.6.4.1        he #define YM_CD_MUTE		9	/* inputs.cd.mute */
     93  1.6.4.1        he #define YM_LINE_MUTE		10	/* inputs.line.mute */
     94  1.6.4.1        he #define YM_SPEAKER_MUTE		11	/* inputs.speaker.mute */
     95  1.6.4.1        he #define YM_MIC_MUTE		12	/* inputs.mic.mute */
     96  1.6.4.1        he #define YM_MONITOR_MUTE		13	/* monitor.monitor.mute */
     97  1.6.4.1        he 
     98  1.6.4.1        he #define YM_REC_LVL		14	/* record.record */
     99  1.6.4.1        he #define YM_RECORD_SOURCE	15	/* record.record.source */
    100  1.6.4.1        he 
    101  1.6.4.1        he #define YM_OUTPUT_LVL		16	/* outputs.master */
    102  1.6.4.1        he #define YM_OUTPUT_MUTE		17	/* outputs.master.mute */
    103      1.4     itohy 
    104      1.4     itohy #ifndef AUDIO_NO_POWER_CTL
    105  1.6.4.1        he #define YM_PWR_MODE		18	/* power.save */
    106  1.6.4.1        he #define YM_PWR_TIMEOUT		19	/* power.save.timeout */
    107      1.4     itohy #endif
    108      1.1  augustss 
    109      1.1  augustss /* Classes - don't change this without looking at mixer_classes array */
    110      1.4     itohy #ifdef AUDIO_NO_POWER_CTL
    111  1.6.4.1        he #define YM_CLASS_TOP		18
    112      1.4     itohy #else
    113  1.6.4.1        he #define YM_CLASS_TOP		20
    114      1.4     itohy #endif
    115      1.4     itohy #define YM_INPUT_CLASS		(YM_CLASS_TOP + 0)
    116      1.4     itohy #define YM_RECORD_CLASS		(YM_CLASS_TOP + 1)
    117      1.4     itohy #define YM_OUTPUT_CLASS		(YM_CLASS_TOP + 2)
    118      1.4     itohy #define YM_MONITOR_CLASS	(YM_CLASS_TOP + 3)
    119  1.6.4.1        he #ifdef AUDIO_NO_POWER_CTL
    120      1.4     itohy #define YM_EQ_CLASS		(YM_CLASS_TOP + 4)
    121  1.6.4.1        he #else
    122  1.6.4.1        he #define YM_PWR_CLASS		(YM_CLASS_TOP + 4)
    123  1.6.4.1        he #define YM_EQ_CLASS		(YM_CLASS_TOP + 5)
    124      1.4     itohy #endif
    125      1.4     itohy 
    126  1.6.4.1        he /* equalizer is SA3 only */
    127  1.6.4.1        he #define YM_MASTER_EQMODE	(YM_EQ_CLASS+1)	/* equalization.mode */
    128  1.6.4.1        he #define YM_MASTER_TREBLE	(YM_EQ_CLASS+2)	/* equalization.treble */
    129  1.6.4.1        he #define YM_MASTER_BASS		(YM_EQ_CLASS+3)	/* equalization.bass */
    130  1.6.4.1        he #define YM_MASTER_WIDE		(YM_EQ_CLASS+4)	/* equalization.surround */
    131  1.6.4.1        he 
    132  1.6.4.1        he #define YM_MIXER_SA3_ONLY(m)	((m) >= YM_EQ_CLASS)
    133  1.6.4.1        he 
    134      1.4     itohy /* XXX should be in <sys/audioio.h> */
    135      1.4     itohy #define AudioNdesktop		"desktop"
    136      1.4     itohy #define AudioNlaptop		"laptop"
    137      1.4     itohy #define AudioNsubnote		"subnote"
    138      1.4     itohy #define AudioNhifi		"hifi"
    139      1.4     itohy 
    140      1.4     itohy #ifndef AUDIO_NO_POWER_CTL
    141      1.4     itohy #define AudioCpower		"power"
    142      1.5     itohy #define AudioNsave		"save"
    143      1.4     itohy #define AudioNtimeout		"timeout"
    144      1.4     itohy #define AudioNpowerdown		"powerdown"
    145      1.4     itohy #define AudioNpowersave		"powersave"
    146      1.4     itohy #define AudioNnosave		"nosave"
    147      1.4     itohy #endif
    148      1.1  augustss 
    149      1.1  augustss 
    150      1.1  augustss struct ym_softc {
    151      1.4     itohy 	struct	ad1848_isa_softc sc_ad1848;
    152      1.4     itohy #define ym_irq		sc_ad1848.sc_irq
    153      1.4     itohy #define ym_playdrq	sc_ad1848.sc_playdrq
    154      1.4     itohy #define ym_recdrq	sc_ad1848.sc_recdrq
    155      1.2        pk 
    156      1.1  augustss 	bus_space_tag_t sc_iot;		/* tag */
    157      1.1  augustss 	bus_space_handle_t sc_ioh;	/* handle */
    158      1.1  augustss 	isa_chipset_tag_t sc_ic;
    159      1.1  augustss 
    160      1.4     itohy 	bus_space_handle_t sc_controlioh;
    161      1.4     itohy 	bus_space_handle_t sc_opl_ioh;
    162      1.4     itohy 	bus_space_handle_t sc_sb_ioh;	/* only used to disable it */
    163      1.6   thorpej 
    164      1.6   thorpej 	struct callout sc_powerdown_ch;
    165      1.4     itohy 
    166      1.4     itohy 	int  master_mute, mic_mute;
    167      1.4     itohy 	struct ad1848_volume master_gain;
    168      1.4     itohy 	u_int8_t mic_gain;
    169      1.4     itohy 
    170      1.5     itohy 	u_int8_t sc_external_sources;	/* non-zero value prevents power down */
    171      1.5     itohy 
    172      1.4     itohy 	u_int8_t sc_version;		/* hardware version */
    173  1.6.4.1        he #define YM_IS_SA3(sc)	((sc)->sc_version > SA3_MISC_VER_711)
    174      1.4     itohy 
    175      1.4     itohy 	/* 3D encehamcement */
    176      1.4     itohy 	u_int8_t sc_eqmode;
    177      1.4     itohy 	struct ad1848_volume sc_treble, sc_bass, sc_wide;
    178      1.4     itohy #define YM_EQ_OFF(v)	\
    179      1.4     itohy 	((v)->left < (AUDIO_MAX_GAIN + 1) / (SA3_3D_BITS + 1) &&	\
    180      1.4     itohy 	(v)->right < (AUDIO_MAX_GAIN + 1) / (SA3_3D_BITS + 1))
    181      1.4     itohy 
    182      1.4     itohy 	struct device *sc_audiodev;
    183      1.4     itohy 
    184      1.4     itohy #if NMPU_YM > 0
    185      1.4     itohy 	bus_space_handle_t sc_mpu_ioh;
    186      1.4     itohy 	struct device *sc_mpudev;
    187      1.4     itohy #endif
    188      1.4     itohy 
    189      1.4     itohy #ifndef AUDIO_NO_POWER_CTL
    190      1.4     itohy 	enum ym_pow_mode {
    191      1.4     itohy 		YM_POWER_POWERDOWN, YM_POWER_POWERSAVE, YM_POWER_NOSAVE
    192      1.4     itohy 	} sc_pow_mode;
    193      1.4     itohy 	int	sc_pow_timeout;
    194      1.4     itohy 
    195      1.4     itohy 	u_int8_t sc_codec_scan[0x20];
    196  1.6.4.1        he #define YM_SAVE_REG_MAX_SA3	SA3_HVOL_INTR_CNF
    197  1.6.4.1        he #define YM_SAVE_REG_MAX_SA2	SA3_DMA_CNT_REC_HIGH
    198  1.6.4.1        he 	u_int8_t sc_sa3_scan[YM_SAVE_REG_MAX_SA3 + 1];
    199      1.4     itohy 
    200      1.4     itohy 	u_int16_t sc_on_blocks;
    201      1.4     itohy 	u_int16_t sc_turning_off;
    202      1.4     itohy 
    203      1.4     itohy 	int	sc_in_power_ctl;
    204      1.4     itohy #define YM_POWER_CTL_INUSE	1
    205      1.4     itohy #define YM_POWER_CTL_WANTED	2
    206      1.4     itohy #endif /* not AUDIO_NO_POWER_CTL */
    207      1.1  augustss };
    208      1.1  augustss 
    209      1.4     itohy #ifndef AUDIO_NO_POWER_CTL
    210      1.4     itohy /* digital */
    211      1.4     itohy #define YM_POWER_CODEC_P	SA3_DPWRDWN_WSS_P
    212      1.4     itohy #define YM_POWER_CODEC_R	SA3_DPWRDWN_WSS_R
    213      1.4     itohy #define YM_POWER_OPL3		SA3_DPWRDWN_FM
    214      1.4     itohy #define YM_POWER_MPU401		SA3_DPWRDWN_MPU
    215      1.4     itohy #define YM_POWER_JOYSTICK	SA3_DPWRDWN_JOY
    216      1.4     itohy /* analog */
    217      1.4     itohy #define YM_POWER_3D		(SA3_APWRDWN_WIDE << 8)
    218      1.4     itohy #define YM_POWER_CODEC_DA	(SA3_APWRDWN_DA << 8)
    219      1.4     itohy #define YM_POWER_CODEC_AD	(SA3_APWRDWN_AD << 8)
    220      1.4     itohy #define YM_POWER_OPL3_DA	(SA3_APWRDWN_FMDAC << 8)
    221      1.4     itohy /* pseudo */
    222      1.5     itohy #define YM_POWER_CODEC_CTL	0x4000
    223      1.5     itohy #define YM_POWER_EXT_SRC	0x8000
    224      1.5     itohy #define YM_POWER_CODEC_PSEUDO	(YM_POWER_CODEC_CTL | YM_POWER_EXT_SRC)
    225      1.4     itohy 
    226      1.4     itohy #define YM_POWER_CODEC_DIGITAL	\
    227      1.4     itohy 		(YM_POWER_CODEC_P | YM_POWER_CODEC_R | YM_POWER_CODEC_CTL)
    228      1.4     itohy /* 3D enhance is passive */
    229      1.4     itohy #define YM_POWER_ACTIVE		(0xffff & ~YM_POWER_3D)
    230      1.5     itohy 
    231      1.5     itohy /* external input sources */
    232      1.5     itohy #define YM_XS_CD	1
    233      1.5     itohy #define YM_XS_LINE	2
    234      1.5     itohy #define YM_XS_SPEAKER	4
    235  1.6.4.1        he #define YM_XS_MIC	8
    236      1.5     itohy 
    237  1.6.4.1        he #if YM_CD_MUTE + 1 != YM_LINE_MUTE || YM_CD_MUTE + 2 != YM_SPEAKER_MUTE || YM_CD_MUTE + 3 != YM_MIC_MUTE
    238      1.5     itohy  #error YM_CD_MUTE, YM_LINE_MUTE and YM_SPEAKER_MUTE should be contiguous
    239      1.5     itohy #endif
    240      1.5     itohy #define YM_MIXER_TO_XS(m)	(1 << ((m) - YM_CD_MUTE))
    241      1.4     itohy 
    242      1.4     itohy #ifdef _KERNEL
    243      1.4     itohy void	ym_power_ctl __P((struct ym_softc *, int, int));
    244      1.4     itohy #endif
    245      1.4     itohy #endif /* not AUDIO_NO_POWER_CTL */
    246      1.4     itohy 
    247      1.4     itohy #ifdef _KERNEL
    248      1.4     itohy void	ym_attach __P((struct ym_softc *));
    249      1.4     itohy #endif
    250