blob: 09bb64996d72ee3dba0335fa07b2cb3bf44fa2a9 [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"
Joseph Chanc577b8a2006-11-29 15:29:40 +010059
Joseph Chanc577b8a2006-11-29 15:29:40 +010060/* Pin Widget NID */
Harald Welted949cac2008-09-09 15:56:01 +080061#define VT1708_HP_PIN_NID 0x20
62#define VT1708_CD_PIN_NID 0x24
Joseph Chanc577b8a2006-11-29 15:29:40 +010063
Harald Welted7426322008-09-15 22:43:23 +080064enum VIA_HDA_CODEC {
65 UNKNOWN = -1,
66 VT1708,
67 VT1709_10CH,
68 VT1709_6CH,
69 VT1708B_8CH,
70 VT1708B_4CH,
71 VT1708S,
Lydia Wang518bf3b2009-10-10 19:07:29 +080072 VT1708BCE,
Harald Welted7426322008-09-15 22:43:23 +080073 VT1702,
Lydia Wangeb7188c2009-10-10 19:08:34 +080074 VT1718S,
Lydia Wangf3db4232009-10-10 19:08:41 +080075 VT1716S,
Lydia Wang25eaba22009-10-10 19:08:43 +080076 VT2002P,
Lydia Wangab6734e2009-10-10 19:08:46 +080077 VT1812,
Lydia Wang118909562011-03-23 17:57:34 +080078 VT1802,
Lydia Wang43737e02012-12-10 18:28:11 +080079 VT1705CF,
Lydia Wang6121b842012-12-10 19:03:26 +080080 VT1808,
Harald Welted7426322008-09-15 22:43:23 +080081 CODEC_TYPES,
82};
83
Lydia Wang118909562011-03-23 17:57:34 +080084#define VT2002P_COMPATIBLE(spec) \
85 ((spec)->codec_type == VT2002P ||\
86 (spec)->codec_type == VT1812 ||\
87 (spec)->codec_type == VT1802)
88
Takashi Iwai8e3679d2011-06-21 09:01:36 +020089#define MAX_NID_PATH_DEPTH 5
90
Takashi Iwai09a9ad692011-06-21 15:57:44 +020091/* output-path: DAC -> ... -> pin
92 * idx[] contains the source index number of the next widget;
93 * e.g. idx[0] is the index of the DAC selected by path[1] widget
94 * multi[] indicates whether it's a selector widget with multi-connectors
95 * (i.e. the connection selection is mandatory)
96 * vol_ctl and mute_ctl contains the NIDs for the assigned mixers
97 */
Takashi Iwai4a796162011-06-17 17:53:38 +020098struct nid_path {
99 int depth;
Takashi Iwai8e3679d2011-06-21 09:01:36 +0200100 hda_nid_t path[MAX_NID_PATH_DEPTH];
Takashi Iwai09a9ad692011-06-21 15:57:44 +0200101 unsigned char idx[MAX_NID_PATH_DEPTH];
102 unsigned char multi[MAX_NID_PATH_DEPTH];
103 unsigned int vol_ctl;
104 unsigned int mute_ctl;
Takashi Iwai4a796162011-06-17 17:53:38 +0200105};
106
Takashi Iwaia86a88e2011-06-22 15:23:25 +0200107/* input-path */
108struct via_input {
109 hda_nid_t pin; /* input-pin or aa-mix */
110 int adc_idx; /* ADC index to be used */
111 int mux_idx; /* MUX index (if any) */
112 const char *label; /* input-source label */
113};
114
Takashi Iwaide6c74f2011-07-04 14:46:42 +0200115#define VIA_MAX_ADCS 3
116
Takashi Iwai3b607e32011-07-18 16:54:40 +0200117enum {
118 STREAM_MULTI_OUT = (1 << 0),
119 STREAM_INDEP_HP = (1 << 1),
120};
121
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800122struct via_spec {
Takashi Iwai7819d1c2012-10-10 08:41:42 +0200123 struct hda_gen_spec gen;
124
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800125 /* codec parameterization */
Takashi Iwai90dd48a2011-05-02 12:38:19 +0200126 const struct snd_kcontrol_new *mixers[6];
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800127 unsigned int num_mixers;
128
Takashi Iwai90dd48a2011-05-02 12:38:19 +0200129 const struct hda_verb *init_verbs[5];
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800130 unsigned int num_iverbs;
131
Takashi Iwai82673bc2011-06-17 16:24:21 +0200132 char stream_name_analog[32];
Takashi Iwai7eb56e82011-06-18 16:40:14 +0200133 char stream_name_hp[32];
Takashi Iwai90dd48a2011-05-02 12:38:19 +0200134 const struct hda_pcm_stream *stream_analog_playback;
135 const struct hda_pcm_stream *stream_analog_capture;
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800136
Takashi Iwai82673bc2011-06-17 16:24:21 +0200137 char stream_name_digital[32];
Takashi Iwai90dd48a2011-05-02 12:38:19 +0200138 const struct hda_pcm_stream *stream_digital_playback;
139 const struct hda_pcm_stream *stream_digital_capture;
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800140
141 /* playback */
142 struct hda_multi_out multiout;
143 hda_nid_t slave_dig_outs[2];
Takashi Iwaiece8d042011-06-19 16:24:21 +0200144 hda_nid_t hp_dac_nid;
Takashi Iwai3214b962011-07-18 12:49:25 +0200145 hda_nid_t speaker_dac_nid;
146 int hp_indep_shared; /* indep HP-DAC is shared with side ch */
Takashi Iwai3b607e32011-07-18 16:54:40 +0200147 int opened_streams; /* STREAM_* bits */
148 int active_streams; /* STREAM_* bits */
Takashi Iwai3214b962011-07-18 12:49:25 +0200149 int aamix_mode; /* loopback is enabled for output-path? */
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800150
Takashi Iwai3214b962011-07-18 12:49:25 +0200151 /* Output-paths:
152 * There are different output-paths depending on the setup.
153 * out_path, hp_path and speaker_path are primary paths. If both
154 * direct DAC and aa-loopback routes are available, these contain
155 * the former paths. Meanwhile *_mix_path contain the paths with
156 * loopback mixer. (Since the loopback is only for front channel,
157 * no out_mix_path for surround channels.)
158 * The HP output has another path, hp_indep_path, which is used in
159 * the independent-HP mode.
160 */
Takashi Iwaide6c74f2011-07-04 14:46:42 +0200161 struct nid_path out_path[HDA_SIDE + 1];
Takashi Iwai3214b962011-07-18 12:49:25 +0200162 struct nid_path out_mix_path;
Takashi Iwai4a796162011-06-17 17:53:38 +0200163 struct nid_path hp_path;
Takashi Iwai3214b962011-07-18 12:49:25 +0200164 struct nid_path hp_mix_path;
165 struct nid_path hp_indep_path;
Takashi Iwai4a918ff2011-06-20 12:39:26 +0200166 struct nid_path speaker_path;
Takashi Iwai3214b962011-07-18 12:49:25 +0200167 struct nid_path speaker_mix_path;
Takashi Iwai4a796162011-06-17 17:53:38 +0200168
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800169 /* capture */
170 unsigned int num_adc_nids;
Takashi Iwaide6c74f2011-07-04 14:46:42 +0200171 hda_nid_t adc_nids[VIA_MAX_ADCS];
172 hda_nid_t mux_nids[VIA_MAX_ADCS];
Takashi Iwai620e2b22011-06-17 17:19:19 +0200173 hda_nid_t aa_mix_nid;
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800174 hda_nid_t dig_in_nid;
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800175
176 /* capture source */
Takashi Iwaia86a88e2011-06-22 15:23:25 +0200177 bool dyn_adc_switch;
178 int num_inputs;
179 struct via_input inputs[AUTO_CFG_MAX_INS + 1];
Takashi Iwaide6c74f2011-07-04 14:46:42 +0200180 unsigned int cur_mux[VIA_MAX_ADCS];
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800181
Takashi Iwai3b607e32011-07-18 16:54:40 +0200182 /* dynamic DAC switching */
183 unsigned int cur_dac_stream_tag;
184 unsigned int cur_dac_format;
185 unsigned int cur_hp_stream_tag;
186 unsigned int cur_hp_format;
187
Takashi Iwaia86a88e2011-06-22 15:23:25 +0200188 /* dynamic ADC switching */
189 hda_nid_t cur_adc;
190 unsigned int cur_adc_stream_tag;
191 unsigned int cur_adc_format;
192
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800193 /* PCM information */
194 struct hda_pcm pcm_rec[3];
195
196 /* dynamic controls, init_verbs and input_mux */
197 struct auto_pin_cfg autocfg;
198 struct snd_array kctls;
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800199 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
200
201 /* HP mode source */
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800202 unsigned int hp_independent_mode;
Lydia Wangf3db4232009-10-10 19:08:41 +0800203 unsigned int dmic_enabled;
Takashi Iwai24088a52011-06-17 16:59:21 +0200204 unsigned int no_pin_power_ctl;
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800205 enum VIA_HDA_CODEC codec_type;
206
Takashi Iwaie9d010c2012-02-01 10:33:23 +0100207 /* analog low-power control */
208 bool alc_mode;
209
Takashi Iwaie3d7a142011-06-20 13:52:33 +0200210 /* smart51 setup */
211 unsigned int smart51_nums;
212 hda_nid_t smart51_pins[2];
213 int smart51_idxs[2];
214 const char *smart51_labels[2];
215 unsigned int smart51_enabled;
216
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800217 /* work to check hp jack state */
218 struct hda_codec *codec;
219 struct delayed_work vt1708_hp_work;
Takashi Iwai187d3332011-11-24 16:33:09 +0100220 int hp_work_active;
Takashi Iwaie06e5a22011-06-17 15:46:13 +0200221 int vt1708_jack_detect;
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800222 int vt1708_hp_present;
Lydia Wang3e95b9a2011-03-23 15:13:28 +0800223
224 void (*set_widgets_power_state)(struct hda_codec *codec);
Lydia Wang43737e02012-12-10 18:28:11 +0800225 unsigned int dac_stream_tag[4];
Lydia Wang3e95b9a2011-03-23 15:13:28 +0800226
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800227 struct hda_loopback_check loopback;
Takashi Iwai13af8e72011-06-20 14:05:46 +0200228 int num_loopbacks;
229 struct hda_amp_list loopback_list[8];
Takashi Iwaia86a88e2011-06-22 15:23:25 +0200230
231 /* bind capture-volume */
232 struct hda_bind_ctls *bind_cap_vol;
233 struct hda_bind_ctls *bind_cap_sw;
Takashi Iwai3b607e32011-07-18 16:54:40 +0200234
235 struct mutex config_mutex;
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800236};
237
Lydia Wang0341ccd2011-03-22 16:25:03 +0800238static enum VIA_HDA_CODEC get_codec_type(struct hda_codec *codec);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100239static struct via_spec * via_new_spec(struct hda_codec *codec)
240{
241 struct via_spec *spec;
242
243 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
244 if (spec == NULL)
245 return NULL;
246
Takashi Iwai361dab32012-05-09 14:35:27 +0200247 snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32);
Takashi Iwai3b607e32011-07-18 16:54:40 +0200248 mutex_init(&spec->config_mutex);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100249 codec->spec = spec;
250 spec->codec = codec;
Lydia Wang0341ccd2011-03-22 16:25:03 +0800251 spec->codec_type = get_codec_type(codec);
252 /* VT1708BCE & VT1708S are almost same */
253 if (spec->codec_type == VT1708BCE)
254 spec->codec_type = VT1708S;
Takashi Iwai7819d1c2012-10-10 08:41:42 +0200255 snd_hda_gen_init(&spec->gen);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100256 return spec;
257}
258
Lydia Wang744ff5f2009-10-10 19:07:26 +0800259static enum VIA_HDA_CODEC get_codec_type(struct hda_codec *codec)
Harald Welted7426322008-09-15 22:43:23 +0800260{
Lydia Wang744ff5f2009-10-10 19:07:26 +0800261 u32 vendor_id = codec->vendor_id;
Harald Welted7426322008-09-15 22:43:23 +0800262 u16 ven_id = vendor_id >> 16;
263 u16 dev_id = vendor_id & 0xffff;
264 enum VIA_HDA_CODEC codec_type;
265
266 /* get codec type */
267 if (ven_id != 0x1106)
268 codec_type = UNKNOWN;
269 else if (dev_id >= 0x1708 && dev_id <= 0x170b)
270 codec_type = VT1708;
271 else if (dev_id >= 0xe710 && dev_id <= 0xe713)
272 codec_type = VT1709_10CH;
273 else if (dev_id >= 0xe714 && dev_id <= 0xe717)
274 codec_type = VT1709_6CH;
Lydia Wang518bf3b2009-10-10 19:07:29 +0800275 else if (dev_id >= 0xe720 && dev_id <= 0xe723) {
Harald Welted7426322008-09-15 22:43:23 +0800276 codec_type = VT1708B_8CH;
Lydia Wang518bf3b2009-10-10 19:07:29 +0800277 if (snd_hda_param_read(codec, 0x16, AC_PAR_CONNLIST_LEN) == 0x7)
278 codec_type = VT1708BCE;
279 } else if (dev_id >= 0xe724 && dev_id <= 0xe727)
Harald Welted7426322008-09-15 22:43:23 +0800280 codec_type = VT1708B_4CH;
281 else if ((dev_id & 0xfff) == 0x397
282 && (dev_id >> 12) < 8)
283 codec_type = VT1708S;
284 else if ((dev_id & 0xfff) == 0x398
285 && (dev_id >> 12) < 8)
286 codec_type = VT1702;
Lydia Wangeb7188c2009-10-10 19:08:34 +0800287 else if ((dev_id & 0xfff) == 0x428
288 && (dev_id >> 12) < 8)
289 codec_type = VT1718S;
Lydia Wangf3db4232009-10-10 19:08:41 +0800290 else if (dev_id == 0x0433 || dev_id == 0xa721)
291 codec_type = VT1716S;
Lydia Wangbb3c6bfc2009-10-10 19:08:39 +0800292 else if (dev_id == 0x0441 || dev_id == 0x4441)
293 codec_type = VT1718S;
Lydia Wang25eaba22009-10-10 19:08:43 +0800294 else if (dev_id == 0x0438 || dev_id == 0x4438)
295 codec_type = VT2002P;
Lydia Wangab6734e2009-10-10 19:08:46 +0800296 else if (dev_id == 0x0448)
297 codec_type = VT1812;
Lydia Wang36dd5c42009-10-20 13:18:04 +0800298 else if (dev_id == 0x0440)
299 codec_type = VT1708S;
Lydia Wang118909562011-03-23 17:57:34 +0800300 else if ((dev_id & 0xfff) == 0x446)
301 codec_type = VT1802;
Lydia Wang43737e02012-12-10 18:28:11 +0800302 else if (dev_id == 0x4760)
303 codec_type = VT1705CF;
Lydia Wang6121b842012-12-10 19:03:26 +0800304 else if (dev_id == 0x4761 || dev_id == 0x4762)
305 codec_type = VT1808;
Harald Welted7426322008-09-15 22:43:23 +0800306 else
307 codec_type = UNKNOWN;
308 return codec_type;
309};
310
Lydia Wangec7e7e42011-03-24 12:43:44 +0800311#define VIA_JACK_EVENT 0x20
Harald Welte69e52a82008-09-09 15:57:32 +0800312#define VIA_HP_EVENT 0x01
Takashi Iwai4a918ff2011-06-20 12:39:26 +0200313#define VIA_LINE_EVENT 0x03
Harald Welte69e52a82008-09-09 15:57:32 +0800314
Joseph Chanc577b8a2006-11-29 15:29:40 +0100315enum {
316 VIA_CTL_WIDGET_VOL,
317 VIA_CTL_WIDGET_MUTE,
Lydia Wangf5271102009-10-10 19:07:35 +0800318 VIA_CTL_WIDGET_ANALOG_MUTE,
Joseph Chanc577b8a2006-11-29 15:29:40 +0100319};
320
Takashi Iwaiada509e2011-06-20 15:40:19 +0200321static void analog_low_current_mode(struct hda_codec *codec);
322static bool is_aa_path_mute(struct hda_codec *codec);
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800323
Takashi Iwai187d3332011-11-24 16:33:09 +0100324#define hp_detect_with_aa(codec) \
325 (snd_hda_get_bool_hint(codec, "analog_loopback_hp_detect") == 1 && \
326 !is_aa_path_mute(codec))
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800327
328static void vt1708_stop_hp_work(struct via_spec *spec)
329{
330 if (spec->codec_type != VT1708 || spec->autocfg.hp_pins[0] == 0)
331 return;
Takashi Iwai187d3332011-11-24 16:33:09 +0100332 if (spec->hp_work_active) {
333 snd_hda_codec_write(spec->codec, 0x1, 0, 0xf81, 1);
334 cancel_delayed_work_sync(&spec->vt1708_hp_work);
335 spec->hp_work_active = 0;
336 }
337}
338
339static void vt1708_update_hp_work(struct via_spec *spec)
340{
341 if (spec->codec_type != VT1708 || spec->autocfg.hp_pins[0] == 0)
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800342 return;
Takashi Iwai187d3332011-11-24 16:33:09 +0100343 if (spec->vt1708_jack_detect &&
344 (spec->active_streams || hp_detect_with_aa(spec->codec))) {
345 if (!spec->hp_work_active) {
346 snd_hda_codec_write(spec->codec, 0x1, 0, 0xf81, 0);
347 schedule_delayed_work(&spec->vt1708_hp_work,
348 msecs_to_jiffies(100));
349 spec->hp_work_active = 1;
350 }
351 } else if (!hp_detect_with_aa(spec->codec))
352 vt1708_stop_hp_work(spec);
Lydia Wang1f2e99f2009-10-10 19:08:17 +0800353}
Lydia Wangf5271102009-10-10 19:07:35 +0800354
Lydia Wang3e95b9a2011-03-23 15:13:28 +0800355static void set_widgets_power_state(struct hda_codec *codec)
356{
357 struct via_spec *spec = codec->spec;
358 if (spec->set_widgets_power_state)
359 spec->set_widgets_power_state(codec);
360}
Lydia Wang25eaba22009-10-10 19:08:43 +0800361
Lydia Wangf5271102009-10-10 19:07:35 +0800362static int analog_input_switch_put(struct snd_kcontrol *kcontrol,
363 struct snd_ctl_elem_value *ucontrol)
364{
365 int change = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
366 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
367
Lydia Wang3e95b9a2011-03-23 15:13:28 +0800368 set_widgets_power_state(codec);
Takashi Iwaiada509e2011-06-20 15:40:19 +0200369 analog_low_current_mode(snd_kcontrol_chip(kcontrol));
Takashi Iwai187d3332011-11-24 16:33:09 +0100370 vt1708_update_hp_work(codec->spec);
Lydia Wangf5271102009-10-10 19:07:35 +0800371 return change;
372}
373
374/* modify .put = snd_hda_mixer_amp_switch_put */
375#define ANALOG_INPUT_MUTE \
376 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
377 .name = NULL, \
378 .index = 0, \
379 .info = snd_hda_mixer_amp_switch_info, \
380 .get = snd_hda_mixer_amp_switch_get, \
381 .put = analog_input_switch_put, \
382 .private_value = HDA_COMPOSE_AMP_VAL(0, 3, 0, 0) }
383
Takashi Iwai90dd48a2011-05-02 12:38:19 +0200384static const struct snd_kcontrol_new via_control_templates[] = {
Joseph Chanc577b8a2006-11-29 15:29:40 +0100385 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
386 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Lydia Wangf5271102009-10-10 19:07:35 +0800387 ANALOG_INPUT_MUTE,
Joseph Chanc577b8a2006-11-29 15:29:40 +0100388};
389
Lydia Wangab6734e2009-10-10 19:08:46 +0800390
Joseph Chanc577b8a2006-11-29 15:29:40 +0100391/* add dynamic controls */
Takashi Iwai291c9e32011-06-17 16:15:26 +0200392static struct snd_kcontrol_new *__via_clone_ctl(struct via_spec *spec,
393 const struct snd_kcontrol_new *tmpl,
394 const char *name)
Joseph Chanc577b8a2006-11-29 15:29:40 +0100395{
396 struct snd_kcontrol_new *knew;
397
Takashi Iwai603c4012008-07-30 15:01:44 +0200398 knew = snd_array_new(&spec->kctls);
399 if (!knew)
Takashi Iwai291c9e32011-06-17 16:15:26 +0200400 return NULL;
401 *knew = *tmpl;
402 if (!name)
403 name = tmpl->name;
404 if (name) {
405 knew->name = kstrdup(name, GFP_KERNEL);
406 if (!knew->name)
407 return NULL;
408 }
409 return knew;
410}
411
412static int __via_add_control(struct via_spec *spec, int type, const char *name,
413 int idx, unsigned long val)
414{
415 struct snd_kcontrol_new *knew;
416
417 knew = __via_clone_ctl(spec, &via_control_templates[type], name);
418 if (!knew)
Joseph Chanc577b8a2006-11-29 15:29:40 +0100419 return -ENOMEM;
Takashi Iwaid7a99cc2011-06-18 17:24:46 +0200420 knew->index = idx;
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +0100421 if (get_amp_nid_(val))
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +0100422 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
Joseph Chanc577b8a2006-11-29 15:29:40 +0100423 knew->private_value = val;
Joseph Chanc577b8a2006-11-29 15:29:40 +0100424 return 0;
425}
426
Takashi Iwai7b315bb2010-08-30 13:06:30 +0200427#define via_add_control(spec, type, name, val) \
428 __via_add_control(spec, type, name, 0, val)
429
Takashi Iwai291c9e32011-06-17 16:15:26 +0200430#define via_clone_control(spec, tmpl) __via_clone_ctl(spec, tmpl, NULL)
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100431
Takashi Iwai603c4012008-07-30 15:01:44 +0200432static void via_free_kctls(struct hda_codec *codec)
433{
434 struct via_spec *spec = codec->spec;
435
436 if (spec->kctls.list) {
437 struct snd_kcontrol_new *kctl = spec->kctls.list;
438 int i;
439 for (i = 0; i < spec->kctls.used; i++)
440 kfree(kctl[i].name);
441 }
442 snd_array_free(&spec->kctls);
443}
444
Joseph Chanc577b8a2006-11-29 15:29:40 +0100445/* create input playback/capture controls for the given pin */
Lydia Wang9510e8d2009-10-10 19:07:39 +0800446static int via_new_analog_input(struct via_spec *spec, const char *ctlname,
Takashi Iwai7b315bb2010-08-30 13:06:30 +0200447 int type_idx, int idx, int mix_nid)
Joseph Chanc577b8a2006-11-29 15:29:40 +0100448{
449 char name[32];
450 int err;
451
452 sprintf(name, "%s Playback Volume", ctlname);
Takashi Iwai7b315bb2010-08-30 13:06:30 +0200453 err = __via_add_control(spec, VIA_CTL_WIDGET_VOL, name, type_idx,
Joseph Chanc577b8a2006-11-29 15:29:40 +0100454 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
455 if (err < 0)
456 return err;
457 sprintf(name, "%s Playback Switch", ctlname);
Takashi Iwai7b315bb2010-08-30 13:06:30 +0200458 err = __via_add_control(spec, VIA_CTL_WIDGET_ANALOG_MUTE, name, type_idx,
Joseph Chanc577b8a2006-11-29 15:29:40 +0100459 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
460 if (err < 0)
461 return err;
462 return 0;
463}
464
Takashi Iwai5d417622011-06-20 11:32:27 +0200465#define get_connection_index(codec, mux, nid) \
Takashi Iwai8d087c72011-06-28 12:45:47 +0200466 snd_hda_get_conn_index(codec, mux, nid, 0)
Takashi Iwai5d417622011-06-20 11:32:27 +0200467
Takashi Iwai8df2a312011-06-21 11:48:29 +0200468static bool check_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
469 unsigned int mask)
470{
Takashi Iwaia934d5a2011-06-21 14:22:14 +0200471 unsigned int caps;
472 if (!nid)
473 return false;
474 caps = get_wcaps(codec, nid);
Takashi Iwai8df2a312011-06-21 11:48:29 +0200475 if (dir == HDA_INPUT)
476 caps &= AC_WCAP_IN_AMP;
477 else
478 caps &= AC_WCAP_OUT_AMP;
479 if (!caps)
480 return false;
481 if (query_amp_caps(codec, nid, dir) & mask)
482 return true;
483 return false;
484}
485
Takashi Iwai09a9ad692011-06-21 15:57:44 +0200486#define have_mute(codec, nid, dir) \
487 check_amp_caps(codec, nid, dir, AC_AMPCAP_MUTE)
Takashi Iwai8df2a312011-06-21 11:48:29 +0200488
Lydia Wangd69607b32011-07-08 14:02:52 +0800489/* enable/disable the output-route mixers */
490static void activate_output_mix(struct hda_codec *codec, struct nid_path *path,
Takashi Iwai3214b962011-07-18 12:49:25 +0200491 hda_nid_t mix_nid, int idx, bool enable)
Lydia Wangd69607b32011-07-08 14:02:52 +0800492{
493 int i, num, val;
Lydia Wangd69607b32011-07-08 14:02:52 +0800494
495 if (!path)
496 return;
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200497 num = snd_hda_get_num_conns(codec, mix_nid);
Lydia Wangd69607b32011-07-08 14:02:52 +0800498 for (i = 0; i < num; i++) {
Takashi Iwai3214b962011-07-18 12:49:25 +0200499 if (i == idx)
500 val = AMP_IN_UNMUTE(i);
501 else
502 val = AMP_IN_MUTE(i);
Lydia Wangd69607b32011-07-08 14:02:52 +0800503 snd_hda_codec_write(codec, mix_nid, 0,
504 AC_VERB_SET_AMP_GAIN_MUTE, val);
505 }
506}
507
Takashi Iwai09a9ad692011-06-21 15:57:44 +0200508/* enable/disable the output-route */
509static void activate_output_path(struct hda_codec *codec, struct nid_path *path,
510 bool enable, bool force)
Takashi Iwai5d417622011-06-20 11:32:27 +0200511{
Lydia Wangd69607b32011-07-08 14:02:52 +0800512 struct via_spec *spec = codec->spec;
Takashi Iwai3214b962011-07-18 12:49:25 +0200513 int i;
Takashi Iwai09a9ad692011-06-21 15:57:44 +0200514 for (i = 0; i < path->depth; i++) {
515 hda_nid_t src, dst;
516 int idx = path->idx[i];
517 src = path->path[i];
518 if (i < path->depth - 1)
519 dst = path->path[i + 1];
520 else
521 dst = 0;
522 if (enable && path->multi[i])
523 snd_hda_codec_write(codec, dst, 0,
524 AC_VERB_SET_CONNECT_SEL, idx);
Takashi Iwai3214b962011-07-18 12:49:25 +0200525 if (!force && (dst == spec->aa_mix_nid))
Lydia Wange5e14682011-07-01 10:55:07 +0800526 continue;
Takashi Iwai3214b962011-07-18 12:49:25 +0200527 if (have_mute(codec, dst, HDA_INPUT))
528 activate_output_mix(codec, path, dst, idx, enable);
Takashi Iwai09a9ad692011-06-21 15:57:44 +0200529 if (!force && (src == path->vol_ctl || src == path->mute_ctl))
530 continue;
531 if (have_mute(codec, src, HDA_OUTPUT)) {
532 int val = enable ? AMP_OUT_UNMUTE : AMP_OUT_MUTE;
533 snd_hda_codec_write(codec, src, 0,
534 AC_VERB_SET_AMP_GAIN_MUTE, val);
535 }
536 }
Takashi Iwai5d417622011-06-20 11:32:27 +0200537}
538
539/* set the given pin as output */
540static void init_output_pin(struct hda_codec *codec, hda_nid_t pin,
541 int pin_type)
542{
543 if (!pin)
544 return;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +0200545 snd_hda_set_pin_ctl(codec, pin, pin_type);
Takashi Iwai5d417622011-06-20 11:32:27 +0200546 if (snd_hda_query_pin_caps(codec, pin) & AC_PINCAP_EAPD)
547 snd_hda_codec_write(codec, pin, 0,
Takashi Iwaid3a11e62009-07-07 13:43:35 +0200548 AC_VERB_SET_EAPD_BTLENABLE, 0x02);
Joseph Chanc577b8a2006-11-29 15:29:40 +0100549}
550
Takashi Iwai09a9ad692011-06-21 15:57:44 +0200551static void via_auto_init_output(struct hda_codec *codec,
Takashi Iwaia353fbb2011-07-21 14:23:35 +0200552 struct nid_path *path, int pin_type)
Takashi Iwai5d417622011-06-20 11:32:27 +0200553{
Takashi Iwai5d417622011-06-20 11:32:27 +0200554 unsigned int caps;
Lydia Wangd69607b32011-07-08 14:02:52 +0800555 hda_nid_t pin;
Takashi Iwai5d417622011-06-20 11:32:27 +0200556
Takashi Iwai09a9ad692011-06-21 15:57:44 +0200557 if (!path->depth)
Takashi Iwai5d417622011-06-20 11:32:27 +0200558 return;
Takashi Iwai09a9ad692011-06-21 15:57:44 +0200559 pin = path->path[path->depth - 1];
Takashi Iwai5d417622011-06-20 11:32:27 +0200560
561 init_output_pin(codec, pin, pin_type);
Takashi Iwai77e314f2012-02-22 12:34:08 +0100562 if (get_wcaps(codec, pin) & AC_WCAP_OUT_AMP)
563 caps = query_amp_caps(codec, pin, HDA_OUTPUT);
564 else
565 caps = 0;
Takashi Iwai5d417622011-06-20 11:32:27 +0200566 if (caps & AC_AMPCAP_MUTE) {
567 unsigned int val;
568 val = (caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT;
569 snd_hda_codec_write(codec, pin, 0, AC_VERB_SET_AMP_GAIN_MUTE,
570 AMP_OUT_MUTE | val);
571 }
Takashi Iwaia353fbb2011-07-21 14:23:35 +0200572 activate_output_path(codec, path, true, true); /* force on */
Takashi Iwai5d417622011-06-20 11:32:27 +0200573}
574
Joseph Chanc577b8a2006-11-29 15:29:40 +0100575static void via_auto_init_multi_out(struct hda_codec *codec)
576{
577 struct via_spec *spec = codec->spec;
Takashi Iwai3214b962011-07-18 12:49:25 +0200578 struct nid_path *path;
Joseph Chanc577b8a2006-11-29 15:29:40 +0100579 int i;
580
Takashi Iwai3214b962011-07-18 12:49:25 +0200581 for (i = 0; i < spec->autocfg.line_outs + spec->smart51_nums; i++) {
582 path = &spec->out_path[i];
583 if (!i && spec->aamix_mode && spec->out_mix_path.depth)
584 path = &spec->out_mix_path;
Takashi Iwaia353fbb2011-07-21 14:23:35 +0200585 via_auto_init_output(codec, path, PIN_OUT);
Takashi Iwai3214b962011-07-18 12:49:25 +0200586 }
Joseph Chanc577b8a2006-11-29 15:29:40 +0100587}
588
Takashi Iwai020066d2011-07-21 13:45:56 +0200589/* deactivate the inactive headphone-paths */
590static void deactivate_hp_paths(struct hda_codec *codec)
Joseph Chanc577b8a2006-11-29 15:29:40 +0100591{
592 struct via_spec *spec = codec->spec;
Takashi Iwai3214b962011-07-18 12:49:25 +0200593 int shared = spec->hp_indep_shared;
Joseph Chanc577b8a2006-11-29 15:29:40 +0100594
Takashi Iwai09a9ad692011-06-21 15:57:44 +0200595 if (spec->hp_independent_mode) {
Takashi Iwai09a9ad692011-06-21 15:57:44 +0200596 activate_output_path(codec, &spec->hp_path, false, false);
Takashi Iwai3214b962011-07-18 12:49:25 +0200597 activate_output_path(codec, &spec->hp_mix_path, false, false);
598 if (shared)
599 activate_output_path(codec, &spec->out_path[shared],
600 false, false);
Takashi Iwai020066d2011-07-21 13:45:56 +0200601 } else if (spec->aamix_mode || !spec->hp_path.depth) {
602 activate_output_path(codec, &spec->hp_indep_path, false, false);
Takashi Iwai3214b962011-07-18 12:49:25 +0200603 activate_output_path(codec, &spec->hp_path, false, false);
Takashi Iwai3214b962011-07-18 12:49:25 +0200604 } else {
Takashi Iwai020066d2011-07-21 13:45:56 +0200605 activate_output_path(codec, &spec->hp_indep_path, false, false);
Takashi Iwai3214b962011-07-18 12:49:25 +0200606 activate_output_path(codec, &spec->hp_mix_path, false, false);
Takashi Iwai09a9ad692011-06-21 15:57:44 +0200607 }
Joseph Chanc577b8a2006-11-29 15:29:40 +0100608}
609
Takashi Iwai020066d2011-07-21 13:45:56 +0200610static void via_auto_init_hp_out(struct hda_codec *codec)
611{
612 struct via_spec *spec = codec->spec;
613
614 if (!spec->hp_path.depth) {
Takashi Iwaia353fbb2011-07-21 14:23:35 +0200615 via_auto_init_output(codec, &spec->hp_mix_path, PIN_HP);
Takashi Iwai020066d2011-07-21 13:45:56 +0200616 return;
617 }
618 deactivate_hp_paths(codec);
619 if (spec->hp_independent_mode)
Takashi Iwaia353fbb2011-07-21 14:23:35 +0200620 via_auto_init_output(codec, &spec->hp_indep_path, PIN_HP);
Takashi Iwai020066d2011-07-21 13:45:56 +0200621 else if (spec->aamix_mode)
Takashi Iwaia353fbb2011-07-21 14:23:35 +0200622 via_auto_init_output(codec, &spec->hp_mix_path, PIN_HP);
Takashi Iwai020066d2011-07-21 13:45:56 +0200623 else
Takashi Iwaia353fbb2011-07-21 14:23:35 +0200624 via_auto_init_output(codec, &spec->hp_path, PIN_HP);
Takashi Iwai020066d2011-07-21 13:45:56 +0200625}
626
Takashi Iwai4a918ff2011-06-20 12:39:26 +0200627static void via_auto_init_speaker_out(struct hda_codec *codec)
628{
629 struct via_spec *spec = codec->spec;
630
Takashi Iwai3214b962011-07-18 12:49:25 +0200631 if (!spec->autocfg.speaker_outs)
632 return;
633 if (!spec->speaker_path.depth) {
Takashi Iwaia353fbb2011-07-21 14:23:35 +0200634 via_auto_init_output(codec, &spec->speaker_mix_path, PIN_OUT);
Takashi Iwai3214b962011-07-18 12:49:25 +0200635 return;
636 }
637 if (!spec->aamix_mode) {
638 activate_output_path(codec, &spec->speaker_mix_path,
639 false, false);
Takashi Iwaia353fbb2011-07-21 14:23:35 +0200640 via_auto_init_output(codec, &spec->speaker_path, PIN_OUT);
Takashi Iwai3214b962011-07-18 12:49:25 +0200641 } else {
642 activate_output_path(codec, &spec->speaker_path, false, false);
Takashi Iwaia353fbb2011-07-21 14:23:35 +0200643 via_auto_init_output(codec, &spec->speaker_mix_path, PIN_OUT);
Takashi Iwai3214b962011-07-18 12:49:25 +0200644 }
Takashi Iwai4a918ff2011-06-20 12:39:26 +0200645}
646
Takashi Iwaif4a78282011-06-17 18:46:48 +0200647static bool is_smart51_pins(struct hda_codec *codec, hda_nid_t pin);
Takashi Iwai6e969d92011-07-11 11:28:13 +0200648static void via_hp_automute(struct hda_codec *codec);
Clemens Ladisch32e01912010-07-12 16:28:50 +0200649
Joseph Chanc577b8a2006-11-29 15:29:40 +0100650static void via_auto_init_analog_input(struct hda_codec *codec)
651{
652 struct via_spec *spec = codec->spec;
Takashi Iwai7b315bb2010-08-30 13:06:30 +0200653 const struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai096a8852011-06-20 12:09:02 +0200654 hda_nid_t conn[HDA_MAX_CONNECTIONS];
Clemens Ladisch32e01912010-07-12 16:28:50 +0200655 unsigned int ctl;
Takashi Iwai096a8852011-06-20 12:09:02 +0200656 int i, num_conns;
Joseph Chanc577b8a2006-11-29 15:29:40 +0100657
Takashi Iwai096a8852011-06-20 12:09:02 +0200658 /* init ADCs */
659 for (i = 0; i < spec->num_adc_nids; i++) {
Takashi Iwai77e314f2012-02-22 12:34:08 +0100660 hda_nid_t nid = spec->adc_nids[i];
661 if (!(get_wcaps(codec, nid) & AC_WCAP_IN_AMP) ||
662 !(query_amp_caps(codec, nid, HDA_INPUT) & AC_AMPCAP_MUTE))
663 continue;
Takashi Iwai096a8852011-06-20 12:09:02 +0200664 snd_hda_codec_write(codec, spec->adc_nids[i], 0,
665 AC_VERB_SET_AMP_GAIN_MUTE,
666 AMP_IN_UNMUTE(0));
667 }
668
669 /* init pins */
Takashi Iwai7b315bb2010-08-30 13:06:30 +0200670 for (i = 0; i < cfg->num_inputs; i++) {
671 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwaif4a78282011-06-17 18:46:48 +0200672 if (spec->smart51_enabled && is_smart51_pins(codec, nid))
Clemens Ladisch32e01912010-07-12 16:28:50 +0200673 ctl = PIN_OUT;
Takashi Iwai47408602012-04-20 13:06:53 +0200674 else {
Clemens Ladisch32e01912010-07-12 16:28:50 +0200675 ctl = PIN_IN;
Takashi Iwai47408602012-04-20 13:06:53 +0200676 if (cfg->inputs[i].type == AUTO_PIN_MIC)
677 ctl |= snd_hda_get_default_vref(codec, nid);
678 }
Takashi Iwaicdd03ce2012-04-20 12:34:50 +0200679 snd_hda_set_pin_ctl(codec, nid, ctl);
Joseph Chanc577b8a2006-11-29 15:29:40 +0100680 }
Takashi Iwai096a8852011-06-20 12:09:02 +0200681
682 /* init input-src */
683 for (i = 0; i < spec->num_adc_nids; i++) {
Takashi Iwaia86a88e2011-06-22 15:23:25 +0200684 int adc_idx = spec->inputs[spec->cur_mux[i]].adc_idx;
Takashi Iwaifc1156c2012-02-13 15:04:06 +0100685 /* secondary ADCs must have the unique MUX */
686 if (i > 0 && !spec->mux_nids[i])
687 break;
Takashi Iwaia86a88e2011-06-22 15:23:25 +0200688 if (spec->mux_nids[adc_idx]) {
689 int mux_idx = spec->inputs[spec->cur_mux[i]].mux_idx;
690 snd_hda_codec_write(codec, spec->mux_nids[adc_idx], 0,
691 AC_VERB_SET_CONNECT_SEL,
692 mux_idx);
693 }
694 if (spec->dyn_adc_switch)
695 break; /* only one input-src */
Takashi Iwai096a8852011-06-20 12:09:02 +0200696 }
697
698 /* init aa-mixer */
699 if (!spec->aa_mix_nid)
700 return;
701 num_conns = snd_hda_get_connections(codec, spec->aa_mix_nid, conn,
702 ARRAY_SIZE(conn));
703 for (i = 0; i < num_conns; i++) {
704 unsigned int caps = get_wcaps(codec, conn[i]);
705 if (get_wcaps_type(caps) == AC_WID_PIN)
706 snd_hda_codec_write(codec, spec->aa_mix_nid, 0,
707 AC_VERB_SET_AMP_GAIN_MUTE,
708 AMP_IN_MUTE(i));
709 }
Joseph Chanc577b8a2006-11-29 15:29:40 +0100710}
Lydia Wangf5271102009-10-10 19:07:35 +0800711
Takashi Iwai054d8672012-01-24 12:25:50 +0100712static void update_power_state(struct hda_codec *codec, hda_nid_t nid,
713 unsigned int parm)
714{
715 if (snd_hda_codec_read(codec, nid, 0,
716 AC_VERB_GET_POWER_STATE, 0) == parm)
717 return;
718 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE, parm);
719}
720
Lydia Wang43737e02012-12-10 18:28:11 +0800721static void update_conv_power_state(struct hda_codec *codec, hda_nid_t nid,
722 unsigned int parm, unsigned int index)
723{
724 struct via_spec *spec = codec->spec;
725 unsigned int format;
726 if (snd_hda_codec_read(codec, nid, 0,
727 AC_VERB_GET_POWER_STATE, 0) == parm)
728 return;
729 format = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0);
730 if (format && (spec->dac_stream_tag[index] != format))
731 spec->dac_stream_tag[index] = format;
732
733 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE, parm);
734 if (parm == AC_PWRST_D0) {
735 format = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0);
736 if (!format && (spec->dac_stream_tag[index] != format))
737 snd_hda_codec_write(codec, nid, 0,
738 AC_VERB_SET_CHANNEL_STREAMID,
739 spec->dac_stream_tag[index]);
740 }
741}
742
Lydia Wangf5271102009-10-10 19:07:35 +0800743static void set_pin_power_state(struct hda_codec *codec, hda_nid_t nid,
744 unsigned int *affected_parm)
745{
746 unsigned parm;
747 unsigned def_conf = snd_hda_codec_get_pincfg(codec, nid);
748 unsigned no_presence = (def_conf & AC_DEFCFG_MISC)
749 >> AC_DEFCFG_MISC_SHIFT
750 & AC_DEFCFG_MISC_NO_PRESENCE; /* do not support pin sense */
Lydia Wang1564b282009-10-10 19:07:52 +0800751 struct via_spec *spec = codec->spec;
Takashi Iwai24088a52011-06-17 16:59:21 +0200752 unsigned present = 0;
753
754 no_presence |= spec->no_pin_power_ctl;
755 if (!no_presence)
756 present = snd_hda_jack_detect(codec, nid);
Takashi Iwaif4a78282011-06-17 18:46:48 +0200757 if ((spec->smart51_enabled && is_smart51_pins(codec, nid))
Lydia Wang1564b282009-10-10 19:07:52 +0800758 || ((no_presence || present)
759 && get_defcfg_connect(def_conf) != AC_JACK_PORT_NONE)) {
Lydia Wangf5271102009-10-10 19:07:35 +0800760 *affected_parm = AC_PWRST_D0; /* if it's connected */
761 parm = AC_PWRST_D0;
762 } else
763 parm = AC_PWRST_D3;
764
Takashi Iwai054d8672012-01-24 12:25:50 +0100765 update_power_state(codec, nid, parm);
Lydia Wangf5271102009-10-10 19:07:35 +0800766}
767
Takashi Iwai24088a52011-06-17 16:59:21 +0200768static int via_pin_power_ctl_info(struct snd_kcontrol *kcontrol,
769 struct snd_ctl_elem_info *uinfo)
770{
Takashi Iwaidda415d2012-11-30 18:34:38 +0100771 return snd_hda_enum_bool_helper_info(kcontrol, uinfo);
Takashi Iwai24088a52011-06-17 16:59:21 +0200772}
773
774static int via_pin_power_ctl_get(struct snd_kcontrol *kcontrol,
775 struct snd_ctl_elem_value *ucontrol)
776{
777 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
778 struct via_spec *spec = codec->spec;
779 ucontrol->value.enumerated.item[0] = !spec->no_pin_power_ctl;
780 return 0;
781}
782
783static int via_pin_power_ctl_put(struct snd_kcontrol *kcontrol,
784 struct snd_ctl_elem_value *ucontrol)
785{
786 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
787 struct via_spec *spec = codec->spec;
788 unsigned int val = !ucontrol->value.enumerated.item[0];
789
790 if (val == spec->no_pin_power_ctl)
791 return 0;
792 spec->no_pin_power_ctl = val;
793 set_widgets_power_state(codec);
Takashi Iwaie9d010c2012-02-01 10:33:23 +0100794 analog_low_current_mode(codec);
Takashi Iwai24088a52011-06-17 16:59:21 +0200795 return 1;
796}
797
798static const struct snd_kcontrol_new via_pin_power_ctl_enum = {
799 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
800 .name = "Dynamic Power-Control",
801 .info = via_pin_power_ctl_info,
802 .get = via_pin_power_ctl_get,
803 .put = via_pin_power_ctl_put,
804};
805
806
Harald Welte0aa62ae2008-09-09 15:58:27 +0800807static int via_independent_hp_info(struct snd_kcontrol *kcontrol,
808 struct snd_ctl_elem_info *uinfo)
809{
Takashi Iwai8df2a312011-06-21 11:48:29 +0200810 static const char * const texts[] = { "OFF", "ON" };
811
812 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
813 uinfo->count = 1;
814 uinfo->value.enumerated.items = 2;
815 if (uinfo->value.enumerated.item >= 2)
816 uinfo->value.enumerated.item = 1;
817 strcpy(uinfo->value.enumerated.name,
818 texts[uinfo->value.enumerated.item]);
819 return 0;
Harald Welte0aa62ae2008-09-09 15:58:27 +0800820}
821
822static int via_independent_hp_get(struct snd_kcontrol *kcontrol,
823 struct snd_ctl_elem_value *ucontrol)
824{
825 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Lydia Wangcdc17842009-10-10 19:07:47 +0800826 struct via_spec *spec = codec->spec;
Lydia Wangcdc17842009-10-10 19:07:47 +0800827
Takashi Iwaiece8d042011-06-19 16:24:21 +0200828 ucontrol->value.enumerated.item[0] = spec->hp_independent_mode;
Lydia Wangcdc17842009-10-10 19:07:47 +0800829 return 0;
830}
831
Takashi Iwai3b607e32011-07-18 16:54:40 +0200832/* adjust spec->multiout setup according to the current flags */
833static void setup_playback_multi_pcm(struct via_spec *spec)
834{
835 const struct auto_pin_cfg *cfg = &spec->autocfg;
836 spec->multiout.num_dacs = cfg->line_outs + spec->smart51_nums;
837 spec->multiout.hp_nid = 0;
838 if (!spec->hp_independent_mode) {
839 if (!spec->hp_indep_shared)
840 spec->multiout.hp_nid = spec->hp_dac_nid;
841 } else {
842 if (spec->hp_indep_shared)
843 spec->multiout.num_dacs = cfg->line_outs - 1;
844 }
845}
846
847/* update DAC setups according to indep-HP switch;
848 * this function is called only when indep-HP is modified
849 */
850static void switch_indep_hp_dacs(struct hda_codec *codec)
851{
852 struct via_spec *spec = codec->spec;
853 int shared = spec->hp_indep_shared;
854 hda_nid_t shared_dac, hp_dac;
855
856 if (!spec->opened_streams)
857 return;
858
859 shared_dac = shared ? spec->multiout.dac_nids[shared] : 0;
860 hp_dac = spec->hp_dac_nid;
861 if (spec->hp_independent_mode) {
862 /* switch to indep-HP mode */
863 if (spec->active_streams & STREAM_MULTI_OUT) {
864 __snd_hda_codec_cleanup_stream(codec, hp_dac, 1);
865 __snd_hda_codec_cleanup_stream(codec, shared_dac, 1);
866 }
867 if (spec->active_streams & STREAM_INDEP_HP)
868 snd_hda_codec_setup_stream(codec, hp_dac,
869 spec->cur_hp_stream_tag, 0,
870 spec->cur_hp_format);
871 } else {
872 /* back to HP or shared-DAC */
873 if (spec->active_streams & STREAM_INDEP_HP)
874 __snd_hda_codec_cleanup_stream(codec, hp_dac, 1);
875 if (spec->active_streams & STREAM_MULTI_OUT) {
876 hda_nid_t dac;
877 int ch;
878 if (shared_dac) { /* reset mutli-ch DAC */
879 dac = shared_dac;
880 ch = shared * 2;
881 } else { /* reset HP DAC */
882 dac = hp_dac;
883 ch = 0;
884 }
885 snd_hda_codec_setup_stream(codec, dac,
886 spec->cur_dac_stream_tag, ch,
887 spec->cur_dac_format);
888 }
889 }
890 setup_playback_multi_pcm(spec);
891}
892
Harald Welte0aa62ae2008-09-09 15:58:27 +0800893static int via_independent_hp_put(struct snd_kcontrol *kcontrol,
894 struct snd_ctl_elem_value *ucontrol)
895{
896 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
897 struct via_spec *spec = codec->spec;
Takashi Iwai3214b962011-07-18 12:49:25 +0200898 int cur, shared;
Takashi Iwai8df2a312011-06-21 11:48:29 +0200899
Takashi Iwai3b607e32011-07-18 16:54:40 +0200900 mutex_lock(&spec->config_mutex);
Takashi Iwai25250502011-06-30 17:24:47 +0200901 cur = !!ucontrol->value.enumerated.item[0];
Takashi Iwai3b607e32011-07-18 16:54:40 +0200902 if (spec->hp_independent_mode == cur) {
903 mutex_unlock(&spec->config_mutex);
Takashi Iwai25250502011-06-30 17:24:47 +0200904 return 0;
Takashi Iwai3b607e32011-07-18 16:54:40 +0200905 }
Takashi Iwai25250502011-06-30 17:24:47 +0200906 spec->hp_independent_mode = cur;
Takashi Iwai3214b962011-07-18 12:49:25 +0200907 shared = spec->hp_indep_shared;
Takashi Iwai020066d2011-07-21 13:45:56 +0200908 deactivate_hp_paths(codec);
909 if (cur)
910 activate_output_path(codec, &spec->hp_indep_path, true, false);
911 else {
Takashi Iwai3214b962011-07-18 12:49:25 +0200912 if (shared)
913 activate_output_path(codec, &spec->out_path[shared],
Takashi Iwai25250502011-06-30 17:24:47 +0200914 true, false);
Takashi Iwai020066d2011-07-21 13:45:56 +0200915 if (spec->aamix_mode || !spec->hp_path.depth)
916 activate_output_path(codec, &spec->hp_mix_path,
917 true, false);
918 else
919 activate_output_path(codec, &spec->hp_path,
920 true, false);
Takashi Iwai8df2a312011-06-21 11:48:29 +0200921 }
Harald Welte0aa62ae2008-09-09 15:58:27 +0800922
Takashi Iwai3b607e32011-07-18 16:54:40 +0200923 switch_indep_hp_dacs(codec);
924 mutex_unlock(&spec->config_mutex);
925
Lydia Wangce0e5a92011-03-22 16:22:37 +0800926 /* update jack power state */
Lydia Wang3e95b9a2011-03-23 15:13:28 +0800927 set_widgets_power_state(codec);
Takashi Iwai6e969d92011-07-11 11:28:13 +0200928 via_hp_automute(codec);
Takashi Iwai25250502011-06-30 17:24:47 +0200929 return 1;
Harald Welte0aa62ae2008-09-09 15:58:27 +0800930}
931
Takashi Iwaiece8d042011-06-19 16:24:21 +0200932static const struct snd_kcontrol_new via_hp_mixer = {
933 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
934 .name = "Independent HP",
935 .info = via_independent_hp_info,
936 .get = via_independent_hp_get,
937 .put = via_independent_hp_put,
Harald Welte0aa62ae2008-09-09 15:58:27 +0800938};
939
Takashi Iwai3d83e572010-04-14 14:36:23 +0200940static int via_hp_build(struct hda_codec *codec)
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100941{
Takashi Iwai3d83e572010-04-14 14:36:23 +0200942 struct via_spec *spec = codec->spec;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100943 struct snd_kcontrol_new *knew;
944 hda_nid_t nid;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100945
Takashi Iwaiece8d042011-06-19 16:24:21 +0200946 nid = spec->autocfg.hp_pins[0];
947 knew = via_clone_control(spec, &via_hp_mixer);
Takashi Iwai3d83e572010-04-14 14:36:23 +0200948 if (knew == NULL)
949 return -ENOMEM;
950
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100951 knew->subdevice = HDA_SUBDEV_NID_FLAG | nid;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100952
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100953 return 0;
954}
955
Lydia Wang1564b282009-10-10 19:07:52 +0800956static void notify_aa_path_ctls(struct hda_codec *codec)
957{
Takashi Iwaie3d7a142011-06-20 13:52:33 +0200958 struct via_spec *spec = codec->spec;
Lydia Wang1564b282009-10-10 19:07:52 +0800959 int i;
Lydia Wang1564b282009-10-10 19:07:52 +0800960
Takashi Iwaie3d7a142011-06-20 13:52:33 +0200961 for (i = 0; i < spec->smart51_nums; i++) {
962 struct snd_kcontrol *ctl;
963 struct snd_ctl_elem_id id;
964 memset(&id, 0, sizeof(id));
965 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
966 sprintf(id.name, "%s Playback Volume", spec->smart51_labels[i]);
Lydia Wang525566c2011-04-28 16:03:39 +0800967 ctl = snd_hda_find_mixer_ctl(codec, id.name);
968 if (ctl)
969 snd_ctl_notify(codec->bus->card,
970 SNDRV_CTL_EVENT_MASK_VALUE,
971 &ctl->id);
Lydia Wang1564b282009-10-10 19:07:52 +0800972 }
973}
974
975static void mute_aa_path(struct hda_codec *codec, int mute)
976{
977 struct via_spec *spec = codec->spec;
Takashi Iwaie3d7a142011-06-20 13:52:33 +0200978 int val = mute ? HDA_AMP_MUTE : HDA_AMP_UNMUTE;
Lydia Wang1564b282009-10-10 19:07:52 +0800979 int i;
Takashi Iwaie3d7a142011-06-20 13:52:33 +0200980
Lydia Wang1564b282009-10-10 19:07:52 +0800981 /* check AA path's mute status */
Takashi Iwaie3d7a142011-06-20 13:52:33 +0200982 for (i = 0; i < spec->smart51_nums; i++) {
983 if (spec->smart51_idxs[i] < 0)
984 continue;
985 snd_hda_codec_amp_stereo(codec, spec->aa_mix_nid,
986 HDA_INPUT, spec->smart51_idxs[i],
Lydia Wang1564b282009-10-10 19:07:52 +0800987 HDA_AMP_MUTE, val);
988 }
989}
Takashi Iwaif4a78282011-06-17 18:46:48 +0200990
Takashi Iwaie3d7a142011-06-20 13:52:33 +0200991static bool is_smart51_pins(struct hda_codec *codec, hda_nid_t pin)
992{
993 struct via_spec *spec = codec->spec;
994 int i;
995
996 for (i = 0; i < spec->smart51_nums; i++)
997 if (spec->smart51_pins[i] == pin)
998 return true;
999 return false;
1000}
1001
Lydia Wang1564b282009-10-10 19:07:52 +08001002static int via_smart51_get(struct snd_kcontrol *kcontrol,
1003 struct snd_ctl_elem_value *ucontrol)
1004{
1005 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1006 struct via_spec *spec = codec->spec;
Lydia Wang1564b282009-10-10 19:07:52 +08001007
Takashi Iwaif2b1c9f2011-06-21 16:52:39 +02001008 *ucontrol->value.integer.value = spec->smart51_enabled;
Lydia Wang1564b282009-10-10 19:07:52 +08001009 return 0;
1010}
1011
1012static int via_smart51_put(struct snd_kcontrol *kcontrol,
1013 struct snd_ctl_elem_value *ucontrol)
1014{
1015 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1016 struct via_spec *spec = codec->spec;
1017 int out_in = *ucontrol->value.integer.value
1018 ? AC_PINCTL_OUT_EN : AC_PINCTL_IN_EN;
Lydia Wang1564b282009-10-10 19:07:52 +08001019 int i;
1020
Takashi Iwaie3d7a142011-06-20 13:52:33 +02001021 for (i = 0; i < spec->smart51_nums; i++) {
1022 hda_nid_t nid = spec->smart51_pins[i];
Takashi Iwai7b315bb2010-08-30 13:06:30 +02001023 unsigned int parm;
1024
Takashi Iwai7b315bb2010-08-30 13:06:30 +02001025 parm = snd_hda_codec_read(codec, nid, 0,
1026 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1027 parm &= ~(AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
1028 parm |= out_in;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001029 snd_hda_set_pin_ctl(codec, nid, parm);
Takashi Iwai7b315bb2010-08-30 13:06:30 +02001030 if (out_in == AC_PINCTL_OUT_EN) {
1031 mute_aa_path(codec, 1);
1032 notify_aa_path_ctls(codec);
1033 }
Lydia Wang1564b282009-10-10 19:07:52 +08001034 }
1035 spec->smart51_enabled = *ucontrol->value.integer.value;
Lydia Wang3e95b9a2011-03-23 15:13:28 +08001036 set_widgets_power_state(codec);
Lydia Wang1564b282009-10-10 19:07:52 +08001037 return 1;
1038}
1039
Takashi Iwai5f4b36d2011-06-17 14:55:02 +02001040static const struct snd_kcontrol_new via_smart51_mixer = {
1041 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1042 .name = "Smart 5.1",
1043 .count = 1,
Takashi Iwaif2b1c9f2011-06-21 16:52:39 +02001044 .info = snd_ctl_boolean_mono_info,
Takashi Iwai5f4b36d2011-06-17 14:55:02 +02001045 .get = via_smart51_get,
1046 .put = via_smart51_put,
Lydia Wang1564b282009-10-10 19:07:52 +08001047};
1048
Takashi Iwaif4a78282011-06-17 18:46:48 +02001049static int via_smart51_build(struct hda_codec *codec)
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001050{
Takashi Iwaif4a78282011-06-17 18:46:48 +02001051 struct via_spec *spec = codec->spec;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001052
Takashi Iwaie3d7a142011-06-20 13:52:33 +02001053 if (!spec->smart51_nums)
Lydia Wangcb34c202011-04-27 17:44:16 +08001054 return 0;
Takashi Iwaie3d7a142011-06-20 13:52:33 +02001055 if (!via_clone_control(spec, &via_smart51_mixer))
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001056 return -ENOMEM;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001057 return 0;
1058}
1059
Takashi Iwaiada509e2011-06-20 15:40:19 +02001060/* check AA path's mute status */
1061static bool is_aa_path_mute(struct hda_codec *codec)
Lydia Wangf5271102009-10-10 19:07:35 +08001062{
Lydia Wangf5271102009-10-10 19:07:35 +08001063 struct via_spec *spec = codec->spec;
Takashi Iwaiada509e2011-06-20 15:40:19 +02001064 const struct hda_amp_list *p;
1065 int i, ch, v;
1066
1067 for (i = 0; i < spec->num_loopbacks; i++) {
1068 p = &spec->loopback_list[i];
1069 for (ch = 0; ch < 2; ch++) {
1070 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
1071 p->idx);
1072 if (!(v & HDA_AMP_MUTE) && v > 0)
1073 return false;
Lydia Wangf5271102009-10-10 19:07:35 +08001074 }
1075 }
Takashi Iwaiada509e2011-06-20 15:40:19 +02001076 return true;
Lydia Wangf5271102009-10-10 19:07:35 +08001077}
1078
1079/* enter/exit analog low-current mode */
Takashi Iwaie9d010c2012-02-01 10:33:23 +01001080static void __analog_low_current_mode(struct hda_codec *codec, bool force)
Lydia Wangf5271102009-10-10 19:07:35 +08001081{
1082 struct via_spec *spec = codec->spec;
Takashi Iwaiada509e2011-06-20 15:40:19 +02001083 bool enable;
1084 unsigned int verb, parm;
Lydia Wangf5271102009-10-10 19:07:35 +08001085
Takashi Iwaie9d010c2012-02-01 10:33:23 +01001086 if (spec->no_pin_power_ctl)
1087 enable = false;
1088 else
1089 enable = is_aa_path_mute(codec) && !spec->opened_streams;
1090 if (enable == spec->alc_mode && !force)
1091 return;
1092 spec->alc_mode = enable;
Lydia Wangf5271102009-10-10 19:07:35 +08001093
1094 /* decide low current mode's verb & parameter */
1095 switch (spec->codec_type) {
1096 case VT1708B_8CH:
1097 case VT1708B_4CH:
1098 verb = 0xf70;
1099 parm = enable ? 0x02 : 0x00; /* 0x02: 2/3x, 0x00: 1x */
1100 break;
1101 case VT1708S:
Lydia Wangeb7188c2009-10-10 19:08:34 +08001102 case VT1718S:
Lydia Wangf3db4232009-10-10 19:08:41 +08001103 case VT1716S:
Lydia Wangf5271102009-10-10 19:07:35 +08001104 verb = 0xf73;
1105 parm = enable ? 0x51 : 0xe1; /* 0x51: 4/28x, 0xe1: 1x */
1106 break;
1107 case VT1702:
1108 verb = 0xf73;
1109 parm = enable ? 0x01 : 0x1d; /* 0x01: 4/40x, 0x1d: 1x */
1110 break;
Lydia Wang25eaba22009-10-10 19:08:43 +08001111 case VT2002P:
Lydia Wangab6734e2009-10-10 19:08:46 +08001112 case VT1812:
Lydia Wang118909562011-03-23 17:57:34 +08001113 case VT1802:
Lydia Wang25eaba22009-10-10 19:08:43 +08001114 verb = 0xf93;
1115 parm = enable ? 0x00 : 0xe0; /* 0x00: 4/40x, 0xe0: 1x */
1116 break;
Lydia Wang43737e02012-12-10 18:28:11 +08001117 case VT1705CF:
Lydia Wang6121b842012-12-10 19:03:26 +08001118 case VT1808:
Lydia Wang43737e02012-12-10 18:28:11 +08001119 verb = 0xf82;
1120 parm = enable ? 0x00 : 0xe0; /* 0x00: 4/40x, 0xe0: 1x */
1121 break;
Lydia Wangf5271102009-10-10 19:07:35 +08001122 default:
1123 return; /* other codecs are not supported */
1124 }
1125 /* send verb */
1126 snd_hda_codec_write(codec, codec->afg, 0, verb, parm);
1127}
1128
Takashi Iwaie9d010c2012-02-01 10:33:23 +01001129static void analog_low_current_mode(struct hda_codec *codec)
1130{
1131 return __analog_low_current_mode(codec, false);
1132}
1133
Joseph Chanc577b8a2006-11-29 15:29:40 +01001134/*
1135 * generic initialization of ADC, input mixers and output mixers
1136 */
Takashi Iwai096a8852011-06-20 12:09:02 +02001137static const struct hda_verb vt1708_init_verbs[] = {
Lydia Wangaa266fc2011-03-24 12:41:01 +08001138 /* power down jack detect function */
1139 {0x1, 0xf81, 0x1},
Josepch Chanf7278fd2007-12-13 16:40:40 +01001140 { }
Joseph Chanc577b8a2006-11-29 15:29:40 +01001141};
1142
Takashi Iwai3b607e32011-07-18 16:54:40 +02001143static void set_stream_open(struct hda_codec *codec, int bit, bool active)
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001144{
Takashi Iwaiada509e2011-06-20 15:40:19 +02001145 struct via_spec *spec = codec->spec;
1146
1147 if (active)
Takashi Iwai3b607e32011-07-18 16:54:40 +02001148 spec->opened_streams |= bit;
Takashi Iwaiada509e2011-06-20 15:40:19 +02001149 else
Takashi Iwai3b607e32011-07-18 16:54:40 +02001150 spec->opened_streams &= ~bit;
Takashi Iwaiada509e2011-06-20 15:40:19 +02001151 analog_low_current_mode(codec);
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001152}
1153
Takashi Iwaiece8d042011-06-19 16:24:21 +02001154static int via_playback_multi_pcm_open(struct hda_pcm_stream *hinfo,
Joseph Chanc577b8a2006-11-29 15:29:40 +01001155 struct hda_codec *codec,
1156 struct snd_pcm_substream *substream)
1157{
1158 struct via_spec *spec = codec->spec;
Takashi Iwai25250502011-06-30 17:24:47 +02001159 const struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaiada509e2011-06-20 15:40:19 +02001160 int err;
Takashi Iwaiece8d042011-06-19 16:24:21 +02001161
Takashi Iwai25250502011-06-30 17:24:47 +02001162 spec->multiout.num_dacs = cfg->line_outs + spec->smart51_nums;
Takashi Iwai25250502011-06-30 17:24:47 +02001163 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
Takashi Iwai3b607e32011-07-18 16:54:40 +02001164 set_stream_open(codec, STREAM_MULTI_OUT, true);
Takashi Iwaiada509e2011-06-20 15:40:19 +02001165 err = snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
1166 hinfo);
1167 if (err < 0) {
Takashi Iwai3b607e32011-07-18 16:54:40 +02001168 set_stream_open(codec, STREAM_MULTI_OUT, false);
Takashi Iwaiada509e2011-06-20 15:40:19 +02001169 return err;
1170 }
1171 return 0;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001172}
1173
Takashi Iwaiece8d042011-06-19 16:24:21 +02001174static int via_playback_multi_pcm_close(struct hda_pcm_stream *hinfo,
Takashi Iwai9af74212011-06-18 16:17:45 +02001175 struct hda_codec *codec,
1176 struct snd_pcm_substream *substream)
1177{
Takashi Iwai3b607e32011-07-18 16:54:40 +02001178 set_stream_open(codec, STREAM_MULTI_OUT, false);
Takashi Iwai9af74212011-06-18 16:17:45 +02001179 return 0;
1180}
1181
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001182static int via_playback_hp_pcm_open(struct hda_pcm_stream *hinfo,
1183 struct hda_codec *codec,
1184 struct snd_pcm_substream *substream)
1185{
1186 struct via_spec *spec = codec->spec;
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001187
Takashi Iwaiece8d042011-06-19 16:24:21 +02001188 if (snd_BUG_ON(!spec->hp_dac_nid))
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001189 return -EINVAL;
Takashi Iwai3b607e32011-07-18 16:54:40 +02001190 set_stream_open(codec, STREAM_INDEP_HP, true);
Takashi Iwaiece8d042011-06-19 16:24:21 +02001191 return 0;
1192}
1193
1194static int via_playback_hp_pcm_close(struct hda_pcm_stream *hinfo,
1195 struct hda_codec *codec,
1196 struct snd_pcm_substream *substream)
1197{
Takashi Iwai3b607e32011-07-18 16:54:40 +02001198 set_stream_open(codec, STREAM_INDEP_HP, false);
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001199 return 0;
1200}
1201
1202static int via_playback_multi_pcm_prepare(struct hda_pcm_stream *hinfo,
1203 struct hda_codec *codec,
1204 unsigned int stream_tag,
1205 unsigned int format,
1206 struct snd_pcm_substream *substream)
Harald Welte0aa62ae2008-09-09 15:58:27 +08001207{
1208 struct via_spec *spec = codec->spec;
Harald Welte0aa62ae2008-09-09 15:58:27 +08001209
Takashi Iwai3b607e32011-07-18 16:54:40 +02001210 mutex_lock(&spec->config_mutex);
1211 setup_playback_multi_pcm(spec);
Takashi Iwaiece8d042011-06-19 16:24:21 +02001212 snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag,
1213 format, substream);
Takashi Iwai3b607e32011-07-18 16:54:40 +02001214 /* remember for dynamic DAC switch with indep-HP */
1215 spec->active_streams |= STREAM_MULTI_OUT;
1216 spec->cur_dac_stream_tag = stream_tag;
1217 spec->cur_dac_format = format;
1218 mutex_unlock(&spec->config_mutex);
Takashi Iwai187d3332011-11-24 16:33:09 +01001219 vt1708_update_hp_work(spec);
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001220 return 0;
Harald Welte0aa62ae2008-09-09 15:58:27 +08001221}
1222
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001223static int via_playback_hp_pcm_prepare(struct hda_pcm_stream *hinfo,
1224 struct hda_codec *codec,
1225 unsigned int stream_tag,
1226 unsigned int format,
1227 struct snd_pcm_substream *substream)
Harald Welte0aa62ae2008-09-09 15:58:27 +08001228{
1229 struct via_spec *spec = codec->spec;
Harald Welte0aa62ae2008-09-09 15:58:27 +08001230
Takashi Iwai3b607e32011-07-18 16:54:40 +02001231 mutex_lock(&spec->config_mutex);
1232 if (spec->hp_independent_mode)
1233 snd_hda_codec_setup_stream(codec, spec->hp_dac_nid,
1234 stream_tag, 0, format);
1235 spec->active_streams |= STREAM_INDEP_HP;
1236 spec->cur_hp_stream_tag = stream_tag;
1237 spec->cur_hp_format = format;
1238 mutex_unlock(&spec->config_mutex);
Takashi Iwai187d3332011-11-24 16:33:09 +01001239 vt1708_update_hp_work(spec);
Harald Welte0aa62ae2008-09-09 15:58:27 +08001240 return 0;
1241}
1242
1243static int via_playback_multi_pcm_cleanup(struct hda_pcm_stream *hinfo,
1244 struct hda_codec *codec,
1245 struct snd_pcm_substream *substream)
1246{
1247 struct via_spec *spec = codec->spec;
Harald Welte0aa62ae2008-09-09 15:58:27 +08001248
Takashi Iwai3b607e32011-07-18 16:54:40 +02001249 mutex_lock(&spec->config_mutex);
Takashi Iwaiece8d042011-06-19 16:24:21 +02001250 snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
Takashi Iwai3b607e32011-07-18 16:54:40 +02001251 spec->active_streams &= ~STREAM_MULTI_OUT;
1252 mutex_unlock(&spec->config_mutex);
Takashi Iwai187d3332011-11-24 16:33:09 +01001253 vt1708_update_hp_work(spec);
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001254 return 0;
1255}
1256
1257static int via_playback_hp_pcm_cleanup(struct hda_pcm_stream *hinfo,
1258 struct hda_codec *codec,
1259 struct snd_pcm_substream *substream)
1260{
1261 struct via_spec *spec = codec->spec;
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001262
Takashi Iwai3b607e32011-07-18 16:54:40 +02001263 mutex_lock(&spec->config_mutex);
1264 if (spec->hp_independent_mode)
1265 snd_hda_codec_setup_stream(codec, spec->hp_dac_nid, 0, 0, 0);
1266 spec->active_streams &= ~STREAM_INDEP_HP;
1267 mutex_unlock(&spec->config_mutex);
Takashi Iwai187d3332011-11-24 16:33:09 +01001268 vt1708_update_hp_work(spec);
Harald Welte0aa62ae2008-09-09 15:58:27 +08001269 return 0;
1270}
1271
Joseph Chanc577b8a2006-11-29 15:29:40 +01001272/*
1273 * Digital out
1274 */
1275static int via_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
1276 struct hda_codec *codec,
1277 struct snd_pcm_substream *substream)
1278{
1279 struct via_spec *spec = codec->spec;
1280 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
1281}
1282
1283static int via_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
1284 struct hda_codec *codec,
1285 struct snd_pcm_substream *substream)
1286{
1287 struct via_spec *spec = codec->spec;
1288 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
1289}
1290
Harald Welte5691ec72008-09-15 22:42:26 +08001291static int via_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Harald Welte98aa34c2008-09-09 16:02:09 +08001292 struct hda_codec *codec,
1293 unsigned int stream_tag,
1294 unsigned int format,
1295 struct snd_pcm_substream *substream)
1296{
1297 struct via_spec *spec = codec->spec;
Takashi Iwai9da29272009-05-07 16:31:14 +02001298 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
1299 stream_tag, format, substream);
1300}
Harald Welte5691ec72008-09-15 22:42:26 +08001301
Takashi Iwai9da29272009-05-07 16:31:14 +02001302static int via_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1303 struct hda_codec *codec,
1304 struct snd_pcm_substream *substream)
1305{
1306 struct via_spec *spec = codec->spec;
1307 snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
Harald Welte98aa34c2008-09-09 16:02:09 +08001308 return 0;
1309}
1310
Joseph Chanc577b8a2006-11-29 15:29:40 +01001311/*
1312 * Analog capture
1313 */
1314static int via_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
1315 struct hda_codec *codec,
1316 unsigned int stream_tag,
1317 unsigned int format,
1318 struct snd_pcm_substream *substream)
1319{
1320 struct via_spec *spec = codec->spec;
1321
1322 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
1323 stream_tag, 0, format);
1324 return 0;
1325}
1326
1327static int via_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
1328 struct hda_codec *codec,
1329 struct snd_pcm_substream *substream)
1330{
1331 struct via_spec *spec = codec->spec;
Takashi Iwai888afa12008-03-18 09:57:50 +01001332 snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
Joseph Chanc577b8a2006-11-29 15:29:40 +01001333 return 0;
1334}
1335
Takashi Iwaia86a88e2011-06-22 15:23:25 +02001336/* analog capture with dynamic ADC switching */
1337static int via_dyn_adc_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
1338 struct hda_codec *codec,
1339 unsigned int stream_tag,
1340 unsigned int format,
1341 struct snd_pcm_substream *substream)
1342{
1343 struct via_spec *spec = codec->spec;
1344 int adc_idx = spec->inputs[spec->cur_mux[0]].adc_idx;
1345
Takashi Iwai3b607e32011-07-18 16:54:40 +02001346 mutex_lock(&spec->config_mutex);
Takashi Iwaia86a88e2011-06-22 15:23:25 +02001347 spec->cur_adc = spec->adc_nids[adc_idx];
1348 spec->cur_adc_stream_tag = stream_tag;
1349 spec->cur_adc_format = format;
1350 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
Takashi Iwai3b607e32011-07-18 16:54:40 +02001351 mutex_unlock(&spec->config_mutex);
Takashi Iwaia86a88e2011-06-22 15:23:25 +02001352 return 0;
1353}
1354
1355static int via_dyn_adc_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
1356 struct hda_codec *codec,
1357 struct snd_pcm_substream *substream)
1358{
1359 struct via_spec *spec = codec->spec;
1360
Takashi Iwai3b607e32011-07-18 16:54:40 +02001361 mutex_lock(&spec->config_mutex);
Takashi Iwaia86a88e2011-06-22 15:23:25 +02001362 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
1363 spec->cur_adc = 0;
Takashi Iwai3b607e32011-07-18 16:54:40 +02001364 mutex_unlock(&spec->config_mutex);
Takashi Iwaia86a88e2011-06-22 15:23:25 +02001365 return 0;
1366}
1367
1368/* re-setup the stream if running; called from input-src put */
1369static bool via_dyn_adc_pcm_resetup(struct hda_codec *codec, int cur)
1370{
1371 struct via_spec *spec = codec->spec;
1372 int adc_idx = spec->inputs[cur].adc_idx;
1373 hda_nid_t adc = spec->adc_nids[adc_idx];
Takashi Iwai3b607e32011-07-18 16:54:40 +02001374 bool ret = false;
Takashi Iwaia86a88e2011-06-22 15:23:25 +02001375
Takashi Iwai3b607e32011-07-18 16:54:40 +02001376 mutex_lock(&spec->config_mutex);
Takashi Iwaia86a88e2011-06-22 15:23:25 +02001377 if (spec->cur_adc && spec->cur_adc != adc) {
1378 /* stream is running, let's swap the current ADC */
1379 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
1380 spec->cur_adc = adc;
1381 snd_hda_codec_setup_stream(codec, adc,
1382 spec->cur_adc_stream_tag, 0,
1383 spec->cur_adc_format);
Takashi Iwai3b607e32011-07-18 16:54:40 +02001384 ret = true;
Takashi Iwaia86a88e2011-06-22 15:23:25 +02001385 }
Takashi Iwai3b607e32011-07-18 16:54:40 +02001386 mutex_unlock(&spec->config_mutex);
1387 return ret;
Takashi Iwaia86a88e2011-06-22 15:23:25 +02001388}
1389
Takashi Iwai9af74212011-06-18 16:17:45 +02001390static const struct hda_pcm_stream via_pcm_analog_playback = {
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001391 .substreams = 1,
Joseph Chanc577b8a2006-11-29 15:29:40 +01001392 .channels_min = 2,
1393 .channels_max = 8,
Takashi Iwai9af74212011-06-18 16:17:45 +02001394 /* NID is set in via_build_pcms */
Joseph Chanc577b8a2006-11-29 15:29:40 +01001395 .ops = {
Takashi Iwaiece8d042011-06-19 16:24:21 +02001396 .open = via_playback_multi_pcm_open,
1397 .close = via_playback_multi_pcm_close,
Harald Welte0aa62ae2008-09-09 15:58:27 +08001398 .prepare = via_playback_multi_pcm_prepare,
1399 .cleanup = via_playback_multi_pcm_cleanup
Joseph Chanc577b8a2006-11-29 15:29:40 +01001400 },
1401};
1402
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001403static const struct hda_pcm_stream via_pcm_hp_playback = {
1404 .substreams = 1,
1405 .channels_min = 2,
1406 .channels_max = 2,
1407 /* NID is set in via_build_pcms */
1408 .ops = {
1409 .open = via_playback_hp_pcm_open,
Takashi Iwaiece8d042011-06-19 16:24:21 +02001410 .close = via_playback_hp_pcm_close,
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001411 .prepare = via_playback_hp_pcm_prepare,
1412 .cleanup = via_playback_hp_pcm_cleanup
1413 },
1414};
1415
Takashi Iwai90dd48a2011-05-02 12:38:19 +02001416static const struct hda_pcm_stream vt1708_pcm_analog_s16_playback = {
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001417 .substreams = 1,
Takashi Iwaibc9b562382008-05-23 17:50:27 +02001418 .channels_min = 2,
1419 .channels_max = 8,
Takashi Iwai9af74212011-06-18 16:17:45 +02001420 /* NID is set in via_build_pcms */
Takashi Iwaibc9b562382008-05-23 17:50:27 +02001421 /* We got noisy outputs on the right channel on VT1708 when
1422 * 24bit samples are used. Until any workaround is found,
1423 * disable the 24bit format, so far.
1424 */
1425 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1426 .ops = {
Takashi Iwaiece8d042011-06-19 16:24:21 +02001427 .open = via_playback_multi_pcm_open,
1428 .close = via_playback_multi_pcm_close,
Lydia Wangc873cc22009-10-10 19:08:21 +08001429 .prepare = via_playback_multi_pcm_prepare,
1430 .cleanup = via_playback_multi_pcm_cleanup
Takashi Iwaibc9b562382008-05-23 17:50:27 +02001431 },
1432};
1433
Takashi Iwai9af74212011-06-18 16:17:45 +02001434static const struct hda_pcm_stream via_pcm_analog_capture = {
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001435 .substreams = 1, /* will be changed in via_build_pcms() */
Joseph Chanc577b8a2006-11-29 15:29:40 +01001436 .channels_min = 2,
1437 .channels_max = 2,
Takashi Iwai9af74212011-06-18 16:17:45 +02001438 /* NID is set in via_build_pcms */
Joseph Chanc577b8a2006-11-29 15:29:40 +01001439 .ops = {
1440 .prepare = via_capture_pcm_prepare,
1441 .cleanup = via_capture_pcm_cleanup
1442 },
1443};
1444
Takashi Iwaia86a88e2011-06-22 15:23:25 +02001445static const struct hda_pcm_stream via_pcm_dyn_adc_analog_capture = {
1446 .substreams = 1,
1447 .channels_min = 2,
1448 .channels_max = 2,
1449 /* NID is set in via_build_pcms */
1450 .ops = {
1451 .prepare = via_dyn_adc_capture_pcm_prepare,
1452 .cleanup = via_dyn_adc_capture_pcm_cleanup,
1453 },
1454};
1455
Takashi Iwai9af74212011-06-18 16:17:45 +02001456static const struct hda_pcm_stream via_pcm_digital_playback = {
Joseph Chanc577b8a2006-11-29 15:29:40 +01001457 .substreams = 1,
1458 .channels_min = 2,
1459 .channels_max = 2,
1460 /* NID is set in via_build_pcms */
1461 .ops = {
1462 .open = via_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +02001463 .close = via_dig_playback_pcm_close,
Takashi Iwai9da29272009-05-07 16:31:14 +02001464 .prepare = via_dig_playback_pcm_prepare,
1465 .cleanup = via_dig_playback_pcm_cleanup
Joseph Chanc577b8a2006-11-29 15:29:40 +01001466 },
1467};
1468
Takashi Iwai9af74212011-06-18 16:17:45 +02001469static const struct hda_pcm_stream via_pcm_digital_capture = {
Joseph Chanc577b8a2006-11-29 15:29:40 +01001470 .substreams = 1,
1471 .channels_min = 2,
1472 .channels_max = 2,
1473};
1474
Takashi Iwai370bafb2011-06-20 12:47:45 +02001475/*
1476 * slave controls for virtual master
1477 */
Takashi Iwai9322ca52012-02-03 14:28:01 +01001478static const char * const via_slave_pfxs[] = {
1479 "Front", "Surround", "Center", "LFE", "Side",
Takashi Iwaif37bc7a2012-11-08 15:59:23 +01001480 "Headphone", "Speaker", "Bass Speaker",
Takashi Iwai370bafb2011-06-20 12:47:45 +02001481 NULL,
1482};
1483
Joseph Chanc577b8a2006-11-29 15:29:40 +01001484static int via_build_controls(struct hda_codec *codec)
1485{
1486 struct via_spec *spec = codec->spec;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001487 struct snd_kcontrol *kctl;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001488 int err, i;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001489
Takashi Iwaib5bcc182012-02-02 10:30:17 +01001490 spec->no_pin_power_ctl = 1;
Takashi Iwai24088a52011-06-17 16:59:21 +02001491 if (spec->set_widgets_power_state)
1492 if (!via_clone_control(spec, &via_pin_power_ctl_enum))
1493 return -ENOMEM;
1494
Joseph Chanc577b8a2006-11-29 15:29:40 +01001495 for (i = 0; i < spec->num_mixers; i++) {
1496 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1497 if (err < 0)
1498 return err;
1499 }
1500
1501 if (spec->multiout.dig_out_nid) {
1502 err = snd_hda_create_spdif_out_ctls(codec,
Stephen Warren74b654c2011-06-01 11:14:18 -06001503 spec->multiout.dig_out_nid,
Joseph Chanc577b8a2006-11-29 15:29:40 +01001504 spec->multiout.dig_out_nid);
1505 if (err < 0)
1506 return err;
Takashi Iwai9a081602008-02-12 18:37:26 +01001507 err = snd_hda_create_spdif_share_sw(codec,
1508 &spec->multiout);
1509 if (err < 0)
1510 return err;
1511 spec->multiout.share_spdif = 1;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001512 }
1513 if (spec->dig_in_nid) {
1514 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1515 if (err < 0)
1516 return err;
1517 }
Lydia Wang17314372009-10-10 19:07:37 +08001518
Takashi Iwai370bafb2011-06-20 12:47:45 +02001519 /* if we have no master control, let's create it */
1520 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
1521 unsigned int vmaster_tlv[4];
1522 snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0],
1523 HDA_OUTPUT, vmaster_tlv);
1524 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
Takashi Iwai9322ca52012-02-03 14:28:01 +01001525 vmaster_tlv, via_slave_pfxs,
1526 "Playback Volume");
Takashi Iwai370bafb2011-06-20 12:47:45 +02001527 if (err < 0)
1528 return err;
1529 }
1530 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1531 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
Takashi Iwai9322ca52012-02-03 14:28:01 +01001532 NULL, via_slave_pfxs,
1533 "Playback Switch");
Takashi Iwai370bafb2011-06-20 12:47:45 +02001534 if (err < 0)
1535 return err;
1536 }
1537
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001538 /* assign Capture Source enums to NID */
1539 kctl = snd_hda_find_mixer_ctl(codec, "Input Source");
1540 for (i = 0; kctl && i < kctl->count; i++) {
Takashi Iwai77e314f2012-02-22 12:34:08 +01001541 if (!spec->mux_nids[i])
1542 continue;
Takashi Iwai21949f02009-12-23 08:31:59 +01001543 err = snd_hda_add_nid(codec, kctl, i, spec->mux_nids[i]);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001544 if (err < 0)
1545 return err;
1546 }
1547
Takashi Iwai603c4012008-07-30 15:01:44 +02001548 via_free_kctls(codec); /* no longer needed */
Takashi Iwai01a61e12011-10-28 00:03:22 +02001549
1550 err = snd_hda_jack_add_kctls(codec, &spec->autocfg);
1551 if (err < 0)
1552 return err;
1553
Joseph Chanc577b8a2006-11-29 15:29:40 +01001554 return 0;
1555}
1556
1557static int via_build_pcms(struct hda_codec *codec)
1558{
1559 struct via_spec *spec = codec->spec;
1560 struct hda_pcm *info = spec->pcm_rec;
1561
Takashi Iwaia5973102011-09-28 16:43:36 +02001562 codec->num_pcms = 0;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001563 codec->pcm_info = info;
1564
Takashi Iwaia5973102011-09-28 16:43:36 +02001565 if (spec->multiout.num_dacs || spec->num_adc_nids) {
1566 snprintf(spec->stream_name_analog,
1567 sizeof(spec->stream_name_analog),
1568 "%s Analog", codec->chip_name);
1569 info->name = spec->stream_name_analog;
Takashi Iwai9af74212011-06-18 16:17:45 +02001570
Takashi Iwaia5973102011-09-28 16:43:36 +02001571 if (spec->multiout.num_dacs) {
1572 if (!spec->stream_analog_playback)
1573 spec->stream_analog_playback =
1574 &via_pcm_analog_playback;
1575 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
1576 *spec->stream_analog_playback;
1577 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
1578 spec->multiout.dac_nids[0];
1579 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
1580 spec->multiout.max_channels;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01001581 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT
1582 && spec->autocfg.line_outs == 2)
1583 info->stream[SNDRV_PCM_STREAM_PLAYBACK].chmap =
1584 snd_pcm_2_1_chmaps;
Takashi Iwaia5973102011-09-28 16:43:36 +02001585 }
Takashi Iwai9af74212011-06-18 16:17:45 +02001586
Takashi Iwaia5973102011-09-28 16:43:36 +02001587 if (!spec->stream_analog_capture) {
1588 if (spec->dyn_adc_switch)
1589 spec->stream_analog_capture =
1590 &via_pcm_dyn_adc_analog_capture;
1591 else
1592 spec->stream_analog_capture =
1593 &via_pcm_analog_capture;
1594 }
1595 if (spec->num_adc_nids) {
1596 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
1597 *spec->stream_analog_capture;
1598 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
1599 spec->adc_nids[0];
1600 if (!spec->dyn_adc_switch)
1601 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
1602 spec->num_adc_nids;
1603 }
Joseph Chanc577b8a2006-11-29 15:29:40 +01001604 codec->num_pcms++;
1605 info++;
Takashi Iwaia5973102011-09-28 16:43:36 +02001606 }
1607
1608 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
Takashi Iwai82673bc2011-06-17 16:24:21 +02001609 snprintf(spec->stream_name_digital,
1610 sizeof(spec->stream_name_digital),
1611 "%s Digital", codec->chip_name);
Joseph Chanc577b8a2006-11-29 15:29:40 +01001612 info->name = spec->stream_name_digital;
Takashi Iwai7ba72ba2008-02-06 14:03:20 +01001613 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001614 if (spec->multiout.dig_out_nid) {
Takashi Iwai9af74212011-06-18 16:17:45 +02001615 if (!spec->stream_digital_playback)
1616 spec->stream_digital_playback =
1617 &via_pcm_digital_playback;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001618 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
Takashi Iwai9af74212011-06-18 16:17:45 +02001619 *spec->stream_digital_playback;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001620 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
1621 spec->multiout.dig_out_nid;
1622 }
1623 if (spec->dig_in_nid) {
Takashi Iwai9af74212011-06-18 16:17:45 +02001624 if (!spec->stream_digital_capture)
1625 spec->stream_digital_capture =
1626 &via_pcm_digital_capture;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001627 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
Takashi Iwai9af74212011-06-18 16:17:45 +02001628 *spec->stream_digital_capture;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001629 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
1630 spec->dig_in_nid;
1631 }
Takashi Iwaia5973102011-09-28 16:43:36 +02001632 codec->num_pcms++;
1633 info++;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001634 }
1635
Takashi Iwaiece8d042011-06-19 16:24:21 +02001636 if (spec->hp_dac_nid) {
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001637 snprintf(spec->stream_name_hp, sizeof(spec->stream_name_hp),
1638 "%s HP", codec->chip_name);
1639 info->name = spec->stream_name_hp;
1640 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = via_pcm_hp_playback;
1641 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
Takashi Iwaiece8d042011-06-19 16:24:21 +02001642 spec->hp_dac_nid;
Takashi Iwaia5973102011-09-28 16:43:36 +02001643 codec->num_pcms++;
1644 info++;
Takashi Iwai7eb56e82011-06-18 16:40:14 +02001645 }
Joseph Chanc577b8a2006-11-29 15:29:40 +01001646 return 0;
1647}
1648
1649static void via_free(struct hda_codec *codec)
1650{
1651 struct via_spec *spec = codec->spec;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001652
1653 if (!spec)
1654 return;
1655
Takashi Iwai603c4012008-07-30 15:01:44 +02001656 via_free_kctls(codec);
Lydia Wang1f2e99f2009-10-10 19:08:17 +08001657 vt1708_stop_hp_work(spec);
Takashi Iwaia86a88e2011-06-22 15:23:25 +02001658 kfree(spec->bind_cap_vol);
1659 kfree(spec->bind_cap_sw);
Takashi Iwai7819d1c2012-10-10 08:41:42 +02001660 snd_hda_gen_free(&spec->gen);
Takashi Iwaia86a88e2011-06-22 15:23:25 +02001661 kfree(spec);
Joseph Chanc577b8a2006-11-29 15:29:40 +01001662}
1663
Takashi Iwai64be2852011-06-17 16:51:39 +02001664/* mute/unmute outputs */
1665static void toggle_output_mutes(struct hda_codec *codec, int num_pins,
1666 hda_nid_t *pins, bool mute)
1667{
1668 int i;
Takashi Iwai94994732011-07-11 11:36:44 +02001669 for (i = 0; i < num_pins; i++) {
1670 unsigned int parm = snd_hda_codec_read(codec, pins[i], 0,
1671 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1672 if (parm & AC_PINCTL_IN_EN)
1673 continue;
1674 if (mute)
1675 parm &= ~AC_PINCTL_OUT_EN;
1676 else
1677 parm |= AC_PINCTL_OUT_EN;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001678 snd_hda_set_pin_ctl(codec, pins[i], parm);
Takashi Iwai94994732011-07-11 11:36:44 +02001679 }
Takashi Iwai64be2852011-06-17 16:51:39 +02001680}
1681
Takashi Iwai4a918ff2011-06-20 12:39:26 +02001682/* mute internal speaker if line-out is plugged */
1683static void via_line_automute(struct hda_codec *codec, int present)
1684{
1685 struct via_spec *spec = codec->spec;
1686
1687 if (!spec->autocfg.speaker_outs)
1688 return;
1689 if (!present)
1690 present = snd_hda_jack_detect(codec,
1691 spec->autocfg.line_out_pins[0]);
1692 toggle_output_mutes(codec, spec->autocfg.speaker_outs,
1693 spec->autocfg.speaker_pins,
1694 present);
1695}
1696
Harald Welte69e52a82008-09-09 15:57:32 +08001697/* mute internal speaker if HP is plugged */
1698static void via_hp_automute(struct hda_codec *codec)
1699{
Takashi Iwai4a918ff2011-06-20 12:39:26 +02001700 int present = 0;
Takashi Iwai6e969d92011-07-11 11:28:13 +02001701 int nums;
Harald Welte69e52a82008-09-09 15:57:32 +08001702 struct via_spec *spec = codec->spec;
1703
Takashi Iwai187d3332011-11-24 16:33:09 +01001704 if (!spec->hp_independent_mode && spec->autocfg.hp_pins[0] &&
Herton Ronaldo Krzesinskicf55e902012-09-21 20:45:19 -03001705 (spec->codec_type != VT1708 || spec->vt1708_jack_detect) &&
1706 is_jack_detectable(codec, spec->autocfg.hp_pins[0]))
Takashi Iwai4a918ff2011-06-20 12:39:26 +02001707 present = snd_hda_jack_detect(codec, spec->autocfg.hp_pins[0]);
Takashi Iwai6e969d92011-07-11 11:28:13 +02001708
1709 if (spec->smart51_enabled)
1710 nums = spec->autocfg.line_outs + spec->smart51_nums;
1711 else
1712 nums = spec->autocfg.line_outs;
1713 toggle_output_mutes(codec, nums, spec->autocfg.line_out_pins, present);
1714
Takashi Iwai4a918ff2011-06-20 12:39:26 +02001715 via_line_automute(codec, present);
Lydia Wangf3db4232009-10-10 19:08:41 +08001716}
1717
Takashi Iwai2a439522011-07-26 09:52:50 +02001718#ifdef CONFIG_PM
Takashi Iwai68cb2b52012-07-02 15:20:37 +02001719static int via_suspend(struct hda_codec *codec)
Lydia Wang1f2e99f2009-10-10 19:08:17 +08001720{
1721 struct via_spec *spec = codec->spec;
1722 vt1708_stop_hp_work(spec);
David Henningsson94c142a2012-08-09 10:56:12 +02001723
1724 if (spec->codec_type == VT1802) {
1725 /* Fix pop noise on headphones */
1726 int i;
1727 for (i = 0; i < spec->autocfg.hp_outs; i++)
1728 snd_hda_set_pin_ctl(codec, spec->autocfg.hp_pins[i], 0);
1729 }
1730
Lydia Wang1f2e99f2009-10-10 19:08:17 +08001731 return 0;
1732}
1733#endif
1734
Takashi Iwai83012a72012-08-24 18:38:08 +02001735#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +02001736static int via_check_power_status(struct hda_codec *codec, hda_nid_t nid)
1737{
1738 struct via_spec *spec = codec->spec;
1739 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
1740}
1741#endif
1742
Joseph Chanc577b8a2006-11-29 15:29:40 +01001743/*
1744 */
Takashi Iwai5d417622011-06-20 11:32:27 +02001745
1746static int via_init(struct hda_codec *codec);
1747
Takashi Iwai90dd48a2011-05-02 12:38:19 +02001748static const struct hda_codec_ops via_patch_ops = {
Joseph Chanc577b8a2006-11-29 15:29:40 +01001749 .build_controls = via_build_controls,
1750 .build_pcms = via_build_pcms,
1751 .init = via_init,
1752 .free = via_free,
David Henningsson4e2d16d2012-10-08 15:44:14 +02001753 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwai2a439522011-07-26 09:52:50 +02001754#ifdef CONFIG_PM
Lydia Wang1f2e99f2009-10-10 19:08:17 +08001755 .suspend = via_suspend,
Takashi Iwaicb53c622007-08-10 17:21:45 +02001756 .check_power_status = via_check_power_status,
1757#endif
Joseph Chanc577b8a2006-11-29 15:29:40 +01001758};
1759
Takashi Iwai4a796162011-06-17 17:53:38 +02001760static bool is_empty_dac(struct hda_codec *codec, hda_nid_t dac)
Joseph Chanc577b8a2006-11-29 15:29:40 +01001761{
Takashi Iwai4a796162011-06-17 17:53:38 +02001762 struct via_spec *spec = codec->spec;
1763 int i;
1764
1765 for (i = 0; i < spec->multiout.num_dacs; i++) {
1766 if (spec->multiout.dac_nids[i] == dac)
1767 return false;
1768 }
Takashi Iwaiece8d042011-06-19 16:24:21 +02001769 if (spec->hp_dac_nid == dac)
Takashi Iwai4a796162011-06-17 17:53:38 +02001770 return false;
1771 return true;
1772}
1773
Takashi Iwai8e3679d2011-06-21 09:01:36 +02001774static bool __parse_output_path(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwai3214b962011-07-18 12:49:25 +02001775 hda_nid_t target_dac, int with_aa_mix,
1776 struct nid_path *path, int depth)
Takashi Iwai4a796162011-06-17 17:53:38 +02001777{
Takashi Iwai3214b962011-07-18 12:49:25 +02001778 struct via_spec *spec = codec->spec;
Takashi Iwai4a796162011-06-17 17:53:38 +02001779 hda_nid_t conn[8];
1780 int i, nums;
1781
Takashi Iwai3214b962011-07-18 12:49:25 +02001782 if (nid == spec->aa_mix_nid) {
1783 if (!with_aa_mix)
1784 return false;
1785 with_aa_mix = 2; /* mark aa-mix is included */
1786 }
1787
Takashi Iwai4a796162011-06-17 17:53:38 +02001788 nums = snd_hda_get_connections(codec, nid, conn, ARRAY_SIZE(conn));
1789 for (i = 0; i < nums; i++) {
1790 if (get_wcaps_type(get_wcaps(codec, conn[i])) != AC_WID_AUD_OUT)
1791 continue;
Takashi Iwai3214b962011-07-18 12:49:25 +02001792 if (conn[i] == target_dac || is_empty_dac(codec, conn[i])) {
1793 /* aa-mix is requested but not included? */
1794 if (!(spec->aa_mix_nid && with_aa_mix == 1))
1795 goto found;
1796 }
Takashi Iwai4a796162011-06-17 17:53:38 +02001797 }
Takashi Iwai8e3679d2011-06-21 09:01:36 +02001798 if (depth >= MAX_NID_PATH_DEPTH)
Takashi Iwai4a796162011-06-17 17:53:38 +02001799 return false;
1800 for (i = 0; i < nums; i++) {
1801 unsigned int type;
1802 type = get_wcaps_type(get_wcaps(codec, conn[i]));
Takashi Iwai3214b962011-07-18 12:49:25 +02001803 if (type == AC_WID_AUD_OUT)
Takashi Iwai4a796162011-06-17 17:53:38 +02001804 continue;
Takashi Iwai8e3679d2011-06-21 09:01:36 +02001805 if (__parse_output_path(codec, conn[i], target_dac,
Takashi Iwai3214b962011-07-18 12:49:25 +02001806 with_aa_mix, path, depth + 1))
Takashi Iwai09a9ad692011-06-21 15:57:44 +02001807 goto found;
Takashi Iwai4a796162011-06-17 17:53:38 +02001808 }
1809 return false;
Takashi Iwai09a9ad692011-06-21 15:57:44 +02001810
1811 found:
1812 path->path[path->depth] = conn[i];
1813 path->idx[path->depth] = i;
1814 if (nums > 1 && get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_AUD_MIX)
1815 path->multi[path->depth] = 1;
1816 path->depth++;
1817 return true;
Takashi Iwai4a796162011-06-17 17:53:38 +02001818}
1819
Takashi Iwai8e3679d2011-06-21 09:01:36 +02001820static bool parse_output_path(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwai3214b962011-07-18 12:49:25 +02001821 hda_nid_t target_dac, int with_aa_mix,
1822 struct nid_path *path)
Takashi Iwai8e3679d2011-06-21 09:01:36 +02001823{
Takashi Iwai3214b962011-07-18 12:49:25 +02001824 if (__parse_output_path(codec, nid, target_dac, with_aa_mix, path, 1)) {
Takashi Iwai8e3679d2011-06-21 09:01:36 +02001825 path->path[path->depth] = nid;
1826 path->depth++;
Takashi Iwai3214b962011-07-18 12:49:25 +02001827 snd_printdd("output-path: depth=%d, %02x/%02x/%02x/%02x/%02x\n",
1828 path->depth, path->path[0], path->path[1],
1829 path->path[2], path->path[3], path->path[4]);
Takashi Iwai8e3679d2011-06-21 09:01:36 +02001830 return true;
1831 }
1832 return false;
1833}
1834
Takashi Iwai4a796162011-06-17 17:53:38 +02001835static int via_auto_fill_dac_nids(struct hda_codec *codec)
1836{
1837 struct via_spec *spec = codec->spec;
1838 const struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai5b376192012-11-07 10:32:47 +01001839 int i;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001840 hda_nid_t nid;
1841
Takashi Iwai5b376192012-11-07 10:32:47 +01001842 spec->multiout.num_dacs = 0;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001843 spec->multiout.dac_nids = spec->private_dac_nids;
Takashi Iwai4a796162011-06-17 17:53:38 +02001844 for (i = 0; i < cfg->line_outs; i++) {
Takashi Iwai3214b962011-07-18 12:49:25 +02001845 hda_nid_t dac = 0;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001846 nid = cfg->line_out_pins[i];
Takashi Iwai4a796162011-06-17 17:53:38 +02001847 if (!nid)
1848 continue;
Takashi Iwai3214b962011-07-18 12:49:25 +02001849 if (parse_output_path(codec, nid, 0, 0, &spec->out_path[i]))
1850 dac = spec->out_path[i].path[0];
1851 if (!i && parse_output_path(codec, nid, dac, 1,
1852 &spec->out_mix_path))
1853 dac = spec->out_mix_path.path[0];
Takashi Iwai5b376192012-11-07 10:32:47 +01001854 if (dac)
1855 spec->private_dac_nids[spec->multiout.num_dacs++] = dac;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001856 }
Takashi Iwai3214b962011-07-18 12:49:25 +02001857 if (!spec->out_path[0].depth && spec->out_mix_path.depth) {
1858 spec->out_path[0] = spec->out_mix_path;
1859 spec->out_mix_path.depth = 0;
1860 }
Joseph Chanc577b8a2006-11-29 15:29:40 +01001861 return 0;
1862}
1863
Takashi Iwai4a796162011-06-17 17:53:38 +02001864static int create_ch_ctls(struct hda_codec *codec, const char *pfx,
Takashi Iwai09a9ad692011-06-21 15:57:44 +02001865 int chs, bool check_dac, struct nid_path *path)
Joseph Chanc577b8a2006-11-29 15:29:40 +01001866{
Takashi Iwai4a796162011-06-17 17:53:38 +02001867 struct via_spec *spec = codec->spec;
Joseph Chanc577b8a2006-11-29 15:29:40 +01001868 char name[32];
Takashi Iwai09a9ad692011-06-21 15:57:44 +02001869 hda_nid_t dac, pin, sel, nid;
1870 int err;
Takashi Iwaia934d5a2011-06-21 14:22:14 +02001871
Takashi Iwai09a9ad692011-06-21 15:57:44 +02001872 dac = check_dac ? path->path[0] : 0;
1873 pin = path->path[path->depth - 1];
1874 sel = path->depth > 1 ? path->path[1] : 0;
Takashi Iwai4a796162011-06-17 17:53:38 +02001875
Takashi Iwai8df2a312011-06-21 11:48:29 +02001876 if (dac && check_amp_caps(codec, dac, HDA_OUTPUT, AC_AMPCAP_NUM_STEPS))
Takashi Iwai4a796162011-06-17 17:53:38 +02001877 nid = dac;
Takashi Iwai8df2a312011-06-21 11:48:29 +02001878 else if (check_amp_caps(codec, pin, HDA_OUTPUT, AC_AMPCAP_NUM_STEPS))
Takashi Iwai4a796162011-06-17 17:53:38 +02001879 nid = pin;
Takashi Iwaia934d5a2011-06-21 14:22:14 +02001880 else if (check_amp_caps(codec, sel, HDA_OUTPUT, AC_AMPCAP_NUM_STEPS))
1881 nid = sel;
Takashi Iwai4a796162011-06-17 17:53:38 +02001882 else
1883 nid = 0;
1884 if (nid) {
1885 sprintf(name, "%s Playback Volume", pfx);
1886 err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
Lydia Wanga00a5fa2011-06-21 16:11:11 +08001887 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
Takashi Iwai4a796162011-06-17 17:53:38 +02001888 if (err < 0)
1889 return err;
Takashi Iwai09a9ad692011-06-21 15:57:44 +02001890 path->vol_ctl = nid;
Takashi Iwai4a796162011-06-17 17:53:38 +02001891 }
1892
Takashi Iwai8df2a312011-06-21 11:48:29 +02001893 if (dac && check_amp_caps(codec, dac, HDA_OUTPUT, AC_AMPCAP_MUTE))
Takashi Iwai4a796162011-06-17 17:53:38 +02001894 nid = dac;
Takashi Iwai8df2a312011-06-21 11:48:29 +02001895 else if (check_amp_caps(codec, pin, HDA_OUTPUT, AC_AMPCAP_MUTE))
Takashi Iwai4a796162011-06-17 17:53:38 +02001896 nid = pin;
Takashi Iwaia934d5a2011-06-21 14:22:14 +02001897 else if (check_amp_caps(codec, sel, HDA_OUTPUT, AC_AMPCAP_MUTE))
1898 nid = sel;
Takashi Iwai4a796162011-06-17 17:53:38 +02001899 else
1900 nid = 0;
1901 if (nid) {
1902 sprintf(name, "%s Playback Switch", pfx);
1903 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
1904 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
1905 if (err < 0)
1906 return err;
Takashi Iwai09a9ad692011-06-21 15:57:44 +02001907 path->mute_ctl = nid;
Takashi Iwai4a796162011-06-17 17:53:38 +02001908 }
1909 return 0;
1910}
1911
Takashi Iwaif4a78282011-06-17 18:46:48 +02001912static void mangle_smart51(struct hda_codec *codec)
1913{
1914 struct via_spec *spec = codec->spec;
1915 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai0f98c242011-06-21 12:51:33 +02001916 struct auto_pin_cfg_item *ins = cfg->inputs;
1917 int i, j, nums, attr;
1918 int pins[AUTO_CFG_MAX_INS];
Takashi Iwaif4a78282011-06-17 18:46:48 +02001919
Takashi Iwai0f98c242011-06-21 12:51:33 +02001920 for (attr = INPUT_PIN_ATTR_REAR; attr >= INPUT_PIN_ATTR_NORMAL; attr--) {
1921 nums = 0;
1922 for (i = 0; i < cfg->num_inputs; i++) {
1923 unsigned int def;
1924 if (ins[i].type > AUTO_PIN_LINE_IN)
1925 continue;
1926 def = snd_hda_codec_get_pincfg(codec, ins[i].pin);
1927 if (snd_hda_get_input_pin_attr(def) != attr)
1928 continue;
1929 for (j = 0; j < nums; j++)
1930 if (ins[pins[j]].type < ins[i].type) {
1931 memmove(pins + j + 1, pins + j,
Takashi Iwai21d45d22011-07-08 11:35:11 +02001932 (nums - j) * sizeof(int));
Takashi Iwai0f98c242011-06-21 12:51:33 +02001933 break;
1934 }
1935 pins[j] = i;
Takashi Iwaie3d7a142011-06-20 13:52:33 +02001936 nums++;
Takashi Iwai0f98c242011-06-21 12:51:33 +02001937 }
1938 if (cfg->line_outs + nums < 3)
Takashi Iwaif4a78282011-06-17 18:46:48 +02001939 continue;
Takashi Iwai0f98c242011-06-21 12:51:33 +02001940 for (i = 0; i < nums; i++) {
1941 hda_nid_t pin = ins[pins[i]].pin;
1942 spec->smart51_pins[spec->smart51_nums++] = pin;
1943 cfg->line_out_pins[cfg->line_outs++] = pin;
1944 if (cfg->line_outs == 3)
1945 break;
1946 }
1947 return;
Takashi Iwaif4a78282011-06-17 18:46:48 +02001948 }
1949}
1950
Takashi Iwai020066d2011-07-21 13:45:56 +02001951static void copy_path_mixer_ctls(struct nid_path *dst, struct nid_path *src)
1952{
1953 dst->vol_ctl = src->vol_ctl;
1954 dst->mute_ctl = src->mute_ctl;
1955}
1956
Takashi Iwai4a796162011-06-17 17:53:38 +02001957/* add playback controls from the parsed DAC table */
1958static int via_auto_create_multi_out_ctls(struct hda_codec *codec)
1959{
1960 struct via_spec *spec = codec->spec;
Takashi Iwaif4a78282011-06-17 18:46:48 +02001961 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai3214b962011-07-18 12:49:25 +02001962 struct nid_path *path;
Takashi Iwaiea734962011-01-17 11:29:34 +01001963 static const char * const chname[4] = {
David Henningsson34ca8d32012-11-09 07:03:59 +01001964 "Front", "Surround", NULL /* "CLFE" */, "Side"
Takashi Iwaiea734962011-01-17 11:29:34 +01001965 };
Takashi Iwai4a796162011-06-17 17:53:38 +02001966 int i, idx, err;
Takashi Iwaif4a78282011-06-17 18:46:48 +02001967 int old_line_outs;
1968
1969 /* check smart51 */
1970 old_line_outs = cfg->line_outs;
1971 if (cfg->line_outs == 1)
1972 mangle_smart51(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +01001973
Takashi Iwaie3d7a142011-06-20 13:52:33 +02001974 err = via_auto_fill_dac_nids(codec);
1975 if (err < 0)
1976 return err;
1977
Lydia Wang5c9a5612011-07-08 14:03:43 +08001978 if (spec->multiout.num_dacs < 3) {
1979 spec->smart51_nums = 0;
1980 cfg->line_outs = old_line_outs;
1981 }
Takashi Iwai4a796162011-06-17 17:53:38 +02001982 for (i = 0; i < cfg->line_outs; i++) {
1983 hda_nid_t pin, dac;
1984 pin = cfg->line_out_pins[i];
1985 dac = spec->multiout.dac_nids[i];
1986 if (!pin || !dac)
Joseph Chanc577b8a2006-11-29 15:29:40 +01001987 continue;
Takashi Iwai3214b962011-07-18 12:49:25 +02001988 path = spec->out_path + i;
Takashi Iwai0fe0adf2011-06-19 16:27:53 +02001989 if (i == HDA_CLFE) {
Takashi Iwai3214b962011-07-18 12:49:25 +02001990 err = create_ch_ctls(codec, "Center", 1, true, path);
Joseph Chanc577b8a2006-11-29 15:29:40 +01001991 if (err < 0)
1992 return err;
Takashi Iwai3214b962011-07-18 12:49:25 +02001993 err = create_ch_ctls(codec, "LFE", 2, true, path);
Joseph Chanc577b8a2006-11-29 15:29:40 +01001994 if (err < 0)
1995 return err;
1996 } else {
Takashi Iwai6aadf412011-06-20 14:09:02 +02001997 const char *pfx = chname[i];
1998 if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT &&
Takashi Iwaif37bc7a2012-11-08 15:59:23 +01001999 cfg->line_outs <= 2)
2000 pfx = i ? "Bass Speaker" : "Speaker";
Takashi Iwai3214b962011-07-18 12:49:25 +02002001 err = create_ch_ctls(codec, pfx, 3, true, path);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002002 if (err < 0)
2003 return err;
2004 }
Takashi Iwai020066d2011-07-21 13:45:56 +02002005 if (path != spec->out_path + i)
2006 copy_path_mixer_ctls(&spec->out_path[i], path);
2007 if (path == spec->out_path && spec->out_mix_path.depth)
2008 copy_path_mixer_ctls(&spec->out_mix_path, path);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002009 }
2010
Takashi Iwai4a796162011-06-17 17:53:38 +02002011 idx = get_connection_index(codec, spec->aa_mix_nid,
2012 spec->multiout.dac_nids[0]);
2013 if (idx >= 0) {
2014 /* add control to mixer */
Takashi Iwai3214b962011-07-18 12:49:25 +02002015 const char *name;
2016 name = spec->out_mix_path.depth ?
2017 "PCM Loopback Playback Volume" : "PCM Playback Volume";
2018 err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
Takashi Iwai4a796162011-06-17 17:53:38 +02002019 HDA_COMPOSE_AMP_VAL(spec->aa_mix_nid, 3,
2020 idx, HDA_INPUT));
2021 if (err < 0)
2022 return err;
Takashi Iwai3214b962011-07-18 12:49:25 +02002023 name = spec->out_mix_path.depth ?
2024 "PCM Loopback Playback Switch" : "PCM Playback Switch";
2025 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
Takashi Iwai4a796162011-06-17 17:53:38 +02002026 HDA_COMPOSE_AMP_VAL(spec->aa_mix_nid, 3,
2027 idx, HDA_INPUT));
2028 if (err < 0)
2029 return err;
2030 }
2031
Takashi Iwaif4a78282011-06-17 18:46:48 +02002032 cfg->line_outs = old_line_outs;
2033
Joseph Chanc577b8a2006-11-29 15:29:40 +01002034 return 0;
2035}
2036
Takashi Iwai4a796162011-06-17 17:53:38 +02002037static int via_auto_create_hp_ctls(struct hda_codec *codec, hda_nid_t pin)
Joseph Chanc577b8a2006-11-29 15:29:40 +01002038{
Takashi Iwai4a796162011-06-17 17:53:38 +02002039 struct via_spec *spec = codec->spec;
Takashi Iwai09a9ad692011-06-21 15:57:44 +02002040 struct nid_path *path;
Takashi Iwai18bd2c42011-07-04 15:55:44 +02002041 bool check_dac;
Takashi Iwai3214b962011-07-18 12:49:25 +02002042 int i, err;
Joseph Chanc577b8a2006-11-29 15:29:40 +01002043
2044 if (!pin)
2045 return 0;
2046
Takashi Iwai3214b962011-07-18 12:49:25 +02002047 if (!parse_output_path(codec, pin, 0, 0, &spec->hp_indep_path)) {
2048 for (i = HDA_SIDE; i >= HDA_CLFE; i--) {
2049 if (i < spec->multiout.num_dacs &&
2050 parse_output_path(codec, pin,
2051 spec->multiout.dac_nids[i], 0,
2052 &spec->hp_indep_path)) {
2053 spec->hp_indep_shared = i;
2054 break;
2055 }
2056 }
Takashi Iwai25250502011-06-30 17:24:47 +02002057 }
Takashi Iwai3214b962011-07-18 12:49:25 +02002058 if (spec->hp_indep_path.depth) {
2059 spec->hp_dac_nid = spec->hp_indep_path.path[0];
2060 if (!spec->hp_indep_shared)
2061 spec->hp_path = spec->hp_indep_path;
2062 }
2063 /* optionally check front-path w/o AA-mix */
2064 if (!spec->hp_path.depth)
2065 parse_output_path(codec, pin,
2066 spec->multiout.dac_nids[HDA_FRONT], 0,
2067 &spec->hp_path);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002068
Takashi Iwaiece8d042011-06-19 16:24:21 +02002069 if (!parse_output_path(codec, pin, spec->multiout.dac_nids[HDA_FRONT],
Takashi Iwai3214b962011-07-18 12:49:25 +02002070 1, &spec->hp_mix_path) && !spec->hp_path.depth)
Takashi Iwaiece8d042011-06-19 16:24:21 +02002071 return 0;
2072
Takashi Iwai3214b962011-07-18 12:49:25 +02002073 if (spec->hp_path.depth) {
Takashi Iwai09a9ad692011-06-21 15:57:44 +02002074 path = &spec->hp_path;
Takashi Iwai18bd2c42011-07-04 15:55:44 +02002075 check_dac = true;
2076 } else {
Takashi Iwai3214b962011-07-18 12:49:25 +02002077 path = &spec->hp_mix_path;
Takashi Iwai18bd2c42011-07-04 15:55:44 +02002078 check_dac = false;
2079 }
2080 err = create_ch_ctls(codec, "Headphone", 3, check_dac, path);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002081 if (err < 0)
2082 return err;
Takashi Iwai020066d2011-07-21 13:45:56 +02002083 if (check_dac)
2084 copy_path_mixer_ctls(&spec->hp_mix_path, path);
2085 else
2086 copy_path_mixer_ctls(&spec->hp_path, path);
2087 if (spec->hp_indep_path.depth)
2088 copy_path_mixer_ctls(&spec->hp_indep_path, path);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002089 return 0;
2090}
2091
Takashi Iwai4a918ff2011-06-20 12:39:26 +02002092static int via_auto_create_speaker_ctls(struct hda_codec *codec)
2093{
2094 struct via_spec *spec = codec->spec;
Takashi Iwai3214b962011-07-18 12:49:25 +02002095 struct nid_path *path;
2096 bool check_dac;
Wang Shaoyan81c0a782011-08-05 18:51:29 +08002097 hda_nid_t pin, dac = 0;
Takashi Iwai3214b962011-07-18 12:49:25 +02002098 int err;
Takashi Iwai4a918ff2011-06-20 12:39:26 +02002099
2100 pin = spec->autocfg.speaker_pins[0];
2101 if (!spec->autocfg.speaker_outs || !pin)
2102 return 0;
2103
Takashi Iwai3214b962011-07-18 12:49:25 +02002104 if (parse_output_path(codec, pin, 0, 0, &spec->speaker_path))
Takashi Iwai8e3679d2011-06-21 09:01:36 +02002105 dac = spec->speaker_path.path[0];
Takashi Iwai3214b962011-07-18 12:49:25 +02002106 if (!dac)
2107 parse_output_path(codec, pin,
2108 spec->multiout.dac_nids[HDA_FRONT], 0,
2109 &spec->speaker_path);
2110 if (!parse_output_path(codec, pin, spec->multiout.dac_nids[HDA_FRONT],
2111 1, &spec->speaker_mix_path) && !dac)
2112 return 0;
Takashi Iwai4a918ff2011-06-20 12:39:26 +02002113
Takashi Iwai3214b962011-07-18 12:49:25 +02002114 /* no AA-path for front? */
2115 if (!spec->out_mix_path.depth && spec->speaker_mix_path.depth)
2116 dac = 0;
2117
2118 spec->speaker_dac_nid = dac;
2119 spec->multiout.extra_out_nid[0] = dac;
2120 if (dac) {
2121 path = &spec->speaker_path;
2122 check_dac = true;
2123 } else {
2124 path = &spec->speaker_mix_path;
2125 check_dac = false;
2126 }
2127 err = create_ch_ctls(codec, "Speaker", 3, check_dac, path);
2128 if (err < 0)
2129 return err;
Takashi Iwai020066d2011-07-21 13:45:56 +02002130 if (check_dac)
2131 copy_path_mixer_ctls(&spec->speaker_mix_path, path);
2132 else
2133 copy_path_mixer_ctls(&spec->speaker_path, path);
Takashi Iwai3214b962011-07-18 12:49:25 +02002134 return 0;
2135}
2136
2137#define via_aamix_ctl_info via_pin_power_ctl_info
2138
2139static int via_aamix_ctl_get(struct snd_kcontrol *kcontrol,
2140 struct snd_ctl_elem_value *ucontrol)
2141{
2142 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2143 struct via_spec *spec = codec->spec;
2144 ucontrol->value.enumerated.item[0] = spec->aamix_mode;
2145 return 0;
2146}
2147
2148static void update_aamix_paths(struct hda_codec *codec, int do_mix,
2149 struct nid_path *nomix, struct nid_path *mix)
2150{
2151 if (do_mix) {
2152 activate_output_path(codec, nomix, false, false);
2153 activate_output_path(codec, mix, true, false);
2154 } else {
2155 activate_output_path(codec, mix, false, false);
2156 activate_output_path(codec, nomix, true, false);
2157 }
2158}
2159
2160static int via_aamix_ctl_put(struct snd_kcontrol *kcontrol,
2161 struct snd_ctl_elem_value *ucontrol)
2162{
2163 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2164 struct via_spec *spec = codec->spec;
2165 unsigned int val = ucontrol->value.enumerated.item[0];
2166
2167 if (val == spec->aamix_mode)
2168 return 0;
2169 spec->aamix_mode = val;
2170 /* update front path */
2171 update_aamix_paths(codec, val, &spec->out_path[0], &spec->out_mix_path);
2172 /* update HP path */
2173 if (!spec->hp_independent_mode) {
2174 update_aamix_paths(codec, val, &spec->hp_path,
2175 &spec->hp_mix_path);
2176 }
2177 /* update speaker path */
2178 update_aamix_paths(codec, val, &spec->speaker_path,
2179 &spec->speaker_mix_path);
2180 return 1;
2181}
2182
2183static const struct snd_kcontrol_new via_aamix_ctl_enum = {
2184 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2185 .name = "Loopback Mixing",
2186 .info = via_aamix_ctl_info,
2187 .get = via_aamix_ctl_get,
2188 .put = via_aamix_ctl_put,
2189};
2190
2191static int via_auto_create_loopback_switch(struct hda_codec *codec)
2192{
2193 struct via_spec *spec = codec->spec;
2194
Takashi Iwai4808d122012-01-10 15:16:02 +01002195 if (!spec->aa_mix_nid)
2196 return 0; /* no loopback switching available */
2197 if (!(spec->out_mix_path.depth || spec->hp_mix_path.depth ||
2198 spec->speaker_path.depth))
Takashi Iwai3214b962011-07-18 12:49:25 +02002199 return 0; /* no loopback switching available */
2200 if (!via_clone_control(spec, &via_aamix_ctl_enum))
2201 return -ENOMEM;
Takashi Iwai4a918ff2011-06-20 12:39:26 +02002202 return 0;
2203}
2204
Takashi Iwaia766d0d2011-06-17 09:01:29 +02002205/* look for ADCs */
2206static int via_fill_adcs(struct hda_codec *codec)
2207{
2208 struct via_spec *spec = codec->spec;
2209 hda_nid_t nid = codec->start_nid;
2210 int i;
2211
2212 for (i = 0; i < codec->num_nodes; i++, nid++) {
2213 unsigned int wcaps = get_wcaps(codec, nid);
2214 if (get_wcaps_type(wcaps) != AC_WID_AUD_IN)
2215 continue;
2216 if (wcaps & AC_WCAP_DIGITAL)
2217 continue;
2218 if (!(wcaps & AC_WCAP_CONN_LIST))
2219 continue;
2220 if (spec->num_adc_nids >= ARRAY_SIZE(spec->adc_nids))
2221 return -ENOMEM;
2222 spec->adc_nids[spec->num_adc_nids++] = nid;
2223 }
2224 return 0;
2225}
2226
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002227/* input-src control */
2228static int via_mux_enum_info(struct snd_kcontrol *kcontrol,
2229 struct snd_ctl_elem_info *uinfo)
2230{
2231 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2232 struct via_spec *spec = codec->spec;
2233
2234 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2235 uinfo->count = 1;
2236 uinfo->value.enumerated.items = spec->num_inputs;
2237 if (uinfo->value.enumerated.item >= spec->num_inputs)
2238 uinfo->value.enumerated.item = spec->num_inputs - 1;
2239 strcpy(uinfo->value.enumerated.name,
2240 spec->inputs[uinfo->value.enumerated.item].label);
2241 return 0;
2242}
2243
2244static int via_mux_enum_get(struct snd_kcontrol *kcontrol,
2245 struct snd_ctl_elem_value *ucontrol)
2246{
2247 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2248 struct via_spec *spec = codec->spec;
2249 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2250
2251 ucontrol->value.enumerated.item[0] = spec->cur_mux[idx];
2252 return 0;
2253}
2254
2255static int via_mux_enum_put(struct snd_kcontrol *kcontrol,
2256 struct snd_ctl_elem_value *ucontrol)
2257{
2258 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2259 struct via_spec *spec = codec->spec;
2260 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2261 hda_nid_t mux;
2262 int cur;
2263
2264 cur = ucontrol->value.enumerated.item[0];
2265 if (cur < 0 || cur >= spec->num_inputs)
2266 return -EINVAL;
2267 if (spec->cur_mux[idx] == cur)
2268 return 0;
2269 spec->cur_mux[idx] = cur;
2270 if (spec->dyn_adc_switch) {
2271 int adc_idx = spec->inputs[cur].adc_idx;
2272 mux = spec->mux_nids[adc_idx];
2273 via_dyn_adc_pcm_resetup(codec, cur);
2274 } else {
2275 mux = spec->mux_nids[idx];
2276 if (snd_BUG_ON(!mux))
2277 return -EINVAL;
2278 }
2279
2280 if (mux) {
2281 /* switch to D0 beofre change index */
Takashi Iwai054d8672012-01-24 12:25:50 +01002282 update_power_state(codec, mux, AC_PWRST_D0);
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002283 snd_hda_codec_write(codec, mux, 0,
2284 AC_VERB_SET_CONNECT_SEL,
2285 spec->inputs[cur].mux_idx);
2286 }
2287
2288 /* update jack power state */
2289 set_widgets_power_state(codec);
2290 return 0;
2291}
Takashi Iwaia766d0d2011-06-17 09:01:29 +02002292
Takashi Iwaid7a99cc2011-06-18 17:24:46 +02002293static const struct snd_kcontrol_new via_input_src_ctl = {
2294 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2295 /* The multiple "Capture Source" controls confuse alsamixer
2296 * So call somewhat different..
2297 */
2298 /* .name = "Capture Source", */
2299 .name = "Input Source",
2300 .info = via_mux_enum_info,
2301 .get = via_mux_enum_get,
2302 .put = via_mux_enum_put,
2303};
2304
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002305static int create_input_src_ctls(struct hda_codec *codec, int count)
2306{
2307 struct via_spec *spec = codec->spec;
2308 struct snd_kcontrol_new *knew;
2309
2310 if (spec->num_inputs <= 1 || !count)
2311 return 0; /* no need for single src */
2312
2313 knew = via_clone_control(spec, &via_input_src_ctl);
2314 if (!knew)
2315 return -ENOMEM;
2316 knew->count = count;
2317 return 0;
2318}
2319
2320/* add the powersave loopback-list entry */
Takashi Iwai13af8e72011-06-20 14:05:46 +02002321static void add_loopback_list(struct via_spec *spec, hda_nid_t mix, int idx)
2322{
2323 struct hda_amp_list *list;
2324
2325 if (spec->num_loopbacks >= ARRAY_SIZE(spec->loopback_list) - 1)
2326 return;
2327 list = spec->loopback_list + spec->num_loopbacks;
2328 list->nid = mix;
2329 list->dir = HDA_INPUT;
2330 list->idx = idx;
2331 spec->num_loopbacks++;
2332 spec->loopback.amplist = spec->loopback_list;
2333}
Takashi Iwai13af8e72011-06-20 14:05:46 +02002334
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002335static bool is_reachable_nid(struct hda_codec *codec, hda_nid_t src,
Takashi Iwai8d087c72011-06-28 12:45:47 +02002336 hda_nid_t dst)
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002337{
Takashi Iwai8d087c72011-06-28 12:45:47 +02002338 return snd_hda_get_conn_index(codec, src, dst, 1) >= 0;
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002339}
2340
2341/* add the input-route to the given pin */
2342static bool add_input_route(struct hda_codec *codec, hda_nid_t pin)
Joseph Chanc577b8a2006-11-29 15:29:40 +01002343{
Takashi Iwai10a20af2010-09-09 16:28:02 +02002344 struct via_spec *spec = codec->spec;
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002345 int c, idx;
2346
2347 spec->inputs[spec->num_inputs].adc_idx = -1;
2348 spec->inputs[spec->num_inputs].pin = pin;
2349 for (c = 0; c < spec->num_adc_nids; c++) {
2350 if (spec->mux_nids[c]) {
2351 idx = get_connection_index(codec, spec->mux_nids[c],
2352 pin);
2353 if (idx < 0)
2354 continue;
2355 spec->inputs[spec->num_inputs].mux_idx = idx;
2356 } else {
Takashi Iwai8d087c72011-06-28 12:45:47 +02002357 if (!is_reachable_nid(codec, spec->adc_nids[c], pin))
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002358 continue;
2359 }
2360 spec->inputs[spec->num_inputs].adc_idx = c;
2361 /* Can primary ADC satisfy all inputs? */
2362 if (!spec->dyn_adc_switch &&
2363 spec->num_inputs > 0 && spec->inputs[0].adc_idx != c) {
2364 snd_printd(KERN_INFO
2365 "via: dynamic ADC switching enabled\n");
2366 spec->dyn_adc_switch = 1;
2367 }
2368 return true;
2369 }
2370 return false;
2371}
2372
2373static int get_mux_nids(struct hda_codec *codec);
2374
2375/* parse input-routes; fill ADCs, MUXs and input-src entries */
2376static int parse_analog_inputs(struct hda_codec *codec)
2377{
2378 struct via_spec *spec = codec->spec;
2379 const struct auto_pin_cfg *cfg = &spec->autocfg;
2380 int i, err;
Takashi Iwaia766d0d2011-06-17 09:01:29 +02002381
2382 err = via_fill_adcs(codec);
2383 if (err < 0)
2384 return err;
2385 err = get_mux_nids(codec);
2386 if (err < 0)
2387 return err;
Takashi Iwaia766d0d2011-06-17 09:01:29 +02002388
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002389 /* fill all input-routes */
2390 for (i = 0; i < cfg->num_inputs; i++) {
2391 if (add_input_route(codec, cfg->inputs[i].pin))
2392 spec->inputs[spec->num_inputs++].label =
2393 hda_get_autocfg_input_label(codec, cfg, i);
Takashi Iwaif3268512010-08-30 11:00:19 +02002394 }
Joseph Chanc577b8a2006-11-29 15:29:40 +01002395
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002396 /* check for internal loopback recording */
2397 if (spec->aa_mix_nid &&
2398 add_input_route(codec, spec->aa_mix_nid))
2399 spec->inputs[spec->num_inputs++].label = "Stereo Mixer";
2400
2401 return 0;
2402}
2403
2404/* create analog-loopback volume/switch controls */
2405static int create_loopback_ctls(struct hda_codec *codec)
2406{
2407 struct via_spec *spec = codec->spec;
2408 const struct auto_pin_cfg *cfg = &spec->autocfg;
2409 const char *prev_label = NULL;
2410 int type_idx = 0;
2411 int i, j, err, idx;
2412
2413 if (!spec->aa_mix_nid)
2414 return 0;
2415
Takashi Iwai7b315bb2010-08-30 13:06:30 +02002416 for (i = 0; i < cfg->num_inputs; i++) {
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002417 hda_nid_t pin = cfg->inputs[i].pin;
2418 const char *label = hda_get_autocfg_input_label(codec, cfg, i);
2419
Takashi Iwai1e11cae2011-06-21 12:57:22 +02002420 if (prev_label && !strcmp(label, prev_label))
Takashi Iwai7b315bb2010-08-30 13:06:30 +02002421 type_idx++;
2422 else
2423 type_idx = 0;
Takashi Iwai1e11cae2011-06-21 12:57:22 +02002424 prev_label = label;
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002425 idx = get_connection_index(codec, spec->aa_mix_nid, pin);
2426 if (idx >= 0) {
Lydia Wang16922282011-03-22 16:24:10 +08002427 err = via_new_analog_input(spec, label, type_idx,
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002428 idx, spec->aa_mix_nid);
Takashi Iwai13af8e72011-06-20 14:05:46 +02002429 if (err < 0)
2430 return err;
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002431 add_loopback_list(spec, spec->aa_mix_nid, idx);
Takashi Iwai13af8e72011-06-20 14:05:46 +02002432 }
Takashi Iwaie3d7a142011-06-20 13:52:33 +02002433
2434 /* remember the label for smart51 control */
2435 for (j = 0; j < spec->smart51_nums; j++) {
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002436 if (spec->smart51_pins[j] == pin) {
Takashi Iwaie3d7a142011-06-20 13:52:33 +02002437 spec->smart51_idxs[j] = idx;
2438 spec->smart51_labels[j] = label;
2439 break;
2440 }
2441 }
Joseph Chanc577b8a2006-11-29 15:29:40 +01002442 }
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002443 return 0;
2444}
2445
2446/* create mic-boost controls (if present) */
2447static int create_mic_boost_ctls(struct hda_codec *codec)
2448{
2449 struct via_spec *spec = codec->spec;
2450 const struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai8d8bbc62012-02-22 12:26:38 +01002451 const char *prev_label = NULL;
2452 int type_idx = 0;
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002453 int i, err;
2454
2455 for (i = 0; i < cfg->num_inputs; i++) {
2456 hda_nid_t pin = cfg->inputs[i].pin;
2457 unsigned int caps;
2458 const char *label;
2459 char name[32];
2460
2461 if (cfg->inputs[i].type != AUTO_PIN_MIC)
2462 continue;
2463 caps = query_amp_caps(codec, pin, HDA_INPUT);
2464 if (caps == -1 || !(caps & AC_AMPCAP_NUM_STEPS))
2465 continue;
2466 label = hda_get_autocfg_input_label(codec, cfg, i);
Takashi Iwai8d8bbc62012-02-22 12:26:38 +01002467 if (prev_label && !strcmp(label, prev_label))
2468 type_idx++;
2469 else
2470 type_idx = 0;
2471 prev_label = label;
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002472 snprintf(name, sizeof(name), "%s Boost Volume", label);
Takashi Iwai8d8bbc62012-02-22 12:26:38 +01002473 err = __via_add_control(spec, VIA_CTL_WIDGET_VOL, name, type_idx,
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002474 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_INPUT));
2475 if (err < 0)
2476 return err;
2477 }
2478 return 0;
2479}
2480
2481/* create capture and input-src controls for multiple streams */
2482static int create_multi_adc_ctls(struct hda_codec *codec)
2483{
2484 struct via_spec *spec = codec->spec;
2485 int i, err;
Takashi Iwaid7a99cc2011-06-18 17:24:46 +02002486
2487 /* create capture mixer elements */
2488 for (i = 0; i < spec->num_adc_nids; i++) {
2489 hda_nid_t adc = spec->adc_nids[i];
2490 err = __via_add_control(spec, VIA_CTL_WIDGET_VOL,
2491 "Capture Volume", i,
2492 HDA_COMPOSE_AMP_VAL(adc, 3, 0,
2493 HDA_INPUT));
2494 if (err < 0)
2495 return err;
2496 err = __via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2497 "Capture Switch", i,
2498 HDA_COMPOSE_AMP_VAL(adc, 3, 0,
2499 HDA_INPUT));
2500 if (err < 0)
2501 return err;
2502 }
2503
2504 /* input-source control */
2505 for (i = 0; i < spec->num_adc_nids; i++)
2506 if (!spec->mux_nids[i])
2507 break;
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002508 err = create_input_src_ctls(codec, i);
2509 if (err < 0)
2510 return err;
2511 return 0;
2512}
Takashi Iwaid7a99cc2011-06-18 17:24:46 +02002513
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002514/* bind capture volume/switch */
2515static struct snd_kcontrol_new via_bind_cap_vol_ctl =
2516 HDA_BIND_VOL("Capture Volume", 0);
2517static struct snd_kcontrol_new via_bind_cap_sw_ctl =
2518 HDA_BIND_SW("Capture Switch", 0);
Takashi Iwaid7a99cc2011-06-18 17:24:46 +02002519
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002520static int init_bind_ctl(struct via_spec *spec, struct hda_bind_ctls **ctl_ret,
2521 struct hda_ctl_ops *ops)
2522{
2523 struct hda_bind_ctls *ctl;
2524 int i;
Takashi Iwaid7a99cc2011-06-18 17:24:46 +02002525
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002526 ctl = kzalloc(sizeof(*ctl) + sizeof(long) * 4, GFP_KERNEL);
2527 if (!ctl)
2528 return -ENOMEM;
2529 ctl->ops = ops;
2530 for (i = 0; i < spec->num_adc_nids; i++)
2531 ctl->values[i] =
2532 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i], 3, 0, HDA_INPUT);
2533 *ctl_ret = ctl;
2534 return 0;
2535}
2536
2537/* create capture and input-src controls for dynamic ADC-switch case */
2538static int create_dyn_adc_ctls(struct hda_codec *codec)
2539{
2540 struct via_spec *spec = codec->spec;
2541 struct snd_kcontrol_new *knew;
2542 int err;
2543
2544 /* set up the bind capture ctls */
2545 err = init_bind_ctl(spec, &spec->bind_cap_vol, &snd_hda_bind_vol);
2546 if (err < 0)
2547 return err;
2548 err = init_bind_ctl(spec, &spec->bind_cap_sw, &snd_hda_bind_sw);
2549 if (err < 0)
2550 return err;
2551
2552 /* create capture mixer elements */
2553 knew = via_clone_control(spec, &via_bind_cap_vol_ctl);
2554 if (!knew)
2555 return -ENOMEM;
2556 knew->private_value = (long)spec->bind_cap_vol;
2557
2558 knew = via_clone_control(spec, &via_bind_cap_sw_ctl);
2559 if (!knew)
2560 return -ENOMEM;
2561 knew->private_value = (long)spec->bind_cap_sw;
2562
2563 /* input-source control */
2564 err = create_input_src_ctls(codec, 1);
2565 if (err < 0)
2566 return err;
2567 return 0;
2568}
2569
2570/* parse and create capture-related stuff */
2571static int via_auto_create_analog_input_ctls(struct hda_codec *codec)
2572{
2573 struct via_spec *spec = codec->spec;
2574 int err;
2575
2576 err = parse_analog_inputs(codec);
2577 if (err < 0)
2578 return err;
2579 if (spec->dyn_adc_switch)
2580 err = create_dyn_adc_ctls(codec);
2581 else
2582 err = create_multi_adc_ctls(codec);
2583 if (err < 0)
2584 return err;
2585 err = create_loopback_ctls(codec);
2586 if (err < 0)
2587 return err;
2588 err = create_mic_boost_ctls(codec);
2589 if (err < 0)
2590 return err;
Joseph Chanc577b8a2006-11-29 15:29:40 +01002591 return 0;
2592}
2593
Harald Welte76d9b0d2008-09-09 15:50:37 +08002594static void vt1708_set_pinconfig_connect(struct hda_codec *codec, hda_nid_t nid)
2595{
2596 unsigned int def_conf;
2597 unsigned char seqassoc;
2598
Takashi Iwai2f334f92009-02-20 14:37:42 +01002599 def_conf = snd_hda_codec_get_pincfg(codec, nid);
Harald Welte76d9b0d2008-09-09 15:50:37 +08002600 seqassoc = (unsigned char) get_defcfg_association(def_conf);
2601 seqassoc = (seqassoc << 4) | get_defcfg_sequence(def_conf);
Lydia Wang82ef9e42009-10-10 19:08:19 +08002602 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE
2603 && (seqassoc == 0xf0 || seqassoc == 0xff)) {
2604 def_conf = def_conf & (~(AC_JACK_PORT_BOTH << 30));
2605 snd_hda_codec_set_pincfg(codec, nid, def_conf);
Harald Welte76d9b0d2008-09-09 15:50:37 +08002606 }
2607
2608 return;
2609}
2610
Takashi Iwaie06e5a22011-06-17 15:46:13 +02002611static int vt1708_jack_detect_get(struct snd_kcontrol *kcontrol,
Lydia Wang1f2e99f2009-10-10 19:08:17 +08002612 struct snd_ctl_elem_value *ucontrol)
2613{
2614 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2615 struct via_spec *spec = codec->spec;
2616
2617 if (spec->codec_type != VT1708)
2618 return 0;
Takashi Iwaie06e5a22011-06-17 15:46:13 +02002619 ucontrol->value.integer.value[0] = spec->vt1708_jack_detect;
Lydia Wang1f2e99f2009-10-10 19:08:17 +08002620 return 0;
2621}
2622
Takashi Iwaie06e5a22011-06-17 15:46:13 +02002623static int vt1708_jack_detect_put(struct snd_kcontrol *kcontrol,
Lydia Wang1f2e99f2009-10-10 19:08:17 +08002624 struct snd_ctl_elem_value *ucontrol)
2625{
2626 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2627 struct via_spec *spec = codec->spec;
Takashi Iwai187d3332011-11-24 16:33:09 +01002628 int val;
Lydia Wang1f2e99f2009-10-10 19:08:17 +08002629
2630 if (spec->codec_type != VT1708)
2631 return 0;
Takashi Iwai187d3332011-11-24 16:33:09 +01002632 val = !!ucontrol->value.integer.value[0];
2633 if (spec->vt1708_jack_detect == val)
2634 return 0;
2635 spec->vt1708_jack_detect = val;
2636 if (spec->vt1708_jack_detect &&
2637 snd_hda_get_bool_hint(codec, "analog_loopback_hp_detect") != 1) {
Lydia Wang1f2e99f2009-10-10 19:08:17 +08002638 mute_aa_path(codec, 1);
2639 notify_aa_path_ctls(codec);
2640 }
Takashi Iwai187d3332011-11-24 16:33:09 +01002641 via_hp_automute(codec);
2642 vt1708_update_hp_work(spec);
2643 return 1;
Lydia Wang1f2e99f2009-10-10 19:08:17 +08002644}
2645
Takashi Iwaie06e5a22011-06-17 15:46:13 +02002646static const struct snd_kcontrol_new vt1708_jack_detect_ctl = {
2647 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2648 .name = "Jack Detect",
2649 .count = 1,
2650 .info = snd_ctl_boolean_mono_info,
2651 .get = vt1708_jack_detect_get,
2652 .put = vt1708_jack_detect_put,
Lydia Wang1f2e99f2009-10-10 19:08:17 +08002653};
2654
Takashi Iwai12daef62011-06-18 17:45:49 +02002655static void fill_dig_outs(struct hda_codec *codec);
2656static void fill_dig_in(struct hda_codec *codec);
2657
2658static int via_parse_auto_config(struct hda_codec *codec)
Joseph Chanc577b8a2006-11-29 15:29:40 +01002659{
2660 struct via_spec *spec = codec->spec;
2661 int err;
2662
2663 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
2664 if (err < 0)
2665 return err;
Joseph Chanc577b8a2006-11-29 15:29:40 +01002666 if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
Takashi Iwai7f0df882011-06-18 17:33:34 +02002667 return -EINVAL;
Joseph Chanc577b8a2006-11-29 15:29:40 +01002668
Takashi Iwai4a796162011-06-17 17:53:38 +02002669 err = via_auto_create_multi_out_ctls(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002670 if (err < 0)
2671 return err;
Takashi Iwai4a796162011-06-17 17:53:38 +02002672 err = via_auto_create_hp_ctls(codec, spec->autocfg.hp_pins[0]);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002673 if (err < 0)
2674 return err;
Takashi Iwai4a918ff2011-06-20 12:39:26 +02002675 err = via_auto_create_speaker_ctls(codec);
2676 if (err < 0)
2677 return err;
Takashi Iwai3214b962011-07-18 12:49:25 +02002678 err = via_auto_create_loopback_switch(codec);
2679 if (err < 0)
2680 return err;
Takashi Iwaia86a88e2011-06-22 15:23:25 +02002681 err = via_auto_create_analog_input_ctls(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002682 if (err < 0)
2683 return err;
2684
2685 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
2686
Takashi Iwai12daef62011-06-18 17:45:49 +02002687 fill_dig_outs(codec);
2688 fill_dig_in(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002689
Takashi Iwai603c4012008-07-30 15:01:44 +02002690 if (spec->kctls.list)
2691 spec->mixers[spec->num_mixers++] = spec->kctls.list;
Joseph Chanc577b8a2006-11-29 15:29:40 +01002692
Joseph Chanc577b8a2006-11-29 15:29:40 +01002693
Takashi Iwai3214b962011-07-18 12:49:25 +02002694 if (spec->hp_dac_nid && spec->hp_mix_path.depth) {
Takashi Iwaiece8d042011-06-19 16:24:21 +02002695 err = via_hp_build(codec);
2696 if (err < 0)
2697 return err;
2698 }
Joseph Chanc577b8a2006-11-29 15:29:40 +01002699
Takashi Iwaif4a78282011-06-17 18:46:48 +02002700 err = via_smart51_build(codec);
2701 if (err < 0)
2702 return err;
2703
Takashi Iwai5d417622011-06-20 11:32:27 +02002704 /* assign slave outs */
2705 if (spec->slave_dig_outs[0])
2706 codec->slave_dig_outs = spec->slave_dig_outs;
2707
Joseph Chanc577b8a2006-11-29 15:29:40 +01002708 return 1;
2709}
2710
Takashi Iwai5d417622011-06-20 11:32:27 +02002711static void via_auto_init_dig_outs(struct hda_codec *codec)
Joseph Chanc577b8a2006-11-29 15:29:40 +01002712{
Lydia Wang25eaba22009-10-10 19:08:43 +08002713 struct via_spec *spec = codec->spec;
Takashi Iwai5d417622011-06-20 11:32:27 +02002714 if (spec->multiout.dig_out_nid)
2715 init_output_pin(codec, spec->autocfg.dig_out_pins[0], PIN_OUT);
2716 if (spec->slave_dig_outs[0])
2717 init_output_pin(codec, spec->autocfg.dig_out_pins[1], PIN_OUT);
2718}
Lydia Wang25eaba22009-10-10 19:08:43 +08002719
Takashi Iwai5d417622011-06-20 11:32:27 +02002720static void via_auto_init_dig_in(struct hda_codec *codec)
2721{
2722 struct via_spec *spec = codec->spec;
2723 if (!spec->dig_in_nid)
2724 return;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02002725 snd_hda_set_pin_ctl(codec, spec->autocfg.dig_in_pin, PIN_IN);
Takashi Iwai5d417622011-06-20 11:32:27 +02002726}
2727
David Henningsson4e2d16d2012-10-08 15:44:14 +02002728static void via_jack_output_event(struct hda_codec *codec, struct hda_jack_tbl *tbl)
2729{
2730 set_widgets_power_state(codec);
2731 via_hp_automute(codec);
2732}
2733
2734static void via_jack_powerstate_event(struct hda_codec *codec, struct hda_jack_tbl *tbl)
2735{
2736 set_widgets_power_state(codec);
2737}
2738
Takashi Iwai4a918ff2011-06-20 12:39:26 +02002739/* initialize the unsolicited events */
2740static void via_auto_init_unsol_event(struct hda_codec *codec)
2741{
2742 struct via_spec *spec = codec->spec;
2743 struct auto_pin_cfg *cfg = &spec->autocfg;
2744 unsigned int ev;
2745 int i;
David Henningsson4e2d16d2012-10-08 15:44:14 +02002746 hda_jack_callback cb;
Takashi Iwai4a918ff2011-06-20 12:39:26 +02002747
2748 if (cfg->hp_pins[0] && is_jack_detectable(codec, cfg->hp_pins[0]))
David Henningsson4e2d16d2012-10-08 15:44:14 +02002749 snd_hda_jack_detect_enable_callback(codec, cfg->hp_pins[0],
2750 VIA_HP_EVENT | VIA_JACK_EVENT,
2751 via_jack_output_event);
Takashi Iwai4a918ff2011-06-20 12:39:26 +02002752
2753 if (cfg->speaker_pins[0])
2754 ev = VIA_LINE_EVENT;
2755 else
2756 ev = 0;
David Henningsson4e2d16d2012-10-08 15:44:14 +02002757 cb = ev ? via_jack_output_event : via_jack_powerstate_event;
2758
Takashi Iwai4a918ff2011-06-20 12:39:26 +02002759 for (i = 0; i < cfg->line_outs; i++) {
2760 if (cfg->line_out_pins[i] &&
2761 is_jack_detectable(codec, cfg->line_out_pins[i]))
David Henningsson4e2d16d2012-10-08 15:44:14 +02002762 snd_hda_jack_detect_enable_callback(codec, cfg->line_out_pins[i],
2763 ev | VIA_JACK_EVENT, cb);
Takashi Iwai4a918ff2011-06-20 12:39:26 +02002764 }
2765
2766 for (i = 0; i < cfg->num_inputs; i++) {
2767 if (is_jack_detectable(codec, cfg->inputs[i].pin))
David Henningsson4e2d16d2012-10-08 15:44:14 +02002768 snd_hda_jack_detect_enable_callback(codec, cfg->inputs[i].pin,
2769 VIA_JACK_EVENT,
2770 via_jack_powerstate_event);
Takashi Iwai4a918ff2011-06-20 12:39:26 +02002771 }
2772}
2773
Takashi Iwai5d417622011-06-20 11:32:27 +02002774static int via_init(struct hda_codec *codec)
2775{
2776 struct via_spec *spec = codec->spec;
2777 int i;
2778
2779 for (i = 0; i < spec->num_iverbs; i++)
2780 snd_hda_sequence_write(codec, spec->init_verbs[i]);
2781
Takashi Iwaie9d010c2012-02-01 10:33:23 +01002782 /* init power states */
2783 set_widgets_power_state(codec);
2784 __analog_low_current_mode(codec, true);
2785
Joseph Chanc577b8a2006-11-29 15:29:40 +01002786 via_auto_init_multi_out(codec);
2787 via_auto_init_hp_out(codec);
Takashi Iwai4a918ff2011-06-20 12:39:26 +02002788 via_auto_init_speaker_out(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002789 via_auto_init_analog_input(codec);
Takashi Iwai5d417622011-06-20 11:32:27 +02002790 via_auto_init_dig_outs(codec);
2791 via_auto_init_dig_in(codec);
Lydia Wang118909562011-03-23 17:57:34 +08002792
Takashi Iwai4a918ff2011-06-20 12:39:26 +02002793 via_auto_init_unsol_event(codec);
2794
2795 via_hp_automute(codec);
Takashi Iwai187d3332011-11-24 16:33:09 +01002796 vt1708_update_hp_work(spec);
Lydia Wang25eaba22009-10-10 19:08:43 +08002797
Joseph Chanc577b8a2006-11-29 15:29:40 +01002798 return 0;
2799}
2800
Lydia Wang1f2e99f2009-10-10 19:08:17 +08002801static void vt1708_update_hp_jack_state(struct work_struct *work)
2802{
2803 struct via_spec *spec = container_of(work, struct via_spec,
2804 vt1708_hp_work.work);
2805 if (spec->codec_type != VT1708)
2806 return;
Takashi Iwai1835a0f2011-10-27 22:12:46 +02002807 snd_hda_jack_set_dirty_all(spec->codec);
Lydia Wang1f2e99f2009-10-10 19:08:17 +08002808 /* if jack state toggled */
2809 if (spec->vt1708_hp_present
Takashi Iwaid56757a2009-11-18 08:00:14 +01002810 != snd_hda_jack_detect(spec->codec, spec->autocfg.hp_pins[0])) {
Lydia Wang1f2e99f2009-10-10 19:08:17 +08002811 spec->vt1708_hp_present ^= 1;
2812 via_hp_automute(spec->codec);
2813 }
Takashi Iwai187d3332011-11-24 16:33:09 +01002814 if (spec->vt1708_jack_detect)
2815 schedule_delayed_work(&spec->vt1708_hp_work,
2816 msecs_to_jiffies(100));
Lydia Wang1f2e99f2009-10-10 19:08:17 +08002817}
2818
Takashi Iwai337b9d02009-07-07 18:18:59 +02002819static int get_mux_nids(struct hda_codec *codec)
2820{
2821 struct via_spec *spec = codec->spec;
2822 hda_nid_t nid, conn[8];
2823 unsigned int type;
2824 int i, n;
2825
2826 for (i = 0; i < spec->num_adc_nids; i++) {
2827 nid = spec->adc_nids[i];
2828 while (nid) {
Takashi Iwaia22d5432009-07-27 12:54:26 +02002829 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwai1c55d522009-07-08 07:45:46 +02002830 if (type == AC_WID_PIN)
2831 break;
Takashi Iwai337b9d02009-07-07 18:18:59 +02002832 n = snd_hda_get_connections(codec, nid, conn,
2833 ARRAY_SIZE(conn));
2834 if (n <= 0)
2835 break;
2836 if (n > 1) {
2837 spec->mux_nids[i] = nid;
2838 break;
2839 }
2840 nid = conn[0];
2841 }
2842 }
Takashi Iwai1c55d522009-07-08 07:45:46 +02002843 return 0;
Takashi Iwai337b9d02009-07-07 18:18:59 +02002844}
2845
Joseph Chanc577b8a2006-11-29 15:29:40 +01002846static int patch_vt1708(struct hda_codec *codec)
2847{
2848 struct via_spec *spec;
2849 int err;
2850
2851 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002852 spec = via_new_spec(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002853 if (spec == NULL)
2854 return -ENOMEM;
2855
Takashi Iwai620e2b22011-06-17 17:19:19 +02002856 spec->aa_mix_nid = 0x17;
2857
Takashi Iwai12daef62011-06-18 17:45:49 +02002858 /* Add HP and CD pin config connect bit re-config action */
2859 vt1708_set_pinconfig_connect(codec, VT1708_HP_PIN_NID);
2860 vt1708_set_pinconfig_connect(codec, VT1708_CD_PIN_NID);
2861
Joseph Chanc577b8a2006-11-29 15:29:40 +01002862 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +02002863 err = via_parse_auto_config(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002864 if (err < 0) {
2865 via_free(codec);
2866 return err;
Joseph Chanc577b8a2006-11-29 15:29:40 +01002867 }
2868
Takashi Iwai12daef62011-06-18 17:45:49 +02002869 /* add jack detect on/off control */
2870 if (!via_clone_control(spec, &vt1708_jack_detect_ctl))
2871 return -ENOMEM;
2872
Takashi Iwaibc9b562382008-05-23 17:50:27 +02002873 /* disable 32bit format on VT1708 */
2874 if (codec->vendor_id == 0x11061708)
2875 spec->stream_analog_playback = &vt1708_pcm_analog_s16_playback;
Joseph Chanc577b8a2006-11-29 15:29:40 +01002876
Lydia Wange322a362011-06-29 13:52:02 +08002877 spec->init_verbs[spec->num_iverbs++] = vt1708_init_verbs;
2878
Joseph Chanc577b8a2006-11-29 15:29:40 +01002879 codec->patch_ops = via_patch_ops;
2880
Lydia Wang1f2e99f2009-10-10 19:08:17 +08002881 INIT_DELAYED_WORK(&spec->vt1708_hp_work, vt1708_update_hp_jack_state);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002882 return 0;
2883}
2884
Takashi Iwaiddd304d2011-06-21 16:33:55 +02002885static int patch_vt1709(struct hda_codec *codec)
Joseph Chanc577b8a2006-11-29 15:29:40 +01002886{
2887 struct via_spec *spec;
2888 int err;
2889
2890 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002891 spec = via_new_spec(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002892 if (spec == NULL)
2893 return -ENOMEM;
2894
Takashi Iwai620e2b22011-06-17 17:19:19 +02002895 spec->aa_mix_nid = 0x18;
2896
Takashi Iwai12daef62011-06-18 17:45:49 +02002897 err = via_parse_auto_config(codec);
Joseph Chanc577b8a2006-11-29 15:29:40 +01002898 if (err < 0) {
2899 via_free(codec);
2900 return err;
Joseph Chanc577b8a2006-11-29 15:29:40 +01002901 }
2902
Joseph Chanc577b8a2006-11-29 15:29:40 +01002903 codec->patch_ops = via_patch_ops;
2904
Josepch Chanf7278fd2007-12-13 16:40:40 +01002905 return 0;
2906}
2907
Lydia Wang3e95b9a2011-03-23 15:13:28 +08002908static void set_widgets_power_state_vt1708B(struct hda_codec *codec)
2909{
2910 struct via_spec *spec = codec->spec;
2911 int imux_is_smixer;
2912 unsigned int parm;
2913 int is_8ch = 0;
Lydia Wangbc92df72011-03-23 17:56:05 +08002914 if ((spec->codec_type != VT1708B_4CH) &&
2915 (codec->vendor_id != 0x11064397))
Lydia Wang3e95b9a2011-03-23 15:13:28 +08002916 is_8ch = 1;
2917
2918 /* SW0 (17h) = stereo mixer */
2919 imux_is_smixer =
2920 (snd_hda_codec_read(codec, 0x17, 0, AC_VERB_GET_CONNECT_SEL, 0x00)
2921 == ((spec->codec_type == VT1708S) ? 5 : 0));
2922 /* inputs */
2923 /* PW 1/2/5 (1ah/1bh/1eh) */
2924 parm = AC_PWRST_D3;
2925 set_pin_power_state(codec, 0x1a, &parm);
2926 set_pin_power_state(codec, 0x1b, &parm);
2927 set_pin_power_state(codec, 0x1e, &parm);
2928 if (imux_is_smixer)
2929 parm = AC_PWRST_D0;
2930 /* SW0 (17h), AIW 0/1 (13h/14h) */
Takashi Iwai054d8672012-01-24 12:25:50 +01002931 update_power_state(codec, 0x17, parm);
2932 update_power_state(codec, 0x13, parm);
2933 update_power_state(codec, 0x14, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08002934
2935 /* outputs */
2936 /* PW0 (19h), SW1 (18h), AOW1 (11h) */
2937 parm = AC_PWRST_D3;
2938 set_pin_power_state(codec, 0x19, &parm);
2939 if (spec->smart51_enabled)
2940 set_pin_power_state(codec, 0x1b, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01002941 update_power_state(codec, 0x18, parm);
2942 update_power_state(codec, 0x11, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08002943
2944 /* PW6 (22h), SW2 (26h), AOW2 (24h) */
2945 if (is_8ch) {
2946 parm = AC_PWRST_D3;
2947 set_pin_power_state(codec, 0x22, &parm);
2948 if (spec->smart51_enabled)
2949 set_pin_power_state(codec, 0x1a, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01002950 update_power_state(codec, 0x26, parm);
2951 update_power_state(codec, 0x24, parm);
Lydia Wangbc92df72011-03-23 17:56:05 +08002952 } else if (codec->vendor_id == 0x11064397) {
2953 /* PW7(23h), SW2(27h), AOW2(25h) */
2954 parm = AC_PWRST_D3;
2955 set_pin_power_state(codec, 0x23, &parm);
2956 if (spec->smart51_enabled)
2957 set_pin_power_state(codec, 0x1a, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01002958 update_power_state(codec, 0x27, parm);
2959 update_power_state(codec, 0x25, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08002960 }
2961
2962 /* PW 3/4/7 (1ch/1dh/23h) */
2963 parm = AC_PWRST_D3;
2964 /* force to D0 for internal Speaker */
2965 set_pin_power_state(codec, 0x1c, &parm);
2966 set_pin_power_state(codec, 0x1d, &parm);
2967 if (is_8ch)
2968 set_pin_power_state(codec, 0x23, &parm);
2969
2970 /* MW0 (16h), Sw3 (27h), AOW 0/3 (10h/25h) */
Takashi Iwai054d8672012-01-24 12:25:50 +01002971 update_power_state(codec, 0x16, imux_is_smixer ? AC_PWRST_D0 : parm);
2972 update_power_state(codec, 0x10, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08002973 if (is_8ch) {
Takashi Iwai054d8672012-01-24 12:25:50 +01002974 update_power_state(codec, 0x25, parm);
2975 update_power_state(codec, 0x27, parm);
Lydia Wangbc92df72011-03-23 17:56:05 +08002976 } else if (codec->vendor_id == 0x11064397 && spec->hp_independent_mode)
Takashi Iwai054d8672012-01-24 12:25:50 +01002977 update_power_state(codec, 0x25, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08002978}
2979
Lydia Wang518bf3b2009-10-10 19:07:29 +08002980static int patch_vt1708S(struct hda_codec *codec);
Takashi Iwaiddd304d2011-06-21 16:33:55 +02002981static int patch_vt1708B(struct hda_codec *codec)
Josepch Chanf7278fd2007-12-13 16:40:40 +01002982{
2983 struct via_spec *spec;
2984 int err;
2985
Lydia Wang518bf3b2009-10-10 19:07:29 +08002986 if (get_codec_type(codec) == VT1708BCE)
2987 return patch_vt1708S(codec);
Takashi Iwaiddd304d2011-06-21 16:33:55 +02002988
Josepch Chanf7278fd2007-12-13 16:40:40 +01002989 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002990 spec = via_new_spec(codec);
Josepch Chanf7278fd2007-12-13 16:40:40 +01002991 if (spec == NULL)
2992 return -ENOMEM;
2993
Takashi Iwai620e2b22011-06-17 17:19:19 +02002994 spec->aa_mix_nid = 0x16;
2995
Josepch Chanf7278fd2007-12-13 16:40:40 +01002996 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +02002997 err = via_parse_auto_config(codec);
Josepch Chanf7278fd2007-12-13 16:40:40 +01002998 if (err < 0) {
2999 via_free(codec);
3000 return err;
Josepch Chanf7278fd2007-12-13 16:40:40 +01003001 }
3002
Josepch Chanf7278fd2007-12-13 16:40:40 +01003003 codec->patch_ops = via_patch_ops;
3004
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003005 spec->set_widgets_power_state = set_widgets_power_state_vt1708B;
3006
Josepch Chanf7278fd2007-12-13 16:40:40 +01003007 return 0;
3008}
3009
Harald Welted949cac2008-09-09 15:56:01 +08003010/* Patch for VT1708S */
Takashi Iwai096a8852011-06-20 12:09:02 +02003011static const struct hda_verb vt1708S_init_verbs[] = {
Harald Welted7426322008-09-15 22:43:23 +08003012 /* Enable Mic Boost Volume backdoor */
3013 {0x1, 0xf98, 0x1},
Lydia Wangbc7e7e52009-10-10 19:08:32 +08003014 /* don't bybass mixer */
3015 {0x1, 0xf88, 0xc0},
Harald Welted949cac2008-09-09 15:56:01 +08003016 { }
3017};
3018
Takashi Iwai9da29272009-05-07 16:31:14 +02003019/* fill out digital output widgets; one for master and one for slave outputs */
3020static void fill_dig_outs(struct hda_codec *codec)
3021{
3022 struct via_spec *spec = codec->spec;
3023 int i;
3024
3025 for (i = 0; i < spec->autocfg.dig_outs; i++) {
3026 hda_nid_t nid;
3027 int conn;
3028
3029 nid = spec->autocfg.dig_out_pins[i];
3030 if (!nid)
3031 continue;
3032 conn = snd_hda_get_connections(codec, nid, &nid, 1);
3033 if (conn < 1)
3034 continue;
3035 if (!spec->multiout.dig_out_nid)
3036 spec->multiout.dig_out_nid = nid;
3037 else {
3038 spec->slave_dig_outs[0] = nid;
3039 break; /* at most two dig outs */
3040 }
3041 }
3042}
3043
Takashi Iwai12daef62011-06-18 17:45:49 +02003044static void fill_dig_in(struct hda_codec *codec)
Harald Welted949cac2008-09-09 15:56:01 +08003045{
3046 struct via_spec *spec = codec->spec;
Takashi Iwai12daef62011-06-18 17:45:49 +02003047 hda_nid_t dig_nid;
3048 int i, err;
Harald Welted949cac2008-09-09 15:56:01 +08003049
Takashi Iwai12daef62011-06-18 17:45:49 +02003050 if (!spec->autocfg.dig_in_pin)
3051 return;
Harald Welted949cac2008-09-09 15:56:01 +08003052
Takashi Iwai12daef62011-06-18 17:45:49 +02003053 dig_nid = codec->start_nid;
3054 for (i = 0; i < codec->num_nodes; i++, dig_nid++) {
3055 unsigned int wcaps = get_wcaps(codec, dig_nid);
3056 if (get_wcaps_type(wcaps) != AC_WID_AUD_IN)
3057 continue;
3058 if (!(wcaps & AC_WCAP_DIGITAL))
3059 continue;
3060 if (!(wcaps & AC_WCAP_CONN_LIST))
3061 continue;
3062 err = get_connection_index(codec, dig_nid,
3063 spec->autocfg.dig_in_pin);
3064 if (err >= 0) {
3065 spec->dig_in_nid = dig_nid;
3066 break;
3067 }
3068 }
Harald Welted949cac2008-09-09 15:56:01 +08003069}
3070
Lydia Wang6369bcf2009-10-10 19:08:31 +08003071static void override_mic_boost(struct hda_codec *codec, hda_nid_t pin,
3072 int offset, int num_steps, int step_size)
3073{
3074 snd_hda_override_amp_caps(codec, pin, HDA_INPUT,
3075 (offset << AC_AMPCAP_OFFSET_SHIFT) |
3076 (num_steps << AC_AMPCAP_NUM_STEPS_SHIFT) |
3077 (step_size << AC_AMPCAP_STEP_SIZE_SHIFT) |
3078 (0 << AC_AMPCAP_MUTE_SHIFT));
3079}
3080
Harald Welted949cac2008-09-09 15:56:01 +08003081static int patch_vt1708S(struct hda_codec *codec)
3082{
3083 struct via_spec *spec;
3084 int err;
3085
3086 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01003087 spec = via_new_spec(codec);
Harald Welted949cac2008-09-09 15:56:01 +08003088 if (spec == NULL)
3089 return -ENOMEM;
3090
Takashi Iwai620e2b22011-06-17 17:19:19 +02003091 spec->aa_mix_nid = 0x16;
Takashi Iwaid7a99cc2011-06-18 17:24:46 +02003092 override_mic_boost(codec, 0x1a, 0, 3, 40);
3093 override_mic_boost(codec, 0x1e, 0, 3, 40);
Takashi Iwai620e2b22011-06-17 17:19:19 +02003094
Harald Welted949cac2008-09-09 15:56:01 +08003095 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +02003096 err = via_parse_auto_config(codec);
Harald Welted949cac2008-09-09 15:56:01 +08003097 if (err < 0) {
3098 via_free(codec);
3099 return err;
Harald Welted949cac2008-09-09 15:56:01 +08003100 }
3101
Takashi Iwai096a8852011-06-20 12:09:02 +02003102 spec->init_verbs[spec->num_iverbs++] = vt1708S_init_verbs;
Harald Welted949cac2008-09-09 15:56:01 +08003103
Harald Welted949cac2008-09-09 15:56:01 +08003104 codec->patch_ops = via_patch_ops;
3105
Lydia Wang518bf3b2009-10-10 19:07:29 +08003106 /* correct names for VT1708BCE */
3107 if (get_codec_type(codec) == VT1708BCE) {
3108 kfree(codec->chip_name);
3109 codec->chip_name = kstrdup("VT1708BCE", GFP_KERNEL);
3110 snprintf(codec->bus->card->mixername,
3111 sizeof(codec->bus->card->mixername),
3112 "%s %s", codec->vendor_name, codec->chip_name);
Lydia Wang970f630f2011-03-22 16:25:56 +08003113 }
Lydia Wangbc92df72011-03-23 17:56:05 +08003114 /* correct names for VT1705 */
3115 if (codec->vendor_id == 0x11064397) {
3116 kfree(codec->chip_name);
3117 codec->chip_name = kstrdup("VT1705", GFP_KERNEL);
3118 snprintf(codec->bus->card->mixername,
3119 sizeof(codec->bus->card->mixername),
3120 "%s %s", codec->vendor_name, codec->chip_name);
3121 }
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003122 spec->set_widgets_power_state = set_widgets_power_state_vt1708B;
Harald Welted949cac2008-09-09 15:56:01 +08003123 return 0;
3124}
3125
3126/* Patch for VT1702 */
3127
Takashi Iwai096a8852011-06-20 12:09:02 +02003128static const struct hda_verb vt1702_init_verbs[] = {
Lydia Wangbc7e7e52009-10-10 19:08:32 +08003129 /* mixer enable */
3130 {0x1, 0xF88, 0x3},
3131 /* GPIO 0~2 */
3132 {0x1, 0xF82, 0x3F},
Harald Welted949cac2008-09-09 15:56:01 +08003133 { }
3134};
3135
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003136static void set_widgets_power_state_vt1702(struct hda_codec *codec)
3137{
3138 int imux_is_smixer =
3139 snd_hda_codec_read(codec, 0x13, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 3;
3140 unsigned int parm;
3141 /* inputs */
3142 /* PW 1/2/5 (14h/15h/18h) */
3143 parm = AC_PWRST_D3;
3144 set_pin_power_state(codec, 0x14, &parm);
3145 set_pin_power_state(codec, 0x15, &parm);
3146 set_pin_power_state(codec, 0x18, &parm);
3147 if (imux_is_smixer)
3148 parm = AC_PWRST_D0; /* SW0 (13h) = stereo mixer (idx 3) */
3149 /* SW0 (13h), AIW 0/1/2 (12h/1fh/20h) */
Takashi Iwai054d8672012-01-24 12:25:50 +01003150 update_power_state(codec, 0x13, parm);
3151 update_power_state(codec, 0x12, parm);
3152 update_power_state(codec, 0x1f, parm);
3153 update_power_state(codec, 0x20, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003154
3155 /* outputs */
3156 /* PW 3/4 (16h/17h) */
3157 parm = AC_PWRST_D3;
3158 set_pin_power_state(codec, 0x17, &parm);
3159 set_pin_power_state(codec, 0x16, &parm);
3160 /* MW0 (1ah), AOW 0/1 (10h/1dh) */
Takashi Iwai054d8672012-01-24 12:25:50 +01003161 update_power_state(codec, 0x1a, imux_is_smixer ? AC_PWRST_D0 : parm);
3162 update_power_state(codec, 0x10, parm);
3163 update_power_state(codec, 0x1d, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003164}
3165
Harald Welted949cac2008-09-09 15:56:01 +08003166static int patch_vt1702(struct hda_codec *codec)
3167{
3168 struct via_spec *spec;
3169 int err;
Harald Welted949cac2008-09-09 15:56:01 +08003170
3171 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01003172 spec = via_new_spec(codec);
Harald Welted949cac2008-09-09 15:56:01 +08003173 if (spec == NULL)
3174 return -ENOMEM;
3175
Takashi Iwai620e2b22011-06-17 17:19:19 +02003176 spec->aa_mix_nid = 0x1a;
3177
Takashi Iwai12daef62011-06-18 17:45:49 +02003178 /* limit AA path volume to 0 dB */
3179 snd_hda_override_amp_caps(codec, 0x1A, HDA_INPUT,
3180 (0x17 << AC_AMPCAP_OFFSET_SHIFT) |
3181 (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) |
3182 (0x5 << AC_AMPCAP_STEP_SIZE_SHIFT) |
3183 (1 << AC_AMPCAP_MUTE_SHIFT));
3184
Harald Welted949cac2008-09-09 15:56:01 +08003185 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +02003186 err = via_parse_auto_config(codec);
Harald Welted949cac2008-09-09 15:56:01 +08003187 if (err < 0) {
3188 via_free(codec);
3189 return err;
Harald Welted949cac2008-09-09 15:56:01 +08003190 }
3191
Takashi Iwai096a8852011-06-20 12:09:02 +02003192 spec->init_verbs[spec->num_iverbs++] = vt1702_init_verbs;
Harald Welted949cac2008-09-09 15:56:01 +08003193
Harald Welted949cac2008-09-09 15:56:01 +08003194 codec->patch_ops = via_patch_ops;
3195
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003196 spec->set_widgets_power_state = set_widgets_power_state_vt1702;
Harald Welted949cac2008-09-09 15:56:01 +08003197 return 0;
3198}
3199
Lydia Wangeb7188c2009-10-10 19:08:34 +08003200/* Patch for VT1718S */
3201
Takashi Iwai096a8852011-06-20 12:09:02 +02003202static const struct hda_verb vt1718S_init_verbs[] = {
Lydia Wang4ab2d532011-03-24 12:42:03 +08003203 /* Enable MW0 adjust Gain 5 */
3204 {0x1, 0xfb2, 0x10},
Lydia Wangeb7188c2009-10-10 19:08:34 +08003205 /* Enable Boost Volume backdoor */
3206 {0x1, 0xf88, 0x8},
Takashi Iwai5d417622011-06-20 11:32:27 +02003207
Lydia Wangeb7188c2009-10-10 19:08:34 +08003208 { }
3209};
3210
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003211static void set_widgets_power_state_vt1718S(struct hda_codec *codec)
3212{
3213 struct via_spec *spec = codec->spec;
3214 int imux_is_smixer;
Takashi Iwai61625522012-07-25 13:54:55 +02003215 unsigned int parm, parm2;
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003216 /* MUX6 (1eh) = stereo mixer */
3217 imux_is_smixer =
3218 snd_hda_codec_read(codec, 0x1e, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 5;
3219 /* inputs */
3220 /* PW 5/6/7 (29h/2ah/2bh) */
3221 parm = AC_PWRST_D3;
3222 set_pin_power_state(codec, 0x29, &parm);
3223 set_pin_power_state(codec, 0x2a, &parm);
3224 set_pin_power_state(codec, 0x2b, &parm);
3225 if (imux_is_smixer)
3226 parm = AC_PWRST_D0;
3227 /* MUX6/7 (1eh/1fh), AIW 0/1 (10h/11h) */
Takashi Iwai054d8672012-01-24 12:25:50 +01003228 update_power_state(codec, 0x1e, parm);
3229 update_power_state(codec, 0x1f, parm);
3230 update_power_state(codec, 0x10, parm);
3231 update_power_state(codec, 0x11, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003232
3233 /* outputs */
3234 /* PW3 (27h), MW2 (1ah), AOW3 (bh) */
3235 parm = AC_PWRST_D3;
3236 set_pin_power_state(codec, 0x27, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003237 update_power_state(codec, 0x1a, parm);
Takashi Iwai61625522012-07-25 13:54:55 +02003238 parm2 = parm; /* for pin 0x0b */
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003239
3240 /* PW2 (26h), AOW2 (ah) */
3241 parm = AC_PWRST_D3;
3242 set_pin_power_state(codec, 0x26, &parm);
3243 if (spec->smart51_enabled)
3244 set_pin_power_state(codec, 0x2b, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003245 update_power_state(codec, 0xa, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003246
3247 /* PW0 (24h), AOW0 (8h) */
3248 parm = AC_PWRST_D3;
3249 set_pin_power_state(codec, 0x24, &parm);
3250 if (!spec->hp_independent_mode) /* check for redirected HP */
3251 set_pin_power_state(codec, 0x28, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003252 update_power_state(codec, 0x8, parm);
Takashi Iwai61625522012-07-25 13:54:55 +02003253 if (!spec->hp_independent_mode && parm2 != AC_PWRST_D3)
3254 parm = parm2;
3255 update_power_state(codec, 0xb, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003256 /* MW9 (21h), Mw2 (1ah), AOW0 (8h) */
Takashi Iwai054d8672012-01-24 12:25:50 +01003257 update_power_state(codec, 0x21, imux_is_smixer ? AC_PWRST_D0 : parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003258
3259 /* PW1 (25h), AOW1 (9h) */
3260 parm = AC_PWRST_D3;
3261 set_pin_power_state(codec, 0x25, &parm);
3262 if (spec->smart51_enabled)
3263 set_pin_power_state(codec, 0x2a, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003264 update_power_state(codec, 0x9, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003265
3266 if (spec->hp_independent_mode) {
3267 /* PW4 (28h), MW3 (1bh), MUX1(34h), AOW4 (ch) */
3268 parm = AC_PWRST_D3;
3269 set_pin_power_state(codec, 0x28, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003270 update_power_state(codec, 0x1b, parm);
3271 update_power_state(codec, 0x34, parm);
3272 update_power_state(codec, 0xc, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003273 }
3274}
3275
Takashi Iwai30b45032011-07-11 17:05:04 +02003276/* Add a connection to the primary DAC from AA-mixer for some codecs
3277 * This isn't listed from the raw info, but the chip has a secret connection.
3278 */
3279static int add_secret_dac_path(struct hda_codec *codec)
3280{
3281 struct via_spec *spec = codec->spec;
3282 int i, nums;
3283 hda_nid_t conn[8];
3284 hda_nid_t nid;
3285
3286 if (!spec->aa_mix_nid)
3287 return 0;
3288 nums = snd_hda_get_connections(codec, spec->aa_mix_nid, conn,
3289 ARRAY_SIZE(conn) - 1);
3290 for (i = 0; i < nums; i++) {
3291 if (get_wcaps_type(get_wcaps(codec, conn[i])) == AC_WID_AUD_OUT)
3292 return 0;
3293 }
3294
3295 /* find the primary DAC and add to the connection list */
3296 nid = codec->start_nid;
3297 for (i = 0; i < codec->num_nodes; i++, nid++) {
3298 unsigned int caps = get_wcaps(codec, nid);
3299 if (get_wcaps_type(caps) == AC_WID_AUD_OUT &&
3300 !(caps & AC_WCAP_DIGITAL)) {
3301 conn[nums++] = nid;
3302 return snd_hda_override_conn_list(codec,
3303 spec->aa_mix_nid,
3304 nums, conn);
3305 }
3306 }
3307 return 0;
3308}
3309
3310
Lydia Wangeb7188c2009-10-10 19:08:34 +08003311static int patch_vt1718S(struct hda_codec *codec)
3312{
3313 struct via_spec *spec;
3314 int err;
3315
3316 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01003317 spec = via_new_spec(codec);
Lydia Wangeb7188c2009-10-10 19:08:34 +08003318 if (spec == NULL)
3319 return -ENOMEM;
3320
Takashi Iwai620e2b22011-06-17 17:19:19 +02003321 spec->aa_mix_nid = 0x21;
Takashi Iwaid7a99cc2011-06-18 17:24:46 +02003322 override_mic_boost(codec, 0x2b, 0, 3, 40);
3323 override_mic_boost(codec, 0x29, 0, 3, 40);
Takashi Iwai30b45032011-07-11 17:05:04 +02003324 add_secret_dac_path(codec);
Takashi Iwai620e2b22011-06-17 17:19:19 +02003325
Lydia Wangeb7188c2009-10-10 19:08:34 +08003326 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +02003327 err = via_parse_auto_config(codec);
Lydia Wangeb7188c2009-10-10 19:08:34 +08003328 if (err < 0) {
3329 via_free(codec);
3330 return err;
Lydia Wangeb7188c2009-10-10 19:08:34 +08003331 }
3332
Takashi Iwai096a8852011-06-20 12:09:02 +02003333 spec->init_verbs[spec->num_iverbs++] = vt1718S_init_verbs;
Lydia Wangeb7188c2009-10-10 19:08:34 +08003334
Lydia Wangeb7188c2009-10-10 19:08:34 +08003335 codec->patch_ops = via_patch_ops;
3336
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003337 spec->set_widgets_power_state = set_widgets_power_state_vt1718S;
3338
Lydia Wangeb7188c2009-10-10 19:08:34 +08003339 return 0;
3340}
Lydia Wangf3db4232009-10-10 19:08:41 +08003341
3342/* Patch for VT1716S */
3343
3344static int vt1716s_dmic_info(struct snd_kcontrol *kcontrol,
3345 struct snd_ctl_elem_info *uinfo)
3346{
3347 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
3348 uinfo->count = 1;
3349 uinfo->value.integer.min = 0;
3350 uinfo->value.integer.max = 1;
3351 return 0;
3352}
3353
3354static int vt1716s_dmic_get(struct snd_kcontrol *kcontrol,
3355 struct snd_ctl_elem_value *ucontrol)
3356{
3357 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3358 int index = 0;
3359
3360 index = snd_hda_codec_read(codec, 0x26, 0,
3361 AC_VERB_GET_CONNECT_SEL, 0);
3362 if (index != -1)
3363 *ucontrol->value.integer.value = index;
3364
3365 return 0;
3366}
3367
3368static int vt1716s_dmic_put(struct snd_kcontrol *kcontrol,
3369 struct snd_ctl_elem_value *ucontrol)
3370{
3371 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3372 struct via_spec *spec = codec->spec;
3373 int index = *ucontrol->value.integer.value;
3374
3375 snd_hda_codec_write(codec, 0x26, 0,
3376 AC_VERB_SET_CONNECT_SEL, index);
3377 spec->dmic_enabled = index;
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003378 set_widgets_power_state(codec);
Lydia Wangf3db4232009-10-10 19:08:41 +08003379 return 1;
3380}
3381
Takashi Iwai90dd48a2011-05-02 12:38:19 +02003382static const struct snd_kcontrol_new vt1716s_dmic_mixer[] = {
Lydia Wangf3db4232009-10-10 19:08:41 +08003383 HDA_CODEC_VOLUME("Digital Mic Capture Volume", 0x22, 0x0, HDA_INPUT),
3384 {
3385 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3386 .name = "Digital Mic Capture Switch",
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01003387 .subdevice = HDA_SUBDEV_NID_FLAG | 0x26,
Lydia Wangf3db4232009-10-10 19:08:41 +08003388 .count = 1,
3389 .info = vt1716s_dmic_info,
3390 .get = vt1716s_dmic_get,
3391 .put = vt1716s_dmic_put,
3392 },
3393 {} /* end */
3394};
3395
3396
3397/* mono-out mixer elements */
Takashi Iwai90dd48a2011-05-02 12:38:19 +02003398static const struct snd_kcontrol_new vt1716S_mono_out_mixer[] = {
Lydia Wangf3db4232009-10-10 19:08:41 +08003399 HDA_CODEC_MUTE("Mono Playback Switch", 0x2a, 0x0, HDA_OUTPUT),
3400 { } /* end */
3401};
3402
Takashi Iwai096a8852011-06-20 12:09:02 +02003403static const struct hda_verb vt1716S_init_verbs[] = {
Lydia Wangf3db4232009-10-10 19:08:41 +08003404 /* Enable Boost Volume backdoor */
3405 {0x1, 0xf8a, 0x80},
3406 /* don't bybass mixer */
3407 {0x1, 0xf88, 0xc0},
3408 /* Enable mono output */
3409 {0x1, 0xf90, 0x08},
3410 { }
3411};
3412
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003413static void set_widgets_power_state_vt1716S(struct hda_codec *codec)
3414{
3415 struct via_spec *spec = codec->spec;
3416 int imux_is_smixer;
3417 unsigned int parm;
3418 unsigned int mono_out, present;
3419 /* SW0 (17h) = stereo mixer */
3420 imux_is_smixer =
3421 (snd_hda_codec_read(codec, 0x17, 0,
3422 AC_VERB_GET_CONNECT_SEL, 0x00) == 5);
3423 /* inputs */
3424 /* PW 1/2/5 (1ah/1bh/1eh) */
3425 parm = AC_PWRST_D3;
3426 set_pin_power_state(codec, 0x1a, &parm);
3427 set_pin_power_state(codec, 0x1b, &parm);
3428 set_pin_power_state(codec, 0x1e, &parm);
3429 if (imux_is_smixer)
3430 parm = AC_PWRST_D0;
3431 /* SW0 (17h), AIW0(13h) */
Takashi Iwai054d8672012-01-24 12:25:50 +01003432 update_power_state(codec, 0x17, parm);
3433 update_power_state(codec, 0x13, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003434
3435 parm = AC_PWRST_D3;
3436 set_pin_power_state(codec, 0x1e, &parm);
3437 /* PW11 (22h) */
3438 if (spec->dmic_enabled)
3439 set_pin_power_state(codec, 0x22, &parm);
3440 else
Takashi Iwai054d8672012-01-24 12:25:50 +01003441 update_power_state(codec, 0x22, AC_PWRST_D3);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003442
3443 /* SW2(26h), AIW1(14h) */
Takashi Iwai054d8672012-01-24 12:25:50 +01003444 update_power_state(codec, 0x26, parm);
3445 update_power_state(codec, 0x14, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003446
3447 /* outputs */
3448 /* PW0 (19h), SW1 (18h), AOW1 (11h) */
3449 parm = AC_PWRST_D3;
3450 set_pin_power_state(codec, 0x19, &parm);
3451 /* Smart 5.1 PW2(1bh) */
3452 if (spec->smart51_enabled)
3453 set_pin_power_state(codec, 0x1b, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003454 update_power_state(codec, 0x18, parm);
3455 update_power_state(codec, 0x11, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003456
3457 /* PW7 (23h), SW3 (27h), AOW3 (25h) */
3458 parm = AC_PWRST_D3;
3459 set_pin_power_state(codec, 0x23, &parm);
3460 /* Smart 5.1 PW1(1ah) */
3461 if (spec->smart51_enabled)
3462 set_pin_power_state(codec, 0x1a, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003463 update_power_state(codec, 0x27, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003464
3465 /* Smart 5.1 PW5(1eh) */
3466 if (spec->smart51_enabled)
3467 set_pin_power_state(codec, 0x1e, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003468 update_power_state(codec, 0x25, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003469
3470 /* Mono out */
3471 /* SW4(28h)->MW1(29h)-> PW12 (2ah)*/
3472 present = snd_hda_jack_detect(codec, 0x1c);
3473
3474 if (present)
3475 mono_out = 0;
3476 else {
3477 present = snd_hda_jack_detect(codec, 0x1d);
3478 if (!spec->hp_independent_mode && present)
3479 mono_out = 0;
3480 else
3481 mono_out = 1;
3482 }
3483 parm = mono_out ? AC_PWRST_D0 : AC_PWRST_D3;
Takashi Iwai054d8672012-01-24 12:25:50 +01003484 update_power_state(codec, 0x28, parm);
3485 update_power_state(codec, 0x29, parm);
3486 update_power_state(codec, 0x2a, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003487
3488 /* PW 3/4 (1ch/1dh) */
3489 parm = AC_PWRST_D3;
3490 set_pin_power_state(codec, 0x1c, &parm);
3491 set_pin_power_state(codec, 0x1d, &parm);
3492 /* HP Independent Mode, power on AOW3 */
3493 if (spec->hp_independent_mode)
Takashi Iwai054d8672012-01-24 12:25:50 +01003494 update_power_state(codec, 0x25, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003495
3496 /* force to D0 for internal Speaker */
3497 /* MW0 (16h), AOW0 (10h) */
Takashi Iwai054d8672012-01-24 12:25:50 +01003498 update_power_state(codec, 0x16, imux_is_smixer ? AC_PWRST_D0 : parm);
3499 update_power_state(codec, 0x10, mono_out ? AC_PWRST_D0 : parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003500}
3501
Lydia Wangf3db4232009-10-10 19:08:41 +08003502static int patch_vt1716S(struct hda_codec *codec)
3503{
3504 struct via_spec *spec;
3505 int err;
3506
3507 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01003508 spec = via_new_spec(codec);
Lydia Wangf3db4232009-10-10 19:08:41 +08003509 if (spec == NULL)
3510 return -ENOMEM;
3511
Takashi Iwai620e2b22011-06-17 17:19:19 +02003512 spec->aa_mix_nid = 0x16;
Takashi Iwaid7a99cc2011-06-18 17:24:46 +02003513 override_mic_boost(codec, 0x1a, 0, 3, 40);
3514 override_mic_boost(codec, 0x1e, 0, 3, 40);
Takashi Iwai620e2b22011-06-17 17:19:19 +02003515
Lydia Wangf3db4232009-10-10 19:08:41 +08003516 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +02003517 err = via_parse_auto_config(codec);
Lydia Wangf3db4232009-10-10 19:08:41 +08003518 if (err < 0) {
3519 via_free(codec);
3520 return err;
Lydia Wangf3db4232009-10-10 19:08:41 +08003521 }
3522
Takashi Iwai096a8852011-06-20 12:09:02 +02003523 spec->init_verbs[spec->num_iverbs++] = vt1716S_init_verbs;
Lydia Wangf3db4232009-10-10 19:08:41 +08003524
Lydia Wangf3db4232009-10-10 19:08:41 +08003525 spec->mixers[spec->num_mixers] = vt1716s_dmic_mixer;
3526 spec->num_mixers++;
3527
3528 spec->mixers[spec->num_mixers++] = vt1716S_mono_out_mixer;
3529
3530 codec->patch_ops = via_patch_ops;
3531
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003532 spec->set_widgets_power_state = set_widgets_power_state_vt1716S;
Lydia Wangf3db4232009-10-10 19:08:41 +08003533 return 0;
3534}
Lydia Wang25eaba22009-10-10 19:08:43 +08003535
3536/* for vt2002P */
3537
Takashi Iwai096a8852011-06-20 12:09:02 +02003538static const struct hda_verb vt2002P_init_verbs[] = {
Lydia Wangeadb9a82011-03-24 12:43:02 +08003539 /* Class-D speaker related verbs */
3540 {0x1, 0xfe0, 0x4},
3541 {0x1, 0xfe9, 0x80},
3542 {0x1, 0xfe2, 0x22},
Lydia Wang25eaba22009-10-10 19:08:43 +08003543 /* Enable Boost Volume backdoor */
3544 {0x1, 0xfb9, 0x24},
Lydia Wang25eaba22009-10-10 19:08:43 +08003545 /* Enable AOW0 to MW9 */
3546 {0x1, 0xfb8, 0x88},
3547 { }
3548};
Takashi Iwai4a918ff2011-06-20 12:39:26 +02003549
Takashi Iwai096a8852011-06-20 12:09:02 +02003550static const struct hda_verb vt1802_init_verbs[] = {
Lydia Wang118909562011-03-23 17:57:34 +08003551 /* Enable Boost Volume backdoor */
3552 {0x1, 0xfb9, 0x24},
Lydia Wang118909562011-03-23 17:57:34 +08003553 /* Enable AOW0 to MW9 */
3554 {0x1, 0xfb8, 0x88},
3555 { }
3556};
Lydia Wang25eaba22009-10-10 19:08:43 +08003557
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003558static void set_widgets_power_state_vt2002P(struct hda_codec *codec)
3559{
3560 struct via_spec *spec = codec->spec;
3561 int imux_is_smixer;
3562 unsigned int parm;
3563 unsigned int present;
3564 /* MUX9 (1eh) = stereo mixer */
3565 imux_is_smixer =
3566 snd_hda_codec_read(codec, 0x1e, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 3;
3567 /* inputs */
3568 /* PW 5/6/7 (29h/2ah/2bh) */
3569 parm = AC_PWRST_D3;
3570 set_pin_power_state(codec, 0x29, &parm);
3571 set_pin_power_state(codec, 0x2a, &parm);
3572 set_pin_power_state(codec, 0x2b, &parm);
3573 parm = AC_PWRST_D0;
3574 /* MUX9/10 (1eh/1fh), AIW 0/1 (10h/11h) */
Takashi Iwai054d8672012-01-24 12:25:50 +01003575 update_power_state(codec, 0x1e, parm);
3576 update_power_state(codec, 0x1f, parm);
3577 update_power_state(codec, 0x10, parm);
3578 update_power_state(codec, 0x11, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003579
3580 /* outputs */
3581 /* AOW0 (8h)*/
Takashi Iwai054d8672012-01-24 12:25:50 +01003582 update_power_state(codec, 0x8, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003583
Lydia Wang118909562011-03-23 17:57:34 +08003584 if (spec->codec_type == VT1802) {
3585 /* PW4 (28h), MW4 (18h), MUX4(38h) */
3586 parm = AC_PWRST_D3;
3587 set_pin_power_state(codec, 0x28, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003588 update_power_state(codec, 0x18, parm);
3589 update_power_state(codec, 0x38, parm);
Lydia Wang118909562011-03-23 17:57:34 +08003590 } else {
3591 /* PW4 (26h), MW4 (1ch), MUX4(37h) */
3592 parm = AC_PWRST_D3;
3593 set_pin_power_state(codec, 0x26, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003594 update_power_state(codec, 0x1c, parm);
3595 update_power_state(codec, 0x37, parm);
Lydia Wang118909562011-03-23 17:57:34 +08003596 }
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003597
Lydia Wang118909562011-03-23 17:57:34 +08003598 if (spec->codec_type == VT1802) {
3599 /* PW1 (25h), MW1 (15h), MUX1(35h), AOW1 (9h) */
3600 parm = AC_PWRST_D3;
3601 set_pin_power_state(codec, 0x25, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003602 update_power_state(codec, 0x15, parm);
3603 update_power_state(codec, 0x35, parm);
Lydia Wang118909562011-03-23 17:57:34 +08003604 } else {
3605 /* PW1 (25h), MW1 (19h), MUX1(35h), AOW1 (9h) */
3606 parm = AC_PWRST_D3;
3607 set_pin_power_state(codec, 0x25, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003608 update_power_state(codec, 0x19, parm);
3609 update_power_state(codec, 0x35, parm);
Lydia Wang118909562011-03-23 17:57:34 +08003610 }
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003611
3612 if (spec->hp_independent_mode)
Takashi Iwai054d8672012-01-24 12:25:50 +01003613 update_power_state(codec, 0x9, AC_PWRST_D0);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003614
3615 /* Class-D */
3616 /* PW0 (24h), MW0(18h/14h), MUX0(34h) */
3617 present = snd_hda_jack_detect(codec, 0x25);
3618
3619 parm = AC_PWRST_D3;
3620 set_pin_power_state(codec, 0x24, &parm);
3621 parm = present ? AC_PWRST_D3 : AC_PWRST_D0;
Lydia Wang118909562011-03-23 17:57:34 +08003622 if (spec->codec_type == VT1802)
Takashi Iwai054d8672012-01-24 12:25:50 +01003623 update_power_state(codec, 0x14, parm);
Lydia Wang118909562011-03-23 17:57:34 +08003624 else
Takashi Iwai054d8672012-01-24 12:25:50 +01003625 update_power_state(codec, 0x18, parm);
3626 update_power_state(codec, 0x34, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003627
3628 /* Mono Out */
3629 present = snd_hda_jack_detect(codec, 0x26);
3630
3631 parm = present ? AC_PWRST_D3 : AC_PWRST_D0;
Lydia Wang118909562011-03-23 17:57:34 +08003632 if (spec->codec_type == VT1802) {
3633 /* PW15 (33h), MW8(1ch), MUX8(3ch) */
Takashi Iwai054d8672012-01-24 12:25:50 +01003634 update_power_state(codec, 0x33, parm);
3635 update_power_state(codec, 0x1c, parm);
3636 update_power_state(codec, 0x3c, parm);
Lydia Wang118909562011-03-23 17:57:34 +08003637 } else {
3638 /* PW15 (31h), MW8(17h), MUX8(3bh) */
Takashi Iwai054d8672012-01-24 12:25:50 +01003639 update_power_state(codec, 0x31, parm);
3640 update_power_state(codec, 0x17, parm);
3641 update_power_state(codec, 0x3b, parm);
Lydia Wang118909562011-03-23 17:57:34 +08003642 }
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003643 /* MW9 (21h) */
3644 if (imux_is_smixer || !is_aa_path_mute(codec))
Takashi Iwai054d8672012-01-24 12:25:50 +01003645 update_power_state(codec, 0x21, AC_PWRST_D0);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003646 else
Takashi Iwai054d8672012-01-24 12:25:50 +01003647 update_power_state(codec, 0x21, AC_PWRST_D3);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003648}
Lydia Wang25eaba22009-10-10 19:08:43 +08003649
David Henningsson4b527b62012-09-18 14:26:59 +02003650/*
3651 * pin fix-up
3652 */
3653enum {
3654 VIA_FIXUP_INTMIC_BOOST,
Takashi Iwaid5266122012-11-07 10:40:36 +01003655 VIA_FIXUP_ASUS_G75,
David Henningsson4b527b62012-09-18 14:26:59 +02003656};
3657
3658static void via_fixup_intmic_boost(struct hda_codec *codec,
3659 const struct hda_fixup *fix, int action)
3660{
3661 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3662 override_mic_boost(codec, 0x30, 0, 2, 40);
3663}
3664
3665static const struct hda_fixup via_fixups[] = {
3666 [VIA_FIXUP_INTMIC_BOOST] = {
3667 .type = HDA_FIXUP_FUNC,
3668 .v.func = via_fixup_intmic_boost,
3669 },
Takashi Iwaid5266122012-11-07 10:40:36 +01003670 [VIA_FIXUP_ASUS_G75] = {
3671 .type = HDA_FIXUP_PINS,
3672 .v.pins = (const struct hda_pintbl[]) {
3673 /* set 0x24 and 0x33 as speakers */
3674 { 0x24, 0x991301f0 },
3675 { 0x33, 0x991301f1 }, /* subwoofer */
3676 { }
3677 }
3678 },
David Henningsson4b527b62012-09-18 14:26:59 +02003679};
3680
3681static const struct snd_pci_quirk vt2002p_fixups[] = {
Takashi Iwaid5266122012-11-07 10:40:36 +01003682 SND_PCI_QUIRK(0x1043, 0x1487, "Asus G75", VIA_FIXUP_ASUS_G75),
David Henningsson4b527b62012-09-18 14:26:59 +02003683 SND_PCI_QUIRK(0x1043, 0x8532, "Asus X202E", VIA_FIXUP_INTMIC_BOOST),
3684 {}
3685};
3686
Takashi Iwaief4da452012-11-07 10:37:48 +01003687/* NIDs 0x24 and 0x33 on VT1802 have connections to non-existing NID 0x3e
3688 * Replace this with mixer NID 0x1c
3689 */
3690static void fix_vt1802_connections(struct hda_codec *codec)
3691{
3692 static hda_nid_t conn_24[] = { 0x14, 0x1c };
3693 static hda_nid_t conn_33[] = { 0x1c };
3694
3695 snd_hda_override_conn_list(codec, 0x24, ARRAY_SIZE(conn_24), conn_24);
3696 snd_hda_override_conn_list(codec, 0x33, ARRAY_SIZE(conn_33), conn_33);
3697}
3698
Lydia Wang25eaba22009-10-10 19:08:43 +08003699/* patch for vt2002P */
3700static int patch_vt2002P(struct hda_codec *codec)
3701{
3702 struct via_spec *spec;
3703 int err;
3704
3705 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01003706 spec = via_new_spec(codec);
Lydia Wang25eaba22009-10-10 19:08:43 +08003707 if (spec == NULL)
3708 return -ENOMEM;
3709
Takashi Iwai620e2b22011-06-17 17:19:19 +02003710 spec->aa_mix_nid = 0x21;
Takashi Iwaid7a99cc2011-06-18 17:24:46 +02003711 override_mic_boost(codec, 0x2b, 0, 3, 40);
3712 override_mic_boost(codec, 0x29, 0, 3, 40);
Takashi Iwaief4da452012-11-07 10:37:48 +01003713 if (spec->codec_type == VT1802)
3714 fix_vt1802_connections(codec);
Takashi Iwai30b45032011-07-11 17:05:04 +02003715 add_secret_dac_path(codec);
Takashi Iwai620e2b22011-06-17 17:19:19 +02003716
David Henningsson4b527b62012-09-18 14:26:59 +02003717 snd_hda_pick_fixup(codec, NULL, vt2002p_fixups, via_fixups);
3718 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3719
Lydia Wang25eaba22009-10-10 19:08:43 +08003720 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +02003721 err = via_parse_auto_config(codec);
Lydia Wang25eaba22009-10-10 19:08:43 +08003722 if (err < 0) {
3723 via_free(codec);
3724 return err;
Lydia Wang25eaba22009-10-10 19:08:43 +08003725 }
3726
Lydia Wang118909562011-03-23 17:57:34 +08003727 if (spec->codec_type == VT1802)
Takashi Iwai4a918ff2011-06-20 12:39:26 +02003728 spec->init_verbs[spec->num_iverbs++] = vt1802_init_verbs;
Lydia Wang118909562011-03-23 17:57:34 +08003729 else
Takashi Iwai4a918ff2011-06-20 12:39:26 +02003730 spec->init_verbs[spec->num_iverbs++] = vt2002P_init_verbs;
Lydia Wang118909562011-03-23 17:57:34 +08003731
Lydia Wang25eaba22009-10-10 19:08:43 +08003732 codec->patch_ops = via_patch_ops;
3733
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003734 spec->set_widgets_power_state = set_widgets_power_state_vt2002P;
Lydia Wang25eaba22009-10-10 19:08:43 +08003735 return 0;
3736}
Lydia Wangab6734e2009-10-10 19:08:46 +08003737
3738/* for vt1812 */
3739
Takashi Iwai096a8852011-06-20 12:09:02 +02003740static const struct hda_verb vt1812_init_verbs[] = {
Lydia Wangab6734e2009-10-10 19:08:46 +08003741 /* Enable Boost Volume backdoor */
3742 {0x1, 0xfb9, 0x24},
Lydia Wangab6734e2009-10-10 19:08:46 +08003743 /* Enable AOW0 to MW9 */
3744 {0x1, 0xfb8, 0xa8},
3745 { }
3746};
3747
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003748static void set_widgets_power_state_vt1812(struct hda_codec *codec)
3749{
3750 struct via_spec *spec = codec->spec;
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003751 unsigned int parm;
3752 unsigned int present;
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003753 /* inputs */
3754 /* PW 5/6/7 (29h/2ah/2bh) */
3755 parm = AC_PWRST_D3;
3756 set_pin_power_state(codec, 0x29, &parm);
3757 set_pin_power_state(codec, 0x2a, &parm);
3758 set_pin_power_state(codec, 0x2b, &parm);
3759 parm = AC_PWRST_D0;
3760 /* MUX10/11 (1eh/1fh), AIW 0/1 (10h/11h) */
Takashi Iwai054d8672012-01-24 12:25:50 +01003761 update_power_state(codec, 0x1e, parm);
3762 update_power_state(codec, 0x1f, parm);
3763 update_power_state(codec, 0x10, parm);
3764 update_power_state(codec, 0x11, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003765
3766 /* outputs */
3767 /* AOW0 (8h)*/
Takashi Iwai054d8672012-01-24 12:25:50 +01003768 update_power_state(codec, 0x8, AC_PWRST_D0);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003769
3770 /* PW4 (28h), MW4 (18h), MUX4(38h) */
3771 parm = AC_PWRST_D3;
3772 set_pin_power_state(codec, 0x28, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003773 update_power_state(codec, 0x18, parm);
3774 update_power_state(codec, 0x38, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003775
3776 /* PW1 (25h), MW1 (15h), MUX1(35h), AOW1 (9h) */
3777 parm = AC_PWRST_D3;
3778 set_pin_power_state(codec, 0x25, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003779 update_power_state(codec, 0x15, parm);
3780 update_power_state(codec, 0x35, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003781 if (spec->hp_independent_mode)
Takashi Iwai054d8672012-01-24 12:25:50 +01003782 update_power_state(codec, 0x9, AC_PWRST_D0);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003783
3784 /* Internal Speaker */
3785 /* PW0 (24h), MW0(14h), MUX0(34h) */
3786 present = snd_hda_jack_detect(codec, 0x25);
3787
3788 parm = AC_PWRST_D3;
3789 set_pin_power_state(codec, 0x24, &parm);
3790 if (present) {
Takashi Iwai054d8672012-01-24 12:25:50 +01003791 update_power_state(codec, 0x14, AC_PWRST_D3);
3792 update_power_state(codec, 0x34, AC_PWRST_D3);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003793 } else {
Takashi Iwai054d8672012-01-24 12:25:50 +01003794 update_power_state(codec, 0x14, AC_PWRST_D0);
3795 update_power_state(codec, 0x34, AC_PWRST_D0);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003796 }
3797
3798
3799 /* Mono Out */
3800 /* PW13 (31h), MW13(1ch), MUX13(3ch), MW14(3eh) */
3801 present = snd_hda_jack_detect(codec, 0x28);
3802
3803 parm = AC_PWRST_D3;
3804 set_pin_power_state(codec, 0x31, &parm);
3805 if (present) {
Takashi Iwai054d8672012-01-24 12:25:50 +01003806 update_power_state(codec, 0x1c, AC_PWRST_D3);
3807 update_power_state(codec, 0x3c, AC_PWRST_D3);
3808 update_power_state(codec, 0x3e, AC_PWRST_D3);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003809 } else {
Takashi Iwai054d8672012-01-24 12:25:50 +01003810 update_power_state(codec, 0x1c, AC_PWRST_D0);
3811 update_power_state(codec, 0x3c, AC_PWRST_D0);
3812 update_power_state(codec, 0x3e, AC_PWRST_D0);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003813 }
3814
3815 /* PW15 (33h), MW15 (1dh), MUX15(3dh) */
3816 parm = AC_PWRST_D3;
3817 set_pin_power_state(codec, 0x33, &parm);
Takashi Iwai054d8672012-01-24 12:25:50 +01003818 update_power_state(codec, 0x1d, parm);
3819 update_power_state(codec, 0x3d, parm);
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003820
3821}
Lydia Wangab6734e2009-10-10 19:08:46 +08003822
3823/* patch for vt1812 */
3824static int patch_vt1812(struct hda_codec *codec)
3825{
3826 struct via_spec *spec;
3827 int err;
3828
3829 /* create a codec specific record */
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01003830 spec = via_new_spec(codec);
Lydia Wangab6734e2009-10-10 19:08:46 +08003831 if (spec == NULL)
3832 return -ENOMEM;
3833
Takashi Iwai620e2b22011-06-17 17:19:19 +02003834 spec->aa_mix_nid = 0x21;
Takashi Iwaid7a99cc2011-06-18 17:24:46 +02003835 override_mic_boost(codec, 0x2b, 0, 3, 40);
3836 override_mic_boost(codec, 0x29, 0, 3, 40);
Takashi Iwai30b45032011-07-11 17:05:04 +02003837 add_secret_dac_path(codec);
Takashi Iwai620e2b22011-06-17 17:19:19 +02003838
Lydia Wangab6734e2009-10-10 19:08:46 +08003839 /* automatic parse from the BIOS config */
Takashi Iwai12daef62011-06-18 17:45:49 +02003840 err = via_parse_auto_config(codec);
Lydia Wangab6734e2009-10-10 19:08:46 +08003841 if (err < 0) {
3842 via_free(codec);
3843 return err;
Lydia Wangab6734e2009-10-10 19:08:46 +08003844 }
3845
Takashi Iwai096a8852011-06-20 12:09:02 +02003846 spec->init_verbs[spec->num_iverbs++] = vt1812_init_verbs;
Lydia Wangab6734e2009-10-10 19:08:46 +08003847
Lydia Wangab6734e2009-10-10 19:08:46 +08003848 codec->patch_ops = via_patch_ops;
3849
Lydia Wang3e95b9a2011-03-23 15:13:28 +08003850 spec->set_widgets_power_state = set_widgets_power_state_vt1812;
Lydia Wangab6734e2009-10-10 19:08:46 +08003851 return 0;
3852}
3853
Lydia Wang43737e02012-12-10 18:28:11 +08003854/* patch for vt3476 */
3855
3856static const struct hda_verb vt3476_init_verbs[] = {
3857 /* Enable DMic 8/16/32K */
3858 {0x1, 0xF7B, 0x30},
3859 /* Enable Boost Volume backdoor */
3860 {0x1, 0xFB9, 0x20},
3861 /* Enable AOW-MW9 path */
3862 {0x1, 0xFB8, 0x10},
3863 { }
3864};
3865
3866static void set_widgets_power_state_vt3476(struct hda_codec *codec)
3867{
3868 struct via_spec *spec = codec->spec;
3869 int imux_is_smixer;
3870 unsigned int parm, parm2;
3871 /* MUX10 (1eh) = stereo mixer */
3872 imux_is_smixer =
3873 snd_hda_codec_read(codec, 0x1e, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 4;
3874 /* inputs */
3875 /* PW 5/6/7 (29h/2ah/2bh) */
3876 parm = AC_PWRST_D3;
3877 set_pin_power_state(codec, 0x29, &parm);
3878 set_pin_power_state(codec, 0x2a, &parm);
3879 set_pin_power_state(codec, 0x2b, &parm);
3880 if (imux_is_smixer)
3881 parm = AC_PWRST_D0;
3882 /* MUX10/11 (1eh/1fh), AIW 0/1 (10h/11h) */
3883 update_power_state(codec, 0x1e, parm);
3884 update_power_state(codec, 0x1f, parm);
3885 update_power_state(codec, 0x10, parm);
3886 update_power_state(codec, 0x11, parm);
3887
3888 /* outputs */
3889 /* PW3 (27h), MW3(37h), AOW3 (bh) */
3890 if (spec->codec_type == VT1705CF) {
3891 parm = AC_PWRST_D3;
3892 update_power_state(codec, 0x27, parm);
3893 update_power_state(codec, 0x37, parm);
3894 } else {
3895 parm = AC_PWRST_D3;
3896 set_pin_power_state(codec, 0x27, &parm);
3897 update_power_state(codec, 0x37, parm);
3898 }
3899
3900 /* PW2 (26h), MW2(36h), AOW2 (ah) */
3901 parm = AC_PWRST_D3;
3902 set_pin_power_state(codec, 0x26, &parm);
3903 update_power_state(codec, 0x36, parm);
3904 if (spec->smart51_enabled) {
3905 /* PW7(2bh), MW7(3bh), MUX7(1Bh) */
3906 set_pin_power_state(codec, 0x2b, &parm);
3907 update_power_state(codec, 0x3b, parm);
3908 update_power_state(codec, 0x1b, parm);
3909 }
3910 update_conv_power_state(codec, 0xa, parm, 2);
3911
3912 /* PW1 (25h), MW1(35h), AOW1 (9h) */
3913 parm = AC_PWRST_D3;
3914 set_pin_power_state(codec, 0x25, &parm);
3915 update_power_state(codec, 0x35, parm);
3916 if (spec->smart51_enabled) {
3917 /* PW6(2ah), MW6(3ah), MUX6(1ah) */
3918 set_pin_power_state(codec, 0x2a, &parm);
3919 update_power_state(codec, 0x3a, parm);
3920 update_power_state(codec, 0x1a, parm);
3921 }
3922 update_conv_power_state(codec, 0x9, parm, 1);
3923
3924 /* PW4 (28h), MW4 (38h), MUX4(18h), AOW3(bh)/AOW0(8h) */
3925 parm = AC_PWRST_D3;
3926 set_pin_power_state(codec, 0x28, &parm);
3927 update_power_state(codec, 0x38, parm);
3928 update_power_state(codec, 0x18, parm);
3929 if (spec->hp_independent_mode)
3930 update_conv_power_state(codec, 0xb, parm, 3);
3931 parm2 = parm; /* for pin 0x0b */
3932
3933 /* PW0 (24h), MW0(34h), MW9(3fh), AOW0 (8h) */
3934 parm = AC_PWRST_D3;
3935 set_pin_power_state(codec, 0x24, &parm);
3936 update_power_state(codec, 0x34, parm);
3937 if (!spec->hp_independent_mode && parm2 != AC_PWRST_D3)
3938 parm = parm2;
3939 update_conv_power_state(codec, 0x8, parm, 0);
3940 /* MW9 (21h), Mw2 (1ah), AOW0 (8h) */
3941 update_power_state(codec, 0x3f, imux_is_smixer ? AC_PWRST_D0 : parm);
3942}
3943
3944static int patch_vt3476(struct hda_codec *codec)
3945{
3946 struct via_spec *spec;
3947 int err;
3948
3949 /* create a codec specific record */
3950 spec = via_new_spec(codec);
3951 if (spec == NULL)
3952 return -ENOMEM;
3953
3954 spec->aa_mix_nid = 0x3f;
3955 add_secret_dac_path(codec);
3956
3957 /* automatic parse from the BIOS config */
3958 err = via_parse_auto_config(codec);
3959 if (err < 0) {
3960 via_free(codec);
3961 return err;
3962 }
3963
3964 spec->init_verbs[spec->num_iverbs++] = vt3476_init_verbs;
3965
3966 codec->patch_ops = via_patch_ops;
3967
3968 spec->set_widgets_power_state = set_widgets_power_state_vt3476;
3969
3970 return 0;
3971}
3972
Joseph Chanc577b8a2006-11-29 15:29:40 +01003973/*
3974 * patch entries
3975 */
Takashi Iwai90dd48a2011-05-02 12:38:19 +02003976static const struct hda_codec_preset snd_hda_preset_via[] = {
Takashi Iwai3218c172008-12-18 09:17:56 +01003977 { .id = 0x11061708, .name = "VT1708", .patch = patch_vt1708},
3978 { .id = 0x11061709, .name = "VT1708", .patch = patch_vt1708},
3979 { .id = 0x1106170a, .name = "VT1708", .patch = patch_vt1708},
3980 { .id = 0x1106170b, .name = "VT1708", .patch = patch_vt1708},
3981 { .id = 0x1106e710, .name = "VT1709 10-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02003982 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01003983 { .id = 0x1106e711, .name = "VT1709 10-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02003984 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01003985 { .id = 0x1106e712, .name = "VT1709 10-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02003986 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01003987 { .id = 0x1106e713, .name = "VT1709 10-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02003988 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01003989 { .id = 0x1106e714, .name = "VT1709 6-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02003990 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01003991 { .id = 0x1106e715, .name = "VT1709 6-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02003992 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01003993 { .id = 0x1106e716, .name = "VT1709 6-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02003994 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01003995 { .id = 0x1106e717, .name = "VT1709 6-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02003996 .patch = patch_vt1709},
Takashi Iwai3218c172008-12-18 09:17:56 +01003997 { .id = 0x1106e720, .name = "VT1708B 8-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02003998 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01003999 { .id = 0x1106e721, .name = "VT1708B 8-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02004000 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01004001 { .id = 0x1106e722, .name = "VT1708B 8-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02004002 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01004003 { .id = 0x1106e723, .name = "VT1708B 8-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02004004 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01004005 { .id = 0x1106e724, .name = "VT1708B 4-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02004006 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01004007 { .id = 0x1106e725, .name = "VT1708B 4-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02004008 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01004009 { .id = 0x1106e726, .name = "VT1708B 4-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02004010 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01004011 { .id = 0x1106e727, .name = "VT1708B 4-Ch",
Takashi Iwaiddd304d2011-06-21 16:33:55 +02004012 .patch = patch_vt1708B},
Takashi Iwai3218c172008-12-18 09:17:56 +01004013 { .id = 0x11060397, .name = "VT1708S",
Harald Welted949cac2008-09-09 15:56:01 +08004014 .patch = patch_vt1708S},
Takashi Iwai3218c172008-12-18 09:17:56 +01004015 { .id = 0x11061397, .name = "VT1708S",
Harald Welted949cac2008-09-09 15:56:01 +08004016 .patch = patch_vt1708S},
Takashi Iwai3218c172008-12-18 09:17:56 +01004017 { .id = 0x11062397, .name = "VT1708S",
Harald Welted949cac2008-09-09 15:56:01 +08004018 .patch = patch_vt1708S},
Takashi Iwai3218c172008-12-18 09:17:56 +01004019 { .id = 0x11063397, .name = "VT1708S",
Harald Welted949cac2008-09-09 15:56:01 +08004020 .patch = patch_vt1708S},
Lydia Wangbc92df72011-03-23 17:56:05 +08004021 { .id = 0x11064397, .name = "VT1705",
Harald Welted949cac2008-09-09 15:56:01 +08004022 .patch = patch_vt1708S},
Takashi Iwai3218c172008-12-18 09:17:56 +01004023 { .id = 0x11065397, .name = "VT1708S",
Harald Welted949cac2008-09-09 15:56:01 +08004024 .patch = patch_vt1708S},
Takashi Iwai3218c172008-12-18 09:17:56 +01004025 { .id = 0x11066397, .name = "VT1708S",
Harald Welted949cac2008-09-09 15:56:01 +08004026 .patch = patch_vt1708S},
Takashi Iwai3218c172008-12-18 09:17:56 +01004027 { .id = 0x11067397, .name = "VT1708S",
Harald Welted949cac2008-09-09 15:56:01 +08004028 .patch = patch_vt1708S},
Takashi Iwai3218c172008-12-18 09:17:56 +01004029 { .id = 0x11060398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08004030 .patch = patch_vt1702},
Takashi Iwai3218c172008-12-18 09:17:56 +01004031 { .id = 0x11061398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08004032 .patch = patch_vt1702},
Takashi Iwai3218c172008-12-18 09:17:56 +01004033 { .id = 0x11062398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08004034 .patch = patch_vt1702},
Takashi Iwai3218c172008-12-18 09:17:56 +01004035 { .id = 0x11063398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08004036 .patch = patch_vt1702},
Takashi Iwai3218c172008-12-18 09:17:56 +01004037 { .id = 0x11064398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08004038 .patch = patch_vt1702},
Takashi Iwai3218c172008-12-18 09:17:56 +01004039 { .id = 0x11065398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08004040 .patch = patch_vt1702},
Takashi Iwai3218c172008-12-18 09:17:56 +01004041 { .id = 0x11066398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08004042 .patch = patch_vt1702},
Takashi Iwai3218c172008-12-18 09:17:56 +01004043 { .id = 0x11067398, .name = "VT1702",
Harald Welted949cac2008-09-09 15:56:01 +08004044 .patch = patch_vt1702},
Lydia Wangeb7188c2009-10-10 19:08:34 +08004045 { .id = 0x11060428, .name = "VT1718S",
4046 .patch = patch_vt1718S},
4047 { .id = 0x11064428, .name = "VT1718S",
4048 .patch = patch_vt1718S},
Lydia Wangbb3c6bfc2009-10-10 19:08:39 +08004049 { .id = 0x11060441, .name = "VT2020",
4050 .patch = patch_vt1718S},
4051 { .id = 0x11064441, .name = "VT1828S",
4052 .patch = patch_vt1718S},
Lydia Wangf3db4232009-10-10 19:08:41 +08004053 { .id = 0x11060433, .name = "VT1716S",
4054 .patch = patch_vt1716S},
4055 { .id = 0x1106a721, .name = "VT1716S",
4056 .patch = patch_vt1716S},
Lydia Wang25eaba22009-10-10 19:08:43 +08004057 { .id = 0x11060438, .name = "VT2002P", .patch = patch_vt2002P},
4058 { .id = 0x11064438, .name = "VT2002P", .patch = patch_vt2002P},
Lydia Wangab6734e2009-10-10 19:08:46 +08004059 { .id = 0x11060448, .name = "VT1812", .patch = patch_vt1812},
Lydia Wang36dd5c42009-10-20 13:18:04 +08004060 { .id = 0x11060440, .name = "VT1818S",
4061 .patch = patch_vt1708S},
Lydia Wang118909562011-03-23 17:57:34 +08004062 { .id = 0x11060446, .name = "VT1802",
4063 .patch = patch_vt2002P},
4064 { .id = 0x11068446, .name = "VT1802",
4065 .patch = patch_vt2002P},
Lydia Wang43737e02012-12-10 18:28:11 +08004066 { .id = 0x11064760, .name = "VT1705CF",
4067 .patch = patch_vt3476},
Lydia Wang6121b842012-12-10 19:03:26 +08004068 { .id = 0x11064761, .name = "VT1708SCE",
4069 .patch = patch_vt3476},
4070 { .id = 0x11064762, .name = "VT1808",
4071 .patch = patch_vt3476},
Joseph Chanc577b8a2006-11-29 15:29:40 +01004072 {} /* terminator */
4073};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01004074
4075MODULE_ALIAS("snd-hda-codec-id:1106*");
4076
4077static struct hda_codec_preset_list via_list = {
4078 .preset = snd_hda_preset_via,
4079 .owner = THIS_MODULE,
4080};
4081
4082MODULE_LICENSE("GPL");
4083MODULE_DESCRIPTION("VIA HD-audio codec");
4084
4085static int __init patch_via_init(void)
4086{
4087 return snd_hda_add_codec_preset(&via_list);
4088}
4089
4090static void __exit patch_via_exit(void)
4091{
4092 snd_hda_delete_codec_preset(&via_list);
4093}
4094
4095module_init(patch_via_init)
4096module_exit(patch_via_exit)