0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #define AC97_RESET 0x00
0014 #define AC97_MASTER 0x02
0015 #define AC97_HEADPHONE 0x04
0016 #define AC97_MASTER_MONO 0x06
0017 #define AC97_MASTER_TONE 0x08
0018 #define AC97_PC_BEEP 0x0a
0019 #define AC97_PHONE 0x0c
0020 #define AC97_MIC 0x0e
0021 #define AC97_LINE 0x10
0022 #define AC97_CD 0x12
0023 #define AC97_VIDEO 0x14
0024 #define AC97_AUX 0x16
0025 #define AC97_PCM 0x18
0026 #define AC97_REC_SEL 0x1a
0027 #define AC97_REC_GAIN 0x1c
0028 #define AC97_REC_GAIN_MIC 0x1e
0029 #define AC97_GENERAL_PURPOSE 0x20
0030 #define AC97_3D_CONTROL 0x22
0031 #define AC97_INT_PAGING 0x24
0032 #define AC97_POWERDOWN 0x26
0033
0034 #define AC97_EXTENDED_ID 0x28
0035 #define AC97_EXTENDED_STATUS 0x2a
0036 #define AC97_PCM_FRONT_DAC_RATE 0x2c
0037 #define AC97_PCM_SURR_DAC_RATE 0x2e
0038 #define AC97_PCM_LFE_DAC_RATE 0x30
0039 #define AC97_PCM_LR_ADC_RATE 0x32
0040 #define AC97_PCM_MIC_ADC_RATE 0x34
0041 #define AC97_CENTER_LFE_MASTER 0x36
0042 #define AC97_SURROUND_MASTER 0x38
0043 #define AC97_SPDIF 0x3a
0044
0045 #define AC97_EXTENDED_MID 0x3c
0046 #define AC97_EXTENDED_MSTATUS 0x3e
0047 #define AC97_LINE1_RATE 0x40
0048 #define AC97_LINE2_RATE 0x42
0049 #define AC97_HANDSET_RATE 0x44
0050 #define AC97_LINE1_LEVEL 0x46
0051 #define AC97_LINE2_LEVEL 0x48
0052 #define AC97_HANDSET_LEVEL 0x4a
0053 #define AC97_GPIO_CFG 0x4c
0054 #define AC97_GPIO_POLARITY 0x4e
0055 #define AC97_GPIO_STICKY 0x50
0056 #define AC97_GPIO_WAKEUP 0x52
0057 #define AC97_GPIO_STATUS 0x54
0058 #define AC97_MISC_AFE 0x56
0059
0060 #define AC97_VENDOR_ID1 0x7c
0061 #define AC97_VENDOR_ID2 0x7e
0062
0063 #define AC97_CODEC_CLASS_REV 0x60
0064 #define AC97_PCI_SVID 0x62
0065 #define AC97_PCI_SID 0x64
0066 #define AC97_FUNC_SELECT 0x66
0067 #define AC97_FUNC_INFO 0x68
0068 #define AC97_SENSE_INFO 0x6a
0069
0070
0071 #define AC97_MUTE_MASK_MONO 0x8000
0072 #define AC97_MUTE_MASK_STEREO 0x8080
0073
0074
0075 #define AC97_SLOT_TAG 0
0076 #define AC97_SLOT_CMD_ADDR 1
0077 #define AC97_SLOT_CMD_DATA 2
0078 #define AC97_SLOT_PCM_LEFT 3
0079 #define AC97_SLOT_PCM_RIGHT 4
0080 #define AC97_SLOT_MODEM_LINE1 5
0081 #define AC97_SLOT_PCM_CENTER 6
0082 #define AC97_SLOT_MIC 6
0083 #define AC97_SLOT_SPDIF_LEFT1 6
0084 #define AC97_SLOT_PCM_SLEFT 7
0085 #define AC97_SLOT_PCM_LEFT_0 7
0086 #define AC97_SLOT_SPDIF_LEFT 7
0087 #define AC97_SLOT_PCM_SRIGHT 8
0088 #define AC97_SLOT_PCM_RIGHT_0 8
0089 #define AC97_SLOT_SPDIF_RIGHT 8
0090 #define AC97_SLOT_LFE 9
0091 #define AC97_SLOT_SPDIF_RIGHT1 9
0092 #define AC97_SLOT_MODEM_LINE2 10
0093 #define AC97_SLOT_PCM_LEFT_1 10
0094 #define AC97_SLOT_SPDIF_LEFT2 10
0095 #define AC97_SLOT_HANDSET 11
0096 #define AC97_SLOT_PCM_RIGHT_1 11
0097 #define AC97_SLOT_SPDIF_RIGHT2 11
0098 #define AC97_SLOT_MODEM_GPIO 12
0099 #define AC97_SLOT_PCM_CENTER_1 12
0100
0101
0102 #define AC97_BC_DEDICATED_MIC 0x0001
0103 #define AC97_BC_RESERVED1 0x0002
0104 #define AC97_BC_BASS_TREBLE 0x0004
0105 #define AC97_BC_SIM_STEREO 0x0008
0106 #define AC97_BC_HEADPHONE 0x0010
0107 #define AC97_BC_LOUDNESS 0x0020
0108 #define AC97_BC_16BIT_DAC 0x0000
0109 #define AC97_BC_18BIT_DAC 0x0040
0110 #define AC97_BC_20BIT_DAC 0x0080
0111 #define AC97_BC_DAC_MASK 0x00c0
0112 #define AC97_BC_16BIT_ADC 0x0000
0113 #define AC97_BC_18BIT_ADC 0x0100
0114 #define AC97_BC_20BIT_ADC 0x0200
0115 #define AC97_BC_ADC_MASK 0x0300
0116 #define AC97_BC_3D_TECH_ID_MASK 0x7c00
0117
0118
0119 #define AC97_GP_DRSS_MASK 0x0c00
0120 #define AC97_GP_DRSS_1011 0x0000
0121 #define AC97_GP_DRSS_78 0x0400
0122
0123
0124 #define AC97_PD_ADC_STATUS 0x0001
0125 #define AC97_PD_DAC_STATUS 0x0002
0126 #define AC97_PD_MIXER_STATUS 0x0004
0127 #define AC97_PD_VREF_STATUS 0x0008
0128 #define AC97_PD_PR0 0x0100
0129 #define AC97_PD_PR1 0x0200
0130 #define AC97_PD_PR2 0x0400
0131 #define AC97_PD_PR3 0x0800
0132 #define AC97_PD_PR4 0x1000
0133 #define AC97_PD_PR5 0x2000
0134 #define AC97_PD_PR6 0x4000
0135 #define AC97_PD_EAPD 0x8000
0136
0137
0138 #define AC97_EI_VRA 0x0001
0139 #define AC97_EI_DRA 0x0002
0140 #define AC97_EI_SPDIF 0x0004
0141 #define AC97_EI_VRM 0x0008
0142 #define AC97_EI_DACS_SLOT_MASK 0x0030
0143 #define AC97_EI_DACS_SLOT_SHIFT 4
0144 #define AC97_EI_CDAC 0x0040
0145 #define AC97_EI_SDAC 0x0080
0146 #define AC97_EI_LDAC 0x0100
0147 #define AC97_EI_AMAP 0x0200
0148 #define AC97_EI_REV_MASK 0x0c00
0149 #define AC97_EI_REV_22 0x0400
0150 #define AC97_EI_REV_23 0x0800
0151 #define AC97_EI_REV_SHIFT 10
0152 #define AC97_EI_ADDR_MASK 0xc000
0153 #define AC97_EI_ADDR_SHIFT 14
0154
0155
0156 #define AC97_EA_VRA 0x0001
0157 #define AC97_EA_DRA 0x0002
0158 #define AC97_EA_SPDIF 0x0004
0159 #define AC97_EA_VRM 0x0008
0160 #define AC97_EA_SPSA_SLOT_MASK 0x0030
0161 #define AC97_EA_SPSA_SLOT_SHIFT 4
0162 #define AC97_EA_SPSA_3_4 0x0000
0163 #define AC97_EA_SPSA_7_8 0x0010
0164 #define AC97_EA_SPSA_6_9 0x0020
0165 #define AC97_EA_SPSA_10_11 0x0030
0166 #define AC97_EA_CDAC 0x0040
0167 #define AC97_EA_SDAC 0x0080
0168 #define AC97_EA_LDAC 0x0100
0169 #define AC97_EA_MDAC 0x0200
0170 #define AC97_EA_SPCV 0x0400
0171 #define AC97_EA_PRI 0x0800
0172 #define AC97_EA_PRJ 0x1000
0173 #define AC97_EA_PRK 0x2000
0174 #define AC97_EA_PRL 0x4000
0175
0176
0177 #define AC97_SC_PRO 0x0001
0178 #define AC97_SC_NAUDIO 0x0002
0179 #define AC97_SC_COPY 0x0004
0180 #define AC97_SC_PRE 0x0008
0181 #define AC97_SC_CC_MASK 0x07f0
0182 #define AC97_SC_CC_SHIFT 4
0183 #define AC97_SC_L 0x0800
0184 #define AC97_SC_SPSR_MASK 0x3000
0185 #define AC97_SC_SPSR_SHIFT 12
0186 #define AC97_SC_SPSR_44K 0x0000
0187 #define AC97_SC_SPSR_48K 0x2000
0188 #define AC97_SC_SPSR_32K 0x3000
0189 #define AC97_SC_DRS 0x4000
0190 #define AC97_SC_V 0x8000
0191
0192
0193 #define AC97_PAGE_MASK 0x000f
0194 #define AC97_PAGE_VENDOR 0
0195 #define AC97_PAGE_1 1
0196 #define AC97_INT_ENABLE 0x0800
0197 #define AC97_INT_SENSE 0x1000
0198 #define AC97_INT_CAUSE_SENSE 0x2000
0199 #define AC97_INT_CAUSE_GPIO 0x4000
0200 #define AC97_INT_STATUS 0x8000
0201
0202
0203 #define AC97_MEI_LINE1 0x0001
0204 #define AC97_MEI_LINE2 0x0002
0205 #define AC97_MEI_HANDSET 0x0004
0206 #define AC97_MEI_CID1 0x0008
0207 #define AC97_MEI_CID2 0x0010
0208 #define AC97_MEI_ADDR_MASK 0xc000
0209 #define AC97_MEI_ADDR_SHIFT 14
0210
0211
0212 #define AC97_MEA_GPIO 0x0001
0213 #define AC97_MEA_MREF 0x0002
0214 #define AC97_MEA_ADC1 0x0004
0215 #define AC97_MEA_DAC1 0x0008
0216 #define AC97_MEA_ADC2 0x0010
0217 #define AC97_MEA_DAC2 0x0020
0218 #define AC97_MEA_HADC 0x0040
0219 #define AC97_MEA_HDAC 0x0080
0220 #define AC97_MEA_PRA 0x0100
0221 #define AC97_MEA_PRB 0x0200
0222 #define AC97_MEA_PRC 0x0400
0223 #define AC97_MEA_PRD 0x0800
0224 #define AC97_MEA_PRE 0x1000
0225 #define AC97_MEA_PRF 0x2000
0226 #define AC97_MEA_PRG 0x4000
0227 #define AC97_MEA_PRH 0x8000
0228
0229
0230 #define AC97_GPIO_LINE1_OH 0x0001
0231 #define AC97_GPIO_LINE1_RI 0x0002
0232 #define AC97_GPIO_LINE1_CID 0x0004
0233 #define AC97_GPIO_LINE1_LCS 0x0008
0234 #define AC97_GPIO_LINE1_PULSE 0x0010
0235 #define AC97_GPIO_LINE1_HL1R 0x0020
0236 #define AC97_GPIO_LINE1_HOHD 0x0040
0237 #define AC97_GPIO_LINE12_AC 0x0080
0238 #define AC97_GPIO_LINE12_DC 0x0100
0239 #define AC97_GPIO_LINE12_RS 0x0200
0240 #define AC97_GPIO_LINE2_OH 0x0400
0241 #define AC97_GPIO_LINE2_RI 0x0800
0242 #define AC97_GPIO_LINE2_CID 0x1000
0243 #define AC97_GPIO_LINE2_LCS 0x2000
0244 #define AC97_GPIO_LINE2_PULSE 0x4000
0245 #define AC97_GPIO_LINE2_HL1R 0x8000
0246