blob: 31a95cca015d4d1c34a1facff2e226b6821a5203 [file] [log] [blame]
Joseph Chanc577b8a2006-11-29 15:29:40 +01001/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
Lydia Wang8e865972009-10-10 19:08:52 +08004 * HD audio interface patch for VIA VT17xx/VT18xx/VT20xx codec
Joseph Chanc577b8a2006-11-29 15:29:40 +01005 *
Lydia Wang8e865972009-10-10 19:08:52 +08006 * (C) 2006-2009 VIA Technology, Inc.
7 * (C) 2006-2008 Takashi Iwai <tiwai@suse.de>
Joseph Chanc577b8a2006-11-29 15:29:40 +01008 *
9 * This driver is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This driver is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24/* * * * * * * * * * * * * * Release History * * * * * * * * * * * * * * * * */
Lydia Wang377ff312009-10-10 19:08:55 +080025/* */
Joseph Chanc577b8a2006-11-29 15:29:40 +010026/* 2006-03-03 Lydia Wang Create the basic patch to support VT1708 codec */
Lydia Wang377ff312009-10-10 19:08:55 +080027/* 2006-03-14 Lydia Wang Modify hard code for some pin widget nid */
28/* 2006-08-02 Lydia Wang Add support to VT1709 codec */
Joseph Chanc577b8a2006-11-29 15:29:40 +010029/* 2006-09-08 Lydia Wang Fix internal loopback recording source select bug */
Lydia Wang377ff312009-10-10 19:08:55 +080030/* 2007-09-12 Lydia Wang Add EAPD enable during driver initialization */
31/* 2007-09-17 Lydia Wang Add VT1708B codec support */
Harald Welte76d9b0d2008-09-09 15:50:37 +080032/* 2007-11-14 Lydia Wang Add VT1708A codec HP and CD pin connect config */
Harald Weltefb4cb772008-09-09 15:53:36 +080033/* 2008-02-03 Lydia Wang Fix Rear channels and Back channels inverse issue */
Lydia Wang377ff312009-10-10 19:08:55 +080034/* 2008-03-06 Lydia Wang Add VT1702 codec and VT1708S codec support */
35/* 2008-04-09 Lydia Wang Add mute front speaker when HP plugin */
36/* 2008-04-09 Lydia Wang Add Independent HP feature */
Harald Welte98aa34c2008-09-09 16:02:09 +080037/* 2008-05-28 Lydia Wang Add second S/PDIF Out support for VT1702 */
Lydia Wang377ff312009-10-10 19:08:55 +080038/* 2008-09-15 Logan Li Add VT1708S Mic Boost workaround/backdoor */
Lydia Wang8e865972009-10-10 19:08:52 +080039/* 2009-02-16 Logan Li Add support for VT1718S */
40/* 2009-03-13 Logan Li Add support for VT1716S */
41/* 2009-04-14 Lydai Wang Add support for VT1828S and VT2020 */
42/* 2009-07-08 Lydia Wang Add support for VT2002P */
43/* 2009-07-21 Lydia Wang Add support for VT1812 */
Lydia Wang36dd5c42009-10-20 13:18:04 +080044/* 2009-09-19 Lydia Wang Add support for VT1818S */
Lydia Wang377ff312009-10-10 19:08:55 +080045/* */
Joseph Chanc577b8a2006-11-29 15:29:40 +010046/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
47
48
Joseph Chanc577b8a2006-11-29 15:29:40 +010049#include <linux/init.h>
50#include <linux/delay.h>
51#include <linux/slab.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040052#include <linux/module.h>
Joseph Chanc577b8a2006-11-29 15:29:40 +010053#include <sound/core.h>
Harald Welte0aa62ae2008-09-09 15:58:27 +080054#include <sound/asoundef.h>
Joseph Chanc577b8a2006-11-29 15:29:40 +010055#include "hda_codec.h"
56#include "hda_local.h"
Takashi Iwai128bc4b2012-05-07 17:42:31 +020057#include "hda_auto_parser.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020058#include "hda_jack.h"
Takashi Iwaib3f60082013-01-07 12:27:36 +010059#include "hda_generic.h"
Joseph Chanc577b8a2006-11-29 15:29:40 +010060
Joseph Chanc577b8a2006-11-29 15:29:40 +010061/* Pin Widget NID */
Harald Welted949cac2008-09-09 15:56:01 +080062#define VT1708_HP_PIN_NID 0x20
63#define VT1708_CD_PIN_NID 0x24
Joseph Chanc577b8a2006-11-29 15:29:40 +010064
Harald Welted7426322008-09-15 22:43:23 +080065enum VIA_HDA_CODEC {
66 UNKNOWN = -1,
67 VT1708,
68 VT1709_10CH,
69 VT1709_6CH,
70 VT1708B_8CH,
71 VT1708B_4CH,
72 VT1708S,
Lydia Wang518bf3b2009-10-10 19:07:29 +080073 VT1708BCE,
Harald Welted7426322008-09-15 22:43:23 +080074 VT1702,
Lydia Wangeb7188c2009-10-10 19:08:34 +080075 VT1718S,
Lydia Wangf3db4232009-10-10 19:08:41 +080076 VT1716S,
Lydia Wang25eaba22009-10-10 19:08:43 +080077 VT2002P,
Lydia Wangab6734e2009-10-10 19:08:46 +080078 VT1812,
Lydia Wang118909562011-03-23 17:57:34 +080079 VT1802,
Lydia Wang43737e02012-12-10 18:28:11 +080080 VT1705CF,
Lydia Wang6121b842012-12-10 19:03:26 +080081 VT1808,
Harald Welted7426322008-09-15 22:43:23 +080082 CODEC_TYPES,
83};
84
Lydia Wang118909562011-03-23 17:57:34 +080085#define VT2002P_COMPATIBLE(spec) \
86 ((spec)->codec_type == VT2002P ||\
87 (spec)->codec_type == VT1812 ||\
88 (spec)->codec_type == VT1802)
89
Lydia Wang1f2e99f2009-10-10 19:08:17 +080090struct via_spec {
Takashi Iwaib3f60082013-01-07 12:27:36 +010091 struct hda_gen_spec gen;
92
Lydia Wang1f2e99f2009-10-10 19:08:17 +080093 /* codec parameterization */
Takashi Iwai90dd48a2011-05-02 12:38:19 +020094 const struct snd_kcontrol_new *mixers[6];
Lydia Wang1f2e99f2009-10-10 19:08:17 +080095 unsigned int num_mixers;
96
Takashi Iwai90dd48a2011-05-02 12:38:19 +020097 const struct hda_verb *init_verbs[5];
Lydia Wang1f2e99f2009-10-10 19:08:17 +080098 unsigned int num_iverbs;
99
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800100 /* HP mode source */
Lydia Wangf3db4232009-10-10 19:08:41 +0800101 unsigned int dmic_enabled;
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800102 enum VIA_HDA_CODEC codec_type;
103
Takashi Iwaie9d010c2012-02-01 10:33:23 +0100104 /* analog low-power control */
105 bool alc_mode;
106
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800107 /* work to check hp jack state */
Takashi Iwai187d3332011-11-24 16:33:09 +0100108 int hp_work_active;
Takashi Iwaie06e5a22011-06-17 15:46:13 +0200109 int vt1708_jack_detect;
W. Trevor King47384652015-03-25 00:43:42 -0700110
111 unsigned int beep_amp;
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800112};
113
Lydia Wang0341ccd2011-03-22 16:25:03 +0800114static enum VIA_HDA_CODEC get_codec_type(struct hda_codec *codec);
Takashi Iwaib3f60082013-01-07 12:27:36 +0100115static void via_playback_pcm_hook(struct hda_pcm_stream *hinfo,
116 struct hda_codec *codec,
117 struct snd_pcm_substream *substream,
118 int action);
Takashi Iwaib3f60082013-01-07 12:27:36 +0100119
120static struct via_spec *via_new_spec(struct hda_codec *codec)
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100121{
122 struct via_spec *spec;
123
124 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
125 if (spec == NULL)
126 return NULL;
127
128 codec->spec = spec;
Takashi Iwaib3f60082013-01-07 12:27:36 +0100129 snd_hda_gen_spec_init(&spec->gen);
Lydia Wang0341ccd2011-03-22 16:25:03 +0800130 spec->codec_type = get_codec_type(codec);
131 /* VT1708BCE & VT1708S are almost same */
132 if (spec->codec_type == VT1708BCE)
133 spec->codec_type = VT1708S;
Takashi Iwai13961172013-01-21 15:15:55 +0100134 spec->gen.indep_hp = 1;
Takashi Iwai05909d5c2013-05-31 19:55:54 +0200135 spec->gen.keep_eapd_on = 1;
Takashi Iwaib3f60082013-01-07 12:27:36 +0100136 spec->gen.pcm_playback_hook = via_playback_pcm_hook;
Takashi Iwai74f14b32014-12-15 13:43:59 +0100137 spec->gen.add_stereo_mix_input = HDA_HINT_STEREO_MIX_AUTO;
Takashi Iwai967b1302015-03-20 18:21:03 +0100138 codec->power_save_node = 1;
Takashi Iwai688b12c2015-03-17 15:56:05 +0100139 spec->gen.power_down_unused = 1;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100140 return spec;
141}
142
Lydia Wang744ff5f2009-10-10 19:07:26 +0800143static enum VIA_HDA_CODEC get_codec_type(struct hda_codec *codec)
Harald Welted7426322008-09-15 22:43:23 +0800144{
Takashi Iwai7639a062015-03-03 10:07:24 +0100145 u32 vendor_id = codec->core.vendor_id;
Harald Welted7426322008-09-15 22:43:23 +0800146 u16 ven_id = vendor_id >> 16;
147 u16 dev_id = vendor_id & 0xffff;
148 enum VIA_HDA_CODEC codec_type;
149
150 /* get codec type */
151 if (ven_id != 0x1106)
152 codec_type = UNKNOWN;
153 else if (dev_id >= 0x1708 && dev_id <= 0x170b)
154 codec_type = VT1708;
155 else if (dev_id >= 0xe710 && dev_id <= 0xe713)
156 codec_type = VT1709_10CH;
157 else if (dev_id >= 0xe714 && dev_id <= 0xe717)
158 codec_type = VT1709_6CH;
Lydia Wang518bf3b2009-10-10 19:07:29 +0800159 else if (dev_id >= 0xe720 && dev_id <= 0xe723) {
Harald Welted7426322008-09-15 22:43:23 +0800160 codec_type = VT1708B_8CH;
Lydia Wang518bf3b2009-10-10 19:07:29 +0800161 if (snd_hda_param_read(codec, 0x16, AC_PAR_CONNLIST_LEN) == 0x7)
162 codec_type = VT1708BCE;
163 } else if (dev_id >= 0xe724 && dev_id <= 0xe727)
Harald Welted7426322008-09-15 22:43:23 +0800164 codec_type = VT1708B_4CH;
165 else if ((dev_id & 0xfff) == 0x397
166 && (dev_id >> 12) < 8)
167 codec_type = VT1708S;
168 else if ((dev_id & 0xfff) == 0x398
169 && (dev_id >> 12) < 8)
170 codec_type = VT1702;
Lydia Wangeb7188c2009-10-10 19:08:34 +0800171 else if ((dev_id & 0xfff) == 0x428
172 && (dev_id >> 12) < 8)
173 codec_type = VT1718S;
Lydia Wangf3db4232009-10-10 19:08:41 +0800174 else if (dev_id == 0x0433 || dev_id == 0xa721)
175 codec_type = VT1716S;
Lydia Wangbb3c6bfc2009-10-10 19:08:39 +0800176 else if (dev_id == 0x0441 || dev_id == 0x4441)
177 codec_type = VT1718S;
Lydia Wang25eaba22009-10-10 19:08:43 +0800178 else if (dev_id == 0x0438 || dev_id == 0x4438)
179 codec_type = VT2002P;
Lydia Wangab6734e2009-10-10 19:08:46 +0800180 else if (dev_id == 0x0448)
181 codec_type = VT1812;
Lydia Wang36dd5c42009-10-20 13:18:04 +0800182 else if (dev_id == 0x0440)
183 codec_type = VT1708S;
Lydia Wang118909562011-03-23 17:57:34 +0800184 else if ((dev_id & 0xfff) == 0x446)
185 codec_type = VT1802;
Lydia Wang43737e02012-12-10 18:28:11 +0800186 else if (dev_id == 0x4760)
187 codec_type = VT1705CF;
Lydia Wang6121b842012-12-10 19:03:26 +0800188 else if (dev_id == 0x4761 || dev_id == 0x4762)
189 codec_type = VT1808;
Harald Welted7426322008-09-15 22:43:23 +0800190 else
191 codec_type = UNKNOWN;
192 return codec_type;
193};
194
Takashi Iwaiada509e2011-06-20 15:40:19 +0200195static void analog_low_current_mode(struct hda_codec *codec);
196static bool is_aa_path_mute(struct hda_codec *codec);
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800197
Takashi Iwai187d3332011-11-24 16:33:09 +0100198#define hp_detect_with_aa(codec) \
199 (snd_hda_get_bool_hint(codec, "analog_loopback_hp_detect") == 1 && \
200 !is_aa_path_mute(codec))
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800201
Takashi Iwaib3f60082013-01-07 12:27:36 +0100202static void vt1708_stop_hp_work(struct hda_codec *codec)
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800203{
Takashi Iwaib3f60082013-01-07 12:27:36 +0100204 struct via_spec *spec = codec->spec;
205 if (spec->codec_type != VT1708 || !spec->gen.autocfg.hp_outs)
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800206 return;
Takashi Iwai187d3332011-11-24 16:33:09 +0100207 if (spec->hp_work_active) {
Takashi Iwaib3f60082013-01-07 12:27:36 +0100208 snd_hda_codec_write(codec, 0x1, 0, 0xf81, 1);
Wang Xingchao7eaa9162013-07-25 23:34:44 -0400209 codec->jackpoll_interval = 0;
Takashi Iwaib3f60082013-01-07 12:27:36 +0100210 cancel_delayed_work_sync(&codec->jackpoll_work);
211 spec->hp_work_active = false;
Takashi Iwai187d3332011-11-24 16:33:09 +0100212 }
213}
214
Takashi Iwaib3f60082013-01-07 12:27:36 +0100215static void vt1708_update_hp_work(struct hda_codec *codec)
Takashi Iwai187d3332011-11-24 16:33:09 +0100216{
Takashi Iwaib3f60082013-01-07 12:27:36 +0100217 struct via_spec *spec = codec->spec;
218 if (spec->codec_type != VT1708 || !spec->gen.autocfg.hp_outs)
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800219 return;
David Henningsson05dc0fc2013-02-05 12:06:03 +0100220 if (spec->vt1708_jack_detect) {
Takashi Iwai187d3332011-11-24 16:33:09 +0100221 if (!spec->hp_work_active) {
Takashi Iwaib3f60082013-01-07 12:27:36 +0100222 codec->jackpoll_interval = msecs_to_jiffies(100);
223 snd_hda_codec_write(codec, 0x1, 0, 0xf81, 0);
Takashi Iwai2f35c632015-02-27 22:43:26 +0100224 schedule_delayed_work(&codec->jackpoll_work, 0);
Takashi Iwaib3f60082013-01-07 12:27:36 +0100225 spec->hp_work_active = true;
Takashi Iwai187d3332011-11-24 16:33:09 +0100226 }
Takashi Iwaib3f60082013-01-07 12:27:36 +0100227 } else if (!hp_detect_with_aa(codec))
228 vt1708_stop_hp_work(codec);
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800229}
Lydia Wangf5271102009-10-10 19:07:35 +0800230
Takashi Iwai24088a52011-06-17 16:59:21 +0200231static int via_pin_power_ctl_info(struct snd_kcontrol *kcontrol,
232 struct snd_ctl_elem_info *uinfo)
233{
Takashi Iwaidda415d2012-11-30 18:34:38 +0100234 return snd_hda_enum_bool_helper_info(kcontrol, uinfo);
Takashi Iwai24088a52011-06-17 16:59:21 +0200235}
236
237static int via_pin_power_ctl_get(struct snd_kcontrol *kcontrol,
238 struct snd_ctl_elem_value *ucontrol)
239{
240 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Takashi Iwai967b1302015-03-20 18:21:03 +0100241 ucontrol->value.enumerated.item[0] = codec->power_save_node;
Takashi Iwai24088a52011-06-17 16:59:21 +0200242 return 0;
243}
244
245static int via_pin_power_ctl_put(struct snd_kcontrol *kcontrol,
246 struct snd_ctl_elem_value *ucontrol)
247{
248 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
249 struct via_spec *spec = codec->spec;
Takashi Iwai688b12c2015-03-17 15:56:05 +0100250 bool val = !!ucontrol->value.enumerated.item[0];
Takashi Iwai24088a52011-06-17 16:59:21 +0200251
Takashi Iwai967b1302015-03-20 18:21:03 +0100252 if (val == codec->power_save_node)
Takashi Iwai24088a52011-06-17 16:59:21 +0200253 return 0;
Takashi Iwai967b1302015-03-20 18:21:03 +0100254 codec->power_save_node = val;
Takashi Iwai688b12c2015-03-17 15:56:05 +0100255 spec->gen.power_down_unused = val;
Takashi Iwaie9d010c2012-02-01 10:33:23 +0100256 analog_low_current_mode(codec);
Takashi Iwai24088a52011-06-17 16:59:21 +0200257 return 1;
258}
259
Takashi Iwaib3f60082013-01-07 12:27:36 +0100260static const struct snd_kcontrol_new via_pin_power_ctl_enum[] = {
261 {
Takashi Iwai24088a52011-06-17 16:59:21 +0200262 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
263 .name = "Dynamic Power-Control",
264 .info = via_pin_power_ctl_info,
265 .get = via_pin_power_ctl_get,
266 .put = via_pin_power_ctl_put,
Takashi Iwaib3f60082013-01-07 12:27:36 +0100267 },
268 {} /* terminator */
Takashi Iwai24088a52011-06-17 16:59:21 +0200269};
270
W. Trevor King47384652015-03-25 00:43:42 -0700271#ifdef CONFIG_SND_HDA_INPUT_BEEP
272static inline void set_beep_amp(struct via_spec *spec, hda_nid_t nid,
273 int idx, int dir)
274{
275 spec->gen.beep_nid = nid;
276 spec->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 1, idx, dir);
277}
278
279/* additional beep mixers; the actual parameters are overwritten at build */
280static const struct snd_kcontrol_new cxt_beep_mixer[] = {
281 HDA_CODEC_VOLUME_MONO("Beep Playback Volume", 0, 1, 0, HDA_OUTPUT),
282 HDA_CODEC_MUTE_BEEP_MONO("Beep Playback Switch", 0, 1, 0, HDA_OUTPUT),
283 { } /* end */
284};
285
286/* create beep controls if needed */
287static int add_beep_ctls(struct hda_codec *codec)
288{
289 struct via_spec *spec = codec->spec;
290 int err;
291
292 if (spec->beep_amp) {
293 const struct snd_kcontrol_new *knew;
294 for (knew = cxt_beep_mixer; knew->name; knew++) {
295 struct snd_kcontrol *kctl;
296 kctl = snd_ctl_new1(knew, codec);
297 if (!kctl)
298 return -ENOMEM;
299 kctl->private_value = spec->beep_amp;
300 err = snd_hda_ctl_add(codec, 0, kctl);
301 if (err < 0)
302 return err;
303 }
304 }
305 return 0;
306}
307
308static void auto_parse_beep(struct hda_codec *codec)
309{
310 struct via_spec *spec = codec->spec;
311 hda_nid_t nid;
312
313 for_each_hda_codec_node(nid, codec)
314 if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_BEEP) {
315 set_beep_amp(spec, nid, 0, HDA_OUTPUT);
316 break;
317 }
318}
319#else
320#define set_beep_amp(spec, nid, idx, dir) /* NOP */
321#define add_beep_ctls(codec) 0
322#define auto_parse_beep(codec)
323#endif
Takashi Iwai24088a52011-06-17 16:59:21 +0200324
Takashi Iwaiada509e2011-06-20 15:40:19 +0200325/* check AA path's mute status */
326static bool is_aa_path_mute(struct hda_codec *codec)
Lydia Wangf5271102009-10-10 19:07:35 +0800327{
Lydia Wangf5271102009-10-10 19:07:35 +0800328 struct via_spec *spec = codec->spec;
Takashi Iwaiada509e2011-06-20 15:40:19 +0200329 const struct hda_amp_list *p;
Takashi Iwai0186f4f2013-02-07 10:45:11 +0100330 int ch, v;
Takashi Iwaiada509e2011-06-20 15:40:19 +0200331
Takashi Iwai0186f4f2013-02-07 10:45:11 +0100332 p = spec->gen.loopback.amplist;
333 if (!p)
334 return true;
335 for (; p->nid; p++) {
Takashi Iwaiada509e2011-06-20 15:40:19 +0200336 for (ch = 0; ch < 2; ch++) {
337 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
338 p->idx);
339 if (!(v & HDA_AMP_MUTE) && v > 0)
340 return false;
Lydia Wangf5271102009-10-10 19:07:35 +0800341 }
342 }
Takashi Iwaiada509e2011-06-20 15:40:19 +0200343 return true;
Lydia Wangf5271102009-10-10 19:07:35 +0800344}
345
346/* enter/exit analog low-current mode */
Takashi Iwaie9d010c2012-02-01 10:33:23 +0100347static void __analog_low_current_mode(struct hda_codec *codec, bool force)
Lydia Wangf5271102009-10-10 19:07:35 +0800348{
349 struct via_spec *spec = codec->spec;
Takashi Iwaiada509e2011-06-20 15:40:19 +0200350 bool enable;
351 unsigned int verb, parm;
Lydia Wangf5271102009-10-10 19:07:35 +0800352
Takashi Iwai967b1302015-03-20 18:21:03 +0100353 if (!codec->power_save_node)
Takashi Iwaie9d010c2012-02-01 10:33:23 +0100354 enable = false;
355 else
Takashi Iwaib3f60082013-01-07 12:27:36 +0100356 enable = is_aa_path_mute(codec) && !spec->gen.active_streams;
Takashi Iwaie9d010c2012-02-01 10:33:23 +0100357 if (enable == spec->alc_mode && !force)
358 return;
359 spec->alc_mode = enable;
Lydia Wangf5271102009-10-10 19:07:35 +0800360
361 /* decide low current mode's verb & parameter */
362 switch (spec->codec_type) {
363 case VT1708B_8CH:
364 case VT1708B_4CH:
365 verb = 0xf70;
366 parm = enable ? 0x02 : 0x00; /* 0x02: 2/3x, 0x00: 1x */
367 break;
368 case VT1708S:
Lydia Wangeb7188c2009-10-10 19:08:34 +0800369 case VT1718S:
Lydia Wangf3db4232009-10-10 19:08:41 +0800370 case VT1716S:
Lydia Wangf5271102009-10-10 19:07:35 +0800371 verb = 0xf73;
372 parm = enable ? 0x51 : 0xe1; /* 0x51: 4/28x, 0xe1: 1x */
373 break;
374 case VT1702:
375 verb = 0xf73;
376 parm = enable ? 0x01 : 0x1d; /* 0x01: 4/40x, 0x1d: 1x */
377 break;
Lydia Wang25eaba22009-10-10 19:08:43 +0800378 case VT2002P:
Lydia Wangab6734e2009-10-10 19:08:46 +0800379 case VT1812:
Lydia Wang118909562011-03-23 17:57:34 +0800380 case VT1802:
Lydia Wang25eaba22009-10-10 19:08:43 +0800381 verb = 0xf93;
382 parm = enable ? 0x00 : 0xe0; /* 0x00: 4/40x, 0xe0: 1x */
383 break;
Lydia Wang43737e02012-12-10 18:28:11 +0800384 case VT1705CF:
Lydia Wang6121b842012-12-10 19:03:26 +0800385 case VT1808:
Lydia Wang43737e02012-12-10 18:28:11 +0800386 verb = 0xf82;
387 parm = enable ? 0x00 : 0xe0; /* 0x00: 4/40x, 0xe0: 1x */
388 break;
Lydia Wangf5271102009-10-10 19:07:35 +0800389 default:
390 return; /* other codecs are not supported */
391 }
392 /* send verb */
Takashi Iwai7639a062015-03-03 10:07:24 +0100393 snd_hda_codec_write(codec, codec->core.afg, 0, verb, parm);
Lydia Wangf5271102009-10-10 19:07:35 +0800394}
395
Takashi Iwaie9d010c2012-02-01 10:33:23 +0100396static void analog_low_current_mode(struct hda_codec *codec)
397{
398 return __analog_low_current_mode(codec, false);
399}
400
Joseph Chanc577b8a2006-11-29 15:29:40 +0100401static int via_build_controls(struct hda_codec *codec)
402{
403 struct via_spec *spec = codec->spec;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100404 int err, i;
Joseph Chanc577b8a2006-11-29 15:29:40 +0100405
Takashi Iwaib3f60082013-01-07 12:27:36 +0100406 err = snd_hda_gen_build_controls(codec);
407 if (err < 0)
408 return err;
409
W. Trevor King47384652015-03-25 00:43:42 -0700410 err = add_beep_ctls(codec);
411 if (err < 0)
412 return err;
413
Takashi Iwai688b12c2015-03-17 15:56:05 +0100414 spec->mixers[spec->num_mixers++] = via_pin_power_ctl_enum;
Takashi Iwai24088a52011-06-17 16:59:21 +0200415
Joseph Chanc577b8a2006-11-29 15:29:40 +0100416 for (i = 0; i < spec->num_mixers; i++) {
417 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
418 if (err < 0)
419 return err;
420 }
421
Joseph Chanc577b8a2006-11-29 15:29:40 +0100422 return 0;
423}
424
Takashi Iwaib3f60082013-01-07 12:27:36 +0100425static void via_playback_pcm_hook(struct hda_pcm_stream *hinfo,
426 struct hda_codec *codec,
427 struct snd_pcm_substream *substream,
428 int action)
Joseph Chanc577b8a2006-11-29 15:29:40 +0100429{
Takashi Iwaib3f60082013-01-07 12:27:36 +0100430 analog_low_current_mode(codec);
431 vt1708_update_hp_work(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +0100432}
433
434static void via_free(struct hda_codec *codec)
435{
Takashi Iwaib3f60082013-01-07 12:27:36 +0100436 vt1708_stop_hp_work(codec);
Takashi Iwaia8dca462014-02-10 18:23:57 +0100437 snd_hda_gen_free(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +0100438}
439
Takashi Iwai2a439522011-07-26 09:52:50 +0200440#ifdef CONFIG_PM
Takashi Iwai68cb2b52012-07-02 15:20:37 +0200441static int via_suspend(struct hda_codec *codec)
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800442{
443 struct via_spec *spec = codec->spec;
Takashi Iwaib3f60082013-01-07 12:27:36 +0100444 vt1708_stop_hp_work(codec);
David Henningsson94c142a2012-08-09 10:56:12 +0200445
Takashi Iwai2c38d992013-06-05 15:25:18 +0200446 /* Fix pop noise on headphones */
447 if (spec->codec_type == VT1802)
448 snd_hda_shutup_pins(codec);
David Henningsson94c142a2012-08-09 10:56:12 +0200449
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800450 return 0;
451}
452#endif
453
Takashi Iwai83012a72012-08-24 18:38:08 +0200454#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +0200455static int via_check_power_status(struct hda_codec *codec, hda_nid_t nid)
456{
457 struct via_spec *spec = codec->spec;
Takashi Iwaib3f60082013-01-07 12:27:36 +0100458 analog_low_current_mode(codec);
459 vt1708_update_hp_work(codec);
460 return snd_hda_check_amp_list_power(codec, &spec->gen.loopback, nid);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200461}
462#endif
463
Joseph Chanc577b8a2006-11-29 15:29:40 +0100464/*
465 */
Takashi Iwai5d417622011-06-20 11:32:27 +0200466
467static int via_init(struct hda_codec *codec);
468
Takashi Iwai90dd48a2011-05-02 12:38:19 +0200469static const struct hda_codec_ops via_patch_ops = {
Joseph Chanc577b8a2006-11-29 15:29:40 +0100470 .build_controls = via_build_controls,
Takashi Iwaib3f60082013-01-07 12:27:36 +0100471 .build_pcms = snd_hda_gen_build_pcms,
Joseph Chanc577b8a2006-11-29 15:29:40 +0100472 .init = via_init,
473 .free = via_free,
David Henningsson4e2d16d2012-10-08 15:44:14 +0200474 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwaicfd31132015-04-09 15:23:59 +0200475 .stream_pm = snd_hda_gen_stream_pm,
Takashi Iwai2a439522011-07-26 09:52:50 +0200476#ifdef CONFIG_PM
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800477 .suspend = via_suspend,
Takashi Iwaicb53c622007-08-10 17:21:45 +0200478 .check_power_status = via_check_power_status,
479#endif
Joseph Chanc577b8a2006-11-29 15:29:40 +0100480};
481
Takashi Iwai4a796162011-06-17 17:53:38 +0200482
Takashi Iwaib3f60082013-01-07 12:27:36 +0100483static const struct hda_verb vt1708_init_verbs[] = {
484 /* power down jack detect function */
485 {0x1, 0xf81, 0x1},
486 { }
Takashi Iwai3214b962011-07-18 12:49:25 +0200487};
Harald Welte76d9b0d2008-09-09 15:50:37 +0800488static void vt1708_set_pinconfig_connect(struct hda_codec *codec, hda_nid_t nid)
489{
490 unsigned int def_conf;
491 unsigned char seqassoc;
492
Takashi Iwai2f334f92009-02-20 14:37:42 +0100493 def_conf = snd_hda_codec_get_pincfg(codec, nid);
Harald Welte76d9b0d2008-09-09 15:50:37 +0800494 seqassoc = (unsigned char) get_defcfg_association(def_conf);
495 seqassoc = (seqassoc << 4) | get_defcfg_sequence(def_conf);
Lydia Wang82ef9e42009-10-10 19:08:19 +0800496 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE
497 && (seqassoc == 0xf0 || seqassoc == 0xff)) {
498 def_conf = def_conf & (~(AC_JACK_PORT_BOTH << 30));
499 snd_hda_codec_set_pincfg(codec, nid, def_conf);
Harald Welte76d9b0d2008-09-09 15:50:37 +0800500 }
501
502 return;
503}
504
Takashi Iwaie06e5a22011-06-17 15:46:13 +0200505static int vt1708_jack_detect_get(struct snd_kcontrol *kcontrol,
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800506 struct snd_ctl_elem_value *ucontrol)
507{
508 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
509 struct via_spec *spec = codec->spec;
510
511 if (spec->codec_type != VT1708)
512 return 0;
Takashi Iwaie06e5a22011-06-17 15:46:13 +0200513 ucontrol->value.integer.value[0] = spec->vt1708_jack_detect;
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800514 return 0;
515}
516
Takashi Iwaie06e5a22011-06-17 15:46:13 +0200517static int vt1708_jack_detect_put(struct snd_kcontrol *kcontrol,
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800518 struct snd_ctl_elem_value *ucontrol)
519{
520 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
521 struct via_spec *spec = codec->spec;
Takashi Iwai187d3332011-11-24 16:33:09 +0100522 int val;
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800523
524 if (spec->codec_type != VT1708)
525 return 0;
Takashi Iwai187d3332011-11-24 16:33:09 +0100526 val = !!ucontrol->value.integer.value[0];
527 if (spec->vt1708_jack_detect == val)
528 return 0;
529 spec->vt1708_jack_detect = val;
Takashi Iwaib3f60082013-01-07 12:27:36 +0100530 vt1708_update_hp_work(codec);
Takashi Iwai187d3332011-11-24 16:33:09 +0100531 return 1;
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800532}
533
Takashi Iwaib3f60082013-01-07 12:27:36 +0100534static const struct snd_kcontrol_new vt1708_jack_detect_ctl[] = {
535 {
Takashi Iwaie06e5a22011-06-17 15:46:13 +0200536 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
537 .name = "Jack Detect",
538 .count = 1,
539 .info = snd_ctl_boolean_mono_info,
540 .get = vt1708_jack_detect_get,
541 .put = vt1708_jack_detect_put,
Takashi Iwaib3f60082013-01-07 12:27:36 +0100542 },
543 {} /* terminator */
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800544};
545
Takashi Iwai4abdbd12013-03-22 15:11:07 +0100546static const struct badness_table via_main_out_badness = {
547 .no_primary_dac = 0x10000,
548 .no_dac = 0x4000,
549 .shared_primary = 0x10000,
550 .shared_surr = 0x20,
551 .shared_clfe = 0x20,
552 .shared_surr_main = 0x20,
553};
554static const struct badness_table via_extra_out_badness = {
555 .no_primary_dac = 0x4000,
556 .no_dac = 0x4000,
557 .shared_primary = 0x12,
558 .shared_surr = 0x20,
559 .shared_clfe = 0x20,
560 .shared_surr_main = 0x10,
561};
562
Takashi Iwaib3f60082013-01-07 12:27:36 +0100563static int via_parse_auto_config(struct hda_codec *codec)
564{
565 struct via_spec *spec = codec->spec;
566 int err;
567
Takashi Iwai4abdbd12013-03-22 15:11:07 +0100568 spec->gen.main_out_badness = &via_main_out_badness;
569 spec->gen.extra_out_badness = &via_extra_out_badness;
570
Takashi Iwaib3f60082013-01-07 12:27:36 +0100571 err = snd_hda_parse_pin_defcfg(codec, &spec->gen.autocfg, NULL, 0);
572 if (err < 0)
573 return err;
574
W. Trevor King47384652015-03-25 00:43:42 -0700575 auto_parse_beep(codec);
576
Takashi Iwaib3f60082013-01-07 12:27:36 +0100577 err = snd_hda_gen_parse_auto_config(codec, &spec->gen.autocfg);
578 if (err < 0)
579 return err;
580
Takashi Iwai688b12c2015-03-17 15:56:05 +0100581 /* disable widget PM at start for compatibility */
Takashi Iwai967b1302015-03-20 18:21:03 +0100582 codec->power_save_node = 0;
Takashi Iwai688b12c2015-03-17 15:56:05 +0100583 spec->gen.power_down_unused = 0;
Takashi Iwaib3f60082013-01-07 12:27:36 +0100584 return 0;
Takashi Iwai4a918ff2011-06-20 12:39:26 +0200585}
586
Takashi Iwai5d417622011-06-20 11:32:27 +0200587static int via_init(struct hda_codec *codec)
588{
589 struct via_spec *spec = codec->spec;
590 int i;
591
592 for (i = 0; i < spec->num_iverbs; i++)
593 snd_hda_sequence_write(codec, spec->init_verbs[i]);
594
Takashi Iwaie9d010c2012-02-01 10:33:23 +0100595 /* init power states */
Takashi Iwaie9d010c2012-02-01 10:33:23 +0100596 __analog_low_current_mode(codec, true);
597
Takashi Iwaib3f60082013-01-07 12:27:36 +0100598 snd_hda_gen_init(codec);
Lydia Wang118909562011-03-23 17:57:34 +0800599
Takashi Iwaib3f60082013-01-07 12:27:36 +0100600 vt1708_update_hp_work(codec);
Lydia Wang25eaba22009-10-10 19:08:43 +0800601
Joseph Chanc577b8a2006-11-29 15:29:40 +0100602 return 0;
603}
604
David Henningssonf672f652013-02-05 12:06:02 +0100605static int vt1708_build_controls(struct hda_codec *codec)
606{
607 /* In order not to create "Phantom Jack" controls,
608 temporary enable jackpoll */
609 int err;
610 int old_interval = codec->jackpoll_interval;
611 codec->jackpoll_interval = msecs_to_jiffies(100);
612 err = via_build_controls(codec);
613 codec->jackpoll_interval = old_interval;
614 return err;
615}
616
Takashi Iwaib3f60082013-01-07 12:27:36 +0100617static int vt1708_build_pcms(struct hda_codec *codec)
Takashi Iwai337b9d02009-07-07 18:18:59 +0200618{
619 struct via_spec *spec = codec->spec;
Takashi Iwaib3f60082013-01-07 12:27:36 +0100620 int i, err;
Takashi Iwai337b9d02009-07-07 18:18:59 +0200621
Takashi Iwaib3f60082013-01-07 12:27:36 +0100622 err = snd_hda_gen_build_pcms(codec);
Takashi Iwai7639a062015-03-03 10:07:24 +0100623 if (err < 0 || codec->core.vendor_id != 0x11061708)
Takashi Iwaib3f60082013-01-07 12:27:36 +0100624 return err;
625
626 /* We got noisy outputs on the right channel on VT1708 when
627 * 24bit samples are used. Until any workaround is found,
628 * disable the 24bit format, so far.
629 */
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100630 for (i = 0; i < ARRAY_SIZE(spec->gen.pcm_rec); i++) {
631 struct hda_pcm *info = spec->gen.pcm_rec[i];
632 if (!info)
633 continue;
Takashi Iwaib3f60082013-01-07 12:27:36 +0100634 if (!info->stream[SNDRV_PCM_STREAM_PLAYBACK].substreams ||
635 info->pcm_type != HDA_PCM_TYPE_AUDIO)
636 continue;
637 info->stream[SNDRV_PCM_STREAM_PLAYBACK].formats =
638 SNDRV_PCM_FMTBIT_S16_LE;
Takashi Iwai337b9d02009-07-07 18:18:59 +0200639 }
Takashi Iwaib3f60082013-01-07 12:27:36 +0100640
Takashi Iwai1c55d522009-07-08 07:45:46 +0200641 return 0;
Takashi Iwai337b9d02009-07-07 18:18:59 +0200642}
643
Joseph Chanc577b8a2006-11-29 15:29:40 +0100644static int patch_vt1708(struct hda_codec *codec)
645{
646 struct via_spec *spec;
647 int err;
648
649 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100650 spec = via_new_spec(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +0100651 if (spec == NULL)
652 return -ENOMEM;
653
Takashi Iwaib3f60082013-01-07 12:27:36 +0100654 spec->gen.mixer_nid = 0x17;
655
656 /* set jackpoll_interval while parsing the codec */
657 codec->jackpoll_interval = msecs_to_jiffies(100);
658 spec->vt1708_jack_detect = 1;
659
660 /* don't support the input jack switching due to lack of unsol event */
661 /* (it may work with polling, though, but it needs testing) */
662 spec->gen.suppress_auto_mic = 1;
Takashi Iwaieb33ccf2013-06-24 16:18:10 +0200663 /* Some machines show the broken speaker mute */
664 spec->gen.auto_mute_via_amp = 1;
Takashi Iwai620e2b22011-06-17 17:19:19 +0200665
Takashi Iwai12daef62011-06-18 17:45:49 +0200666 /* Add HP and CD pin config connect bit re-config action */
667 vt1708_set_pinconfig_connect(codec, VT1708_HP_PIN_NID);
668 vt1708_set_pinconfig_connect(codec, VT1708_CD_PIN_NID);
669
Joseph Chanc577b8a2006-11-29 15:29:40 +0100670 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +0200671 err = via_parse_auto_config(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +0100672 if (err < 0) {
673 via_free(codec);
674 return err;
Joseph Chanc577b8a2006-11-29 15:29:40 +0100675 }
676
Takashi Iwai12daef62011-06-18 17:45:49 +0200677 /* add jack detect on/off control */
Takashi Iwaib3f60082013-01-07 12:27:36 +0100678 spec->mixers[spec->num_mixers++] = vt1708_jack_detect_ctl;
Joseph Chanc577b8a2006-11-29 15:29:40 +0100679
Lydia Wange322a362011-06-29 13:52:02 +0800680 spec->init_verbs[spec->num_iverbs++] = vt1708_init_verbs;
681
Joseph Chanc577b8a2006-11-29 15:29:40 +0100682 codec->patch_ops = via_patch_ops;
David Henningssonf672f652013-02-05 12:06:02 +0100683 codec->patch_ops.build_controls = vt1708_build_controls;
Takashi Iwaib3f60082013-01-07 12:27:36 +0100684 codec->patch_ops.build_pcms = vt1708_build_pcms;
Joseph Chanc577b8a2006-11-29 15:29:40 +0100685
Takashi Iwaib3f60082013-01-07 12:27:36 +0100686 /* clear jackpoll_interval again; it's set dynamically */
687 codec->jackpoll_interval = 0;
688
Joseph Chanc577b8a2006-11-29 15:29:40 +0100689 return 0;
690}
691
Takashi Iwaiddd304d2011-06-21 16:33:55 +0200692static int patch_vt1709(struct hda_codec *codec)
Joseph Chanc577b8a2006-11-29 15:29:40 +0100693{
694 struct via_spec *spec;
695 int err;
696
697 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100698 spec = via_new_spec(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +0100699 if (spec == NULL)
700 return -ENOMEM;
701
Takashi Iwaib3f60082013-01-07 12:27:36 +0100702 spec->gen.mixer_nid = 0x18;
Takashi Iwai620e2b22011-06-17 17:19:19 +0200703
Takashi Iwai12daef62011-06-18 17:45:49 +0200704 err = via_parse_auto_config(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +0100705 if (err < 0) {
706 via_free(codec);
707 return err;
Joseph Chanc577b8a2006-11-29 15:29:40 +0100708 }
709
Joseph Chanc577b8a2006-11-29 15:29:40 +0100710 codec->patch_ops = via_patch_ops;
711
Josepch Chanf7278fd2007-12-13 16:40:40 +0100712 return 0;
713}
714
Lydia Wang518bf3b2009-10-10 19:07:29 +0800715static int patch_vt1708S(struct hda_codec *codec);
Takashi Iwaiddd304d2011-06-21 16:33:55 +0200716static int patch_vt1708B(struct hda_codec *codec)
Josepch Chanf7278fd2007-12-13 16:40:40 +0100717{
718 struct via_spec *spec;
719 int err;
720
Lydia Wang518bf3b2009-10-10 19:07:29 +0800721 if (get_codec_type(codec) == VT1708BCE)
722 return patch_vt1708S(codec);
Takashi Iwaiddd304d2011-06-21 16:33:55 +0200723
Josepch Chanf7278fd2007-12-13 16:40:40 +0100724 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100725 spec = via_new_spec(codec);
Josepch Chanf7278fd2007-12-13 16:40:40 +0100726 if (spec == NULL)
727 return -ENOMEM;
728
Takashi Iwaib3f60082013-01-07 12:27:36 +0100729 spec->gen.mixer_nid = 0x16;
Takashi Iwai620e2b22011-06-17 17:19:19 +0200730
Josepch Chanf7278fd2007-12-13 16:40:40 +0100731 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +0200732 err = via_parse_auto_config(codec);
Josepch Chanf7278fd2007-12-13 16:40:40 +0100733 if (err < 0) {
734 via_free(codec);
735 return err;
Josepch Chanf7278fd2007-12-13 16:40:40 +0100736 }
737
Josepch Chanf7278fd2007-12-13 16:40:40 +0100738 codec->patch_ops = via_patch_ops;
Josepch Chanf7278fd2007-12-13 16:40:40 +0100739 return 0;
740}
741
Harald Welted949cac2008-09-09 15:56:01 +0800742/* Patch for VT1708S */
Takashi Iwai096a8852011-06-20 12:09:02 +0200743static const struct hda_verb vt1708S_init_verbs[] = {
Harald Welted7426322008-09-15 22:43:23 +0800744 /* Enable Mic Boost Volume backdoor */
745 {0x1, 0xf98, 0x1},
Lydia Wangbc7e7e52009-10-10 19:08:32 +0800746 /* don't bybass mixer */
747 {0x1, 0xf88, 0xc0},
Harald Welted949cac2008-09-09 15:56:01 +0800748 { }
749};
750
Lydia Wang6369bcf2009-10-10 19:08:31 +0800751static void override_mic_boost(struct hda_codec *codec, hda_nid_t pin,
752 int offset, int num_steps, int step_size)
753{
Takashi Iwaid045c5d2013-06-19 07:54:09 +0200754 snd_hda_override_wcaps(codec, pin,
755 get_wcaps(codec, pin) | AC_WCAP_IN_AMP);
Lydia Wang6369bcf2009-10-10 19:08:31 +0800756 snd_hda_override_amp_caps(codec, pin, HDA_INPUT,
757 (offset << AC_AMPCAP_OFFSET_SHIFT) |
758 (num_steps << AC_AMPCAP_NUM_STEPS_SHIFT) |
759 (step_size << AC_AMPCAP_STEP_SIZE_SHIFT) |
760 (0 << AC_AMPCAP_MUTE_SHIFT));
761}
762
Harald Welted949cac2008-09-09 15:56:01 +0800763static int patch_vt1708S(struct hda_codec *codec)
764{
765 struct via_spec *spec;
766 int err;
767
768 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100769 spec = via_new_spec(codec);
Harald Welted949cac2008-09-09 15:56:01 +0800770 if (spec == NULL)
771 return -ENOMEM;
772
Takashi Iwaib3f60082013-01-07 12:27:36 +0100773 spec->gen.mixer_nid = 0x16;
Takashi Iwaid7a99cc2011-06-18 17:24:46 +0200774 override_mic_boost(codec, 0x1a, 0, 3, 40);
775 override_mic_boost(codec, 0x1e, 0, 3, 40);
Takashi Iwai620e2b22011-06-17 17:19:19 +0200776
Lydia Wang518bf3b2009-10-10 19:07:29 +0800777 /* correct names for VT1708BCE */
778 if (get_codec_type(codec) == VT1708BCE) {
Takashi Iwai7639a062015-03-03 10:07:24 +0100779 kfree(codec->core.chip_name);
780 codec->core.chip_name = kstrdup("VT1708BCE", GFP_KERNEL);
Takashi Iwai6efdd852015-02-27 16:09:22 +0100781 snprintf(codec->card->mixername,
782 sizeof(codec->card->mixername),
Takashi Iwai7639a062015-03-03 10:07:24 +0100783 "%s %s", codec->core.vendor_name, codec->core.chip_name);
Lydia Wang970f6302011-03-22 16:25:56 +0800784 }
Lydia Wangbc92df72011-03-23 17:56:05 +0800785 /* correct names for VT1705 */
Takashi Iwai7639a062015-03-03 10:07:24 +0100786 if (codec->core.vendor_id == 0x11064397) {
787 kfree(codec->core.chip_name);
788 codec->core.chip_name = kstrdup("VT1705", GFP_KERNEL);
Takashi Iwai6efdd852015-02-27 16:09:22 +0100789 snprintf(codec->card->mixername,
790 sizeof(codec->card->mixername),
Takashi Iwai7639a062015-03-03 10:07:24 +0100791 "%s %s", codec->core.vendor_name, codec->core.chip_name);
Lydia Wangbc92df72011-03-23 17:56:05 +0800792 }
Takashi Iwaib3f60082013-01-07 12:27:36 +0100793
794 /* automatic parse from the BIOS config */
795 err = via_parse_auto_config(codec);
796 if (err < 0) {
797 via_free(codec);
798 return err;
799 }
800
801 spec->init_verbs[spec->num_iverbs++] = vt1708S_init_verbs;
802
803 codec->patch_ops = via_patch_ops;
Harald Welted949cac2008-09-09 15:56:01 +0800804 return 0;
805}
806
807/* Patch for VT1702 */
808
Takashi Iwai096a8852011-06-20 12:09:02 +0200809static const struct hda_verb vt1702_init_verbs[] = {
Lydia Wangbc7e7e52009-10-10 19:08:32 +0800810 /* mixer enable */
811 {0x1, 0xF88, 0x3},
812 /* GPIO 0~2 */
813 {0x1, 0xF82, 0x3F},
Harald Welted949cac2008-09-09 15:56:01 +0800814 { }
815};
816
Harald Welted949cac2008-09-09 15:56:01 +0800817static int patch_vt1702(struct hda_codec *codec)
818{
819 struct via_spec *spec;
820 int err;
Harald Welted949cac2008-09-09 15:56:01 +0800821
822 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100823 spec = via_new_spec(codec);
Harald Welted949cac2008-09-09 15:56:01 +0800824 if (spec == NULL)
825 return -ENOMEM;
826
Takashi Iwaib3f60082013-01-07 12:27:36 +0100827 spec->gen.mixer_nid = 0x1a;
Takashi Iwai620e2b22011-06-17 17:19:19 +0200828
Takashi Iwai12daef62011-06-18 17:45:49 +0200829 /* limit AA path volume to 0 dB */
830 snd_hda_override_amp_caps(codec, 0x1A, HDA_INPUT,
831 (0x17 << AC_AMPCAP_OFFSET_SHIFT) |
832 (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) |
833 (0x5 << AC_AMPCAP_STEP_SIZE_SHIFT) |
834 (1 << AC_AMPCAP_MUTE_SHIFT));
835
Harald Welted949cac2008-09-09 15:56:01 +0800836 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +0200837 err = via_parse_auto_config(codec);
Harald Welted949cac2008-09-09 15:56:01 +0800838 if (err < 0) {
839 via_free(codec);
840 return err;
Harald Welted949cac2008-09-09 15:56:01 +0800841 }
842
Takashi Iwai096a8852011-06-20 12:09:02 +0200843 spec->init_verbs[spec->num_iverbs++] = vt1702_init_verbs;
Harald Welted949cac2008-09-09 15:56:01 +0800844
Harald Welted949cac2008-09-09 15:56:01 +0800845 codec->patch_ops = via_patch_ops;
Harald Welted949cac2008-09-09 15:56:01 +0800846 return 0;
847}
848
Lydia Wangeb7188c2009-10-10 19:08:34 +0800849/* Patch for VT1718S */
850
Takashi Iwai096a8852011-06-20 12:09:02 +0200851static const struct hda_verb vt1718S_init_verbs[] = {
Lydia Wang4ab2d532011-03-24 12:42:03 +0800852 /* Enable MW0 adjust Gain 5 */
853 {0x1, 0xfb2, 0x10},
Lydia Wangeb7188c2009-10-10 19:08:34 +0800854 /* Enable Boost Volume backdoor */
855 {0x1, 0xf88, 0x8},
Takashi Iwai5d417622011-06-20 11:32:27 +0200856
Lydia Wangeb7188c2009-10-10 19:08:34 +0800857 { }
858};
859
Takashi Iwai30b45032011-07-11 17:05:04 +0200860/* Add a connection to the primary DAC from AA-mixer for some codecs
861 * This isn't listed from the raw info, but the chip has a secret connection.
862 */
863static int add_secret_dac_path(struct hda_codec *codec)
864{
865 struct via_spec *spec = codec->spec;
866 int i, nums;
867 hda_nid_t conn[8];
868 hda_nid_t nid;
869
Takashi Iwaib3f60082013-01-07 12:27:36 +0100870 if (!spec->gen.mixer_nid)
Takashi Iwai30b45032011-07-11 17:05:04 +0200871 return 0;
Takashi Iwaib3f60082013-01-07 12:27:36 +0100872 nums = snd_hda_get_connections(codec, spec->gen.mixer_nid, conn,
Takashi Iwai30b45032011-07-11 17:05:04 +0200873 ARRAY_SIZE(conn) - 1);
874 for (i = 0; i < nums; i++) {
875 if (get_wcaps_type(get_wcaps(codec, conn[i])) == AC_WID_AUD_OUT)
876 return 0;
877 }
878
879 /* find the primary DAC and add to the connection list */
Takashi Iwai7639a062015-03-03 10:07:24 +0100880 for_each_hda_codec_node(nid, codec) {
Takashi Iwai30b45032011-07-11 17:05:04 +0200881 unsigned int caps = get_wcaps(codec, nid);
882 if (get_wcaps_type(caps) == AC_WID_AUD_OUT &&
883 !(caps & AC_WCAP_DIGITAL)) {
884 conn[nums++] = nid;
885 return snd_hda_override_conn_list(codec,
Takashi Iwaib3f60082013-01-07 12:27:36 +0100886 spec->gen.mixer_nid,
Takashi Iwai30b45032011-07-11 17:05:04 +0200887 nums, conn);
888 }
889 }
890 return 0;
891}
892
893
Lydia Wangeb7188c2009-10-10 19:08:34 +0800894static int patch_vt1718S(struct hda_codec *codec)
895{
896 struct via_spec *spec;
897 int err;
898
899 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100900 spec = via_new_spec(codec);
Lydia Wangeb7188c2009-10-10 19:08:34 +0800901 if (spec == NULL)
902 return -ENOMEM;
903
Takashi Iwaib3f60082013-01-07 12:27:36 +0100904 spec->gen.mixer_nid = 0x21;
Takashi Iwaid7a99cc2011-06-18 17:24:46 +0200905 override_mic_boost(codec, 0x2b, 0, 3, 40);
906 override_mic_boost(codec, 0x29, 0, 3, 40);
Takashi Iwai30b45032011-07-11 17:05:04 +0200907 add_secret_dac_path(codec);
Takashi Iwai620e2b22011-06-17 17:19:19 +0200908
Lydia Wangeb7188c2009-10-10 19:08:34 +0800909 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +0200910 err = via_parse_auto_config(codec);
Lydia Wangeb7188c2009-10-10 19:08:34 +0800911 if (err < 0) {
912 via_free(codec);
913 return err;
Lydia Wangeb7188c2009-10-10 19:08:34 +0800914 }
915
Takashi Iwai096a8852011-06-20 12:09:02 +0200916 spec->init_verbs[spec->num_iverbs++] = vt1718S_init_verbs;
Lydia Wangeb7188c2009-10-10 19:08:34 +0800917
Lydia Wangeb7188c2009-10-10 19:08:34 +0800918 codec->patch_ops = via_patch_ops;
Lydia Wangeb7188c2009-10-10 19:08:34 +0800919 return 0;
920}
Lydia Wangf3db4232009-10-10 19:08:41 +0800921
922/* Patch for VT1716S */
923
924static int vt1716s_dmic_info(struct snd_kcontrol *kcontrol,
925 struct snd_ctl_elem_info *uinfo)
926{
927 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
928 uinfo->count = 1;
929 uinfo->value.integer.min = 0;
930 uinfo->value.integer.max = 1;
931 return 0;
932}
933
934static int vt1716s_dmic_get(struct snd_kcontrol *kcontrol,
935 struct snd_ctl_elem_value *ucontrol)
936{
937 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
938 int index = 0;
939
940 index = snd_hda_codec_read(codec, 0x26, 0,
941 AC_VERB_GET_CONNECT_SEL, 0);
942 if (index != -1)
943 *ucontrol->value.integer.value = index;
944
945 return 0;
946}
947
948static int vt1716s_dmic_put(struct snd_kcontrol *kcontrol,
949 struct snd_ctl_elem_value *ucontrol)
950{
951 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
952 struct via_spec *spec = codec->spec;
953 int index = *ucontrol->value.integer.value;
954
955 snd_hda_codec_write(codec, 0x26, 0,
956 AC_VERB_SET_CONNECT_SEL, index);
957 spec->dmic_enabled = index;
Lydia Wangf3db4232009-10-10 19:08:41 +0800958 return 1;
959}
960
Takashi Iwai90dd48a2011-05-02 12:38:19 +0200961static const struct snd_kcontrol_new vt1716s_dmic_mixer[] = {
Lydia Wangf3db4232009-10-10 19:08:41 +0800962 HDA_CODEC_VOLUME("Digital Mic Capture Volume", 0x22, 0x0, HDA_INPUT),
963 {
964 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
965 .name = "Digital Mic Capture Switch",
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100966 .subdevice = HDA_SUBDEV_NID_FLAG | 0x26,
Lydia Wangf3db4232009-10-10 19:08:41 +0800967 .count = 1,
968 .info = vt1716s_dmic_info,
969 .get = vt1716s_dmic_get,
970 .put = vt1716s_dmic_put,
971 },
972 {} /* end */
973};
974
975
976/* mono-out mixer elements */
Takashi Iwai90dd48a2011-05-02 12:38:19 +0200977static const struct snd_kcontrol_new vt1716S_mono_out_mixer[] = {
Lydia Wangf3db4232009-10-10 19:08:41 +0800978 HDA_CODEC_MUTE("Mono Playback Switch", 0x2a, 0x0, HDA_OUTPUT),
979 { } /* end */
980};
981
Takashi Iwai096a8852011-06-20 12:09:02 +0200982static const struct hda_verb vt1716S_init_verbs[] = {
Lydia Wangf3db4232009-10-10 19:08:41 +0800983 /* Enable Boost Volume backdoor */
984 {0x1, 0xf8a, 0x80},
985 /* don't bybass mixer */
986 {0x1, 0xf88, 0xc0},
987 /* Enable mono output */
988 {0x1, 0xf90, 0x08},
989 { }
990};
991
Lydia Wangf3db4232009-10-10 19:08:41 +0800992static int patch_vt1716S(struct hda_codec *codec)
993{
994 struct via_spec *spec;
995 int err;
996
997 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100998 spec = via_new_spec(codec);
Lydia Wangf3db4232009-10-10 19:08:41 +0800999 if (spec == NULL)
1000 return -ENOMEM;
1001
Takashi Iwaib3f60082013-01-07 12:27:36 +01001002 spec->gen.mixer_nid = 0x16;
Takashi Iwaid7a99cc2011-06-18 17:24:46 +02001003 override_mic_boost(codec, 0x1a, 0, 3, 40);
1004 override_mic_boost(codec, 0x1e, 0, 3, 40);
Takashi Iwai620e2b22011-06-17 17:19:19 +02001005
Lydia Wangf3db4232009-10-10 19:08:41 +08001006 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +02001007 err = via_parse_auto_config(codec);
Lydia Wangf3db4232009-10-10 19:08:41 +08001008 if (err < 0) {
1009 via_free(codec);
1010 return err;
Lydia Wangf3db4232009-10-10 19:08:41 +08001011 }
1012
Takashi Iwai096a8852011-06-20 12:09:02 +02001013 spec->init_verbs[spec->num_iverbs++] = vt1716S_init_verbs;
Lydia Wangf3db4232009-10-10 19:08:41 +08001014
Takashi Iwaib3f60082013-01-07 12:27:36 +01001015 spec->mixers[spec->num_mixers++] = vt1716s_dmic_mixer;
Lydia Wangf3db4232009-10-10 19:08:41 +08001016 spec->mixers[spec->num_mixers++] = vt1716S_mono_out_mixer;
1017
1018 codec->patch_ops = via_patch_ops;
Lydia Wangf3db4232009-10-10 19:08:41 +08001019 return 0;
1020}
Lydia Wang25eaba22009-10-10 19:08:43 +08001021
1022/* for vt2002P */
1023
Takashi Iwai096a8852011-06-20 12:09:02 +02001024static const struct hda_verb vt2002P_init_verbs[] = {
Lydia Wangeadb9a82011-03-24 12:43:02 +08001025 /* Class-D speaker related verbs */
1026 {0x1, 0xfe0, 0x4},
1027 {0x1, 0xfe9, 0x80},
1028 {0x1, 0xfe2, 0x22},
Lydia Wang25eaba22009-10-10 19:08:43 +08001029 /* Enable Boost Volume backdoor */
1030 {0x1, 0xfb9, 0x24},
Lydia Wang25eaba22009-10-10 19:08:43 +08001031 /* Enable AOW0 to MW9 */
1032 {0x1, 0xfb8, 0x88},
1033 { }
1034};
Takashi Iwai4a918ff2011-06-20 12:39:26 +02001035
Takashi Iwai096a8852011-06-20 12:09:02 +02001036static const struct hda_verb vt1802_init_verbs[] = {
Lydia Wang118909562011-03-23 17:57:34 +08001037 /* Enable Boost Volume backdoor */
1038 {0x1, 0xfb9, 0x24},
Lydia Wang118909562011-03-23 17:57:34 +08001039 /* Enable AOW0 to MW9 */
1040 {0x1, 0xfb8, 0x88},
1041 { }
1042};
Lydia Wang25eaba22009-10-10 19:08:43 +08001043
David Henningsson4b527b62012-09-18 14:26:59 +02001044/*
1045 * pin fix-up
1046 */
1047enum {
1048 VIA_FIXUP_INTMIC_BOOST,
Takashi Iwaid5266122012-11-07 10:40:36 +01001049 VIA_FIXUP_ASUS_G75,
David Henningsson4b527b62012-09-18 14:26:59 +02001050};
1051
1052static void via_fixup_intmic_boost(struct hda_codec *codec,
1053 const struct hda_fixup *fix, int action)
1054{
1055 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1056 override_mic_boost(codec, 0x30, 0, 2, 40);
1057}
1058
1059static const struct hda_fixup via_fixups[] = {
1060 [VIA_FIXUP_INTMIC_BOOST] = {
1061 .type = HDA_FIXUP_FUNC,
1062 .v.func = via_fixup_intmic_boost,
1063 },
Takashi Iwaid5266122012-11-07 10:40:36 +01001064 [VIA_FIXUP_ASUS_G75] = {
1065 .type = HDA_FIXUP_PINS,
1066 .v.pins = (const struct hda_pintbl[]) {
1067 /* set 0x24 and 0x33 as speakers */
1068 { 0x24, 0x991301f0 },
1069 { 0x33, 0x991301f1 }, /* subwoofer */
1070 { }
1071 }
1072 },
David Henningsson4b527b62012-09-18 14:26:59 +02001073};
1074
1075static const struct snd_pci_quirk vt2002p_fixups[] = {
Takashi Iwaid5266122012-11-07 10:40:36 +01001076 SND_PCI_QUIRK(0x1043, 0x1487, "Asus G75", VIA_FIXUP_ASUS_G75),
David Henningsson4b527b62012-09-18 14:26:59 +02001077 SND_PCI_QUIRK(0x1043, 0x8532, "Asus X202E", VIA_FIXUP_INTMIC_BOOST),
1078 {}
1079};
1080
Takashi Iwaief4da452012-11-07 10:37:48 +01001081/* NIDs 0x24 and 0x33 on VT1802 have connections to non-existing NID 0x3e
1082 * Replace this with mixer NID 0x1c
1083 */
1084static void fix_vt1802_connections(struct hda_codec *codec)
1085{
1086 static hda_nid_t conn_24[] = { 0x14, 0x1c };
1087 static hda_nid_t conn_33[] = { 0x1c };
1088
1089 snd_hda_override_conn_list(codec, 0x24, ARRAY_SIZE(conn_24), conn_24);
1090 snd_hda_override_conn_list(codec, 0x33, ARRAY_SIZE(conn_33), conn_33);
1091}
1092
Lydia Wang25eaba22009-10-10 19:08:43 +08001093/* patch for vt2002P */
1094static int patch_vt2002P(struct hda_codec *codec)
1095{
1096 struct via_spec *spec;
1097 int err;
1098
1099 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001100 spec = via_new_spec(codec);
Lydia Wang25eaba22009-10-10 19:08:43 +08001101 if (spec == NULL)
1102 return -ENOMEM;
1103
Takashi Iwaib3f60082013-01-07 12:27:36 +01001104 spec->gen.mixer_nid = 0x21;
Takashi Iwaid7a99cc2011-06-18 17:24:46 +02001105 override_mic_boost(codec, 0x2b, 0, 3, 40);
1106 override_mic_boost(codec, 0x29, 0, 3, 40);
Takashi Iwaief4da452012-11-07 10:37:48 +01001107 if (spec->codec_type == VT1802)
1108 fix_vt1802_connections(codec);
Takashi Iwai30b45032011-07-11 17:05:04 +02001109 add_secret_dac_path(codec);
Takashi Iwai620e2b22011-06-17 17:19:19 +02001110
David Henningsson4b527b62012-09-18 14:26:59 +02001111 snd_hda_pick_fixup(codec, NULL, vt2002p_fixups, via_fixups);
1112 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1113
Lydia Wang25eaba22009-10-10 19:08:43 +08001114 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +02001115 err = via_parse_auto_config(codec);
Lydia Wang25eaba22009-10-10 19:08:43 +08001116 if (err < 0) {
1117 via_free(codec);
1118 return err;
Lydia Wang25eaba22009-10-10 19:08:43 +08001119 }
1120
Lydia Wang118909562011-03-23 17:57:34 +08001121 if (spec->codec_type == VT1802)
Takashi Iwai4a918ff2011-06-20 12:39:26 +02001122 spec->init_verbs[spec->num_iverbs++] = vt1802_init_verbs;
Lydia Wang118909562011-03-23 17:57:34 +08001123 else
Takashi Iwai4a918ff2011-06-20 12:39:26 +02001124 spec->init_verbs[spec->num_iverbs++] = vt2002P_init_verbs;
Lydia Wang118909562011-03-23 17:57:34 +08001125
Lydia Wang25eaba22009-10-10 19:08:43 +08001126 codec->patch_ops = via_patch_ops;
Lydia Wang25eaba22009-10-10 19:08:43 +08001127 return 0;
1128}
Lydia Wangab6734e2009-10-10 19:08:46 +08001129
1130/* for vt1812 */
1131
Takashi Iwai096a8852011-06-20 12:09:02 +02001132static const struct hda_verb vt1812_init_verbs[] = {
Lydia Wangab6734e2009-10-10 19:08:46 +08001133 /* Enable Boost Volume backdoor */
1134 {0x1, 0xfb9, 0x24},
Lydia Wangab6734e2009-10-10 19:08:46 +08001135 /* Enable AOW0 to MW9 */
1136 {0x1, 0xfb8, 0xa8},
1137 { }
1138};
1139
Lydia Wangab6734e2009-10-10 19:08:46 +08001140/* patch for vt1812 */
1141static int patch_vt1812(struct hda_codec *codec)
1142{
1143 struct via_spec *spec;
1144 int err;
1145
1146 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001147 spec = via_new_spec(codec);
Lydia Wangab6734e2009-10-10 19:08:46 +08001148 if (spec == NULL)
1149 return -ENOMEM;
1150
Takashi Iwaib3f60082013-01-07 12:27:36 +01001151 spec->gen.mixer_nid = 0x21;
Takashi Iwaid7a99cc2011-06-18 17:24:46 +02001152 override_mic_boost(codec, 0x2b, 0, 3, 40);
1153 override_mic_boost(codec, 0x29, 0, 3, 40);
Takashi Iwai30b45032011-07-11 17:05:04 +02001154 add_secret_dac_path(codec);
Takashi Iwai620e2b22011-06-17 17:19:19 +02001155
Lydia Wangab6734e2009-10-10 19:08:46 +08001156 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +02001157 err = via_parse_auto_config(codec);
Lydia Wangab6734e2009-10-10 19:08:46 +08001158 if (err < 0) {
1159 via_free(codec);
1160 return err;
Lydia Wangab6734e2009-10-10 19:08:46 +08001161 }
1162
Takashi Iwai096a8852011-06-20 12:09:02 +02001163 spec->init_verbs[spec->num_iverbs++] = vt1812_init_verbs;
Lydia Wangab6734e2009-10-10 19:08:46 +08001164
Lydia Wangab6734e2009-10-10 19:08:46 +08001165 codec->patch_ops = via_patch_ops;
Lydia Wangab6734e2009-10-10 19:08:46 +08001166 return 0;
1167}
1168
Lydia Wang43737e02012-12-10 18:28:11 +08001169/* patch for vt3476 */
1170
1171static const struct hda_verb vt3476_init_verbs[] = {
1172 /* Enable DMic 8/16/32K */
1173 {0x1, 0xF7B, 0x30},
1174 /* Enable Boost Volume backdoor */
1175 {0x1, 0xFB9, 0x20},
1176 /* Enable AOW-MW9 path */
1177 {0x1, 0xFB8, 0x10},
1178 { }
1179};
1180
Lydia Wang43737e02012-12-10 18:28:11 +08001181static int patch_vt3476(struct hda_codec *codec)
1182{
1183 struct via_spec *spec;
1184 int err;
1185
1186 /* create a codec specific record */
1187 spec = via_new_spec(codec);
1188 if (spec == NULL)
1189 return -ENOMEM;
1190
Takashi Iwaib3f60082013-01-07 12:27:36 +01001191 spec->gen.mixer_nid = 0x3f;
Lydia Wang43737e02012-12-10 18:28:11 +08001192 add_secret_dac_path(codec);
1193
1194 /* automatic parse from the BIOS config */
1195 err = via_parse_auto_config(codec);
1196 if (err < 0) {
1197 via_free(codec);
1198 return err;
1199 }
1200
1201 spec->init_verbs[spec->num_iverbs++] = vt3476_init_verbs;
1202
1203 codec->patch_ops = via_patch_ops;
Lydia Wang43737e02012-12-10 18:28:11 +08001204 return 0;
1205}
1206
Joseph Chanc577b8a2006-11-29 15:29:40 +01001207/*
1208 * patch entries
1209 */
Takashi Iwai90dd48a2011-05-02 12:38:19 +02001210static const struct hda_codec_preset snd_hda_preset_via[] = {
Takashi Iwai3218c172008-12-18 09:17:56 +01001211 { .id = 0x11061708, .name = "VT1708", .patch = patch_vt1708},
1212 { .id = 0x11061709, .name = "VT1708", .patch = patch_vt1708},
1213 { .id = 0x1106170a, .name = "VT1708", .patch = patch_vt1708},
1214 { .id = 0x1106170b, .name = "VT1708", .patch = patch_vt1708},
1215 { .id = 0x1106e710, .name = "VT1709 10-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001216 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01001217 { .id = 0x1106e711, .name = "VT1709 10-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001218 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01001219 { .id = 0x1106e712, .name = "VT1709 10-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001220 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01001221 { .id = 0x1106e713, .name = "VT1709 10-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001222 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01001223 { .id = 0x1106e714, .name = "VT1709 6-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001224 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01001225 { .id = 0x1106e715, .name = "VT1709 6-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001226 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01001227 { .id = 0x1106e716, .name = "VT1709 6-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001228 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01001229 { .id = 0x1106e717, .name = "VT1709 6-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001230 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01001231 { .id = 0x1106e720, .name = "VT1708B 8-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001232 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01001233 { .id = 0x1106e721, .name = "VT1708B 8-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001234 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01001235 { .id = 0x1106e722, .name = "VT1708B 8-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001236 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01001237 { .id = 0x1106e723, .name = "VT1708B 8-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001238 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01001239 { .id = 0x1106e724, .name = "VT1708B 4-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001240 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01001241 { .id = 0x1106e725, .name = "VT1708B 4-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001242 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01001243 { .id = 0x1106e726, .name = "VT1708B 4-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001244 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01001245 { .id = 0x1106e727, .name = "VT1708B 4-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02001246 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01001247 { .id = 0x11060397, .name = "VT1708S",
Harald Welted949cac2008-09-09 15:56:01 +08001248 .patch = patch_vt1708S},
Takashi Iwai3218c172008-12-18 09:17:56 +01001249 { .id = 0x11061397, .name = "VT1708S",
Harald Welted949cac2008-09-09 15:56:01 +08001250 .patch = patch_vt1708S},
Takashi Iwai3218c172008-12-18 09:17:56 +01001251 { .id = 0x11062397, .name = "VT1708S",
Harald Welted949cac2008-09-09 15:56:01 +08001252 .patch = patch_vt1708S},
Takashi Iwai3218c172008-12-18 09:17:56 +01001253 { .id = 0x11063397, .name = "VT1708S",
Harald Welted949cac2008-09-09 15:56:01 +08001254 .patch = patch_vt1708S},
Lydia Wangbc92df72011-03-23 17:56:05 +08001255 { .id = 0x11064397, .name = "VT1705",
Harald Welted949cac2008-09-09 15:56:01 +08001256 .patch = patch_vt1708S},
Takashi Iwai3218c172008-12-18 09:17:56 +01001257 { .id = 0x11065397, .name = "VT1708S",
Harald Welted949cac2008-09-09 15:56:01 +08001258 .patch = patch_vt1708S},
Takashi Iwai3218c172008-12-18 09:17:56 +01001259 { .id = 0x11066397, .name = "VT1708S",
Harald Welted949cac2008-09-09 15:56:01 +08001260 .patch = patch_vt1708S},
Takashi Iwai3218c172008-12-18 09:17:56 +01001261 { .id = 0x11067397, .name = "VT1708S",
Harald Welted949cac2008-09-09 15:56:01 +08001262 .patch = patch_vt1708S},
Takashi Iwai3218c172008-12-18 09:17:56 +01001263 { .id = 0x11060398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08001264 .patch = patch_vt1702},
Takashi Iwai3218c172008-12-18 09:17:56 +01001265 { .id = 0x11061398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08001266 .patch = patch_vt1702},
Takashi Iwai3218c172008-12-18 09:17:56 +01001267 { .id = 0x11062398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08001268 .patch = patch_vt1702},
Takashi Iwai3218c172008-12-18 09:17:56 +01001269 { .id = 0x11063398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08001270 .patch = patch_vt1702},
Takashi Iwai3218c172008-12-18 09:17:56 +01001271 { .id = 0x11064398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08001272 .patch = patch_vt1702},
Takashi Iwai3218c172008-12-18 09:17:56 +01001273 { .id = 0x11065398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08001274 .patch = patch_vt1702},
Takashi Iwai3218c172008-12-18 09:17:56 +01001275 { .id = 0x11066398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08001276 .patch = patch_vt1702},
Takashi Iwai3218c172008-12-18 09:17:56 +01001277 { .id = 0x11067398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08001278 .patch = patch_vt1702},
Lydia Wangeb7188c2009-10-10 19:08:34 +08001279 { .id = 0x11060428, .name = "VT1718S",
1280 .patch = patch_vt1718S},
1281 { .id = 0x11064428, .name = "VT1718S",
1282 .patch = patch_vt1718S},
Lydia Wangbb3c6bfc2009-10-10 19:08:39 +08001283 { .id = 0x11060441, .name = "VT2020",
1284 .patch = patch_vt1718S},
1285 { .id = 0x11064441, .name = "VT1828S",
1286 .patch = patch_vt1718S},
Lydia Wangf3db4232009-10-10 19:08:41 +08001287 { .id = 0x11060433, .name = "VT1716S",
1288 .patch = patch_vt1716S},
1289 { .id = 0x1106a721, .name = "VT1716S",
1290 .patch = patch_vt1716S},
Lydia Wang25eaba22009-10-10 19:08:43 +08001291 { .id = 0x11060438, .name = "VT2002P", .patch = patch_vt2002P},
1292 { .id = 0x11064438, .name = "VT2002P", .patch = patch_vt2002P},
Lydia Wangab6734e2009-10-10 19:08:46 +08001293 { .id = 0x11060448, .name = "VT1812", .patch = patch_vt1812},
Lydia Wang36dd5c42009-10-20 13:18:04 +08001294 { .id = 0x11060440, .name = "VT1818S",
1295 .patch = patch_vt1708S},
Lydia Wang118909562011-03-23 17:57:34 +08001296 { .id = 0x11060446, .name = "VT1802",
1297 .patch = patch_vt2002P},
1298 { .id = 0x11068446, .name = "VT1802",
1299 .patch = patch_vt2002P},
Lydia Wang43737e02012-12-10 18:28:11 +08001300 { .id = 0x11064760, .name = "VT1705CF",
1301 .patch = patch_vt3476},
Lydia Wang6121b842012-12-10 19:03:26 +08001302 { .id = 0x11064761, .name = "VT1708SCE",
1303 .patch = patch_vt3476},
1304 { .id = 0x11064762, .name = "VT1808",
1305 .patch = patch_vt3476},
Joseph Chanc577b8a2006-11-29 15:29:40 +01001306 {} /* terminator */
1307};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001308
1309MODULE_ALIAS("snd-hda-codec-id:1106*");
1310
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001311static struct hda_codec_driver via_driver = {
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001312 .preset = snd_hda_preset_via,
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001313};
1314
1315MODULE_LICENSE("GPL");
1316MODULE_DESCRIPTION("VIA HD-audio codec");
1317
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001318module_hda_codec_driver(via_driver);