xref: /openbmc/linux/sound/pci/ac97/ac97_patch.c (revision 1caf64d9)
11a59d1b8SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
21da177e4SLinus Torvalds /*
3c1017a4cSJaroslav Kysela  *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
41da177e4SLinus Torvalds  *  Universal interface for Audio Codec '97
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  *  For more details look to AC '97 component specification revision 2.2
71da177e4SLinus Torvalds  *  by Intel Corporation (http://developer.intel.com) and to datasheets
81da177e4SLinus Torvalds  *  for specific codecs.
91da177e4SLinus Torvalds  */
101da177e4SLinus Torvalds 
111da177e4SLinus Torvalds #include "ac97_local.h"
12ac519028STakashi Iwai #include "ac97_patch.h"
131da177e4SLinus Torvalds 
141da177e4SLinus Torvalds /*
156ba9256cSAndreas Mohr  *  Forward declarations
166ba9256cSAndreas Mohr  */
176ba9256cSAndreas Mohr 
186ba9256cSAndreas Mohr static struct snd_kcontrol *snd_ac97_find_mixer_ctl(struct snd_ac97 *ac97,
196ba9256cSAndreas Mohr 						    const char *name);
206ba9256cSAndreas Mohr static int snd_ac97_add_vmaster(struct snd_ac97 *ac97, char *name,
211bc10bb6STakashi Iwai 				const unsigned int *tlv,
229ab0cb30STakashi Iwai 				const char * const *followers);
236ba9256cSAndreas Mohr 
246ba9256cSAndreas Mohr /*
251da177e4SLinus Torvalds  *  Chip specific initialization
261da177e4SLinus Torvalds  */
271da177e4SLinus Torvalds 
patch_build_controls(struct snd_ac97 * ac97,const struct snd_kcontrol_new * controls,int count)28ee42381eSTakashi Iwai static int patch_build_controls(struct snd_ac97 * ac97, const struct snd_kcontrol_new *controls, int count)
291da177e4SLinus Torvalds {
301da177e4SLinus Torvalds 	int idx, err;
311da177e4SLinus Torvalds 
32e66fd362STakashi Iwai 	for (idx = 0; idx < count; idx++) {
33e66fd362STakashi Iwai 		err = snd_ctl_add(ac97->bus->card, snd_ac97_cnew(&controls[idx], ac97));
34e66fd362STakashi Iwai 		if (err < 0)
351da177e4SLinus Torvalds 			return err;
36e66fd362STakashi Iwai 	}
371da177e4SLinus Torvalds 	return 0;
381da177e4SLinus Torvalds }
391da177e4SLinus Torvalds 
402f3482fbSTakashi Iwai /* replace with a new TLV */
reset_tlv(struct snd_ac97 * ac97,const char * name,const unsigned int * tlv)412f3482fbSTakashi Iwai static void reset_tlv(struct snd_ac97 *ac97, const char *name,
420cb29ea0STakashi Iwai 		      const unsigned int *tlv)
432f3482fbSTakashi Iwai {
442f3482fbSTakashi Iwai 	struct snd_ctl_elem_id sid;
452f3482fbSTakashi Iwai 	struct snd_kcontrol *kctl;
462f3482fbSTakashi Iwai 	memset(&sid, 0, sizeof(sid));
472f3482fbSTakashi Iwai 	strcpy(sid.name, name);
482f3482fbSTakashi Iwai 	sid.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
492f3482fbSTakashi Iwai 	kctl = snd_ctl_find_id(ac97->bus->card, &sid);
502f3482fbSTakashi Iwai 	if (kctl && kctl->tlv.p)
512f3482fbSTakashi Iwai 		kctl->tlv.p = tlv;
522f3482fbSTakashi Iwai }
532f3482fbSTakashi Iwai 
541da177e4SLinus Torvalds /* set to the page, update bits and restore the page */
ac97_update_bits_page(struct snd_ac97 * ac97,unsigned short reg,unsigned short mask,unsigned short value,unsigned short page)55ee42381eSTakashi Iwai static int ac97_update_bits_page(struct snd_ac97 *ac97, unsigned short reg, unsigned short mask, unsigned short value, unsigned short page)
561da177e4SLinus Torvalds {
571da177e4SLinus Torvalds 	unsigned short page_save;
581da177e4SLinus Torvalds 	int ret;
591da177e4SLinus Torvalds 
6062932df8SIngo Molnar 	mutex_lock(&ac97->page_mutex);
611da177e4SLinus Torvalds 	page_save = snd_ac97_read(ac97, AC97_INT_PAGING) & AC97_PAGE_MASK;
621da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_INT_PAGING, AC97_PAGE_MASK, page);
631da177e4SLinus Torvalds 	ret = snd_ac97_update_bits(ac97, reg, mask, value);
641da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_INT_PAGING, AC97_PAGE_MASK, page_save);
6562932df8SIngo Molnar 	mutex_unlock(&ac97->page_mutex); /* unlock paging */
661da177e4SLinus Torvalds 	return ret;
671da177e4SLinus Torvalds }
681da177e4SLinus Torvalds 
69eb8caf30STakashi Iwai /*
70eb8caf30STakashi Iwai  * shared line-in/mic controls
71eb8caf30STakashi Iwai  */
ac97_surround_jack_mode_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)72ee42381eSTakashi Iwai static int ac97_surround_jack_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
73eb8caf30STakashi Iwai {
743b7a00dcSTakashi Iwai 	static const char * const texts[] = { "Shared", "Independent" };
753b7a00dcSTakashi Iwai 
763b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 2, texts);
77eb8caf30STakashi Iwai }
78eb8caf30STakashi Iwai 
ac97_surround_jack_mode_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)79ee42381eSTakashi Iwai static int ac97_surround_jack_mode_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
80eb8caf30STakashi Iwai {
81ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
82eb8caf30STakashi Iwai 
83eb8caf30STakashi Iwai 	ucontrol->value.enumerated.item[0] = ac97->indep_surround;
84eb8caf30STakashi Iwai 	return 0;
85eb8caf30STakashi Iwai }
86eb8caf30STakashi Iwai 
ac97_surround_jack_mode_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)87ee42381eSTakashi Iwai static int ac97_surround_jack_mode_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
88eb8caf30STakashi Iwai {
89ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
90eb8caf30STakashi Iwai 	unsigned char indep = !!ucontrol->value.enumerated.item[0];
91eb8caf30STakashi Iwai 
92eb8caf30STakashi Iwai 	if (indep != ac97->indep_surround) {
93eb8caf30STakashi Iwai 		ac97->indep_surround = indep;
94eb8caf30STakashi Iwai 		if (ac97->build_ops->update_jacks)
95eb8caf30STakashi Iwai 			ac97->build_ops->update_jacks(ac97);
96eb8caf30STakashi Iwai 		return 1;
97eb8caf30STakashi Iwai 	}
98eb8caf30STakashi Iwai 	return 0;
99eb8caf30STakashi Iwai }
100eb8caf30STakashi Iwai 
ac97_channel_mode_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)101ee42381eSTakashi Iwai static int ac97_channel_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
102eb8caf30STakashi Iwai {
1033b7a00dcSTakashi Iwai 	static const char * const texts[] = { "2ch", "4ch", "6ch", "8ch" };
1043b7a00dcSTakashi Iwai 
1053b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, kcontrol->private_value, texts);
106eb8caf30STakashi Iwai }
107eb8caf30STakashi Iwai 
ac97_channel_mode_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)108ee42381eSTakashi Iwai static int ac97_channel_mode_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
109eb8caf30STakashi Iwai {
110ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
111eb8caf30STakashi Iwai 
112eb8caf30STakashi Iwai 	ucontrol->value.enumerated.item[0] = ac97->channel_mode;
113eb8caf30STakashi Iwai 	return 0;
114eb8caf30STakashi Iwai }
115eb8caf30STakashi Iwai 
ac97_channel_mode_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)116ee42381eSTakashi Iwai static int ac97_channel_mode_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
117eb8caf30STakashi Iwai {
118ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
119eb8caf30STakashi Iwai 	unsigned char mode = ucontrol->value.enumerated.item[0];
120eb8caf30STakashi Iwai 
1214235a317STakashi Iwai 	if (mode >= kcontrol->private_value)
1224e98d6a7STakashi Iwai 		return -EINVAL;
1234e98d6a7STakashi Iwai 
124eb8caf30STakashi Iwai 	if (mode != ac97->channel_mode) {
125eb8caf30STakashi Iwai 		ac97->channel_mode = mode;
126eb8caf30STakashi Iwai 		if (ac97->build_ops->update_jacks)
127eb8caf30STakashi Iwai 			ac97->build_ops->update_jacks(ac97);
128eb8caf30STakashi Iwai 		return 1;
129eb8caf30STakashi Iwai 	}
130eb8caf30STakashi Iwai 	return 0;
131eb8caf30STakashi Iwai }
132eb8caf30STakashi Iwai 
133eb8caf30STakashi Iwai #define AC97_SURROUND_JACK_MODE_CTL \
134eb8caf30STakashi Iwai 	{ \
135eb8caf30STakashi Iwai 		.iface	= SNDRV_CTL_ELEM_IFACE_MIXER, \
136eb8caf30STakashi Iwai 		.name	= "Surround Jack Mode", \
137eb8caf30STakashi Iwai 		.info = ac97_surround_jack_mode_info, \
138eb8caf30STakashi Iwai 		.get = ac97_surround_jack_mode_get, \
139eb8caf30STakashi Iwai 		.put = ac97_surround_jack_mode_put, \
140eb8caf30STakashi Iwai 	}
1414235a317STakashi Iwai /* 6ch */
142eb8caf30STakashi Iwai #define AC97_CHANNEL_MODE_CTL \
143eb8caf30STakashi Iwai 	{ \
144eb8caf30STakashi Iwai 		.iface	= SNDRV_CTL_ELEM_IFACE_MIXER, \
145eb8caf30STakashi Iwai 		.name	= "Channel Mode", \
146eb8caf30STakashi Iwai 		.info = ac97_channel_mode_info, \
147eb8caf30STakashi Iwai 		.get = ac97_channel_mode_get, \
148eb8caf30STakashi Iwai 		.put = ac97_channel_mode_put, \
1494235a317STakashi Iwai 		.private_value = 3, \
150eb8caf30STakashi Iwai 	}
1514235a317STakashi Iwai /* 4ch */
152eb8caf30STakashi Iwai #define AC97_CHANNEL_MODE_4CH_CTL \
153eb8caf30STakashi Iwai 	{ \
154eb8caf30STakashi Iwai 		.iface	= SNDRV_CTL_ELEM_IFACE_MIXER, \
155eb8caf30STakashi Iwai 		.name	= "Channel Mode", \
156eb8caf30STakashi Iwai 		.info = ac97_channel_mode_info, \
157eb8caf30STakashi Iwai 		.get = ac97_channel_mode_get, \
158eb8caf30STakashi Iwai 		.put = ac97_channel_mode_put, \
1594235a317STakashi Iwai 		.private_value = 2, \
1604235a317STakashi Iwai 	}
1614235a317STakashi Iwai /* 8ch */
1624235a317STakashi Iwai #define AC97_CHANNEL_MODE_8CH_CTL \
1634235a317STakashi Iwai 	{ \
1644235a317STakashi Iwai 		.iface  = SNDRV_CTL_ELEM_IFACE_MIXER, \
1654235a317STakashi Iwai 		.name   = "Channel Mode", \
1664235a317STakashi Iwai 		.info = ac97_channel_mode_info, \
1674235a317STakashi Iwai 		.get = ac97_channel_mode_get, \
1684235a317STakashi Iwai 		.put = ac97_channel_mode_put, \
1694235a317STakashi Iwai 		.private_value = 4, \
170eb8caf30STakashi Iwai 	}
171eb8caf30STakashi Iwai 
is_surround_on(struct snd_ac97 * ac97)172ee42381eSTakashi Iwai static inline int is_surround_on(struct snd_ac97 *ac97)
1734525c9f3STakashi Iwai {
1744525c9f3STakashi Iwai 	return ac97->channel_mode >= 1;
1754525c9f3STakashi Iwai }
1764525c9f3STakashi Iwai 
is_clfe_on(struct snd_ac97 * ac97)177ee42381eSTakashi Iwai static inline int is_clfe_on(struct snd_ac97 *ac97)
1784525c9f3STakashi Iwai {
179eb9b4142STakashi Iwai 	return ac97->channel_mode >= 2;
1804525c9f3STakashi Iwai }
1814525c9f3STakashi Iwai 
182831466f4SRandy Cushman /* system has shared jacks with surround out enabled */
is_shared_surrout(struct snd_ac97 * ac97)183831466f4SRandy Cushman static inline int is_shared_surrout(struct snd_ac97 *ac97)
184eb8caf30STakashi Iwai {
1854525c9f3STakashi Iwai 	return !ac97->indep_surround && is_surround_on(ac97);
186eb8caf30STakashi Iwai }
187eb8caf30STakashi Iwai 
188831466f4SRandy Cushman /* system has shared jacks with center/lfe out enabled */
is_shared_clfeout(struct snd_ac97 * ac97)189831466f4SRandy Cushman static inline int is_shared_clfeout(struct snd_ac97 *ac97)
190eb8caf30STakashi Iwai {
1914525c9f3STakashi Iwai 	return !ac97->indep_surround && is_clfe_on(ac97);
192eb8caf30STakashi Iwai }
193eb8caf30STakashi Iwai 
194831466f4SRandy Cushman /* system has shared jacks with line in enabled */
is_shared_linein(struct snd_ac97 * ac97)195831466f4SRandy Cushman static inline int is_shared_linein(struct snd_ac97 *ac97)
196831466f4SRandy Cushman {
197831466f4SRandy Cushman 	return !ac97->indep_surround && !is_surround_on(ac97);
198831466f4SRandy Cushman }
199831466f4SRandy Cushman 
200831466f4SRandy Cushman /* system has shared jacks with mic in enabled */
is_shared_micin(struct snd_ac97 * ac97)201831466f4SRandy Cushman static inline int is_shared_micin(struct snd_ac97 *ac97)
202831466f4SRandy Cushman {
203831466f4SRandy Cushman 	return !ac97->indep_surround && !is_clfe_on(ac97);
204831466f4SRandy Cushman }
205831466f4SRandy Cushman 
alc850_is_aux_back_surround(struct snd_ac97 * ac97)2064235a317STakashi Iwai static inline int alc850_is_aux_back_surround(struct snd_ac97 *ac97)
2074235a317STakashi Iwai {
2084235a317STakashi Iwai 	return is_surround_on(ac97);
2094235a317STakashi Iwai }
210eb8caf30STakashi Iwai 
2111da177e4SLinus Torvalds /* The following snd_ac97_ymf753_... items added by David Shust (dshust@shustring.com) */
21243115f58SKeita Maehara /* Modified for YMF743 by Keita Maehara <maehara@debian.org> */
2131da177e4SLinus Torvalds 
21413043984SKeita Maehara /* It is possible to indicate to the Yamaha YMF7x3 the type of
21513043984SKeita Maehara    speakers being used. */
21613043984SKeita Maehara 
snd_ac97_ymf7x3_info_speaker(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)21713043984SKeita Maehara static int snd_ac97_ymf7x3_info_speaker(struct snd_kcontrol *kcontrol,
21813043984SKeita Maehara 					struct snd_ctl_elem_info *uinfo)
2191da177e4SLinus Torvalds {
2203b7a00dcSTakashi Iwai 	static const char * const texts[3] = {
2211da177e4SLinus Torvalds 		"Standard", "Small", "Smaller"
2221da177e4SLinus Torvalds 	};
2231da177e4SLinus Torvalds 
2243b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 3, texts);
2251da177e4SLinus Torvalds }
2261da177e4SLinus Torvalds 
snd_ac97_ymf7x3_get_speaker(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)22713043984SKeita Maehara static int snd_ac97_ymf7x3_get_speaker(struct snd_kcontrol *kcontrol,
22813043984SKeita Maehara 				       struct snd_ctl_elem_value *ucontrol)
2291da177e4SLinus Torvalds {
230ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
2311da177e4SLinus Torvalds 	unsigned short val;
2321da177e4SLinus Torvalds 
23313043984SKeita Maehara 	val = ac97->regs[AC97_YMF7X3_3D_MODE_SEL];
2341da177e4SLinus Torvalds 	val = (val >> 10) & 3;
2351da177e4SLinus Torvalds 	if (val > 0)    /* 0 = invalid */
2361da177e4SLinus Torvalds 		val--;
2371da177e4SLinus Torvalds 	ucontrol->value.enumerated.item[0] = val;
2381da177e4SLinus Torvalds 	return 0;
2391da177e4SLinus Torvalds }
2401da177e4SLinus Torvalds 
snd_ac97_ymf7x3_put_speaker(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)24113043984SKeita Maehara static int snd_ac97_ymf7x3_put_speaker(struct snd_kcontrol *kcontrol,
24213043984SKeita Maehara 				       struct snd_ctl_elem_value *ucontrol)
2431da177e4SLinus Torvalds {
244ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
2451da177e4SLinus Torvalds 	unsigned short val;
2461da177e4SLinus Torvalds 
2471da177e4SLinus Torvalds 	if (ucontrol->value.enumerated.item[0] > 2)
2481da177e4SLinus Torvalds 		return -EINVAL;
2491da177e4SLinus Torvalds 	val = (ucontrol->value.enumerated.item[0] + 1) << 10;
25013043984SKeita Maehara 	return snd_ac97_update(ac97, AC97_YMF7X3_3D_MODE_SEL, val);
2511da177e4SLinus Torvalds }
2521da177e4SLinus Torvalds 
25313043984SKeita Maehara static const struct snd_kcontrol_new snd_ac97_ymf7x3_controls_speaker =
2541da177e4SLinus Torvalds {
2551da177e4SLinus Torvalds 	.iface  = SNDRV_CTL_ELEM_IFACE_MIXER,
2561da177e4SLinus Torvalds 	.name   = "3D Control - Speaker",
25713043984SKeita Maehara 	.info   = snd_ac97_ymf7x3_info_speaker,
25813043984SKeita Maehara 	.get    = snd_ac97_ymf7x3_get_speaker,
25913043984SKeita Maehara 	.put    = snd_ac97_ymf7x3_put_speaker,
2601da177e4SLinus Torvalds };
2611da177e4SLinus Torvalds 
26213043984SKeita Maehara /* It is possible to indicate to the Yamaha YMF7x3 the source to
26313043984SKeita Maehara    direct to the S/PDIF output. */
snd_ac97_ymf7x3_spdif_source_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)26413043984SKeita Maehara static int snd_ac97_ymf7x3_spdif_source_info(struct snd_kcontrol *kcontrol,
26513043984SKeita Maehara 					     struct snd_ctl_elem_info *uinfo)
2661da177e4SLinus Torvalds {
2673b7a00dcSTakashi Iwai 	static const char * const texts[2] = { "AC-Link", "A/D Converter" };
2681da177e4SLinus Torvalds 
2693b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 2, texts);
2701da177e4SLinus Torvalds }
2711da177e4SLinus Torvalds 
snd_ac97_ymf7x3_spdif_source_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)27213043984SKeita Maehara static int snd_ac97_ymf7x3_spdif_source_get(struct snd_kcontrol *kcontrol,
27313043984SKeita Maehara 					    struct snd_ctl_elem_value *ucontrol)
2741da177e4SLinus Torvalds {
275ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
2761da177e4SLinus Torvalds 	unsigned short val;
2771da177e4SLinus Torvalds 
27813043984SKeita Maehara 	val = ac97->regs[AC97_YMF7X3_DIT_CTRL];
2791da177e4SLinus Torvalds 	ucontrol->value.enumerated.item[0] = (val >> 1) & 1;
2801da177e4SLinus Torvalds 	return 0;
2811da177e4SLinus Torvalds }
2821da177e4SLinus Torvalds 
snd_ac97_ymf7x3_spdif_source_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)28313043984SKeita Maehara static int snd_ac97_ymf7x3_spdif_source_put(struct snd_kcontrol *kcontrol,
28413043984SKeita Maehara 					    struct snd_ctl_elem_value *ucontrol)
2851da177e4SLinus Torvalds {
286ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
2871da177e4SLinus Torvalds 	unsigned short val;
2881da177e4SLinus Torvalds 
2891da177e4SLinus Torvalds 	if (ucontrol->value.enumerated.item[0] > 1)
2901da177e4SLinus Torvalds 		return -EINVAL;
2911da177e4SLinus Torvalds 	val = ucontrol->value.enumerated.item[0] << 1;
29213043984SKeita Maehara 	return snd_ac97_update_bits(ac97, AC97_YMF7X3_DIT_CTRL, 0x0002, val);
2931da177e4SLinus Torvalds }
2941da177e4SLinus Torvalds 
patch_yamaha_ymf7x3_3d(struct snd_ac97 * ac97)29543115f58SKeita Maehara static int patch_yamaha_ymf7x3_3d(struct snd_ac97 *ac97)
29643115f58SKeita Maehara {
29743115f58SKeita Maehara 	struct snd_kcontrol *kctl;
29843115f58SKeita Maehara 	int err;
29943115f58SKeita Maehara 
30043115f58SKeita Maehara 	kctl = snd_ac97_cnew(&snd_ac97_controls_3d[0], ac97);
30143115f58SKeita Maehara 	err = snd_ctl_add(ac97->bus->card, kctl);
30243115f58SKeita Maehara 	if (err < 0)
30343115f58SKeita Maehara 		return err;
30443115f58SKeita Maehara 	strcpy(kctl->id.name, "3D Control - Wide");
30543115f58SKeita Maehara 	kctl->private_value = AC97_SINGLE_VALUE(AC97_3D_CONTROL, 9, 7, 0);
30643115f58SKeita Maehara 	snd_ac97_write_cache(ac97, AC97_3D_CONTROL, 0x0000);
30743115f58SKeita Maehara 	err = snd_ctl_add(ac97->bus->card,
30843115f58SKeita Maehara 			  snd_ac97_cnew(&snd_ac97_ymf7x3_controls_speaker,
30943115f58SKeita Maehara 					ac97));
31043115f58SKeita Maehara 	if (err < 0)
31143115f58SKeita Maehara 		return err;
31243115f58SKeita Maehara 	snd_ac97_write_cache(ac97, AC97_YMF7X3_3D_MODE_SEL, 0x0c00);
31343115f58SKeita Maehara 	return 0;
31443115f58SKeita Maehara }
31543115f58SKeita Maehara 
31643115f58SKeita Maehara static const struct snd_kcontrol_new snd_ac97_yamaha_ymf743_controls_spdif[3] =
31743115f58SKeita Maehara {
31843115f58SKeita Maehara 	AC97_SINGLE(SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH),
31943115f58SKeita Maehara 		    AC97_YMF7X3_DIT_CTRL, 0, 1, 0),
32043115f58SKeita Maehara 	{
32143115f58SKeita Maehara 		.iface	= SNDRV_CTL_ELEM_IFACE_MIXER,
32243115f58SKeita Maehara 		.name	= SNDRV_CTL_NAME_IEC958("", PLAYBACK, NONE) "Source",
32343115f58SKeita Maehara 		.info	= snd_ac97_ymf7x3_spdif_source_info,
32443115f58SKeita Maehara 		.get	= snd_ac97_ymf7x3_spdif_source_get,
32543115f58SKeita Maehara 		.put	= snd_ac97_ymf7x3_spdif_source_put,
32643115f58SKeita Maehara 	},
32743115f58SKeita Maehara 	AC97_SINGLE(SNDRV_CTL_NAME_IEC958("", NONE, NONE) "Mute",
32843115f58SKeita Maehara 		    AC97_YMF7X3_DIT_CTRL, 2, 1, 1)
32943115f58SKeita Maehara };
33043115f58SKeita Maehara 
patch_yamaha_ymf743_build_spdif(struct snd_ac97 * ac97)33143115f58SKeita Maehara static int patch_yamaha_ymf743_build_spdif(struct snd_ac97 *ac97)
33243115f58SKeita Maehara {
33343115f58SKeita Maehara 	int err;
33443115f58SKeita Maehara 
33543115f58SKeita Maehara 	err = patch_build_controls(ac97, &snd_ac97_controls_spdif[0], 3);
33643115f58SKeita Maehara 	if (err < 0)
33743115f58SKeita Maehara 		return err;
33843115f58SKeita Maehara 	err = patch_build_controls(ac97,
33943115f58SKeita Maehara 				   snd_ac97_yamaha_ymf743_controls_spdif, 3);
34043115f58SKeita Maehara 	if (err < 0)
34143115f58SKeita Maehara 		return err;
34243115f58SKeita Maehara 	/* set default PCM S/PDIF params */
34343115f58SKeita Maehara 	/* PCM audio,no copyright,no preemphasis,PCM coder,original */
34443115f58SKeita Maehara 	snd_ac97_write_cache(ac97, AC97_YMF7X3_DIT_CTRL, 0xa201);
34543115f58SKeita Maehara 	return 0;
34643115f58SKeita Maehara }
34743115f58SKeita Maehara 
3483e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_yamaha_ymf743_ops = {
34943115f58SKeita Maehara 	.build_spdif	= patch_yamaha_ymf743_build_spdif,
35043115f58SKeita Maehara 	.build_3d	= patch_yamaha_ymf7x3_3d,
35143115f58SKeita Maehara };
35243115f58SKeita Maehara 
patch_yamaha_ymf743(struct snd_ac97 * ac97)35343115f58SKeita Maehara static int patch_yamaha_ymf743(struct snd_ac97 *ac97)
35443115f58SKeita Maehara {
35543115f58SKeita Maehara 	ac97->build_ops = &patch_yamaha_ymf743_ops;
35643115f58SKeita Maehara 	ac97->caps |= AC97_BC_BASS_TREBLE;
35743115f58SKeita Maehara 	ac97->caps |= 0x04 << 10; /* Yamaha 3D enhancement */
35843115f58SKeita Maehara 	ac97->rates[AC97_RATES_SPDIF] = SNDRV_PCM_RATE_48000; /* 48k only */
35943115f58SKeita Maehara 	ac97->ext_id |= AC97_EI_SPDIF; /* force the detection of spdif */
36043115f58SKeita Maehara 	return 0;
36143115f58SKeita Maehara }
36243115f58SKeita Maehara 
3631da177e4SLinus Torvalds /* The AC'97 spec states that the S/PDIF signal is to be output at pin 48.
3641da177e4SLinus Torvalds    The YMF753 will output the S/PDIF signal to pin 43, 47 (EAPD), or 48.
3651da177e4SLinus Torvalds    By default, no output pin is selected, and the S/PDIF signal is not output.
3661da177e4SLinus Torvalds    There is also a bit to mute S/PDIF output in a vendor-specific register. */
snd_ac97_ymf753_spdif_output_pin_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)367ee42381eSTakashi Iwai static int snd_ac97_ymf753_spdif_output_pin_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
3681da177e4SLinus Torvalds {
3693b7a00dcSTakashi Iwai 	static const char * const texts[3] = { "Disabled", "Pin 43", "Pin 48" };
3701da177e4SLinus Torvalds 
3713b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 3, texts);
3721da177e4SLinus Torvalds }
3731da177e4SLinus Torvalds 
snd_ac97_ymf753_spdif_output_pin_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)374ee42381eSTakashi Iwai static int snd_ac97_ymf753_spdif_output_pin_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3751da177e4SLinus Torvalds {
376ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
3771da177e4SLinus Torvalds 	unsigned short val;
3781da177e4SLinus Torvalds 
37913043984SKeita Maehara 	val = ac97->regs[AC97_YMF7X3_DIT_CTRL];
3801da177e4SLinus Torvalds 	ucontrol->value.enumerated.item[0] = (val & 0x0008) ? 2 : (val & 0x0020) ? 1 : 0;
3811da177e4SLinus Torvalds 	return 0;
3821da177e4SLinus Torvalds }
3831da177e4SLinus Torvalds 
snd_ac97_ymf753_spdif_output_pin_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)384ee42381eSTakashi Iwai static int snd_ac97_ymf753_spdif_output_pin_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3851da177e4SLinus Torvalds {
386ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
3871da177e4SLinus Torvalds 	unsigned short val;
3881da177e4SLinus Torvalds 
3891da177e4SLinus Torvalds 	if (ucontrol->value.enumerated.item[0] > 2)
3901da177e4SLinus Torvalds 		return -EINVAL;
3911da177e4SLinus Torvalds 	val = (ucontrol->value.enumerated.item[0] == 2) ? 0x0008 :
3921da177e4SLinus Torvalds 	      (ucontrol->value.enumerated.item[0] == 1) ? 0x0020 : 0;
39313043984SKeita Maehara 	return snd_ac97_update_bits(ac97, AC97_YMF7X3_DIT_CTRL, 0x0028, val);
3941da177e4SLinus Torvalds 	/* The following can be used to direct S/PDIF output to pin 47 (EAPD).
3951da177e4SLinus Torvalds 	   snd_ac97_write_cache(ac97, 0x62, snd_ac97_read(ac97, 0x62) | 0x0008); */
3961da177e4SLinus Torvalds }
3971da177e4SLinus Torvalds 
398ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_ymf753_controls_spdif[3] = {
3991da177e4SLinus Torvalds 	{
4001da177e4SLinus Torvalds 		.iface	= SNDRV_CTL_ELEM_IFACE_MIXER,
4011da177e4SLinus Torvalds 		.name	= SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
40213043984SKeita Maehara 		.info	= snd_ac97_ymf7x3_spdif_source_info,
40313043984SKeita Maehara 		.get	= snd_ac97_ymf7x3_spdif_source_get,
40413043984SKeita Maehara 		.put	= snd_ac97_ymf7x3_spdif_source_put,
4051da177e4SLinus Torvalds 	},
4061da177e4SLinus Torvalds 	{
4071da177e4SLinus Torvalds 		.iface	= SNDRV_CTL_ELEM_IFACE_MIXER,
4081da177e4SLinus Torvalds 		.name	= SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Output Pin",
4091da177e4SLinus Torvalds 		.info	= snd_ac97_ymf753_spdif_output_pin_info,
4101da177e4SLinus Torvalds 		.get	= snd_ac97_ymf753_spdif_output_pin_get,
4111da177e4SLinus Torvalds 		.put	= snd_ac97_ymf753_spdif_output_pin_put,
4121da177e4SLinus Torvalds 	},
41313043984SKeita Maehara 	AC97_SINGLE(SNDRV_CTL_NAME_IEC958("", NONE, NONE) "Mute",
41413043984SKeita Maehara 		    AC97_YMF7X3_DIT_CTRL, 2, 1, 1)
4151da177e4SLinus Torvalds };
4161da177e4SLinus Torvalds 
patch_yamaha_ymf753_post_spdif(struct snd_ac97 * ac97)417ee42381eSTakashi Iwai static int patch_yamaha_ymf753_post_spdif(struct snd_ac97 * ac97)
4181da177e4SLinus Torvalds {
4191da177e4SLinus Torvalds 	int err;
4201da177e4SLinus Torvalds 
421e66fd362STakashi Iwai 	err = patch_build_controls(ac97, snd_ac97_ymf753_controls_spdif, ARRAY_SIZE(snd_ac97_ymf753_controls_spdif));
422e66fd362STakashi Iwai 	if (err < 0)
4231da177e4SLinus Torvalds 		return err;
4241da177e4SLinus Torvalds 	return 0;
4251da177e4SLinus Torvalds }
4261da177e4SLinus Torvalds 
4273e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_yamaha_ymf753_ops = {
42813043984SKeita Maehara 	.build_3d	= patch_yamaha_ymf7x3_3d,
4291da177e4SLinus Torvalds 	.build_post_spdif = patch_yamaha_ymf753_post_spdif
4301da177e4SLinus Torvalds };
4311da177e4SLinus Torvalds 
patch_yamaha_ymf753(struct snd_ac97 * ac97)432ac519028STakashi Iwai static int patch_yamaha_ymf753(struct snd_ac97 * ac97)
4331da177e4SLinus Torvalds {
4341da177e4SLinus Torvalds 	/* Patch for Yamaha YMF753, Copyright (c) by David Shust, dshust@shustring.com.
4351da177e4SLinus Torvalds 	   This chip has nonstandard and extended behaviour with regard to its S/PDIF output.
4361da177e4SLinus Torvalds 	   The AC'97 spec states that the S/PDIF signal is to be output at pin 48.
4371da177e4SLinus Torvalds 	   The YMF753 will ouput the S/PDIF signal to pin 43, 47 (EAPD), or 48.
4381da177e4SLinus Torvalds 	   By default, no output pin is selected, and the S/PDIF signal is not output.
4391da177e4SLinus Torvalds 	   There is also a bit to mute S/PDIF output in a vendor-specific register.
4401da177e4SLinus Torvalds 	*/
4411da177e4SLinus Torvalds 	ac97->build_ops = &patch_yamaha_ymf753_ops;
4421da177e4SLinus Torvalds 	ac97->caps |= AC97_BC_BASS_TREBLE;
4431da177e4SLinus Torvalds 	ac97->caps |= 0x04 << 10; /* Yamaha 3D enhancement */
4441da177e4SLinus Torvalds 	return 0;
4451da177e4SLinus Torvalds }
4461da177e4SLinus Torvalds 
4471da177e4SLinus Torvalds /*
448d331124dSLiam Girdwood  * May 2, 2003 Liam Girdwood <lrg@slimlogic.co.uk>
4491da177e4SLinus Torvalds  *  removed broken wolfson00 patch.
4501da177e4SLinus Torvalds  *  added support for WM9705,WM9708,WM9709,WM9710,WM9711,WM9712 and WM9717.
4511da177e4SLinus Torvalds  */
4521da177e4SLinus Torvalds 
453ee42381eSTakashi Iwai static const struct snd_kcontrol_new wm97xx_snd_ac97_controls[] = {
4543998b70fSLiam Girdwood AC97_DOUBLE("Front Playback Volume", AC97_WM97XX_FMIXER_VOL, 8, 0, 31, 1),
4553998b70fSLiam Girdwood AC97_SINGLE("Front Playback Switch", AC97_WM97XX_FMIXER_VOL, 15, 1, 1),
4563998b70fSLiam Girdwood };
4573998b70fSLiam Girdwood 
patch_wolfson_wm9703_specific(struct snd_ac97 * ac97)458ee42381eSTakashi Iwai static int patch_wolfson_wm9703_specific(struct snd_ac97 * ac97)
4591da177e4SLinus Torvalds {
4601da177e4SLinus Torvalds 	/* This is known to work for the ViewSonic ViewPad 1000
4613998b70fSLiam Girdwood 	 * Randolph Bentson <bentson@holmsjoen.com>
4623998b70fSLiam Girdwood 	 * WM9703/9707/9708/9717
4633998b70fSLiam Girdwood 	 */
4643998b70fSLiam Girdwood 	int err, i;
4651da177e4SLinus Torvalds 
4663998b70fSLiam Girdwood 	for (i = 0; i < ARRAY_SIZE(wm97xx_snd_ac97_controls); i++) {
467e66fd362STakashi Iwai 		err = snd_ctl_add(ac97->bus->card, snd_ac97_cnew(&wm97xx_snd_ac97_controls[i], ac97));
468e66fd362STakashi Iwai 		if (err < 0)
4693998b70fSLiam Girdwood 			return err;
4703998b70fSLiam Girdwood 	}
4711da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97,  AC97_WM97XX_FMIXER_VOL, 0x0808);
4721da177e4SLinus Torvalds 	return 0;
4731da177e4SLinus Torvalds }
4741da177e4SLinus Torvalds 
4753e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_wolfson_wm9703_ops = {
4763998b70fSLiam Girdwood 	.build_specific = patch_wolfson_wm9703_specific,
4773998b70fSLiam Girdwood };
4783998b70fSLiam Girdwood 
patch_wolfson03(struct snd_ac97 * ac97)479ac519028STakashi Iwai static int patch_wolfson03(struct snd_ac97 * ac97)
4803998b70fSLiam Girdwood {
4813998b70fSLiam Girdwood 	ac97->build_ops = &patch_wolfson_wm9703_ops;
4823998b70fSLiam Girdwood 	return 0;
4833998b70fSLiam Girdwood }
4843998b70fSLiam Girdwood 
485ee42381eSTakashi Iwai static const struct snd_kcontrol_new wm9704_snd_ac97_controls[] = {
4863998b70fSLiam Girdwood AC97_DOUBLE("Front Playback Volume", AC97_WM97XX_FMIXER_VOL, 8, 0, 31, 1),
4873998b70fSLiam Girdwood AC97_SINGLE("Front Playback Switch", AC97_WM97XX_FMIXER_VOL, 15, 1, 1),
4883998b70fSLiam Girdwood AC97_DOUBLE("Rear Playback Volume", AC97_WM9704_RMIXER_VOL, 8, 0, 31, 1),
4893998b70fSLiam Girdwood AC97_SINGLE("Rear Playback Switch", AC97_WM9704_RMIXER_VOL, 15, 1, 1),
4903998b70fSLiam Girdwood AC97_DOUBLE("Rear DAC Volume", AC97_WM9704_RPCM_VOL, 8, 0, 31, 1),
4913998b70fSLiam Girdwood AC97_DOUBLE("Surround Volume", AC97_SURROUND_MASTER, 8, 0, 31, 1),
4923998b70fSLiam Girdwood };
4933998b70fSLiam Girdwood 
patch_wolfson_wm9704_specific(struct snd_ac97 * ac97)494ee42381eSTakashi Iwai static int patch_wolfson_wm9704_specific(struct snd_ac97 * ac97)
4953998b70fSLiam Girdwood {
4963998b70fSLiam Girdwood 	int err, i;
4973998b70fSLiam Girdwood 	for (i = 0; i < ARRAY_SIZE(wm9704_snd_ac97_controls); i++) {
498e66fd362STakashi Iwai 		err = snd_ctl_add(ac97->bus->card, snd_ac97_cnew(&wm9704_snd_ac97_controls[i], ac97));
499e66fd362STakashi Iwai 		if (err < 0)
5003998b70fSLiam Girdwood 			return err;
5013998b70fSLiam Girdwood 	}
5023998b70fSLiam Girdwood 	/* patch for DVD noise */
5033998b70fSLiam Girdwood 	snd_ac97_write_cache(ac97, AC97_WM9704_TEST, 0x0200);
5043998b70fSLiam Girdwood 	return 0;
5053998b70fSLiam Girdwood }
5063998b70fSLiam Girdwood 
5073e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_wolfson_wm9704_ops = {
5083998b70fSLiam Girdwood 	.build_specific = patch_wolfson_wm9704_specific,
5093998b70fSLiam Girdwood };
5103998b70fSLiam Girdwood 
patch_wolfson04(struct snd_ac97 * ac97)511ac519028STakashi Iwai static int patch_wolfson04(struct snd_ac97 * ac97)
5121da177e4SLinus Torvalds {
5133998b70fSLiam Girdwood 	/* WM9704M/9704Q */
5143998b70fSLiam Girdwood 	ac97->build_ops = &patch_wolfson_wm9704_ops;
5151da177e4SLinus Torvalds 	return 0;
5161da177e4SLinus Torvalds }
5171da177e4SLinus Torvalds 
patch_wolfson05(struct snd_ac97 * ac97)518ac519028STakashi Iwai static int patch_wolfson05(struct snd_ac97 * ac97)
5191da177e4SLinus Torvalds {
5203998b70fSLiam Girdwood 	/* WM9705, WM9710 */
521dd3533ecSKrzysztof Helt 	ac97->build_ops = &patch_wolfson_wm9703_ops;
5221459c784SRodolfo Giometti #ifdef CONFIG_TOUCHSCREEN_WM9705
5231459c784SRodolfo Giometti 	/* WM9705 touchscreen uses AUX and VIDEO for touch */
5248f88820eSLiam Girdwood 	ac97->flags |= AC97_HAS_NO_VIDEO | AC97_HAS_NO_AUX;
5251459c784SRodolfo Giometti #endif
5261da177e4SLinus Torvalds 	return 0;
5271da177e4SLinus Torvalds }
5281da177e4SLinus Torvalds 
5293998b70fSLiam Girdwood static const char* wm9711_alc_select[] = {"None", "Left", "Right", "Stereo"};
5303998b70fSLiam Girdwood static const char* wm9711_alc_mix[] = {"Stereo", "Right", "Left", "None"};
5313998b70fSLiam Girdwood static const char* wm9711_out3_src[] = {"Left", "VREF", "Left + Right", "Mono"};
5323998b70fSLiam Girdwood static const char* wm9711_out3_lrsrc[] = {"Master Mix", "Headphone Mix"};
5333998b70fSLiam Girdwood static const char* wm9711_rec_adc[] = {"Stereo", "Left", "Right", "Mute"};
5343998b70fSLiam Girdwood static const char* wm9711_base[] = {"Linear Control", "Adaptive Boost"};
5353998b70fSLiam Girdwood static const char* wm9711_rec_gain[] = {"+1.5dB Steps", "+0.75dB Steps"};
5363998b70fSLiam Girdwood static const char* wm9711_mic[] = {"Mic 1", "Differential", "Mic 2", "Stereo"};
5373998b70fSLiam Girdwood static const char* wm9711_rec_sel[] =
5383998b70fSLiam Girdwood 	{"Mic 1", "NC", "NC", "Master Mix", "Line", "Headphone Mix", "Phone Mix", "Phone"};
5393998b70fSLiam Girdwood static const char* wm9711_ng_type[] = {"Constant Gain", "Mute"};
5403998b70fSLiam Girdwood 
5413998b70fSLiam Girdwood static const struct ac97_enum wm9711_enum[] = {
5423998b70fSLiam Girdwood AC97_ENUM_SINGLE(AC97_PCI_SVID, 14, 4, wm9711_alc_select),
5433998b70fSLiam Girdwood AC97_ENUM_SINGLE(AC97_VIDEO, 10, 4, wm9711_alc_mix),
5443998b70fSLiam Girdwood AC97_ENUM_SINGLE(AC97_AUX, 9, 4, wm9711_out3_src),
5453998b70fSLiam Girdwood AC97_ENUM_SINGLE(AC97_AUX, 8, 2, wm9711_out3_lrsrc),
5463998b70fSLiam Girdwood AC97_ENUM_SINGLE(AC97_REC_SEL, 12, 4, wm9711_rec_adc),
5473998b70fSLiam Girdwood AC97_ENUM_SINGLE(AC97_MASTER_TONE, 15, 2, wm9711_base),
5483998b70fSLiam Girdwood AC97_ENUM_DOUBLE(AC97_REC_GAIN, 14, 6, 2, wm9711_rec_gain),
5493998b70fSLiam Girdwood AC97_ENUM_SINGLE(AC97_MIC, 5, 4, wm9711_mic),
5503998b70fSLiam Girdwood AC97_ENUM_DOUBLE(AC97_REC_SEL, 8, 0, 8, wm9711_rec_sel),
5513998b70fSLiam Girdwood AC97_ENUM_SINGLE(AC97_PCI_SVID, 5, 2, wm9711_ng_type),
5523998b70fSLiam Girdwood };
5533998b70fSLiam Girdwood 
554ee42381eSTakashi Iwai static const struct snd_kcontrol_new wm9711_snd_ac97_controls[] = {
5553998b70fSLiam Girdwood AC97_SINGLE("ALC Target Volume", AC97_CODEC_CLASS_REV, 12, 15, 0),
5563998b70fSLiam Girdwood AC97_SINGLE("ALC Hold Time", AC97_CODEC_CLASS_REV, 8, 15, 0),
5573998b70fSLiam Girdwood AC97_SINGLE("ALC Decay Time", AC97_CODEC_CLASS_REV, 4, 15, 0),
5583998b70fSLiam Girdwood AC97_SINGLE("ALC Attack Time", AC97_CODEC_CLASS_REV, 0, 15, 0),
5593998b70fSLiam Girdwood AC97_ENUM("ALC Function", wm9711_enum[0]),
5603998b70fSLiam Girdwood AC97_SINGLE("ALC Max Volume", AC97_PCI_SVID, 11, 7, 1),
5613998b70fSLiam Girdwood AC97_SINGLE("ALC ZC Timeout", AC97_PCI_SVID, 9, 3, 1),
5623998b70fSLiam Girdwood AC97_SINGLE("ALC ZC Switch", AC97_PCI_SVID, 8, 1, 0),
5633998b70fSLiam Girdwood AC97_SINGLE("ALC NG Switch", AC97_PCI_SVID, 7, 1, 0),
5643998b70fSLiam Girdwood AC97_ENUM("ALC NG Type", wm9711_enum[9]),
5653998b70fSLiam Girdwood AC97_SINGLE("ALC NG Threshold", AC97_PCI_SVID, 0, 31, 1),
5663998b70fSLiam Girdwood 
5673998b70fSLiam Girdwood AC97_SINGLE("Side Tone Switch", AC97_VIDEO, 15, 1, 1),
5683998b70fSLiam Girdwood AC97_SINGLE("Side Tone Volume", AC97_VIDEO, 12, 7, 1),
5693998b70fSLiam Girdwood AC97_ENUM("ALC Headphone Mux", wm9711_enum[1]),
5703998b70fSLiam Girdwood AC97_SINGLE("ALC Headphone Volume", AC97_VIDEO, 7, 7, 1),
5713998b70fSLiam Girdwood 
5723998b70fSLiam Girdwood AC97_SINGLE("Out3 Switch", AC97_AUX, 15, 1, 1),
5732aedbda6SLuke Zhang AC97_SINGLE("Out3 ZC Switch", AC97_AUX, 7, 1, 0),
5743998b70fSLiam Girdwood AC97_ENUM("Out3 Mux", wm9711_enum[2]),
5753998b70fSLiam Girdwood AC97_ENUM("Out3 LR Mux", wm9711_enum[3]),
5763998b70fSLiam Girdwood AC97_SINGLE("Out3 Volume", AC97_AUX, 0, 31, 1),
5773998b70fSLiam Girdwood 
5783998b70fSLiam Girdwood AC97_SINGLE("Beep to Headphone Switch", AC97_PC_BEEP, 15, 1, 1),
5793998b70fSLiam Girdwood AC97_SINGLE("Beep to Headphone Volume", AC97_PC_BEEP, 12, 7, 1),
5803998b70fSLiam Girdwood AC97_SINGLE("Beep to Side Tone Switch", AC97_PC_BEEP, 11, 1, 1),
5813998b70fSLiam Girdwood AC97_SINGLE("Beep to Side Tone Volume", AC97_PC_BEEP, 8, 7, 1),
5823998b70fSLiam Girdwood AC97_SINGLE("Beep to Phone Switch", AC97_PC_BEEP, 7, 1, 1),
5833998b70fSLiam Girdwood AC97_SINGLE("Beep to Phone Volume", AC97_PC_BEEP, 4, 7, 1),
5843998b70fSLiam Girdwood 
5853998b70fSLiam Girdwood AC97_SINGLE("Aux to Headphone Switch", AC97_CD, 15, 1, 1),
5863998b70fSLiam Girdwood AC97_SINGLE("Aux to Headphone Volume", AC97_CD, 12, 7, 1),
5873998b70fSLiam Girdwood AC97_SINGLE("Aux to Side Tone Switch", AC97_CD, 11, 1, 1),
5883998b70fSLiam Girdwood AC97_SINGLE("Aux to Side Tone Volume", AC97_CD, 8, 7, 1),
5893998b70fSLiam Girdwood AC97_SINGLE("Aux to Phone Switch", AC97_CD, 7, 1, 1),
5903998b70fSLiam Girdwood AC97_SINGLE("Aux to Phone Volume", AC97_CD, 4, 7, 1),
5913998b70fSLiam Girdwood 
5923998b70fSLiam Girdwood AC97_SINGLE("Phone to Headphone Switch", AC97_PHONE, 15, 1, 1),
5933998b70fSLiam Girdwood AC97_SINGLE("Phone to Master Switch", AC97_PHONE, 14, 1, 1),
5943998b70fSLiam Girdwood 
5953998b70fSLiam Girdwood AC97_SINGLE("Line to Headphone Switch", AC97_LINE, 15, 1, 1),
5963998b70fSLiam Girdwood AC97_SINGLE("Line to Master Switch", AC97_LINE, 14, 1, 1),
5973998b70fSLiam Girdwood AC97_SINGLE("Line to Phone Switch", AC97_LINE, 13, 1, 1),
5983998b70fSLiam Girdwood 
5993998b70fSLiam Girdwood AC97_SINGLE("PCM Playback to Headphone Switch", AC97_PCM, 15, 1, 1),
6003998b70fSLiam Girdwood AC97_SINGLE("PCM Playback to Master Switch", AC97_PCM, 14, 1, 1),
6013998b70fSLiam Girdwood AC97_SINGLE("PCM Playback to Phone Switch", AC97_PCM, 13, 1, 1),
6023998b70fSLiam Girdwood 
6033998b70fSLiam Girdwood AC97_SINGLE("Capture 20dB Boost Switch", AC97_REC_SEL, 14, 1, 0),
6043998b70fSLiam Girdwood AC97_ENUM("Capture to Phone Mux", wm9711_enum[4]),
6053998b70fSLiam Girdwood AC97_SINGLE("Capture to Phone 20dB Boost Switch", AC97_REC_SEL, 11, 1, 1),
6063998b70fSLiam Girdwood AC97_ENUM("Capture Select", wm9711_enum[8]),
6073998b70fSLiam Girdwood 
6083998b70fSLiam Girdwood AC97_SINGLE("3D Upper Cut-off Switch", AC97_3D_CONTROL, 5, 1, 1),
6093998b70fSLiam Girdwood AC97_SINGLE("3D Lower Cut-off Switch", AC97_3D_CONTROL, 4, 1, 1),
6103998b70fSLiam Girdwood 
6113998b70fSLiam Girdwood AC97_ENUM("Bass Control", wm9711_enum[5]),
6123998b70fSLiam Girdwood AC97_SINGLE("Bass Cut-off Switch", AC97_MASTER_TONE, 12, 1, 1),
6133998b70fSLiam Girdwood AC97_SINGLE("Tone Cut-off Switch", AC97_MASTER_TONE, 4, 1, 1),
6143998b70fSLiam Girdwood AC97_SINGLE("Playback Attenuate (-6dB) Switch", AC97_MASTER_TONE, 6, 1, 0),
6153998b70fSLiam Girdwood 
6163998b70fSLiam Girdwood AC97_SINGLE("ADC Switch", AC97_REC_GAIN, 15, 1, 1),
6173998b70fSLiam Girdwood AC97_ENUM("Capture Volume Steps", wm9711_enum[6]),
6182aedbda6SLuke Zhang AC97_DOUBLE("Capture Volume", AC97_REC_GAIN, 8, 0, 63, 1),
6193998b70fSLiam Girdwood AC97_SINGLE("Capture ZC Switch", AC97_REC_GAIN, 7, 1, 0),
6203998b70fSLiam Girdwood 
6213998b70fSLiam Girdwood AC97_SINGLE("Mic 1 to Phone Switch", AC97_MIC, 14, 1, 1),
6223998b70fSLiam Girdwood AC97_SINGLE("Mic 2 to Phone Switch", AC97_MIC, 13, 1, 1),
6233998b70fSLiam Girdwood AC97_ENUM("Mic Select Source", wm9711_enum[7]),
6242aedbda6SLuke Zhang AC97_SINGLE("Mic 1 Volume", AC97_MIC, 8, 31, 1),
6252aedbda6SLuke Zhang AC97_SINGLE("Mic 2 Volume", AC97_MIC, 0, 31, 1),
626d7f6f115SJames Courtier-Dutton AC97_SINGLE("Mic 20dB Boost Switch", AC97_MIC, 7, 1, 0),
6273998b70fSLiam Girdwood 
6280264b3b6SJuergen Beisert AC97_SINGLE("Master Left Inv Switch", AC97_MASTER, 6, 1, 0),
6293998b70fSLiam Girdwood AC97_SINGLE("Master ZC Switch", AC97_MASTER, 7, 1, 0),
6303998b70fSLiam Girdwood AC97_SINGLE("Headphone ZC Switch", AC97_HEADPHONE, 7, 1, 0),
6313998b70fSLiam Girdwood AC97_SINGLE("Mono ZC Switch", AC97_MASTER_MONO, 7, 1, 0),
6323998b70fSLiam Girdwood };
6333998b70fSLiam Girdwood 
patch_wolfson_wm9711_specific(struct snd_ac97 * ac97)634ee42381eSTakashi Iwai static int patch_wolfson_wm9711_specific(struct snd_ac97 * ac97)
6353998b70fSLiam Girdwood {
6363998b70fSLiam Girdwood 	int err, i;
6373998b70fSLiam Girdwood 
6383998b70fSLiam Girdwood 	for (i = 0; i < ARRAY_SIZE(wm9711_snd_ac97_controls); i++) {
639e66fd362STakashi Iwai 		err = snd_ctl_add(ac97->bus->card, snd_ac97_cnew(&wm9711_snd_ac97_controls[i], ac97));
640e66fd362STakashi Iwai 		if (err < 0)
6413998b70fSLiam Girdwood 			return err;
6423998b70fSLiam Girdwood 	}
6433998b70fSLiam Girdwood 	snd_ac97_write_cache(ac97,  AC97_CODEC_CLASS_REV, 0x0808);
6443998b70fSLiam Girdwood 	snd_ac97_write_cache(ac97,  AC97_PCI_SVID, 0x0808);
6453998b70fSLiam Girdwood 	snd_ac97_write_cache(ac97,  AC97_VIDEO, 0x0808);
6463998b70fSLiam Girdwood 	snd_ac97_write_cache(ac97,  AC97_AUX, 0x0808);
6473998b70fSLiam Girdwood 	snd_ac97_write_cache(ac97,  AC97_PC_BEEP, 0x0808);
6483998b70fSLiam Girdwood 	snd_ac97_write_cache(ac97,  AC97_CD, 0x0000);
6493998b70fSLiam Girdwood 	return 0;
6503998b70fSLiam Girdwood }
6513998b70fSLiam Girdwood 
6523e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_wolfson_wm9711_ops = {
6533998b70fSLiam Girdwood 	.build_specific = patch_wolfson_wm9711_specific,
6543998b70fSLiam Girdwood };
6553998b70fSLiam Girdwood 
patch_wolfson11(struct snd_ac97 * ac97)656ac519028STakashi Iwai static int patch_wolfson11(struct snd_ac97 * ac97)
6571da177e4SLinus Torvalds {
6583998b70fSLiam Girdwood 	/* WM9711, WM9712 */
6593998b70fSLiam Girdwood 	ac97->build_ops = &patch_wolfson_wm9711_ops;
6603998b70fSLiam Girdwood 
6613998b70fSLiam Girdwood 	ac97->flags |= AC97_HAS_NO_REC_GAIN | AC97_STEREO_MUTES | AC97_HAS_NO_MIC |
6623998b70fSLiam Girdwood 		AC97_HAS_NO_PC_BEEP | AC97_HAS_NO_VIDEO | AC97_HAS_NO_CD;
6633998b70fSLiam Girdwood 
6641da177e4SLinus Torvalds 	return 0;
6651da177e4SLinus Torvalds }
6661da177e4SLinus Torvalds 
6671da177e4SLinus Torvalds static const char* wm9713_mic_mixer[] = {"Stereo", "Mic 1", "Mic 2", "Mute"};
6681da177e4SLinus Torvalds static const char* wm9713_rec_mux[] = {"Stereo", "Left", "Right", "Mute"};
6693998b70fSLiam Girdwood static const char* wm9713_rec_src[] =
6703998b70fSLiam Girdwood 	{"Mic 1", "Mic 2", "Line", "Mono In", "Headphone Mix", "Master Mix",
6713998b70fSLiam Girdwood 	"Mono Mix", "Zh"};
6723998b70fSLiam Girdwood static const char* wm9713_rec_gain[] = {"+1.5dB Steps", "+0.75dB Steps"};
6733998b70fSLiam Girdwood static const char* wm9713_alc_select[] = {"None", "Left", "Right", "Stereo"};
6743998b70fSLiam Girdwood static const char* wm9713_mono_pga[] = {"Vmid", "Zh", "Mono Mix", "Inv 1"};
6753998b70fSLiam Girdwood static const char* wm9713_spk_pga[] =
6763998b70fSLiam Girdwood 	{"Vmid", "Zh", "Headphone Mix", "Master Mix", "Inv", "NC", "NC", "NC"};
6773998b70fSLiam Girdwood static const char* wm9713_hp_pga[] = {"Vmid", "Zh", "Headphone Mix", "NC"};
6783998b70fSLiam Girdwood static const char* wm9713_out3_pga[] = {"Vmid", "Zh", "Inv 1", "NC"};
6793998b70fSLiam Girdwood static const char* wm9713_out4_pga[] = {"Vmid", "Zh", "Inv 2", "NC"};
6803998b70fSLiam Girdwood static const char* wm9713_dac_inv[] =
6813998b70fSLiam Girdwood 	{"Off", "Mono Mix", "Master Mix", "Headphone Mix L", "Headphone Mix R",
6823998b70fSLiam Girdwood 	"Headphone Mix Mono", "NC", "Vmid"};
6833998b70fSLiam Girdwood static const char* wm9713_base[] = {"Linear Control", "Adaptive Boost"};
6843998b70fSLiam Girdwood static const char* wm9713_ng_type[] = {"Constant Gain", "Mute"};
6851da177e4SLinus Torvalds 
6861da177e4SLinus Torvalds static const struct ac97_enum wm9713_enum[] = {
6871da177e4SLinus Torvalds AC97_ENUM_SINGLE(AC97_LINE, 3, 4, wm9713_mic_mixer),
6881da177e4SLinus Torvalds AC97_ENUM_SINGLE(AC97_VIDEO, 14, 4, wm9713_rec_mux),
6891da177e4SLinus Torvalds AC97_ENUM_SINGLE(AC97_VIDEO, 9, 4, wm9713_rec_mux),
6903998b70fSLiam Girdwood AC97_ENUM_DOUBLE(AC97_VIDEO, 3, 0, 8, wm9713_rec_src),
6913998b70fSLiam Girdwood AC97_ENUM_DOUBLE(AC97_CD, 14, 6, 2, wm9713_rec_gain),
6923998b70fSLiam Girdwood AC97_ENUM_SINGLE(AC97_PCI_SVID, 14, 4, wm9713_alc_select),
6933998b70fSLiam Girdwood AC97_ENUM_SINGLE(AC97_REC_GAIN, 14, 4, wm9713_mono_pga),
6943998b70fSLiam Girdwood AC97_ENUM_DOUBLE(AC97_REC_GAIN, 11, 8, 8, wm9713_spk_pga),
6953998b70fSLiam Girdwood AC97_ENUM_DOUBLE(AC97_REC_GAIN, 6, 4, 4, wm9713_hp_pga),
6963998b70fSLiam Girdwood AC97_ENUM_SINGLE(AC97_REC_GAIN, 2, 4, wm9713_out3_pga),
6973998b70fSLiam Girdwood AC97_ENUM_SINGLE(AC97_REC_GAIN, 0, 4, wm9713_out4_pga),
6983998b70fSLiam Girdwood AC97_ENUM_DOUBLE(AC97_REC_GAIN_MIC, 13, 10, 8, wm9713_dac_inv),
6993998b70fSLiam Girdwood AC97_ENUM_SINGLE(AC97_GENERAL_PURPOSE, 15, 2, wm9713_base),
7003998b70fSLiam Girdwood AC97_ENUM_SINGLE(AC97_PCI_SVID, 5, 2, wm9713_ng_type),
7011da177e4SLinus Torvalds };
7021da177e4SLinus Torvalds 
703ee42381eSTakashi Iwai static const struct snd_kcontrol_new wm13_snd_ac97_controls[] = {
7041da177e4SLinus Torvalds AC97_DOUBLE("Line In Volume", AC97_PC_BEEP, 8, 0, 31, 1),
7053998b70fSLiam Girdwood AC97_SINGLE("Line In to Headphone Switch", AC97_PC_BEEP, 15, 1, 1),
7063998b70fSLiam Girdwood AC97_SINGLE("Line In to Master Switch", AC97_PC_BEEP, 14, 1, 1),
7073998b70fSLiam Girdwood AC97_SINGLE("Line In to Mono Switch", AC97_PC_BEEP, 13, 1, 1),
7083998b70fSLiam Girdwood 
7093998b70fSLiam Girdwood AC97_DOUBLE("PCM Playback Volume", AC97_PHONE, 8, 0, 31, 1),
7103998b70fSLiam Girdwood AC97_SINGLE("PCM Playback to Headphone Switch", AC97_PHONE, 15, 1, 1),
7113998b70fSLiam Girdwood AC97_SINGLE("PCM Playback to Master Switch", AC97_PHONE, 14, 1, 1),
7123998b70fSLiam Girdwood AC97_SINGLE("PCM Playback to Mono Switch", AC97_PHONE, 13, 1, 1),
7133998b70fSLiam Girdwood 
7143998b70fSLiam Girdwood AC97_SINGLE("Mic 1 Volume", AC97_MIC, 8, 31, 1),
7153998b70fSLiam Girdwood AC97_SINGLE("Mic 2 Volume", AC97_MIC, 0, 31, 1),
7163998b70fSLiam Girdwood AC97_SINGLE("Mic 1 to Mono Switch", AC97_LINE, 7, 1, 1),
7173998b70fSLiam Girdwood AC97_SINGLE("Mic 2 to Mono Switch", AC97_LINE, 6, 1, 1),
718d7f6f115SJames Courtier-Dutton AC97_SINGLE("Mic Boost (+20dB) Switch", AC97_LINE, 5, 1, 0),
7193998b70fSLiam Girdwood AC97_ENUM("Mic to Headphone Mux", wm9713_enum[0]),
7203998b70fSLiam Girdwood AC97_SINGLE("Mic Headphone Mixer Volume", AC97_LINE, 0, 7, 1),
7213998b70fSLiam Girdwood 
7223998b70fSLiam Girdwood AC97_SINGLE("Capture Switch", AC97_CD, 15, 1, 1),
7233998b70fSLiam Girdwood AC97_ENUM("Capture Volume Steps", wm9713_enum[4]),
7243998b70fSLiam Girdwood AC97_DOUBLE("Capture Volume", AC97_CD, 8, 0, 15, 0),
7253998b70fSLiam Girdwood AC97_SINGLE("Capture ZC Switch", AC97_CD, 7, 1, 0),
7263998b70fSLiam Girdwood 
7273998b70fSLiam Girdwood AC97_ENUM("Capture to Headphone Mux", wm9713_enum[1]),
7283998b70fSLiam Girdwood AC97_SINGLE("Capture to Headphone Volume", AC97_VIDEO, 11, 7, 1),
7293998b70fSLiam Girdwood AC97_ENUM("Capture to Mono Mux", wm9713_enum[2]),
7303998b70fSLiam Girdwood AC97_SINGLE("Capture to Mono Boost (+20dB) Switch", AC97_VIDEO, 8, 1, 0),
7313998b70fSLiam Girdwood AC97_SINGLE("Capture ADC Boost (+20dB) Switch", AC97_VIDEO, 6, 1, 0),
7323998b70fSLiam Girdwood AC97_ENUM("Capture Select", wm9713_enum[3]),
7333998b70fSLiam Girdwood 
7343998b70fSLiam Girdwood AC97_SINGLE("ALC Target Volume", AC97_CODEC_CLASS_REV, 12, 15, 0),
7353998b70fSLiam Girdwood AC97_SINGLE("ALC Hold Time", AC97_CODEC_CLASS_REV, 8, 15, 0),
7363998b70fSLiam Girdwood AC97_SINGLE("ALC Decay Time ", AC97_CODEC_CLASS_REV, 4, 15, 0),
7373998b70fSLiam Girdwood AC97_SINGLE("ALC Attack Time", AC97_CODEC_CLASS_REV, 0, 15, 0),
7383998b70fSLiam Girdwood AC97_ENUM("ALC Function", wm9713_enum[5]),
7393998b70fSLiam Girdwood AC97_SINGLE("ALC Max Volume", AC97_PCI_SVID, 11, 7, 0),
7403998b70fSLiam Girdwood AC97_SINGLE("ALC ZC Timeout", AC97_PCI_SVID, 9, 3, 0),
7413998b70fSLiam Girdwood AC97_SINGLE("ALC ZC Switch", AC97_PCI_SVID, 8, 1, 0),
7423998b70fSLiam Girdwood AC97_SINGLE("ALC NG Switch", AC97_PCI_SVID, 7, 1, 0),
7433998b70fSLiam Girdwood AC97_ENUM("ALC NG Type", wm9713_enum[13]),
7443998b70fSLiam Girdwood AC97_SINGLE("ALC NG Threshold", AC97_PCI_SVID, 0, 31, 0),
7453998b70fSLiam Girdwood 
7463998b70fSLiam Girdwood AC97_DOUBLE("Master ZC Switch", AC97_MASTER, 14, 6, 1, 0),
7473998b70fSLiam Girdwood AC97_DOUBLE("Headphone ZC Switch", AC97_HEADPHONE, 14, 6, 1, 0),
7483998b70fSLiam Girdwood AC97_DOUBLE("Out3/4 ZC Switch", AC97_MASTER_MONO, 14, 6, 1, 0),
7493998b70fSLiam Girdwood AC97_SINGLE("Master Right Switch", AC97_MASTER, 7, 1, 1),
7503998b70fSLiam Girdwood AC97_SINGLE("Headphone Right Switch", AC97_HEADPHONE, 7, 1, 1),
7513998b70fSLiam Girdwood AC97_SINGLE("Out3/4 Right Switch", AC97_MASTER_MONO, 7, 1, 1),
7523998b70fSLiam Girdwood 
7533998b70fSLiam Girdwood AC97_SINGLE("Mono In to Headphone Switch", AC97_MASTER_TONE, 15, 1, 1),
7543998b70fSLiam Girdwood AC97_SINGLE("Mono In to Master Switch", AC97_MASTER_TONE, 14, 1, 1),
7553998b70fSLiam Girdwood AC97_SINGLE("Mono In Volume", AC97_MASTER_TONE, 8, 31, 1),
7563998b70fSLiam Girdwood AC97_SINGLE("Mono Switch", AC97_MASTER_TONE, 7, 1, 1),
7573998b70fSLiam Girdwood AC97_SINGLE("Mono ZC Switch", AC97_MASTER_TONE, 6, 1, 0),
7583998b70fSLiam Girdwood AC97_SINGLE("Mono Volume", AC97_MASTER_TONE, 0, 31, 1),
7593998b70fSLiam Girdwood 
760d355c82aSJaroslav Kysela AC97_SINGLE("Beep to Headphone Switch", AC97_AUX, 15, 1, 1),
761d355c82aSJaroslav Kysela AC97_SINGLE("Beep to Headphone Volume", AC97_AUX, 12, 7, 1),
762d355c82aSJaroslav Kysela AC97_SINGLE("Beep to Master Switch", AC97_AUX, 11, 1, 1),
763d355c82aSJaroslav Kysela AC97_SINGLE("Beep to Master Volume", AC97_AUX, 8, 7, 1),
764d355c82aSJaroslav Kysela AC97_SINGLE("Beep to Mono Switch", AC97_AUX, 7, 1, 1),
765d355c82aSJaroslav Kysela AC97_SINGLE("Beep to Mono Volume", AC97_AUX, 4, 7, 1),
7663998b70fSLiam Girdwood 
7673998b70fSLiam Girdwood AC97_SINGLE("Voice to Headphone Switch", AC97_PCM, 15, 1, 1),
7683998b70fSLiam Girdwood AC97_SINGLE("Voice to Headphone Volume", AC97_PCM, 12, 7, 1),
7693998b70fSLiam Girdwood AC97_SINGLE("Voice to Master Switch", AC97_PCM, 11, 1, 1),
7703998b70fSLiam Girdwood AC97_SINGLE("Voice to Master Volume", AC97_PCM, 8, 7, 1),
7713998b70fSLiam Girdwood AC97_SINGLE("Voice to Mono Switch", AC97_PCM, 7, 1, 1),
7723998b70fSLiam Girdwood AC97_SINGLE("Voice to Mono Volume", AC97_PCM, 4, 7, 1),
7733998b70fSLiam Girdwood 
7743998b70fSLiam Girdwood AC97_SINGLE("Aux to Headphone Switch", AC97_REC_SEL, 15, 1, 1),
7753998b70fSLiam Girdwood AC97_SINGLE("Aux to Headphone Volume", AC97_REC_SEL, 12, 7, 1),
7763998b70fSLiam Girdwood AC97_SINGLE("Aux to Master Switch", AC97_REC_SEL, 11, 1, 1),
7773998b70fSLiam Girdwood AC97_SINGLE("Aux to Master Volume", AC97_REC_SEL, 8, 7, 1),
7783998b70fSLiam Girdwood AC97_SINGLE("Aux to Mono Switch", AC97_REC_SEL, 7, 1, 1),
7793998b70fSLiam Girdwood AC97_SINGLE("Aux to Mono Volume", AC97_REC_SEL, 4, 7, 1),
7803998b70fSLiam Girdwood 
7813998b70fSLiam Girdwood AC97_ENUM("Mono Input Mux", wm9713_enum[6]),
7823998b70fSLiam Girdwood AC97_ENUM("Master Input Mux", wm9713_enum[7]),
7833998b70fSLiam Girdwood AC97_ENUM("Headphone Input Mux", wm9713_enum[8]),
7843998b70fSLiam Girdwood AC97_ENUM("Out 3 Input Mux", wm9713_enum[9]),
7853998b70fSLiam Girdwood AC97_ENUM("Out 4 Input Mux", wm9713_enum[10]),
7863998b70fSLiam Girdwood 
7873998b70fSLiam Girdwood AC97_ENUM("Bass Control", wm9713_enum[12]),
7883998b70fSLiam Girdwood AC97_SINGLE("Bass Cut-off Switch", AC97_GENERAL_PURPOSE, 12, 1, 1),
7893998b70fSLiam Girdwood AC97_SINGLE("Tone Cut-off Switch", AC97_GENERAL_PURPOSE, 4, 1, 1),
7903998b70fSLiam Girdwood AC97_SINGLE("Playback Attenuate (-6dB) Switch", AC97_GENERAL_PURPOSE, 6, 1, 0),
7913998b70fSLiam Girdwood AC97_SINGLE("Bass Volume", AC97_GENERAL_PURPOSE, 8, 15, 1),
7923998b70fSLiam Girdwood AC97_SINGLE("Tone Volume", AC97_GENERAL_PURPOSE, 0, 15, 1),
7931da177e4SLinus Torvalds };
7941da177e4SLinus Torvalds 
795ee42381eSTakashi Iwai static const struct snd_kcontrol_new wm13_snd_ac97_controls_3d[] = {
7963998b70fSLiam Girdwood AC97_ENUM("Inv Input Mux", wm9713_enum[11]),
7973998b70fSLiam Girdwood AC97_SINGLE("3D Upper Cut-off Switch", AC97_REC_GAIN_MIC, 5, 1, 0),
7983998b70fSLiam Girdwood AC97_SINGLE("3D Lower Cut-off Switch", AC97_REC_GAIN_MIC, 4, 1, 0),
7993998b70fSLiam Girdwood AC97_SINGLE("3D Depth", AC97_REC_GAIN_MIC, 0, 15, 1),
8001da177e4SLinus Torvalds };
8011da177e4SLinus Torvalds 
patch_wolfson_wm9713_3d(struct snd_ac97 * ac97)802ee42381eSTakashi Iwai static int patch_wolfson_wm9713_3d (struct snd_ac97 * ac97)
8033998b70fSLiam Girdwood {
8043998b70fSLiam Girdwood 	int err, i;
8051da177e4SLinus Torvalds 
8063998b70fSLiam Girdwood 	for (i = 0; i < ARRAY_SIZE(wm13_snd_ac97_controls_3d); i++) {
807e66fd362STakashi Iwai 		err = snd_ctl_add(ac97->bus->card, snd_ac97_cnew(&wm13_snd_ac97_controls_3d[i], ac97));
808e66fd362STakashi Iwai 		if (err < 0)
8093998b70fSLiam Girdwood 			return err;
8103998b70fSLiam Girdwood 	}
8113998b70fSLiam Girdwood 	return 0;
8123998b70fSLiam Girdwood }
8131da177e4SLinus Torvalds 
patch_wolfson_wm9713_specific(struct snd_ac97 * ac97)814ee42381eSTakashi Iwai static int patch_wolfson_wm9713_specific(struct snd_ac97 * ac97)
8151da177e4SLinus Torvalds {
8161da177e4SLinus Torvalds 	int err, i;
8171da177e4SLinus Torvalds 
8183998b70fSLiam Girdwood 	for (i = 0; i < ARRAY_SIZE(wm13_snd_ac97_controls); i++) {
819e66fd362STakashi Iwai 		err = snd_ctl_add(ac97->bus->card, snd_ac97_cnew(&wm13_snd_ac97_controls[i], ac97));
820e66fd362STakashi Iwai 		if (err < 0)
8211da177e4SLinus Torvalds 			return err;
8221da177e4SLinus Torvalds 	}
8231da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_PC_BEEP, 0x0808);
8241da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_PHONE, 0x0808);
8251da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_MIC, 0x0808);
8261da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_LINE, 0x00da);
8271da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_CD, 0x0808);
8281da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_VIDEO, 0xd612);
8291da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_REC_GAIN, 0x1ba0);
8301da177e4SLinus Torvalds 	return 0;
8311da177e4SLinus Torvalds }
8321da177e4SLinus Torvalds 
8331da177e4SLinus Torvalds #ifdef CONFIG_PM
patch_wolfson_wm9713_suspend(struct snd_ac97 * ac97)834ee42381eSTakashi Iwai static void patch_wolfson_wm9713_suspend (struct snd_ac97 * ac97)
8351da177e4SLinus Torvalds {
8361da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_EXTENDED_MID, 0xfeff);
8371da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_EXTENDED_MSTATUS, 0xffff);
8381da177e4SLinus Torvalds }
8391da177e4SLinus Torvalds 
patch_wolfson_wm9713_resume(struct snd_ac97 * ac97)840ee42381eSTakashi Iwai static void patch_wolfson_wm9713_resume (struct snd_ac97 * ac97)
8411da177e4SLinus Torvalds {
8421da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_EXTENDED_MID, 0xda00);
8431da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_EXTENDED_MSTATUS, 0x3810);
8441da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_POWERDOWN, 0x0);
8451da177e4SLinus Torvalds }
8461da177e4SLinus Torvalds #endif
8471da177e4SLinus Torvalds 
8483e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_wolfson_wm9713_ops = {
8491da177e4SLinus Torvalds 	.build_specific = patch_wolfson_wm9713_specific,
8503998b70fSLiam Girdwood 	.build_3d = patch_wolfson_wm9713_3d,
8511da177e4SLinus Torvalds #ifdef CONFIG_PM
8521da177e4SLinus Torvalds 	.suspend = patch_wolfson_wm9713_suspend,
8531da177e4SLinus Torvalds 	.resume = patch_wolfson_wm9713_resume
8541da177e4SLinus Torvalds #endif
8551da177e4SLinus Torvalds };
8561da177e4SLinus Torvalds 
patch_wolfson13(struct snd_ac97 * ac97)857ac519028STakashi Iwai static int patch_wolfson13(struct snd_ac97 * ac97)
8581da177e4SLinus Torvalds {
8593998b70fSLiam Girdwood 	/* WM9713, WM9714 */
8601da177e4SLinus Torvalds 	ac97->build_ops = &patch_wolfson_wm9713_ops;
8611da177e4SLinus Torvalds 
8621da177e4SLinus Torvalds 	ac97->flags |= AC97_HAS_NO_REC_GAIN | AC97_STEREO_MUTES | AC97_HAS_NO_PHONE |
8633998b70fSLiam Girdwood 		AC97_HAS_NO_PC_BEEP | AC97_HAS_NO_VIDEO | AC97_HAS_NO_CD | AC97_HAS_NO_TONE |
8643998b70fSLiam Girdwood 		AC97_HAS_NO_STD_PCM;
865064d2112SLiam Girdwood     	ac97->scaps &= ~AC97_SCAP_MODEM;
8661da177e4SLinus Torvalds 
8671da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_EXTENDED_MID, 0xda00);
8681da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_EXTENDED_MSTATUS, 0x3810);
8691da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_POWERDOWN, 0x0);
8701da177e4SLinus Torvalds 
8711da177e4SLinus Torvalds 	return 0;
8721da177e4SLinus Torvalds }
8731da177e4SLinus Torvalds 
8741da177e4SLinus Torvalds /*
8751da177e4SLinus Torvalds  * Tritech codec
8761da177e4SLinus Torvalds  */
patch_tritech_tr28028(struct snd_ac97 * ac97)877ac519028STakashi Iwai static int patch_tritech_tr28028(struct snd_ac97 * ac97)
8781da177e4SLinus Torvalds {
8791da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, 0x26, 0x0300);
8801da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, 0x26, 0x0000);
8811da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SURROUND_MASTER, 0x0000);
8821da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SPDIF, 0x0000);
8831da177e4SLinus Torvalds 	return 0;
8841da177e4SLinus Torvalds }
8851da177e4SLinus Torvalds 
8861da177e4SLinus Torvalds /*
8871da177e4SLinus Torvalds  * Sigmatel STAC97xx codecs
8881da177e4SLinus Torvalds  */
patch_sigmatel_stac9700_3d(struct snd_ac97 * ac97)889ee42381eSTakashi Iwai static int patch_sigmatel_stac9700_3d(struct snd_ac97 * ac97)
8901da177e4SLinus Torvalds {
891ee42381eSTakashi Iwai 	struct snd_kcontrol *kctl;
8921da177e4SLinus Torvalds 	int err;
8931da177e4SLinus Torvalds 
894e66fd362STakashi Iwai 	err = snd_ctl_add(ac97->bus->card, kctl = snd_ac97_cnew(&snd_ac97_controls_3d[0], ac97));
895e66fd362STakashi Iwai 	if (err < 0)
8961da177e4SLinus Torvalds 		return err;
8971da177e4SLinus Torvalds 	strcpy(kctl->id.name, "3D Control Sigmatel - Depth");
8981da177e4SLinus Torvalds 	kctl->private_value = AC97_SINGLE_VALUE(AC97_3D_CONTROL, 2, 3, 0);
8991da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_3D_CONTROL, 0x0000);
9001da177e4SLinus Torvalds 	return 0;
9011da177e4SLinus Torvalds }
9021da177e4SLinus Torvalds 
patch_sigmatel_stac9708_3d(struct snd_ac97 * ac97)903ee42381eSTakashi Iwai static int patch_sigmatel_stac9708_3d(struct snd_ac97 * ac97)
9041da177e4SLinus Torvalds {
905ee42381eSTakashi Iwai 	struct snd_kcontrol *kctl;
9061da177e4SLinus Torvalds 	int err;
9071da177e4SLinus Torvalds 
908e66fd362STakashi Iwai 	kctl = snd_ac97_cnew(&snd_ac97_controls_3d[0], ac97);
909e66fd362STakashi Iwai 	err = snd_ctl_add(ac97->bus->card, kctl);
910e66fd362STakashi Iwai 	if (err < 0)
9111da177e4SLinus Torvalds 		return err;
9121da177e4SLinus Torvalds 	strcpy(kctl->id.name, "3D Control Sigmatel - Depth");
9131da177e4SLinus Torvalds 	kctl->private_value = AC97_SINGLE_VALUE(AC97_3D_CONTROL, 0, 3, 0);
914e66fd362STakashi Iwai 	kctl = snd_ac97_cnew(&snd_ac97_controls_3d[0], ac97);
915e66fd362STakashi Iwai 	err = snd_ctl_add(ac97->bus->card, kctl);
916e66fd362STakashi Iwai 	if (err < 0)
9171da177e4SLinus Torvalds 		return err;
9181da177e4SLinus Torvalds 	strcpy(kctl->id.name, "3D Control Sigmatel - Rear Depth");
9191da177e4SLinus Torvalds 	kctl->private_value = AC97_SINGLE_VALUE(AC97_3D_CONTROL, 2, 3, 0);
9201da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_3D_CONTROL, 0x0000);
9211da177e4SLinus Torvalds 	return 0;
9221da177e4SLinus Torvalds }
9231da177e4SLinus Torvalds 
924ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_sigmatel_4speaker =
925afe6d7e3SAndreas Mohr AC97_SINGLE("Sigmatel 4-Speaker Stereo Playback Switch",
926afe6d7e3SAndreas Mohr 		AC97_SIGMATEL_DAC2INVERT, 2, 1, 0);
9271da177e4SLinus Torvalds 
928afe6d7e3SAndreas Mohr /* "Sigmatel " removed due to excessive name length: */
929ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_sigmatel_phaseinvert =
930afe6d7e3SAndreas Mohr AC97_SINGLE("Surround Phase Inversion Playback Switch",
931afe6d7e3SAndreas Mohr 		AC97_SIGMATEL_DAC2INVERT, 3, 1, 0);
9321da177e4SLinus Torvalds 
933ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_sigmatel_controls[] = {
9341da177e4SLinus Torvalds AC97_SINGLE("Sigmatel DAC 6dB Attenuate", AC97_SIGMATEL_ANALOG, 1, 1, 0),
9351da177e4SLinus Torvalds AC97_SINGLE("Sigmatel ADC 6dB Attenuate", AC97_SIGMATEL_ANALOG, 0, 1, 0)
9361da177e4SLinus Torvalds };
9371da177e4SLinus Torvalds 
patch_sigmatel_stac97xx_specific(struct snd_ac97 * ac97)938ee42381eSTakashi Iwai static int patch_sigmatel_stac97xx_specific(struct snd_ac97 * ac97)
9391da177e4SLinus Torvalds {
9401da177e4SLinus Torvalds 	int err;
9411da177e4SLinus Torvalds 
9421da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SIGMATEL_ANALOG, snd_ac97_read(ac97, AC97_SIGMATEL_ANALOG) & ~0x0003);
943e66fd362STakashi Iwai 	if (snd_ac97_try_bit(ac97, AC97_SIGMATEL_ANALOG, 1)) {
944e66fd362STakashi Iwai 		err = patch_build_controls(ac97, &snd_ac97_sigmatel_controls[0], 1);
945e66fd362STakashi Iwai 		if (err < 0)
9461da177e4SLinus Torvalds 			return err;
947e66fd362STakashi Iwai 	}
948e66fd362STakashi Iwai 	if (snd_ac97_try_bit(ac97, AC97_SIGMATEL_ANALOG, 0)) {
949e66fd362STakashi Iwai 		err = patch_build_controls(ac97, &snd_ac97_sigmatel_controls[1], 1);
950e66fd362STakashi Iwai 		if (err < 0)
9511da177e4SLinus Torvalds 			return err;
952e66fd362STakashi Iwai 	}
953e66fd362STakashi Iwai 	if (snd_ac97_try_bit(ac97, AC97_SIGMATEL_DAC2INVERT, 2)) {
954e66fd362STakashi Iwai 		err = patch_build_controls(ac97, &snd_ac97_sigmatel_4speaker, 1);
955e66fd362STakashi Iwai 		if (err < 0)
9561da177e4SLinus Torvalds 			return err;
957e66fd362STakashi Iwai 	}
958e66fd362STakashi Iwai 	if (snd_ac97_try_bit(ac97, AC97_SIGMATEL_DAC2INVERT, 3)) {
959e66fd362STakashi Iwai 		err = patch_build_controls(ac97, &snd_ac97_sigmatel_phaseinvert, 1);
960e66fd362STakashi Iwai 		if (err < 0)
9611da177e4SLinus Torvalds 			return err;
962e66fd362STakashi Iwai 	}
9631da177e4SLinus Torvalds 	return 0;
9641da177e4SLinus Torvalds }
9651da177e4SLinus Torvalds 
9663e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_sigmatel_stac9700_ops = {
9671da177e4SLinus Torvalds 	.build_3d	= patch_sigmatel_stac9700_3d,
9681da177e4SLinus Torvalds 	.build_specific	= patch_sigmatel_stac97xx_specific
9691da177e4SLinus Torvalds };
9701da177e4SLinus Torvalds 
patch_sigmatel_stac9700(struct snd_ac97 * ac97)971ac519028STakashi Iwai static int patch_sigmatel_stac9700(struct snd_ac97 * ac97)
9721da177e4SLinus Torvalds {
9731da177e4SLinus Torvalds 	ac97->build_ops = &patch_sigmatel_stac9700_ops;
9741da177e4SLinus Torvalds 	return 0;
9751da177e4SLinus Torvalds }
9761da177e4SLinus Torvalds 
snd_ac97_stac9708_put_bias(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)977ee42381eSTakashi Iwai static int snd_ac97_stac9708_put_bias(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
9781da177e4SLinus Torvalds {
979ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
9801da177e4SLinus Torvalds 	int err;
9811da177e4SLinus Torvalds 
98262932df8SIngo Molnar 	mutex_lock(&ac97->page_mutex);
9831da177e4SLinus Torvalds 	snd_ac97_write(ac97, AC97_SIGMATEL_BIAS1, 0xabba);
9841da177e4SLinus Torvalds 	err = snd_ac97_update_bits(ac97, AC97_SIGMATEL_BIAS2, 0x0010,
9851da177e4SLinus Torvalds 				   (ucontrol->value.integer.value[0] & 1) << 4);
9861da177e4SLinus Torvalds 	snd_ac97_write(ac97, AC97_SIGMATEL_BIAS1, 0);
98762932df8SIngo Molnar 	mutex_unlock(&ac97->page_mutex);
9881da177e4SLinus Torvalds 	return err;
9891da177e4SLinus Torvalds }
9901da177e4SLinus Torvalds 
991ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_stac9708_bias_control = {
9921da177e4SLinus Torvalds 	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9931da177e4SLinus Torvalds 	.name = "Sigmatel Output Bias Switch",
9941da177e4SLinus Torvalds 	.info = snd_ac97_info_volsw,
9951da177e4SLinus Torvalds 	.get = snd_ac97_get_volsw,
9961da177e4SLinus Torvalds 	.put = snd_ac97_stac9708_put_bias,
9971da177e4SLinus Torvalds 	.private_value = AC97_SINGLE_VALUE(AC97_SIGMATEL_BIAS2, 4, 1, 0),
9981da177e4SLinus Torvalds };
9991da177e4SLinus Torvalds 
patch_sigmatel_stac9708_specific(struct snd_ac97 * ac97)1000ee42381eSTakashi Iwai static int patch_sigmatel_stac9708_specific(struct snd_ac97 *ac97)
10011da177e4SLinus Torvalds {
10021da177e4SLinus Torvalds 	int err;
10031da177e4SLinus Torvalds 
1004e4c3bf0fSJames C Georgas 	/* the register bit is writable, but the function is not implemented: */
1005e4c3bf0fSJames C Georgas 	snd_ac97_remove_ctl(ac97, "PCM Out Path & Mute", NULL);
1006e4c3bf0fSJames C Georgas 
10071da177e4SLinus Torvalds 	snd_ac97_rename_vol_ctl(ac97, "Headphone Playback", "Sigmatel Surround Playback");
1008e66fd362STakashi Iwai 	err = patch_build_controls(ac97, &snd_ac97_stac9708_bias_control, 1);
1009e66fd362STakashi Iwai 	if (err < 0)
10101da177e4SLinus Torvalds 		return err;
10111da177e4SLinus Torvalds 	return patch_sigmatel_stac97xx_specific(ac97);
10121da177e4SLinus Torvalds }
10131da177e4SLinus Torvalds 
10143e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_sigmatel_stac9708_ops = {
10151da177e4SLinus Torvalds 	.build_3d	= patch_sigmatel_stac9708_3d,
10161da177e4SLinus Torvalds 	.build_specific	= patch_sigmatel_stac9708_specific
10171da177e4SLinus Torvalds };
10181da177e4SLinus Torvalds 
patch_sigmatel_stac9708(struct snd_ac97 * ac97)1019ac519028STakashi Iwai static int patch_sigmatel_stac9708(struct snd_ac97 * ac97)
10201da177e4SLinus Torvalds {
10211da177e4SLinus Torvalds 	unsigned int codec72, codec6c;
10221da177e4SLinus Torvalds 
10231da177e4SLinus Torvalds 	ac97->build_ops = &patch_sigmatel_stac9708_ops;
10241da177e4SLinus Torvalds 	ac97->caps |= 0x10;	/* HP (sigmatel surround) support */
10251da177e4SLinus Torvalds 
10261da177e4SLinus Torvalds 	codec72 = snd_ac97_read(ac97, AC97_SIGMATEL_BIAS2) & 0x8000;
10271da177e4SLinus Torvalds 	codec6c = snd_ac97_read(ac97, AC97_SIGMATEL_ANALOG);
10281da177e4SLinus Torvalds 
10291da177e4SLinus Torvalds 	if ((codec72==0) && (codec6c==0)) {
10301da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC1, 0xabba);
10311da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC2, 0x1000);
10321da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS1, 0xabba);
10331da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS2, 0x0007);
10341da177e4SLinus Torvalds 	} else if ((codec72==0x8000) && (codec6c==0)) {
10351da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC1, 0xabba);
10361da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC2, 0x1001);
10371da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_SIGMATEL_DAC2INVERT, 0x0008);
10381da177e4SLinus Torvalds 	} else if ((codec72==0x8000) && (codec6c==0x0080)) {
10391da177e4SLinus Torvalds 		/* nothing */
10401da177e4SLinus Torvalds 	}
10411da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SIGMATEL_MULTICHN, 0x0000);
10421da177e4SLinus Torvalds 	return 0;
10431da177e4SLinus Torvalds }
10441da177e4SLinus Torvalds 
patch_sigmatel_stac9721(struct snd_ac97 * ac97)1045ac519028STakashi Iwai static int patch_sigmatel_stac9721(struct snd_ac97 * ac97)
10461da177e4SLinus Torvalds {
10471da177e4SLinus Torvalds 	ac97->build_ops = &patch_sigmatel_stac9700_ops;
10481da177e4SLinus Torvalds 	if (snd_ac97_read(ac97, AC97_SIGMATEL_ANALOG) == 0) {
10491da177e4SLinus Torvalds 		// patch for SigmaTel
10501da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC1, 0xabba);
10511da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC2, 0x4000);
10521da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS1, 0xabba);
10531da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS2, 0x0002);
10541da177e4SLinus Torvalds 	}
10551da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SIGMATEL_MULTICHN, 0x0000);
10561da177e4SLinus Torvalds 	return 0;
10571da177e4SLinus Torvalds }
10581da177e4SLinus Torvalds 
patch_sigmatel_stac9744(struct snd_ac97 * ac97)1059ac519028STakashi Iwai static int patch_sigmatel_stac9744(struct snd_ac97 * ac97)
10601da177e4SLinus Torvalds {
10611da177e4SLinus Torvalds 	// patch for SigmaTel
10621da177e4SLinus Torvalds 	ac97->build_ops = &patch_sigmatel_stac9700_ops;
10631da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC1, 0xabba);
10641da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC2, 0x0000);	/* is this correct? --jk */
10651da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS1, 0xabba);
10661da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS2, 0x0002);
10671da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SIGMATEL_MULTICHN, 0x0000);
10681da177e4SLinus Torvalds 	return 0;
10691da177e4SLinus Torvalds }
10701da177e4SLinus Torvalds 
patch_sigmatel_stac9756(struct snd_ac97 * ac97)1071ac519028STakashi Iwai static int patch_sigmatel_stac9756(struct snd_ac97 * ac97)
10721da177e4SLinus Torvalds {
10731da177e4SLinus Torvalds 	// patch for SigmaTel
10741da177e4SLinus Torvalds 	ac97->build_ops = &patch_sigmatel_stac9700_ops;
10751da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC1, 0xabba);
10761da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC2, 0x0000);	/* is this correct? --jk */
10771da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS1, 0xabba);
10781da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS2, 0x0002);
10791da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_SIGMATEL_MULTICHN, 0x0000);
10801da177e4SLinus Torvalds 	return 0;
10811da177e4SLinus Torvalds }
10821da177e4SLinus Torvalds 
snd_ac97_stac9758_output_jack_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)1083ee42381eSTakashi Iwai static int snd_ac97_stac9758_output_jack_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
10841da177e4SLinus Torvalds {
10853b7a00dcSTakashi Iwai 	static const char * const texts[5] = {
10863b7a00dcSTakashi Iwai 		"Input/Disabled", "Front Output",
10871da177e4SLinus Torvalds 		"Rear Output", "Center/LFE Output", "Mixer Output" };
10881da177e4SLinus Torvalds 
10893b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 5, texts);
10901da177e4SLinus Torvalds }
10911da177e4SLinus Torvalds 
snd_ac97_stac9758_output_jack_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)1092ee42381eSTakashi Iwai static int snd_ac97_stac9758_output_jack_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
10931da177e4SLinus Torvalds {
1094ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
10951da177e4SLinus Torvalds 	int shift = kcontrol->private_value;
10961da177e4SLinus Torvalds 	unsigned short val;
10971da177e4SLinus Torvalds 
10981da177e4SLinus Torvalds 	val = ac97->regs[AC97_SIGMATEL_OUTSEL] >> shift;
10991da177e4SLinus Torvalds 	if (!(val & 4))
11001da177e4SLinus Torvalds 		ucontrol->value.enumerated.item[0] = 0;
11011da177e4SLinus Torvalds 	else
11021da177e4SLinus Torvalds 		ucontrol->value.enumerated.item[0] = 1 + (val & 3);
11031da177e4SLinus Torvalds 	return 0;
11041da177e4SLinus Torvalds }
11051da177e4SLinus Torvalds 
snd_ac97_stac9758_output_jack_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)1106ee42381eSTakashi Iwai static int snd_ac97_stac9758_output_jack_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
11071da177e4SLinus Torvalds {
1108ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
11091da177e4SLinus Torvalds 	int shift = kcontrol->private_value;
11101da177e4SLinus Torvalds 	unsigned short val;
11111da177e4SLinus Torvalds 
11121da177e4SLinus Torvalds 	if (ucontrol->value.enumerated.item[0] > 4)
11131da177e4SLinus Torvalds 		return -EINVAL;
11141da177e4SLinus Torvalds 	if (ucontrol->value.enumerated.item[0] == 0)
11151da177e4SLinus Torvalds 		val = 0;
11161da177e4SLinus Torvalds 	else
11171da177e4SLinus Torvalds 		val = 4 | (ucontrol->value.enumerated.item[0] - 1);
11181da177e4SLinus Torvalds 	return ac97_update_bits_page(ac97, AC97_SIGMATEL_OUTSEL,
11191da177e4SLinus Torvalds 				     7 << shift, val << shift, 0);
11201da177e4SLinus Torvalds }
11211da177e4SLinus Torvalds 
snd_ac97_stac9758_input_jack_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)1122ee42381eSTakashi Iwai static int snd_ac97_stac9758_input_jack_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
11231da177e4SLinus Torvalds {
11243b7a00dcSTakashi Iwai 	static const char * const texts[7] = {
11253b7a00dcSTakashi Iwai 		"Mic2 Jack", "Mic1 Jack", "Line In Jack",
11261da177e4SLinus Torvalds 		"Front Jack", "Rear Jack", "Center/LFE Jack", "Mute" };
11271da177e4SLinus Torvalds 
11283b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 7, texts);
11291da177e4SLinus Torvalds }
11301da177e4SLinus Torvalds 
snd_ac97_stac9758_input_jack_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)1131ee42381eSTakashi Iwai static int snd_ac97_stac9758_input_jack_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
11321da177e4SLinus Torvalds {
1133ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
11341da177e4SLinus Torvalds 	int shift = kcontrol->private_value;
11351da177e4SLinus Torvalds 	unsigned short val;
11361da177e4SLinus Torvalds 
11371da177e4SLinus Torvalds 	val = ac97->regs[AC97_SIGMATEL_INSEL];
11381da177e4SLinus Torvalds 	ucontrol->value.enumerated.item[0] = (val >> shift) & 7;
11391da177e4SLinus Torvalds 	return 0;
11401da177e4SLinus Torvalds }
11411da177e4SLinus Torvalds 
snd_ac97_stac9758_input_jack_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)1142ee42381eSTakashi Iwai static int snd_ac97_stac9758_input_jack_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
11431da177e4SLinus Torvalds {
1144ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
11451da177e4SLinus Torvalds 	int shift = kcontrol->private_value;
11461da177e4SLinus Torvalds 
11471da177e4SLinus Torvalds 	return ac97_update_bits_page(ac97, AC97_SIGMATEL_INSEL, 7 << shift,
11481da177e4SLinus Torvalds 				     ucontrol->value.enumerated.item[0] << shift, 0);
11491da177e4SLinus Torvalds }
11501da177e4SLinus Torvalds 
snd_ac97_stac9758_phonesel_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)1151ee42381eSTakashi Iwai static int snd_ac97_stac9758_phonesel_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
11521da177e4SLinus Torvalds {
11533b7a00dcSTakashi Iwai 	static const char * const texts[3] = {
11543b7a00dcSTakashi Iwai 		"None", "Front Jack", "Rear Jack"
11553b7a00dcSTakashi Iwai 	};
11561da177e4SLinus Torvalds 
11573b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 3, texts);
11581da177e4SLinus Torvalds }
11591da177e4SLinus Torvalds 
snd_ac97_stac9758_phonesel_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)1160ee42381eSTakashi Iwai static int snd_ac97_stac9758_phonesel_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
11611da177e4SLinus Torvalds {
1162ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
11631da177e4SLinus Torvalds 
11641da177e4SLinus Torvalds 	ucontrol->value.enumerated.item[0] = ac97->regs[AC97_SIGMATEL_IOMISC] & 3;
11651da177e4SLinus Torvalds 	return 0;
11661da177e4SLinus Torvalds }
11671da177e4SLinus Torvalds 
snd_ac97_stac9758_phonesel_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)1168ee42381eSTakashi Iwai static int snd_ac97_stac9758_phonesel_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
11691da177e4SLinus Torvalds {
1170ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
11711da177e4SLinus Torvalds 
11721da177e4SLinus Torvalds 	return ac97_update_bits_page(ac97, AC97_SIGMATEL_IOMISC, 3,
11731da177e4SLinus Torvalds 				     ucontrol->value.enumerated.item[0], 0);
11741da177e4SLinus Torvalds }
11751da177e4SLinus Torvalds 
11761da177e4SLinus Torvalds #define STAC9758_OUTPUT_JACK(xname, shift) \
11771da177e4SLinus Torvalds {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
11781da177e4SLinus Torvalds 	.info = snd_ac97_stac9758_output_jack_info, \
11791da177e4SLinus Torvalds 	.get = snd_ac97_stac9758_output_jack_get, \
11801da177e4SLinus Torvalds 	.put = snd_ac97_stac9758_output_jack_put, \
11811da177e4SLinus Torvalds 	.private_value = shift }
11821da177e4SLinus Torvalds #define STAC9758_INPUT_JACK(xname, shift) \
11831da177e4SLinus Torvalds {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
11841da177e4SLinus Torvalds 	.info = snd_ac97_stac9758_input_jack_info, \
11851da177e4SLinus Torvalds 	.get = snd_ac97_stac9758_input_jack_get, \
11861da177e4SLinus Torvalds 	.put = snd_ac97_stac9758_input_jack_put, \
11871da177e4SLinus Torvalds 	.private_value = shift }
1188ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_sigmatel_stac9758_controls[] = {
11891da177e4SLinus Torvalds 	STAC9758_OUTPUT_JACK("Mic1 Jack", 1),
11901da177e4SLinus Torvalds 	STAC9758_OUTPUT_JACK("LineIn Jack", 4),
11911da177e4SLinus Torvalds 	STAC9758_OUTPUT_JACK("Front Jack", 7),
11921da177e4SLinus Torvalds 	STAC9758_OUTPUT_JACK("Rear Jack", 10),
11931da177e4SLinus Torvalds 	STAC9758_OUTPUT_JACK("Center/LFE Jack", 13),
11941da177e4SLinus Torvalds 	STAC9758_INPUT_JACK("Mic Input Source", 0),
11951da177e4SLinus Torvalds 	STAC9758_INPUT_JACK("Line Input Source", 8),
11961da177e4SLinus Torvalds 	{
11971da177e4SLinus Torvalds 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11981da177e4SLinus Torvalds 		.name = "Headphone Amp",
11991da177e4SLinus Torvalds 		.info = snd_ac97_stac9758_phonesel_info,
12001da177e4SLinus Torvalds 		.get = snd_ac97_stac9758_phonesel_get,
12011da177e4SLinus Torvalds 		.put = snd_ac97_stac9758_phonesel_put
12021da177e4SLinus Torvalds 	},
12031da177e4SLinus Torvalds 	AC97_SINGLE("Exchange Center/LFE", AC97_SIGMATEL_IOMISC, 4, 1, 0),
12041da177e4SLinus Torvalds 	AC97_SINGLE("Headphone +3dB Boost", AC97_SIGMATEL_IOMISC, 8, 1, 0)
12051da177e4SLinus Torvalds };
12061da177e4SLinus Torvalds 
patch_sigmatel_stac9758_specific(struct snd_ac97 * ac97)1207ee42381eSTakashi Iwai static int patch_sigmatel_stac9758_specific(struct snd_ac97 *ac97)
12081da177e4SLinus Torvalds {
12091da177e4SLinus Torvalds 	int err;
12101da177e4SLinus Torvalds 
12111da177e4SLinus Torvalds 	err = patch_sigmatel_stac97xx_specific(ac97);
12121da177e4SLinus Torvalds 	if (err < 0)
12131da177e4SLinus Torvalds 		return err;
12141da177e4SLinus Torvalds 	err = patch_build_controls(ac97, snd_ac97_sigmatel_stac9758_controls,
12151da177e4SLinus Torvalds 				   ARRAY_SIZE(snd_ac97_sigmatel_stac9758_controls));
12161da177e4SLinus Torvalds 	if (err < 0)
12171da177e4SLinus Torvalds 		return err;
12181da177e4SLinus Torvalds 	/* DAC-A direct */
12191da177e4SLinus Torvalds 	snd_ac97_rename_vol_ctl(ac97, "Headphone Playback", "Front Playback");
12201da177e4SLinus Torvalds 	/* DAC-A to Mix = PCM */
12211da177e4SLinus Torvalds 	/* DAC-B direct = Surround */
12221da177e4SLinus Torvalds 	/* DAC-B to Mix */
12231da177e4SLinus Torvalds 	snd_ac97_rename_vol_ctl(ac97, "Video Playback", "Surround Mix Playback");
12241da177e4SLinus Torvalds 	/* DAC-C direct = Center/LFE */
12251da177e4SLinus Torvalds 
12261da177e4SLinus Torvalds 	return 0;
12271da177e4SLinus Torvalds }
12281da177e4SLinus Torvalds 
12293e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_sigmatel_stac9758_ops = {
12301da177e4SLinus Torvalds 	.build_3d	= patch_sigmatel_stac9700_3d,
12311da177e4SLinus Torvalds 	.build_specific	= patch_sigmatel_stac9758_specific
12321da177e4SLinus Torvalds };
12331da177e4SLinus Torvalds 
patch_sigmatel_stac9758(struct snd_ac97 * ac97)1234ac519028STakashi Iwai static int patch_sigmatel_stac9758(struct snd_ac97 * ac97)
12351da177e4SLinus Torvalds {
12361675bfc0STakashi Iwai 	static const unsigned short regs[4] = {
12371da177e4SLinus Torvalds 		AC97_SIGMATEL_OUTSEL,
12381da177e4SLinus Torvalds 		AC97_SIGMATEL_IOMISC,
12391da177e4SLinus Torvalds 		AC97_SIGMATEL_INSEL,
12401da177e4SLinus Torvalds 		AC97_SIGMATEL_VARIOUS
12411da177e4SLinus Torvalds 	};
12421675bfc0STakashi Iwai 	static const unsigned short def_regs[4] = {
12431da177e4SLinus Torvalds 		/* OUTSEL */ 0xd794, /* CL:CL, SR:SR, LO:MX, LI:DS, MI:DS */
12441da177e4SLinus Torvalds 		/* IOMISC */ 0x2001,
12451da177e4SLinus Torvalds 		/* INSEL */ 0x0201, /* LI:LI, MI:M1 */
12461da177e4SLinus Torvalds 		/* VARIOUS */ 0x0040
12471da177e4SLinus Torvalds 	};
12481675bfc0STakashi Iwai 	static const unsigned short m675_regs[4] = {
12491da177e4SLinus Torvalds 		/* OUTSEL */ 0xfc70, /* CL:MX, SR:MX, LO:DS, LI:MX, MI:DS */
12501da177e4SLinus Torvalds 		/* IOMISC */ 0x2102, /* HP amp on */
12511da177e4SLinus Torvalds 		/* INSEL */ 0x0203, /* LI:LI, MI:FR */
12521da177e4SLinus Torvalds 		/* VARIOUS */ 0x0041 /* stereo mic */
12531da177e4SLinus Torvalds 	};
12541675bfc0STakashi Iwai 	const unsigned short *pregs = def_regs;
12551da177e4SLinus Torvalds 	int i;
12561da177e4SLinus Torvalds 
12571da177e4SLinus Torvalds 	/* Gateway M675 notebook */
12581da177e4SLinus Torvalds 	if (ac97->pci &&
12591da177e4SLinus Torvalds 	    ac97->subsystem_vendor == 0x107b &&
12601da177e4SLinus Torvalds 	    ac97->subsystem_device == 0x0601)
12611da177e4SLinus Torvalds 	    	pregs = m675_regs;
12621da177e4SLinus Torvalds 
12631da177e4SLinus Torvalds 	// patch for SigmaTel
12641da177e4SLinus Torvalds 	ac97->build_ops = &patch_sigmatel_stac9758_ops;
12651da177e4SLinus Torvalds 	/* FIXME: assume only page 0 for writing cache */
12661da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_INT_PAGING, AC97_PAGE_MASK, AC97_PAGE_VENDOR);
12671da177e4SLinus Torvalds 	for (i = 0; i < 4; i++)
12681da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, regs[i], pregs[i]);
12691da177e4SLinus Torvalds 
12701da177e4SLinus Torvalds 	ac97->flags |= AC97_STEREO_MUTES;
12711da177e4SLinus Torvalds 	return 0;
12721da177e4SLinus Torvalds }
12731da177e4SLinus Torvalds 
12741da177e4SLinus Torvalds /*
12751da177e4SLinus Torvalds  * Cirrus Logic CS42xx codecs
12761da177e4SLinus Torvalds  */
1277ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_cirrus_controls_spdif[2] = {
12781da177e4SLinus Torvalds 	AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH), AC97_CSR_SPDIF, 15, 1, 0),
12791da177e4SLinus Torvalds 	AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "AC97-SPSA", AC97_CSR_ACMODE, 0, 3, 0)
12801da177e4SLinus Torvalds };
12811da177e4SLinus Torvalds 
patch_cirrus_build_spdif(struct snd_ac97 * ac97)1282ee42381eSTakashi Iwai static int patch_cirrus_build_spdif(struct snd_ac97 * ac97)
12831da177e4SLinus Torvalds {
12841da177e4SLinus Torvalds 	int err;
12851da177e4SLinus Torvalds 
12861da177e4SLinus Torvalds 	/* con mask, pro mask, default */
1287e66fd362STakashi Iwai 	err = patch_build_controls(ac97, &snd_ac97_controls_spdif[0], 3);
1288e66fd362STakashi Iwai 	if (err < 0)
12891da177e4SLinus Torvalds 		return err;
12901da177e4SLinus Torvalds 	/* switch, spsa */
1291e66fd362STakashi Iwai 	err = patch_build_controls(ac97, &snd_ac97_cirrus_controls_spdif[0], 1);
1292e66fd362STakashi Iwai 	if (err < 0)
12931da177e4SLinus Torvalds 		return err;
12941da177e4SLinus Torvalds 	switch (ac97->id & AC97_ID_CS_MASK) {
12951da177e4SLinus Torvalds 	case AC97_ID_CS4205:
1296e66fd362STakashi Iwai 		err = patch_build_controls(ac97, &snd_ac97_cirrus_controls_spdif[1], 1);
1297e66fd362STakashi Iwai 		if (err < 0)
12981da177e4SLinus Torvalds 			return err;
12991da177e4SLinus Torvalds 		break;
13001da177e4SLinus Torvalds 	}
13011da177e4SLinus Torvalds 	/* set default PCM S/PDIF params */
13021da177e4SLinus Torvalds 	/* consumer,PCM audio,no copyright,no preemphasis,PCM coder,original,48000Hz */
13031da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_CSR_SPDIF, 0x0a20);
13041da177e4SLinus Torvalds 	return 0;
13051da177e4SLinus Torvalds }
13061da177e4SLinus Torvalds 
13073e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_cirrus_ops = {
13081da177e4SLinus Torvalds 	.build_spdif = patch_cirrus_build_spdif
13091da177e4SLinus Torvalds };
13101da177e4SLinus Torvalds 
patch_cirrus_spdif(struct snd_ac97 * ac97)1311ac519028STakashi Iwai static int patch_cirrus_spdif(struct snd_ac97 * ac97)
13121da177e4SLinus Torvalds {
13131da177e4SLinus Torvalds 	/* Basically, the cs4201/cs4205/cs4297a has non-standard sp/dif registers.
13141da177e4SLinus Torvalds 	   WHY CAN'T ANYONE FOLLOW THE BLOODY SPEC?  *sigh*
13151da177e4SLinus Torvalds 	   - sp/dif EA ID is not set, but sp/dif is always present.
13161da177e4SLinus Torvalds 	   - enable/disable is spdif register bit 15.
13171da177e4SLinus Torvalds 	   - sp/dif control register is 0x68.  differs from AC97:
13181da177e4SLinus Torvalds 	   - valid is bit 14 (vs 15)
13191da177e4SLinus Torvalds 	   - no DRS
13201da177e4SLinus Torvalds 	   - only 44.1/48k [00 = 48, 01=44,1] (AC97 is 00=44.1, 10=48)
13211da177e4SLinus Torvalds 	   - sp/dif ssource select is in 0x5e bits 0,1.
13221da177e4SLinus Torvalds 	*/
13231da177e4SLinus Torvalds 
13241da177e4SLinus Torvalds 	ac97->build_ops = &patch_cirrus_ops;
13251da177e4SLinus Torvalds 	ac97->flags |= AC97_CS_SPDIF;
13261da177e4SLinus Torvalds 	ac97->rates[AC97_RATES_SPDIF] &= ~SNDRV_PCM_RATE_32000;
13271da177e4SLinus Torvalds         ac97->ext_id |= AC97_EI_SPDIF;	/* force the detection of spdif */
13281da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_CSR_ACMODE, 0x0080);
13291da177e4SLinus Torvalds 	return 0;
13301da177e4SLinus Torvalds }
13311da177e4SLinus Torvalds 
patch_cirrus_cs4299(struct snd_ac97 * ac97)1332ac519028STakashi Iwai static int patch_cirrus_cs4299(struct snd_ac97 * ac97)
13331da177e4SLinus Torvalds {
13341da177e4SLinus Torvalds 	/* force the detection of PC Beep */
13351da177e4SLinus Torvalds 	ac97->flags |= AC97_HAS_PC_BEEP;
13361da177e4SLinus Torvalds 
13371da177e4SLinus Torvalds 	return patch_cirrus_spdif(ac97);
13381da177e4SLinus Torvalds }
13391da177e4SLinus Torvalds 
13401da177e4SLinus Torvalds /*
13411da177e4SLinus Torvalds  * Conexant codecs
13421da177e4SLinus Torvalds  */
1343ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_conexant_controls_spdif[1] = {
13441da177e4SLinus Torvalds 	AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH), AC97_CXR_AUDIO_MISC, 3, 1, 0),
13451da177e4SLinus Torvalds };
13461da177e4SLinus Torvalds 
patch_conexant_build_spdif(struct snd_ac97 * ac97)1347ee42381eSTakashi Iwai static int patch_conexant_build_spdif(struct snd_ac97 * ac97)
13481da177e4SLinus Torvalds {
13491da177e4SLinus Torvalds 	int err;
13501da177e4SLinus Torvalds 
13511da177e4SLinus Torvalds 	/* con mask, pro mask, default */
1352e66fd362STakashi Iwai 	err = patch_build_controls(ac97, &snd_ac97_controls_spdif[0], 3);
1353e66fd362STakashi Iwai 	if (err < 0)
13541da177e4SLinus Torvalds 		return err;
13551da177e4SLinus Torvalds 	/* switch */
1356e66fd362STakashi Iwai 	err = patch_build_controls(ac97, &snd_ac97_conexant_controls_spdif[0], 1);
1357e66fd362STakashi Iwai 	if (err < 0)
13581da177e4SLinus Torvalds 		return err;
13591da177e4SLinus Torvalds 	/* set default PCM S/PDIF params */
13601da177e4SLinus Torvalds 	/* consumer,PCM audio,no copyright,no preemphasis,PCM coder,original,48000Hz */
13611da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_CXR_AUDIO_MISC,
13621da177e4SLinus Torvalds 			     snd_ac97_read(ac97, AC97_CXR_AUDIO_MISC) & ~(AC97_CXR_SPDIFEN|AC97_CXR_COPYRGT|AC97_CXR_SPDIF_MASK));
13631da177e4SLinus Torvalds 	return 0;
13641da177e4SLinus Torvalds }
13651da177e4SLinus Torvalds 
13663e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_conexant_ops = {
13671da177e4SLinus Torvalds 	.build_spdif = patch_conexant_build_spdif
13681da177e4SLinus Torvalds };
13691da177e4SLinus Torvalds 
patch_conexant(struct snd_ac97 * ac97)1370ac519028STakashi Iwai static int patch_conexant(struct snd_ac97 * ac97)
13711da177e4SLinus Torvalds {
13721da177e4SLinus Torvalds 	ac97->build_ops = &patch_conexant_ops;
13731da177e4SLinus Torvalds 	ac97->flags |= AC97_CX_SPDIF;
13741da177e4SLinus Torvalds         ac97->ext_id |= AC97_EI_SPDIF;	/* force the detection of spdif */
13751da177e4SLinus Torvalds 	ac97->rates[AC97_RATES_SPDIF] = SNDRV_PCM_RATE_48000; /* 48k only */
13761da177e4SLinus Torvalds 	return 0;
13771da177e4SLinus Torvalds }
13781da177e4SLinus Torvalds 
patch_cx20551(struct snd_ac97 * ac97)1379ac519028STakashi Iwai static int patch_cx20551(struct snd_ac97 *ac97)
13809e292c00STakashi Iwai {
13819e292c00STakashi Iwai 	snd_ac97_update_bits(ac97, 0x5c, 0x01, 0x01);
13829e292c00STakashi Iwai 	return 0;
13839e292c00STakashi Iwai }
13849e292c00STakashi Iwai 
13851da177e4SLinus Torvalds /*
1386aa08ff0fSGeert Uytterhoeven  * Analog Devices AD18xx, AD19xx codecs
13871da177e4SLinus Torvalds  */
13881da177e4SLinus Torvalds #ifdef CONFIG_PM
ad18xx_resume(struct snd_ac97 * ac97)1389ee42381eSTakashi Iwai static void ad18xx_resume(struct snd_ac97 *ac97)
13901da177e4SLinus Torvalds {
13911675bfc0STakashi Iwai 	static const unsigned short setup_regs[] = {
13921da177e4SLinus Torvalds 		AC97_AD_MISC, AC97_AD_SERIAL_CFG, AC97_AD_JACK_SPDIF,
13931da177e4SLinus Torvalds 	};
13941da177e4SLinus Torvalds 	int i, codec;
13951da177e4SLinus Torvalds 
13961da177e4SLinus Torvalds 	for (i = 0; i < (int)ARRAY_SIZE(setup_regs); i++) {
13971da177e4SLinus Torvalds 		unsigned short reg = setup_regs[i];
13981da177e4SLinus Torvalds 		if (test_bit(reg, ac97->reg_accessed)) {
13991da177e4SLinus Torvalds 			snd_ac97_write(ac97, reg, ac97->regs[reg]);
14001da177e4SLinus Torvalds 			snd_ac97_read(ac97, reg);
14011da177e4SLinus Torvalds 		}
14021da177e4SLinus Torvalds 	}
14031da177e4SLinus Torvalds 
14041da177e4SLinus Torvalds 	if (! (ac97->flags & AC97_AD_MULTI))
14051da177e4SLinus Torvalds 		/* normal restore */
14061da177e4SLinus Torvalds 		snd_ac97_restore_status(ac97);
14071da177e4SLinus Torvalds 	else {
14081da177e4SLinus Torvalds 		/* restore the AD18xx codec configurations */
14091da177e4SLinus Torvalds 		for (codec = 0; codec < 3; codec++) {
14101da177e4SLinus Torvalds 			if (! ac97->spec.ad18xx.id[codec])
14111da177e4SLinus Torvalds 				continue;
14121da177e4SLinus Torvalds 			/* select single codec */
14131da177e4SLinus Torvalds 			snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000,
14141da177e4SLinus Torvalds 					     ac97->spec.ad18xx.unchained[codec] | ac97->spec.ad18xx.chained[codec]);
14151da177e4SLinus Torvalds 			ac97->bus->ops->write(ac97, AC97_AD_CODEC_CFG, ac97->spec.ad18xx.codec_cfg[codec]);
14161da177e4SLinus Torvalds 		}
14171da177e4SLinus Torvalds 		/* select all codecs */
14181da177e4SLinus Torvalds 		snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000, 0x7000);
14191da177e4SLinus Torvalds 
14201da177e4SLinus Torvalds 		/* restore status */
14211da177e4SLinus Torvalds 		for (i = 2; i < 0x7c ; i += 2) {
14221da177e4SLinus Torvalds 			if (i == AC97_POWERDOWN || i == AC97_EXTENDED_ID)
14231da177e4SLinus Torvalds 				continue;
14241da177e4SLinus Torvalds 			if (test_bit(i, ac97->reg_accessed)) {
14251da177e4SLinus Torvalds 				/* handle multi codecs for AD18xx */
14261da177e4SLinus Torvalds 				if (i == AC97_PCM) {
14271da177e4SLinus Torvalds 					for (codec = 0; codec < 3; codec++) {
14281da177e4SLinus Torvalds 						if (! ac97->spec.ad18xx.id[codec])
14291da177e4SLinus Torvalds 							continue;
14301da177e4SLinus Torvalds 						/* select single codec */
14311da177e4SLinus Torvalds 						snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000,
14321da177e4SLinus Torvalds 								     ac97->spec.ad18xx.unchained[codec] | ac97->spec.ad18xx.chained[codec]);
14331da177e4SLinus Torvalds 						/* update PCM bits */
14341da177e4SLinus Torvalds 						ac97->bus->ops->write(ac97, AC97_PCM, ac97->spec.ad18xx.pcmreg[codec]);
14351da177e4SLinus Torvalds 					}
14361da177e4SLinus Torvalds 					/* select all codecs */
14371da177e4SLinus Torvalds 					snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000, 0x7000);
14381da177e4SLinus Torvalds 					continue;
14391da177e4SLinus Torvalds 				} else if (i == AC97_AD_TEST ||
14401da177e4SLinus Torvalds 					   i == AC97_AD_CODEC_CFG ||
14411da177e4SLinus Torvalds 					   i == AC97_AD_SERIAL_CFG)
14421da177e4SLinus Torvalds 					continue; /* ignore */
14431da177e4SLinus Torvalds 			}
14441da177e4SLinus Torvalds 			snd_ac97_write(ac97, i, ac97->regs[i]);
14451da177e4SLinus Torvalds 			snd_ac97_read(ac97, i);
14461da177e4SLinus Torvalds 		}
14471da177e4SLinus Torvalds 	}
14481da177e4SLinus Torvalds 
14491da177e4SLinus Torvalds 	snd_ac97_restore_iec958(ac97);
14501da177e4SLinus Torvalds }
14511561f09aSJaya Kumar 
ad1888_resume(struct snd_ac97 * ac97)14521561f09aSJaya Kumar static void ad1888_resume(struct snd_ac97 *ac97)
14531561f09aSJaya Kumar {
14541561f09aSJaya Kumar 	ad18xx_resume(ac97);
14551561f09aSJaya Kumar 	snd_ac97_write_cache(ac97, AC97_CODEC_CLASS_REV, 0x8080);
14561561f09aSJaya Kumar }
14571561f09aSJaya Kumar 
14581da177e4SLinus Torvalds #endif
14591da177e4SLinus Torvalds 
1460bd25b7caSVille Syrjala static const struct snd_ac97_res_table ad1819_restbl[] = {
1461bd25b7caSVille Syrjala 	{ AC97_PHONE, 0x9f1f },
1462bd25b7caSVille Syrjala 	{ AC97_MIC, 0x9f1f },
1463bd25b7caSVille Syrjala 	{ AC97_LINE, 0x9f1f },
1464bd25b7caSVille Syrjala 	{ AC97_CD, 0x9f1f },
1465bd25b7caSVille Syrjala 	{ AC97_VIDEO, 0x9f1f },
1466bd25b7caSVille Syrjala 	{ AC97_AUX, 0x9f1f },
1467bd25b7caSVille Syrjala 	{ AC97_PCM, 0x9f1f },
1468bd25b7caSVille Syrjala 	{ } /* terminator */
1469bd25b7caSVille Syrjala };
1470bd25b7caSVille Syrjala 
patch_ad1819(struct snd_ac97 * ac97)1471ac519028STakashi Iwai static int patch_ad1819(struct snd_ac97 * ac97)
14721da177e4SLinus Torvalds {
14731da177e4SLinus Torvalds 	unsigned short scfg;
14741da177e4SLinus Torvalds 
14751da177e4SLinus Torvalds 	// patch for Analog Devices
14761da177e4SLinus Torvalds 	scfg = snd_ac97_read(ac97, AC97_AD_SERIAL_CFG);
14771da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_AD_SERIAL_CFG, scfg | 0x7000); /* select all codecs */
1478bd25b7caSVille Syrjala 	ac97->res_table = ad1819_restbl;
14791da177e4SLinus Torvalds 	return 0;
14801da177e4SLinus Torvalds }
14811da177e4SLinus Torvalds 
patch_ad1881_unchained(struct snd_ac97 * ac97,int idx,unsigned short mask)1482ee42381eSTakashi Iwai static unsigned short patch_ad1881_unchained(struct snd_ac97 * ac97, int idx, unsigned short mask)
14831da177e4SLinus Torvalds {
14841da177e4SLinus Torvalds 	unsigned short val;
14851da177e4SLinus Torvalds 
14861da177e4SLinus Torvalds 	// test for unchained codec
14871da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000, mask);
14881da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_AD_CODEC_CFG, 0x0000);	/* ID0C, ID1C, SDIE = off */
14891da177e4SLinus Torvalds 	val = snd_ac97_read(ac97, AC97_VENDOR_ID2);
14901da177e4SLinus Torvalds 	if ((val & 0xff40) != 0x5340)
14911da177e4SLinus Torvalds 		return 0;
14921da177e4SLinus Torvalds 	ac97->spec.ad18xx.unchained[idx] = mask;
14931da177e4SLinus Torvalds 	ac97->spec.ad18xx.id[idx] = val;
14941da177e4SLinus Torvalds 	ac97->spec.ad18xx.codec_cfg[idx] = 0x0000;
14951da177e4SLinus Torvalds 	return mask;
14961da177e4SLinus Torvalds }
14971da177e4SLinus Torvalds 
patch_ad1881_chained1(struct snd_ac97 * ac97,int idx,unsigned short codec_bits)1498ee42381eSTakashi Iwai static int patch_ad1881_chained1(struct snd_ac97 * ac97, int idx, unsigned short codec_bits)
14991da177e4SLinus Torvalds {
15001675bfc0STakashi Iwai 	static const int cfg_bits[3] = { 1<<12, 1<<14, 1<<13 };
15011da177e4SLinus Torvalds 	unsigned short val;
15021da177e4SLinus Torvalds 
15031da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000, cfg_bits[idx]);
15041da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_AD_CODEC_CFG, 0x0004);	// SDIE
15051da177e4SLinus Torvalds 	val = snd_ac97_read(ac97, AC97_VENDOR_ID2);
15061da177e4SLinus Torvalds 	if ((val & 0xff40) != 0x5340)
15071da177e4SLinus Torvalds 		return 0;
15081da177e4SLinus Torvalds 	if (codec_bits)
15091da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_AD_CODEC_CFG, codec_bits);
15101da177e4SLinus Torvalds 	ac97->spec.ad18xx.chained[idx] = cfg_bits[idx];
15111da177e4SLinus Torvalds 	ac97->spec.ad18xx.id[idx] = val;
15121da177e4SLinus Torvalds 	ac97->spec.ad18xx.codec_cfg[idx] = codec_bits ? codec_bits : 0x0004;
15131da177e4SLinus Torvalds 	return 1;
15141da177e4SLinus Torvalds }
15151da177e4SLinus Torvalds 
patch_ad1881_chained(struct snd_ac97 * ac97,int unchained_idx,int cidx1,int cidx2)1516ee42381eSTakashi Iwai static void patch_ad1881_chained(struct snd_ac97 * ac97, int unchained_idx, int cidx1, int cidx2)
15171da177e4SLinus Torvalds {
15181da177e4SLinus Torvalds 	// already detected?
15191da177e4SLinus Torvalds 	if (ac97->spec.ad18xx.unchained[cidx1] || ac97->spec.ad18xx.chained[cidx1])
15201da177e4SLinus Torvalds 		cidx1 = -1;
15211da177e4SLinus Torvalds 	if (ac97->spec.ad18xx.unchained[cidx2] || ac97->spec.ad18xx.chained[cidx2])
15221da177e4SLinus Torvalds 		cidx2 = -1;
15231da177e4SLinus Torvalds 	if (cidx1 < 0 && cidx2 < 0)
15241da177e4SLinus Torvalds 		return;
15251da177e4SLinus Torvalds 	// test for chained codecs
15261da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000,
15271da177e4SLinus Torvalds 			     ac97->spec.ad18xx.unchained[unchained_idx]);
15281da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_AD_CODEC_CFG, 0x0002);		// ID1C
15291da177e4SLinus Torvalds 	ac97->spec.ad18xx.codec_cfg[unchained_idx] = 0x0002;
15301da177e4SLinus Torvalds 	if (cidx1 >= 0) {
1531c19bcdc6STakashi Iwai 		if (cidx2 < 0)
1532c19bcdc6STakashi Iwai 			patch_ad1881_chained1(ac97, cidx1, 0);
1533c19bcdc6STakashi Iwai 		else if (patch_ad1881_chained1(ac97, cidx1, 0x0006))	// SDIE | ID1C
15341da177e4SLinus Torvalds 			patch_ad1881_chained1(ac97, cidx2, 0);
15351da177e4SLinus Torvalds 		else if (patch_ad1881_chained1(ac97, cidx2, 0x0006))	// SDIE | ID1C
15361da177e4SLinus Torvalds 			patch_ad1881_chained1(ac97, cidx1, 0);
15371da177e4SLinus Torvalds 	} else if (cidx2 >= 0) {
15381da177e4SLinus Torvalds 		patch_ad1881_chained1(ac97, cidx2, 0);
15391da177e4SLinus Torvalds 	}
15401da177e4SLinus Torvalds }
15411da177e4SLinus Torvalds 
15423e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_ad1881_build_ops = {
15431da177e4SLinus Torvalds #ifdef CONFIG_PM
15441da177e4SLinus Torvalds 	.resume = ad18xx_resume
15451da177e4SLinus Torvalds #endif
15461da177e4SLinus Torvalds };
15471da177e4SLinus Torvalds 
patch_ad1881(struct snd_ac97 * ac97)1548ac519028STakashi Iwai static int patch_ad1881(struct snd_ac97 * ac97)
15491da177e4SLinus Torvalds {
15501da177e4SLinus Torvalds 	static const char cfg_idxs[3][2] = {
15511da177e4SLinus Torvalds 		{2, 1},
15521da177e4SLinus Torvalds 		{0, 2},
15531da177e4SLinus Torvalds 		{0, 1}
15541da177e4SLinus Torvalds 	};
15551da177e4SLinus Torvalds 
15561da177e4SLinus Torvalds 	// patch for Analog Devices
15571da177e4SLinus Torvalds 	unsigned short codecs[3];
15581da177e4SLinus Torvalds 	unsigned short val;
15591da177e4SLinus Torvalds 	int idx, num;
15601da177e4SLinus Torvalds 
15611da177e4SLinus Torvalds 	val = snd_ac97_read(ac97, AC97_AD_SERIAL_CFG);
15621da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_AD_SERIAL_CFG, val);
15631da177e4SLinus Torvalds 	codecs[0] = patch_ad1881_unchained(ac97, 0, (1<<12));
15641da177e4SLinus Torvalds 	codecs[1] = patch_ad1881_unchained(ac97, 1, (1<<14));
15651da177e4SLinus Torvalds 	codecs[2] = patch_ad1881_unchained(ac97, 2, (1<<13));
15661da177e4SLinus Torvalds 
15677c22f1aaSTakashi Iwai 	if (! (codecs[0] || codecs[1] || codecs[2]))
15687c22f1aaSTakashi Iwai 		goto __end;
15691da177e4SLinus Torvalds 
15701da177e4SLinus Torvalds 	for (idx = 0; idx < 3; idx++)
15711da177e4SLinus Torvalds 		if (ac97->spec.ad18xx.unchained[idx])
15721da177e4SLinus Torvalds 			patch_ad1881_chained(ac97, idx, cfg_idxs[idx][0], cfg_idxs[idx][1]);
15731da177e4SLinus Torvalds 
15741da177e4SLinus Torvalds 	if (ac97->spec.ad18xx.id[1]) {
15751da177e4SLinus Torvalds 		ac97->flags |= AC97_AD_MULTI;
15761da177e4SLinus Torvalds 		ac97->scaps |= AC97_SCAP_SURROUND_DAC;
15771da177e4SLinus Torvalds 	}
15781da177e4SLinus Torvalds 	if (ac97->spec.ad18xx.id[2]) {
15791da177e4SLinus Torvalds 		ac97->flags |= AC97_AD_MULTI;
15801da177e4SLinus Torvalds 		ac97->scaps |= AC97_SCAP_CENTER_LFE_DAC;
15811da177e4SLinus Torvalds 	}
15821da177e4SLinus Torvalds 
15831da177e4SLinus Torvalds       __end:
15841da177e4SLinus Torvalds 	/* select all codecs */
15851da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000, 0x7000);
15861da177e4SLinus Torvalds 	/* check if only one codec is present */
15871da177e4SLinus Torvalds 	for (idx = num = 0; idx < 3; idx++)
15881da177e4SLinus Torvalds 		if (ac97->spec.ad18xx.id[idx])
15891da177e4SLinus Torvalds 			num++;
15901da177e4SLinus Torvalds 	if (num == 1) {
15911da177e4SLinus Torvalds 		/* ok, deselect all ID bits */
15921da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_AD_CODEC_CFG, 0x0000);
15931da177e4SLinus Torvalds 		ac97->spec.ad18xx.codec_cfg[0] =
15941da177e4SLinus Torvalds 			ac97->spec.ad18xx.codec_cfg[1] =
15951da177e4SLinus Torvalds 			ac97->spec.ad18xx.codec_cfg[2] = 0x0000;
15961da177e4SLinus Torvalds 	}
15971da177e4SLinus Torvalds 	/* required for AD1886/AD1885 combination */
15981da177e4SLinus Torvalds 	ac97->ext_id = snd_ac97_read(ac97, AC97_EXTENDED_ID);
15991da177e4SLinus Torvalds 	if (ac97->spec.ad18xx.id[0]) {
16001da177e4SLinus Torvalds 		ac97->id &= 0xffff0000;
16011da177e4SLinus Torvalds 		ac97->id |= ac97->spec.ad18xx.id[0];
16021da177e4SLinus Torvalds 	}
16031da177e4SLinus Torvalds 	ac97->build_ops = &patch_ad1881_build_ops;
16041da177e4SLinus Torvalds 	return 0;
16051da177e4SLinus Torvalds }
16061da177e4SLinus Torvalds 
1607ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_controls_ad1885[] = {
16081da177e4SLinus Torvalds 	AC97_SINGLE("Digital Mono Direct", AC97_AD_MISC, 11, 1, 0),
16091da177e4SLinus Torvalds 	/* AC97_SINGLE("Digital Audio Mode", AC97_AD_MISC, 12, 1, 0), */ /* seems problematic */
16101da177e4SLinus Torvalds 	AC97_SINGLE("Low Power Mixer", AC97_AD_MISC, 14, 1, 0),
16111da177e4SLinus Torvalds 	AC97_SINGLE("Zero Fill DAC", AC97_AD_MISC, 15, 1, 0),
16121da177e4SLinus Torvalds 	AC97_SINGLE("Headphone Jack Sense", AC97_AD_JACK_SPDIF, 9, 1, 1), /* inverted */
16131da177e4SLinus Torvalds 	AC97_SINGLE("Line Jack Sense", AC97_AD_JACK_SPDIF, 8, 1, 1), /* inverted */
16141da177e4SLinus Torvalds };
16151da177e4SLinus Torvalds 
16160cb29ea0STakashi Iwai static const DECLARE_TLV_DB_SCALE(db_scale_6bit_6db_max, -8850, 150, 0);
16172f3482fbSTakashi Iwai 
patch_ad1885_specific(struct snd_ac97 * ac97)1618ee42381eSTakashi Iwai static int patch_ad1885_specific(struct snd_ac97 * ac97)
16191da177e4SLinus Torvalds {
16201da177e4SLinus Torvalds 	int err;
16211da177e4SLinus Torvalds 
1622e66fd362STakashi Iwai 	err = patch_build_controls(ac97, snd_ac97_controls_ad1885, ARRAY_SIZE(snd_ac97_controls_ad1885));
1623e66fd362STakashi Iwai 	if (err < 0)
16241da177e4SLinus Torvalds 		return err;
16252f3482fbSTakashi Iwai 	reset_tlv(ac97, "Headphone Playback Volume",
16262f3482fbSTakashi Iwai 		  db_scale_6bit_6db_max);
16271da177e4SLinus Torvalds 	return 0;
16281da177e4SLinus Torvalds }
16291da177e4SLinus Torvalds 
16303e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_ad1885_build_ops = {
16311da177e4SLinus Torvalds 	.build_specific = &patch_ad1885_specific,
16321da177e4SLinus Torvalds #ifdef CONFIG_PM
16331da177e4SLinus Torvalds 	.resume = ad18xx_resume
16341da177e4SLinus Torvalds #endif
16351da177e4SLinus Torvalds };
16361da177e4SLinus Torvalds 
patch_ad1885(struct snd_ac97 * ac97)1637ac519028STakashi Iwai static int patch_ad1885(struct snd_ac97 * ac97)
16381da177e4SLinus Torvalds {
16391da177e4SLinus Torvalds 	patch_ad1881(ac97);
16401da177e4SLinus Torvalds 	/* This is required to deal with the Intel D815EEAL2 */
16411da177e4SLinus Torvalds 	/* i.e. Line out is actually headphone out from codec */
16421da177e4SLinus Torvalds 
16431da177e4SLinus Torvalds 	/* set default */
16441da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_AD_MISC, 0x0404);
16451da177e4SLinus Torvalds 
16461da177e4SLinus Torvalds 	ac97->build_ops = &patch_ad1885_build_ops;
16471da177e4SLinus Torvalds 	return 0;
16481da177e4SLinus Torvalds }
16491da177e4SLinus Torvalds 
patch_ad1886_specific(struct snd_ac97 * ac97)16502f3482fbSTakashi Iwai static int patch_ad1886_specific(struct snd_ac97 * ac97)
16512f3482fbSTakashi Iwai {
16522f3482fbSTakashi Iwai 	reset_tlv(ac97, "Headphone Playback Volume",
16532f3482fbSTakashi Iwai 		  db_scale_6bit_6db_max);
16542f3482fbSTakashi Iwai 	return 0;
16552f3482fbSTakashi Iwai }
16562f3482fbSTakashi Iwai 
16573e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_ad1886_build_ops = {
16582f3482fbSTakashi Iwai 	.build_specific = &patch_ad1886_specific,
16592f3482fbSTakashi Iwai #ifdef CONFIG_PM
16602f3482fbSTakashi Iwai 	.resume = ad18xx_resume
16612f3482fbSTakashi Iwai #endif
16622f3482fbSTakashi Iwai };
16632f3482fbSTakashi Iwai 
patch_ad1886(struct snd_ac97 * ac97)1664ac519028STakashi Iwai static int patch_ad1886(struct snd_ac97 * ac97)
16651da177e4SLinus Torvalds {
16661da177e4SLinus Torvalds 	patch_ad1881(ac97);
16671da177e4SLinus Torvalds 	/* Presario700 workaround */
16681da177e4SLinus Torvalds 	/* for Jack Sense/SPDIF Register misetting causing */
16691da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_AD_JACK_SPDIF, 0x0010);
16702f3482fbSTakashi Iwai 	ac97->build_ops = &patch_ad1886_build_ops;
16711da177e4SLinus Torvalds 	return 0;
16721da177e4SLinus Torvalds }
16731da177e4SLinus Torvalds 
167467e9f4b6SRandy Cushman /* MISC bits (AD1888/AD1980/AD1985 register 0x76) */
16751da177e4SLinus Torvalds #define AC97_AD198X_MBC		0x0003	/* mic boost */
16761da177e4SLinus Torvalds #define AC97_AD198X_MBC_20	0x0000	/* +20dB */
16771da177e4SLinus Torvalds #define AC97_AD198X_MBC_10	0x0001	/* +10dB */
16781da177e4SLinus Torvalds #define AC97_AD198X_MBC_30	0x0002	/* +30dB */
16791da177e4SLinus Torvalds #define AC97_AD198X_VREFD	0x0004	/* VREF high-Z */
16806428ea1bSRandy Cushman #define AC97_AD198X_VREFH	0x0008	/* 0=2.25V, 1=3.7V */
16816428ea1bSRandy Cushman #define AC97_AD198X_VREF_0	0x000c	/* 0V (AD1985 only) */
16826428ea1bSRandy Cushman #define AC97_AD198X_VREF_MASK	(AC97_AD198X_VREFH | AC97_AD198X_VREFD)
16836428ea1bSRandy Cushman #define AC97_AD198X_VREF_SHIFT	2
16841da177e4SLinus Torvalds #define AC97_AD198X_SRU		0x0010	/* sample rate unlock */
16851da177e4SLinus Torvalds #define AC97_AD198X_LOSEL	0x0020	/* LINE_OUT amplifiers input select */
16861da177e4SLinus Torvalds #define AC97_AD198X_2MIC	0x0040	/* 2-channel mic select */
16871da177e4SLinus Torvalds #define AC97_AD198X_SPRD	0x0080	/* SPREAD enable */
16886428ea1bSRandy Cushman #define AC97_AD198X_DMIX0	0x0100	/* downmix mode: */
16896428ea1bSRandy Cushman 					/*  0 = 6-to-4, 1 = 6-to-2 downmix */
16901da177e4SLinus Torvalds #define AC97_AD198X_DMIX1	0x0200	/* downmix mode: 1 = enabled */
16911da177e4SLinus Torvalds #define AC97_AD198X_HPSEL	0x0400	/* headphone amplifier input select */
16921da177e4SLinus Torvalds #define AC97_AD198X_CLDIS	0x0800	/* center/lfe disable */
16931da177e4SLinus Torvalds #define AC97_AD198X_LODIS	0x1000	/* LINE_OUT disable */
16941da177e4SLinus Torvalds #define AC97_AD198X_MSPLT	0x2000	/* mute split */
16951da177e4SLinus Torvalds #define AC97_AD198X_AC97NC	0x4000	/* AC97 no compatible mode */
16961da177e4SLinus Torvalds #define AC97_AD198X_DACZ	0x8000	/* DAC zero-fill mode */
16971da177e4SLinus Torvalds 
169867e9f4b6SRandy Cushman /* MISC 1 bits (AD1986 register 0x76) */
169967e9f4b6SRandy Cushman #define AC97_AD1986_MBC		0x0003	/* mic boost */
170067e9f4b6SRandy Cushman #define AC97_AD1986_MBC_20	0x0000	/* +20dB */
170167e9f4b6SRandy Cushman #define AC97_AD1986_MBC_10	0x0001	/* +10dB */
170267e9f4b6SRandy Cushman #define AC97_AD1986_MBC_30	0x0002	/* +30dB */
170367e9f4b6SRandy Cushman #define AC97_AD1986_LISEL0	0x0004	/* LINE_IN select bit 0 */
170467e9f4b6SRandy Cushman #define AC97_AD1986_LISEL1	0x0008	/* LINE_IN select bit 1 */
170567e9f4b6SRandy Cushman #define AC97_AD1986_LISEL_MASK	(AC97_AD1986_LISEL1 | AC97_AD1986_LISEL0)
170667e9f4b6SRandy Cushman #define AC97_AD1986_LISEL_LI	0x0000  /* LINE_IN pins as LINE_IN source */
170767e9f4b6SRandy Cushman #define AC97_AD1986_LISEL_SURR	0x0004  /* SURROUND pins as LINE_IN source */
170867e9f4b6SRandy Cushman #define AC97_AD1986_LISEL_MIC	0x0008  /* MIC_1/2 pins as LINE_IN source */
170967e9f4b6SRandy Cushman #define AC97_AD1986_SRU		0x0010	/* sample rate unlock */
171067e9f4b6SRandy Cushman #define AC97_AD1986_SOSEL	0x0020	/* SURROUND_OUT amplifiers input sel */
171167e9f4b6SRandy Cushman #define AC97_AD1986_2MIC	0x0040	/* 2-channel mic select */
171267e9f4b6SRandy Cushman #define AC97_AD1986_SPRD	0x0080	/* SPREAD enable */
171367e9f4b6SRandy Cushman #define AC97_AD1986_DMIX0	0x0100	/* downmix mode: */
171467e9f4b6SRandy Cushman 					/*  0 = 6-to-4, 1 = 6-to-2 downmix */
171567e9f4b6SRandy Cushman #define AC97_AD1986_DMIX1	0x0200	/* downmix mode: 1 = enabled */
171667e9f4b6SRandy Cushman #define AC97_AD1986_CLDIS	0x0800	/* center/lfe disable */
171767e9f4b6SRandy Cushman #define AC97_AD1986_SODIS	0x1000	/* SURROUND_OUT disable */
171867e9f4b6SRandy Cushman #define AC97_AD1986_MSPLT	0x2000	/* mute split (read only 1) */
171967e9f4b6SRandy Cushman #define AC97_AD1986_AC97NC	0x4000	/* AC97 no compatible mode (r/o 1) */
172067e9f4b6SRandy Cushman #define AC97_AD1986_DACZ	0x8000	/* DAC zero-fill mode */
172167e9f4b6SRandy Cushman 
172267e9f4b6SRandy Cushman /* MISC 2 bits (AD1986 register 0x70) */
172367e9f4b6SRandy Cushman #define AC97_AD_MISC2		0x70	/* Misc Control Bits 2 (AD1986) */
172467e9f4b6SRandy Cushman 
172567e9f4b6SRandy Cushman #define AC97_AD1986_CVREF0	0x0004	/* C/LFE VREF_OUT 2.25V */
172667e9f4b6SRandy Cushman #define AC97_AD1986_CVREF1	0x0008	/* C/LFE VREF_OUT 0V */
172767e9f4b6SRandy Cushman #define AC97_AD1986_CVREF2	0x0010	/* C/LFE VREF_OUT 3.7V */
172867e9f4b6SRandy Cushman #define AC97_AD1986_CVREF_MASK \
172967e9f4b6SRandy Cushman 	(AC97_AD1986_CVREF2 | AC97_AD1986_CVREF1 | AC97_AD1986_CVREF0)
173067e9f4b6SRandy Cushman #define AC97_AD1986_JSMAP	0x0020	/* Jack Sense Mapping 1 = alternate */
173167e9f4b6SRandy Cushman #define AC97_AD1986_MMDIS	0x0080	/* Mono Mute Disable */
173267e9f4b6SRandy Cushman #define AC97_AD1986_MVREF0	0x0400	/* MIC VREF_OUT 2.25V */
173367e9f4b6SRandy Cushman #define AC97_AD1986_MVREF1	0x0800	/* MIC VREF_OUT 0V */
173467e9f4b6SRandy Cushman #define AC97_AD1986_MVREF2	0x1000	/* MIC VREF_OUT 3.7V */
173567e9f4b6SRandy Cushman #define AC97_AD1986_MVREF_MASK \
173667e9f4b6SRandy Cushman 	(AC97_AD1986_MVREF2 | AC97_AD1986_MVREF1 | AC97_AD1986_MVREF0)
173767e9f4b6SRandy Cushman 
173867e9f4b6SRandy Cushman /* MISC 3 bits (AD1986 register 0x7a) */
173967e9f4b6SRandy Cushman #define AC97_AD_MISC3		0x7a	/* Misc Control Bits 3 (AD1986) */
174067e9f4b6SRandy Cushman 
174167e9f4b6SRandy Cushman #define AC97_AD1986_MMIX	0x0004	/* Mic Mix, left/right */
174267e9f4b6SRandy Cushman #define AC97_AD1986_GPO		0x0008	/* General Purpose Out */
174367e9f4b6SRandy Cushman #define AC97_AD1986_LOHPEN	0x0010	/* LINE_OUT headphone drive */
174467e9f4b6SRandy Cushman #define AC97_AD1986_LVREF0	0x0100	/* LINE_OUT VREF_OUT 2.25V */
174567e9f4b6SRandy Cushman #define AC97_AD1986_LVREF1	0x0200	/* LINE_OUT VREF_OUT 0V */
174667e9f4b6SRandy Cushman #define AC97_AD1986_LVREF2	0x0400	/* LINE_OUT VREF_OUT 3.7V */
174767e9f4b6SRandy Cushman #define AC97_AD1986_LVREF_MASK \
174867e9f4b6SRandy Cushman 	(AC97_AD1986_LVREF2 | AC97_AD1986_LVREF1 | AC97_AD1986_LVREF0)
174967e9f4b6SRandy Cushman #define AC97_AD1986_JSINVA	0x0800	/* Jack Sense Invert SENSE_A */
175067e9f4b6SRandy Cushman #define AC97_AD1986_LOSEL	0x1000	/* LINE_OUT amplifiers input select */
175167e9f4b6SRandy Cushman #define AC97_AD1986_HPSEL0	0x2000	/* Headphone amplifiers */
175267e9f4b6SRandy Cushman 					/*   input select Surround DACs */
175367e9f4b6SRandy Cushman #define AC97_AD1986_HPSEL1	0x4000	/* Headphone amplifiers input */
175467e9f4b6SRandy Cushman 					/*   select C/LFE DACs */
175567e9f4b6SRandy Cushman #define AC97_AD1986_JSINVB	0x8000	/* Jack Sense Invert SENSE_B */
175667e9f4b6SRandy Cushman 
175767e9f4b6SRandy Cushman /* Serial Config bits (AD1986 register 0x74) (incomplete) */
175867e9f4b6SRandy Cushman #define AC97_AD1986_OMS0	0x0100	/* Optional Mic Selector bit 0 */
175967e9f4b6SRandy Cushman #define AC97_AD1986_OMS1	0x0200	/* Optional Mic Selector bit 1 */
176067e9f4b6SRandy Cushman #define AC97_AD1986_OMS2	0x0400	/* Optional Mic Selector bit 2 */
176167e9f4b6SRandy Cushman #define AC97_AD1986_OMS_MASK \
176267e9f4b6SRandy Cushman 	(AC97_AD1986_OMS2 | AC97_AD1986_OMS1 | AC97_AD1986_OMS0)
176367e9f4b6SRandy Cushman #define AC97_AD1986_OMS_M	0x0000  /* MIC_1/2 pins are MIC sources */
176467e9f4b6SRandy Cushman #define AC97_AD1986_OMS_L	0x0100  /* LINE_IN pins are MIC sources */
176567e9f4b6SRandy Cushman #define AC97_AD1986_OMS_C	0x0200  /* Center/LFE pins are MCI sources */
176667e9f4b6SRandy Cushman #define AC97_AD1986_OMS_MC	0x0400  /* Mix of MIC and C/LFE pins */
176767e9f4b6SRandy Cushman 					/*   are MIC sources */
176867e9f4b6SRandy Cushman #define AC97_AD1986_OMS_ML	0x0500  /* MIX of MIC and LINE_IN pins */
176967e9f4b6SRandy Cushman 					/*   are MIC sources */
177067e9f4b6SRandy Cushman #define AC97_AD1986_OMS_LC	0x0600  /* MIX of LINE_IN and C/LFE pins */
177167e9f4b6SRandy Cushman 					/*   are MIC sources */
177267e9f4b6SRandy Cushman #define AC97_AD1986_OMS_MLC	0x0700  /* MIX of MIC, LINE_IN, C/LFE pins */
177367e9f4b6SRandy Cushman 					/*   are MIC sources */
177467e9f4b6SRandy Cushman 
17751da177e4SLinus Torvalds 
snd_ac97_ad198x_spdif_source_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)1776ee42381eSTakashi Iwai static int snd_ac97_ad198x_spdif_source_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
17771da177e4SLinus Torvalds {
17783b7a00dcSTakashi Iwai 	static const char * const texts[2] = { "AC-Link", "A/D Converter" };
17791da177e4SLinus Torvalds 
17803b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 2, texts);
17811da177e4SLinus Torvalds }
17821da177e4SLinus Torvalds 
snd_ac97_ad198x_spdif_source_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)1783ee42381eSTakashi Iwai static int snd_ac97_ad198x_spdif_source_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
17841da177e4SLinus Torvalds {
1785ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
17861da177e4SLinus Torvalds 	unsigned short val;
17871da177e4SLinus Torvalds 
17881da177e4SLinus Torvalds 	val = ac97->regs[AC97_AD_SERIAL_CFG];
17891da177e4SLinus Torvalds 	ucontrol->value.enumerated.item[0] = (val >> 2) & 1;
17901da177e4SLinus Torvalds 	return 0;
17911da177e4SLinus Torvalds }
17921da177e4SLinus Torvalds 
snd_ac97_ad198x_spdif_source_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)1793ee42381eSTakashi Iwai static int snd_ac97_ad198x_spdif_source_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
17941da177e4SLinus Torvalds {
1795ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
17961da177e4SLinus Torvalds 	unsigned short val;
17971da177e4SLinus Torvalds 
17981da177e4SLinus Torvalds 	if (ucontrol->value.enumerated.item[0] > 1)
17991da177e4SLinus Torvalds 		return -EINVAL;
18001da177e4SLinus Torvalds 	val = ucontrol->value.enumerated.item[0] << 2;
18011da177e4SLinus Torvalds 	return snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x0004, val);
18021da177e4SLinus Torvalds }
18031da177e4SLinus Torvalds 
1804ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_ad198x_spdif_source = {
18051da177e4SLinus Torvalds 	.iface	= SNDRV_CTL_ELEM_IFACE_MIXER,
18061da177e4SLinus Torvalds 	.name	= SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
18071da177e4SLinus Torvalds 	.info	= snd_ac97_ad198x_spdif_source_info,
18081da177e4SLinus Torvalds 	.get	= snd_ac97_ad198x_spdif_source_get,
18091da177e4SLinus Torvalds 	.put	= snd_ac97_ad198x_spdif_source_put,
18101da177e4SLinus Torvalds };
18111da177e4SLinus Torvalds 
patch_ad198x_post_spdif(struct snd_ac97 * ac97)1812ee42381eSTakashi Iwai static int patch_ad198x_post_spdif(struct snd_ac97 * ac97)
18131da177e4SLinus Torvalds {
18141da177e4SLinus Torvalds  	return patch_build_controls(ac97, &snd_ac97_ad198x_spdif_source, 1);
18151da177e4SLinus Torvalds }
18161da177e4SLinus Torvalds 
1817ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_ad1981x_jack_sense[] = {
18181da177e4SLinus Torvalds 	AC97_SINGLE("Headphone Jack Sense", AC97_AD_JACK_SPDIF, 11, 1, 0),
18191da177e4SLinus Torvalds 	AC97_SINGLE("Line Jack Sense", AC97_AD_JACK_SPDIF, 12, 1, 0),
18201da177e4SLinus Torvalds };
18211da177e4SLinus Torvalds 
18227933d669STakashi Iwai /* deny list to avoid HP/Line jack-sense controls
1823128a46a5STakashi Iwai  * (SS vendor << 16 | device)
1824128a46a5STakashi Iwai  */
18257933d669STakashi Iwai static const unsigned int ad1981_jacks_denylist[] = {
1826a31e8c72STakashi Iwai 	0x10140523, /* Thinkpad R40 */
1827a31e8c72STakashi Iwai 	0x10140534, /* Thinkpad X31 */
1828a43c4d4dSTakashi Iwai 	0x10140537, /* Thinkpad T41p */
1829e1f7f02bSDaniel T Chen 	0x1014053e, /* Thinkpad R40e */
1830128a46a5STakashi Iwai 	0x10140554, /* Thinkpad T42p/R50p */
18318286c53eSDaniel T Chen 	0x10140567, /* Thinkpad T43p 2668-G7U */
18328286c53eSDaniel T Chen 	0x10140581, /* Thinkpad X41-2527 */
1833af9a75ddSDaniel T Chen 	0x10280160, /* Dell Dimension 2400 */
18348286c53eSDaniel T Chen 	0x104380b0, /* Asus A7V8X-MX */
18358286c53eSDaniel T Chen 	0x11790241, /* Toshiba Satellite A-15 S127 */
18365cd165e7SDaniel Chen 	0x1179ff10, /* Toshiba P500 */
18378286c53eSDaniel T Chen 	0x144dc01a, /* Samsung NP-X20C004/SEG */
1838128a46a5STakashi Iwai 	0 /* end */
1839128a46a5STakashi Iwai };
1840128a46a5STakashi Iwai 
check_list(struct snd_ac97 * ac97,const unsigned int * list)1841128a46a5STakashi Iwai static int check_list(struct snd_ac97 *ac97, const unsigned int *list)
1842128a46a5STakashi Iwai {
1843128a46a5STakashi Iwai 	u32 subid = ((u32)ac97->subsystem_vendor << 16) | ac97->subsystem_device;
1844128a46a5STakashi Iwai 	for (; *list; list++)
1845128a46a5STakashi Iwai 		if (*list == subid)
1846128a46a5STakashi Iwai 			return 1;
1847128a46a5STakashi Iwai 	return 0;
1848128a46a5STakashi Iwai }
1849128a46a5STakashi Iwai 
patch_ad1981a_specific(struct snd_ac97 * ac97)1850ee42381eSTakashi Iwai static int patch_ad1981a_specific(struct snd_ac97 * ac97)
18511da177e4SLinus Torvalds {
18527933d669STakashi Iwai 	if (check_list(ac97, ad1981_jacks_denylist))
1853128a46a5STakashi Iwai 		return 0;
18541da177e4SLinus Torvalds 	return patch_build_controls(ac97, snd_ac97_ad1981x_jack_sense,
18551da177e4SLinus Torvalds 				    ARRAY_SIZE(snd_ac97_ad1981x_jack_sense));
18561da177e4SLinus Torvalds }
18571da177e4SLinus Torvalds 
18583e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_ad1981a_build_ops = {
18591da177e4SLinus Torvalds 	.build_post_spdif = patch_ad198x_post_spdif,
18601da177e4SLinus Torvalds 	.build_specific = patch_ad1981a_specific,
18611da177e4SLinus Torvalds #ifdef CONFIG_PM
18621da177e4SLinus Torvalds 	.resume = ad18xx_resume
18631da177e4SLinus Torvalds #endif
18641da177e4SLinus Torvalds };
18651da177e4SLinus Torvalds 
18667933d669STakashi Iwai /* allow list to enable HP jack-sense bits
1867128a46a5STakashi Iwai  * (SS vendor << 16 | device)
1868128a46a5STakashi Iwai  */
18697933d669STakashi Iwai static const unsigned int ad1981_jacks_allowlist[] = {
1870128a46a5STakashi Iwai 	0x0e11005a, /* HP nc4000/4010 */
1871128a46a5STakashi Iwai 	0x103c0890, /* HP nc6000 */
1872128a46a5STakashi Iwai 	0x103c0938, /* HP nc4220 */
1873128a46a5STakashi Iwai 	0x103c099c, /* HP nx6110 */
1874128a46a5STakashi Iwai 	0x103c0944, /* HP nc6220 */
1875128a46a5STakashi Iwai 	0x103c0934, /* HP nc8220 */
1876128a46a5STakashi Iwai 	0x103c006d, /* HP nx9105 */
1877eade7b28SDaniel T Chen 	0x103c300d, /* HP Compaq dc5100 SFF(PT003AW) */
1878128a46a5STakashi Iwai 	0x17340088, /* FSC Scenic-W */
1879128a46a5STakashi Iwai 	0 /* end */
1880128a46a5STakashi Iwai };
1881128a46a5STakashi Iwai 
check_ad1981_hp_jack_sense(struct snd_ac97 * ac97)1882ee42381eSTakashi Iwai static void check_ad1981_hp_jack_sense(struct snd_ac97 *ac97)
18831da177e4SLinus Torvalds {
18847933d669STakashi Iwai 	if (check_list(ac97, ad1981_jacks_allowlist))
18851da177e4SLinus Torvalds 		/* enable headphone jack sense */
18861da177e4SLinus Torvalds 		snd_ac97_update_bits(ac97, AC97_AD_JACK_SPDIF, 1<<11, 1<<11);
18871da177e4SLinus Torvalds }
18881da177e4SLinus Torvalds 
patch_ad1981a(struct snd_ac97 * ac97)1889ac519028STakashi Iwai static int patch_ad1981a(struct snd_ac97 *ac97)
18901da177e4SLinus Torvalds {
18911da177e4SLinus Torvalds 	patch_ad1881(ac97);
18921da177e4SLinus Torvalds 	ac97->build_ops = &patch_ad1981a_build_ops;
18931da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_AD_MISC, AC97_AD198X_MSPLT, AC97_AD198X_MSPLT);
18941da177e4SLinus Torvalds 	ac97->flags |= AC97_STEREO_MUTES;
18951da177e4SLinus Torvalds 	check_ad1981_hp_jack_sense(ac97);
18961da177e4SLinus Torvalds 	return 0;
18971da177e4SLinus Torvalds }
18981da177e4SLinus Torvalds 
1899ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_ad198x_2cmic =
19001da177e4SLinus Torvalds AC97_SINGLE("Stereo Mic", AC97_AD_MISC, 6, 1, 0);
19011da177e4SLinus Torvalds 
patch_ad1981b_specific(struct snd_ac97 * ac97)1902ee42381eSTakashi Iwai static int patch_ad1981b_specific(struct snd_ac97 *ac97)
19031da177e4SLinus Torvalds {
19041da177e4SLinus Torvalds 	int err;
19051da177e4SLinus Torvalds 
1906e66fd362STakashi Iwai 	err = patch_build_controls(ac97, &snd_ac97_ad198x_2cmic, 1);
1907e66fd362STakashi Iwai 	if (err < 0)
19081da177e4SLinus Torvalds 		return err;
19097933d669STakashi Iwai 	if (check_list(ac97, ad1981_jacks_denylist))
1910128a46a5STakashi Iwai 		return 0;
19111da177e4SLinus Torvalds 	return patch_build_controls(ac97, snd_ac97_ad1981x_jack_sense,
19121da177e4SLinus Torvalds 				    ARRAY_SIZE(snd_ac97_ad1981x_jack_sense));
19131da177e4SLinus Torvalds }
19141da177e4SLinus Torvalds 
19153e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_ad1981b_build_ops = {
19161da177e4SLinus Torvalds 	.build_post_spdif = patch_ad198x_post_spdif,
19171da177e4SLinus Torvalds 	.build_specific = patch_ad1981b_specific,
19181da177e4SLinus Torvalds #ifdef CONFIG_PM
19191da177e4SLinus Torvalds 	.resume = ad18xx_resume
19201da177e4SLinus Torvalds #endif
19211da177e4SLinus Torvalds };
19221da177e4SLinus Torvalds 
patch_ad1981b(struct snd_ac97 * ac97)1923ac519028STakashi Iwai static int patch_ad1981b(struct snd_ac97 *ac97)
19241da177e4SLinus Torvalds {
19251da177e4SLinus Torvalds 	patch_ad1881(ac97);
19261da177e4SLinus Torvalds 	ac97->build_ops = &patch_ad1981b_build_ops;
19271da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_AD_MISC, AC97_AD198X_MSPLT, AC97_AD198X_MSPLT);
19281da177e4SLinus Torvalds 	ac97->flags |= AC97_STEREO_MUTES;
19291da177e4SLinus Torvalds 	check_ad1981_hp_jack_sense(ac97);
19301da177e4SLinus Torvalds 	return 0;
19311da177e4SLinus Torvalds }
19321da177e4SLinus Torvalds 
1933a5ce8890STakashi Iwai #define snd_ac97_ad1888_lohpsel_info	snd_ctl_boolean_mono_info
19341da177e4SLinus Torvalds 
snd_ac97_ad1888_lohpsel_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)1935ee42381eSTakashi Iwai static int snd_ac97_ad1888_lohpsel_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
19361da177e4SLinus Torvalds {
1937ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
19381da177e4SLinus Torvalds 	unsigned short val;
19391da177e4SLinus Torvalds 
19401da177e4SLinus Torvalds 	val = ac97->regs[AC97_AD_MISC];
19411da177e4SLinus Torvalds 	ucontrol->value.integer.value[0] = !(val & AC97_AD198X_LOSEL);
1942e48d6d97STakashi Iwai 	if (ac97->spec.ad18xx.lo_as_master)
1943e48d6d97STakashi Iwai 		ucontrol->value.integer.value[0] =
1944e48d6d97STakashi Iwai 			!ucontrol->value.integer.value[0];
19451da177e4SLinus Torvalds 	return 0;
19461da177e4SLinus Torvalds }
19471da177e4SLinus Torvalds 
snd_ac97_ad1888_lohpsel_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)1948ee42381eSTakashi Iwai static int snd_ac97_ad1888_lohpsel_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
19491da177e4SLinus Torvalds {
1950ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
19511da177e4SLinus Torvalds 	unsigned short val;
19521da177e4SLinus Torvalds 
1953e48d6d97STakashi Iwai 	val = !ucontrol->value.integer.value[0];
1954e48d6d97STakashi Iwai 	if (ac97->spec.ad18xx.lo_as_master)
1955e48d6d97STakashi Iwai 		val = !val;
1956e48d6d97STakashi Iwai 	val = val ? (AC97_AD198X_LOSEL | AC97_AD198X_HPSEL) : 0;
19571da177e4SLinus Torvalds 	return snd_ac97_update_bits(ac97, AC97_AD_MISC,
19581da177e4SLinus Torvalds 				    AC97_AD198X_LOSEL | AC97_AD198X_HPSEL, val);
19591da177e4SLinus Torvalds }
19601da177e4SLinus Torvalds 
snd_ac97_ad1888_downmix_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)1961ee42381eSTakashi Iwai static int snd_ac97_ad1888_downmix_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
19621da177e4SLinus Torvalds {
19633b7a00dcSTakashi Iwai 	static const char * const texts[3] = {"Off", "6 -> 4", "6 -> 2"};
19641da177e4SLinus Torvalds 
19653b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 3, texts);
19661da177e4SLinus Torvalds }
19671da177e4SLinus Torvalds 
snd_ac97_ad1888_downmix_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)1968ee42381eSTakashi Iwai static int snd_ac97_ad1888_downmix_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
19691da177e4SLinus Torvalds {
1970ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
19711da177e4SLinus Torvalds 	unsigned short val;
19721da177e4SLinus Torvalds 
19731da177e4SLinus Torvalds 	val = ac97->regs[AC97_AD_MISC];
19741da177e4SLinus Torvalds 	if (!(val & AC97_AD198X_DMIX1))
19751da177e4SLinus Torvalds 		ucontrol->value.enumerated.item[0] = 0;
19761da177e4SLinus Torvalds 	else
19771da177e4SLinus Torvalds 		ucontrol->value.enumerated.item[0] = 1 + ((val >> 8) & 1);
19781da177e4SLinus Torvalds 	return 0;
19791da177e4SLinus Torvalds }
19801da177e4SLinus Torvalds 
snd_ac97_ad1888_downmix_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)1981ee42381eSTakashi Iwai static int snd_ac97_ad1888_downmix_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
19821da177e4SLinus Torvalds {
1983ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
19841da177e4SLinus Torvalds 	unsigned short val;
19851da177e4SLinus Torvalds 
19861da177e4SLinus Torvalds 	if (ucontrol->value.enumerated.item[0] > 2)
19871da177e4SLinus Torvalds 		return -EINVAL;
19881da177e4SLinus Torvalds 	if (ucontrol->value.enumerated.item[0] == 0)
19891da177e4SLinus Torvalds 		val = 0;
19901da177e4SLinus Torvalds 	else
19911da177e4SLinus Torvalds 		val = AC97_AD198X_DMIX1 |
19921da177e4SLinus Torvalds 			((ucontrol->value.enumerated.item[0] - 1) << 8);
19931da177e4SLinus Torvalds 	return snd_ac97_update_bits(ac97, AC97_AD_MISC,
19941da177e4SLinus Torvalds 				    AC97_AD198X_DMIX0 | AC97_AD198X_DMIX1, val);
19951da177e4SLinus Torvalds }
19961da177e4SLinus Torvalds 
ad1888_update_jacks(struct snd_ac97 * ac97)1997ee42381eSTakashi Iwai static void ad1888_update_jacks(struct snd_ac97 *ac97)
1998eb8caf30STakashi Iwai {
19994525c9f3STakashi Iwai 	unsigned short val = 0;
2000c26a8de2SRandy Cushman 	/* clear LODIS if shared jack is to be used for Surround out */
2001e48d6d97STakashi Iwai 	if (!ac97->spec.ad18xx.lo_as_master && is_shared_linein(ac97))
20024525c9f3STakashi Iwai 		val |= (1 << 12);
2003c26a8de2SRandy Cushman 	/* clear CLDIS if shared jack is to be used for C/LFE out */
2004c26a8de2SRandy Cushman 	if (is_shared_micin(ac97))
20054525c9f3STakashi Iwai 		val |= (1 << 11);
2006eb8caf30STakashi Iwai 	/* shared Line-In */
20074525c9f3STakashi Iwai 	snd_ac97_update_bits(ac97, AC97_AD_MISC, (1 << 11) | (1 << 12), val);
2008eb8caf30STakashi Iwai }
2009eb8caf30STakashi Iwai 
2010ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_ad1888_controls[] = {
20111da177e4SLinus Torvalds 	{
20121da177e4SLinus Torvalds 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
20131da177e4SLinus Torvalds 		.name = "Exchange Front/Surround",
20141da177e4SLinus Torvalds 		.info = snd_ac97_ad1888_lohpsel_info,
20151da177e4SLinus Torvalds 		.get = snd_ac97_ad1888_lohpsel_get,
20161da177e4SLinus Torvalds 		.put = snd_ac97_ad1888_lohpsel_put
20171da177e4SLinus Torvalds 	},
20180bed7b29SAndres Salomon 	AC97_SINGLE("V_REFOUT Enable", AC97_AD_MISC, AC97_AD_VREFD_SHIFT, 1, 1),
20190bed7b29SAndres Salomon 	AC97_SINGLE("High Pass Filter Enable", AC97_AD_TEST2,
20200bed7b29SAndres Salomon 			AC97_AD_HPFD_SHIFT, 1, 1),
20211da177e4SLinus Torvalds 	AC97_SINGLE("Spread Front to Surround and Center/LFE", AC97_AD_MISC, 7, 1, 0),
20221da177e4SLinus Torvalds 	{
20231da177e4SLinus Torvalds 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
20241da177e4SLinus Torvalds 		.name = "Downmix",
20251da177e4SLinus Torvalds 		.info = snd_ac97_ad1888_downmix_info,
20261da177e4SLinus Torvalds 		.get = snd_ac97_ad1888_downmix_get,
20271da177e4SLinus Torvalds 		.put = snd_ac97_ad1888_downmix_put
20281da177e4SLinus Torvalds 	},
2029eb8caf30STakashi Iwai 	AC97_SURROUND_JACK_MODE_CTL,
2030eb8caf30STakashi Iwai 	AC97_CHANNEL_MODE_CTL,
2031eeacb545SSergey Ulanov 
2032eeacb545SSergey Ulanov 	AC97_SINGLE("Headphone Jack Sense", AC97_AD_JACK_SPDIF, 10, 1, 0),
2033eeacb545SSergey Ulanov 	AC97_SINGLE("Line Jack Sense", AC97_AD_JACK_SPDIF, 12, 1, 0),
20341da177e4SLinus Torvalds };
20351da177e4SLinus Torvalds 
patch_ad1888_specific(struct snd_ac97 * ac97)2036ee42381eSTakashi Iwai static int patch_ad1888_specific(struct snd_ac97 *ac97)
20371da177e4SLinus Torvalds {
2038e48d6d97STakashi Iwai 	if (!ac97->spec.ad18xx.lo_as_master) {
20391da177e4SLinus Torvalds 		/* rename 0x04 as "Master" and 0x02 as "Master Surround" */
2040e48d6d97STakashi Iwai 		snd_ac97_rename_vol_ctl(ac97, "Master Playback",
2041e48d6d97STakashi Iwai 					"Master Surround Playback");
2042e48d6d97STakashi Iwai 		snd_ac97_rename_vol_ctl(ac97, "Headphone Playback",
2043e48d6d97STakashi Iwai 					"Master Playback");
2044e48d6d97STakashi Iwai 	}
20451da177e4SLinus Torvalds 	return patch_build_controls(ac97, snd_ac97_ad1888_controls, ARRAY_SIZE(snd_ac97_ad1888_controls));
20461da177e4SLinus Torvalds }
20471da177e4SLinus Torvalds 
20483e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_ad1888_build_ops = {
20491da177e4SLinus Torvalds 	.build_post_spdif = patch_ad198x_post_spdif,
20501da177e4SLinus Torvalds 	.build_specific = patch_ad1888_specific,
20511da177e4SLinus Torvalds #ifdef CONFIG_PM
20521561f09aSJaya Kumar 	.resume = ad1888_resume,
20531da177e4SLinus Torvalds #endif
2054eb8caf30STakashi Iwai 	.update_jacks = ad1888_update_jacks,
20551da177e4SLinus Torvalds };
20561da177e4SLinus Torvalds 
patch_ad1888(struct snd_ac97 * ac97)2057ac519028STakashi Iwai static int patch_ad1888(struct snd_ac97 * ac97)
20581da177e4SLinus Torvalds {
20591da177e4SLinus Torvalds 	unsigned short misc;
20601da177e4SLinus Torvalds 
20611da177e4SLinus Torvalds 	patch_ad1881(ac97);
20621da177e4SLinus Torvalds 	ac97->build_ops = &patch_ad1888_build_ops;
2063e48d6d97STakashi Iwai 
2064e48d6d97STakashi Iwai 	/*
2065e48d6d97STakashi Iwai 	 * LO can be used as a real line-out on some devices,
2066e48d6d97STakashi Iwai 	 * and we need to revert the front/surround mixer switches
2067e48d6d97STakashi Iwai 	 */
2068e48d6d97STakashi Iwai 	if (ac97->subsystem_vendor == 0x1043 &&
2069e48d6d97STakashi Iwai 	    ac97->subsystem_device == 0x1193) /* ASUS A9T laptop */
2070e48d6d97STakashi Iwai 		ac97->spec.ad18xx.lo_as_master = 1;
2071e48d6d97STakashi Iwai 
2072e48d6d97STakashi Iwai 	misc = snd_ac97_read(ac97, AC97_AD_MISC);
20731da177e4SLinus Torvalds 	/* AD-compatible mode */
20741da177e4SLinus Torvalds 	/* Stereo mutes enabled */
2075e48d6d97STakashi Iwai 	misc |= AC97_AD198X_MSPLT | AC97_AD198X_AC97NC;
2076e48d6d97STakashi Iwai 	if (!ac97->spec.ad18xx.lo_as_master)
2077e48d6d97STakashi Iwai 		/* Switch FRONT/SURROUND LINE-OUT/HP-OUT default connection */
2078e48d6d97STakashi Iwai 		/* it seems that most vendors connect line-out connector to
2079e48d6d97STakashi Iwai 		 * headphone out of AC'97
2080e48d6d97STakashi Iwai 		 */
2081e48d6d97STakashi Iwai 		misc |= AC97_AD198X_LOSEL | AC97_AD198X_HPSEL;
2082e48d6d97STakashi Iwai 
2083e48d6d97STakashi Iwai 	snd_ac97_write_cache(ac97, AC97_AD_MISC, misc);
20841da177e4SLinus Torvalds 	ac97->flags |= AC97_STEREO_MUTES;
20851da177e4SLinus Torvalds 	return 0;
20861da177e4SLinus Torvalds }
20871da177e4SLinus Torvalds 
patch_ad1980_specific(struct snd_ac97 * ac97)2088ee42381eSTakashi Iwai static int patch_ad1980_specific(struct snd_ac97 *ac97)
20891da177e4SLinus Torvalds {
20901da177e4SLinus Torvalds 	int err;
20911da177e4SLinus Torvalds 
2092e66fd362STakashi Iwai 	err = patch_ad1888_specific(ac97);
2093e66fd362STakashi Iwai 	if (err < 0)
20941da177e4SLinus Torvalds 		return err;
20951da177e4SLinus Torvalds 	return patch_build_controls(ac97, &snd_ac97_ad198x_2cmic, 1);
20961da177e4SLinus Torvalds }
20971da177e4SLinus Torvalds 
20983e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_ad1980_build_ops = {
20991da177e4SLinus Torvalds 	.build_post_spdif = patch_ad198x_post_spdif,
21001da177e4SLinus Torvalds 	.build_specific = patch_ad1980_specific,
21011da177e4SLinus Torvalds #ifdef CONFIG_PM
2102462c4173SClemens Ladisch 	.resume = ad18xx_resume,
21031da177e4SLinus Torvalds #endif
2104462c4173SClemens Ladisch 	.update_jacks = ad1888_update_jacks,
21051da177e4SLinus Torvalds };
21061da177e4SLinus Torvalds 
patch_ad1980(struct snd_ac97 * ac97)2107ac519028STakashi Iwai static int patch_ad1980(struct snd_ac97 * ac97)
21081da177e4SLinus Torvalds {
21091da177e4SLinus Torvalds 	patch_ad1888(ac97);
21101da177e4SLinus Torvalds 	ac97->build_ops = &patch_ad1980_build_ops;
21111da177e4SLinus Torvalds 	return 0;
21121da177e4SLinus Torvalds }
21131da177e4SLinus Torvalds 
snd_ac97_ad1985_vrefout_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)21146428ea1bSRandy Cushman static int snd_ac97_ad1985_vrefout_info(struct snd_kcontrol *kcontrol,
21156428ea1bSRandy Cushman 					struct snd_ctl_elem_info *uinfo)
21166428ea1bSRandy Cushman {
21173b7a00dcSTakashi Iwai 	static const char * const texts[4] = {
21183b7a00dcSTakashi Iwai 		"High-Z", "3.7 V", "2.25 V", "0 V"
21193b7a00dcSTakashi Iwai 	};
21206428ea1bSRandy Cushman 
21213b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 4, texts);
21226428ea1bSRandy Cushman }
21236428ea1bSRandy Cushman 
snd_ac97_ad1985_vrefout_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)21246428ea1bSRandy Cushman static int snd_ac97_ad1985_vrefout_get(struct snd_kcontrol *kcontrol,
21256428ea1bSRandy Cushman 				       struct snd_ctl_elem_value *ucontrol)
21266428ea1bSRandy Cushman {
21276428ea1bSRandy Cushman 	static const int reg2ctrl[4] = {2, 0, 1, 3};
21286428ea1bSRandy Cushman 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
21296428ea1bSRandy Cushman 	unsigned short val;
21306428ea1bSRandy Cushman 	val = (ac97->regs[AC97_AD_MISC] & AC97_AD198X_VREF_MASK)
21316428ea1bSRandy Cushman 	      >> AC97_AD198X_VREF_SHIFT;
21326428ea1bSRandy Cushman 	ucontrol->value.enumerated.item[0] = reg2ctrl[val];
21336428ea1bSRandy Cushman 	return 0;
21346428ea1bSRandy Cushman }
21356428ea1bSRandy Cushman 
snd_ac97_ad1985_vrefout_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)21366428ea1bSRandy Cushman static int snd_ac97_ad1985_vrefout_put(struct snd_kcontrol *kcontrol,
21376428ea1bSRandy Cushman 				       struct snd_ctl_elem_value *ucontrol)
21386428ea1bSRandy Cushman {
21396428ea1bSRandy Cushman 	static const int ctrl2reg[4] = {1, 2, 0, 3};
21406428ea1bSRandy Cushman 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
21416428ea1bSRandy Cushman 	unsigned short val;
21426428ea1bSRandy Cushman 
21434e98d6a7STakashi Iwai 	if (ucontrol->value.enumerated.item[0] > 3)
21446428ea1bSRandy Cushman 		return -EINVAL;
21456428ea1bSRandy Cushman 	val = ctrl2reg[ucontrol->value.enumerated.item[0]]
21466428ea1bSRandy Cushman 	      << AC97_AD198X_VREF_SHIFT;
21476428ea1bSRandy Cushman 	return snd_ac97_update_bits(ac97, AC97_AD_MISC,
21486428ea1bSRandy Cushman 				    AC97_AD198X_VREF_MASK, val);
21496428ea1bSRandy Cushman }
21506428ea1bSRandy Cushman 
2151ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_ad1985_controls[] = {
21526428ea1bSRandy Cushman 	AC97_SINGLE("Exchange Center/LFE", AC97_AD_SERIAL_CFG, 3, 1, 0),
21536428ea1bSRandy Cushman 	{
21546428ea1bSRandy Cushman 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
21556428ea1bSRandy Cushman 		.name = "Exchange Front/Surround",
21566428ea1bSRandy Cushman 		.info = snd_ac97_ad1888_lohpsel_info,
21576428ea1bSRandy Cushman 		.get = snd_ac97_ad1888_lohpsel_get,
21586428ea1bSRandy Cushman 		.put = snd_ac97_ad1888_lohpsel_put
21596428ea1bSRandy Cushman 	},
21606428ea1bSRandy Cushman 	AC97_SINGLE("High Pass Filter Enable", AC97_AD_TEST2, 12, 1, 1),
21616428ea1bSRandy Cushman 	AC97_SINGLE("Spread Front to Surround and Center/LFE",
21626428ea1bSRandy Cushman 		    AC97_AD_MISC, 7, 1, 0),
21636428ea1bSRandy Cushman 	{
21646428ea1bSRandy Cushman 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
21656428ea1bSRandy Cushman 		.name = "Downmix",
21666428ea1bSRandy Cushman 		.info = snd_ac97_ad1888_downmix_info,
21676428ea1bSRandy Cushman 		.get = snd_ac97_ad1888_downmix_get,
21686428ea1bSRandy Cushman 		.put = snd_ac97_ad1888_downmix_put
21696428ea1bSRandy Cushman 	},
21706428ea1bSRandy Cushman 	{
21716428ea1bSRandy Cushman 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
21726428ea1bSRandy Cushman 		.name = "V_REFOUT",
21736428ea1bSRandy Cushman 		.info = snd_ac97_ad1985_vrefout_info,
21746428ea1bSRandy Cushman 		.get = snd_ac97_ad1985_vrefout_get,
21756428ea1bSRandy Cushman 		.put = snd_ac97_ad1985_vrefout_put
21766428ea1bSRandy Cushman 	},
21776428ea1bSRandy Cushman 	AC97_SURROUND_JACK_MODE_CTL,
21786428ea1bSRandy Cushman 	AC97_CHANNEL_MODE_CTL,
21796428ea1bSRandy Cushman 
21806428ea1bSRandy Cushman 	AC97_SINGLE("Headphone Jack Sense", AC97_AD_JACK_SPDIF, 10, 1, 0),
21816428ea1bSRandy Cushman 	AC97_SINGLE("Line Jack Sense", AC97_AD_JACK_SPDIF, 12, 1, 0),
21821da177e4SLinus Torvalds };
21831da177e4SLinus Torvalds 
ad1985_update_jacks(struct snd_ac97 * ac97)2184ee42381eSTakashi Iwai static void ad1985_update_jacks(struct snd_ac97 *ac97)
2185e5b3f45fSTakashi Iwai {
21864525c9f3STakashi Iwai 	ad1888_update_jacks(ac97);
2187c26a8de2SRandy Cushman 	/* clear OMS if shared jack is to be used for C/LFE out */
2188fc232c6eSTakashi Iwai 	snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 1 << 9,
2189c26a8de2SRandy Cushman 			     is_shared_micin(ac97) ? 1 << 9 : 0);
2190e5b3f45fSTakashi Iwai }
2191e5b3f45fSTakashi Iwai 
patch_ad1985_specific(struct snd_ac97 * ac97)2192ee42381eSTakashi Iwai static int patch_ad1985_specific(struct snd_ac97 *ac97)
21931da177e4SLinus Torvalds {
21941da177e4SLinus Torvalds 	int err;
21951da177e4SLinus Torvalds 
21966428ea1bSRandy Cushman 	/* rename 0x04 as "Master" and 0x02 as "Master Surround" */
21976428ea1bSRandy Cushman 	snd_ac97_rename_vol_ctl(ac97, "Master Playback",
21986428ea1bSRandy Cushman 				"Master Surround Playback");
21996428ea1bSRandy Cushman 	snd_ac97_rename_vol_ctl(ac97, "Headphone Playback", "Master Playback");
22006428ea1bSRandy Cushman 
2201e66fd362STakashi Iwai 	err = patch_build_controls(ac97, &snd_ac97_ad198x_2cmic, 1);
2202e66fd362STakashi Iwai 	if (err < 0)
22031da177e4SLinus Torvalds 		return err;
22046428ea1bSRandy Cushman 
22056428ea1bSRandy Cushman 	return patch_build_controls(ac97, snd_ac97_ad1985_controls,
22066428ea1bSRandy Cushman 				    ARRAY_SIZE(snd_ac97_ad1985_controls));
22071da177e4SLinus Torvalds }
22081da177e4SLinus Torvalds 
22093e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_ad1985_build_ops = {
22101da177e4SLinus Torvalds 	.build_post_spdif = patch_ad198x_post_spdif,
22111da177e4SLinus Torvalds 	.build_specific = patch_ad1985_specific,
22121da177e4SLinus Torvalds #ifdef CONFIG_PM
2213462c4173SClemens Ladisch 	.resume = ad18xx_resume,
22141da177e4SLinus Torvalds #endif
2215e5b3f45fSTakashi Iwai 	.update_jacks = ad1985_update_jacks,
22161da177e4SLinus Torvalds };
22171da177e4SLinus Torvalds 
patch_ad1985(struct snd_ac97 * ac97)2218ac519028STakashi Iwai static int patch_ad1985(struct snd_ac97 * ac97)
22191da177e4SLinus Torvalds {
22201da177e4SLinus Torvalds 	unsigned short misc;
22211da177e4SLinus Torvalds 
22221da177e4SLinus Torvalds 	patch_ad1881(ac97);
22231da177e4SLinus Torvalds 	ac97->build_ops = &patch_ad1985_build_ops;
22241da177e4SLinus Torvalds 	misc = snd_ac97_read(ac97, AC97_AD_MISC);
22251da177e4SLinus Torvalds 	/* switch front/surround line-out/hp-out */
22261da177e4SLinus Torvalds 	/* AD-compatible mode */
22271da177e4SLinus Torvalds 	/* Stereo mutes enabled */
22281da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_AD_MISC, misc |
22291da177e4SLinus Torvalds 			     AC97_AD198X_LOSEL |
22301da177e4SLinus Torvalds 			     AC97_AD198X_HPSEL |
22311da177e4SLinus Torvalds 			     AC97_AD198X_MSPLT |
22321da177e4SLinus Torvalds 			     AC97_AD198X_AC97NC);
22331da177e4SLinus Torvalds 	ac97->flags |= AC97_STEREO_MUTES;
22346428ea1bSRandy Cushman 
22356428ea1bSRandy Cushman 	/* update current jack configuration */
22366428ea1bSRandy Cushman 	ad1985_update_jacks(ac97);
22376428ea1bSRandy Cushman 
22381da177e4SLinus Torvalds 	/* on AD1985 rev. 3, AC'97 revision bits are zero */
22391da177e4SLinus Torvalds 	ac97->ext_id = (ac97->ext_id & ~AC97_EI_REV_MASK) | AC97_EI_REV_23;
22401da177e4SLinus Torvalds 	return 0;
22411da177e4SLinus Torvalds }
22421da177e4SLinus Torvalds 
2243a5ce8890STakashi Iwai #define snd_ac97_ad1986_bool_info	snd_ctl_boolean_mono_info
224467e9f4b6SRandy Cushman 
snd_ac97_ad1986_lososel_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)224567e9f4b6SRandy Cushman static int snd_ac97_ad1986_lososel_get(struct snd_kcontrol *kcontrol,
224667e9f4b6SRandy Cushman 				       struct snd_ctl_elem_value *ucontrol)
224767e9f4b6SRandy Cushman {
224867e9f4b6SRandy Cushman 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
224967e9f4b6SRandy Cushman 	unsigned short val;
225067e9f4b6SRandy Cushman 
225167e9f4b6SRandy Cushman 	val = ac97->regs[AC97_AD_MISC3];
225267e9f4b6SRandy Cushman 	ucontrol->value.integer.value[0] = (val & AC97_AD1986_LOSEL) != 0;
225367e9f4b6SRandy Cushman 	return 0;
225467e9f4b6SRandy Cushman }
225567e9f4b6SRandy Cushman 
snd_ac97_ad1986_lososel_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)225667e9f4b6SRandy Cushman static int snd_ac97_ad1986_lososel_put(struct snd_kcontrol *kcontrol,
225767e9f4b6SRandy Cushman 				       struct snd_ctl_elem_value *ucontrol)
225867e9f4b6SRandy Cushman {
225967e9f4b6SRandy Cushman 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
226067e9f4b6SRandy Cushman 	int ret0;
226167e9f4b6SRandy Cushman 	int ret1;
226267e9f4b6SRandy Cushman 	int sprd = (ac97->regs[AC97_AD_MISC] & AC97_AD1986_SPRD) != 0;
226367e9f4b6SRandy Cushman 
226467e9f4b6SRandy Cushman 	ret0 = snd_ac97_update_bits(ac97, AC97_AD_MISC3, AC97_AD1986_LOSEL,
226567e9f4b6SRandy Cushman 					ucontrol->value.integer.value[0] != 0
226667e9f4b6SRandy Cushman 				    ? AC97_AD1986_LOSEL : 0);
226767e9f4b6SRandy Cushman 	if (ret0 < 0)
226867e9f4b6SRandy Cushman 		return ret0;
226967e9f4b6SRandy Cushman 
227067e9f4b6SRandy Cushman 	/* SOSEL is set to values of "Spread" or "Exchange F/S" controls */
227167e9f4b6SRandy Cushman 	ret1 = snd_ac97_update_bits(ac97, AC97_AD_MISC, AC97_AD1986_SOSEL,
227267e9f4b6SRandy Cushman 				    (ucontrol->value.integer.value[0] != 0
227367e9f4b6SRandy Cushman 				     || sprd)
227467e9f4b6SRandy Cushman 				    ? AC97_AD1986_SOSEL : 0);
227567e9f4b6SRandy Cushman 	if (ret1 < 0)
227667e9f4b6SRandy Cushman 		return ret1;
227767e9f4b6SRandy Cushman 
227867e9f4b6SRandy Cushman 	return (ret0 > 0 || ret1 > 0) ? 1 : 0;
227967e9f4b6SRandy Cushman }
228067e9f4b6SRandy Cushman 
snd_ac97_ad1986_spread_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)228167e9f4b6SRandy Cushman static int snd_ac97_ad1986_spread_get(struct snd_kcontrol *kcontrol,
228267e9f4b6SRandy Cushman 				      struct snd_ctl_elem_value *ucontrol)
228367e9f4b6SRandy Cushman {
228467e9f4b6SRandy Cushman 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
228567e9f4b6SRandy Cushman 	unsigned short val;
228667e9f4b6SRandy Cushman 
228767e9f4b6SRandy Cushman 	val = ac97->regs[AC97_AD_MISC];
228867e9f4b6SRandy Cushman 	ucontrol->value.integer.value[0] = (val & AC97_AD1986_SPRD) != 0;
228967e9f4b6SRandy Cushman 	return 0;
229067e9f4b6SRandy Cushman }
229167e9f4b6SRandy Cushman 
snd_ac97_ad1986_spread_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)229267e9f4b6SRandy Cushman static int snd_ac97_ad1986_spread_put(struct snd_kcontrol *kcontrol,
229367e9f4b6SRandy Cushman 				      struct snd_ctl_elem_value *ucontrol)
229467e9f4b6SRandy Cushman {
229567e9f4b6SRandy Cushman 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
229667e9f4b6SRandy Cushman 	int ret0;
229767e9f4b6SRandy Cushman 	int ret1;
229867e9f4b6SRandy Cushman 	int sprd = (ac97->regs[AC97_AD_MISC3] & AC97_AD1986_LOSEL) != 0;
229967e9f4b6SRandy Cushman 
230067e9f4b6SRandy Cushman 	ret0 = snd_ac97_update_bits(ac97, AC97_AD_MISC, AC97_AD1986_SPRD,
230167e9f4b6SRandy Cushman 					ucontrol->value.integer.value[0] != 0
230267e9f4b6SRandy Cushman 				    ? AC97_AD1986_SPRD : 0);
230367e9f4b6SRandy Cushman 	if (ret0 < 0)
230467e9f4b6SRandy Cushman 		return ret0;
230567e9f4b6SRandy Cushman 
230667e9f4b6SRandy Cushman 	/* SOSEL is set to values of "Spread" or "Exchange F/S" controls */
230767e9f4b6SRandy Cushman 	ret1 = snd_ac97_update_bits(ac97, AC97_AD_MISC, AC97_AD1986_SOSEL,
230867e9f4b6SRandy Cushman 				    (ucontrol->value.integer.value[0] != 0
230967e9f4b6SRandy Cushman 				     || sprd)
231067e9f4b6SRandy Cushman 				    ? AC97_AD1986_SOSEL : 0);
231167e9f4b6SRandy Cushman 	if (ret1 < 0)
231267e9f4b6SRandy Cushman 		return ret1;
231367e9f4b6SRandy Cushman 
231467e9f4b6SRandy Cushman 	return (ret0 > 0 || ret1 > 0) ? 1 : 0;
231567e9f4b6SRandy Cushman }
231667e9f4b6SRandy Cushman 
snd_ac97_ad1986_miclisel_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)231767e9f4b6SRandy Cushman static int snd_ac97_ad1986_miclisel_get(struct snd_kcontrol *kcontrol,
231867e9f4b6SRandy Cushman 					struct snd_ctl_elem_value *ucontrol)
231967e9f4b6SRandy Cushman {
232067e9f4b6SRandy Cushman 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
232167e9f4b6SRandy Cushman 
232267e9f4b6SRandy Cushman 	ucontrol->value.integer.value[0] = ac97->spec.ad18xx.swap_mic_linein;
232367e9f4b6SRandy Cushman 	return 0;
232467e9f4b6SRandy Cushman }
232567e9f4b6SRandy Cushman 
snd_ac97_ad1986_miclisel_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)232667e9f4b6SRandy Cushman static int snd_ac97_ad1986_miclisel_put(struct snd_kcontrol *kcontrol,
232767e9f4b6SRandy Cushman 					struct snd_ctl_elem_value *ucontrol)
232867e9f4b6SRandy Cushman {
232967e9f4b6SRandy Cushman 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
233067e9f4b6SRandy Cushman 	unsigned char swap = ucontrol->value.integer.value[0] != 0;
233167e9f4b6SRandy Cushman 
233267e9f4b6SRandy Cushman 	if (swap != ac97->spec.ad18xx.swap_mic_linein) {
233367e9f4b6SRandy Cushman 		ac97->spec.ad18xx.swap_mic_linein = swap;
233467e9f4b6SRandy Cushman 		if (ac97->build_ops->update_jacks)
233567e9f4b6SRandy Cushman 			ac97->build_ops->update_jacks(ac97);
233667e9f4b6SRandy Cushman 		return 1;
233767e9f4b6SRandy Cushman 	}
233867e9f4b6SRandy Cushman 	return 0;
233967e9f4b6SRandy Cushman }
234067e9f4b6SRandy Cushman 
snd_ac97_ad1986_vrefout_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)234167e9f4b6SRandy Cushman static int snd_ac97_ad1986_vrefout_get(struct snd_kcontrol *kcontrol,
234267e9f4b6SRandy Cushman 				       struct snd_ctl_elem_value *ucontrol)
234367e9f4b6SRandy Cushman {
234467e9f4b6SRandy Cushman 	/* Use MIC_1/2 V_REFOUT as the "get" value */
234567e9f4b6SRandy Cushman 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
234667e9f4b6SRandy Cushman 	unsigned short val;
234767e9f4b6SRandy Cushman 	unsigned short reg = ac97->regs[AC97_AD_MISC2];
234867e9f4b6SRandy Cushman 	if ((reg & AC97_AD1986_MVREF0) != 0)
234967e9f4b6SRandy Cushman 		val = 2;
235067e9f4b6SRandy Cushman 	else if ((reg & AC97_AD1986_MVREF1) != 0)
235167e9f4b6SRandy Cushman 		val = 3;
235267e9f4b6SRandy Cushman 	else if ((reg & AC97_AD1986_MVREF2) != 0)
235367e9f4b6SRandy Cushman 		val = 1;
235467e9f4b6SRandy Cushman 	else
235567e9f4b6SRandy Cushman 		val = 0;
235667e9f4b6SRandy Cushman 	ucontrol->value.enumerated.item[0] = val;
235767e9f4b6SRandy Cushman 	return 0;
235867e9f4b6SRandy Cushman }
235967e9f4b6SRandy Cushman 
snd_ac97_ad1986_vrefout_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)236067e9f4b6SRandy Cushman static int snd_ac97_ad1986_vrefout_put(struct snd_kcontrol *kcontrol,
236167e9f4b6SRandy Cushman 				       struct snd_ctl_elem_value *ucontrol)
236267e9f4b6SRandy Cushman {
236367e9f4b6SRandy Cushman 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
236467e9f4b6SRandy Cushman 	unsigned short cval;
236567e9f4b6SRandy Cushman 	unsigned short lval;
236667e9f4b6SRandy Cushman 	unsigned short mval;
236767e9f4b6SRandy Cushman 	int cret;
236867e9f4b6SRandy Cushman 	int lret;
236967e9f4b6SRandy Cushman 	int mret;
237067e9f4b6SRandy Cushman 
237167e9f4b6SRandy Cushman 	switch (ucontrol->value.enumerated.item[0])
237267e9f4b6SRandy Cushman 	{
237367e9f4b6SRandy Cushman 	case 0: /* High-Z */
237467e9f4b6SRandy Cushman 		cval = 0;
237567e9f4b6SRandy Cushman 		lval = 0;
237667e9f4b6SRandy Cushman 		mval = 0;
237767e9f4b6SRandy Cushman 		break;
237867e9f4b6SRandy Cushman 	case 1: /* 3.7 V */
237967e9f4b6SRandy Cushman 		cval = AC97_AD1986_CVREF2;
238067e9f4b6SRandy Cushman 		lval = AC97_AD1986_LVREF2;
238167e9f4b6SRandy Cushman 		mval = AC97_AD1986_MVREF2;
238267e9f4b6SRandy Cushman 		break;
238367e9f4b6SRandy Cushman 	case 2: /* 2.25 V */
238467e9f4b6SRandy Cushman 		cval = AC97_AD1986_CVREF0;
238567e9f4b6SRandy Cushman 		lval = AC97_AD1986_LVREF0;
238667e9f4b6SRandy Cushman 		mval = AC97_AD1986_MVREF0;
238767e9f4b6SRandy Cushman 		break;
238867e9f4b6SRandy Cushman 	case 3: /* 0 V */
238967e9f4b6SRandy Cushman 		cval = AC97_AD1986_CVREF1;
239067e9f4b6SRandy Cushman 		lval = AC97_AD1986_LVREF1;
239167e9f4b6SRandy Cushman 		mval = AC97_AD1986_MVREF1;
239267e9f4b6SRandy Cushman 		break;
239367e9f4b6SRandy Cushman 	default:
239467e9f4b6SRandy Cushman 		return -EINVAL;
239567e9f4b6SRandy Cushman 	}
239667e9f4b6SRandy Cushman 
239767e9f4b6SRandy Cushman 	cret = snd_ac97_update_bits(ac97, AC97_AD_MISC2,
239867e9f4b6SRandy Cushman 				    AC97_AD1986_CVREF_MASK, cval);
239967e9f4b6SRandy Cushman 	if (cret < 0)
240067e9f4b6SRandy Cushman 		return cret;
240167e9f4b6SRandy Cushman 	lret = snd_ac97_update_bits(ac97, AC97_AD_MISC3,
240267e9f4b6SRandy Cushman 				    AC97_AD1986_LVREF_MASK, lval);
240367e9f4b6SRandy Cushman 	if (lret < 0)
240467e9f4b6SRandy Cushman 		return lret;
240567e9f4b6SRandy Cushman 	mret = snd_ac97_update_bits(ac97, AC97_AD_MISC2,
240667e9f4b6SRandy Cushman 				    AC97_AD1986_MVREF_MASK, mval);
240767e9f4b6SRandy Cushman 	if (mret < 0)
240867e9f4b6SRandy Cushman 		return mret;
240967e9f4b6SRandy Cushman 
241067e9f4b6SRandy Cushman 	return (cret > 0 || lret > 0 || mret > 0) ? 1 : 0;
241167e9f4b6SRandy Cushman }
241267e9f4b6SRandy Cushman 
241367e9f4b6SRandy Cushman static const struct snd_kcontrol_new snd_ac97_ad1986_controls[] = {
241467e9f4b6SRandy Cushman 	AC97_SINGLE("Exchange Center/LFE", AC97_AD_SERIAL_CFG, 3, 1, 0),
241567e9f4b6SRandy Cushman 	{
241667e9f4b6SRandy Cushman 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
241767e9f4b6SRandy Cushman 		.name = "Exchange Front/Surround",
241867e9f4b6SRandy Cushman 		.info = snd_ac97_ad1986_bool_info,
241967e9f4b6SRandy Cushman 		.get = snd_ac97_ad1986_lososel_get,
242067e9f4b6SRandy Cushman 		.put = snd_ac97_ad1986_lososel_put
242167e9f4b6SRandy Cushman 	},
242267e9f4b6SRandy Cushman 	{
242367e9f4b6SRandy Cushman 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
242467e9f4b6SRandy Cushman 		.name = "Exchange Mic/Line In",
242567e9f4b6SRandy Cushman 		.info = snd_ac97_ad1986_bool_info,
242667e9f4b6SRandy Cushman 		.get = snd_ac97_ad1986_miclisel_get,
242767e9f4b6SRandy Cushman 		.put = snd_ac97_ad1986_miclisel_put
242867e9f4b6SRandy Cushman 	},
242967e9f4b6SRandy Cushman 	{
243067e9f4b6SRandy Cushman 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
243167e9f4b6SRandy Cushman 		.name = "Spread Front to Surround and Center/LFE",
243267e9f4b6SRandy Cushman 		.info = snd_ac97_ad1986_bool_info,
243367e9f4b6SRandy Cushman 		.get = snd_ac97_ad1986_spread_get,
243467e9f4b6SRandy Cushman 		.put = snd_ac97_ad1986_spread_put
243567e9f4b6SRandy Cushman 	},
243667e9f4b6SRandy Cushman 	{
243767e9f4b6SRandy Cushman 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
243867e9f4b6SRandy Cushman 		.name = "Downmix",
243967e9f4b6SRandy Cushman 		.info = snd_ac97_ad1888_downmix_info,
244067e9f4b6SRandy Cushman 		.get = snd_ac97_ad1888_downmix_get,
244167e9f4b6SRandy Cushman 		.put = snd_ac97_ad1888_downmix_put
244267e9f4b6SRandy Cushman 	},
244367e9f4b6SRandy Cushman 	{
244467e9f4b6SRandy Cushman 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
244567e9f4b6SRandy Cushman 		.name = "V_REFOUT",
244667e9f4b6SRandy Cushman 		.info = snd_ac97_ad1985_vrefout_info,
244767e9f4b6SRandy Cushman 		.get = snd_ac97_ad1986_vrefout_get,
244867e9f4b6SRandy Cushman 		.put = snd_ac97_ad1986_vrefout_put
244967e9f4b6SRandy Cushman 	},
245067e9f4b6SRandy Cushman 	AC97_SURROUND_JACK_MODE_CTL,
245167e9f4b6SRandy Cushman 	AC97_CHANNEL_MODE_CTL,
245267e9f4b6SRandy Cushman 
245367e9f4b6SRandy Cushman 	AC97_SINGLE("Headphone Jack Sense", AC97_AD_JACK_SPDIF, 10, 1, 0),
245467e9f4b6SRandy Cushman 	AC97_SINGLE("Line Jack Sense", AC97_AD_JACK_SPDIF, 12, 1, 0)
245567e9f4b6SRandy Cushman };
245667e9f4b6SRandy Cushman 
ad1986_update_jacks(struct snd_ac97 * ac97)245767e9f4b6SRandy Cushman static void ad1986_update_jacks(struct snd_ac97 *ac97)
245867e9f4b6SRandy Cushman {
245967e9f4b6SRandy Cushman 	unsigned short misc_val = 0;
246067e9f4b6SRandy Cushman 	unsigned short ser_val;
246167e9f4b6SRandy Cushman 
246267e9f4b6SRandy Cushman 	/* disable SURROUND and CENTER/LFE if not surround mode */
246367e9f4b6SRandy Cushman 	if (!is_surround_on(ac97))
246467e9f4b6SRandy Cushman 		misc_val |= AC97_AD1986_SODIS;
246567e9f4b6SRandy Cushman 	if (!is_clfe_on(ac97))
246667e9f4b6SRandy Cushman 		misc_val |= AC97_AD1986_CLDIS;
246767e9f4b6SRandy Cushman 
246867e9f4b6SRandy Cushman 	/* select line input (default=LINE_IN, SURROUND or MIC_1/2) */
246967e9f4b6SRandy Cushman 	if (is_shared_linein(ac97))
247067e9f4b6SRandy Cushman 		misc_val |= AC97_AD1986_LISEL_SURR;
247167e9f4b6SRandy Cushman 	else if (ac97->spec.ad18xx.swap_mic_linein != 0)
247267e9f4b6SRandy Cushman 		misc_val |= AC97_AD1986_LISEL_MIC;
247367e9f4b6SRandy Cushman 	snd_ac97_update_bits(ac97, AC97_AD_MISC,
247467e9f4b6SRandy Cushman 			     AC97_AD1986_SODIS | AC97_AD1986_CLDIS |
247567e9f4b6SRandy Cushman 			     AC97_AD1986_LISEL_MASK,
247667e9f4b6SRandy Cushman 			     misc_val);
247767e9f4b6SRandy Cushman 
247867e9f4b6SRandy Cushman 	/* select microphone input (MIC_1/2, Center/LFE or LINE_IN) */
247967e9f4b6SRandy Cushman 	if (is_shared_micin(ac97))
248067e9f4b6SRandy Cushman 		ser_val = AC97_AD1986_OMS_C;
248167e9f4b6SRandy Cushman 	else if (ac97->spec.ad18xx.swap_mic_linein != 0)
248267e9f4b6SRandy Cushman 		ser_val = AC97_AD1986_OMS_L;
248367e9f4b6SRandy Cushman 	else
248467e9f4b6SRandy Cushman 		ser_val = AC97_AD1986_OMS_M;
248567e9f4b6SRandy Cushman 	snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG,
248667e9f4b6SRandy Cushman 			     AC97_AD1986_OMS_MASK,
248767e9f4b6SRandy Cushman 			     ser_val);
248867e9f4b6SRandy Cushman }
248967e9f4b6SRandy Cushman 
patch_ad1986_specific(struct snd_ac97 * ac97)249067e9f4b6SRandy Cushman static int patch_ad1986_specific(struct snd_ac97 *ac97)
249167e9f4b6SRandy Cushman {
249267e9f4b6SRandy Cushman 	int err;
249367e9f4b6SRandy Cushman 
2494e66fd362STakashi Iwai 	err = patch_build_controls(ac97, &snd_ac97_ad198x_2cmic, 1);
2495e66fd362STakashi Iwai 	if (err < 0)
249667e9f4b6SRandy Cushman 		return err;
249767e9f4b6SRandy Cushman 
249867e9f4b6SRandy Cushman 	return patch_build_controls(ac97, snd_ac97_ad1986_controls,
249967e9f4b6SRandy Cushman 				    ARRAY_SIZE(snd_ac97_ad1985_controls));
250067e9f4b6SRandy Cushman }
250167e9f4b6SRandy Cushman 
25023e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_ad1986_build_ops = {
250367e9f4b6SRandy Cushman 	.build_post_spdif = patch_ad198x_post_spdif,
250467e9f4b6SRandy Cushman 	.build_specific = patch_ad1986_specific,
250567e9f4b6SRandy Cushman #ifdef CONFIG_PM
250667e9f4b6SRandy Cushman 	.resume = ad18xx_resume,
250767e9f4b6SRandy Cushman #endif
250867e9f4b6SRandy Cushman 	.update_jacks = ad1986_update_jacks,
250967e9f4b6SRandy Cushman };
251067e9f4b6SRandy Cushman 
patch_ad1986(struct snd_ac97 * ac97)2511ac519028STakashi Iwai static int patch_ad1986(struct snd_ac97 * ac97)
251267e9f4b6SRandy Cushman {
251367e9f4b6SRandy Cushman 	patch_ad1881(ac97);
251467e9f4b6SRandy Cushman 	ac97->build_ops = &patch_ad1986_build_ops;
251567e9f4b6SRandy Cushman 	ac97->flags |= AC97_STEREO_MUTES;
251667e9f4b6SRandy Cushman 
251767e9f4b6SRandy Cushman 	/* update current jack configuration */
251867e9f4b6SRandy Cushman 	ad1986_update_jacks(ac97);
251967e9f4b6SRandy Cushman 
252067e9f4b6SRandy Cushman 	return 0;
252167e9f4b6SRandy Cushman }
252267e9f4b6SRandy Cushman 
25238f4f4ef6STakashi Iwai /*
25248f4f4ef6STakashi Iwai  * realtek ALC203: use mono-out for pin 37
25258f4f4ef6STakashi Iwai  */
patch_alc203(struct snd_ac97 * ac97)25268f4f4ef6STakashi Iwai static int patch_alc203(struct snd_ac97 *ac97)
25278f4f4ef6STakashi Iwai {
25288f4f4ef6STakashi Iwai 	snd_ac97_update_bits(ac97, 0x7a, 0x400, 0x400);
25298f4f4ef6STakashi Iwai 	return 0;
25308f4f4ef6STakashi Iwai }
253167e9f4b6SRandy Cushman 
25321da177e4SLinus Torvalds /*
25331da177e4SLinus Torvalds  * realtek ALC65x/850 codecs
25341da177e4SLinus Torvalds  */
alc650_update_jacks(struct snd_ac97 * ac97)2535ee42381eSTakashi Iwai static void alc650_update_jacks(struct snd_ac97 *ac97)
25361da177e4SLinus Torvalds {
2537eb8caf30STakashi Iwai 	int shared;
25381da177e4SLinus Torvalds 
2539831466f4SRandy Cushman 	/* shared Line-In / Surround Out */
2540831466f4SRandy Cushman 	shared = is_shared_surrout(ac97);
2541eb8caf30STakashi Iwai 	snd_ac97_update_bits(ac97, AC97_ALC650_MULTICH, 1 << 9,
2542eb8caf30STakashi Iwai 			     shared ? (1 << 9) : 0);
2543831466f4SRandy Cushman 	/* update shared Mic In / Center/LFE Out */
2544831466f4SRandy Cushman 	shared = is_shared_clfeout(ac97);
25451da177e4SLinus Torvalds 	/* disable/enable vref */
25461da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_ALC650_CLOCK, 1 << 12,
2547eb8caf30STakashi Iwai 			     shared ? (1 << 12) : 0);
25481da177e4SLinus Torvalds 	/* turn on/off center-on-mic */
25491da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_ALC650_MULTICH, 1 << 10,
2550eb8caf30STakashi Iwai 			     shared ? (1 << 10) : 0);
25511da177e4SLinus Torvalds 	/* GPIO0 high for mic */
25521da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_ALC650_GPIO_STATUS, 0x100,
2553eb8caf30STakashi Iwai 			     shared ? 0 : 0x100);
25541da177e4SLinus Torvalds }
25551da177e4SLinus Torvalds 
alc650_swap_surround_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)2556833a493bSTakashi Iwai static int alc650_swap_surround_put(struct snd_kcontrol *kcontrol,
2557833a493bSTakashi Iwai 				    struct snd_ctl_elem_value *ucontrol)
2558833a493bSTakashi Iwai {
2559833a493bSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
2560833a493bSTakashi Iwai 	struct snd_pcm_chmap *map = ac97->chmaps[SNDRV_PCM_STREAM_PLAYBACK];
2561833a493bSTakashi Iwai 
2562833a493bSTakashi Iwai 	if (map) {
2563833a493bSTakashi Iwai 		if (ucontrol->value.integer.value[0])
2564833a493bSTakashi Iwai 			map->chmap = snd_pcm_std_chmaps;
2565833a493bSTakashi Iwai 		else
2566833a493bSTakashi Iwai 			map->chmap = snd_pcm_alt_chmaps;
2567833a493bSTakashi Iwai 	}
2568833a493bSTakashi Iwai 	return snd_ac97_put_volsw(kcontrol, ucontrol);
2569833a493bSTakashi Iwai }
2570833a493bSTakashi Iwai 
2571ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_controls_alc650[] = {
25721da177e4SLinus Torvalds 	AC97_SINGLE("Duplicate Front", AC97_ALC650_MULTICH, 0, 1, 0),
25731da177e4SLinus Torvalds 	AC97_SINGLE("Surround Down Mix", AC97_ALC650_MULTICH, 1, 1, 0),
25741da177e4SLinus Torvalds 	AC97_SINGLE("Center/LFE Down Mix", AC97_ALC650_MULTICH, 2, 1, 0),
25751da177e4SLinus Torvalds 	AC97_SINGLE("Exchange Center/LFE", AC97_ALC650_MULTICH, 3, 1, 0),
25761da177e4SLinus Torvalds 	/* 4: Analog Input To Surround */
25771da177e4SLinus Torvalds 	/* 5: Analog Input To Center/LFE */
25781da177e4SLinus Torvalds 	/* 6: Independent Master Volume Right */
25791da177e4SLinus Torvalds 	/* 7: Independent Master Volume Left */
25801da177e4SLinus Torvalds 	/* 8: reserved */
2581eb8caf30STakashi Iwai 	/* 9: Line-In/Surround share */
2582eb8caf30STakashi Iwai 	/* 10: Mic/CLFE share */
25831da177e4SLinus Torvalds 	/* 11-13: in IEC958 controls */
2584833a493bSTakashi Iwai 	{
2585833a493bSTakashi Iwai 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2586833a493bSTakashi Iwai 		.name = "Swap Surround Slot",
2587833a493bSTakashi Iwai 		.info = snd_ac97_info_volsw,
2588833a493bSTakashi Iwai 		.get = snd_ac97_get_volsw,
2589833a493bSTakashi Iwai 		.put = alc650_swap_surround_put,
2590833a493bSTakashi Iwai 		.private_value =  AC97_SINGLE_VALUE(AC97_ALC650_MULTICH, 14, 1, 0),
2591833a493bSTakashi Iwai 	},
25921da177e4SLinus Torvalds #if 0 /* always set in patch_alc650 */
25931da177e4SLinus Torvalds 	AC97_SINGLE("IEC958 Input Clock Enable", AC97_ALC650_CLOCK, 0, 1, 0),
25941da177e4SLinus Torvalds 	AC97_SINGLE("IEC958 Input Pin Enable", AC97_ALC650_CLOCK, 1, 1, 0),
25951da177e4SLinus Torvalds 	AC97_SINGLE("Surround DAC Switch", AC97_ALC650_SURR_DAC_VOL, 15, 1, 1),
25961da177e4SLinus Torvalds 	AC97_DOUBLE("Surround DAC Volume", AC97_ALC650_SURR_DAC_VOL, 8, 0, 31, 1),
25971da177e4SLinus Torvalds 	AC97_SINGLE("Center/LFE DAC Switch", AC97_ALC650_LFE_DAC_VOL, 15, 1, 1),
25981da177e4SLinus Torvalds 	AC97_DOUBLE("Center/LFE DAC Volume", AC97_ALC650_LFE_DAC_VOL, 8, 0, 31, 1),
25991da177e4SLinus Torvalds #endif
2600eb8caf30STakashi Iwai 	AC97_SURROUND_JACK_MODE_CTL,
2601eb8caf30STakashi Iwai 	AC97_CHANNEL_MODE_CTL,
26021da177e4SLinus Torvalds };
26031da177e4SLinus Torvalds 
2604ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_spdif_controls_alc650[] = {
260510e8d78aSClemens Ladisch         AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH), AC97_ALC650_MULTICH, 11, 1, 0),
26061da177e4SLinus Torvalds         AC97_SINGLE("Analog to IEC958 Output", AC97_ALC650_MULTICH, 12, 1, 0),
26071da177e4SLinus Torvalds 	/* disable this controls since it doesn't work as expected */
26081da177e4SLinus Torvalds 	/* AC97_SINGLE("IEC958 Input Monitor", AC97_ALC650_MULTICH, 13, 1, 0), */
26091da177e4SLinus Torvalds };
26101da177e4SLinus Torvalds 
26110cb29ea0STakashi Iwai static const DECLARE_TLV_DB_SCALE(db_scale_5bit_3db_max, -4350, 150, 0);
26122f3482fbSTakashi Iwai 
patch_alc650_specific(struct snd_ac97 * ac97)2613ee42381eSTakashi Iwai static int patch_alc650_specific(struct snd_ac97 * ac97)
26141da177e4SLinus Torvalds {
26151da177e4SLinus Torvalds 	int err;
26161da177e4SLinus Torvalds 
2617e66fd362STakashi Iwai 	err = patch_build_controls(ac97, snd_ac97_controls_alc650, ARRAY_SIZE(snd_ac97_controls_alc650));
2618e66fd362STakashi Iwai 	if (err < 0)
26191da177e4SLinus Torvalds 		return err;
26201da177e4SLinus Torvalds 	if (ac97->ext_id & AC97_EI_SPDIF) {
2621e66fd362STakashi Iwai 		err = patch_build_controls(ac97, snd_ac97_spdif_controls_alc650, ARRAY_SIZE(snd_ac97_spdif_controls_alc650));
2622e66fd362STakashi Iwai 		if (err < 0)
26231da177e4SLinus Torvalds 			return err;
26241da177e4SLinus Torvalds 	}
26252f3482fbSTakashi Iwai 	if (ac97->id != AC97_ID_ALC650F)
26262f3482fbSTakashi Iwai 		reset_tlv(ac97, "Master Playback Volume",
26272f3482fbSTakashi Iwai 			  db_scale_5bit_3db_max);
26281da177e4SLinus Torvalds 	return 0;
26291da177e4SLinus Torvalds }
26301da177e4SLinus Torvalds 
26313e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_alc650_ops = {
2632eb8caf30STakashi Iwai 	.build_specific	= patch_alc650_specific,
2633eb8caf30STakashi Iwai 	.update_jacks = alc650_update_jacks
26341da177e4SLinus Torvalds };
26351da177e4SLinus Torvalds 
patch_alc650(struct snd_ac97 * ac97)2636ac519028STakashi Iwai static int patch_alc650(struct snd_ac97 * ac97)
26371da177e4SLinus Torvalds {
26381da177e4SLinus Torvalds 	unsigned short val;
26391da177e4SLinus Torvalds 
26401da177e4SLinus Torvalds 	ac97->build_ops = &patch_alc650_ops;
26411da177e4SLinus Torvalds 
26421da177e4SLinus Torvalds 	/* determine the revision */
26431da177e4SLinus Torvalds 	val = snd_ac97_read(ac97, AC97_ALC650_REVISION) & 0x3f;
26441da177e4SLinus Torvalds 	if (val < 3)
26451da177e4SLinus Torvalds 		ac97->id = 0x414c4720;          /* Old version */
26461da177e4SLinus Torvalds 	else if (val < 0x10)
26471da177e4SLinus Torvalds 		ac97->id = 0x414c4721;          /* D version */
26481da177e4SLinus Torvalds 	else if (val < 0x20)
26491da177e4SLinus Torvalds 		ac97->id = 0x414c4722;          /* E version */
26501da177e4SLinus Torvalds 	else if (val < 0x30)
26511da177e4SLinus Torvalds 		ac97->id = 0x414c4723;          /* F version */
26521da177e4SLinus Torvalds 
26531da177e4SLinus Torvalds 	/* revision E or F */
26541da177e4SLinus Torvalds 	/* FIXME: what about revision D ? */
26551da177e4SLinus Torvalds 	ac97->spec.dev_flags = (ac97->id == 0x414c4722 ||
26561da177e4SLinus Torvalds 				ac97->id == 0x414c4723);
26571da177e4SLinus Torvalds 
26581da177e4SLinus Torvalds 	/* enable AC97_ALC650_GPIO_SETUP, AC97_ALC650_CLOCK for R/W */
26591da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_ALC650_GPIO_STATUS,
26601da177e4SLinus Torvalds 		snd_ac97_read(ac97, AC97_ALC650_GPIO_STATUS) | 0x8000);
26611da177e4SLinus Torvalds 
26621da177e4SLinus Torvalds 	/* Enable SPDIF-IN only on Rev.E and above */
26631da177e4SLinus Torvalds 	val = snd_ac97_read(ac97, AC97_ALC650_CLOCK);
26641da177e4SLinus Torvalds 	/* SPDIF IN with pin 47 */
2665eed65649STakashi Iwai 	if (ac97->spec.dev_flags &&
2666eed65649STakashi Iwai 	    /* ASUS A6KM requires EAPD */
2667eed65649STakashi Iwai 	    ! (ac97->subsystem_vendor == 0x1043 &&
2668eed65649STakashi Iwai 	       ac97->subsystem_device == 0x1103))
26691da177e4SLinus Torvalds 		val |= 0x03; /* enable */
26701da177e4SLinus Torvalds 	else
26711da177e4SLinus Torvalds 		val &= ~0x03; /* disable */
26721da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_ALC650_CLOCK, val);
26731da177e4SLinus Torvalds 
26741da177e4SLinus Torvalds 	/* set default: slot 3,4,7,8,6,9
26751da177e4SLinus Torvalds 	   spdif-in monitor off, analog-spdif off, spdif-in off
26761da177e4SLinus Torvalds 	   center on mic off, surround on line-in off
26771da177e4SLinus Torvalds 	   downmix off, duplicate front off
26781da177e4SLinus Torvalds 	*/
26791da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_ALC650_MULTICH, 0);
26801da177e4SLinus Torvalds 
26811da177e4SLinus Torvalds 	/* set GPIO0 for mic bias */
26821da177e4SLinus Torvalds 	/* GPIO0 pin output, no interrupt, high */
26831da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_ALC650_GPIO_SETUP,
26841da177e4SLinus Torvalds 			     snd_ac97_read(ac97, AC97_ALC650_GPIO_SETUP) | 0x01);
26851da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_ALC650_GPIO_STATUS,
26861da177e4SLinus Torvalds 			     (snd_ac97_read(ac97, AC97_ALC650_GPIO_STATUS) | 0x100) & ~0x10);
26871da177e4SLinus Torvalds 
26881da177e4SLinus Torvalds 	/* full DAC volume */
26891da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_ALC650_SURR_DAC_VOL, 0x0808);
26901da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_ALC650_LFE_DAC_VOL, 0x0808);
26911da177e4SLinus Torvalds 	return 0;
26921da177e4SLinus Torvalds }
26931da177e4SLinus Torvalds 
alc655_update_jacks(struct snd_ac97 * ac97)2694ee42381eSTakashi Iwai static void alc655_update_jacks(struct snd_ac97 *ac97)
26951da177e4SLinus Torvalds {
2696eb8caf30STakashi Iwai 	int shared;
26971da177e4SLinus Torvalds 
2698831466f4SRandy Cushman 	/* shared Line-In / Surround Out */
2699831466f4SRandy Cushman 	shared = is_shared_surrout(ac97);
2700eb8caf30STakashi Iwai 	ac97_update_bits_page(ac97, AC97_ALC650_MULTICH, 1 << 9,
2701eb8caf30STakashi Iwai 			      shared ? (1 << 9) : 0, 0);
2702831466f4SRandy Cushman 	/* update shared Mic In / Center/LFE Out */
2703831466f4SRandy Cushman 	shared = is_shared_clfeout(ac97);
27041da177e4SLinus Torvalds 	/* misc control; vrefout disable */
27051da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_ALC650_CLOCK, 1 << 12,
2706eb8caf30STakashi Iwai 			     shared ? (1 << 12) : 0);
2707eb8caf30STakashi Iwai 	ac97_update_bits_page(ac97, AC97_ALC650_MULTICH, 1 << 10,
2708eb8caf30STakashi Iwai 			      shared ? (1 << 10) : 0, 0);
27091da177e4SLinus Torvalds }
27101da177e4SLinus Torvalds 
2711ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_controls_alc655[] = {
27121da177e4SLinus Torvalds 	AC97_PAGE_SINGLE("Duplicate Front", AC97_ALC650_MULTICH, 0, 1, 0, 0),
2713eb8caf30STakashi Iwai 	AC97_SURROUND_JACK_MODE_CTL,
2714eb8caf30STakashi Iwai 	AC97_CHANNEL_MODE_CTL,
27151da177e4SLinus Torvalds };
27161da177e4SLinus Torvalds 
alc655_iec958_route_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)2717ee42381eSTakashi Iwai static int alc655_iec958_route_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
27181da177e4SLinus Torvalds {
27193b7a00dcSTakashi Iwai 	static const char * const texts_655[3] = {
27203b7a00dcSTakashi Iwai 		"PCM", "Analog In", "IEC958 In"
27213b7a00dcSTakashi Iwai 	};
27223b7a00dcSTakashi Iwai 	static const char * const texts_658[4] = {
27233b7a00dcSTakashi Iwai 		"PCM", "Analog1 In", "Analog2 In", "IEC958 In"
27243b7a00dcSTakashi Iwai 	};
2725ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
27261da177e4SLinus Torvalds 
27273b7a00dcSTakashi Iwai 	if (ac97->spec.dev_flags)
27283b7a00dcSTakashi Iwai 		return snd_ctl_enum_info(uinfo, 1, 4, texts_658);
27293b7a00dcSTakashi Iwai 	else
27303b7a00dcSTakashi Iwai 		return snd_ctl_enum_info(uinfo, 1, 3, texts_655);
27311da177e4SLinus Torvalds }
27321da177e4SLinus Torvalds 
alc655_iec958_route_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)2733ee42381eSTakashi Iwai static int alc655_iec958_route_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
27341da177e4SLinus Torvalds {
2735ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
27361da177e4SLinus Torvalds 	unsigned short val;
27371da177e4SLinus Torvalds 
27381da177e4SLinus Torvalds 	val = ac97->regs[AC97_ALC650_MULTICH];
27391da177e4SLinus Torvalds 	val = (val >> 12) & 3;
27401da177e4SLinus Torvalds 	if (ac97->spec.dev_flags && val == 3)
27411da177e4SLinus Torvalds 		val = 0;
27421da177e4SLinus Torvalds 	ucontrol->value.enumerated.item[0] = val;
27431da177e4SLinus Torvalds 	return 0;
27441da177e4SLinus Torvalds }
27451da177e4SLinus Torvalds 
alc655_iec958_route_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)2746ee42381eSTakashi Iwai static int alc655_iec958_route_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
27471da177e4SLinus Torvalds {
2748ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
27491da177e4SLinus Torvalds 
27501da177e4SLinus Torvalds 	return ac97_update_bits_page(ac97, AC97_ALC650_MULTICH, 3 << 12,
27511da177e4SLinus Torvalds 				     (unsigned short)ucontrol->value.enumerated.item[0] << 12,
27521da177e4SLinus Torvalds 				     0);
27531da177e4SLinus Torvalds }
27541da177e4SLinus Torvalds 
2755ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_spdif_controls_alc655[] = {
275610e8d78aSClemens Ladisch         AC97_PAGE_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH), AC97_ALC650_MULTICH, 11, 1, 0, 0),
27571da177e4SLinus Torvalds 	/* disable this controls since it doesn't work as expected */
27581da177e4SLinus Torvalds         /* AC97_PAGE_SINGLE("IEC958 Input Monitor", AC97_ALC650_MULTICH, 14, 1, 0, 0), */
27591da177e4SLinus Torvalds 	{
27601da177e4SLinus Torvalds 		.iface  = SNDRV_CTL_ELEM_IFACE_MIXER,
2761031c95d4STakashi Iwai 		.name   = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
27621da177e4SLinus Torvalds 		.info   = alc655_iec958_route_info,
27631da177e4SLinus Torvalds 		.get    = alc655_iec958_route_get,
27641da177e4SLinus Torvalds 		.put    = alc655_iec958_route_put,
27651da177e4SLinus Torvalds 	},
27661da177e4SLinus Torvalds };
27671da177e4SLinus Torvalds 
patch_alc655_specific(struct snd_ac97 * ac97)2768ee42381eSTakashi Iwai static int patch_alc655_specific(struct snd_ac97 * ac97)
27691da177e4SLinus Torvalds {
27701da177e4SLinus Torvalds 	int err;
27711da177e4SLinus Torvalds 
2772e66fd362STakashi Iwai 	err = patch_build_controls(ac97, snd_ac97_controls_alc655, ARRAY_SIZE(snd_ac97_controls_alc655));
2773e66fd362STakashi Iwai 	if (err < 0)
27741da177e4SLinus Torvalds 		return err;
27751da177e4SLinus Torvalds 	if (ac97->ext_id & AC97_EI_SPDIF) {
2776e66fd362STakashi Iwai 		err = patch_build_controls(ac97, snd_ac97_spdif_controls_alc655, ARRAY_SIZE(snd_ac97_spdif_controls_alc655));
2777e66fd362STakashi Iwai 		if (err < 0)
27781da177e4SLinus Torvalds 			return err;
27791da177e4SLinus Torvalds 	}
27801da177e4SLinus Torvalds 	return 0;
27811da177e4SLinus Torvalds }
27821da177e4SLinus Torvalds 
27833e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_alc655_ops = {
2784eb8caf30STakashi Iwai 	.build_specific	= patch_alc655_specific,
2785eb8caf30STakashi Iwai 	.update_jacks = alc655_update_jacks
27861da177e4SLinus Torvalds };
27871da177e4SLinus Torvalds 
patch_alc655(struct snd_ac97 * ac97)2788ac519028STakashi Iwai static int patch_alc655(struct snd_ac97 * ac97)
27891da177e4SLinus Torvalds {
27901da177e4SLinus Torvalds 	unsigned int val;
27911da177e4SLinus Torvalds 
2792a5022b0dSTakashi Iwai 	if (ac97->id == AC97_ID_ALC658) {
2793a5022b0dSTakashi Iwai 		ac97->spec.dev_flags = 1; /* ALC658 */
2794a5022b0dSTakashi Iwai 		if ((snd_ac97_read(ac97, AC97_ALC650_REVISION) & 0x3f) == 2) {
2795a5022b0dSTakashi Iwai 			ac97->id = AC97_ID_ALC658D;
2796a5022b0dSTakashi Iwai 			ac97->spec.dev_flags = 2;
2797a5022b0dSTakashi Iwai 		}
2798a5022b0dSTakashi Iwai 	}
27991da177e4SLinus Torvalds 
28001da177e4SLinus Torvalds 	ac97->build_ops = &patch_alc655_ops;
28011da177e4SLinus Torvalds 
28021da177e4SLinus Torvalds 	/* assume only page 0 for writing cache */
28031da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_INT_PAGING, AC97_PAGE_MASK, AC97_PAGE_VENDOR);
28041da177e4SLinus Torvalds 
28051da177e4SLinus Torvalds 	/* adjust default values */
28061da177e4SLinus Torvalds 	val = snd_ac97_read(ac97, 0x7a); /* misc control */
2807a5022b0dSTakashi Iwai 	if (ac97->spec.dev_flags) /* ALC658 */
28081da177e4SLinus Torvalds 		val &= ~(1 << 1); /* Pin 47 is spdif input pin */
2809ee71508eSTakashi Iwai 	else { /* ALC655 */
2810ee71508eSTakashi Iwai 		if (ac97->subsystem_vendor == 0x1462 &&
2811d244bf89SMagnus Sandin 		    (ac97->subsystem_device == 0x0131 || /* MSI S270 laptop */
2812e7d24f0bSJaroslav Kysela 		     ac97->subsystem_device == 0x0161 || /* LG K1 Express */
2813cbcc2c4cSJerome Demange 		     ac97->subsystem_device == 0x0351 || /* MSI L725 laptop */
2814592a82e8STakashi Iwai 		     ac97->subsystem_device == 0x0471 || /* MSI L720 laptop */
2815cbcc2c4cSJerome Demange 		     ac97->subsystem_device == 0x0061))  /* MSI S250 laptop */
2816ee71508eSTakashi Iwai 			val &= ~(1 << 1); /* Pin 47 is EAPD (for internal speaker) */
2817ee71508eSTakashi Iwai 		else
28181da177e4SLinus Torvalds 			val |= (1 << 1); /* Pin 47 is spdif input pin */
2819c872e8caSTakashi Iwai 		/* this seems missing on some hardwares */
2820c872e8caSTakashi Iwai 		ac97->ext_id |= AC97_EI_SPDIF;
2821ee71508eSTakashi Iwai 	}
28221da177e4SLinus Torvalds 	val &= ~(1 << 12); /* vref enable */
28231da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, 0x7a, val);
28241da177e4SLinus Torvalds 	/* set default: spdif-in enabled,
28251da177e4SLinus Torvalds 	   spdif-in monitor off, spdif-in PCM off
28261da177e4SLinus Torvalds 	   center on mic off, surround on line-in off
28271da177e4SLinus Torvalds 	   duplicate front off
28281da177e4SLinus Torvalds 	*/
28291da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_ALC650_MULTICH, 1<<15);
28301da177e4SLinus Torvalds 
28311da177e4SLinus Torvalds 	/* full DAC volume */
28321da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_ALC650_SURR_DAC_VOL, 0x0808);
28331da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_ALC650_LFE_DAC_VOL, 0x0808);
2834a5022b0dSTakashi Iwai 
2835a5022b0dSTakashi Iwai 	/* update undocumented bit... */
2836a5022b0dSTakashi Iwai 	if (ac97->id == AC97_ID_ALC658D)
2837a5022b0dSTakashi Iwai 		snd_ac97_update_bits(ac97, 0x74, 0x0800, 0x0800);
2838a5022b0dSTakashi Iwai 
28391da177e4SLinus Torvalds 	return 0;
28401da177e4SLinus Torvalds }
28411da177e4SLinus Torvalds 
28421da177e4SLinus Torvalds 
28431da177e4SLinus Torvalds #define AC97_ALC850_JACK_SELECT	0x76
28441da177e4SLinus Torvalds #define AC97_ALC850_MISC1	0x7a
28454235a317STakashi Iwai #define AC97_ALC850_MULTICH    0x6a
28461da177e4SLinus Torvalds 
alc850_update_jacks(struct snd_ac97 * ac97)2847ee42381eSTakashi Iwai static void alc850_update_jacks(struct snd_ac97 *ac97)
28481da177e4SLinus Torvalds {
2849eb8caf30STakashi Iwai 	int shared;
28504235a317STakashi Iwai 	int aux_is_back_surround;
28511da177e4SLinus Torvalds 
2852831466f4SRandy Cushman 	/* shared Line-In / Surround Out */
2853831466f4SRandy Cushman 	shared = is_shared_surrout(ac97);
28541da177e4SLinus Torvalds 	/* SURR 1kOhm (bit4), Amp (bit5) */
28551da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_ALC850_MISC1, (1<<4)|(1<<5),
2856eb8caf30STakashi Iwai 			     shared ? (1<<5) : (1<<4));
28571da177e4SLinus Torvalds 	/* LINE-IN = 0, SURROUND = 2 */
2858eb8caf30STakashi Iwai 	snd_ac97_update_bits(ac97, AC97_ALC850_JACK_SELECT, 7 << 12,
2859eb8caf30STakashi Iwai 			     shared ? (2<<12) : (0<<12));
2860831466f4SRandy Cushman 	/* update shared Mic In / Center/LFE Out */
2861831466f4SRandy Cushman 	shared = is_shared_clfeout(ac97);
28621da177e4SLinus Torvalds 	/* Vref disable (bit12), 1kOhm (bit13) */
28631da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_ALC850_MISC1, (1<<12)|(1<<13),
2864eb8caf30STakashi Iwai 			     shared ? (1<<12) : (1<<13));
2865da79e44dSTakashi Iwai 	/* MIC-IN = 1, CENTER-LFE = 5 */
2866eb8caf30STakashi Iwai 	snd_ac97_update_bits(ac97, AC97_ALC850_JACK_SELECT, 7 << 4,
2867da79e44dSTakashi Iwai 			     shared ? (5<<4) : (1<<4));
28684235a317STakashi Iwai 
28694235a317STakashi Iwai 	aux_is_back_surround = alc850_is_aux_back_surround(ac97);
28704235a317STakashi Iwai 	/* Aux is Back Surround */
28714235a317STakashi Iwai 	snd_ac97_update_bits(ac97, AC97_ALC850_MULTICH, 1 << 10,
28724235a317STakashi Iwai 				 aux_is_back_surround ? (1<<10) : (0<<10));
28731da177e4SLinus Torvalds }
28741da177e4SLinus Torvalds 
2875ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_controls_alc850[] = {
28761da177e4SLinus Torvalds 	AC97_PAGE_SINGLE("Duplicate Front", AC97_ALC650_MULTICH, 0, 1, 0, 0),
287767e1b51eSSergey Vlasov 	AC97_SINGLE("Mic Front Input Switch", AC97_ALC850_JACK_SELECT, 15, 1, 1),
2878eb8caf30STakashi Iwai 	AC97_SURROUND_JACK_MODE_CTL,
28794235a317STakashi Iwai 	AC97_CHANNEL_MODE_8CH_CTL,
28801da177e4SLinus Torvalds };
28811da177e4SLinus Torvalds 
patch_alc850_specific(struct snd_ac97 * ac97)2882ee42381eSTakashi Iwai static int patch_alc850_specific(struct snd_ac97 *ac97)
28831da177e4SLinus Torvalds {
28841da177e4SLinus Torvalds 	int err;
28851da177e4SLinus Torvalds 
2886e66fd362STakashi Iwai 	err = patch_build_controls(ac97, snd_ac97_controls_alc850, ARRAY_SIZE(snd_ac97_controls_alc850));
2887e66fd362STakashi Iwai 	if (err < 0)
28881da177e4SLinus Torvalds 		return err;
28891da177e4SLinus Torvalds 	if (ac97->ext_id & AC97_EI_SPDIF) {
2890e66fd362STakashi Iwai 		err = patch_build_controls(ac97, snd_ac97_spdif_controls_alc655, ARRAY_SIZE(snd_ac97_spdif_controls_alc655));
2891e66fd362STakashi Iwai 		if (err < 0)
28921da177e4SLinus Torvalds 			return err;
28931da177e4SLinus Torvalds 	}
28941da177e4SLinus Torvalds 	return 0;
28951da177e4SLinus Torvalds }
28961da177e4SLinus Torvalds 
28973e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_alc850_ops = {
2898eb8caf30STakashi Iwai 	.build_specific	= patch_alc850_specific,
2899eb8caf30STakashi Iwai 	.update_jacks = alc850_update_jacks
29001da177e4SLinus Torvalds };
29011da177e4SLinus Torvalds 
patch_alc850(struct snd_ac97 * ac97)2902ac519028STakashi Iwai static int patch_alc850(struct snd_ac97 *ac97)
29031da177e4SLinus Torvalds {
29041da177e4SLinus Torvalds 	ac97->build_ops = &patch_alc850_ops;
29051da177e4SLinus Torvalds 
29061da177e4SLinus Torvalds 	ac97->spec.dev_flags = 0; /* for IEC958 playback route - ALC655 compatible */
29074235a317STakashi Iwai 	ac97->flags |= AC97_HAS_8CH;
29081da177e4SLinus Torvalds 
29091da177e4SLinus Torvalds 	/* assume only page 0 for writing cache */
29101da177e4SLinus Torvalds 	snd_ac97_update_bits(ac97, AC97_INT_PAGING, AC97_PAGE_MASK, AC97_PAGE_VENDOR);
29111da177e4SLinus Torvalds 
29121da177e4SLinus Torvalds 	/* adjust default values */
29131da177e4SLinus Torvalds 	/* set default: spdif-in enabled,
29141da177e4SLinus Torvalds 	   spdif-in monitor off, spdif-in PCM off
29151da177e4SLinus Torvalds 	   center on mic off, surround on line-in off
29161da177e4SLinus Torvalds 	   duplicate front off
29174235a317STakashi Iwai 	   NB default bit 10=0 = Aux is Capture, not Back Surround
29181da177e4SLinus Torvalds 	*/
29191da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_ALC650_MULTICH, 1<<15);
29201da177e4SLinus Torvalds 	/* SURR_OUT: on, Surr 1kOhm: on, Surr Amp: off, Front 1kOhm: off
29211da177e4SLinus Torvalds 	 * Front Amp: on, Vref: enable, Center 1kOhm: on, Mix: on
29221da177e4SLinus Torvalds 	 */
29231da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, 0x7a, (1<<1)|(1<<4)|(0<<5)|(1<<6)|
29241da177e4SLinus Torvalds 			     (1<<7)|(0<<12)|(1<<13)|(0<<14));
29251da177e4SLinus Torvalds 	/* detection UIO2,3: all path floating, UIO3: MIC, Vref2: disable,
29261da177e4SLinus Torvalds 	 * UIO1: FRONT, Vref3: disable, UIO3: LINE, Front-Mic: mute
29271da177e4SLinus Torvalds 	 */
29281da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, 0x76, (0<<0)|(0<<2)|(1<<4)|(1<<7)|(2<<8)|
29291da177e4SLinus Torvalds 			     (1<<11)|(0<<12)|(1<<15));
29301da177e4SLinus Torvalds 
29311da177e4SLinus Torvalds 	/* full DAC volume */
29321da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_ALC650_SURR_DAC_VOL, 0x0808);
29331da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_ALC650_LFE_DAC_VOL, 0x0808);
29341da177e4SLinus Torvalds 	return 0;
29351da177e4SLinus Torvalds }
29361da177e4SLinus Torvalds 
patch_aztech_azf3328_specific(struct snd_ac97 * ac97)29376ba9256cSAndreas Mohr static int patch_aztech_azf3328_specific(struct snd_ac97 *ac97)
29386ba9256cSAndreas Mohr {
29396ba9256cSAndreas Mohr 	struct snd_kcontrol *kctl_3d_center =
29406ba9256cSAndreas Mohr 		snd_ac97_find_mixer_ctl(ac97, "3D Control - Center");
29416ba9256cSAndreas Mohr 	struct snd_kcontrol *kctl_3d_depth =
29426ba9256cSAndreas Mohr 		snd_ac97_find_mixer_ctl(ac97, "3D Control - Depth");
29436ba9256cSAndreas Mohr 
29446ba9256cSAndreas Mohr 	/*
29456ba9256cSAndreas Mohr 	 * 3D register is different from AC97 standard layout
29466ba9256cSAndreas Mohr 	 * (also do some renaming, to resemble Windows driver naming)
29476ba9256cSAndreas Mohr 	 */
29486ba9256cSAndreas Mohr 	if (kctl_3d_center) {
29496ba9256cSAndreas Mohr 		kctl_3d_center->private_value =
29506ba9256cSAndreas Mohr 			AC97_SINGLE_VALUE(AC97_3D_CONTROL, 1, 0x07, 0);
29516ba9256cSAndreas Mohr 		snd_ac97_rename_vol_ctl(ac97,
29526ba9256cSAndreas Mohr 			"3D Control - Center", "3D Control - Width"
29536ba9256cSAndreas Mohr 		);
29546ba9256cSAndreas Mohr 	}
29556ba9256cSAndreas Mohr 	if (kctl_3d_depth)
29566ba9256cSAndreas Mohr 		kctl_3d_depth->private_value =
29576ba9256cSAndreas Mohr 			AC97_SINGLE_VALUE(AC97_3D_CONTROL, 8, 0x03, 0);
29586ba9256cSAndreas Mohr 
29596ba9256cSAndreas Mohr 	/* Aztech Windows driver calls the
29606ba9256cSAndreas Mohr 	   equivalent control "Modem Playback", thus rename it: */
29616ba9256cSAndreas Mohr 	snd_ac97_rename_vol_ctl(ac97,
29626ba9256cSAndreas Mohr 		"Master Mono Playback", "Modem Playback"
29636ba9256cSAndreas Mohr 	);
29646ba9256cSAndreas Mohr 	snd_ac97_rename_vol_ctl(ac97,
29656ba9256cSAndreas Mohr 		"Headphone Playback", "FM Synth Playback"
29666ba9256cSAndreas Mohr 	);
29676ba9256cSAndreas Mohr 
29686ba9256cSAndreas Mohr 	return 0;
29696ba9256cSAndreas Mohr }
29706ba9256cSAndreas Mohr 
29716ba9256cSAndreas Mohr static const struct snd_ac97_build_ops patch_aztech_azf3328_ops = {
29726ba9256cSAndreas Mohr 	.build_specific	= patch_aztech_azf3328_specific
29736ba9256cSAndreas Mohr };
29746ba9256cSAndreas Mohr 
patch_aztech_azf3328(struct snd_ac97 * ac97)29756ba9256cSAndreas Mohr static int patch_aztech_azf3328(struct snd_ac97 *ac97)
29766ba9256cSAndreas Mohr {
29776ba9256cSAndreas Mohr 	ac97->build_ops = &patch_aztech_azf3328_ops;
29786ba9256cSAndreas Mohr 	return 0;
29796ba9256cSAndreas Mohr }
29801da177e4SLinus Torvalds 
29811da177e4SLinus Torvalds /*
29821da177e4SLinus Torvalds  * C-Media CM97xx codecs
29831da177e4SLinus Torvalds  */
cm9738_update_jacks(struct snd_ac97 * ac97)2984ee42381eSTakashi Iwai static void cm9738_update_jacks(struct snd_ac97 *ac97)
2985eb8caf30STakashi Iwai {
2986831466f4SRandy Cushman 	/* shared Line-In / Surround Out */
2987eb8caf30STakashi Iwai 	snd_ac97_update_bits(ac97, AC97_CM9738_VENDOR_CTRL, 1 << 10,
2988831466f4SRandy Cushman 			     is_shared_surrout(ac97) ? (1 << 10) : 0);
2989eb8caf30STakashi Iwai }
2990eb8caf30STakashi Iwai 
2991ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_cm9738_controls[] = {
29921da177e4SLinus Torvalds 	AC97_SINGLE("Duplicate Front", AC97_CM9738_VENDOR_CTRL, 13, 1, 0),
2993eb8caf30STakashi Iwai 	AC97_SURROUND_JACK_MODE_CTL,
2994eb8caf30STakashi Iwai 	AC97_CHANNEL_MODE_4CH_CTL,
29951da177e4SLinus Torvalds };
29961da177e4SLinus Torvalds 
patch_cm9738_specific(struct snd_ac97 * ac97)2997ee42381eSTakashi Iwai static int patch_cm9738_specific(struct snd_ac97 * ac97)
29981da177e4SLinus Torvalds {
29991da177e4SLinus Torvalds 	return patch_build_controls(ac97, snd_ac97_cm9738_controls, ARRAY_SIZE(snd_ac97_cm9738_controls));
30001da177e4SLinus Torvalds }
30011da177e4SLinus Torvalds 
30023e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_cm9738_ops = {
3003eb8caf30STakashi Iwai 	.build_specific	= patch_cm9738_specific,
3004eb8caf30STakashi Iwai 	.update_jacks = cm9738_update_jacks
30051da177e4SLinus Torvalds };
30061da177e4SLinus Torvalds 
patch_cm9738(struct snd_ac97 * ac97)3007ac519028STakashi Iwai static int patch_cm9738(struct snd_ac97 * ac97)
30081da177e4SLinus Torvalds {
30091da177e4SLinus Torvalds 	ac97->build_ops = &patch_cm9738_ops;
30101da177e4SLinus Torvalds 	/* FIXME: can anyone confirm below? */
30111da177e4SLinus Torvalds 	/* CM9738 has no PCM volume although the register reacts */
30121da177e4SLinus Torvalds 	ac97->flags |= AC97_HAS_NO_PCM_VOL;
30131da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_PCM, 0x8000);
30141da177e4SLinus Torvalds 
30151da177e4SLinus Torvalds 	return 0;
30161da177e4SLinus Torvalds }
30171da177e4SLinus Torvalds 
snd_ac97_cmedia_spdif_playback_source_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)3018ee42381eSTakashi Iwai static int snd_ac97_cmedia_spdif_playback_source_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
30191da177e4SLinus Torvalds {
30203b7a00dcSTakashi Iwai 	static const char * const texts[] = { "Analog", "Digital" };
30211da177e4SLinus Torvalds 
30223b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 2, texts);
30231da177e4SLinus Torvalds }
30241da177e4SLinus Torvalds 
snd_ac97_cmedia_spdif_playback_source_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)3025ee42381eSTakashi Iwai static int snd_ac97_cmedia_spdif_playback_source_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
30261da177e4SLinus Torvalds {
3027ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
30281da177e4SLinus Torvalds 	unsigned short val;
30291da177e4SLinus Torvalds 
30301da177e4SLinus Torvalds 	val = ac97->regs[AC97_CM9739_SPDIF_CTRL];
30311da177e4SLinus Torvalds 	ucontrol->value.enumerated.item[0] = (val >> 1) & 0x01;
30321da177e4SLinus Torvalds 	return 0;
30331da177e4SLinus Torvalds }
30341da177e4SLinus Torvalds 
snd_ac97_cmedia_spdif_playback_source_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)3035ee42381eSTakashi Iwai static int snd_ac97_cmedia_spdif_playback_source_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
30361da177e4SLinus Torvalds {
3037ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
30381da177e4SLinus Torvalds 
30391da177e4SLinus Torvalds 	return snd_ac97_update_bits(ac97, AC97_CM9739_SPDIF_CTRL,
30401da177e4SLinus Torvalds 				    0x01 << 1,
30411da177e4SLinus Torvalds 				    (ucontrol->value.enumerated.item[0] & 0x01) << 1);
30421da177e4SLinus Torvalds }
30431da177e4SLinus Torvalds 
3044ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_cm9739_controls_spdif[] = {
30451da177e4SLinus Torvalds 	/* BIT 0: SPDI_EN - always true */
30461da177e4SLinus Torvalds 	{ /* BIT 1: SPDIFS */
30471da177e4SLinus Torvalds 		.iface	= SNDRV_CTL_ELEM_IFACE_MIXER,
30481da177e4SLinus Torvalds 		.name	= SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
30491da177e4SLinus Torvalds 		.info	= snd_ac97_cmedia_spdif_playback_source_info,
30501da177e4SLinus Torvalds 		.get	= snd_ac97_cmedia_spdif_playback_source_get,
30511da177e4SLinus Torvalds 		.put	= snd_ac97_cmedia_spdif_playback_source_put,
30521da177e4SLinus Torvalds 	},
30531da177e4SLinus Torvalds 	/* BIT 2: IG_SPIV */
30541da177e4SLinus Torvalds 	AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,NONE) "Valid Switch", AC97_CM9739_SPDIF_CTRL, 2, 1, 0),
30551da177e4SLinus Torvalds 	/* BIT 3: SPI2F */
30561da177e4SLinus Torvalds 	AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,NONE) "Monitor", AC97_CM9739_SPDIF_CTRL, 3, 1, 0),
30571da177e4SLinus Torvalds 	/* BIT 4: SPI2SDI */
30581da177e4SLinus Torvalds 	AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH), AC97_CM9739_SPDIF_CTRL, 4, 1, 0),
30591da177e4SLinus Torvalds 	/* BIT 8: SPD32 - 32bit SPDIF - not supported yet */
30601da177e4SLinus Torvalds };
30611da177e4SLinus Torvalds 
cm9739_update_jacks(struct snd_ac97 * ac97)3062ee42381eSTakashi Iwai static void cm9739_update_jacks(struct snd_ac97 *ac97)
30631da177e4SLinus Torvalds {
3064831466f4SRandy Cushman 	/* shared Line-In / Surround Out */
3065eb8caf30STakashi Iwai 	snd_ac97_update_bits(ac97, AC97_CM9739_MULTI_CHAN, 1 << 10,
3066831466f4SRandy Cushman 			     is_shared_surrout(ac97) ? (1 << 10) : 0);
3067831466f4SRandy Cushman 	/* shared Mic In / Center/LFE Out **/
3068eb8caf30STakashi Iwai 	snd_ac97_update_bits(ac97, AC97_CM9739_MULTI_CHAN, 0x3000,
3069831466f4SRandy Cushman 			     is_shared_clfeout(ac97) ? 0x1000 : 0x2000);
30701da177e4SLinus Torvalds }
30711da177e4SLinus Torvalds 
3072ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_cm9739_controls[] = {
3073eb8caf30STakashi Iwai 	AC97_SURROUND_JACK_MODE_CTL,
3074eb8caf30STakashi Iwai 	AC97_CHANNEL_MODE_CTL,
30751da177e4SLinus Torvalds };
30761da177e4SLinus Torvalds 
patch_cm9739_specific(struct snd_ac97 * ac97)3077ee42381eSTakashi Iwai static int patch_cm9739_specific(struct snd_ac97 * ac97)
30781da177e4SLinus Torvalds {
30791da177e4SLinus Torvalds 	return patch_build_controls(ac97, snd_ac97_cm9739_controls, ARRAY_SIZE(snd_ac97_cm9739_controls));
30801da177e4SLinus Torvalds }
30811da177e4SLinus Torvalds 
patch_cm9739_post_spdif(struct snd_ac97 * ac97)3082ee42381eSTakashi Iwai static int patch_cm9739_post_spdif(struct snd_ac97 * ac97)
30831da177e4SLinus Torvalds {
30841da177e4SLinus Torvalds 	return patch_build_controls(ac97, snd_ac97_cm9739_controls_spdif, ARRAY_SIZE(snd_ac97_cm9739_controls_spdif));
30851da177e4SLinus Torvalds }
30861da177e4SLinus Torvalds 
30873e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_cm9739_ops = {
30881da177e4SLinus Torvalds 	.build_specific	= patch_cm9739_specific,
3089eb8caf30STakashi Iwai 	.build_post_spdif = patch_cm9739_post_spdif,
3090eb8caf30STakashi Iwai 	.update_jacks = cm9739_update_jacks
30911da177e4SLinus Torvalds };
30921da177e4SLinus Torvalds 
patch_cm9739(struct snd_ac97 * ac97)3093ac519028STakashi Iwai static int patch_cm9739(struct snd_ac97 * ac97)
30941da177e4SLinus Torvalds {
30951da177e4SLinus Torvalds 	unsigned short val;
30961da177e4SLinus Torvalds 
30971da177e4SLinus Torvalds 	ac97->build_ops = &patch_cm9739_ops;
30981da177e4SLinus Torvalds 
30991da177e4SLinus Torvalds 	/* CM9739/A has no Master and PCM volume although the register reacts */
31001da177e4SLinus Torvalds 	ac97->flags |= AC97_HAS_NO_MASTER_VOL | AC97_HAS_NO_PCM_VOL;
31011da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_MASTER, 0x8000);
31021da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_PCM, 0x8000);
31031da177e4SLinus Torvalds 
31041da177e4SLinus Torvalds 	/* check spdif */
31051da177e4SLinus Torvalds 	val = snd_ac97_read(ac97, AC97_EXTENDED_STATUS);
31061da177e4SLinus Torvalds 	if (val & AC97_EA_SPCV) {
31071da177e4SLinus Torvalds 		/* enable spdif in */
31081da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_CM9739_SPDIF_CTRL,
31091da177e4SLinus Torvalds 				     snd_ac97_read(ac97, AC97_CM9739_SPDIF_CTRL) | 0x01);
31101da177e4SLinus Torvalds 		ac97->rates[AC97_RATES_SPDIF] = SNDRV_PCM_RATE_48000; /* 48k only */
31111da177e4SLinus Torvalds 	} else {
31121da177e4SLinus Torvalds 		ac97->ext_id &= ~AC97_EI_SPDIF; /* disable extended-id */
31131da177e4SLinus Torvalds 		ac97->rates[AC97_RATES_SPDIF] = 0;
31141da177e4SLinus Torvalds 	}
31151da177e4SLinus Torvalds 
31161da177e4SLinus Torvalds 	/* set-up multi channel */
31171da177e4SLinus Torvalds 	/* bit 14: 0 = SPDIF, 1 = EAPD */
31181da177e4SLinus Torvalds 	/* bit 13: enable internal vref output for mic */
311908a7e621SMasahiro Yamada 	/* bit 12: disable center/lfe (switchable) */
31201da177e4SLinus Torvalds 	/* bit 10: disable surround/line (switchable) */
31211da177e4SLinus Torvalds 	/* bit 9: mix 2 surround off */
31221da177e4SLinus Torvalds 	/* bit 4: undocumented; 0 mutes the CM9739A, which defaults to 1 */
31231da177e4SLinus Torvalds 	/* bit 3: undocumented; surround? */
31241da177e4SLinus Torvalds 	/* bit 0: dB */
31251da177e4SLinus Torvalds 	val = snd_ac97_read(ac97, AC97_CM9739_MULTI_CHAN) & (1 << 4);
31261da177e4SLinus Torvalds 	val |= (1 << 3);
31271da177e4SLinus Torvalds 	val |= (1 << 13);
31281da177e4SLinus Torvalds 	if (! (ac97->ext_id & AC97_EI_SPDIF))
31291da177e4SLinus Torvalds 		val |= (1 << 14);
31301da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_CM9739_MULTI_CHAN, val);
31311da177e4SLinus Torvalds 
31321da177e4SLinus Torvalds 	/* FIXME: set up GPIO */
31331da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, 0x70, 0x0100);
31341da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, 0x72, 0x0020);
31351da177e4SLinus Torvalds 	/* Special exception for ASUS W1000/CMI9739. It does not have an SPDIF in. */
31361da177e4SLinus Torvalds 	if (ac97->pci &&
31371da177e4SLinus Torvalds 	     ac97->subsystem_vendor == 0x1043 &&
31381da177e4SLinus Torvalds 	     ac97->subsystem_device == 0x1843) {
31391da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_CM9739_SPDIF_CTRL,
31401da177e4SLinus Torvalds 			snd_ac97_read(ac97, AC97_CM9739_SPDIF_CTRL) & ~0x01);
31411da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_CM9739_MULTI_CHAN,
31421da177e4SLinus Torvalds 			snd_ac97_read(ac97, AC97_CM9739_MULTI_CHAN) | (1 << 14));
31431da177e4SLinus Torvalds 	}
31441da177e4SLinus Torvalds 
31451da177e4SLinus Torvalds 	return 0;
31461da177e4SLinus Torvalds }
31471da177e4SLinus Torvalds 
31481da177e4SLinus Torvalds #define AC97_CM9761_MULTI_CHAN	0x64
31495f0dccf8STakashi Iwai #define AC97_CM9761_FUNC	0x66
31501da177e4SLinus Torvalds #define AC97_CM9761_SPDIF_CTRL	0x6c
31511da177e4SLinus Torvalds 
cm9761_update_jacks(struct snd_ac97 * ac97)3152ee42381eSTakashi Iwai static void cm9761_update_jacks(struct snd_ac97 *ac97)
31531da177e4SLinus Torvalds {
31544525c9f3STakashi Iwai 	/* FIXME: check the bits for each model
31554525c9f3STakashi Iwai 	 *        model 83 is confirmed to work
31564525c9f3STakashi Iwai 	 */
31571675bfc0STakashi Iwai 	static const unsigned short surr_on[3][2] = {
31584525c9f3STakashi Iwai 		{ 0x0008, 0x0000 }, /* 9761-78 & 82 */
31594525c9f3STakashi Iwai 		{ 0x0000, 0x0008 }, /* 9761-82 rev.B */
31604525c9f3STakashi Iwai 		{ 0x0000, 0x0008 }, /* 9761-83 */
31611da177e4SLinus Torvalds 	};
31621675bfc0STakashi Iwai 	static const unsigned short clfe_on[3][2] = {
31634525c9f3STakashi Iwai 		{ 0x0000, 0x1000 }, /* 9761-78 & 82 */
31644525c9f3STakashi Iwai 		{ 0x1000, 0x0000 }, /* 9761-82 rev.B */
31654525c9f3STakashi Iwai 		{ 0x0000, 0x1000 }, /* 9761-83 */
31661da177e4SLinus Torvalds 	};
31671675bfc0STakashi Iwai 	static const unsigned short surr_shared[3][2] = {
31684525c9f3STakashi Iwai 		{ 0x0000, 0x0400 }, /* 9761-78 & 82 */
31694525c9f3STakashi Iwai 		{ 0x0000, 0x0400 }, /* 9761-82 rev.B */
31704525c9f3STakashi Iwai 		{ 0x0000, 0x0400 }, /* 9761-83 */
31714525c9f3STakashi Iwai 	};
31721675bfc0STakashi Iwai 	static const unsigned short clfe_shared[3][2] = {
31734525c9f3STakashi Iwai 		{ 0x2000, 0x0880 }, /* 9761-78 & 82 */
31744525c9f3STakashi Iwai 		{ 0x0000, 0x2880 }, /* 9761-82 rev.B */
31754525c9f3STakashi Iwai 		{ 0x2000, 0x0800 }, /* 9761-83 */
31764525c9f3STakashi Iwai 	};
31774525c9f3STakashi Iwai 	unsigned short val = 0;
3178eb8caf30STakashi Iwai 
31794525c9f3STakashi Iwai 	val |= surr_on[ac97->spec.dev_flags][is_surround_on(ac97)];
31804525c9f3STakashi Iwai 	val |= clfe_on[ac97->spec.dev_flags][is_clfe_on(ac97)];
3181831466f4SRandy Cushman 	val |= surr_shared[ac97->spec.dev_flags][is_shared_surrout(ac97)];
3182831466f4SRandy Cushman 	val |= clfe_shared[ac97->spec.dev_flags][is_shared_clfeout(ac97)];
31834525c9f3STakashi Iwai 
31844525c9f3STakashi Iwai 	snd_ac97_update_bits(ac97, AC97_CM9761_MULTI_CHAN, 0x3c88, val);
31851da177e4SLinus Torvalds }
31861da177e4SLinus Torvalds 
3187ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_cm9761_controls[] = {
3188eb8caf30STakashi Iwai 	AC97_SURROUND_JACK_MODE_CTL,
3189eb8caf30STakashi Iwai 	AC97_CHANNEL_MODE_CTL,
31901da177e4SLinus Torvalds };
31911da177e4SLinus Torvalds 
cm9761_spdif_out_source_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)3192ee42381eSTakashi Iwai static int cm9761_spdif_out_source_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
31935f0dccf8STakashi Iwai {
31943b7a00dcSTakashi Iwai 	static const char * const texts[] = { "AC-Link", "ADC", "SPDIF-In" };
31955f0dccf8STakashi Iwai 
31963b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 3, texts);
31975f0dccf8STakashi Iwai }
31985f0dccf8STakashi Iwai 
cm9761_spdif_out_source_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)3199ee42381eSTakashi Iwai static int cm9761_spdif_out_source_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
32005f0dccf8STakashi Iwai {
3201ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
32025f0dccf8STakashi Iwai 
32035f0dccf8STakashi Iwai 	if (ac97->regs[AC97_CM9761_FUNC] & 0x1)
32045f0dccf8STakashi Iwai 		ucontrol->value.enumerated.item[0] = 2; /* SPDIF-loopback */
32055f0dccf8STakashi Iwai 	else if (ac97->regs[AC97_CM9761_SPDIF_CTRL] & 0x2)
32065f0dccf8STakashi Iwai 		ucontrol->value.enumerated.item[0] = 1; /* ADC loopback */
32075f0dccf8STakashi Iwai 	else
32085f0dccf8STakashi Iwai 		ucontrol->value.enumerated.item[0] = 0; /* AC-link */
32095f0dccf8STakashi Iwai 	return 0;
32105f0dccf8STakashi Iwai }
32115f0dccf8STakashi Iwai 
cm9761_spdif_out_source_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)3212ee42381eSTakashi Iwai static int cm9761_spdif_out_source_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
32135f0dccf8STakashi Iwai {
3214ee42381eSTakashi Iwai 	struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
32155f0dccf8STakashi Iwai 
32165f0dccf8STakashi Iwai 	if (ucontrol->value.enumerated.item[0] == 2)
32175f0dccf8STakashi Iwai 		return snd_ac97_update_bits(ac97, AC97_CM9761_FUNC, 0x1, 0x1);
32185f0dccf8STakashi Iwai 	snd_ac97_update_bits(ac97, AC97_CM9761_FUNC, 0x1, 0);
32195f0dccf8STakashi Iwai 	return snd_ac97_update_bits(ac97, AC97_CM9761_SPDIF_CTRL, 0x2,
32205f0dccf8STakashi Iwai 				    ucontrol->value.enumerated.item[0] == 1 ? 0x2 : 0);
32215f0dccf8STakashi Iwai }
32225f0dccf8STakashi Iwai 
32231bc10bb6STakashi Iwai static const char * const cm9761_dac_clock[] = {
32241bc10bb6STakashi Iwai 	"AC-Link", "SPDIF-In", "Both"
32251bc10bb6STakashi Iwai };
32265f0dccf8STakashi Iwai static const struct ac97_enum cm9761_dac_clock_enum =
32275f0dccf8STakashi Iwai 	AC97_ENUM_SINGLE(AC97_CM9761_SPDIF_CTRL, 9, 3, cm9761_dac_clock);
32285f0dccf8STakashi Iwai 
3229ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_cm9761_controls_spdif[] = {
32305f0dccf8STakashi Iwai 	{ /* BIT 1: SPDIFS */
32315f0dccf8STakashi Iwai 		.iface	= SNDRV_CTL_ELEM_IFACE_MIXER,
32325f0dccf8STakashi Iwai 		.name	= SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
32335f0dccf8STakashi Iwai 		.info = cm9761_spdif_out_source_info,
32345f0dccf8STakashi Iwai 		.get = cm9761_spdif_out_source_get,
32355f0dccf8STakashi Iwai 		.put = cm9761_spdif_out_source_put,
32365f0dccf8STakashi Iwai 	},
32375f0dccf8STakashi Iwai 	/* BIT 2: IG_SPIV */
32385f0dccf8STakashi Iwai 	AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,NONE) "Valid Switch", AC97_CM9761_SPDIF_CTRL, 2, 1, 0),
32395f0dccf8STakashi Iwai 	/* BIT 3: SPI2F */
32405f0dccf8STakashi Iwai 	AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,NONE) "Monitor", AC97_CM9761_SPDIF_CTRL, 3, 1, 0),
32415f0dccf8STakashi Iwai 	/* BIT 4: SPI2SDI */
32425f0dccf8STakashi Iwai 	AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH), AC97_CM9761_SPDIF_CTRL, 4, 1, 0),
32435f0dccf8STakashi Iwai 	/* BIT 9-10: DAC_CTL */
32445f0dccf8STakashi Iwai 	AC97_ENUM("DAC Clock Source", cm9761_dac_clock_enum),
32455f0dccf8STakashi Iwai };
32465f0dccf8STakashi Iwai 
patch_cm9761_post_spdif(struct snd_ac97 * ac97)3247ee42381eSTakashi Iwai static int patch_cm9761_post_spdif(struct snd_ac97 * ac97)
32485f0dccf8STakashi Iwai {
32495f0dccf8STakashi Iwai 	return patch_build_controls(ac97, snd_ac97_cm9761_controls_spdif, ARRAY_SIZE(snd_ac97_cm9761_controls_spdif));
32505f0dccf8STakashi Iwai }
32515f0dccf8STakashi Iwai 
patch_cm9761_specific(struct snd_ac97 * ac97)3252ee42381eSTakashi Iwai static int patch_cm9761_specific(struct snd_ac97 * ac97)
32531da177e4SLinus Torvalds {
32541da177e4SLinus Torvalds 	return patch_build_controls(ac97, snd_ac97_cm9761_controls, ARRAY_SIZE(snd_ac97_cm9761_controls));
32551da177e4SLinus Torvalds }
32561da177e4SLinus Torvalds 
32573e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_cm9761_ops = {
32581da177e4SLinus Torvalds 	.build_specific	= patch_cm9761_specific,
3259eb8caf30STakashi Iwai 	.build_post_spdif = patch_cm9761_post_spdif,
3260eb8caf30STakashi Iwai 	.update_jacks = cm9761_update_jacks
32611da177e4SLinus Torvalds };
32621da177e4SLinus Torvalds 
patch_cm9761(struct snd_ac97 * ac97)3263ac519028STakashi Iwai static int patch_cm9761(struct snd_ac97 *ac97)
32641da177e4SLinus Torvalds {
32651da177e4SLinus Torvalds 	unsigned short val;
32661da177e4SLinus Torvalds 
32671da177e4SLinus Torvalds 	/* CM9761 has no PCM volume although the register reacts */
32681da177e4SLinus Torvalds 	/* Master volume seems to have _some_ influence on the analog
32691da177e4SLinus Torvalds 	 * input sounds
32701da177e4SLinus Torvalds 	 */
32711da177e4SLinus Torvalds 	ac97->flags |= /*AC97_HAS_NO_MASTER_VOL |*/ AC97_HAS_NO_PCM_VOL;
32721da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_MASTER, 0x8808);
32731da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_PCM, 0x8808);
32741da177e4SLinus Torvalds 
32754525c9f3STakashi Iwai 	ac97->spec.dev_flags = 0; /* 1 = model 82 revision B, 2 = model 83 */
32761da177e4SLinus Torvalds 	if (ac97->id == AC97_ID_CM9761_82) {
32771da177e4SLinus Torvalds 		unsigned short tmp;
32781da177e4SLinus Torvalds 		/* check page 1, reg 0x60 */
32791da177e4SLinus Torvalds 		val = snd_ac97_read(ac97, AC97_INT_PAGING);
32801da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_INT_PAGING, (val & ~0x0f) | 0x01);
32811da177e4SLinus Torvalds 		tmp = snd_ac97_read(ac97, 0x60);
32821da177e4SLinus Torvalds 		ac97->spec.dev_flags = tmp & 1; /* revision B? */
32831da177e4SLinus Torvalds 		snd_ac97_write_cache(ac97, AC97_INT_PAGING, val);
32844525c9f3STakashi Iwai 	} else if (ac97->id == AC97_ID_CM9761_83)
32854525c9f3STakashi Iwai 		ac97->spec.dev_flags = 2;
32861da177e4SLinus Torvalds 
32871da177e4SLinus Torvalds 	ac97->build_ops = &patch_cm9761_ops;
32881da177e4SLinus Torvalds 
32891da177e4SLinus Torvalds 	/* enable spdif */
32901da177e4SLinus Torvalds 	/* force the SPDIF bit in ext_id - codec doesn't set this bit! */
32911da177e4SLinus Torvalds         ac97->ext_id |= AC97_EI_SPDIF;
32921da177e4SLinus Torvalds 	/* to be sure: we overwrite the ext status bits */
32931da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_EXTENDED_STATUS, 0x05c0);
32941da177e4SLinus Torvalds 	/* Don't set 0x0200 here.  This results in the silent analog output */
32955f0dccf8STakashi Iwai 	snd_ac97_write_cache(ac97, AC97_CM9761_SPDIF_CTRL, 0x0001); /* enable spdif-in */
32961da177e4SLinus Torvalds 	ac97->rates[AC97_RATES_SPDIF] = SNDRV_PCM_RATE_48000; /* 48k only */
32971da177e4SLinus Torvalds 
32981da177e4SLinus Torvalds 	/* set-up multi channel */
32991da177e4SLinus Torvalds 	/* bit 15: pc master beep off
33005f0dccf8STakashi Iwai 	 * bit 14: pin47 = EAPD/SPDIF
33011da177e4SLinus Torvalds 	 * bit 13: vref ctl [= cm9739]
33025f0dccf8STakashi Iwai 	 * bit 12: CLFE control (reverted on rev B)
33035f0dccf8STakashi Iwai 	 * bit 11: Mic/center share (reverted on rev B)
33045f0dccf8STakashi Iwai 	 * bit 10: suddound/line share
33055f0dccf8STakashi Iwai 	 * bit  9: Analog-in mix -> surround
33065f0dccf8STakashi Iwai 	 * bit  8: Analog-in mix -> CLFE
33075f0dccf8STakashi Iwai 	 * bit  7: Mic/LFE share (mic/center/lfe)
33085f0dccf8STakashi Iwai 	 * bit  5: vref select (9761A)
33095f0dccf8STakashi Iwai 	 * bit  4: front control
33105f0dccf8STakashi Iwai 	 * bit  3: surround control (revereted with rev B)
33115f0dccf8STakashi Iwai 	 * bit  2: front mic
33125f0dccf8STakashi Iwai 	 * bit  1: stereo mic
33135f0dccf8STakashi Iwai 	 * bit  0: mic boost level (0=20dB, 1=30dB)
33141da177e4SLinus Torvalds 	 */
33151da177e4SLinus Torvalds 
33161da177e4SLinus Torvalds #if 0
33171da177e4SLinus Torvalds 	if (ac97->spec.dev_flags)
33181da177e4SLinus Torvalds 		val = 0x0214;
33191da177e4SLinus Torvalds 	else
33201da177e4SLinus Torvalds 		val = 0x321c;
33211da177e4SLinus Torvalds #endif
33221da177e4SLinus Torvalds 	val = snd_ac97_read(ac97, AC97_CM9761_MULTI_CHAN);
33231da177e4SLinus Torvalds 	val |= (1 << 4); /* front on */
33241da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, AC97_CM9761_MULTI_CHAN, val);
33251da177e4SLinus Torvalds 
33261da177e4SLinus Torvalds 	/* FIXME: set up GPIO */
33271da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, 0x70, 0x0100);
33281da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, 0x72, 0x0020);
33291da177e4SLinus Torvalds 
33301da177e4SLinus Torvalds 	return 0;
33311da177e4SLinus Torvalds }
33321da177e4SLinus Torvalds 
33335f0dccf8STakashi Iwai #define AC97_CM9780_SIDE	0x60
33345f0dccf8STakashi Iwai #define AC97_CM9780_JACK	0x62
33355f0dccf8STakashi Iwai #define AC97_CM9780_MIXER	0x64
33365f0dccf8STakashi Iwai #define AC97_CM9780_MULTI_CHAN	0x66
33375f0dccf8STakashi Iwai #define AC97_CM9780_SPDIF	0x6c
33385f0dccf8STakashi Iwai 
33391bc10bb6STakashi Iwai static const char * const cm9780_ch_select[] = {
33401bc10bb6STakashi Iwai 	"Front", "Side", "Center/LFE", "Rear"
33411bc10bb6STakashi Iwai };
33425f0dccf8STakashi Iwai static const struct ac97_enum cm9780_ch_select_enum =
33435f0dccf8STakashi Iwai 	AC97_ENUM_SINGLE(AC97_CM9780_MULTI_CHAN, 6, 4, cm9780_ch_select);
3344ee42381eSTakashi Iwai static const struct snd_kcontrol_new cm9780_controls[] = {
33455f0dccf8STakashi Iwai 	AC97_DOUBLE("Side Playback Switch", AC97_CM9780_SIDE, 15, 7, 1, 1),
33465f0dccf8STakashi Iwai 	AC97_DOUBLE("Side Playback Volume", AC97_CM9780_SIDE, 8, 0, 31, 0),
33475f0dccf8STakashi Iwai 	AC97_ENUM("Side Playback Route", cm9780_ch_select_enum),
33485f0dccf8STakashi Iwai };
33495f0dccf8STakashi Iwai 
patch_cm9780_specific(struct snd_ac97 * ac97)3350ee42381eSTakashi Iwai static int patch_cm9780_specific(struct snd_ac97 *ac97)
33515f0dccf8STakashi Iwai {
33525f0dccf8STakashi Iwai 	return patch_build_controls(ac97, cm9780_controls, ARRAY_SIZE(cm9780_controls));
33535f0dccf8STakashi Iwai }
33545f0dccf8STakashi Iwai 
33553e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_cm9780_ops = {
33565f0dccf8STakashi Iwai 	.build_specific	= patch_cm9780_specific,
33575f0dccf8STakashi Iwai 	.build_post_spdif = patch_cm9761_post_spdif	/* identical with CM9761 */
33585f0dccf8STakashi Iwai };
33595f0dccf8STakashi Iwai 
patch_cm9780(struct snd_ac97 * ac97)3360ac519028STakashi Iwai static int patch_cm9780(struct snd_ac97 *ac97)
33615f0dccf8STakashi Iwai {
33625f0dccf8STakashi Iwai 	unsigned short val;
33635f0dccf8STakashi Iwai 
33645f0dccf8STakashi Iwai 	ac97->build_ops = &patch_cm9780_ops;
33655f0dccf8STakashi Iwai 
33665f0dccf8STakashi Iwai 	/* enable spdif */
33675f0dccf8STakashi Iwai 	if (ac97->ext_id & AC97_EI_SPDIF) {
33685f0dccf8STakashi Iwai 		ac97->rates[AC97_RATES_SPDIF] = SNDRV_PCM_RATE_48000; /* 48k only */
33695f0dccf8STakashi Iwai 		val = snd_ac97_read(ac97, AC97_CM9780_SPDIF);
33705f0dccf8STakashi Iwai 		val |= 0x1; /* SPDI_EN */
33715f0dccf8STakashi Iwai 		snd_ac97_write_cache(ac97, AC97_CM9780_SPDIF, val);
33725f0dccf8STakashi Iwai 	}
33735f0dccf8STakashi Iwai 
33745f0dccf8STakashi Iwai 	return 0;
33755f0dccf8STakashi Iwai }
33761da177e4SLinus Torvalds 
33771da177e4SLinus Torvalds /*
3378d6482288SMaciej S. Szmigiero  * VIA VT1613 codec
3379d6482288SMaciej S. Szmigiero  */
3380d6482288SMaciej S. Szmigiero static const struct snd_kcontrol_new snd_ac97_controls_vt1613[] = {
3381d6482288SMaciej S. Szmigiero AC97_SINGLE("DC Offset removal", 0x5a, 10, 1, 0),
3382d6482288SMaciej S. Szmigiero };
3383d6482288SMaciej S. Szmigiero 
patch_vt1613_specific(struct snd_ac97 * ac97)3384d6482288SMaciej S. Szmigiero static int patch_vt1613_specific(struct snd_ac97 *ac97)
3385d6482288SMaciej S. Szmigiero {
33865371fc0eSFabio Estevam 	return patch_build_controls(ac97, &snd_ac97_controls_vt1613[0],
3387d6482288SMaciej S. Szmigiero 				    ARRAY_SIZE(snd_ac97_controls_vt1613));
3388d6482288SMaciej S. Szmigiero };
3389d6482288SMaciej S. Szmigiero 
3390d6482288SMaciej S. Szmigiero static const struct snd_ac97_build_ops patch_vt1613_ops = {
3391d6482288SMaciej S. Szmigiero 	.build_specific	= patch_vt1613_specific
3392d6482288SMaciej S. Szmigiero };
3393d6482288SMaciej S. Szmigiero 
patch_vt1613(struct snd_ac97 * ac97)3394d6482288SMaciej S. Szmigiero static int patch_vt1613(struct snd_ac97 *ac97)
3395d6482288SMaciej S. Szmigiero {
3396d6482288SMaciej S. Szmigiero 	ac97->build_ops = &patch_vt1613_ops;
3397d6482288SMaciej S. Szmigiero 
3398d6482288SMaciej S. Szmigiero 	ac97->flags |= AC97_HAS_NO_VIDEO;
3399d6482288SMaciej S. Szmigiero 	ac97->caps |= AC97_BC_HEADPHONE;
3400d6482288SMaciej S. Szmigiero 
3401d6482288SMaciej S. Szmigiero 	return 0;
3402d6482288SMaciej S. Szmigiero }
3403d6482288SMaciej S. Szmigiero 
3404d6482288SMaciej S. Szmigiero /*
34051da177e4SLinus Torvalds  * VIA VT1616 codec
34061da177e4SLinus Torvalds  */
3407ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_controls_vt1616[] = {
34081da177e4SLinus Torvalds AC97_SINGLE("DC Offset removal", 0x5a, 10, 1, 0),
34091da177e4SLinus Torvalds AC97_SINGLE("Alternate Level to Surround Out", 0x5a, 15, 1, 0),
34101da177e4SLinus Torvalds AC97_SINGLE("Downmix LFE and Center to Front", 0x5a, 12, 1, 0),
34111da177e4SLinus Torvalds AC97_SINGLE("Downmix Surround to Front", 0x5a, 11, 1, 0),
34121da177e4SLinus Torvalds };
34131da177e4SLinus Torvalds 
34149ab0cb30STakashi Iwai static const char * const follower_vols_vt1616[] = {
341587af38daSDaniel Jacobowitz 	"Front Playback Volume",
341687af38daSDaniel Jacobowitz 	"Surround Playback Volume",
341787af38daSDaniel Jacobowitz 	"Center Playback Volume",
341887af38daSDaniel Jacobowitz 	"LFE Playback Volume",
341987af38daSDaniel Jacobowitz 	NULL
342087af38daSDaniel Jacobowitz };
342187af38daSDaniel Jacobowitz 
34229ab0cb30STakashi Iwai static const char * const follower_sws_vt1616[] = {
342387af38daSDaniel Jacobowitz 	"Front Playback Switch",
342487af38daSDaniel Jacobowitz 	"Surround Playback Switch",
342587af38daSDaniel Jacobowitz 	"Center Playback Switch",
342687af38daSDaniel Jacobowitz 	"LFE Playback Switch",
342787af38daSDaniel Jacobowitz 	NULL
342887af38daSDaniel Jacobowitz };
342987af38daSDaniel Jacobowitz 
343087af38daSDaniel Jacobowitz /* find a mixer control element with the given name */
snd_ac97_find_mixer_ctl(struct snd_ac97 * ac97,const char * name)343187af38daSDaniel Jacobowitz static struct snd_kcontrol *snd_ac97_find_mixer_ctl(struct snd_ac97 *ac97,
343287af38daSDaniel Jacobowitz 						    const char *name)
343387af38daSDaniel Jacobowitz {
3434ebc1bfebSTakashi Iwai 	return snd_ctl_find_id_mixer(ac97->bus->card, name);
343587af38daSDaniel Jacobowitz }
343687af38daSDaniel Jacobowitz 
34379ab0cb30STakashi Iwai /* create a virtual master control and add followers */
snd_ac97_add_vmaster(struct snd_ac97 * ac97,char * name,const unsigned int * tlv,const char * const * followers)343813c2108dSAdrian Bunk static int snd_ac97_add_vmaster(struct snd_ac97 *ac97, char *name,
34391bc10bb6STakashi Iwai 				const unsigned int *tlv,
34409ab0cb30STakashi Iwai 				const char * const *followers)
344187af38daSDaniel Jacobowitz {
344287af38daSDaniel Jacobowitz 	struct snd_kcontrol *kctl;
344387af38daSDaniel Jacobowitz 	int err;
344487af38daSDaniel Jacobowitz 
344587af38daSDaniel Jacobowitz 	kctl = snd_ctl_make_virtual_master(name, tlv);
344687af38daSDaniel Jacobowitz 	if (!kctl)
344787af38daSDaniel Jacobowitz 		return -ENOMEM;
344887af38daSDaniel Jacobowitz 	err = snd_ctl_add(ac97->bus->card, kctl);
344987af38daSDaniel Jacobowitz 	if (err < 0)
345087af38daSDaniel Jacobowitz 		return err;
345187af38daSDaniel Jacobowitz 
3452*1caf64d9STakashi Iwai 	return snd_ctl_add_followers(ac97->bus->card, kctl, followers);
345387af38daSDaniel Jacobowitz }
345487af38daSDaniel Jacobowitz 
patch_vt1616_specific(struct snd_ac97 * ac97)3455ee42381eSTakashi Iwai static int patch_vt1616_specific(struct snd_ac97 * ac97)
34561da177e4SLinus Torvalds {
345787af38daSDaniel Jacobowitz 	struct snd_kcontrol *kctl;
34581da177e4SLinus Torvalds 	int err;
34591da177e4SLinus Torvalds 
3460e66fd362STakashi Iwai 	if (snd_ac97_try_bit(ac97, 0x5a, 9)) {
3461e66fd362STakashi Iwai 		err = patch_build_controls(ac97, &snd_ac97_controls_vt1616[0], 1);
3462e66fd362STakashi Iwai 		if (err < 0)
34631da177e4SLinus Torvalds 			return err;
3464e66fd362STakashi Iwai 	}
3465e66fd362STakashi Iwai 	err = patch_build_controls(ac97, &snd_ac97_controls_vt1616[1], ARRAY_SIZE(snd_ac97_controls_vt1616) - 1);
3466e66fd362STakashi Iwai 	if (err < 0)
34671da177e4SLinus Torvalds 		return err;
346887af38daSDaniel Jacobowitz 
346987af38daSDaniel Jacobowitz 	/* There is already a misnamed master switch.  Rename it.  */
347087af38daSDaniel Jacobowitz 	kctl = snd_ac97_find_mixer_ctl(ac97, "Master Playback Volume");
347187af38daSDaniel Jacobowitz 	if (!kctl)
347287af38daSDaniel Jacobowitz 		return -EINVAL;
347387af38daSDaniel Jacobowitz 
347487af38daSDaniel Jacobowitz 	snd_ac97_rename_vol_ctl(ac97, "Master Playback", "Front Playback");
347587af38daSDaniel Jacobowitz 
347687af38daSDaniel Jacobowitz 	err = snd_ac97_add_vmaster(ac97, "Master Playback Volume",
34779ab0cb30STakashi Iwai 				   kctl->tlv.p, follower_vols_vt1616);
347887af38daSDaniel Jacobowitz 	if (err < 0)
347987af38daSDaniel Jacobowitz 		return err;
348087af38daSDaniel Jacobowitz 
348187af38daSDaniel Jacobowitz 	err = snd_ac97_add_vmaster(ac97, "Master Playback Switch",
34829ab0cb30STakashi Iwai 				   NULL, follower_sws_vt1616);
348387af38daSDaniel Jacobowitz 	if (err < 0)
348487af38daSDaniel Jacobowitz 		return err;
348587af38daSDaniel Jacobowitz 
34861da177e4SLinus Torvalds 	return 0;
34871da177e4SLinus Torvalds }
34881da177e4SLinus Torvalds 
34893e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_vt1616_ops = {
34901da177e4SLinus Torvalds 	.build_specific	= patch_vt1616_specific
34911da177e4SLinus Torvalds };
34921da177e4SLinus Torvalds 
patch_vt1616(struct snd_ac97 * ac97)3493ac519028STakashi Iwai static int patch_vt1616(struct snd_ac97 * ac97)
34941da177e4SLinus Torvalds {
34951da177e4SLinus Torvalds 	ac97->build_ops = &patch_vt1616_ops;
34961da177e4SLinus Torvalds 	return 0;
34971da177e4SLinus Torvalds }
34981da177e4SLinus Torvalds 
3499eb8caf30STakashi Iwai /*
35004b499486SPhilip Prindeville  * VT1617A codec
35014b499486SPhilip Prindeville  */
3502e9024cccSJohn Utz 
3503e9024cccSJohn Utz /*
3504e9024cccSJohn Utz  * unfortunately, the vt1617a stashes the twiddlers required for
35059e285e1aSJohn L. Utz III  * noodling the i/o jacks on 2 different regs. that means that we can't
3506e9024cccSJohn Utz  * use the easy way provided by AC97_ENUM_DOUBLE() we have to write
3507e9024cccSJohn Utz  * are own funcs.
3508e9024cccSJohn Utz  *
3509e9024cccSJohn Utz  * NB: this is absolutely and utterly different from the vt1618. dunno
3510e9024cccSJohn Utz  * about the 1616.
3511e9024cccSJohn Utz  */
3512e9024cccSJohn Utz 
3513e9024cccSJohn Utz /* copied from ac97_surround_jack_mode_info() */
snd_ac97_vt1617a_smart51_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)3514e9024cccSJohn Utz static int snd_ac97_vt1617a_smart51_info(struct snd_kcontrol *kcontrol,
3515e9024cccSJohn Utz 					 struct snd_ctl_elem_info *uinfo)
35164b499486SPhilip Prindeville {
3517e9024cccSJohn Utz 	/* ordering in this list reflects vt1617a docs for Reg 20 and
3518e9024cccSJohn Utz 	 * 7a and Table 6 that lays out the matrix NB WRT Table6: SM51
3519e9024cccSJohn Utz 	 * is SM51EN *AND* it's Bit14, not Bit15 so the table is very
3520e9024cccSJohn Utz 	 * counter-intuitive */
3521e9024cccSJohn Utz 
35223b7a00dcSTakashi Iwai 	static const char * const texts[] = {"LineIn Mic1", "LineIn Mic1 Mic3",
3523e9024cccSJohn Utz 				       "Surr LFE/C Mic3", "LineIn LFE/C Mic3",
3524e9024cccSJohn Utz 				       "LineIn Mic2", "LineIn Mic2 Mic1",
3525e9024cccSJohn Utz 				       "Surr LFE Mic1", "Surr LFE Mic1 Mic2"};
35263b7a00dcSTakashi Iwai 
35273b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 8, texts);
3528e9024cccSJohn Utz }
3529e9024cccSJohn Utz 
snd_ac97_vt1617a_smart51_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)3530e9024cccSJohn Utz static int snd_ac97_vt1617a_smart51_get(struct snd_kcontrol *kcontrol,
3531e9024cccSJohn Utz 					struct snd_ctl_elem_value *ucontrol)
3532e9024cccSJohn Utz {
3533e9024cccSJohn Utz 	ushort usSM51, usMS;
3534e9024cccSJohn Utz 
3535e9024cccSJohn Utz 	struct snd_ac97 *pac97;
3536e9024cccSJohn Utz 
3537e9024cccSJohn Utz 	pac97 = snd_kcontrol_chip(kcontrol); /* grab codec handle */
3538e9024cccSJohn Utz 
35399e285e1aSJohn L. Utz III 	/* grab our desired bits, then mash them together in a manner
3540e9024cccSJohn Utz 	 * consistent with Table 6 on page 17 in the 1617a docs */
3541e9024cccSJohn Utz 
3542e9024cccSJohn Utz 	usSM51 = snd_ac97_read(pac97, 0x7a) >> 14;
3543e9024cccSJohn Utz 	usMS   = snd_ac97_read(pac97, 0x20) >> 8;
3544e9024cccSJohn Utz 
3545e9024cccSJohn Utz 	ucontrol->value.enumerated.item[0] = (usSM51 << 1) + usMS;
3546e9024cccSJohn Utz 
3547e9024cccSJohn Utz 	return 0;
3548e9024cccSJohn Utz }
3549e9024cccSJohn Utz 
snd_ac97_vt1617a_smart51_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)3550e9024cccSJohn Utz static int snd_ac97_vt1617a_smart51_put(struct snd_kcontrol *kcontrol,
3551e9024cccSJohn Utz 					struct snd_ctl_elem_value *ucontrol)
3552e9024cccSJohn Utz {
3553e9024cccSJohn Utz 	ushort usSM51, usMS, usReg;
3554e9024cccSJohn Utz 
3555e9024cccSJohn Utz 	struct snd_ac97 *pac97;
3556e9024cccSJohn Utz 
3557e9024cccSJohn Utz 	pac97 = snd_kcontrol_chip(kcontrol); /* grab codec handle */
3558e9024cccSJohn Utz 
3559e9024cccSJohn Utz 	usSM51 = ucontrol->value.enumerated.item[0] >> 1;
3560e9024cccSJohn Utz 	usMS   = ucontrol->value.enumerated.item[0] &  1;
3561e9024cccSJohn Utz 
3562e9024cccSJohn Utz 	/* push our values into the register - consider that things will be left
3563e9024cccSJohn Utz 	 * in a funky state if the write fails */
3564e9024cccSJohn Utz 
3565e9024cccSJohn Utz 	usReg = snd_ac97_read(pac97, 0x7a);
3566e9024cccSJohn Utz 	snd_ac97_write_cache(pac97, 0x7a, (usReg & 0x3FFF) + (usSM51 << 14));
3567e9024cccSJohn Utz 	usReg = snd_ac97_read(pac97, 0x20);
3568e9024cccSJohn Utz 	snd_ac97_write_cache(pac97, 0x20, (usReg & 0xFEFF) + (usMS   <<  8));
3569e9024cccSJohn Utz 
3570e9024cccSJohn Utz 	return 0;
3571e9024cccSJohn Utz }
3572e9024cccSJohn Utz 
3573e9024cccSJohn Utz static const struct snd_kcontrol_new snd_ac97_controls_vt1617a[] = {
3574e9024cccSJohn Utz 
3575e9024cccSJohn Utz 	AC97_SINGLE("Center/LFE Exchange", 0x5a, 8, 1, 0),
3576e9024cccSJohn Utz 	/*
3577e9024cccSJohn Utz 	 * These are used to enable/disable surround sound on motherboards
3578e9024cccSJohn Utz 	 * that have 3 bidirectional analog jacks
3579e9024cccSJohn Utz 	 */
3580e9024cccSJohn Utz 	{
3581e9024cccSJohn Utz 		.iface         = SNDRV_CTL_ELEM_IFACE_MIXER,
3582e9024cccSJohn Utz 		.name          = "Smart 5.1 Select",
3583e9024cccSJohn Utz 		.info          = snd_ac97_vt1617a_smart51_info,
3584e9024cccSJohn Utz 		.get           = snd_ac97_vt1617a_smart51_get,
3585e9024cccSJohn Utz 		.put           = snd_ac97_vt1617a_smart51_put,
3586e9024cccSJohn Utz 	},
3587e9024cccSJohn Utz };
3588e9024cccSJohn Utz 
patch_vt1617a(struct snd_ac97 * ac97)3589b03671a8SHarvey Harrison static int patch_vt1617a(struct snd_ac97 * ac97)
3590e9024cccSJohn Utz {
3591e9024cccSJohn Utz 	int err = 0;
35922e75d050STakashi Iwai 	int val;
3593e9024cccSJohn Utz 
3594e9024cccSJohn Utz 	/* we choose to not fail out at this point, but we tell the
3595e9024cccSJohn Utz 	   caller when we return */
3596e9024cccSJohn Utz 
3597e9024cccSJohn Utz 	err = patch_build_controls(ac97, &snd_ac97_controls_vt1617a[0],
3598e9024cccSJohn Utz 				   ARRAY_SIZE(snd_ac97_controls_vt1617a));
3599e9024cccSJohn Utz 
3600e9024cccSJohn Utz 	/* bring analog power consumption to normal by turning off the
3601e9024cccSJohn Utz 	 * headphone amplifier, like WinXP driver for EPIA SP
36029f458e7fSAndrey Liakhovets 	 */
36032e75d050STakashi Iwai 	/* We need to check the bit before writing it.
36042e75d050STakashi Iwai 	 * On some (many?) hardwares, setting bit actually clears it!
36052e75d050STakashi Iwai 	 */
36062e75d050STakashi Iwai 	val = snd_ac97_read(ac97, 0x5c);
36072e75d050STakashi Iwai 	if (!(val & 0x20))
36089f458e7fSAndrey Liakhovets 		snd_ac97_write_cache(ac97, 0x5c, 0x20);
36092e75d050STakashi Iwai 
36104b499486SPhilip Prindeville 	ac97->ext_id |= AC97_EI_SPDIF;	/* force the detection of spdif */
36114b499486SPhilip Prindeville 	ac97->rates[AC97_RATES_SPDIF] = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000;
36129f428175SDaniel Jacobowitz 	ac97->build_ops = &patch_vt1616_ops;
3613e9024cccSJohn Utz 
3614e9024cccSJohn Utz 	return err;
36154b499486SPhilip Prindeville }
36164b499486SPhilip Prindeville 
36179e285e1aSJohn L. Utz III /* VIA VT1618 8 CHANNEL AC97 CODEC
36189e285e1aSJohn L. Utz III  *
36199e285e1aSJohn L. Utz III  * VIA implements 'Smart 5.1' completely differently on the 1618 than
36209e285e1aSJohn L. Utz III  * it does on the 1617a. awesome! They seem to have sourced this
36219e285e1aSJohn L. Utz III  * particular revision of the technology from somebody else, it's
36229e285e1aSJohn L. Utz III  * called Universal Audio Jack and it shows up on some other folk's chips
36239e285e1aSJohn L. Utz III  * as well.
36249e285e1aSJohn L. Utz III  *
36259e285e1aSJohn L. Utz III  * ordering in this list reflects vt1618 docs for Reg 60h and
36269e285e1aSJohn L. Utz III  * the block diagram, DACs are as follows:
36279e285e1aSJohn L. Utz III  *
36289e285e1aSJohn L. Utz III  *        OUT_O -> Front,
36299e285e1aSJohn L. Utz III  *	  OUT_1 -> Surround,
36309e285e1aSJohn L. Utz III  *	  OUT_2 -> C/LFE
36319e285e1aSJohn L. Utz III  *
36329e285e1aSJohn L. Utz III  * Unlike the 1617a, each OUT has a consistent set of mappings
36339e285e1aSJohn L. Utz III  * for all bitpatterns other than 00:
36349e285e1aSJohn L. Utz III  *
36359e285e1aSJohn L. Utz III  *        01       Unmixed Output
36369e285e1aSJohn L. Utz III  *        10       Line In
36379e285e1aSJohn L. Utz III  *        11       Mic  In
36389e285e1aSJohn L. Utz III  *
36399e285e1aSJohn L. Utz III  * Special Case of 00:
36409e285e1aSJohn L. Utz III  *
36419e285e1aSJohn L. Utz III  *        OUT_0    Mixed Output
36429e285e1aSJohn L. Utz III  *        OUT_1    Reserved
36439e285e1aSJohn L. Utz III  *        OUT_2    Reserved
36449e285e1aSJohn L. Utz III  *
36459e285e1aSJohn L. Utz III  * I have no idea what the hell Reserved does, but on an MSI
36469e285e1aSJohn L. Utz III  * CN700T, i have to set it to get 5.1 output - YMMV, bad
36479e285e1aSJohn L. Utz III  * shit may happen.
36489e285e1aSJohn L. Utz III  *
36499e285e1aSJohn L. Utz III  * If other chips use Universal Audio Jack, then this code might be applicable
36509e285e1aSJohn L. Utz III  * to them.
36519e285e1aSJohn L. Utz III  */
36529e285e1aSJohn L. Utz III 
36539e285e1aSJohn L. Utz III struct vt1618_uaj_item {
36549e285e1aSJohn L. Utz III 	unsigned short mask;
36559e285e1aSJohn L. Utz III 	unsigned short shift;
36561bc10bb6STakashi Iwai 	const char * const items[4];
36579e285e1aSJohn L. Utz III };
36589e285e1aSJohn L. Utz III 
36599e285e1aSJohn L. Utz III /* This list reflects the vt1618 docs for Vendor Defined Register 0x60. */
36609e285e1aSJohn L. Utz III 
36611675bfc0STakashi Iwai static const struct vt1618_uaj_item vt1618_uaj[3] = {
36629e285e1aSJohn L. Utz III 	{
36639e285e1aSJohn L. Utz III 		/* speaker jack */
36649e285e1aSJohn L. Utz III 		.mask  = 0x03,
36659e285e1aSJohn L. Utz III 		.shift = 0,
36669e285e1aSJohn L. Utz III 		.items = {
36679e285e1aSJohn L. Utz III 			"Speaker Out", "DAC Unmixed Out", "Line In", "Mic In"
36689e285e1aSJohn L. Utz III 		}
36699e285e1aSJohn L. Utz III 	},
36709e285e1aSJohn L. Utz III 	{
36719e285e1aSJohn L. Utz III 		/* line jack */
36729e285e1aSJohn L. Utz III 		.mask  = 0x0c,
36739e285e1aSJohn L. Utz III 		.shift = 2,
36749e285e1aSJohn L. Utz III 		.items = {
36759e285e1aSJohn L. Utz III 			"Surround Out", "DAC Unmixed Out", "Line In", "Mic In"
36769e285e1aSJohn L. Utz III 		}
36779e285e1aSJohn L. Utz III 	},
36789e285e1aSJohn L. Utz III 	{
36799e285e1aSJohn L. Utz III 		/* mic jack */
36809e285e1aSJohn L. Utz III 		.mask  = 0x30,
36819e285e1aSJohn L. Utz III 		.shift = 4,
36829e285e1aSJohn L. Utz III 		.items = {
36839e285e1aSJohn L. Utz III 			"Center LFE Out", "DAC Unmixed Out", "Line In", "Mic In"
36849e285e1aSJohn L. Utz III 		},
36859e285e1aSJohn L. Utz III 	},
36869e285e1aSJohn L. Utz III };
36879e285e1aSJohn L. Utz III 
snd_ac97_vt1618_UAJ_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)36889e285e1aSJohn L. Utz III static int snd_ac97_vt1618_UAJ_info(struct snd_kcontrol *kcontrol,
36899e285e1aSJohn L. Utz III 				    struct snd_ctl_elem_info *uinfo)
36909e285e1aSJohn L. Utz III {
36913b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 4,
36923b7a00dcSTakashi Iwai 				 vt1618_uaj[kcontrol->private_value].items);
36939e285e1aSJohn L. Utz III }
36949e285e1aSJohn L. Utz III 
36959e285e1aSJohn L. Utz III /* All of the vt1618 Universal Audio Jack twiddlers are on
36969e285e1aSJohn L. Utz III  * Vendor Defined Register 0x60, page 0. The bits, and thus
36979e285e1aSJohn L. Utz III  * the mask, are the only thing that changes
36989e285e1aSJohn L. Utz III  */
snd_ac97_vt1618_UAJ_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)36999e285e1aSJohn L. Utz III static int snd_ac97_vt1618_UAJ_get(struct snd_kcontrol *kcontrol,
37009e285e1aSJohn L. Utz III 				   struct snd_ctl_elem_value *ucontrol)
37019e285e1aSJohn L. Utz III {
37029e285e1aSJohn L. Utz III 	unsigned short datpag, uaj;
37039e285e1aSJohn L. Utz III 	struct snd_ac97 *pac97 = snd_kcontrol_chip(kcontrol);
37049e285e1aSJohn L. Utz III 
37059e285e1aSJohn L. Utz III 	mutex_lock(&pac97->page_mutex);
37069e285e1aSJohn L. Utz III 
37079e285e1aSJohn L. Utz III 	datpag = snd_ac97_read(pac97, AC97_INT_PAGING) & AC97_PAGE_MASK;
37089e285e1aSJohn L. Utz III 	snd_ac97_update_bits(pac97, AC97_INT_PAGING, AC97_PAGE_MASK, 0);
37099e285e1aSJohn L. Utz III 
37109e285e1aSJohn L. Utz III 	uaj = snd_ac97_read(pac97, 0x60) &
37119e285e1aSJohn L. Utz III 		vt1618_uaj[kcontrol->private_value].mask;
37129e285e1aSJohn L. Utz III 
37139e285e1aSJohn L. Utz III 	snd_ac97_update_bits(pac97, AC97_INT_PAGING, AC97_PAGE_MASK, datpag);
37149e285e1aSJohn L. Utz III 	mutex_unlock(&pac97->page_mutex);
37159e285e1aSJohn L. Utz III 
37169e285e1aSJohn L. Utz III 	ucontrol->value.enumerated.item[0] = uaj >>
37179e285e1aSJohn L. Utz III 		vt1618_uaj[kcontrol->private_value].shift;
37189e285e1aSJohn L. Utz III 
37199e285e1aSJohn L. Utz III 	return 0;
37209e285e1aSJohn L. Utz III }
37219e285e1aSJohn L. Utz III 
snd_ac97_vt1618_UAJ_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)37229e285e1aSJohn L. Utz III static int snd_ac97_vt1618_UAJ_put(struct snd_kcontrol *kcontrol,
37239e285e1aSJohn L. Utz III 				   struct snd_ctl_elem_value *ucontrol)
37249e285e1aSJohn L. Utz III {
37259e285e1aSJohn L. Utz III 	return ac97_update_bits_page(snd_kcontrol_chip(kcontrol), 0x60,
37269e285e1aSJohn L. Utz III 				     vt1618_uaj[kcontrol->private_value].mask,
37279e285e1aSJohn L. Utz III 				     ucontrol->value.enumerated.item[0]<<
37289e285e1aSJohn L. Utz III 				     vt1618_uaj[kcontrol->private_value].shift,
37299e285e1aSJohn L. Utz III 				     0);
37309e285e1aSJohn L. Utz III }
37319e285e1aSJohn L. Utz III 
37329e285e1aSJohn L. Utz III /* config aux in jack - not found on 3 jack motherboards or soundcards */
37339e285e1aSJohn L. Utz III 
snd_ac97_vt1618_aux_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)37349e285e1aSJohn L. Utz III static int snd_ac97_vt1618_aux_info(struct snd_kcontrol *kcontrol,
37359e285e1aSJohn L. Utz III 				     struct snd_ctl_elem_info *uinfo)
37369e285e1aSJohn L. Utz III {
37373b7a00dcSTakashi Iwai 	static const char * const txt_aux[] = {"Aux In", "Back Surr Out"};
37389e285e1aSJohn L. Utz III 
37393b7a00dcSTakashi Iwai 	return snd_ctl_enum_info(uinfo, 1, 2, txt_aux);
37409e285e1aSJohn L. Utz III }
37419e285e1aSJohn L. Utz III 
snd_ac97_vt1618_aux_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)37429e285e1aSJohn L. Utz III static int snd_ac97_vt1618_aux_get(struct snd_kcontrol *kcontrol,
37439e285e1aSJohn L. Utz III 				   struct snd_ctl_elem_value *ucontrol)
37449e285e1aSJohn L. Utz III {
37459e285e1aSJohn L. Utz III 	ucontrol->value.enumerated.item[0] =
37469e285e1aSJohn L. Utz III 		(snd_ac97_read(snd_kcontrol_chip(kcontrol), 0x5c) & 0x0008)>>3;
37479e285e1aSJohn L. Utz III 	return 0;
37489e285e1aSJohn L. Utz III }
37499e285e1aSJohn L. Utz III 
snd_ac97_vt1618_aux_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)37509e285e1aSJohn L. Utz III static int snd_ac97_vt1618_aux_put(struct snd_kcontrol *kcontrol,
37519e285e1aSJohn L. Utz III 				   struct snd_ctl_elem_value *ucontrol)
37529e285e1aSJohn L. Utz III {
37539e285e1aSJohn L. Utz III 	/* toggle surround rear dac power */
37549e285e1aSJohn L. Utz III 
37559e285e1aSJohn L. Utz III 	snd_ac97_update_bits(snd_kcontrol_chip(kcontrol), 0x5c, 0x0008,
37569e285e1aSJohn L. Utz III 			     ucontrol->value.enumerated.item[0] << 3);
37579e285e1aSJohn L. Utz III 
37589e285e1aSJohn L. Utz III 	/* toggle aux in surround rear out jack */
37599e285e1aSJohn L. Utz III 
37609e285e1aSJohn L. Utz III 	return snd_ac97_update_bits(snd_kcontrol_chip(kcontrol), 0x76, 0x0008,
37619e285e1aSJohn L. Utz III 				    ucontrol->value.enumerated.item[0] << 3);
37629e285e1aSJohn L. Utz III }
37639e285e1aSJohn L. Utz III 
37649e285e1aSJohn L. Utz III static const struct snd_kcontrol_new snd_ac97_controls_vt1618[] = {
37659e285e1aSJohn L. Utz III 	AC97_SINGLE("Exchange Center/LFE", 0x5a,  8, 1,     0),
37669e285e1aSJohn L. Utz III 	AC97_SINGLE("DC Offset",           0x5a, 10, 1,     0),
37679e285e1aSJohn L. Utz III 	AC97_SINGLE("Soft Mute",           0x5c,  0, 1,     1),
37689e285e1aSJohn L. Utz III 	AC97_SINGLE("Headphone Amp",       0x5c,  5, 1,     1),
37699e285e1aSJohn L. Utz III 	AC97_DOUBLE("Back Surr Volume",    0x5e,  8, 0, 31, 1),
37709e285e1aSJohn L. Utz III 	AC97_SINGLE("Back Surr Switch",    0x5e, 15, 1,     1),
37719e285e1aSJohn L. Utz III 	{
37729e285e1aSJohn L. Utz III 		.iface         = SNDRV_CTL_ELEM_IFACE_MIXER,
37739e285e1aSJohn L. Utz III 		.name          = "Speaker Jack Mode",
37749e285e1aSJohn L. Utz III 		.info          = snd_ac97_vt1618_UAJ_info,
37759e285e1aSJohn L. Utz III 		.get           = snd_ac97_vt1618_UAJ_get,
37769e285e1aSJohn L. Utz III 		.put           = snd_ac97_vt1618_UAJ_put,
37779e285e1aSJohn L. Utz III 		.private_value = 0
37789e285e1aSJohn L. Utz III 	},
37799e285e1aSJohn L. Utz III 	{
37809e285e1aSJohn L. Utz III 		.iface         = SNDRV_CTL_ELEM_IFACE_MIXER,
37819e285e1aSJohn L. Utz III 		.name          = "Line Jack Mode",
37829e285e1aSJohn L. Utz III 		.info          = snd_ac97_vt1618_UAJ_info,
37839e285e1aSJohn L. Utz III 		.get           = snd_ac97_vt1618_UAJ_get,
37849e285e1aSJohn L. Utz III 		.put           = snd_ac97_vt1618_UAJ_put,
37859e285e1aSJohn L. Utz III 		.private_value = 1
37869e285e1aSJohn L. Utz III 	},
37879e285e1aSJohn L. Utz III 	{
37889e285e1aSJohn L. Utz III 		.iface         = SNDRV_CTL_ELEM_IFACE_MIXER,
37899e285e1aSJohn L. Utz III 		.name          = "Mic Jack Mode",
37909e285e1aSJohn L. Utz III 		.info          = snd_ac97_vt1618_UAJ_info,
37919e285e1aSJohn L. Utz III 		.get           = snd_ac97_vt1618_UAJ_get,
37929e285e1aSJohn L. Utz III 		.put           = snd_ac97_vt1618_UAJ_put,
37939e285e1aSJohn L. Utz III 		.private_value = 2
37949e285e1aSJohn L. Utz III 	},
37959e285e1aSJohn L. Utz III 	{
37969e285e1aSJohn L. Utz III 		.iface         = SNDRV_CTL_ELEM_IFACE_MIXER,
37979e285e1aSJohn L. Utz III 		.name          = "Aux Jack Mode",
37989e285e1aSJohn L. Utz III 		.info          = snd_ac97_vt1618_aux_info,
37999e285e1aSJohn L. Utz III 		.get           = snd_ac97_vt1618_aux_get,
38009e285e1aSJohn L. Utz III 		.put           = snd_ac97_vt1618_aux_put,
38019e285e1aSJohn L. Utz III 	}
38029e285e1aSJohn L. Utz III };
38039e285e1aSJohn L. Utz III 
patch_vt1618(struct snd_ac97 * ac97)3804b03671a8SHarvey Harrison static int patch_vt1618(struct snd_ac97 *ac97)
38059e285e1aSJohn L. Utz III {
38069e285e1aSJohn L. Utz III 	return patch_build_controls(ac97, snd_ac97_controls_vt1618,
38079e285e1aSJohn L. Utz III 				    ARRAY_SIZE(snd_ac97_controls_vt1618));
38089e285e1aSJohn L. Utz III }
38099e285e1aSJohn L. Utz III 
38104b499486SPhilip Prindeville /*
3811eb8caf30STakashi Iwai  */
it2646_update_jacks(struct snd_ac97 * ac97)3812ee42381eSTakashi Iwai static void it2646_update_jacks(struct snd_ac97 *ac97)
3813eb8caf30STakashi Iwai {
3814831466f4SRandy Cushman 	/* shared Line-In / Surround Out */
3815eb8caf30STakashi Iwai 	snd_ac97_update_bits(ac97, 0x76, 1 << 9,
3816831466f4SRandy Cushman 			     is_shared_surrout(ac97) ? (1<<9) : 0);
3817831466f4SRandy Cushman 	/* shared Mic / Center/LFE Out */
3818eb8caf30STakashi Iwai 	snd_ac97_update_bits(ac97, 0x76, 1 << 10,
3819831466f4SRandy Cushman 			     is_shared_clfeout(ac97) ? (1<<10) : 0);
3820eb8caf30STakashi Iwai }
3821eb8caf30STakashi Iwai 
3822ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_controls_it2646[] = {
3823eb8caf30STakashi Iwai 	AC97_SURROUND_JACK_MODE_CTL,
3824eb8caf30STakashi Iwai 	AC97_CHANNEL_MODE_CTL,
38251da177e4SLinus Torvalds };
38261da177e4SLinus Torvalds 
3827ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_spdif_controls_it2646[] = {
382810e8d78aSClemens Ladisch 	AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH), 0x76, 11, 1, 0),
38291da177e4SLinus Torvalds 	AC97_SINGLE("Analog to IEC958 Output", 0x76, 12, 1, 0),
38301da177e4SLinus Torvalds 	AC97_SINGLE("IEC958 Input Monitor", 0x76, 13, 1, 0),
38311da177e4SLinus Torvalds };
38321da177e4SLinus Torvalds 
patch_it2646_specific(struct snd_ac97 * ac97)3833ee42381eSTakashi Iwai static int patch_it2646_specific(struct snd_ac97 * ac97)
38341da177e4SLinus Torvalds {
38351da177e4SLinus Torvalds 	int err;
3836e66fd362STakashi Iwai 	err = patch_build_controls(ac97, snd_ac97_controls_it2646, ARRAY_SIZE(snd_ac97_controls_it2646));
3837e66fd362STakashi Iwai 	if (err < 0)
38381da177e4SLinus Torvalds 		return err;
3839e66fd362STakashi Iwai 	err = patch_build_controls(ac97, snd_ac97_spdif_controls_it2646, ARRAY_SIZE(snd_ac97_spdif_controls_it2646));
3840e66fd362STakashi Iwai 	if (err < 0)
38411da177e4SLinus Torvalds 		return err;
38421da177e4SLinus Torvalds 	return 0;
38431da177e4SLinus Torvalds }
38441da177e4SLinus Torvalds 
38453e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_it2646_ops = {
3846eb8caf30STakashi Iwai 	.build_specific	= patch_it2646_specific,
3847eb8caf30STakashi Iwai 	.update_jacks = it2646_update_jacks
38481da177e4SLinus Torvalds };
38491da177e4SLinus Torvalds 
patch_it2646(struct snd_ac97 * ac97)3850ac519028STakashi Iwai static int patch_it2646(struct snd_ac97 * ac97)
38511da177e4SLinus Torvalds {
38521da177e4SLinus Torvalds 	ac97->build_ops = &patch_it2646_ops;
38531da177e4SLinus Torvalds 	/* full DAC volume */
38541da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, 0x5E, 0x0808);
38551da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, 0x7A, 0x0808);
38561da177e4SLinus Torvalds 	return 0;
38571da177e4SLinus Torvalds }
38581da177e4SLinus Torvalds 
385987d61c29SSasha Khapyorsky /*
386087d61c29SSasha Khapyorsky  * Si3036 codec
386187d61c29SSasha Khapyorsky  */
386287d61c29SSasha Khapyorsky 
38631da177e4SLinus Torvalds #define AC97_SI3036_CHIP_ID     0x5a
386487d61c29SSasha Khapyorsky #define AC97_SI3036_LINE_CFG    0x5c
386587d61c29SSasha Khapyorsky 
3866ee42381eSTakashi Iwai static const struct snd_kcontrol_new snd_ac97_controls_si3036[] = {
386787d61c29SSasha Khapyorsky AC97_DOUBLE("Modem Speaker Volume", 0x5c, 14, 12, 3, 1)
386887d61c29SSasha Khapyorsky };
386987d61c29SSasha Khapyorsky 
patch_si3036_specific(struct snd_ac97 * ac97)3870ee42381eSTakashi Iwai static int patch_si3036_specific(struct snd_ac97 * ac97)
387187d61c29SSasha Khapyorsky {
387227bcaa69SSasha Khapyorsky 	int idx, err;
3873e66fd362STakashi Iwai 	for (idx = 0; idx < ARRAY_SIZE(snd_ac97_controls_si3036); idx++) {
3874e66fd362STakashi Iwai 		err = snd_ctl_add(ac97->bus->card, snd_ctl_new1(&snd_ac97_controls_si3036[idx], ac97));
3875e66fd362STakashi Iwai 		if (err < 0)
387627bcaa69SSasha Khapyorsky 			return err;
3877e66fd362STakashi Iwai 	}
387827bcaa69SSasha Khapyorsky 	return 0;
387987d61c29SSasha Khapyorsky }
388087d61c29SSasha Khapyorsky 
38813e8b3b90SHanno Boeck static const struct snd_ac97_build_ops patch_si3036_ops = {
388287d61c29SSasha Khapyorsky 	.build_specific	= patch_si3036_specific,
388387d61c29SSasha Khapyorsky };
38841da177e4SLinus Torvalds 
mpatch_si3036(struct snd_ac97 * ac97)3885ac519028STakashi Iwai static int mpatch_si3036(struct snd_ac97 * ac97)
38861da177e4SLinus Torvalds {
388787d61c29SSasha Khapyorsky 	ac97->build_ops = &patch_si3036_ops;
38881da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, 0x5c, 0xf210 );
38891da177e4SLinus Torvalds 	snd_ac97_write_cache(ac97, 0x68, 0);
38901da177e4SLinus Torvalds 	return 0;
38911da177e4SLinus Torvalds }
3892ba22429dSCharl Coetzee 
3893ba22429dSCharl Coetzee /*
3894ba22429dSCharl Coetzee  * LM 4550 Codec
3895ba22429dSCharl Coetzee  *
3896ba22429dSCharl Coetzee  * We use a static resolution table since LM4550 codec cannot be
3897ba22429dSCharl Coetzee  * properly autoprobed to determine the resolution via
3898ba22429dSCharl Coetzee  * check_volume_resolution().
3899ba22429dSCharl Coetzee  */
3900ba22429dSCharl Coetzee 
3901c0476b98STakashi Iwai static const struct snd_ac97_res_table lm4550_restbl[] = {
3902ba22429dSCharl Coetzee 	{ AC97_MASTER, 0x1f1f },
3903ba22429dSCharl Coetzee 	{ AC97_HEADPHONE, 0x1f1f },
3904ba22429dSCharl Coetzee 	{ AC97_MASTER_MONO, 0x001f },
3905ba22429dSCharl Coetzee 	{ AC97_PC_BEEP, 0x001f },	/* LSB is ignored */
3906ba22429dSCharl Coetzee 	{ AC97_PHONE, 0x001f },
3907ba22429dSCharl Coetzee 	{ AC97_MIC, 0x001f },
3908ba22429dSCharl Coetzee 	{ AC97_LINE, 0x1f1f },
3909ba22429dSCharl Coetzee 	{ AC97_CD, 0x1f1f },
3910ba22429dSCharl Coetzee 	{ AC97_VIDEO, 0x1f1f },
3911ba22429dSCharl Coetzee 	{ AC97_AUX, 0x1f1f },
3912ba22429dSCharl Coetzee 	{ AC97_PCM, 0x1f1f },
3913ba22429dSCharl Coetzee 	{ AC97_REC_GAIN, 0x0f0f },
3914ba22429dSCharl Coetzee 	{ } /* terminator */
3915ba22429dSCharl Coetzee };
3916ba22429dSCharl Coetzee 
patch_lm4550(struct snd_ac97 * ac97)3917ac519028STakashi Iwai static int patch_lm4550(struct snd_ac97 *ac97)
3918ba22429dSCharl Coetzee {
3919ba22429dSCharl Coetzee 	ac97->res_table = lm4550_restbl;
3920ba22429dSCharl Coetzee 	return 0;
3921ba22429dSCharl Coetzee }
3922