blob: 89d311a503d34802223b98dbb4e80c924afee0b8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __SOUND_AC97_CODEC_H
2#define __SOUND_AC97_CODEC_H
3
4/*
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Universal interface for Audio Codec '97
7 *
8 * For more details look to AC '97 component specification revision 2.1
9 * by Intel Corporation (http://developer.intel.com).
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 *
26 */
27
28#include <linux/bitops.h>
Liam Girdwood0ca06a02005-07-29 16:13:36 +020029#include <linux/device.h>
Takashi Iwai6dbe6622006-06-27 18:28:53 +020030#include <linux/workqueue.h>
Robert Jarzmik8e4f7d92017-09-02 21:54:03 +020031#include <sound/ac97/regs.h>
David Howellsa1ce3922012-10-02 18:01:25 +010032#include <sound/pcm.h>
33#include <sound/control.h>
34#include <sound/info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Marek Vasut4ac04782009-07-30 02:55:01 +020036/* maximum number of devices on the AC97 bus */
37#define AC97_BUS_MAX_DEVICES 4
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/* specific - SigmaTel */
40#define AC97_SIGMATEL_OUTSEL 0x64 /* Output Select, STAC9758 */
41#define AC97_SIGMATEL_INSEL 0x66 /* Input Select, STAC9758 */
42#define AC97_SIGMATEL_IOMISC 0x68 /* STAC9758 */
43#define AC97_SIGMATEL_ANALOG 0x6c /* Analog Special */
44#define AC97_SIGMATEL_DAC2INVERT 0x6e
45#define AC97_SIGMATEL_BIAS1 0x70
46#define AC97_SIGMATEL_BIAS2 0x72
47#define AC97_SIGMATEL_VARIOUS 0x72 /* STAC9758 */
48#define AC97_SIGMATEL_MULTICHN 0x74 /* Multi-Channel programming */
49#define AC97_SIGMATEL_CIC1 0x76
50#define AC97_SIGMATEL_CIC2 0x78
51
52/* specific - Analog Devices */
53#define AC97_AD_TEST 0x5a /* test register */
Jaya Kumar02856b52006-06-23 15:18:41 +020054#define AC97_AD_TEST2 0x5c /* undocumented test register 2 */
Andres Salomon0bed7b22008-11-05 17:29:53 -050055#define AC97_AD_HPFD_SHIFT 12 /* High Pass Filter Disable */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define AC97_AD_CODEC_CFG 0x70 /* codec configuration */
57#define AC97_AD_JACK_SPDIF 0x72 /* Jack Sense & S/PDIF */
58#define AC97_AD_SERIAL_CFG 0x74 /* Serial Configuration */
59#define AC97_AD_MISC 0x76 /* Misc Control Bits */
Andres Salomon0bed7b22008-11-05 17:29:53 -050060#define AC97_AD_VREFD_SHIFT 2 /* V_REFOUT Disable (AD1888) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/* specific - Cirrus Logic */
63#define AC97_CSR_ACMODE 0x5e /* AC Mode Register */
64#define AC97_CSR_MISC_CRYSTAL 0x60 /* Misc Crystal Control */
65#define AC97_CSR_SPDIF 0x68 /* S/PDIF Register */
66#define AC97_CSR_SERIAL 0x6a /* Serial Port Control */
67#define AC97_CSR_SPECF_ADDR 0x6c /* Special Feature Address */
68#define AC97_CSR_SPECF_DATA 0x6e /* Special Feature Data */
69#define AC97_CSR_BDI_STATUS 0x7a /* BDI Status */
70
71/* specific - Conexant */
72#define AC97_CXR_AUDIO_MISC 0x5c
73#define AC97_CXR_SPDIFEN (1<<3)
74#define AC97_CXR_COPYRGT (1<<2)
75#define AC97_CXR_SPDIF_MASK (3<<0)
76#define AC97_CXR_SPDIF_PCM 0x0
77#define AC97_CXR_SPDIF_AC3 0x2
78
79/* specific - ALC */
80#define AC97_ALC650_SPDIF_INPUT_STATUS1 0x60
81/* S/PDIF input status 1 bit defines */
82#define AC97_ALC650_PRO 0x0001 /* Professional status */
83#define AC97_ALC650_NAUDIO 0x0002 /* Non audio stream */
84#define AC97_ALC650_COPY 0x0004 /* Copyright status */
85#define AC97_ALC650_PRE 0x0038 /* Preemphasis status */
86#define AC97_ALC650_PRE_SHIFT 3
87#define AC97_ALC650_MODE 0x00C0 /* Preemphasis status */
88#define AC97_ALC650_MODE_SHIFT 6
89#define AC97_ALC650_CC_MASK 0x7f00 /* Category Code mask */
90#define AC97_ALC650_CC_SHIFT 8
91#define AC97_ALC650_L 0x8000 /* Generation Level status */
92
93#define AC97_ALC650_SPDIF_INPUT_STATUS2 0x62
94/* S/PDIF input status 2 bit defines */
95#define AC97_ALC650_SOUCE_MASK 0x000f /* Source number */
96#define AC97_ALC650_CHANNEL_MASK 0x00f0 /* Channel number */
97#define AC97_ALC650_CHANNEL_SHIFT 4
98#define AC97_ALC650_SPSR_MASK 0x0f00 /* S/PDIF Sample Rate bits */
99#define AC97_ALC650_SPSR_SHIFT 8
100#define AC97_ALC650_SPSR_44K 0x0000 /* Use 44.1kHz Sample rate */
101#define AC97_ALC650_SPSR_48K 0x0200 /* Use 48kHz Sample rate */
102#define AC97_ALC650_SPSR_32K 0x0300 /* Use 32kHz Sample rate */
103#define AC97_ALC650_CLOCK_ACCURACY 0x3000 /* Clock accuracy */
104#define AC97_ALC650_CLOCK_SHIFT 12
105#define AC97_ALC650_CLOCK_LOCK 0x4000 /* Clock locked status */
106#define AC97_ALC650_V 0x8000 /* Validity status */
107
108#define AC97_ALC650_SURR_DAC_VOL 0x64
109#define AC97_ALC650_LFE_DAC_VOL 0x66
110#define AC97_ALC650_UNKNOWN1 0x68
111#define AC97_ALC650_MULTICH 0x6a
112#define AC97_ALC650_UNKNOWN2 0x6c
113#define AC97_ALC650_REVISION 0x6e
114#define AC97_ALC650_UNKNOWN3 0x70
115#define AC97_ALC650_UNKNOWN4 0x72
116#define AC97_ALC650_MISC 0x74
117#define AC97_ALC650_GPIO_SETUP 0x76
118#define AC97_ALC650_GPIO_STATUS 0x78
119#define AC97_ALC650_CLOCK 0x7a
120
Keita Maehara13043982007-09-19 14:27:38 +0200121/* specific - Yamaha YMF7x3 */
122#define AC97_YMF7X3_DIT_CTRL 0x66 /* DIT Control (YMF743) / 2 (YMF753) */
123#define AC97_YMF7X3_3D_MODE_SEL 0x68 /* 3D Mode Select */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125/* specific - C-Media */
126#define AC97_CM9738_VENDOR_CTRL 0x5a
127#define AC97_CM9739_MULTI_CHAN 0x64
128#define AC97_CM9739_SPDIF_IN_STATUS 0x68 /* 32bit */
129#define AC97_CM9739_SPDIF_CTRL 0x6c
130
131/* specific - wolfson */
132#define AC97_WM97XX_FMIXER_VOL 0x72
133#define AC97_WM9704_RMIXER_VOL 0x74
134#define AC97_WM9704_TEST 0x5a
135#define AC97_WM9704_RPCM_VOL 0x70
136#define AC97_WM9711_OUT3VOL 0x16
137
138
139/* ac97->scaps */
140#define AC97_SCAP_AUDIO (1<<0) /* audio codec 97 */
141#define AC97_SCAP_MODEM (1<<1) /* modem codec 97 */
142#define AC97_SCAP_SURROUND_DAC (1<<2) /* surround L&R DACs are present */
143#define AC97_SCAP_CENTER_LFE_DAC (1<<3) /* center and LFE DACs are present */
144#define AC97_SCAP_SKIP_AUDIO (1<<4) /* skip audio part of codec */
145#define AC97_SCAP_SKIP_MODEM (1<<5) /* skip modem part of codec */
146#define AC97_SCAP_INDEP_SDIN (1<<6) /* independent SDIN */
147#define AC97_SCAP_INV_EAPD (1<<7) /* inverted EAPD */
148#define AC97_SCAP_DETECT_BY_VENDOR (1<<8) /* use vendor registers for read tests */
149#define AC97_SCAP_NO_SPDIF (1<<9) /* don't build SPDIF controls */
Takashi Iwai6dbe6622006-06-27 18:28:53 +0200150#define AC97_SCAP_EAPD_LED (1<<10) /* EAPD as mute LED */
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300151#define AC97_SCAP_POWER_SAVE (1<<11) /* capable for aggressive power-saving */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153/* ac97->flags */
154#define AC97_HAS_PC_BEEP (1<<0) /* force PC Speaker usage */
155#define AC97_AD_MULTI (1<<1) /* Analog Devices - multi codecs */
156#define AC97_CS_SPDIF (1<<2) /* Cirrus Logic uses funky SPDIF */
157#define AC97_CX_SPDIF (1<<3) /* Conexant's spdif interface */
158#define AC97_STEREO_MUTES (1<<4) /* has stereo mute bits */
159#define AC97_DOUBLE_RATE (1<<5) /* supports double rate playback */
160#define AC97_HAS_NO_MASTER_VOL (1<<6) /* no Master volume */
161#define AC97_HAS_NO_PCM_VOL (1<<7) /* no PCM volume */
162#define AC97_DEFAULT_POWER_OFF (1<<8) /* no RESET write */
163#define AC97_MODEM_PATCH (1<<9) /* modem patch */
164#define AC97_HAS_NO_REC_GAIN (1<<10) /* no Record gain */
165#define AC97_HAS_NO_PHONE (1<<11) /* no PHONE volume */
166#define AC97_HAS_NO_PC_BEEP (1<<12) /* no PC Beep volume */
167#define AC97_HAS_NO_VIDEO (1<<13) /* no Video volume */
168#define AC97_HAS_NO_CD (1<<14) /* no CD volume */
Liam Girdwood3998b702005-07-29 11:41:55 +0200169#define AC97_HAS_NO_MIC (1<<15) /* no MIC volume */
170#define AC97_HAS_NO_TONE (1<<16) /* no Tone volume */
171#define AC97_HAS_NO_STD_PCM (1<<17) /* no standard AC97 PCM volume and mute */
Rodolfo Giometti1459c782006-06-19 15:04:54 +0200172#define AC97_HAS_NO_AUX (1<<18) /* no standard AC97 AUX volume and mute */
Takashi Iwai4235a312008-02-18 12:23:13 +0100173#define AC97_HAS_8CH (1<<19) /* supports 8-channel output */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175/* rates indexes */
176#define AC97_RATES_FRONT_DAC 0
177#define AC97_RATES_SURR_DAC 1
178#define AC97_RATES_LFE_DAC 2
179#define AC97_RATES_ADC 3
180#define AC97_RATES_MIC_ADC 4
181#define AC97_RATES_SPDIF 5
182
Robert Jarzmik9bf5c3d2015-11-11 13:12:51 +0100183#define AC97_NUM_GPIOS 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/*
185 *
186 */
187
Takashi Iwaiee423812005-11-17 14:21:36 +0100188struct snd_ac97;
Robert Jarzmik9bf5c3d2015-11-11 13:12:51 +0100189struct snd_ac97_gpio_priv;
Takashi Iwai833a4932012-08-03 17:59:36 +0200190struct snd_pcm_chmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192struct snd_ac97_build_ops {
Takashi Iwaiee423812005-11-17 14:21:36 +0100193 int (*build_3d) (struct snd_ac97 *ac97);
194 int (*build_specific) (struct snd_ac97 *ac97);
195 int (*build_spdif) (struct snd_ac97 *ac97);
196 int (*build_post_spdif) (struct snd_ac97 *ac97);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#ifdef CONFIG_PM
Takashi Iwaiee423812005-11-17 14:21:36 +0100198 void (*suspend) (struct snd_ac97 *ac97);
199 void (*resume) (struct snd_ac97 *ac97);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#endif
Takashi Iwaiee423812005-11-17 14:21:36 +0100201 void (*update_jacks) (struct snd_ac97 *ac97); /* for jack-sharing */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202};
203
Takashi Iwaiee423812005-11-17 14:21:36 +0100204struct snd_ac97_bus_ops {
205 void (*reset) (struct snd_ac97 *ac97);
Richard Purdie808db4a2006-10-06 18:20:14 +0200206 void (*warm_reset)(struct snd_ac97 *ac97);
Takashi Iwaiee423812005-11-17 14:21:36 +0100207 void (*write) (struct snd_ac97 *ac97, unsigned short reg, unsigned short val);
208 unsigned short (*read) (struct snd_ac97 *ac97, unsigned short reg);
209 void (*wait) (struct snd_ac97 *ac97);
210 void (*init) (struct snd_ac97 *ac97);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212
Takashi Iwaiee423812005-11-17 14:21:36 +0100213struct snd_ac97_bus {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 /* -- lowlevel (hardware) driver specific -- */
Takashi Iwaiee423812005-11-17 14:21:36 +0100215 struct snd_ac97_bus_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 void *private_data;
Takashi Iwaiee423812005-11-17 14:21:36 +0100217 void (*private_free) (struct snd_ac97_bus *bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 /* --- */
Takashi Iwaiee423812005-11-17 14:21:36 +0100219 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 unsigned short num; /* bus number */
221 unsigned short no_vra: 1, /* bridge doesn't support VRA */
222 dra: 1, /* bridge supports double rate */
223 isdin: 1;/* independent SDIN */
224 unsigned int clock; /* AC'97 base clock (usually 48000Hz) */
225 spinlock_t bus_lock; /* used mainly for slot allocation */
226 unsigned short used_slots[2][4]; /* actually used PCM slots */
227 unsigned short pcms_count; /* count of PCMs */
228 struct ac97_pcm *pcms;
Takashi Iwaiee423812005-11-17 14:21:36 +0100229 struct snd_ac97 *codec[4];
230 struct snd_info_entry *proc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231};
232
Takashi Iwai7c5706b2006-03-15 13:52:54 +0100233/* static resolution table */
234struct snd_ac97_res_table {
235 unsigned short reg; /* register */
236 unsigned short bits; /* resolution bitmask */
237};
238
Takashi Iwaiee423812005-11-17 14:21:36 +0100239struct snd_ac97_template {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 void *private_data;
Takashi Iwaiee423812005-11-17 14:21:36 +0100241 void (*private_free) (struct snd_ac97 *ac97);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 struct pci_dev *pci; /* assigned PCI device - used for quirks */
243 unsigned short num; /* number of codec: 0 = primary, 1 = secondary */
244 unsigned short addr; /* physical address of codec [0-3] */
245 unsigned int scaps; /* driver capabilities */
Takashi Iwai7c5706b2006-03-15 13:52:54 +0100246 const struct snd_ac97_res_table *res_table; /* static resolution */
Takashi Iwai50dabc22006-02-09 11:45:20 +0100247};
248
Takashi Iwaiee423812005-11-17 14:21:36 +0100249struct snd_ac97 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 /* -- lowlevel (hardware) driver specific -- */
Hanno Boeck3e8b3b92011-01-14 19:14:47 +0100251 const struct snd_ac97_build_ops *build_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 void *private_data;
Takashi Iwaiee423812005-11-17 14:21:36 +0100253 void (*private_free) (struct snd_ac97 *ac97);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /* --- */
Takashi Iwaiee423812005-11-17 14:21:36 +0100255 struct snd_ac97_bus *bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 struct pci_dev *pci; /* assigned PCI device - used for quirks */
Takashi Iwaiee423812005-11-17 14:21:36 +0100257 struct snd_info_entry *proc;
258 struct snd_info_entry *proc_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 unsigned short subsystem_vendor;
260 unsigned short subsystem_device;
Ingo Molnar62932df2006-01-16 16:34:20 +0100261 struct mutex reg_mutex;
262 struct mutex page_mutex; /* mutex for AD18xx multi-codecs and paging (2.3) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 unsigned short num; /* number of codec: 0 = primary, 1 = secondary */
264 unsigned short addr; /* physical address of codec [0-3] */
265 unsigned int id; /* identification of codec */
266 unsigned short caps; /* capabilities (register 0) */
267 unsigned short ext_id; /* extended feature identification (register 28) */
268 unsigned short ext_mid; /* extended modem ID (register 3C) */
Takashi Iwai50dabc22006-02-09 11:45:20 +0100269 const struct snd_ac97_res_table *res_table; /* static resolution */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 unsigned int scaps; /* driver capabilities */
271 unsigned int flags; /* specific code */
272 unsigned int rates[6]; /* see AC97_RATES_* defines */
273 unsigned int spdif_status;
274 unsigned short regs[0x80]; /* register cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 DECLARE_BITMAP(reg_accessed, 0x80); /* bit flags */
276 union { /* vendor specific code */
277 struct {
278 unsigned short unchained[3]; // 0 = C34, 1 = C79, 2 = C69
279 unsigned short chained[3]; // 0 = C34, 1 = C79, 2 = C69
280 unsigned short id[3]; // codec IDs (lower 16-bit word)
281 unsigned short pcmreg[3]; // PCM registers
282 unsigned short codec_cfg[3]; // CODEC_CFG bits
Randy Cushman67e9f4b2006-12-22 12:44:25 +0100283 unsigned char swap_mic_linein; // AD1986/AD1986A only
Takashi Iwaie48d6d92008-05-29 08:16:56 +0200284 unsigned char lo_as_master; /* LO as master */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 } ad18xx;
286 unsigned int dev_flags; /* device specific */
287 } spec;
Takashi Iwaieb8caf32005-04-13 14:32:57 +0200288 /* jack-sharing info */
289 unsigned char indep_surround;
290 unsigned char channel_mode;
Takashi Iwai6dbe6622006-06-27 18:28:53 +0200291
292#ifdef CONFIG_SND_AC97_POWER_SAVE
293 unsigned int power_up; /* power states */
David Howellsc4028952006-11-22 14:57:56 +0000294 struct delayed_work power_work;
Takashi Iwai6dbe6622006-06-27 18:28:53 +0200295#endif
Liam Girdwood0ca06a02005-07-29 16:13:36 +0200296 struct device dev;
Robert Jarzmik9bf5c3d2015-11-11 13:12:51 +0100297 struct snd_ac97_gpio_priv *gpio_priv;
Takashi Iwai833a4932012-08-03 17:59:36 +0200298
299 struct snd_pcm_chmap *chmaps[2]; /* channel-maps (optional) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300};
301
Takashi Iwaiee423812005-11-17 14:21:36 +0100302#define to_ac97_t(d) container_of(d, struct snd_ac97, dev)
Nicolas Pitre72e75de2005-09-16 18:49:22 +0200303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304/* conditions */
Takashi Iwaiee423812005-11-17 14:21:36 +0100305static inline int ac97_is_audio(struct snd_ac97 * ac97)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 return (ac97->scaps & AC97_SCAP_AUDIO);
308}
Takashi Iwaiee423812005-11-17 14:21:36 +0100309static inline int ac97_is_modem(struct snd_ac97 * ac97)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 return (ac97->scaps & AC97_SCAP_MODEM);
312}
Takashi Iwaiee423812005-11-17 14:21:36 +0100313static inline int ac97_is_rev22(struct snd_ac97 * ac97)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 return (ac97->ext_id & AC97_EI_REV_MASK) >= AC97_EI_REV_22;
316}
Takashi Iwaiee423812005-11-17 14:21:36 +0100317static inline int ac97_can_amap(struct snd_ac97 * ac97)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 return (ac97->ext_id & AC97_EI_AMAP) != 0;
320}
Takashi Iwaiee423812005-11-17 14:21:36 +0100321static inline int ac97_can_spdif(struct snd_ac97 * ac97)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 return (ac97->ext_id & AC97_EI_SPDIF) != 0;
324}
325
326/* functions */
Takashi Iwaiee423812005-11-17 14:21:36 +0100327/* create new AC97 bus */
328int snd_ac97_bus(struct snd_card *card, int num, struct snd_ac97_bus_ops *ops,
329 void *private_data, struct snd_ac97_bus **rbus);
330/* create mixer controls */
331int snd_ac97_mixer(struct snd_ac97_bus *bus, struct snd_ac97_template *template,
332 struct snd_ac97 **rac97);
333const char *snd_ac97_get_short_name(struct snd_ac97 *ac97);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Takashi Iwaiee423812005-11-17 14:21:36 +0100335void snd_ac97_write(struct snd_ac97 *ac97, unsigned short reg, unsigned short value);
336unsigned short snd_ac97_read(struct snd_ac97 *ac97, unsigned short reg);
337void snd_ac97_write_cache(struct snd_ac97 *ac97, unsigned short reg, unsigned short value);
338int snd_ac97_update(struct snd_ac97 *ac97, unsigned short reg, unsigned short value);
339int snd_ac97_update_bits(struct snd_ac97 *ac97, unsigned short reg, unsigned short mask, unsigned short value);
Takashi Iwai6dbe6622006-06-27 18:28:53 +0200340#ifdef CONFIG_SND_AC97_POWER_SAVE
341int snd_ac97_update_power(struct snd_ac97 *ac97, int reg, int powerup);
342#else
343static inline int snd_ac97_update_power(struct snd_ac97 *ac97, int reg,
344 int powerup)
345{
346 return 0;
347}
348#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349#ifdef CONFIG_PM
Takashi Iwaiee423812005-11-17 14:21:36 +0100350void snd_ac97_suspend(struct snd_ac97 *ac97);
351void snd_ac97_resume(struct snd_ac97 *ac97);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352#endif
Lars-Peter Clausen5f1d9802015-07-21 21:53:00 +0200353int snd_ac97_reset(struct snd_ac97 *ac97, bool try_warm, unsigned int id,
354 unsigned int id_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356/* quirk types */
357enum {
358 AC97_TUNE_DEFAULT = -1, /* use default from quirk list (not valid in list) */
359 AC97_TUNE_NONE = 0, /* nothing extra to do */
360 AC97_TUNE_HP_ONLY, /* headphone (true line-out) control as master only */
361 AC97_TUNE_SWAP_HP, /* swap headphone and master controls */
362 AC97_TUNE_SWAP_SURROUND, /* swap master and surround controls */
363 AC97_TUNE_AD_SHARING, /* for AD1985, turn on OMS bit and use headphone */
364 AC97_TUNE_ALC_JACK, /* for Realtek, enable JACK detection */
365 AC97_TUNE_INV_EAPD, /* inverted EAPD implementation */
366 AC97_TUNE_MUTE_LED, /* EAPD bit works as mute LED */
Matthew Garretta0faefe2005-12-06 13:59:12 +0100367 AC97_TUNE_HP_MUTE_LED, /* EAPD bit works as mute LED, use headphone control as master */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368};
369
370struct ac97_quirk {
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +0200371 unsigned short subvendor; /* PCI subsystem vendor id */
Jean Delvare83cf0a92009-10-20 11:11:52 +0200372 unsigned short subdevice; /* PCI subsystem device id */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 unsigned short mask; /* device id bit mask, 0 = accept all */
374 unsigned int codec_id; /* codec id (if any), 0 = accept all */
375 const char *name; /* name shown as info */
376 int type; /* quirk type above */
377};
378
Joe Percheseab0fbf2015-04-04 13:38:25 -0700379int snd_ac97_tune_hardware(struct snd_ac97 *ac97,
380 const struct ac97_quirk *quirk,
381 const char *override);
Takashi Iwaiee423812005-11-17 14:21:36 +0100382int snd_ac97_set_rate(struct snd_ac97 *ac97, int reg, unsigned int rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Takashi Iwaib9b4bdd2005-11-17 10:42:40 +0100384/*
385 * PCM allocation
386 */
387
388enum ac97_pcm_cfg {
389 AC97_PCM_CFG_FRONT = 2,
390 AC97_PCM_CFG_REAR = 10, /* alias surround */
391 AC97_PCM_CFG_LFE = 11, /* center + lfe */
392 AC97_PCM_CFG_40 = 4, /* front + rear */
393 AC97_PCM_CFG_51 = 6, /* front + rear + center/lfe */
394 AC97_PCM_CFG_SPDIF = 20
395};
396
397struct ac97_pcm {
Takashi Iwaiee423812005-11-17 14:21:36 +0100398 struct snd_ac97_bus *bus;
Takashi Iwaib9b4bdd2005-11-17 10:42:40 +0100399 unsigned int stream: 1, /* stream type: 1 = capture */
400 exclusive: 1, /* exclusive mode, don't override with other pcms */
401 copy_flag: 1, /* lowlevel driver must fill all entries */
402 spdif: 1; /* spdif pcm */
403 unsigned short aslots; /* active slots */
Takashi Iwai6dbe6622006-06-27 18:28:53 +0200404 unsigned short cur_dbl; /* current double-rate state */
Takashi Iwaib9b4bdd2005-11-17 10:42:40 +0100405 unsigned int rates; /* available rates */
406 struct {
407 unsigned short slots; /* driver input: requested AC97 slot numbers */
408 unsigned short rslots[4]; /* allocated slots per codecs */
409 unsigned char rate_table[4];
Takashi Iwaiee423812005-11-17 14:21:36 +0100410 struct snd_ac97 *codec[4]; /* allocated codecs */
Takashi Iwaib9b4bdd2005-11-17 10:42:40 +0100411 } r[2]; /* 0 = standard rates, 1 = double rates */
412 unsigned long private_value; /* used by the hardware driver */
413};
414
Takashi Iwaiee423812005-11-17 14:21:36 +0100415int snd_ac97_pcm_assign(struct snd_ac97_bus *ac97,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 unsigned short pcms_count,
417 const struct ac97_pcm *pcms);
418int snd_ac97_pcm_open(struct ac97_pcm *pcm, unsigned int rate,
419 enum ac97_pcm_cfg cfg, unsigned short slots);
420int snd_ac97_pcm_close(struct ac97_pcm *pcm);
Takashi Iwaiee423812005-11-17 14:21:36 +0100421int snd_ac97_pcm_double_rate_rules(struct snd_pcm_runtime *runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Liam Girdwood0ca06a02005-07-29 16:13:36 +0200423/* ad hoc AC97 device driver access */
424extern struct bus_type ac97_bus_type;
425
Marek Vasut474828a2009-07-22 13:01:03 +0200426/* AC97 platform_data adding function */
427static inline void snd_ac97_dev_add_pdata(struct snd_ac97 *ac97, void *data)
428{
429 ac97->dev.platform_data = data;
430}
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432#endif /* __SOUND_AC97_CODEC_H */