Home | History | Annotate | Line # | Download | only in ic
ac97reg.h revision 1.1
      1  1.1  thorpej /*	$NetBSD: ac97reg.h,v 1.1 2000/05/15 01:32:03 thorpej Exp $	*/
      2  1.1  thorpej 
      3  1.1  thorpej /*
      4  1.1  thorpej  * Copyright (c) 1999 Constantine Sapuntzakis
      5  1.1  thorpej  *
      6  1.1  thorpej  * Author:        Constantine Sapuntzakis <csapuntz (at) stanford.edu>
      7  1.1  thorpej  *
      8  1.1  thorpej  * Redistribution and use in source and binary forms, with or without
      9  1.1  thorpej  * modification, are permitted provided that the following conditions
     10  1.1  thorpej  * are met:
     11  1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     12  1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     13  1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     14  1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     15  1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     16  1.1  thorpej  *
     17  1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY CONSTANTINE SAPUNTZAKIS AND CONTRIBUTORS
     18  1.1  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     19  1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     20  1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
     21  1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     22  1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     23  1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     24  1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     25  1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     26  1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     27  1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     28  1.1  thorpej  */
     29  1.1  thorpej 
     30  1.1  thorpej #define AC97_REG_RESET                0x00
     31  1.1  thorpej #define AC97_SOUND_ENHANCEMENT(reg)   (((reg) >> 10) & 0x1f)
     32  1.1  thorpej #define AC97_REG_MASTER_VOLUME        0x02
     33  1.1  thorpej #define AC97_REG_HEADPHONE_VOLUME     0x04
     34  1.1  thorpej #define AC97_REG_MASTER_VOLUME_MONO   0x06
     35  1.1  thorpej #define AC97_REG_MASTER_TONE          0x08
     36  1.1  thorpej #define AC97_REG_PCBEEP_VOLUME        0x0a
     37  1.1  thorpej #define AC97_REG_PHONE_VOLUME         0x0c
     38  1.1  thorpej #define AC97_REG_MIC_VOLUME           0x0e
     39  1.1  thorpej #define AC97_REG_LINEIN_VOLUME        0x10
     40  1.1  thorpej #define AC97_REG_CD_VOLUME            0x12
     41  1.1  thorpej #define AC97_REG_VIDEO_VOLUME         0x14
     42  1.1  thorpej #define AC97_REG_AUX_VOLUME           0x16
     43  1.1  thorpej #define AC97_REG_PCMOUT_VOLUME        0x18
     44  1.1  thorpej #define AC97_REG_RECORD_SELECT        0x1a
     45  1.1  thorpej #define AC97_REG_RECORD_GAIN          0x1c
     46  1.1  thorpej #define AC97_REG_RECORD_GAIN_MIC      0x1e
     47  1.1  thorpej #define AC97_REG_GP                   0x20
     48  1.1  thorpej #define AC97_REG_3D_CONTROL           0x22
     49  1.1  thorpej #define AC97_REG_POWER                0x26
     50  1.1  thorpej #define AC97_REG_VENDOR_ID1           0x7c
     51  1.1  thorpej #define AC97_REG_VENDOR_ID2           0x7e
     52  1.1  thorpej 
     53  1.1  thorpej #define AC97_CODEC_ID(a0, a1, a2, x)					\
     54  1.1  thorpej 	(((a0) << 24) | ((a1) << 16) | ((a2) << 8) | (x))
     55  1.1  thorpej 
     56  1.1  thorpej #define	AC97_GET_CODEC_ID(id, cp)					\
     57  1.1  thorpej do {									\
     58  1.1  thorpej 	(cp)[0] = ((id) >> 24) & 0xff;					\
     59  1.1  thorpej 	(cp)[1] = ((id) >> 16) & 0xff;					\
     60  1.1  thorpej 	(cp)[2] = ((id) >> 8)  & 0xff;					\
     61  1.1  thorpej 	(cp)[3] = (id) & 0xff;						\
     62  1.1  thorpej } while (0)
     63