xref: /openbmc/linux/sound/pci/hda/hda_local.h (revision bc759721fb44bc07e4f82445cc378a9d2724651f)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * Universal Interface for Intel High Definition Audio Codec
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  * Local helper functions
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
71da177e4SLinus Torvalds  *
81da177e4SLinus Torvalds  *  This program is free software; you can redistribute it and/or modify it
91da177e4SLinus Torvalds  *  under the terms of the GNU General Public License as published by the Free
101da177e4SLinus Torvalds  *  Software Foundation; either version 2 of the License, or (at your option)
111da177e4SLinus Torvalds  *  any later version.
121da177e4SLinus Torvalds  *
131da177e4SLinus Torvalds  *  This program is distributed in the hope that it will be useful, but WITHOUT
141da177e4SLinus Torvalds  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
151da177e4SLinus Torvalds  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
161da177e4SLinus Torvalds  *  more details.
171da177e4SLinus Torvalds  *
181da177e4SLinus Torvalds  *  You should have received a copy of the GNU General Public License along with
191da177e4SLinus Torvalds  *  this program; if not, write to the Free Software Foundation, Inc., 59
201da177e4SLinus Torvalds  *  Temple Place - Suite 330, Boston, MA  02111-1307, USA.
211da177e4SLinus Torvalds  */
221da177e4SLinus Torvalds 
231da177e4SLinus Torvalds #ifndef __SOUND_HDA_LOCAL_H
241da177e4SLinus Torvalds #define __SOUND_HDA_LOCAL_H
251da177e4SLinus Torvalds 
269c96fa59STakashi Iwai /* We abuse kcontrol_new.subdev field to pass the NID corresponding to
279c96fa59STakashi Iwai  * the given new control.  If id.subdev has a bit flag HDA_SUBDEV_NID_FLAG,
289c96fa59STakashi Iwai  * snd_hda_ctl_add() takes the lower-bit subdev value as a valid NID.
299c96fa59STakashi Iwai  *
309c96fa59STakashi Iwai  * Note that the subdevice field is cleared again before the real registration
319c96fa59STakashi Iwai  * in snd_hda_ctl_add(), so that this value won't appear in the outside.
329c96fa59STakashi Iwai  */
339c96fa59STakashi Iwai #define HDA_SUBDEV_NID_FLAG	(1U << 31)
349e3fd871SJaroslav Kysela #define HDA_SUBDEV_AMP_FLAG	(1U << 30)
359c96fa59STakashi Iwai 
361da177e4SLinus Torvalds /*
371da177e4SLinus Torvalds  * for mixer controls
381da177e4SLinus Torvalds  */
3929fdbec2STakashi Iwai #define HDA_COMPOSE_AMP_VAL_OFS(nid,chs,idx,dir,ofs)		\
4029fdbec2STakashi Iwai 	((nid) | ((chs)<<16) | ((dir)<<18) | ((idx)<<19) | ((ofs)<<23))
41de8c85f7SClemens Ladisch #define HDA_AMP_VAL_MIN_MUTE (1<<29)
42d01ce99fSTakashi Iwai #define HDA_COMPOSE_AMP_VAL(nid,chs,idx,dir) \
4329fdbec2STakashi Iwai 	HDA_COMPOSE_AMP_VAL_OFS(nid, chs, idx, dir, 0)
44985be54bSTakashi Iwai /* mono volume with index (index=0,1,...) (channel=1,2) */
45de8c85f7SClemens Ladisch #define HDA_CODEC_VOLUME_MONO_IDX(xname, xcidx, nid, channel, xindex, dir, flags) \
461da177e4SLinus Torvalds 	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx,  \
475e26dfd0SJaroslav Kysela 	  .subdevice = HDA_SUBDEV_AMP_FLAG, \
48302e9c5aSJaroslav Kysela 	  .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
49302e9c5aSJaroslav Kysela 	  	    SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
50302e9c5aSJaroslav Kysela 	  	    SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \
511da177e4SLinus Torvalds 	  .info = snd_hda_mixer_amp_volume_info, \
521da177e4SLinus Torvalds 	  .get = snd_hda_mixer_amp_volume_get, \
531da177e4SLinus Torvalds 	  .put = snd_hda_mixer_amp_volume_put, \
547cf0a953STakashi Iwai 	  .tlv = { .c = snd_hda_mixer_amp_tlv },		\
55de8c85f7SClemens Ladisch 	  .private_value = HDA_COMPOSE_AMP_VAL(nid, channel, xindex, dir) | flags }
56985be54bSTakashi Iwai /* stereo volume with index */
571da177e4SLinus Torvalds #define HDA_CODEC_VOLUME_IDX(xname, xcidx, nid, xindex, direction) \
58de8c85f7SClemens Ladisch 	HDA_CODEC_VOLUME_MONO_IDX(xname, xcidx, nid, 3, xindex, direction, 0)
59985be54bSTakashi Iwai /* mono volume */
601da177e4SLinus Torvalds #define HDA_CODEC_VOLUME_MONO(xname, nid, channel, xindex, direction) \
61de8c85f7SClemens Ladisch 	HDA_CODEC_VOLUME_MONO_IDX(xname, 0, nid, channel, xindex, direction, 0)
62985be54bSTakashi Iwai /* stereo volume */
631da177e4SLinus Torvalds #define HDA_CODEC_VOLUME(xname, nid, xindex, direction) \
641da177e4SLinus Torvalds 	HDA_CODEC_VOLUME_MONO(xname, nid, 3, xindex, direction)
65de8c85f7SClemens Ladisch /* stereo volume with min=mute */
66de8c85f7SClemens Ladisch #define HDA_CODEC_VOLUME_MIN_MUTE(xname, nid, xindex, direction) \
67de8c85f7SClemens Ladisch 	HDA_CODEC_VOLUME_MONO_IDX(xname, 0, nid, 3, xindex, direction, \
68de8c85f7SClemens Ladisch 				  HDA_AMP_VAL_MIN_MUTE)
69985be54bSTakashi Iwai /* mono mute switch with index (index=0,1,...) (channel=1,2) */
701da177e4SLinus Torvalds #define HDA_CODEC_MUTE_MONO_IDX(xname, xcidx, nid, channel, xindex, direction) \
711da177e4SLinus Torvalds 	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \
725e26dfd0SJaroslav Kysela 	  .subdevice = HDA_SUBDEV_AMP_FLAG, \
731da177e4SLinus Torvalds 	  .info = snd_hda_mixer_amp_switch_info, \
741da177e4SLinus Torvalds 	  .get = snd_hda_mixer_amp_switch_get, \
751da177e4SLinus Torvalds 	  .put = snd_hda_mixer_amp_switch_put, \
761da177e4SLinus Torvalds 	  .private_value = HDA_COMPOSE_AMP_VAL(nid, channel, xindex, direction) }
77985be54bSTakashi Iwai /* stereo mute switch with index */
781da177e4SLinus Torvalds #define HDA_CODEC_MUTE_IDX(xname, xcidx, nid, xindex, direction) \
791da177e4SLinus Torvalds 	HDA_CODEC_MUTE_MONO_IDX(xname, xcidx, nid, 3, xindex, direction)
80985be54bSTakashi Iwai /* mono mute switch */
811da177e4SLinus Torvalds #define HDA_CODEC_MUTE_MONO(xname, nid, channel, xindex, direction) \
821da177e4SLinus Torvalds 	HDA_CODEC_MUTE_MONO_IDX(xname, 0, nid, channel, xindex, direction)
83985be54bSTakashi Iwai /* stereo mute switch */
841da177e4SLinus Torvalds #define HDA_CODEC_MUTE(xname, nid, xindex, direction) \
851da177e4SLinus Torvalds 	HDA_CODEC_MUTE_MONO(xname, nid, 3, xindex, direction)
8667d634c0STakashi Iwai #ifdef CONFIG_SND_HDA_INPUT_BEEP
87123c07aeSJaroslav Kysela /* special beep mono mute switch with index (index=0,1,...) (channel=1,2) */
88123c07aeSJaroslav Kysela #define HDA_CODEC_MUTE_BEEP_MONO_IDX(xname, xcidx, nid, channel, xindex, direction) \
89123c07aeSJaroslav Kysela 	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \
905e26dfd0SJaroslav Kysela 	  .subdevice = HDA_SUBDEV_AMP_FLAG, \
91123c07aeSJaroslav Kysela 	  .info = snd_hda_mixer_amp_switch_info, \
920401e854STakashi Iwai 	  .get = snd_hda_mixer_amp_switch_get_beep, \
93123c07aeSJaroslav Kysela 	  .put = snd_hda_mixer_amp_switch_put_beep, \
94123c07aeSJaroslav Kysela 	  .private_value = HDA_COMPOSE_AMP_VAL(nid, channel, xindex, direction) }
9567d634c0STakashi Iwai #else
9667d634c0STakashi Iwai /* no digital beep - just the standard one */
9767d634c0STakashi Iwai #define HDA_CODEC_MUTE_BEEP_MONO_IDX(xname, xcidx, nid, ch, xidx, dir) \
9867d634c0STakashi Iwai 	HDA_CODEC_MUTE_MONO_IDX(xname, xcidx, nid, ch, xidx, dir)
9967d634c0STakashi Iwai #endif /* CONFIG_SND_HDA_INPUT_BEEP */
100123c07aeSJaroslav Kysela /* special beep mono mute switch */
101123c07aeSJaroslav Kysela #define HDA_CODEC_MUTE_BEEP_MONO(xname, nid, channel, xindex, direction) \
102123c07aeSJaroslav Kysela 	HDA_CODEC_MUTE_BEEP_MONO_IDX(xname, 0, nid, channel, xindex, direction)
103123c07aeSJaroslav Kysela /* special beep stereo mute switch */
104123c07aeSJaroslav Kysela #define HDA_CODEC_MUTE_BEEP(xname, nid, xindex, direction) \
105123c07aeSJaroslav Kysela 	HDA_CODEC_MUTE_BEEP_MONO(xname, nid, 3, xindex, direction)
1061da177e4SLinus Torvalds 
10785dd662fSJaroslav Kysela extern const char *snd_hda_pcm_type_name[];
10885dd662fSJaroslav Kysela 
109d01ce99fSTakashi Iwai int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
110d01ce99fSTakashi Iwai 				  struct snd_ctl_elem_info *uinfo);
111d01ce99fSTakashi Iwai int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
112d01ce99fSTakashi Iwai 				 struct snd_ctl_elem_value *ucontrol);
113d01ce99fSTakashi Iwai int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
114d01ce99fSTakashi Iwai 				 struct snd_ctl_elem_value *ucontrol);
115d01ce99fSTakashi Iwai int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
116d01ce99fSTakashi Iwai 			  unsigned int size, unsigned int __user *tlv);
117d01ce99fSTakashi Iwai int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
118d01ce99fSTakashi Iwai 				  struct snd_ctl_elem_info *uinfo);
119d01ce99fSTakashi Iwai int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
120d01ce99fSTakashi Iwai 				 struct snd_ctl_elem_value *ucontrol);
121d01ce99fSTakashi Iwai int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
122d01ce99fSTakashi Iwai 				 struct snd_ctl_elem_value *ucontrol);
12367d634c0STakashi Iwai #ifdef CONFIG_SND_HDA_INPUT_BEEP
1240401e854STakashi Iwai int snd_hda_mixer_amp_switch_get_beep(struct snd_kcontrol *kcontrol,
1250401e854STakashi Iwai 				      struct snd_ctl_elem_value *ucontrol);
126123c07aeSJaroslav Kysela int snd_hda_mixer_amp_switch_put_beep(struct snd_kcontrol *kcontrol,
127123c07aeSJaroslav Kysela 				      struct snd_ctl_elem_value *ucontrol);
12867d634c0STakashi Iwai #endif
129834be88dSTakashi Iwai /* lowlevel accessor with caching; use carefully */
130834be88dSTakashi Iwai int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
131834be88dSTakashi Iwai 			   int direction, int index);
132834be88dSTakashi Iwai int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
133834be88dSTakashi Iwai 			     int direction, int idx, int mask, int val);
13447fd830aSTakashi Iwai int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
13547fd830aSTakashi Iwai 			     int dir, int idx, int mask, int val);
136280e57d5STakashi Iwai int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch,
137280e57d5STakashi Iwai 			   int direction, int idx, int mask, int val);
138280e57d5STakashi Iwai int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid,
139280e57d5STakashi Iwai 				  int dir, int idx, int mask, int val);
140b3ac5636STakashi Iwai void snd_hda_codec_resume_amp(struct hda_codec *codec);
1411da177e4SLinus Torvalds 
1420c3d47b0STakashi Iwai /* it's alias but a bit clearer meaning */
1430c3d47b0STakashi Iwai #define snd_hda_codec_flush_amp_cache(codec) \
1440c3d47b0STakashi Iwai 	snd_hda_codec_resume_amp(codec)
1450c3d47b0STakashi Iwai 
1462134ea4fSTakashi Iwai void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1472134ea4fSTakashi Iwai 			     unsigned int *tlv);
1482134ea4fSTakashi Iwai struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1492134ea4fSTakashi Iwai 					    const char *name);
15018478e8bSTakashi Iwai int __snd_hda_add_vmaster(struct hda_codec *codec, char *name,
1519322ca54STakashi Iwai 			  unsigned int *tlv, const char * const *slaves,
15229e5853dSTakashi Iwai 			  const char *suffix, bool init_slave_vol,
15329e5853dSTakashi Iwai 			  struct snd_kcontrol **ctl_ret);
15418478e8bSTakashi Iwai #define snd_hda_add_vmaster(codec, name, tlv, slaves, suffix) \
15529e5853dSTakashi Iwai 	__snd_hda_add_vmaster(codec, name, tlv, slaves, suffix, true, NULL)
156a65d629cSTakashi Iwai int snd_hda_codec_reset(struct hda_codec *codec);
1572134ea4fSTakashi Iwai 
158d2f344b5STakashi Iwai enum {
159d2f344b5STakashi Iwai 	HDA_VMUTE_OFF,
160d2f344b5STakashi Iwai 	HDA_VMUTE_ON,
161d2f344b5STakashi Iwai 	HDA_VMUTE_FOLLOW_MASTER,
162d2f344b5STakashi Iwai };
163d2f344b5STakashi Iwai 
164d2f344b5STakashi Iwai struct hda_vmaster_mute_hook {
165d2f344b5STakashi Iwai 	/* below two fields must be filled by the caller of
166d2f344b5STakashi Iwai 	 * snd_hda_add_vmaster_hook() beforehand
167d2f344b5STakashi Iwai 	 */
168d2f344b5STakashi Iwai 	struct snd_kcontrol *sw_kctl;
169d2f344b5STakashi Iwai 	void (*hook)(void *, int);
170d2f344b5STakashi Iwai 	/* below are initialized automatically */
171d2f344b5STakashi Iwai 	unsigned int mute_mode; /* HDA_VMUTE_XXX */
172d2f344b5STakashi Iwai 	struct hda_codec *codec;
173d2f344b5STakashi Iwai };
174d2f344b5STakashi Iwai 
175d2f344b5STakashi Iwai int snd_hda_add_vmaster_hook(struct hda_codec *codec,
176f29735cbSTakashi Iwai 			     struct hda_vmaster_mute_hook *hook,
177f29735cbSTakashi Iwai 			     bool expose_enum_ctl);
178d2f344b5STakashi Iwai void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook);
179d2f344b5STakashi Iwai 
18047fd830aSTakashi Iwai /* amp value bits */
18147fd830aSTakashi Iwai #define HDA_AMP_MUTE	0x80
18247fd830aSTakashi Iwai #define HDA_AMP_UNMUTE	0x00
18347fd830aSTakashi Iwai #define HDA_AMP_VOLMASK	0x7f
18447fd830aSTakashi Iwai 
185985be54bSTakashi Iwai /* mono switch binding multiple inputs */
186985be54bSTakashi Iwai #define HDA_BIND_MUTE_MONO(xname, nid, channel, indices, direction) \
187985be54bSTakashi Iwai 	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
188985be54bSTakashi Iwai 	  .info = snd_hda_mixer_amp_switch_info, \
189985be54bSTakashi Iwai 	  .get = snd_hda_mixer_bind_switch_get, \
190985be54bSTakashi Iwai 	  .put = snd_hda_mixer_bind_switch_put, \
191985be54bSTakashi Iwai 	  .private_value = HDA_COMPOSE_AMP_VAL(nid, channel, indices, direction) }
192985be54bSTakashi Iwai 
193985be54bSTakashi Iwai /* stereo switch binding multiple inputs */
194d01ce99fSTakashi Iwai #define HDA_BIND_MUTE(xname,nid,indices,dir) \
195d01ce99fSTakashi Iwai 	HDA_BIND_MUTE_MONO(xname,nid,3,indices,dir)
196985be54bSTakashi Iwai 
197d01ce99fSTakashi Iwai int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
198d01ce99fSTakashi Iwai 				  struct snd_ctl_elem_value *ucontrol);
199d01ce99fSTakashi Iwai int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
200d01ce99fSTakashi Iwai 				  struct snd_ctl_elem_value *ucontrol);
201985be54bSTakashi Iwai 
202532d5381STakashi Iwai /* more generic bound controls */
203532d5381STakashi Iwai struct hda_ctl_ops {
204532d5381STakashi Iwai 	snd_kcontrol_info_t *info;
205532d5381STakashi Iwai 	snd_kcontrol_get_t *get;
206532d5381STakashi Iwai 	snd_kcontrol_put_t *put;
207532d5381STakashi Iwai 	snd_kcontrol_tlv_rw_t *tlv;
208532d5381STakashi Iwai };
209532d5381STakashi Iwai 
210532d5381STakashi Iwai extern struct hda_ctl_ops snd_hda_bind_vol;	/* for bind-volume with TLV */
211532d5381STakashi Iwai extern struct hda_ctl_ops snd_hda_bind_sw;	/* for bind-switch */
212532d5381STakashi Iwai 
213532d5381STakashi Iwai struct hda_bind_ctls {
214532d5381STakashi Iwai 	struct hda_ctl_ops *ops;
2155d9b6c07SHannes Eder 	unsigned long values[];
216532d5381STakashi Iwai };
217532d5381STakashi Iwai 
218532d5381STakashi Iwai int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
219532d5381STakashi Iwai 				 struct snd_ctl_elem_info *uinfo);
220532d5381STakashi Iwai int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
221532d5381STakashi Iwai 				struct snd_ctl_elem_value *ucontrol);
222532d5381STakashi Iwai int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
223532d5381STakashi Iwai 				struct snd_ctl_elem_value *ucontrol);
224532d5381STakashi Iwai int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
225532d5381STakashi Iwai 			   unsigned int size, unsigned int __user *tlv);
226532d5381STakashi Iwai 
227532d5381STakashi Iwai #define HDA_BIND_VOL(xname, bindrec) \
228532d5381STakashi Iwai 	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
229532d5381STakashi Iwai 	  .name = xname, \
230532d5381STakashi Iwai 	  .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
231532d5381STakashi Iwai 			  SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
232532d5381STakashi Iwai 			  SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,\
233532d5381STakashi Iwai 	  .info = snd_hda_mixer_bind_ctls_info,\
234532d5381STakashi Iwai 	  .get =  snd_hda_mixer_bind_ctls_get,\
235532d5381STakashi Iwai 	  .put = snd_hda_mixer_bind_ctls_put,\
236532d5381STakashi Iwai 	  .tlv = { .c = snd_hda_mixer_bind_tlv },\
237532d5381STakashi Iwai 	  .private_value = (long) (bindrec) }
238532d5381STakashi Iwai #define HDA_BIND_SW(xname, bindrec) \
239532d5381STakashi Iwai 	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,\
240532d5381STakashi Iwai 	  .name = xname, \
241532d5381STakashi Iwai 	  .info = snd_hda_mixer_bind_ctls_info,\
242532d5381STakashi Iwai 	  .get =  snd_hda_mixer_bind_ctls_get,\
243532d5381STakashi Iwai 	  .put = snd_hda_mixer_bind_ctls_put,\
244532d5381STakashi Iwai 	  .private_value = (long) (bindrec) }
245532d5381STakashi Iwai 
246532d5381STakashi Iwai /*
247532d5381STakashi Iwai  * SPDIF I/O
248532d5381STakashi Iwai  */
249dcda5806STakashi Iwai int snd_hda_create_dig_out_ctls(struct hda_codec *codec,
25074b654c9SStephen Warren 				hda_nid_t associated_nid,
251dcda5806STakashi Iwai 				hda_nid_t cvt_nid, int type);
252dcda5806STakashi Iwai #define snd_hda_create_spdif_out_ctls(codec, anid, cnid) \
253dcda5806STakashi Iwai 	snd_hda_create_dig_out_ctls(codec, anid, cnid, HDA_PCM_TYPE_SPDIF)
2541da177e4SLinus Torvalds int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid);
2551da177e4SLinus Torvalds 
2561da177e4SLinus Torvalds /*
2571da177e4SLinus Torvalds  * input MUX helper
2581da177e4SLinus Torvalds  */
25954d17403STakashi Iwai #define HDA_MAX_NUM_INPUTS	16
2601da177e4SLinus Torvalds struct hda_input_mux_item {
261b5786e85STakashi Iwai 	char label[32];
2621da177e4SLinus Torvalds 	unsigned int index;
2631da177e4SLinus Torvalds };
2641da177e4SLinus Torvalds struct hda_input_mux {
2651da177e4SLinus Torvalds 	unsigned int num_items;
2661da177e4SLinus Torvalds 	struct hda_input_mux_item items[HDA_MAX_NUM_INPUTS];
2671da177e4SLinus Torvalds };
2681da177e4SLinus Torvalds 
269d01ce99fSTakashi Iwai int snd_hda_input_mux_info(const struct hda_input_mux *imux,
270d01ce99fSTakashi Iwai 			   struct snd_ctl_elem_info *uinfo);
271d01ce99fSTakashi Iwai int snd_hda_input_mux_put(struct hda_codec *codec,
272d01ce99fSTakashi Iwai 			  const struct hda_input_mux *imux,
273c8b6bf9bSTakashi Iwai 			  struct snd_ctl_elem_value *ucontrol, hda_nid_t nid,
2741da177e4SLinus Torvalds 			  unsigned int *cur_val);
275128bc4baSTakashi Iwai int snd_hda_add_imux_item(struct hda_input_mux *imux, const char *label,
276128bc4baSTakashi Iwai 			  int index, int *type_index_ret);
2771da177e4SLinus Torvalds 
278d2a6d7dcSTakashi Iwai /*
279d2a6d7dcSTakashi Iwai  * Channel mode helper
280d2a6d7dcSTakashi Iwai  */
281d2a6d7dcSTakashi Iwai struct hda_channel_mode {
282d2a6d7dcSTakashi Iwai 	int channels;
283d2a6d7dcSTakashi Iwai 	const struct hda_verb *sequence;
284d2a6d7dcSTakashi Iwai };
285d2a6d7dcSTakashi Iwai 
286d01ce99fSTakashi Iwai int snd_hda_ch_mode_info(struct hda_codec *codec,
287d01ce99fSTakashi Iwai 			 struct snd_ctl_elem_info *uinfo,
288d01ce99fSTakashi Iwai 			 const struct hda_channel_mode *chmode,
289d01ce99fSTakashi Iwai 			 int num_chmodes);
290d01ce99fSTakashi Iwai int snd_hda_ch_mode_get(struct hda_codec *codec,
291d01ce99fSTakashi Iwai 			struct snd_ctl_elem_value *ucontrol,
292d01ce99fSTakashi Iwai 			const struct hda_channel_mode *chmode,
293d01ce99fSTakashi Iwai 			int num_chmodes,
294d2a6d7dcSTakashi Iwai 			int max_channels);
295d01ce99fSTakashi Iwai int snd_hda_ch_mode_put(struct hda_codec *codec,
296d01ce99fSTakashi Iwai 			struct snd_ctl_elem_value *ucontrol,
297d01ce99fSTakashi Iwai 			const struct hda_channel_mode *chmode,
298d01ce99fSTakashi Iwai 			int num_chmodes,
299d2a6d7dcSTakashi Iwai 			int *max_channelsp);
300d2a6d7dcSTakashi Iwai 
3011da177e4SLinus Torvalds /*
3021da177e4SLinus Torvalds  * Multi-channel / digital-out PCM helper
3031da177e4SLinus Torvalds  */
3041da177e4SLinus Torvalds 
3051da177e4SLinus Torvalds enum { HDA_FRONT, HDA_REAR, HDA_CLFE, HDA_SIDE }; /* index for dac_nidx */
3061da177e4SLinus Torvalds enum { HDA_DIG_NONE, HDA_DIG_EXCLUSIVE, HDA_DIG_ANALOG_DUP }; /* dig_out_used */
3071da177e4SLinus Torvalds 
308a06dbfc2STakashi Iwai #define HDA_MAX_OUTS	5
309a06dbfc2STakashi Iwai 
3101da177e4SLinus Torvalds struct hda_multi_out {
3111da177e4SLinus Torvalds 	int num_dacs;		/* # of DACs, must be more than 1 */
312dda14410STakashi Iwai 	const hda_nid_t *dac_nids;	/* DAC list */
3131da177e4SLinus Torvalds 	hda_nid_t hp_nid;	/* optional DAC for HP, 0 when not exists */
314a06dbfc2STakashi Iwai 	hda_nid_t hp_out_nid[HDA_MAX_OUTS];	/* DACs for multiple HPs */
315a06dbfc2STakashi Iwai 	hda_nid_t extra_out_nid[HDA_MAX_OUTS];	/* other (e.g. speaker) DACs */
3161da177e4SLinus Torvalds 	hda_nid_t dig_out_nid;	/* digital out audio widget */
317dda14410STakashi Iwai 	const hda_nid_t *slave_dig_outs;
3181da177e4SLinus Torvalds 	int max_channels;	/* currently supported analog channels */
3191da177e4SLinus Torvalds 	int dig_out_used;	/* current usage of digital out (HDA_DIG_XXX) */
320d29240ceSTakashi Iwai 	int no_share_stream;	/* don't share a stream with multiple pins */
3219a08160bSTakashi Iwai 	int share_spdif;	/* share SPDIF pin */
3229a08160bSTakashi Iwai 	/* PCM information for both analog and SPDIF DACs */
3239a08160bSTakashi Iwai 	unsigned int analog_rates;
3249a08160bSTakashi Iwai 	unsigned int analog_maxbps;
3259a08160bSTakashi Iwai 	u64 analog_formats;
3269a08160bSTakashi Iwai 	unsigned int spdif_rates;
3279a08160bSTakashi Iwai 	unsigned int spdif_maxbps;
3289a08160bSTakashi Iwai 	u64 spdif_formats;
3291da177e4SLinus Torvalds };
3301da177e4SLinus Torvalds 
3319a08160bSTakashi Iwai int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
3329a08160bSTakashi Iwai 				  struct hda_multi_out *mout);
333d01ce99fSTakashi Iwai int snd_hda_multi_out_dig_open(struct hda_codec *codec,
334d01ce99fSTakashi Iwai 			       struct hda_multi_out *mout);
335d01ce99fSTakashi Iwai int snd_hda_multi_out_dig_close(struct hda_codec *codec,
336d01ce99fSTakashi Iwai 				struct hda_multi_out *mout);
3376b97eb45STakashi Iwai int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
3386b97eb45STakashi Iwai 				  struct hda_multi_out *mout,
3396b97eb45STakashi Iwai 				  unsigned int stream_tag,
3406b97eb45STakashi Iwai 				  unsigned int format,
3416b97eb45STakashi Iwai 				  struct snd_pcm_substream *substream);
3429411e21cSTakashi Iwai int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
3439411e21cSTakashi Iwai 				  struct hda_multi_out *mout);
344d01ce99fSTakashi Iwai int snd_hda_multi_out_analog_open(struct hda_codec *codec,
345d01ce99fSTakashi Iwai 				  struct hda_multi_out *mout,
3469a08160bSTakashi Iwai 				  struct snd_pcm_substream *substream,
3479a08160bSTakashi Iwai 				  struct hda_pcm_stream *hinfo);
348d01ce99fSTakashi Iwai int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
349d01ce99fSTakashi Iwai 				     struct hda_multi_out *mout,
3501da177e4SLinus Torvalds 				     unsigned int stream_tag,
3511da177e4SLinus Torvalds 				     unsigned int format,
352c8b6bf9bSTakashi Iwai 				     struct snd_pcm_substream *substream);
353d01ce99fSTakashi Iwai int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
354d01ce99fSTakashi Iwai 				     struct hda_multi_out *mout);
3551da177e4SLinus Torvalds 
3561da177e4SLinus Torvalds /*
3571da177e4SLinus Torvalds  * generic codec parser
3581da177e4SLinus Torvalds  */
35935a1e0ccSTakashi Iwai #ifdef CONFIG_SND_HDA_GENERIC
3601da177e4SLinus Torvalds int snd_hda_parse_generic_codec(struct hda_codec *codec);
36135a1e0ccSTakashi Iwai #else
36235a1e0ccSTakashi Iwai static inline int snd_hda_parse_generic_codec(struct hda_codec *codec)
36335a1e0ccSTakashi Iwai {
36435a1e0ccSTakashi Iwai 	return -ENODEV;
36535a1e0ccSTakashi Iwai }
36635a1e0ccSTakashi Iwai #endif
3671da177e4SLinus Torvalds 
3681da177e4SLinus Torvalds /*
3691da177e4SLinus Torvalds  * generic proc interface
3701da177e4SLinus Torvalds  */
3711da177e4SLinus Torvalds #ifdef CONFIG_PROC_FS
3721da177e4SLinus Torvalds int snd_hda_codec_proc_new(struct hda_codec *codec);
3731da177e4SLinus Torvalds #else
3741da177e4SLinus Torvalds static inline int snd_hda_codec_proc_new(struct hda_codec *codec) { return 0; }
3751da177e4SLinus Torvalds #endif
3761da177e4SLinus Torvalds 
377d39b4352SWu Fengguang #define SND_PRINT_BITS_ADVISED_BUFSIZE	16
378d39b4352SWu Fengguang void snd_print_pcm_bits(int pcm, char *buf, int buflen);
379d39b4352SWu Fengguang 
3801da177e4SLinus Torvalds /*
3811da177e4SLinus Torvalds  * Misc
3821da177e4SLinus Torvalds  */
383f5fcc13cSTakashi Iwai int snd_hda_check_board_config(struct hda_codec *codec, int num_configs,
384ea734963STakashi Iwai 			       const char * const *modelnames,
385f5fcc13cSTakashi Iwai 			       const struct snd_pci_quirk *pci_list);
3862eda3445SMauro Carvalho Chehab int snd_hda_check_board_codec_sid_config(struct hda_codec *codec,
387ea734963STakashi Iwai                                int num_configs, const char * const *models,
3882eda3445SMauro Carvalho Chehab                                const struct snd_pci_quirk *tbl);
389d01ce99fSTakashi Iwai int snd_hda_add_new_ctls(struct hda_codec *codec,
390031024eeSTakashi Iwai 			 const struct snd_kcontrol_new *knew);
3911da177e4SLinus Torvalds 
3921da177e4SLinus Torvalds /*
393c9ce6b26STakashi Iwai  * Fix-up pin default configurations and add default verbs
394c9ce6b26STakashi Iwai  */
395c9ce6b26STakashi Iwai 
396c9ce6b26STakashi Iwai struct hda_pintbl {
397c9ce6b26STakashi Iwai 	hda_nid_t nid;
398c9ce6b26STakashi Iwai 	u32 val;
399c9ce6b26STakashi Iwai };
400c9ce6b26STakashi Iwai 
401c9ce6b26STakashi Iwai struct hda_model_fixup {
402c9ce6b26STakashi Iwai 	const int id;
403c9ce6b26STakashi Iwai 	const char *name;
404c9ce6b26STakashi Iwai };
405c9ce6b26STakashi Iwai 
406c9ce6b26STakashi Iwai struct hda_fixup {
407c9ce6b26STakashi Iwai 	int type;
408c9ce6b26STakashi Iwai 	bool chained;
409c9ce6b26STakashi Iwai 	int chain_id;
410c9ce6b26STakashi Iwai 	union {
411c9ce6b26STakashi Iwai 		const struct hda_pintbl *pins;
412c9ce6b26STakashi Iwai 		const struct hda_verb *verbs;
413c9ce6b26STakashi Iwai 		void (*func)(struct hda_codec *codec,
414c9ce6b26STakashi Iwai 			     const struct hda_fixup *fix,
415c9ce6b26STakashi Iwai 			     int action);
416c9ce6b26STakashi Iwai 	} v;
417c9ce6b26STakashi Iwai };
418c9ce6b26STakashi Iwai 
419c9ce6b26STakashi Iwai /* fixup types */
420c9ce6b26STakashi Iwai enum {
421c9ce6b26STakashi Iwai 	HDA_FIXUP_INVALID,
422c9ce6b26STakashi Iwai 	HDA_FIXUP_PINS,
423c9ce6b26STakashi Iwai 	HDA_FIXUP_VERBS,
424c9ce6b26STakashi Iwai 	HDA_FIXUP_FUNC,
425fd108215STakashi Iwai 	HDA_FIXUP_PINCTLS,
426c9ce6b26STakashi Iwai };
427c9ce6b26STakashi Iwai 
428c9ce6b26STakashi Iwai /* fixup action definitions */
429c9ce6b26STakashi Iwai enum {
430c9ce6b26STakashi Iwai 	HDA_FIXUP_ACT_PRE_PROBE,
431c9ce6b26STakashi Iwai 	HDA_FIXUP_ACT_PROBE,
432c9ce6b26STakashi Iwai 	HDA_FIXUP_ACT_INIT,
433c9ce6b26STakashi Iwai 	HDA_FIXUP_ACT_BUILD,
434c9ce6b26STakashi Iwai };
435c9ce6b26STakashi Iwai 
436c9ce6b26STakashi Iwai int snd_hda_add_verbs(struct hda_codec *codec, const struct hda_verb *list);
437c9ce6b26STakashi Iwai void snd_hda_apply_verbs(struct hda_codec *codec);
438c9ce6b26STakashi Iwai void snd_hda_apply_pincfgs(struct hda_codec *codec,
439c9ce6b26STakashi Iwai 			   const struct hda_pintbl *cfg);
440c9ce6b26STakashi Iwai void snd_hda_apply_fixup(struct hda_codec *codec, int action);
441c9ce6b26STakashi Iwai void snd_hda_pick_fixup(struct hda_codec *codec,
442c9ce6b26STakashi Iwai 			const struct hda_model_fixup *models,
443c9ce6b26STakashi Iwai 			const struct snd_pci_quirk *quirk,
444c9ce6b26STakashi Iwai 			const struct hda_fixup *fixlist);
445c9ce6b26STakashi Iwai 
446c9ce6b26STakashi Iwai /*
4471da177e4SLinus Torvalds  * unsolicited event handler
4481da177e4SLinus Torvalds  */
4491da177e4SLinus Torvalds 
4501da177e4SLinus Torvalds #define HDA_UNSOL_QUEUE_SIZE	64
4511da177e4SLinus Torvalds 
4521da177e4SLinus Torvalds struct hda_bus_unsolicited {
4531da177e4SLinus Torvalds 	/* ring buffer */
4541da177e4SLinus Torvalds 	u32 queue[HDA_UNSOL_QUEUE_SIZE * 2];
4551da177e4SLinus Torvalds 	unsigned int rp, wp;
4561da177e4SLinus Torvalds 
4571da177e4SLinus Torvalds 	/* workqueue */
4581da177e4SLinus Torvalds 	struct work_struct work;
459c4028958SDavid Howells 	struct hda_bus *bus;
4601da177e4SLinus Torvalds };
4611da177e4SLinus Torvalds 
462128bc4baSTakashi Iwai /* helper macros to retrieve pin default-config values */
463d01ce99fSTakashi Iwai #define get_defcfg_connect(cfg) \
464d01ce99fSTakashi Iwai 	((cfg & AC_DEFCFG_PORT_CONN) >> AC_DEFCFG_PORT_CONN_SHIFT)
465d01ce99fSTakashi Iwai #define get_defcfg_association(cfg) \
466d01ce99fSTakashi Iwai 	((cfg & AC_DEFCFG_DEF_ASSOC) >> AC_DEFCFG_ASSOC_SHIFT)
467d01ce99fSTakashi Iwai #define get_defcfg_location(cfg) \
468d01ce99fSTakashi Iwai 	((cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT)
469d01ce99fSTakashi Iwai #define get_defcfg_sequence(cfg) \
470d01ce99fSTakashi Iwai 	(cfg & AC_DEFCFG_SEQUENCE)
471d01ce99fSTakashi Iwai #define get_defcfg_device(cfg) \
472d01ce99fSTakashi Iwai 	((cfg & AC_DEFCFG_DEVICE) >> AC_DEFCFG_DEVICE_SHIFT)
47308a1f5ebSTakashi Iwai #define get_defcfg_misc(cfg) \
47408a1f5ebSTakashi Iwai 	((cfg & AC_DEFCFG_MISC) >> AC_DEFCFG_MISC_SHIFT)
475e9edcee0STakashi Iwai 
4768d88bc3dSTakashi Iwai /* amp values */
4778d88bc3dSTakashi Iwai #define AMP_IN_MUTE(idx)	(0x7080 | ((idx)<<8))
4788d88bc3dSTakashi Iwai #define AMP_IN_UNMUTE(idx)	(0x7000 | ((idx)<<8))
4798d88bc3dSTakashi Iwai #define AMP_OUT_MUTE		0xb080
4808d88bc3dSTakashi Iwai #define AMP_OUT_UNMUTE		0xb000
4818d88bc3dSTakashi Iwai #define AMP_OUT_ZERO		0xb000
4828d88bc3dSTakashi Iwai /* pinctl values */
48335e8901eSRobin H. Johnson #define PIN_IN			(AC_PINCTL_IN_EN)
48435e8901eSRobin H. Johnson #define PIN_VREFHIZ		(AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ)
48535e8901eSRobin H. Johnson #define PIN_VREF50		(AC_PINCTL_IN_EN | AC_PINCTL_VREF_50)
48635e8901eSRobin H. Johnson #define PIN_VREFGRD		(AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD)
48735e8901eSRobin H. Johnson #define PIN_VREF80		(AC_PINCTL_IN_EN | AC_PINCTL_VREF_80)
48835e8901eSRobin H. Johnson #define PIN_VREF100		(AC_PINCTL_IN_EN | AC_PINCTL_VREF_100)
48935e8901eSRobin H. Johnson #define PIN_OUT			(AC_PINCTL_OUT_EN)
49035e8901eSRobin H. Johnson #define PIN_HP			(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN)
49135e8901eSRobin H. Johnson #define PIN_HP_AMP		(AC_PINCTL_HP_EN)
4928d88bc3dSTakashi Iwai 
4934740860bSTakashi Iwai unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin);
49462f3a2f7STakashi Iwai unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec,
49562f3a2f7STakashi Iwai 				     hda_nid_t pin, unsigned int val);
496cdd03cedSTakashi Iwai int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin,
497cdd03cedSTakashi Iwai 			 unsigned int val, bool cached);
498cdd03cedSTakashi Iwai 
499cdd03cedSTakashi Iwai /**
500cdd03cedSTakashi Iwai  * _snd_hda_set_pin_ctl - Set a pin-control value safely
501cdd03cedSTakashi Iwai  * @codec: the codec instance
502cdd03cedSTakashi Iwai  * @pin: the pin NID to set the control
503cdd03cedSTakashi Iwai  * @val: the pin-control value (AC_PINCTL_* bits)
504cdd03cedSTakashi Iwai  *
505cdd03cedSTakashi Iwai  * This function sets the pin-control value to the given pin, but
506cdd03cedSTakashi Iwai  * filters out the invalid pin-control bits when the pin has no such
507cdd03cedSTakashi Iwai  * capabilities.  For example, when PIN_HP is passed but the pin has no
508cdd03cedSTakashi Iwai  * HP-drive capability, the HP bit is omitted.
509cdd03cedSTakashi Iwai  *
510cdd03cedSTakashi Iwai  * The function doesn't check the input VREF capability bits, though.
5114740860bSTakashi Iwai  * Use snd_hda_get_default_vref() to guess the right value.
512cdd03cedSTakashi Iwai  * Also, this function is only for analog pins, not for HDMI pins.
513cdd03cedSTakashi Iwai  */
514cdd03cedSTakashi Iwai static inline int
515cdd03cedSTakashi Iwai snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin, unsigned int val)
516cdd03cedSTakashi Iwai {
517cdd03cedSTakashi Iwai 	return _snd_hda_set_pin_ctl(codec, pin, val, false);
518cdd03cedSTakashi Iwai }
519cdd03cedSTakashi Iwai 
520cdd03cedSTakashi Iwai /**
521cdd03cedSTakashi Iwai  * snd_hda_set_pin_ctl_cache - Set a pin-control value safely
522cdd03cedSTakashi Iwai  * @codec: the codec instance
523cdd03cedSTakashi Iwai  * @pin: the pin NID to set the control
524cdd03cedSTakashi Iwai  * @val: the pin-control value (AC_PINCTL_* bits)
525cdd03cedSTakashi Iwai  *
526cdd03cedSTakashi Iwai  * Just like snd_hda_set_pin_ctl() but write to cache as well.
527cdd03cedSTakashi Iwai  */
528cdd03cedSTakashi Iwai static inline int
529cdd03cedSTakashi Iwai snd_hda_set_pin_ctl_cache(struct hda_codec *codec, hda_nid_t pin,
530cdd03cedSTakashi Iwai 			  unsigned int val)
531cdd03cedSTakashi Iwai {
532cdd03cedSTakashi Iwai 	return _snd_hda_set_pin_ctl(codec, pin, val, true);
533cdd03cedSTakashi Iwai }
534cdd03cedSTakashi Iwai 
535d7fdc00aSTakashi Iwai int snd_hda_codec_get_pin_target(struct hda_codec *codec, hda_nid_t nid);
536d7fdc00aSTakashi Iwai int snd_hda_codec_set_pin_target(struct hda_codec *codec, hda_nid_t nid,
537d7fdc00aSTakashi Iwai 				 unsigned int val);
538d7fdc00aSTakashi Iwai 
53954d17403STakashi Iwai /*
54054d17403STakashi Iwai  * get widget capabilities
54154d17403STakashi Iwai  */
54254d17403STakashi Iwai static inline u32 get_wcaps(struct hda_codec *codec, hda_nid_t nid)
54354d17403STakashi Iwai {
54454d17403STakashi Iwai 	if (nid < codec->start_nid ||
54554d17403STakashi Iwai 	    nid >= codec->start_nid + codec->num_nodes)
546dca008f3STakashi Iwai 		return 0;
54754d17403STakashi Iwai 	return codec->wcaps[nid - codec->start_nid];
54854d17403STakashi Iwai }
54954d17403STakashi Iwai 
550a22d543aSTakashi Iwai /* get the widget type from widget capability bits */
5513a90274dSTakashi Iwai static inline int get_wcaps_type(unsigned int wcaps)
5523a90274dSTakashi Iwai {
5533a90274dSTakashi Iwai 	if (!wcaps)
5543a90274dSTakashi Iwai 		return -1; /* invalid type */
5553a90274dSTakashi Iwai 	return (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
5563a90274dSTakashi Iwai }
557a22d543aSTakashi Iwai 
558fd72d008SWu Fengguang static inline unsigned int get_wcaps_channels(u32 wcaps)
559fd72d008SWu Fengguang {
560fd72d008SWu Fengguang 	unsigned int chans;
561fd72d008SWu Fengguang 
562fd72d008SWu Fengguang 	chans = (wcaps & AC_WCAP_CHAN_CNT_EXT) >> 13;
563fd72d008SWu Fengguang 	chans = ((chans << 1) | 1) + 1;
564fd72d008SWu Fengguang 
565fd72d008SWu Fengguang 	return chans;
566fd72d008SWu Fengguang }
567fd72d008SWu Fengguang 
56809a99959SMatthew Ranostay u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction);
569897cc188STakashi Iwai int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
570897cc188STakashi Iwai 			      unsigned int caps);
5711327a32bSTakashi Iwai u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid);
572f57c2565STakashi Iwai int snd_hda_override_pin_caps(struct hda_codec *codec, hda_nid_t nid,
573f57c2565STakashi Iwai 			      unsigned int caps);
57403697e2aSTakashi Iwai 
5759e3fd871SJaroslav Kysela /* flags for hda_nid_item */
5769e3fd871SJaroslav Kysela #define HDA_NID_ITEM_AMP	(1<<0)
5779e3fd871SJaroslav Kysela 
5783911a4c1SJaroslav Kysela struct hda_nid_item {
5793911a4c1SJaroslav Kysela 	struct snd_kcontrol *kctl;
5805b0cb1d8SJaroslav Kysela 	unsigned int index;
5813911a4c1SJaroslav Kysela 	hda_nid_t nid;
5829e3fd871SJaroslav Kysela 	unsigned short flags;
5833911a4c1SJaroslav Kysela };
5843911a4c1SJaroslav Kysela 
5853911a4c1SJaroslav Kysela int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
5863911a4c1SJaroslav Kysela 		    struct snd_kcontrol *kctl);
5875b0cb1d8SJaroslav Kysela int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
5885b0cb1d8SJaroslav Kysela 		    unsigned int index, hda_nid_t nid);
589d13bd412STakashi Iwai void snd_hda_ctls_clear(struct hda_codec *codec);
590d13bd412STakashi Iwai 
5912807314dSTakashi Iwai /*
5922807314dSTakashi Iwai  * hwdep interface
5932807314dSTakashi Iwai  */
594d7ffba19STakashi Iwai #ifdef CONFIG_SND_HDA_HWDEP
5952807314dSTakashi Iwai int snd_hda_create_hwdep(struct hda_codec *codec);
596d7ffba19STakashi Iwai #else
597d7ffba19STakashi Iwai static inline int snd_hda_create_hwdep(struct hda_codec *codec) { return 0; }
598d7ffba19STakashi Iwai #endif
5992807314dSTakashi Iwai 
60083012a7cSTakashi Iwai #if defined(CONFIG_PM) && defined(CONFIG_SND_HDA_HWDEP)
601a2f6309eSTakashi Iwai int snd_hda_hwdep_add_power_sysfs(struct hda_codec *codec);
602a2f6309eSTakashi Iwai #else
603a2f6309eSTakashi Iwai static inline int snd_hda_hwdep_add_power_sysfs(struct hda_codec *codec)
604a2f6309eSTakashi Iwai {
605a2f6309eSTakashi Iwai 	return 0;
606a2f6309eSTakashi Iwai }
607a2f6309eSTakashi Iwai #endif
608a2f6309eSTakashi Iwai 
609e7ee058cSTakashi Iwai #ifdef CONFIG_SND_HDA_RECONFIG
610e7ee058cSTakashi Iwai int snd_hda_hwdep_add_sysfs(struct hda_codec *codec);
611e7ee058cSTakashi Iwai #else
612e7ee058cSTakashi Iwai static inline int snd_hda_hwdep_add_sysfs(struct hda_codec *codec)
613e7ee058cSTakashi Iwai {
614e7ee058cSTakashi Iwai 	return 0;
615e7ee058cSTakashi Iwai }
616e7ee058cSTakashi Iwai #endif
617e7ee058cSTakashi Iwai 
61843b62713STakashi Iwai #ifdef CONFIG_SND_HDA_RECONFIG
61943b62713STakashi Iwai const char *snd_hda_get_hint(struct hda_codec *codec, const char *key);
62043b62713STakashi Iwai int snd_hda_get_bool_hint(struct hda_codec *codec, const char *key);
621*bc759721STakashi Iwai int snd_hda_get_int_hint(struct hda_codec *codec, const char *key, int *valp);
62243b62713STakashi Iwai #else
62343b62713STakashi Iwai static inline
62443b62713STakashi Iwai const char *snd_hda_get_hint(struct hda_codec *codec, const char *key)
62543b62713STakashi Iwai {
62643b62713STakashi Iwai 	return NULL;
62743b62713STakashi Iwai }
62843b62713STakashi Iwai 
62943b62713STakashi Iwai static inline
63043b62713STakashi Iwai int snd_hda_get_bool_hint(struct hda_codec *codec, const char *key)
63143b62713STakashi Iwai {
63243b62713STakashi Iwai 	return -ENOENT;
63343b62713STakashi Iwai }
634*bc759721STakashi Iwai 
635*bc759721STakashi Iwai static inline
636*bc759721STakashi Iwai int snd_hda_get_int_hint(struct hda_codec *codec, const char *key, int *valp)
637*bc759721STakashi Iwai {
638*bc759721STakashi Iwai 	return -ENOENT;
639*bc759721STakashi Iwai }
64043b62713STakashi Iwai #endif
64143b62713STakashi Iwai 
642cb53c626STakashi Iwai /*
643cb53c626STakashi Iwai  * power-management
644cb53c626STakashi Iwai  */
645cb53c626STakashi Iwai 
646cb53c626STakashi Iwai void snd_hda_schedule_power_save(struct hda_codec *codec);
647cb53c626STakashi Iwai 
648cb53c626STakashi Iwai struct hda_amp_list {
649cb53c626STakashi Iwai 	hda_nid_t nid;
650cb53c626STakashi Iwai 	unsigned char dir;
651cb53c626STakashi Iwai 	unsigned char idx;
652cb53c626STakashi Iwai };
653cb53c626STakashi Iwai 
654cb53c626STakashi Iwai struct hda_loopback_check {
655031024eeSTakashi Iwai 	const struct hda_amp_list *amplist;
656cb53c626STakashi Iwai 	int power_on;
657cb53c626STakashi Iwai };
658cb53c626STakashi Iwai 
659cb53c626STakashi Iwai int snd_hda_check_amp_list_power(struct hda_codec *codec,
660cb53c626STakashi Iwai 				 struct hda_loopback_check *check,
661cb53c626STakashi Iwai 				 hda_nid_t nid);
662cb53c626STakashi Iwai 
66389385035SMatthew Ranostay /*
66489385035SMatthew Ranostay  * AMP control callbacks
66589385035SMatthew Ranostay  */
66689385035SMatthew Ranostay /* retrieve parameters from private_value */
6673911a4c1SJaroslav Kysela #define get_amp_nid_(pv)	((pv) & 0xffff)
6683911a4c1SJaroslav Kysela #define get_amp_nid(kc)		get_amp_nid_((kc)->private_value)
66989385035SMatthew Ranostay #define get_amp_channels(kc)	(((kc)->private_value >> 16) & 0x3)
670527e4d73STakashi Iwai #define get_amp_direction_(pv)	(((pv) >> 18) & 0x1)
671527e4d73STakashi Iwai #define get_amp_direction(kc)	get_amp_direction_((kc)->private_value)
672130e5f06STakashi Iwai #define get_amp_index_(pv)	(((pv) >> 19) & 0xf)
673130e5f06STakashi Iwai #define get_amp_index(kc)	get_amp_index_((kc)->private_value)
67429fdbec2STakashi Iwai #define get_amp_offset(kc)	(((kc)->private_value >> 23) & 0x3f)
675de8c85f7SClemens Ladisch #define get_amp_min_mute(kc)	(((kc)->private_value >> 29) & 0x1)
67689385035SMatthew Ranostay 
6777f4a9f43SWu Fengguang /*
678dda415d4STakashi Iwai  * enum control helper
679dda415d4STakashi Iwai  */
680dda415d4STakashi Iwai int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol,
681dda415d4STakashi Iwai 			     struct snd_ctl_elem_info *uinfo,
682dda415d4STakashi Iwai 			     int num_entries, const char * const *texts);
683dda415d4STakashi Iwai #define snd_hda_enum_bool_helper_info(kcontrol, uinfo) \
684dda415d4STakashi Iwai 	snd_hda_enum_helper_info(kcontrol, uinfo, 0, NULL)
685dda415d4STakashi Iwai 
686dda415d4STakashi Iwai /*
6877f4a9f43SWu Fengguang  * CEA Short Audio Descriptor data
6887f4a9f43SWu Fengguang  */
6897f4a9f43SWu Fengguang struct cea_sad {
6907f4a9f43SWu Fengguang 	int	channels;
6917f4a9f43SWu Fengguang 	int	format;		/* (format == 0) indicates invalid SAD */
6927f4a9f43SWu Fengguang 	int	rates;
6937f4a9f43SWu Fengguang 	int	sample_bits;	/* for LPCM */
6947f4a9f43SWu Fengguang 	int	max_bitrate;	/* for AC3...ATRAC */
6957f4a9f43SWu Fengguang 	int	profile;	/* for WMAPRO */
6967f4a9f43SWu Fengguang };
6977f4a9f43SWu Fengguang 
6987f4a9f43SWu Fengguang #define ELD_FIXED_BYTES	20
69914bc52b8SPierre-Louis Bossart #define ELD_MAX_SIZE    256
7007f4a9f43SWu Fengguang #define ELD_MAX_MNL	16
7017f4a9f43SWu Fengguang #define ELD_MAX_SAD	16
7027f4a9f43SWu Fengguang 
7037f4a9f43SWu Fengguang /*
7047f4a9f43SWu Fengguang  * ELD: EDID Like Data
7057f4a9f43SWu Fengguang  */
7065b87ebb7SWu Fengguang struct hdmi_eld {
70723ccc2bdSWu Fengguang 	bool	monitor_present;
70823ccc2bdSWu Fengguang 	bool	eld_valid;
7097f4a9f43SWu Fengguang 	int	eld_size;
7107f4a9f43SWu Fengguang 	int	baseline_len;
71123ccc2bdSWu Fengguang 	int	eld_ver;
7127f4a9f43SWu Fengguang 	int	cea_edid_ver;
7137f4a9f43SWu Fengguang 	char	monitor_name[ELD_MAX_MNL + 1];
7147f4a9f43SWu Fengguang 	int	manufacture_id;
7157f4a9f43SWu Fengguang 	int	product_id;
7167f4a9f43SWu Fengguang 	u64	port_id;
7177f4a9f43SWu Fengguang 	int	support_hdcp;
7187f4a9f43SWu Fengguang 	int	support_ai;
7197f4a9f43SWu Fengguang 	int	conn_type;
7207f4a9f43SWu Fengguang 	int	aud_synch_delay;
7217f4a9f43SWu Fengguang 	int	spk_alloc;
7227f4a9f43SWu Fengguang 	int	sad_count;
7237f4a9f43SWu Fengguang 	struct cea_sad sad[ELD_MAX_SAD];
724b95d68b8SWu Fengguang 	/*
725b95d68b8SWu Fengguang 	 * all fields above eld_buffer will be cleared before updating ELD
726b95d68b8SWu Fengguang 	 */
72714bc52b8SPierre-Louis Bossart 	char    eld_buffer[ELD_MAX_SIZE];
728f208dba9STakashi Iwai #ifdef CONFIG_PROC_FS
729f208dba9STakashi Iwai 	struct snd_info_entry *proc_entry;
730f208dba9STakashi Iwai #endif
7317f4a9f43SWu Fengguang };
7327f4a9f43SWu Fengguang 
7337f4a9f43SWu Fengguang int snd_hdmi_get_eld_size(struct hda_codec *codec, hda_nid_t nid);
7345b87ebb7SWu Fengguang int snd_hdmi_get_eld(struct hdmi_eld *, struct hda_codec *, hda_nid_t);
7355b87ebb7SWu Fengguang void snd_hdmi_show_eld(struct hdmi_eld *eld);
7362def8172SStephen Warren void snd_hdmi_eld_update_pcm_info(struct hdmi_eld *eld,
7372def8172SStephen Warren 			      struct hda_pcm_stream *hinfo);
7387f4a9f43SWu Fengguang 
7395f1e71b1SWu Fengguang #ifdef CONFIG_PROC_FS
74054a25f87SWu Fengguang int snd_hda_eld_proc_new(struct hda_codec *codec, struct hdmi_eld *eld,
74154a25f87SWu Fengguang 			 int index);
742f208dba9STakashi Iwai void snd_hda_eld_proc_free(struct hda_codec *codec, struct hdmi_eld *eld);
7435f1e71b1SWu Fengguang #else
7440623536cSTakashi Iwai static inline int snd_hda_eld_proc_new(struct hda_codec *codec,
74554a25f87SWu Fengguang 				       struct hdmi_eld *eld,
74654a25f87SWu Fengguang 				       int index)
7475f1e71b1SWu Fengguang {
7485f1e71b1SWu Fengguang 	return 0;
7495f1e71b1SWu Fengguang }
750f208dba9STakashi Iwai static inline void snd_hda_eld_proc_free(struct hda_codec *codec,
751f208dba9STakashi Iwai 					 struct hdmi_eld *eld)
752f208dba9STakashi Iwai {
753f208dba9STakashi Iwai }
7545f1e71b1SWu Fengguang #endif
7555f1e71b1SWu Fengguang 
756903b21d8SWu Fengguang #define SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE 80
757903b21d8SWu Fengguang void snd_print_channel_allocation(int spk_alloc, char *buf, int buflen);
758903b21d8SWu Fengguang 
7591da177e4SLinus Torvalds #endif /* __SOUND_HDA_LOCAL_H */
760