1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49#include <linux/init.h>
50#include <linux/delay.h>
51#include <linux/slab.h>
52#include <sound/core.h>
53#include <sound/asoundef.h>
54#include "hda_codec.h"
55#include "hda_local.h"
56
57#define NID_MAPPING (-1)
58
59
60#define AMP_VAL_IDX_SHIFT 19
61#define AMP_VAL_IDX_MASK (0x0f<<19)
62
63
64#define VT1708_HP_NID 0x13
65#define VT1708_DIGOUT_NID 0x14
66#define VT1708_DIGIN_NID 0x16
67#define VT1708_DIGIN_PIN 0x26
68#define VT1708_HP_PIN_NID 0x20
69#define VT1708_CD_PIN_NID 0x24
70
71#define VT1709_HP_DAC_NID 0x28
72#define VT1709_DIGOUT_NID 0x13
73#define VT1709_DIGIN_NID 0x17
74#define VT1709_DIGIN_PIN 0x25
75
76#define VT1708B_HP_NID 0x25
77#define VT1708B_DIGOUT_NID 0x12
78#define VT1708B_DIGIN_NID 0x15
79#define VT1708B_DIGIN_PIN 0x21
80
81#define VT1708S_HP_NID 0x25
82#define VT1708S_DIGOUT_NID 0x12
83
84#define VT1702_HP_NID 0x17
85#define VT1702_DIGOUT_NID 0x11
86
87enum VIA_HDA_CODEC {
88 UNKNOWN = -1,
89 VT1708,
90 VT1709_10CH,
91 VT1709_6CH,
92 VT1708B_8CH,
93 VT1708B_4CH,
94 VT1708S,
95 VT1708BCE,
96 VT1702,
97 VT1718S,
98 VT1716S,
99 VT2002P,
100 VT1812,
101 CODEC_TYPES,
102};
103
104struct via_spec {
105
106 struct snd_kcontrol_new *mixers[6];
107 unsigned int num_mixers;
108
109 struct hda_verb *init_verbs[5];
110 unsigned int num_iverbs;
111
112 char *stream_name_analog;
113 struct hda_pcm_stream *stream_analog_playback;
114 struct hda_pcm_stream *stream_analog_capture;
115
116 char *stream_name_digital;
117 struct hda_pcm_stream *stream_digital_playback;
118 struct hda_pcm_stream *stream_digital_capture;
119
120
121 struct hda_multi_out multiout;
122 hda_nid_t slave_dig_outs[2];
123
124
125 unsigned int num_adc_nids;
126 hda_nid_t *adc_nids;
127 hda_nid_t mux_nids[3];
128 hda_nid_t dig_in_nid;
129 hda_nid_t dig_in_pin;
130
131
132 const struct hda_input_mux *input_mux;
133 unsigned int cur_mux[3];
134
135
136 struct hda_pcm pcm_rec[3];
137
138
139 struct auto_pin_cfg autocfg;
140 struct snd_array kctls;
141 struct hda_input_mux private_imux[2];
142 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
143
144
145 const struct hda_input_mux *hp_mux;
146 unsigned int hp_independent_mode;
147 unsigned int hp_independent_mode_index;
148 unsigned int smart51_enabled;
149 unsigned int dmic_enabled;
150 enum VIA_HDA_CODEC codec_type;
151
152
153 struct hda_codec *codec;
154 struct delayed_work vt1708_hp_work;
155 int vt1708_jack_detectect;
156 int vt1708_hp_present;
157#ifdef CONFIG_SND_HDA_POWER_SAVE
158 struct hda_loopback_check loopback;
159#endif
160};
161
162static struct via_spec * via_new_spec(struct hda_codec *codec)
163{
164 struct via_spec *spec;
165
166 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
167 if (spec == NULL)
168 return NULL;
169
170 codec->spec = spec;
171 spec->codec = codec;
172 return spec;
173}
174
175static enum VIA_HDA_CODEC get_codec_type(struct hda_codec *codec)
176{
177 u32 vendor_id = codec->vendor_id;
178 u16 ven_id = vendor_id >> 16;
179 u16 dev_id = vendor_id & 0xffff;
180 enum VIA_HDA_CODEC codec_type;
181
182
183 if (ven_id != 0x1106)
184 codec_type = UNKNOWN;
185 else if (dev_id >= 0x1708 && dev_id <= 0x170b)
186 codec_type = VT1708;
187 else if (dev_id >= 0xe710 && dev_id <= 0xe713)
188 codec_type = VT1709_10CH;
189 else if (dev_id >= 0xe714 && dev_id <= 0xe717)
190 codec_type = VT1709_6CH;
191 else if (dev_id >= 0xe720 && dev_id <= 0xe723) {
192 codec_type = VT1708B_8CH;
193 if (snd_hda_param_read(codec, 0x16, AC_PAR_CONNLIST_LEN) == 0x7)
194 codec_type = VT1708BCE;
195 } else if (dev_id >= 0xe724 && dev_id <= 0xe727)
196 codec_type = VT1708B_4CH;
197 else if ((dev_id & 0xfff) == 0x397
198 && (dev_id >> 12) < 8)
199 codec_type = VT1708S;
200 else if ((dev_id & 0xfff) == 0x398
201 && (dev_id >> 12) < 8)
202 codec_type = VT1702;
203 else if ((dev_id & 0xfff) == 0x428
204 && (dev_id >> 12) < 8)
205 codec_type = VT1718S;
206 else if (dev_id == 0x0433 || dev_id == 0xa721)
207 codec_type = VT1716S;
208 else if (dev_id == 0x0441 || dev_id == 0x4441)
209 codec_type = VT1718S;
210 else if (dev_id == 0x0438 || dev_id == 0x4438)
211 codec_type = VT2002P;
212 else if (dev_id == 0x0448)
213 codec_type = VT1812;
214 else if (dev_id == 0x0440)
215 codec_type = VT1708S;
216 else
217 codec_type = UNKNOWN;
218 return codec_type;
219};
220
221#define VIA_HP_EVENT 0x01
222#define VIA_GPIO_EVENT 0x02
223#define VIA_JACK_EVENT 0x04
224#define VIA_MONO_EVENT 0x08
225#define VIA_SPEAKER_EVENT 0x10
226#define VIA_BIND_HP_EVENT 0x20
227
228enum {
229 VIA_CTL_WIDGET_VOL,
230 VIA_CTL_WIDGET_MUTE,
231 VIA_CTL_WIDGET_ANALOG_MUTE,
232 VIA_CTL_WIDGET_BIND_PIN_MUTE,
233};
234
235enum {
236 AUTO_SEQ_FRONT = 0,
237 AUTO_SEQ_SURROUND,
238 AUTO_SEQ_CENLFE,
239 AUTO_SEQ_SIDE
240};
241
242static void analog_low_current_mode(struct hda_codec *codec, int stream_idle);
243static void set_jack_power_state(struct hda_codec *codec);
244static int is_aa_path_mute(struct hda_codec *codec);
245
246static void vt1708_start_hp_work(struct via_spec *spec)
247{
248 if (spec->codec_type != VT1708 || spec->autocfg.hp_pins[0] == 0)
249 return;
250 snd_hda_codec_write(spec->codec, 0x1, 0, 0xf81,
251 !spec->vt1708_jack_detectect);
252 if (!delayed_work_pending(&spec->vt1708_hp_work))
253 schedule_delayed_work(&spec->vt1708_hp_work,
254 msecs_to_jiffies(100));
255}
256
257static void vt1708_stop_hp_work(struct via_spec *spec)
258{
259 if (spec->codec_type != VT1708 || spec->autocfg.hp_pins[0] == 0)
260 return;
261 if (snd_hda_get_bool_hint(spec->codec, "analog_loopback_hp_detect") == 1
262 && !is_aa_path_mute(spec->codec))
263 return;
264 snd_hda_codec_write(spec->codec, 0x1, 0, 0xf81,
265 !spec->vt1708_jack_detectect);
266 cancel_delayed_work(&spec->vt1708_hp_work);
267 flush_scheduled_work();
268}
269
270
271static int analog_input_switch_put(struct snd_kcontrol *kcontrol,
272 struct snd_ctl_elem_value *ucontrol)
273{
274 int change = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
275 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
276
277 set_jack_power_state(codec);
278 analog_low_current_mode(snd_kcontrol_chip(kcontrol), -1);
279 if (snd_hda_get_bool_hint(codec, "analog_loopback_hp_detect") == 1) {
280 if (is_aa_path_mute(codec))
281 vt1708_start_hp_work(codec->spec);
282 else
283 vt1708_stop_hp_work(codec->spec);
284 }
285 return change;
286}
287
288
289#define ANALOG_INPUT_MUTE \
290 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
291 .name = NULL, \
292 .index = 0, \
293 .info = snd_hda_mixer_amp_switch_info, \
294 .get = snd_hda_mixer_amp_switch_get, \
295 .put = analog_input_switch_put, \
296 .private_value = HDA_COMPOSE_AMP_VAL(0, 3, 0, 0) }
297
298static void via_hp_bind_automute(struct hda_codec *codec);
299
300static int bind_pin_switch_put(struct snd_kcontrol *kcontrol,
301 struct snd_ctl_elem_value *ucontrol)
302{
303 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
304 struct via_spec *spec = codec->spec;
305 int i;
306 int change = 0;
307
308 long *valp = ucontrol->value.integer.value;
309 int lmute, rmute;
310 if (strstr(kcontrol->id.name, "Switch") == NULL) {
311 snd_printd("Invalid control!\n");
312 return change;
313 }
314 change = snd_hda_mixer_amp_switch_put(kcontrol,
315 ucontrol);
316
317 lmute = *valp ? 0 : HDA_AMP_MUTE;
318 valp++;
319 rmute = *valp ? 0 : HDA_AMP_MUTE;
320
321
322 if (!spec->hp_independent_mode) {
323 for (i = 0; i < spec->autocfg.hp_outs; i++) {
324 snd_hda_codec_amp_update(
325 codec, spec->autocfg.hp_pins[i],
326 0, HDA_OUTPUT, 0, HDA_AMP_MUTE,
327 lmute);
328 snd_hda_codec_amp_update(
329 codec, spec->autocfg.hp_pins[i],
330 1, HDA_OUTPUT, 0, HDA_AMP_MUTE,
331 rmute);
332 }
333 }
334
335 if (!lmute && !rmute) {
336
337 for (i = 0; i < spec->autocfg.line_outs; i++)
338 snd_hda_codec_amp_stereo(
339 codec, spec->autocfg.line_out_pins[i],
340 HDA_OUTPUT, 0, HDA_AMP_MUTE, 0);
341
342 for (i = 0; i < spec->autocfg.speaker_outs; i++)
343 snd_hda_codec_amp_stereo(
344 codec, spec->autocfg.speaker_pins[i],
345 HDA_OUTPUT, 0, HDA_AMP_MUTE, 0);
346
347 via_hp_bind_automute(codec);
348
349 } else {
350 if (lmute) {
351
352 for (i = 1; i < spec->autocfg.line_outs; i++)
353 snd_hda_codec_amp_update(
354 codec,
355 spec->autocfg.line_out_pins[i],
356 0, HDA_OUTPUT, 0, HDA_AMP_MUTE,
357 lmute);
358 for (i = 0; i < spec->autocfg.speaker_outs; i++)
359 snd_hda_codec_amp_update(
360 codec,
361 spec->autocfg.speaker_pins[i],
362 0, HDA_OUTPUT, 0, HDA_AMP_MUTE,
363 lmute);
364 }
365 if (rmute) {
366
367 for (i = 1; i < spec->autocfg.line_outs; i++)
368 snd_hda_codec_amp_update(
369 codec,
370 spec->autocfg.line_out_pins[i],
371 1, HDA_OUTPUT, 0, HDA_AMP_MUTE,
372 rmute);
373 for (i = 0; i < spec->autocfg.speaker_outs; i++)
374 snd_hda_codec_amp_update(
375 codec,
376 spec->autocfg.speaker_pins[i],
377 1, HDA_OUTPUT, 0, HDA_AMP_MUTE,
378 rmute);
379 }
380 }
381 return change;
382}
383
384#define BIND_PIN_MUTE \
385 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
386 .name = NULL, \
387 .index = 0, \
388 .info = snd_hda_mixer_amp_switch_info, \
389 .get = snd_hda_mixer_amp_switch_get, \
390 .put = bind_pin_switch_put, \
391 .private_value = HDA_COMPOSE_AMP_VAL(0, 3, 0, 0) }
392
393static struct snd_kcontrol_new via_control_templates[] = {
394 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
395 HDA_CODEC_MUTE(NULL, 0, 0, 0),
396 ANALOG_INPUT_MUTE,
397 BIND_PIN_MUTE,
398};
399
400static hda_nid_t vt1708_adc_nids[2] = {
401
402 0x15, 0x27
403};
404
405static hda_nid_t vt1709_adc_nids[3] = {
406
407 0x14, 0x15, 0x16
408};
409
410static hda_nid_t vt1708B_adc_nids[2] = {
411
412 0x13, 0x14
413};
414
415static hda_nid_t vt1708S_adc_nids[2] = {
416
417 0x13, 0x14
418};
419
420static hda_nid_t vt1702_adc_nids[3] = {
421
422 0x12, 0x20, 0x1F
423};
424
425static hda_nid_t vt1718S_adc_nids[2] = {
426
427 0x10, 0x11
428};
429
430static hda_nid_t vt1716S_adc_nids[2] = {
431
432 0x13, 0x14
433};
434
435static hda_nid_t vt2002P_adc_nids[2] = {
436
437 0x10, 0x11
438};
439
440static hda_nid_t vt1812_adc_nids[2] = {
441
442 0x10, 0x11
443};
444
445
446
447static int __via_add_control(struct via_spec *spec, int type, const char *name,
448 int idx, unsigned long val)
449{
450 struct snd_kcontrol_new *knew;
451
452 snd_array_init(&spec->kctls, sizeof(*knew), 32);
453 knew = snd_array_new(&spec->kctls);
454 if (!knew)
455 return -ENOMEM;
456 *knew = via_control_templates[type];
457 knew->name = kstrdup(name, GFP_KERNEL);
458 if (!knew->name)
459 return -ENOMEM;
460 if (get_amp_nid_(val))
461 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
462 knew->private_value = val;
463 return 0;
464}
465
466#define via_add_control(spec, type, name, val) \
467 __via_add_control(spec, type, name, 0, val)
468
469static struct snd_kcontrol_new *via_clone_control(struct via_spec *spec,
470 struct snd_kcontrol_new *tmpl)
471{
472 struct snd_kcontrol_new *knew;
473
474 snd_array_init(&spec->kctls, sizeof(*knew), 32);
475 knew = snd_array_new(&spec->kctls);
476 if (!knew)
477 return NULL;
478 *knew = *tmpl;
479 knew->name = kstrdup(tmpl->name, GFP_KERNEL);
480 if (!knew->name)
481 return NULL;
482 return knew;
483}
484
485static void via_free_kctls(struct hda_codec *codec)
486{
487 struct via_spec *spec = codec->spec;
488
489 if (spec->kctls.list) {
490 struct snd_kcontrol_new *kctl = spec->kctls.list;
491 int i;
492 for (i = 0; i < spec->kctls.used; i++)
493 kfree(kctl[i].name);
494 }
495 snd_array_free(&spec->kctls);
496}
497
498
499static int via_new_analog_input(struct via_spec *spec, const char *ctlname,
500 int type_idx, int idx, int mix_nid)
501{
502 char name[32];
503 int err;
504
505 sprintf(name, "%s Playback Volume", ctlname);
506 err = __via_add_control(spec, VIA_CTL_WIDGET_VOL, name, type_idx,
507 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
508 if (err < 0)
509 return err;
510 sprintf(name, "%s Playback Switch", ctlname);
511 err = __via_add_control(spec, VIA_CTL_WIDGET_ANALOG_MUTE, name, type_idx,
512 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
513 if (err < 0)
514 return err;
515 return 0;
516}
517
518static void via_auto_set_output_and_unmute(struct hda_codec *codec,
519 hda_nid_t nid, int pin_type,
520 int dac_idx)
521{
522
523 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
524 pin_type);
525 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
526 AMP_OUT_UNMUTE);
527 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
528 snd_hda_codec_write(codec, nid, 0,
529 AC_VERB_SET_EAPD_BTLENABLE, 0x02);
530}
531
532
533static void via_auto_init_multi_out(struct hda_codec *codec)
534{
535 struct via_spec *spec = codec->spec;
536 int i;
537
538 for (i = 0; i <= AUTO_SEQ_SIDE; i++) {
539 hda_nid_t nid = spec->autocfg.line_out_pins[i];
540 if (nid)
541 via_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
542 }
543}
544
545static void via_auto_init_hp_out(struct hda_codec *codec)
546{
547 struct via_spec *spec = codec->spec;
548 hda_nid_t pin;
549 int i;
550
551 for (i = 0; i < spec->autocfg.hp_outs; i++) {
552 pin = spec->autocfg.hp_pins[i];
553 if (pin)
554 via_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
555 }
556}
557
558static int is_smart51_pins(struct via_spec *spec, hda_nid_t pin);
559
560static void via_auto_init_analog_input(struct hda_codec *codec)
561{
562 struct via_spec *spec = codec->spec;
563 const struct auto_pin_cfg *cfg = &spec->autocfg;
564 unsigned int ctl;
565 int i;
566
567 for (i = 0; i < cfg->num_inputs; i++) {
568 hda_nid_t nid = cfg->inputs[i].pin;
569 if (spec->smart51_enabled && is_smart51_pins(spec, nid))
570 ctl = PIN_OUT;
571 else if (i == AUTO_PIN_MIC)
572 ctl = PIN_VREF50;
573 else
574 ctl = PIN_IN;
575 snd_hda_codec_write(codec, nid, 0,
576 AC_VERB_SET_PIN_WIDGET_CONTROL, ctl);
577 }
578}
579
580static void set_pin_power_state(struct hda_codec *codec, hda_nid_t nid,
581 unsigned int *affected_parm)
582{
583 unsigned parm;
584 unsigned def_conf = snd_hda_codec_get_pincfg(codec, nid);
585 unsigned no_presence = (def_conf & AC_DEFCFG_MISC)
586 >> AC_DEFCFG_MISC_SHIFT
587 & AC_DEFCFG_MISC_NO_PRESENCE;
588 unsigned present = snd_hda_jack_detect(codec, nid);
589 struct via_spec *spec = codec->spec;
590 if ((spec->smart51_enabled && is_smart51_pins(spec, nid))
591 || ((no_presence || present)
592 && get_defcfg_connect(def_conf) != AC_JACK_PORT_NONE)) {
593 *affected_parm = AC_PWRST_D0;
594 parm = AC_PWRST_D0;
595 } else
596 parm = AC_PWRST_D3;
597
598 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE, parm);
599}
600
601static void set_jack_power_state(struct hda_codec *codec)
602{
603 struct via_spec *spec = codec->spec;
604 int imux_is_smixer;
605 unsigned int parm;
606
607 if (spec->codec_type == VT1702) {
608 imux_is_smixer = snd_hda_codec_read(
609 codec, 0x13, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 3;
610
611
612 parm = AC_PWRST_D3;
613 set_pin_power_state(codec, 0x14, &parm);
614 set_pin_power_state(codec, 0x15, &parm);
615 set_pin_power_state(codec, 0x18, &parm);
616 if (imux_is_smixer)
617 parm = AC_PWRST_D0;
618
619 snd_hda_codec_write(codec, 0x13, 0, AC_VERB_SET_POWER_STATE,
620 parm);
621 snd_hda_codec_write(codec, 0x12, 0, AC_VERB_SET_POWER_STATE,
622 parm);
623 snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_POWER_STATE,
624 parm);
625 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_POWER_STATE,
626 parm);
627
628
629
630 parm = AC_PWRST_D3;
631 set_pin_power_state(codec, 0x16, &parm);
632 set_pin_power_state(codec, 0x17, &parm);
633
634 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_POWER_STATE,
635 imux_is_smixer ? AC_PWRST_D0 : parm);
636 snd_hda_codec_write(codec, 0x10, 0, AC_VERB_SET_POWER_STATE,
637 parm);
638 snd_hda_codec_write(codec, 0x1d, 0, AC_VERB_SET_POWER_STATE,
639 parm);
640 } else if (spec->codec_type == VT1708B_8CH
641 || spec->codec_type == VT1708B_4CH
642 || spec->codec_type == VT1708S) {
643
644 int is_8ch = spec->codec_type != VT1708B_4CH;
645 imux_is_smixer = snd_hda_codec_read(
646 codec, 0x17, 0, AC_VERB_GET_CONNECT_SEL, 0x00)
647 == ((spec->codec_type == VT1708S) ? 5 : 0);
648
649
650 parm = AC_PWRST_D3;
651 set_pin_power_state(codec, 0x1a, &parm);
652 set_pin_power_state(codec, 0x1b, &parm);
653 set_pin_power_state(codec, 0x1e, &parm);
654 if (imux_is_smixer)
655 parm = AC_PWRST_D0;
656
657 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_POWER_STATE,
658 parm);
659 snd_hda_codec_write(codec, 0x13, 0, AC_VERB_SET_POWER_STATE,
660 parm);
661 snd_hda_codec_write(codec, 0x14, 0, AC_VERB_SET_POWER_STATE,
662 parm);
663
664
665
666 parm = AC_PWRST_D3;
667 set_pin_power_state(codec, 0x19, &parm);
668 if (spec->smart51_enabled)
669 parm = AC_PWRST_D0;
670 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_POWER_STATE,
671 parm);
672 snd_hda_codec_write(codec, 0x11, 0, AC_VERB_SET_POWER_STATE,
673 parm);
674
675
676 if (is_8ch) {
677 parm = AC_PWRST_D3;
678 set_pin_power_state(codec, 0x22, &parm);
679 if (spec->smart51_enabled)
680 parm = AC_PWRST_D0;
681 snd_hda_codec_write(codec, 0x26, 0,
682 AC_VERB_SET_POWER_STATE, parm);
683 snd_hda_codec_write(codec, 0x24, 0,
684 AC_VERB_SET_POWER_STATE, parm);
685 }
686
687
688 parm = AC_PWRST_D3;
689
690 set_pin_power_state(codec, 0x1c, &parm);
691 set_pin_power_state(codec, 0x1d, &parm);
692 if (is_8ch)
693 set_pin_power_state(codec, 0x23, &parm);
694
695 snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_POWER_STATE,
696 imux_is_smixer ? AC_PWRST_D0 : parm);
697 snd_hda_codec_write(codec, 0x10, 0, AC_VERB_SET_POWER_STATE,
698 parm);
699 if (is_8ch) {
700 snd_hda_codec_write(codec, 0x25, 0,
701 AC_VERB_SET_POWER_STATE, parm);
702 snd_hda_codec_write(codec, 0x27, 0,
703 AC_VERB_SET_POWER_STATE, parm);
704 }
705 } else if (spec->codec_type == VT1718S) {
706
707 imux_is_smixer = snd_hda_codec_read(
708 codec, 0x1e, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 5;
709
710
711 parm = AC_PWRST_D3;
712 set_pin_power_state(codec, 0x29, &parm);
713 set_pin_power_state(codec, 0x2a, &parm);
714 set_pin_power_state(codec, 0x2b, &parm);
715 if (imux_is_smixer)
716 parm = AC_PWRST_D0;
717
718 snd_hda_codec_write(codec, 0x1e, 0, AC_VERB_SET_POWER_STATE,
719 parm);
720 snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_POWER_STATE,
721 parm);
722 snd_hda_codec_write(codec, 0x10, 0, AC_VERB_SET_POWER_STATE,
723 parm);
724 snd_hda_codec_write(codec, 0x11, 0, AC_VERB_SET_POWER_STATE,
725 parm);
726
727
728
729 parm = AC_PWRST_D3;
730 set_pin_power_state(codec, 0x27, &parm);
731 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_POWER_STATE,
732 parm);
733 snd_hda_codec_write(codec, 0xb, 0, AC_VERB_SET_POWER_STATE,
734 parm);
735
736
737 parm = AC_PWRST_D3;
738 set_pin_power_state(codec, 0x26, &parm);
739 snd_hda_codec_write(codec, 0xa, 0, AC_VERB_SET_POWER_STATE,
740 parm);
741
742
743 parm = AC_PWRST_D3;
744 set_pin_power_state(codec, 0x24, &parm);
745 set_pin_power_state(codec, 0x25, &parm);
746 if (!spec->hp_independent_mode)
747 set_pin_power_state(codec, 0x28, &parm);
748 snd_hda_codec_write(codec, 0x8, 0, AC_VERB_SET_POWER_STATE,
749 parm);
750 snd_hda_codec_write(codec, 0x9, 0, AC_VERB_SET_POWER_STATE,
751 parm);
752
753 snd_hda_codec_write(codec, 0x21, 0, AC_VERB_SET_POWER_STATE,
754 imux_is_smixer ? AC_PWRST_D0 : parm);
755 if (spec->hp_independent_mode) {
756
757 parm = AC_PWRST_D3;
758 set_pin_power_state(codec, 0x28, &parm);
759 snd_hda_codec_write(codec, 0x1b, 0,
760 AC_VERB_SET_POWER_STATE, parm);
761 snd_hda_codec_write(codec, 0x34, 0,
762 AC_VERB_SET_POWER_STATE, parm);
763 snd_hda_codec_write(codec, 0xc, 0,
764 AC_VERB_SET_POWER_STATE, parm);
765 }
766 } else if (spec->codec_type == VT1716S) {
767 unsigned int mono_out, present;
768
769 imux_is_smixer = snd_hda_codec_read(
770 codec, 0x17, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 5;
771
772
773 parm = AC_PWRST_D3;
774 set_pin_power_state(codec, 0x1a, &parm);
775 set_pin_power_state(codec, 0x1b, &parm);
776 set_pin_power_state(codec, 0x1e, &parm);
777 if (imux_is_smixer)
778 parm = AC_PWRST_D0;
779
780 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_POWER_STATE,
781 parm);
782 snd_hda_codec_write(codec, 0x13, 0, AC_VERB_SET_POWER_STATE,
783 parm);
784
785 parm = AC_PWRST_D3;
786 set_pin_power_state(codec, 0x1e, &parm);
787
788 if (spec->dmic_enabled)
789 set_pin_power_state(codec, 0x22, &parm);
790 else
791 snd_hda_codec_write(
792 codec, 0x22, 0,
793 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
794
795
796 snd_hda_codec_write(codec, 0x26, 0, AC_VERB_SET_POWER_STATE,
797 parm);
798 snd_hda_codec_write(codec, 0x14, 0, AC_VERB_SET_POWER_STATE,
799 parm);
800
801
802
803 parm = AC_PWRST_D3;
804 set_pin_power_state(codec, 0x19, &parm);
805
806 if (spec->smart51_enabled)
807 set_pin_power_state(codec, 0x1b, &parm);
808 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_POWER_STATE,
809 parm);
810 snd_hda_codec_write(codec, 0x11, 0, AC_VERB_SET_POWER_STATE,
811 parm);
812
813
814 parm = AC_PWRST_D3;
815 set_pin_power_state(codec, 0x23, &parm);
816
817 if (spec->smart51_enabled)
818 set_pin_power_state(codec, 0x1a, &parm);
819 snd_hda_codec_write(codec, 0x27, 0, AC_VERB_SET_POWER_STATE,
820 parm);
821
822
823 if (spec->smart51_enabled)
824 set_pin_power_state(codec, 0x1e, &parm);
825 snd_hda_codec_write(codec, 0x25, 0, AC_VERB_SET_POWER_STATE,
826 parm);
827
828
829
830 present = snd_hda_jack_detect(codec, 0x1c);
831 if (present)
832 mono_out = 0;
833 else {
834 present = snd_hda_jack_detect(codec, 0x1d);
835 if (!spec->hp_independent_mode && present)
836 mono_out = 0;
837 else
838 mono_out = 1;
839 }
840 parm = mono_out ? AC_PWRST_D0 : AC_PWRST_D3;
841 snd_hda_codec_write(codec, 0x28, 0, AC_VERB_SET_POWER_STATE,
842 parm);
843 snd_hda_codec_write(codec, 0x29, 0, AC_VERB_SET_POWER_STATE,
844 parm);
845 snd_hda_codec_write(codec, 0x2a, 0, AC_VERB_SET_POWER_STATE,
846 parm);
847
848
849 parm = AC_PWRST_D3;
850 set_pin_power_state(codec, 0x1c, &parm);
851 set_pin_power_state(codec, 0x1d, &parm);
852
853 if (spec->hp_independent_mode)
854 snd_hda_codec_write(codec, 0x25, 0,
855 AC_VERB_SET_POWER_STATE, parm);
856
857
858
859 snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_POWER_STATE,
860 imux_is_smixer ? AC_PWRST_D0 : parm);
861 snd_hda_codec_write(codec, 0x10, 0, AC_VERB_SET_POWER_STATE,
862 mono_out ? AC_PWRST_D0 : parm);
863 } else if (spec->codec_type == VT2002P) {
864 unsigned int present;
865
866 imux_is_smixer = snd_hda_codec_read(
867 codec, 0x1e, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 3;
868
869
870 parm = AC_PWRST_D3;
871 set_pin_power_state(codec, 0x29, &parm);
872 set_pin_power_state(codec, 0x2a, &parm);
873 set_pin_power_state(codec, 0x2b, &parm);
874 if (imux_is_smixer)
875 parm = AC_PWRST_D0;
876
877 snd_hda_codec_write(codec, 0x1e, 0,
878 AC_VERB_SET_POWER_STATE, parm);
879 snd_hda_codec_write(codec, 0x1f, 0,
880 AC_VERB_SET_POWER_STATE, parm);
881 snd_hda_codec_write(codec, 0x10, 0,
882 AC_VERB_SET_POWER_STATE, parm);
883 snd_hda_codec_write(codec, 0x11, 0,
884 AC_VERB_SET_POWER_STATE, parm);
885
886
887
888 snd_hda_codec_write(codec, 0x8, 0,
889 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
890
891
892 parm = AC_PWRST_D3;
893 set_pin_power_state(codec, 0x26, &parm);
894 snd_hda_codec_write(codec, 0x1c, 0,
895 AC_VERB_SET_POWER_STATE, parm);
896 snd_hda_codec_write(codec, 0x37,
897 0, AC_VERB_SET_POWER_STATE, parm);
898
899
900 parm = AC_PWRST_D3;
901 set_pin_power_state(codec, 0x25, &parm);
902 snd_hda_codec_write(codec, 0x19, 0,
903 AC_VERB_SET_POWER_STATE, parm);
904 snd_hda_codec_write(codec, 0x35, 0,
905 AC_VERB_SET_POWER_STATE, parm);
906 if (spec->hp_independent_mode) {
907 snd_hda_codec_write(codec, 0x9, 0,
908 AC_VERB_SET_POWER_STATE, parm);
909 }
910
911
912
913 present = snd_hda_jack_detect(codec, 0x25);
914 parm = AC_PWRST_D3;
915 set_pin_power_state(codec, 0x24, &parm);
916 if (present) {
917 snd_hda_codec_write(
918 codec, 0x18, 0,
919 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
920 snd_hda_codec_write(
921 codec, 0x34, 0,
922 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
923 } else {
924 snd_hda_codec_write(
925 codec, 0x18, 0,
926 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
927 snd_hda_codec_write(
928 codec, 0x34, 0,
929 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
930 }
931
932
933
934 present = snd_hda_jack_detect(codec, 0x26);
935 parm = AC_PWRST_D3;
936 set_pin_power_state(codec, 0x31, &parm);
937 if (present) {
938 snd_hda_codec_write(
939 codec, 0x17, 0,
940 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
941 snd_hda_codec_write(
942 codec, 0x3b, 0,
943 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
944 } else {
945 snd_hda_codec_write(
946 codec, 0x17, 0,
947 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
948 snd_hda_codec_write(
949 codec, 0x3b, 0,
950 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
951 }
952
953
954 if (imux_is_smixer || !is_aa_path_mute(codec))
955 snd_hda_codec_write(
956 codec, 0x21, 0,
957 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
958 else
959 snd_hda_codec_write(
960 codec, 0x21, 0,
961 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
962 } else if (spec->codec_type == VT1812) {
963 unsigned int present;
964
965 imux_is_smixer = snd_hda_codec_read(
966 codec, 0x1e, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 5;
967
968
969 parm = AC_PWRST_D3;
970 set_pin_power_state(codec, 0x29, &parm);
971 set_pin_power_state(codec, 0x2a, &parm);
972 set_pin_power_state(codec, 0x2b, &parm);
973 if (imux_is_smixer)
974 parm = AC_PWRST_D0;
975
976 snd_hda_codec_write(codec, 0x1e, 0,
977 AC_VERB_SET_POWER_STATE, parm);
978 snd_hda_codec_write(codec, 0x1f, 0,
979 AC_VERB_SET_POWER_STATE, parm);
980 snd_hda_codec_write(codec, 0x10, 0,
981 AC_VERB_SET_POWER_STATE, parm);
982 snd_hda_codec_write(codec, 0x11, 0,
983 AC_VERB_SET_POWER_STATE, parm);
984
985
986
987 snd_hda_codec_write(codec, 0x8, 0,
988 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
989
990
991 parm = AC_PWRST_D3;
992 set_pin_power_state(codec, 0x28, &parm);
993 snd_hda_codec_write(codec, 0x18, 0,
994 AC_VERB_SET_POWER_STATE, parm);
995 snd_hda_codec_write(codec, 0x38, 0,
996 AC_VERB_SET_POWER_STATE, parm);
997
998
999 parm = AC_PWRST_D3;
1000 set_pin_power_state(codec, 0x25, &parm);
1001 snd_hda_codec_write(codec, 0x15, 0,
1002 AC_VERB_SET_POWER_STATE, parm);
1003 snd_hda_codec_write(codec, 0x35, 0,
1004 AC_VERB_SET_POWER_STATE, parm);
1005 if (spec->hp_independent_mode) {
1006 snd_hda_codec_write(codec, 0x9, 0,
1007 AC_VERB_SET_POWER_STATE, parm);
1008 }
1009
1010
1011
1012 present = snd_hda_jack_detect(codec, 0x25);
1013 parm = AC_PWRST_D3;
1014 set_pin_power_state(codec, 0x24, &parm);
1015 if (present) {
1016 snd_hda_codec_write(codec, 0x14, 0,
1017 AC_VERB_SET_POWER_STATE,
1018 AC_PWRST_D3);
1019 snd_hda_codec_write(codec, 0x34, 0,
1020 AC_VERB_SET_POWER_STATE,
1021 AC_PWRST_D3);
1022 } else {
1023 snd_hda_codec_write(codec, 0x14, 0,
1024 AC_VERB_SET_POWER_STATE,
1025 AC_PWRST_D0);
1026 snd_hda_codec_write(codec, 0x34, 0,
1027 AC_VERB_SET_POWER_STATE,
1028 AC_PWRST_D0);
1029 }
1030
1031
1032 present = snd_hda_jack_detect(codec, 0x28);
1033 parm = AC_PWRST_D3;
1034 set_pin_power_state(codec, 0x31, &parm);
1035 if (present) {
1036 snd_hda_codec_write(codec, 0x1c, 0,
1037 AC_VERB_SET_POWER_STATE,
1038 AC_PWRST_D3);
1039 snd_hda_codec_write(codec, 0x3c, 0,
1040 AC_VERB_SET_POWER_STATE,
1041 AC_PWRST_D3);
1042 snd_hda_codec_write(codec, 0x3e, 0,
1043 AC_VERB_SET_POWER_STATE,
1044 AC_PWRST_D3);
1045 } else {
1046 snd_hda_codec_write(codec, 0x1c, 0,
1047 AC_VERB_SET_POWER_STATE,
1048 AC_PWRST_D0);
1049 snd_hda_codec_write(codec, 0x3c, 0,
1050 AC_VERB_SET_POWER_STATE,
1051 AC_PWRST_D0);
1052 snd_hda_codec_write(codec, 0x3e, 0,
1053 AC_VERB_SET_POWER_STATE,
1054 AC_PWRST_D0);
1055 }
1056
1057
1058 parm = AC_PWRST_D3;
1059 set_pin_power_state(codec, 0x33, &parm);
1060 snd_hda_codec_write(codec, 0x1d, 0,
1061 AC_VERB_SET_POWER_STATE, parm);
1062 snd_hda_codec_write(codec, 0x3d, 0,
1063 AC_VERB_SET_POWER_STATE, parm);
1064
1065
1066 if (imux_is_smixer || !is_aa_path_mute(codec))
1067 snd_hda_codec_write(
1068 codec, 0x21, 0,
1069 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
1070 else
1071 snd_hda_codec_write(
1072 codec, 0x21, 0,
1073 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
1074 }
1075}
1076
1077
1078
1079
1080static int via_mux_enum_info(struct snd_kcontrol *kcontrol,
1081 struct snd_ctl_elem_info *uinfo)
1082{
1083 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1084 struct via_spec *spec = codec->spec;
1085 return snd_hda_input_mux_info(spec->input_mux, uinfo);
1086}
1087
1088static int via_mux_enum_get(struct snd_kcontrol *kcontrol,
1089 struct snd_ctl_elem_value *ucontrol)
1090{
1091 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1092 struct via_spec *spec = codec->spec;
1093 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
1094
1095 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
1096 return 0;
1097}
1098
1099static int via_mux_enum_put(struct snd_kcontrol *kcontrol,
1100 struct snd_ctl_elem_value *ucontrol)
1101{
1102 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1103 struct via_spec *spec = codec->spec;
1104 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
1105
1106 if (!spec->mux_nids[adc_idx])
1107 return -EINVAL;
1108
1109 if (snd_hda_codec_read(codec, spec->mux_nids[adc_idx], 0,
1110 AC_VERB_GET_POWER_STATE, 0x00) != AC_PWRST_D0)
1111 snd_hda_codec_write(codec, spec->mux_nids[adc_idx], 0,
1112 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
1113
1114 set_jack_power_state(codec);
1115
1116 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
1117 spec->mux_nids[adc_idx],
1118 &spec->cur_mux[adc_idx]);
1119}
1120
1121static int via_independent_hp_info(struct snd_kcontrol *kcontrol,
1122 struct snd_ctl_elem_info *uinfo)
1123{
1124 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1125 struct via_spec *spec = codec->spec;
1126 return snd_hda_input_mux_info(spec->hp_mux, uinfo);
1127}
1128
1129static int via_independent_hp_get(struct snd_kcontrol *kcontrol,
1130 struct snd_ctl_elem_value *ucontrol)
1131{
1132 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1133 hda_nid_t nid = kcontrol->private_value;
1134 unsigned int pinsel;
1135
1136
1137 pinsel = !!snd_hda_codec_read(codec, nid, 0,
1138 AC_VERB_GET_CONNECT_SEL,
1139 0x00);
1140 ucontrol->value.enumerated.item[0] = pinsel;
1141
1142 return 0;
1143}
1144
1145static void activate_ctl(struct hda_codec *codec, const char *name, int active)
1146{
1147 struct snd_kcontrol *ctl = snd_hda_find_mixer_ctl(codec, name);
1148 if (ctl) {
1149 ctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
1150 ctl->vd[0].access |= active
1151 ? 0 : SNDRV_CTL_ELEM_ACCESS_INACTIVE;
1152 snd_ctl_notify(codec->bus->card,
1153 SNDRV_CTL_EVENT_MASK_VALUE, &ctl->id);
1154 }
1155}
1156
1157static hda_nid_t side_mute_channel(struct via_spec *spec)
1158{
1159 switch (spec->codec_type) {
1160 case VT1708: return 0x1b;
1161 case VT1709_10CH: return 0x29;
1162 case VT1708B_8CH:
1163 case VT1708S: return 0x27;
1164 default: return 0;
1165 }
1166}
1167
1168static int update_side_mute_status(struct hda_codec *codec)
1169{
1170
1171 struct via_spec *spec = codec->spec;
1172 unsigned int parm = spec->hp_independent_mode
1173 ? AMP_OUT_MUTE : AMP_OUT_UNMUTE;
1174 hda_nid_t sw3 = side_mute_channel(spec);
1175
1176 if (sw3)
1177 snd_hda_codec_write(codec, sw3, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1178 parm);
1179 return 0;
1180}
1181
1182static int via_independent_hp_put(struct snd_kcontrol *kcontrol,
1183 struct snd_ctl_elem_value *ucontrol)
1184{
1185 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1186 struct via_spec *spec = codec->spec;
1187 hda_nid_t nid = kcontrol->private_value;
1188 unsigned int pinsel = ucontrol->value.enumerated.item[0];
1189
1190 spec->hp_independent_mode = spec->hp_independent_mode_index == pinsel
1191 ? 1 : 0;
1192 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, pinsel);
1193
1194 if (spec->multiout.hp_nid && spec->multiout.hp_nid
1195 != spec->multiout.dac_nids[HDA_FRONT])
1196 snd_hda_codec_setup_stream(codec, spec->multiout.hp_nid,
1197 0, 0, 0);
1198
1199 update_side_mute_status(codec);
1200
1201 if (spec->codec_type == VT1708S
1202 || spec->codec_type == VT1702
1203 || spec->codec_type == VT1718S
1204 || spec->codec_type == VT1716S
1205 || spec->codec_type == VT2002P
1206 || spec->codec_type == VT1812) {
1207 activate_ctl(codec, "Headphone Playback Volume",
1208 spec->hp_independent_mode);
1209 activate_ctl(codec, "Headphone Playback Switch",
1210 spec->hp_independent_mode);
1211 }
1212 return 0;
1213}
1214
1215static struct snd_kcontrol_new via_hp_mixer[2] = {
1216 {
1217 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1218 .name = "Independent HP",
1219 .info = via_independent_hp_info,
1220 .get = via_independent_hp_get,
1221 .put = via_independent_hp_put,
1222 },
1223 {
1224 .iface = NID_MAPPING,
1225 .name = "Independent HP",
1226 },
1227};
1228
1229static int via_hp_build(struct hda_codec *codec)
1230{
1231 struct via_spec *spec = codec->spec;
1232 struct snd_kcontrol_new *knew;
1233 hda_nid_t nid;
1234 int nums;
1235 hda_nid_t conn[HDA_MAX_CONNECTIONS];
1236
1237 switch (spec->codec_type) {
1238 case VT1718S:
1239 nid = 0x34;
1240 break;
1241 case VT2002P:
1242 nid = 0x35;
1243 break;
1244 case VT1812:
1245 nid = 0x3d;
1246 break;
1247 default:
1248 nid = spec->autocfg.hp_pins[0];
1249 break;
1250 }
1251
1252 nums = snd_hda_get_connections(codec, nid, conn, HDA_MAX_CONNECTIONS);
1253 if (nums <= 1)
1254 return 0;
1255
1256 knew = via_clone_control(spec, &via_hp_mixer[0]);
1257 if (knew == NULL)
1258 return -ENOMEM;
1259
1260 knew->subdevice = HDA_SUBDEV_NID_FLAG | nid;
1261 knew->private_value = nid;
1262
1263 knew = via_clone_control(spec, &via_hp_mixer[1]);
1264 if (knew == NULL)
1265 return -ENOMEM;
1266 knew->subdevice = side_mute_channel(spec);
1267
1268 return 0;
1269}
1270
1271static void notify_aa_path_ctls(struct hda_codec *codec)
1272{
1273 int i;
1274 struct snd_ctl_elem_id id;
1275 const char *labels[] = {"Mic", "Front Mic", "Line"};
1276
1277 memset(&id, 0, sizeof(id));
1278 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1279 for (i = 0; i < ARRAY_SIZE(labels); i++) {
1280 sprintf(id.name, "%s Playback Volume", labels[i]);
1281 snd_ctl_notify(codec->bus->card, SNDRV_CTL_EVENT_MASK_VALUE,
1282 &id);
1283 }
1284}
1285
1286static void mute_aa_path(struct hda_codec *codec, int mute)
1287{
1288 struct via_spec *spec = codec->spec;
1289 hda_nid_t nid_mixer;
1290 int start_idx;
1291 int end_idx;
1292 int i;
1293
1294 switch (spec->codec_type) {
1295 case VT1708:
1296 nid_mixer = 0x17;
1297 start_idx = 2;
1298 end_idx = 4;
1299 break;
1300 case VT1709_10CH:
1301 case VT1709_6CH:
1302 nid_mixer = 0x18;
1303 start_idx = 2;
1304 end_idx = 4;
1305 break;
1306 case VT1708B_8CH:
1307 case VT1708B_4CH:
1308 case VT1708S:
1309 case VT1716S:
1310 nid_mixer = 0x16;
1311 start_idx = 2;
1312 end_idx = 4;
1313 break;
1314 default:
1315 return;
1316 }
1317
1318 for (i = start_idx; i <= end_idx; i++) {
1319 int val = mute ? HDA_AMP_MUTE : HDA_AMP_UNMUTE;
1320 snd_hda_codec_amp_stereo(codec, nid_mixer, HDA_INPUT, i,
1321 HDA_AMP_MUTE, val);
1322 }
1323}
1324static int is_smart51_pins(struct via_spec *spec, hda_nid_t pin)
1325{
1326 const struct auto_pin_cfg *cfg = &spec->autocfg;
1327 int i;
1328
1329 for (i = 0; i < cfg->num_inputs; i++) {
1330 if (pin == cfg->inputs[i].pin)
1331 return cfg->inputs[i].type <= AUTO_PIN_LINE_IN;
1332 }
1333 return 0;
1334}
1335
1336static int via_smart51_info(struct snd_kcontrol *kcontrol,
1337 struct snd_ctl_elem_info *uinfo)
1338{
1339 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1340 uinfo->count = 1;
1341 uinfo->value.integer.min = 0;
1342 uinfo->value.integer.max = 1;
1343 return 0;
1344}
1345
1346static int via_smart51_get(struct snd_kcontrol *kcontrol,
1347 struct snd_ctl_elem_value *ucontrol)
1348{
1349 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1350 struct via_spec *spec = codec->spec;
1351 const struct auto_pin_cfg *cfg = &spec->autocfg;
1352 int on = 1;
1353 int i;
1354
1355 for (i = 0; i < cfg->num_inputs; i++) {
1356 hda_nid_t nid = cfg->inputs[i].pin;
1357 int ctl = snd_hda_codec_read(codec, nid, 0,
1358 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1359 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
1360 continue;
1361 if (cfg->inputs[i].type == AUTO_PIN_MIC &&
1362 spec->hp_independent_mode && spec->codec_type != VT1718S)
1363 continue;
1364 if ((ctl & AC_PINCTL_IN_EN) && !(ctl & AC_PINCTL_OUT_EN))
1365 on = 0;
1366 }
1367 *ucontrol->value.integer.value = on;
1368 return 0;
1369}
1370
1371static int via_smart51_put(struct snd_kcontrol *kcontrol,
1372 struct snd_ctl_elem_value *ucontrol)
1373{
1374 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1375 struct via_spec *spec = codec->spec;
1376 const struct auto_pin_cfg *cfg = &spec->autocfg;
1377 int out_in = *ucontrol->value.integer.value
1378 ? AC_PINCTL_OUT_EN : AC_PINCTL_IN_EN;
1379 int i;
1380
1381 for (i = 0; i < cfg->num_inputs; i++) {
1382 hda_nid_t nid = cfg->inputs[i].pin;
1383 unsigned int parm;
1384
1385 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
1386 continue;
1387 if (cfg->inputs[i].type == AUTO_PIN_MIC &&
1388 spec->hp_independent_mode && spec->codec_type != VT1718S)
1389 continue;
1390
1391 parm = snd_hda_codec_read(codec, nid, 0,
1392 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1393 parm &= ~(AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
1394 parm |= out_in;
1395 snd_hda_codec_write(codec, nid, 0,
1396 AC_VERB_SET_PIN_WIDGET_CONTROL,
1397 parm);
1398 if (out_in == AC_PINCTL_OUT_EN) {
1399 mute_aa_path(codec, 1);
1400 notify_aa_path_ctls(codec);
1401 }
1402 if (spec->codec_type == VT1718S) {
1403 snd_hda_codec_amp_stereo(
1404 codec, nid, HDA_OUTPUT, 0, HDA_AMP_MUTE,
1405 HDA_AMP_UNMUTE);
1406 }
1407 if (cfg->inputs[i].type == AUTO_PIN_MIC) {
1408 if (spec->codec_type == VT1708S
1409 || spec->codec_type == VT1716S) {
1410
1411 snd_hda_codec_write(
1412 codec, nid, 0,
1413 AC_VERB_SET_CONNECT_SEL, 1);
1414 snd_hda_codec_amp_stereo(
1415 codec, nid, HDA_OUTPUT,
1416 0, HDA_AMP_MUTE, HDA_AMP_UNMUTE);
1417 }
1418 }
1419 }
1420 spec->smart51_enabled = *ucontrol->value.integer.value;
1421 set_jack_power_state(codec);
1422 return 1;
1423}
1424
1425static struct snd_kcontrol_new via_smart51_mixer[2] = {
1426 {
1427 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1428 .name = "Smart 5.1",
1429 .count = 1,
1430 .info = via_smart51_info,
1431 .get = via_smart51_get,
1432 .put = via_smart51_put,
1433 },
1434 {
1435 .iface = NID_MAPPING,
1436 .name = "Smart 5.1",
1437 }
1438};
1439
1440static int via_smart51_build(struct via_spec *spec)
1441{
1442 struct snd_kcontrol_new *knew;
1443 const struct auto_pin_cfg *cfg = &spec->autocfg;
1444 hda_nid_t nid;
1445 int i;
1446
1447 knew = via_clone_control(spec, &via_smart51_mixer[0]);
1448 if (knew == NULL)
1449 return -ENOMEM;
1450
1451 for (i = 0; i < cfg->num_inputs; i++) {
1452 nid = cfg->inputs[i].pin;
1453 if (cfg->inputs[i].type <= AUTO_PIN_LINE_IN) {
1454 knew = via_clone_control(spec, &via_smart51_mixer[1]);
1455 if (knew == NULL)
1456 return -ENOMEM;
1457 knew->subdevice = nid;
1458 break;
1459 }
1460 }
1461
1462 return 0;
1463}
1464
1465
1466static struct snd_kcontrol_new vt1708_capture_mixer[] = {
1467 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_INPUT),
1468 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_INPUT),
1469 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x27, 0x0, HDA_INPUT),
1470 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x27, 0x0, HDA_INPUT),
1471 {
1472 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1473
1474
1475
1476
1477 .name = "Input Source",
1478 .count = 1,
1479 .info = via_mux_enum_info,
1480 .get = via_mux_enum_get,
1481 .put = via_mux_enum_put,
1482 },
1483 { }
1484};
1485
1486
1487static int is_aa_path_mute(struct hda_codec *codec)
1488{
1489 int mute = 1;
1490 hda_nid_t nid_mixer;
1491 int start_idx;
1492 int end_idx;
1493 int i;
1494 struct via_spec *spec = codec->spec;
1495
1496 switch (spec->codec_type) {
1497 case VT1708B_8CH:
1498 case VT1708B_4CH:
1499 case VT1708S:
1500 case VT1716S:
1501 nid_mixer = 0x16;
1502 start_idx = 2;
1503 end_idx = 4;
1504 break;
1505 case VT1702:
1506 nid_mixer = 0x1a;
1507 start_idx = 1;
1508 end_idx = 3;
1509 break;
1510 case VT1718S:
1511 nid_mixer = 0x21;
1512 start_idx = 1;
1513 end_idx = 3;
1514 break;
1515 case VT2002P:
1516 case VT1812:
1517 nid_mixer = 0x21;
1518 start_idx = 0;
1519 end_idx = 2;
1520 break;
1521 default:
1522 return 0;
1523 }
1524
1525 for (i = start_idx; i <= end_idx; i++) {
1526 unsigned int con_list = snd_hda_codec_read(
1527 codec, nid_mixer, 0, AC_VERB_GET_CONNECT_LIST, i/4*4);
1528 int shift = 8 * (i % 4);
1529 hda_nid_t nid_pin = (con_list & (0xff << shift)) >> shift;
1530 unsigned int defconf = snd_hda_codec_get_pincfg(codec, nid_pin);
1531 if (get_defcfg_connect(defconf) == AC_JACK_PORT_COMPLEX) {
1532
1533 int mute_l = snd_hda_codec_amp_read(codec, nid_mixer, 0,
1534 HDA_INPUT, i) >> 7;
1535 int mute_r = snd_hda_codec_amp_read(codec, nid_mixer, 1,
1536 HDA_INPUT, i) >> 7;
1537 if (!mute_l || !mute_r) {
1538 mute = 0;
1539 break;
1540 }
1541 }
1542 }
1543 return mute;
1544}
1545
1546
1547static void analog_low_current_mode(struct hda_codec *codec, int stream_idle)
1548{
1549 struct via_spec *spec = codec->spec;
1550 static int saved_stream_idle = 1;
1551 int enable = is_aa_path_mute(codec);
1552 unsigned int verb = 0;
1553 unsigned int parm = 0;
1554
1555 if (stream_idle == -1)
1556 enable = enable && saved_stream_idle;
1557 else {
1558 enable = enable && stream_idle;
1559 saved_stream_idle = stream_idle;
1560 }
1561
1562
1563 switch (spec->codec_type) {
1564 case VT1708B_8CH:
1565 case VT1708B_4CH:
1566 verb = 0xf70;
1567 parm = enable ? 0x02 : 0x00;
1568 break;
1569 case VT1708S:
1570 case VT1718S:
1571 case VT1716S:
1572 verb = 0xf73;
1573 parm = enable ? 0x51 : 0xe1;
1574 break;
1575 case VT1702:
1576 verb = 0xf73;
1577 parm = enable ? 0x01 : 0x1d;
1578 break;
1579 case VT2002P:
1580 case VT1812:
1581 verb = 0xf93;
1582 parm = enable ? 0x00 : 0xe0;
1583 break;
1584 default:
1585 return;
1586 }
1587
1588 snd_hda_codec_write(codec, codec->afg, 0, verb, parm);
1589}
1590
1591
1592
1593
1594static struct hda_verb vt1708_volume_init_verbs[] = {
1595
1596
1597
1598 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1599 {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1600
1601
1602
1603
1604
1605
1606 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1607 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1608 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
1609 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
1610 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
1611
1612
1613
1614
1615
1616 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1617 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1618 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1619
1620
1621 {0x20, AC_VERB_SET_CONNECT_SEL, 0},
1622
1623 {0x25, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
1624 { }
1625};
1626
1627static int via_playback_pcm_open(struct hda_pcm_stream *hinfo,
1628 struct hda_codec *codec,
1629 struct snd_pcm_substream *substream)
1630{
1631 struct via_spec *spec = codec->spec;
1632 int idle = substream->pstr->substream_opened == 1
1633 && substream->ref_count == 0;
1634 analog_low_current_mode(codec, idle);
1635 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
1636 hinfo);
1637}
1638
1639static void playback_multi_pcm_prep_0(struct hda_codec *codec,
1640 unsigned int stream_tag,
1641 unsigned int format,
1642 struct snd_pcm_substream *substream)
1643{
1644 struct via_spec *spec = codec->spec;
1645 struct hda_multi_out *mout = &spec->multiout;
1646 hda_nid_t *nids = mout->dac_nids;
1647 int chs = substream->runtime->channels;
1648 int i;
1649
1650 mutex_lock(&codec->spdif_mutex);
1651 if (mout->dig_out_nid && mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
1652 if (chs == 2 &&
1653 snd_hda_is_supported_format(codec, mout->dig_out_nid,
1654 format) &&
1655 !(codec->spdif_status & IEC958_AES0_NONAUDIO)) {
1656 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
1657
1658
1659 if (codec->spdif_ctls & AC_DIG1_ENABLE)
1660 snd_hda_codec_write(codec, mout->dig_out_nid, 0,
1661 AC_VERB_SET_DIGI_CONVERT_1,
1662 codec->spdif_ctls &
1663 ~AC_DIG1_ENABLE & 0xff);
1664 snd_hda_codec_setup_stream(codec, mout->dig_out_nid,
1665 stream_tag, 0, format);
1666
1667 if (codec->spdif_ctls & AC_DIG1_ENABLE)
1668 snd_hda_codec_write(codec, mout->dig_out_nid, 0,
1669 AC_VERB_SET_DIGI_CONVERT_1,
1670 codec->spdif_ctls & 0xff);
1671 } else {
1672 mout->dig_out_used = 0;
1673 snd_hda_codec_setup_stream(codec, mout->dig_out_nid,
1674 0, 0, 0);
1675 }
1676 }
1677 mutex_unlock(&codec->spdif_mutex);
1678
1679
1680 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
1681 0, format);
1682
1683 if (mout->hp_nid && mout->hp_nid != nids[HDA_FRONT]
1684 && !spec->hp_independent_mode)
1685
1686 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
1687 0, format);
1688
1689
1690 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
1691 if (mout->extra_out_nid[i])
1692 snd_hda_codec_setup_stream(codec,
1693 mout->extra_out_nid[i],
1694 stream_tag, 0, format);
1695
1696
1697 for (i = 1; i < mout->num_dacs; i++) {
1698 if (chs >= (i + 1) * 2)
1699 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
1700 i * 2, format);
1701 else
1702 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
1703 0, format);
1704 }
1705}
1706
1707static int via_playback_multi_pcm_prepare(struct hda_pcm_stream *hinfo,
1708 struct hda_codec *codec,
1709 unsigned int stream_tag,
1710 unsigned int format,
1711 struct snd_pcm_substream *substream)
1712{
1713 struct via_spec *spec = codec->spec;
1714 struct hda_multi_out *mout = &spec->multiout;
1715 hda_nid_t *nids = mout->dac_nids;
1716
1717 if (substream->number == 0)
1718 playback_multi_pcm_prep_0(codec, stream_tag, format,
1719 substream);
1720 else {
1721 if (mout->hp_nid && mout->hp_nid != nids[HDA_FRONT] &&
1722 spec->hp_independent_mode)
1723 snd_hda_codec_setup_stream(codec, mout->hp_nid,
1724 stream_tag, 0, format);
1725 }
1726 vt1708_start_hp_work(spec);
1727 return 0;
1728}
1729
1730static int via_playback_multi_pcm_cleanup(struct hda_pcm_stream *hinfo,
1731 struct hda_codec *codec,
1732 struct snd_pcm_substream *substream)
1733{
1734 struct via_spec *spec = codec->spec;
1735 struct hda_multi_out *mout = &spec->multiout;
1736 hda_nid_t *nids = mout->dac_nids;
1737 int i;
1738
1739 if (substream->number == 0) {
1740 for (i = 0; i < mout->num_dacs; i++)
1741 snd_hda_codec_setup_stream(codec, nids[i], 0, 0, 0);
1742
1743 if (mout->hp_nid && !spec->hp_independent_mode)
1744 snd_hda_codec_setup_stream(codec, mout->hp_nid,
1745 0, 0, 0);
1746
1747 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
1748 if (mout->extra_out_nid[i])
1749 snd_hda_codec_setup_stream(codec,
1750 mout->extra_out_nid[i],
1751 0, 0, 0);
1752 mutex_lock(&codec->spdif_mutex);
1753 if (mout->dig_out_nid &&
1754 mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
1755 snd_hda_codec_setup_stream(codec, mout->dig_out_nid,
1756 0, 0, 0);
1757 mout->dig_out_used = 0;
1758 }
1759 mutex_unlock(&codec->spdif_mutex);
1760 } else {
1761 if (mout->hp_nid && mout->hp_nid != nids[HDA_FRONT] &&
1762 spec->hp_independent_mode)
1763 snd_hda_codec_setup_stream(codec, mout->hp_nid,
1764 0, 0, 0);
1765 }
1766 vt1708_stop_hp_work(spec);
1767 return 0;
1768}
1769
1770
1771
1772
1773static int via_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
1774 struct hda_codec *codec,
1775 struct snd_pcm_substream *substream)
1776{
1777 struct via_spec *spec = codec->spec;
1778 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
1779}
1780
1781static int via_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
1782 struct hda_codec *codec,
1783 struct snd_pcm_substream *substream)
1784{
1785 struct via_spec *spec = codec->spec;
1786 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
1787}
1788
1789static int via_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1790 struct hda_codec *codec,
1791 unsigned int stream_tag,
1792 unsigned int format,
1793 struct snd_pcm_substream *substream)
1794{
1795 struct via_spec *spec = codec->spec;
1796 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
1797 stream_tag, format, substream);
1798}
1799
1800static int via_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1801 struct hda_codec *codec,
1802 struct snd_pcm_substream *substream)
1803{
1804 struct via_spec *spec = codec->spec;
1805 snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
1806 return 0;
1807}
1808
1809
1810
1811
1812static int via_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
1813 struct hda_codec *codec,
1814 unsigned int stream_tag,
1815 unsigned int format,
1816 struct snd_pcm_substream *substream)
1817{
1818 struct via_spec *spec = codec->spec;
1819
1820 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
1821 stream_tag, 0, format);
1822 return 0;
1823}
1824
1825static int via_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
1826 struct hda_codec *codec,
1827 struct snd_pcm_substream *substream)
1828{
1829 struct via_spec *spec = codec->spec;
1830 snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
1831 return 0;
1832}
1833
1834static struct hda_pcm_stream vt1708_pcm_analog_playback = {
1835 .substreams = 2,
1836 .channels_min = 2,
1837 .channels_max = 8,
1838 .nid = 0x10,
1839 .ops = {
1840 .open = via_playback_pcm_open,
1841 .prepare = via_playback_multi_pcm_prepare,
1842 .cleanup = via_playback_multi_pcm_cleanup
1843 },
1844};
1845
1846static struct hda_pcm_stream vt1708_pcm_analog_s16_playback = {
1847 .substreams = 2,
1848 .channels_min = 2,
1849 .channels_max = 8,
1850 .nid = 0x10,
1851
1852
1853
1854
1855 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1856 .ops = {
1857 .open = via_playback_pcm_open,
1858 .prepare = via_playback_multi_pcm_prepare,
1859 .cleanup = via_playback_multi_pcm_cleanup
1860 },
1861};
1862
1863static struct hda_pcm_stream vt1708_pcm_analog_capture = {
1864 .substreams = 2,
1865 .channels_min = 2,
1866 .channels_max = 2,
1867 .nid = 0x15,
1868 .ops = {
1869 .prepare = via_capture_pcm_prepare,
1870 .cleanup = via_capture_pcm_cleanup
1871 },
1872};
1873
1874static struct hda_pcm_stream vt1708_pcm_digital_playback = {
1875 .substreams = 1,
1876 .channels_min = 2,
1877 .channels_max = 2,
1878
1879 .ops = {
1880 .open = via_dig_playback_pcm_open,
1881 .close = via_dig_playback_pcm_close,
1882 .prepare = via_dig_playback_pcm_prepare,
1883 .cleanup = via_dig_playback_pcm_cleanup
1884 },
1885};
1886
1887static struct hda_pcm_stream vt1708_pcm_digital_capture = {
1888 .substreams = 1,
1889 .channels_min = 2,
1890 .channels_max = 2,
1891};
1892
1893static int via_build_controls(struct hda_codec *codec)
1894{
1895 struct via_spec *spec = codec->spec;
1896 struct snd_kcontrol *kctl;
1897 struct snd_kcontrol_new *knew;
1898 int err, i;
1899
1900 for (i = 0; i < spec->num_mixers; i++) {
1901 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1902 if (err < 0)
1903 return err;
1904 }
1905
1906 if (spec->multiout.dig_out_nid) {
1907 err = snd_hda_create_spdif_out_ctls(codec,
1908 spec->multiout.dig_out_nid);
1909 if (err < 0)
1910 return err;
1911 err = snd_hda_create_spdif_share_sw(codec,
1912 &spec->multiout);
1913 if (err < 0)
1914 return err;
1915 spec->multiout.share_spdif = 1;
1916 }
1917 if (spec->dig_in_nid) {
1918 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1919 if (err < 0)
1920 return err;
1921 }
1922
1923
1924 kctl = snd_hda_find_mixer_ctl(codec, "Input Source");
1925 for (i = 0; kctl && i < kctl->count; i++) {
1926 err = snd_hda_add_nid(codec, kctl, i, spec->mux_nids[i]);
1927 if (err < 0)
1928 return err;
1929 }
1930
1931
1932 for (i = 0; i < spec->num_mixers; i++) {
1933 for (knew = spec->mixers[i]; knew->name; knew++) {
1934 if (knew->iface != NID_MAPPING)
1935 continue;
1936 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1937 if (kctl == NULL)
1938 continue;
1939 err = snd_hda_add_nid(codec, kctl, 0,
1940 knew->subdevice);
1941 }
1942 }
1943
1944
1945 set_jack_power_state(codec);
1946 analog_low_current_mode(codec, 1);
1947
1948 via_free_kctls(codec);
1949 return 0;
1950}
1951
1952static int via_build_pcms(struct hda_codec *codec)
1953{
1954 struct via_spec *spec = codec->spec;
1955 struct hda_pcm *info = spec->pcm_rec;
1956
1957 codec->num_pcms = 1;
1958 codec->pcm_info = info;
1959
1960 info->name = spec->stream_name_analog;
1961 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
1962 *(spec->stream_analog_playback);
1963 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
1964 spec->multiout.dac_nids[0];
1965 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
1966 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
1967
1968 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
1969 spec->multiout.max_channels;
1970
1971 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
1972 codec->num_pcms++;
1973 info++;
1974 info->name = spec->stream_name_digital;
1975 info->pcm_type = HDA_PCM_TYPE_SPDIF;
1976 if (spec->multiout.dig_out_nid) {
1977 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
1978 *(spec->stream_digital_playback);
1979 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
1980 spec->multiout.dig_out_nid;
1981 }
1982 if (spec->dig_in_nid) {
1983 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
1984 *(spec->stream_digital_capture);
1985 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
1986 spec->dig_in_nid;
1987 }
1988 }
1989
1990 return 0;
1991}
1992
1993static void via_free(struct hda_codec *codec)
1994{
1995 struct via_spec *spec = codec->spec;
1996
1997 if (!spec)
1998 return;
1999
2000 via_free_kctls(codec);
2001 vt1708_stop_hp_work(spec);
2002 kfree(codec->spec);
2003}
2004
2005
2006static void via_hp_automute(struct hda_codec *codec)
2007{
2008 unsigned int present = 0;
2009 struct via_spec *spec = codec->spec;
2010
2011 present = snd_hda_jack_detect(codec, spec->autocfg.hp_pins[0]);
2012
2013 if (!spec->hp_independent_mode) {
2014 struct snd_ctl_elem_id id;
2015
2016 snd_hda_codec_amp_stereo(
2017 codec, spec->autocfg.line_out_pins[0], HDA_OUTPUT, 0,
2018 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
2019
2020 memset(&id, 0, sizeof(id));
2021 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
2022 strcpy(id.name, "Front Playback Switch");
2023 snd_ctl_notify(codec->bus->card, SNDRV_CTL_EVENT_MASK_VALUE,
2024 &id);
2025 }
2026}
2027
2028
2029static void via_mono_automute(struct hda_codec *codec)
2030{
2031 unsigned int hp_present, lineout_present;
2032 struct via_spec *spec = codec->spec;
2033
2034 if (spec->codec_type != VT1716S)
2035 return;
2036
2037 lineout_present = snd_hda_jack_detect(codec,
2038 spec->autocfg.line_out_pins[0]);
2039
2040
2041 if (lineout_present) {
2042 snd_hda_codec_amp_stereo(
2043 codec, 0x2A, HDA_OUTPUT, 0, HDA_AMP_MUTE, HDA_AMP_MUTE);
2044 return;
2045 }
2046
2047 hp_present = snd_hda_jack_detect(codec, spec->autocfg.hp_pins[0]);
2048
2049 if (!spec->hp_independent_mode)
2050 snd_hda_codec_amp_stereo(
2051 codec, 0x2A, HDA_OUTPUT, 0, HDA_AMP_MUTE,
2052 hp_present ? HDA_AMP_MUTE : 0);
2053}
2054
2055static void via_gpio_control(struct hda_codec *codec)
2056{
2057 unsigned int gpio_data;
2058 unsigned int vol_counter;
2059 unsigned int vol;
2060 unsigned int master_vol;
2061
2062 struct via_spec *spec = codec->spec;
2063
2064 gpio_data = snd_hda_codec_read(codec, codec->afg, 0,
2065 AC_VERB_GET_GPIO_DATA, 0) & 0x03;
2066
2067 vol_counter = (snd_hda_codec_read(codec, codec->afg, 0,
2068 0xF84, 0) & 0x3F0000) >> 16;
2069
2070 vol = vol_counter & 0x1F;
2071 master_vol = snd_hda_codec_read(codec, 0x1A, 0,
2072 AC_VERB_GET_AMP_GAIN_MUTE,
2073 AC_AMP_GET_INPUT);
2074
2075 if (gpio_data == 0x02) {
2076
2077 snd_hda_codec_amp_stereo(codec, spec->autocfg.line_out_pins[0],
2078 HDA_OUTPUT, 0, HDA_AMP_MUTE, 0);
2079
2080 if (vol_counter & 0x20) {
2081
2082 if (vol > master_vol)
2083 vol = master_vol;
2084 snd_hda_codec_amp_stereo(codec, 0x1A, HDA_INPUT,
2085 0, HDA_AMP_VOLMASK,
2086 master_vol-vol);
2087 } else {
2088
2089 snd_hda_codec_amp_stereo(codec, 0x1A, HDA_INPUT, 0,
2090 HDA_AMP_VOLMASK,
2091 ((master_vol+vol) > 0x2A) ? 0x2A :
2092 (master_vol+vol));
2093 }
2094 } else if (!(gpio_data & 0x02)) {
2095
2096 snd_hda_codec_amp_stereo(codec,
2097 spec->autocfg.line_out_pins[0],
2098 HDA_OUTPUT, 0, HDA_AMP_MUTE,
2099 HDA_AMP_MUTE);
2100 }
2101}
2102
2103
2104static void via_speaker_automute(struct hda_codec *codec)
2105{
2106 unsigned int hp_present;
2107 struct via_spec *spec = codec->spec;
2108
2109 if (spec->codec_type != VT2002P && spec->codec_type != VT1812)
2110 return;
2111
2112 hp_present = snd_hda_jack_detect(codec, spec->autocfg.hp_pins[0]);
2113
2114 if (!spec->hp_independent_mode) {
2115 struct snd_ctl_elem_id id;
2116 snd_hda_codec_amp_stereo(
2117 codec, spec->autocfg.speaker_pins[0], HDA_OUTPUT, 0,
2118 HDA_AMP_MUTE, hp_present ? HDA_AMP_MUTE : 0);
2119
2120 memset(&id, 0, sizeof(id));
2121 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
2122 strcpy(id.name, "Speaker Playback Switch");
2123 snd_ctl_notify(codec->bus->card, SNDRV_CTL_EVENT_MASK_VALUE,
2124 &id);
2125 }
2126}
2127
2128
2129static void via_hp_bind_automute(struct hda_codec *codec)
2130{
2131
2132
2133
2134 unsigned long hp_present, present = 0;
2135 struct via_spec *spec = codec->spec;
2136 int i;
2137
2138 if (!spec->autocfg.hp_pins[0] || !spec->autocfg.line_out_pins[0])
2139 return;
2140
2141 hp_present = snd_hda_jack_detect(codec, spec->autocfg.hp_pins[0]);
2142
2143 present = snd_hda_jack_detect(codec, spec->autocfg.line_out_pins[0]);
2144
2145 if (!spec->hp_independent_mode) {
2146
2147 for (i = 0; i < spec->autocfg.line_outs; i++)
2148 snd_hda_codec_amp_stereo(
2149 codec, spec->autocfg.line_out_pins[i],
2150 HDA_OUTPUT, 0,
2151 HDA_AMP_MUTE, hp_present ? HDA_AMP_MUTE : 0);
2152 if (hp_present)
2153 present = hp_present;
2154 }
2155
2156 for (i = 0; i < spec->autocfg.speaker_outs; i++)
2157 snd_hda_codec_amp_stereo(
2158 codec, spec->autocfg.speaker_pins[i], HDA_OUTPUT, 0,
2159 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
2160}
2161
2162
2163
2164static void via_unsol_event(struct hda_codec *codec,
2165 unsigned int res)
2166{
2167 res >>= 26;
2168 if (res & VIA_HP_EVENT)
2169 via_hp_automute(codec);
2170 if (res & VIA_GPIO_EVENT)
2171 via_gpio_control(codec);
2172 if (res & VIA_JACK_EVENT)
2173 set_jack_power_state(codec);
2174 if (res & VIA_MONO_EVENT)
2175 via_mono_automute(codec);
2176 if (res & VIA_SPEAKER_EVENT)
2177 via_speaker_automute(codec);
2178 if (res & VIA_BIND_HP_EVENT)
2179 via_hp_bind_automute(codec);
2180}
2181
2182static int via_init(struct hda_codec *codec)
2183{
2184 struct via_spec *spec = codec->spec;
2185 int i;
2186 for (i = 0; i < spec->num_iverbs; i++)
2187 snd_hda_sequence_write(codec, spec->init_verbs[i]);
2188
2189 spec->codec_type = get_codec_type(codec);
2190 if (spec->codec_type == VT1708BCE)
2191 spec->codec_type = VT1708S;
2192
2193
2194 if (!spec->dig_in_nid) {
2195 if (spec->dig_in_pin) {
2196 snd_hda_codec_write(codec, spec->dig_in_pin, 0,
2197 AC_VERB_SET_PIN_WIDGET_CONTROL,
2198 PIN_OUT);
2199 snd_hda_codec_write(codec, spec->dig_in_pin, 0,
2200 AC_VERB_SET_EAPD_BTLENABLE, 0x02);
2201 }
2202 } else
2203 snd_hda_codec_write(codec, spec->autocfg.dig_in_pin, 0,
2204 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN);
2205
2206
2207 if (spec->slave_dig_outs[0])
2208 codec->slave_dig_outs = spec->slave_dig_outs;
2209
2210 return 0;
2211}
2212
2213#ifdef SND_HDA_NEEDS_RESUME
2214static int via_suspend(struct hda_codec *codec, pm_message_t state)
2215{
2216 struct via_spec *spec = codec->spec;
2217 vt1708_stop_hp_work(spec);
2218 return 0;
2219}
2220#endif
2221
2222#ifdef CONFIG_SND_HDA_POWER_SAVE
2223static int via_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2224{
2225 struct via_spec *spec = codec->spec;
2226 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2227}
2228#endif
2229
2230
2231
2232static struct hda_codec_ops via_patch_ops = {
2233 .build_controls = via_build_controls,
2234 .build_pcms = via_build_pcms,
2235 .init = via_init,
2236 .free = via_free,
2237#ifdef SND_HDA_NEEDS_RESUME
2238 .suspend = via_suspend,
2239#endif
2240#ifdef CONFIG_SND_HDA_POWER_SAVE
2241 .check_power_status = via_check_power_status,
2242#endif
2243};
2244
2245
2246static int vt1708_auto_fill_dac_nids(struct via_spec *spec,
2247 const struct auto_pin_cfg *cfg)
2248{
2249 int i;
2250 hda_nid_t nid;
2251
2252 spec->multiout.num_dacs = cfg->line_outs;
2253
2254 spec->multiout.dac_nids = spec->private_dac_nids;
2255
2256 for (i = 0; i < 4; i++) {
2257 nid = cfg->line_out_pins[i];
2258 if (nid) {
2259
2260 switch (i) {
2261 case AUTO_SEQ_FRONT:
2262 spec->multiout.dac_nids[i] = 0x10;
2263 break;
2264 case AUTO_SEQ_CENLFE:
2265 spec->multiout.dac_nids[i] = 0x12;
2266 break;
2267 case AUTO_SEQ_SURROUND:
2268 spec->multiout.dac_nids[i] = 0x11;
2269 break;
2270 case AUTO_SEQ_SIDE:
2271 spec->multiout.dac_nids[i] = 0x13;
2272 break;
2273 }
2274 }
2275 }
2276
2277 return 0;
2278}
2279
2280
2281static int vt1708_auto_create_multi_out_ctls(struct via_spec *spec,
2282 const struct auto_pin_cfg *cfg)
2283{
2284 char name[32];
2285 static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" };
2286 hda_nid_t nid, nid_vol, nid_vols[] = {0x17, 0x19, 0x1a, 0x1b};
2287 int i, err;
2288
2289 for (i = 0; i <= AUTO_SEQ_SIDE; i++) {
2290 nid = cfg->line_out_pins[i];
2291
2292 if (!nid)
2293 continue;
2294
2295 nid_vol = nid_vols[i];
2296
2297 if (i == AUTO_SEQ_CENLFE) {
2298
2299 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
2300 "Center Playback Volume",
2301 HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
2302 HDA_OUTPUT));
2303 if (err < 0)
2304 return err;
2305 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
2306 "LFE Playback Volume",
2307 HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
2308 HDA_OUTPUT));
2309 if (err < 0)
2310 return err;
2311 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2312 "Center Playback Switch",
2313 HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
2314 HDA_OUTPUT));
2315 if (err < 0)
2316 return err;
2317 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2318 "LFE Playback Switch",
2319 HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
2320 HDA_OUTPUT));
2321 if (err < 0)
2322 return err;
2323 } else if (i == AUTO_SEQ_FRONT) {
2324
2325 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
2326 "Master Front Playback Volume",
2327 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2328 HDA_INPUT));
2329 if (err < 0)
2330 return err;
2331 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2332 "Master Front Playback Switch",
2333 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2334 HDA_INPUT));
2335 if (err < 0)
2336 return err;
2337
2338
2339 sprintf(name, "%s Playback Volume", chname[i]);
2340 err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
2341 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
2342 HDA_OUTPUT));
2343 if (err < 0)
2344 return err;
2345 sprintf(name, "%s Playback Switch", chname[i]);
2346 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
2347 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
2348 HDA_OUTPUT));
2349 if (err < 0)
2350 return err;
2351 } else {
2352 sprintf(name, "%s Playback Volume", chname[i]);
2353 err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
2354 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2355 HDA_OUTPUT));
2356 if (err < 0)
2357 return err;
2358 sprintf(name, "%s Playback Switch", chname[i]);
2359 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
2360 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2361 HDA_OUTPUT));
2362 if (err < 0)
2363 return err;
2364 }
2365 }
2366
2367 return 0;
2368}
2369
2370static void create_hp_imux(struct via_spec *spec)
2371{
2372 int i;
2373 struct hda_input_mux *imux = &spec->private_imux[1];
2374 static const char *texts[] = { "OFF", "ON", NULL};
2375
2376
2377 for (i = 0; texts[i]; i++)
2378 snd_hda_add_imux_item(imux, texts[i], i, NULL);
2379
2380 spec->hp_mux = &spec->private_imux[1];
2381}
2382
2383static int vt1708_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
2384{
2385 int err;
2386
2387 if (!pin)
2388 return 0;
2389
2390 spec->multiout.hp_nid = VT1708_HP_NID;
2391 spec->hp_independent_mode_index = 1;
2392
2393 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
2394 "Headphone Playback Volume",
2395 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
2396 if (err < 0)
2397 return err;
2398 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2399 "Headphone Playback Switch",
2400 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
2401 if (err < 0)
2402 return err;
2403
2404 create_hp_imux(spec);
2405
2406 return 0;
2407}
2408
2409
2410static int vt_auto_create_analog_input_ctls(struct hda_codec *codec,
2411 const struct auto_pin_cfg *cfg,
2412 hda_nid_t cap_nid,
2413 hda_nid_t pin_idxs[], int num_idxs)
2414{
2415 struct via_spec *spec = codec->spec;
2416 struct hda_input_mux *imux = &spec->private_imux[0];
2417 int i, err, idx, type, type_idx = 0;
2418
2419
2420 for (idx = 0; idx < num_idxs; idx++) {
2421 if (pin_idxs[idx] == 0xff) {
2422 snd_hda_add_imux_item(imux, "Stereo Mixer", idx, NULL);
2423 break;
2424 }
2425 }
2426
2427 for (i = 0; i < cfg->num_inputs; i++) {
2428 const char *label;
2429 type = cfg->inputs[i].type;
2430 for (idx = 0; idx < num_idxs; idx++)
2431 if (pin_idxs[idx] == cfg->inputs[i].pin)
2432 break;
2433 if (idx >= num_idxs)
2434 continue;
2435 if (i > 0 && type == cfg->inputs[i - 1].type)
2436 type_idx++;
2437 else
2438 type_idx = 0;
2439 label = hda_get_autocfg_input_label(codec, cfg, i);
2440 err = via_new_analog_input(spec, label, type_idx, idx, cap_nid);
2441 if (err < 0)
2442 return err;
2443 snd_hda_add_imux_item(imux, label, idx, NULL);
2444 }
2445 return 0;
2446}
2447
2448
2449static int vt1708_auto_create_analog_input_ctls(struct hda_codec *codec,
2450 const struct auto_pin_cfg *cfg)
2451{
2452 static hda_nid_t pin_idxs[] = { 0xff, 0x24, 0x1d, 0x1e, 0x21 };
2453 return vt_auto_create_analog_input_ctls(codec, cfg, 0x17, pin_idxs,
2454 ARRAY_SIZE(pin_idxs));
2455}
2456
2457#ifdef CONFIG_SND_HDA_POWER_SAVE
2458static struct hda_amp_list vt1708_loopbacks[] = {
2459 { 0x17, HDA_INPUT, 1 },
2460 { 0x17, HDA_INPUT, 2 },
2461 { 0x17, HDA_INPUT, 3 },
2462 { 0x17, HDA_INPUT, 4 },
2463 { }
2464};
2465#endif
2466
2467static void vt1708_set_pinconfig_connect(struct hda_codec *codec, hda_nid_t nid)
2468{
2469 unsigned int def_conf;
2470 unsigned char seqassoc;
2471
2472 def_conf = snd_hda_codec_get_pincfg(codec, nid);
2473 seqassoc = (unsigned char) get_defcfg_association(def_conf);
2474 seqassoc = (seqassoc << 4) | get_defcfg_sequence(def_conf);
2475 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE
2476 && (seqassoc == 0xf0 || seqassoc == 0xff)) {
2477 def_conf = def_conf & (~(AC_JACK_PORT_BOTH << 30));
2478 snd_hda_codec_set_pincfg(codec, nid, def_conf);
2479 }
2480
2481 return;
2482}
2483
2484static int vt1708_jack_detectect_get(struct snd_kcontrol *kcontrol,
2485 struct snd_ctl_elem_value *ucontrol)
2486{
2487 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2488 struct via_spec *spec = codec->spec;
2489
2490 if (spec->codec_type != VT1708)
2491 return 0;
2492 spec->vt1708_jack_detectect =
2493 !((snd_hda_codec_read(codec, 0x1, 0, 0xf84, 0) >> 8) & 0x1);
2494 ucontrol->value.integer.value[0] = spec->vt1708_jack_detectect;
2495 return 0;
2496}
2497
2498static int vt1708_jack_detectect_put(struct snd_kcontrol *kcontrol,
2499 struct snd_ctl_elem_value *ucontrol)
2500{
2501 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2502 struct via_spec *spec = codec->spec;
2503 int change;
2504
2505 if (spec->codec_type != VT1708)
2506 return 0;
2507 spec->vt1708_jack_detectect = ucontrol->value.integer.value[0];
2508 change = (0x1 & (snd_hda_codec_read(codec, 0x1, 0, 0xf84, 0) >> 8))
2509 == !spec->vt1708_jack_detectect;
2510 if (spec->vt1708_jack_detectect) {
2511 mute_aa_path(codec, 1);
2512 notify_aa_path_ctls(codec);
2513 }
2514 return change;
2515}
2516
2517static struct snd_kcontrol_new vt1708_jack_detectect[] = {
2518 {
2519 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2520 .name = "Jack Detect",
2521 .count = 1,
2522 .info = snd_ctl_boolean_mono_info,
2523 .get = vt1708_jack_detectect_get,
2524 .put = vt1708_jack_detectect_put,
2525 },
2526 {}
2527};
2528
2529static int vt1708_parse_auto_config(struct hda_codec *codec)
2530{
2531 struct via_spec *spec = codec->spec;
2532 int err;
2533
2534
2535 vt1708_set_pinconfig_connect(codec, VT1708_HP_PIN_NID);
2536 vt1708_set_pinconfig_connect(codec, VT1708_CD_PIN_NID);
2537
2538 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
2539 if (err < 0)
2540 return err;
2541 err = vt1708_auto_fill_dac_nids(spec, &spec->autocfg);
2542 if (err < 0)
2543 return err;
2544 if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
2545 return 0;
2546
2547 err = vt1708_auto_create_multi_out_ctls(spec, &spec->autocfg);
2548 if (err < 0)
2549 return err;
2550 err = vt1708_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
2551 if (err < 0)
2552 return err;
2553 err = vt1708_auto_create_analog_input_ctls(codec, &spec->autocfg);
2554 if (err < 0)
2555 return err;
2556
2557 err = snd_hda_add_new_ctls(codec, vt1708_jack_detectect);
2558 if (err < 0)
2559 return err;
2560
2561 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
2562
2563 if (spec->autocfg.dig_outs)
2564 spec->multiout.dig_out_nid = VT1708_DIGOUT_NID;
2565 spec->dig_in_pin = VT1708_DIGIN_PIN;
2566 if (spec->autocfg.dig_in_pin)
2567 spec->dig_in_nid = VT1708_DIGIN_NID;
2568
2569 if (spec->kctls.list)
2570 spec->mixers[spec->num_mixers++] = spec->kctls.list;
2571
2572 spec->init_verbs[spec->num_iverbs++] = vt1708_volume_init_verbs;
2573
2574 spec->input_mux = &spec->private_imux[0];
2575
2576 if (spec->hp_mux)
2577 via_hp_build(codec);
2578
2579 via_smart51_build(spec);
2580 return 1;
2581}
2582
2583
2584static int via_auto_init(struct hda_codec *codec)
2585{
2586 struct via_spec *spec = codec->spec;
2587
2588 via_init(codec);
2589 via_auto_init_multi_out(codec);
2590 via_auto_init_hp_out(codec);
2591 via_auto_init_analog_input(codec);
2592 if (spec->codec_type == VT2002P || spec->codec_type == VT1812) {
2593 via_hp_bind_automute(codec);
2594 } else {
2595 via_hp_automute(codec);
2596 via_speaker_automute(codec);
2597 }
2598
2599 return 0;
2600}
2601
2602static void vt1708_update_hp_jack_state(struct work_struct *work)
2603{
2604 struct via_spec *spec = container_of(work, struct via_spec,
2605 vt1708_hp_work.work);
2606 if (spec->codec_type != VT1708)
2607 return;
2608
2609 if (spec->vt1708_hp_present
2610 != snd_hda_jack_detect(spec->codec, spec->autocfg.hp_pins[0])) {
2611 spec->vt1708_hp_present ^= 1;
2612 via_hp_automute(spec->codec);
2613 }
2614 vt1708_start_hp_work(spec);
2615}
2616
2617static int get_mux_nids(struct hda_codec *codec)
2618{
2619 struct via_spec *spec = codec->spec;
2620 hda_nid_t nid, conn[8];
2621 unsigned int type;
2622 int i, n;
2623
2624 for (i = 0; i < spec->num_adc_nids; i++) {
2625 nid = spec->adc_nids[i];
2626 while (nid) {
2627 type = get_wcaps_type(get_wcaps(codec, nid));
2628 if (type == AC_WID_PIN)
2629 break;
2630 n = snd_hda_get_connections(codec, nid, conn,
2631 ARRAY_SIZE(conn));
2632 if (n <= 0)
2633 break;
2634 if (n > 1) {
2635 spec->mux_nids[i] = nid;
2636 break;
2637 }
2638 nid = conn[0];
2639 }
2640 }
2641 return 0;
2642}
2643
2644static int patch_vt1708(struct hda_codec *codec)
2645{
2646 struct via_spec *spec;
2647 int err;
2648
2649
2650 spec = via_new_spec(codec);
2651 if (spec == NULL)
2652 return -ENOMEM;
2653
2654
2655 err = vt1708_parse_auto_config(codec);
2656 if (err < 0) {
2657 via_free(codec);
2658 return err;
2659 } else if (!err) {
2660 printk(KERN_INFO "hda_codec: Cannot set up configuration "
2661 "from BIOS. Using genenic mode...\n");
2662 }
2663
2664
2665 spec->stream_name_analog = "VT1708 Analog";
2666 spec->stream_analog_playback = &vt1708_pcm_analog_playback;
2667
2668 if (codec->vendor_id == 0x11061708)
2669 spec->stream_analog_playback = &vt1708_pcm_analog_s16_playback;
2670 spec->stream_analog_capture = &vt1708_pcm_analog_capture;
2671
2672 spec->stream_name_digital = "VT1708 Digital";
2673 spec->stream_digital_playback = &vt1708_pcm_digital_playback;
2674 spec->stream_digital_capture = &vt1708_pcm_digital_capture;
2675
2676
2677 if (!spec->adc_nids && spec->input_mux) {
2678 spec->adc_nids = vt1708_adc_nids;
2679 spec->num_adc_nids = ARRAY_SIZE(vt1708_adc_nids);
2680 get_mux_nids(codec);
2681 spec->mixers[spec->num_mixers] = vt1708_capture_mixer;
2682 spec->num_mixers++;
2683 }
2684
2685 codec->patch_ops = via_patch_ops;
2686
2687 codec->patch_ops.init = via_auto_init;
2688#ifdef CONFIG_SND_HDA_POWER_SAVE
2689 spec->loopback.amplist = vt1708_loopbacks;
2690#endif
2691 INIT_DELAYED_WORK(&spec->vt1708_hp_work, vt1708_update_hp_jack_state);
2692 return 0;
2693}
2694
2695
2696static struct snd_kcontrol_new vt1709_capture_mixer[] = {
2697 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x0, HDA_INPUT),
2698 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x0, HDA_INPUT),
2699 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x15, 0x0, HDA_INPUT),
2700 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x15, 0x0, HDA_INPUT),
2701 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x16, 0x0, HDA_INPUT),
2702 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x16, 0x0, HDA_INPUT),
2703 {
2704 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2705
2706
2707
2708
2709 .name = "Input Source",
2710 .count = 1,
2711 .info = via_mux_enum_info,
2712 .get = via_mux_enum_get,
2713 .put = via_mux_enum_put,
2714 },
2715 { }
2716};
2717
2718static struct hda_verb vt1709_uniwill_init_verbs[] = {
2719 {0x20, AC_VERB_SET_UNSOLICITED_ENABLE,
2720 AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT},
2721 { }
2722};
2723
2724
2725
2726
2727static struct hda_verb vt1709_10ch_volume_init_verbs[] = {
2728
2729
2730
2731 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2732 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2733 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2734
2735
2736
2737
2738
2739
2740 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2741 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2742 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
2743 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
2744 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
2745
2746
2747
2748
2749
2750 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2751 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2752 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2753
2754
2755
2756
2757 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2758 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2759
2760
2761 {0x20, AC_VERB_SET_CONNECT_SEL, 0},
2762
2763 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
2764 { }
2765};
2766
2767static struct hda_pcm_stream vt1709_10ch_pcm_analog_playback = {
2768 .substreams = 1,
2769 .channels_min = 2,
2770 .channels_max = 10,
2771 .nid = 0x10,
2772 .ops = {
2773 .open = via_playback_pcm_open,
2774 .prepare = via_playback_multi_pcm_prepare,
2775 .cleanup = via_playback_multi_pcm_cleanup,
2776 },
2777};
2778
2779static struct hda_pcm_stream vt1709_6ch_pcm_analog_playback = {
2780 .substreams = 1,
2781 .channels_min = 2,
2782 .channels_max = 6,
2783 .nid = 0x10,
2784 .ops = {
2785 .open = via_playback_pcm_open,
2786 .prepare = via_playback_multi_pcm_prepare,
2787 .cleanup = via_playback_multi_pcm_cleanup,
2788 },
2789};
2790
2791static struct hda_pcm_stream vt1709_pcm_analog_capture = {
2792 .substreams = 2,
2793 .channels_min = 2,
2794 .channels_max = 2,
2795 .nid = 0x14,
2796 .ops = {
2797 .prepare = via_capture_pcm_prepare,
2798 .cleanup = via_capture_pcm_cleanup
2799 },
2800};
2801
2802static struct hda_pcm_stream vt1709_pcm_digital_playback = {
2803 .substreams = 1,
2804 .channels_min = 2,
2805 .channels_max = 2,
2806
2807 .ops = {
2808 .open = via_dig_playback_pcm_open,
2809 .close = via_dig_playback_pcm_close
2810 },
2811};
2812
2813static struct hda_pcm_stream vt1709_pcm_digital_capture = {
2814 .substreams = 1,
2815 .channels_min = 2,
2816 .channels_max = 2,
2817};
2818
2819static int vt1709_auto_fill_dac_nids(struct via_spec *spec,
2820 const struct auto_pin_cfg *cfg)
2821{
2822 int i;
2823 hda_nid_t nid;
2824
2825 if (cfg->line_outs == 4)
2826 spec->multiout.num_dacs = cfg->line_outs+1;
2827 else if (cfg->line_outs == 3)
2828 spec->multiout.num_dacs = cfg->line_outs;
2829
2830 spec->multiout.dac_nids = spec->private_dac_nids;
2831
2832 if (cfg->line_outs == 4) {
2833 for (i = 0; i < cfg->line_outs; i++) {
2834 nid = cfg->line_out_pins[i];
2835 if (nid) {
2836
2837 switch (i) {
2838 case AUTO_SEQ_FRONT:
2839
2840 spec->multiout.dac_nids[i] = 0x10;
2841 break;
2842 case AUTO_SEQ_CENLFE:
2843
2844 spec->multiout.dac_nids[i] = 0x12;
2845 break;
2846 case AUTO_SEQ_SURROUND:
2847
2848 spec->multiout.dac_nids[i] = 0x11;
2849 break;
2850 case AUTO_SEQ_SIDE:
2851
2852 spec->multiout.dac_nids[i] = 0x27;
2853 break;
2854 default:
2855 break;
2856 }
2857 }
2858 }
2859 spec->multiout.dac_nids[cfg->line_outs] = 0x28;
2860
2861 } else if (cfg->line_outs == 3) {
2862 for (i = 0; i < cfg->line_outs; i++) {
2863 nid = cfg->line_out_pins[i];
2864 if (nid) {
2865
2866 switch (i) {
2867 case AUTO_SEQ_FRONT:
2868
2869 spec->multiout.dac_nids[i] = 0x10;
2870 break;
2871 case AUTO_SEQ_CENLFE:
2872
2873 spec->multiout.dac_nids[i] = 0x12;
2874 break;
2875 case AUTO_SEQ_SURROUND:
2876
2877 spec->multiout.dac_nids[i] = 0x11;
2878 break;
2879 default:
2880 break;
2881 }
2882 }
2883 }
2884 }
2885
2886 return 0;
2887}
2888
2889
2890static int vt1709_auto_create_multi_out_ctls(struct via_spec *spec,
2891 const struct auto_pin_cfg *cfg)
2892{
2893 char name[32];
2894 static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" };
2895 hda_nid_t nid, nid_vol, nid_vols[] = {0x18, 0x1a, 0x1b, 0x29};
2896 int i, err;
2897
2898 for (i = 0; i <= AUTO_SEQ_SIDE; i++) {
2899 nid = cfg->line_out_pins[i];
2900
2901 if (!nid)
2902 continue;
2903
2904 nid_vol = nid_vols[i];
2905
2906 if (i == AUTO_SEQ_CENLFE) {
2907
2908 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
2909 "Center Playback Volume",
2910 HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
2911 HDA_OUTPUT));
2912 if (err < 0)
2913 return err;
2914 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
2915 "LFE Playback Volume",
2916 HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
2917 HDA_OUTPUT));
2918 if (err < 0)
2919 return err;
2920 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2921 "Center Playback Switch",
2922 HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
2923 HDA_OUTPUT));
2924 if (err < 0)
2925 return err;
2926 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2927 "LFE Playback Switch",
2928 HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
2929 HDA_OUTPUT));
2930 if (err < 0)
2931 return err;
2932 } else if (i == AUTO_SEQ_FRONT) {
2933
2934 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
2935 "Master Front Playback Volume",
2936 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2937 HDA_INPUT));
2938 if (err < 0)
2939 return err;
2940 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2941 "Master Front Playback Switch",
2942 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2943 HDA_INPUT));
2944 if (err < 0)
2945 return err;
2946
2947
2948 sprintf(name, "%s Playback Volume", chname[i]);
2949 err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
2950 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
2951 HDA_OUTPUT));
2952 if (err < 0)
2953 return err;
2954 sprintf(name, "%s Playback Switch", chname[i]);
2955 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
2956 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
2957 HDA_OUTPUT));
2958 if (err < 0)
2959 return err;
2960 } else if (i == AUTO_SEQ_SURROUND) {
2961 sprintf(name, "%s Playback Volume", chname[i]);
2962 err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
2963 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2964 HDA_OUTPUT));
2965 if (err < 0)
2966 return err;
2967 sprintf(name, "%s Playback Switch", chname[i]);
2968 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
2969 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2970 HDA_OUTPUT));
2971 if (err < 0)
2972 return err;
2973 } else if (i == AUTO_SEQ_SIDE) {
2974 sprintf(name, "%s Playback Volume", chname[i]);
2975 err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
2976 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2977 HDA_OUTPUT));
2978 if (err < 0)
2979 return err;
2980 sprintf(name, "%s Playback Switch", chname[i]);
2981 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
2982 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2983 HDA_OUTPUT));
2984 if (err < 0)
2985 return err;
2986 }
2987 }
2988
2989 return 0;
2990}
2991
2992static int vt1709_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
2993{
2994 int err;
2995
2996 if (!pin)
2997 return 0;
2998
2999 if (spec->multiout.num_dacs == 5)
3000 spec->multiout.hp_nid = VT1709_HP_DAC_NID;
3001 else if (spec->multiout.num_dacs == 3)
3002 spec->multiout.hp_nid = 0;
3003 spec->hp_independent_mode_index = 1;
3004
3005 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3006 "Headphone Playback Volume",
3007 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3008 if (err < 0)
3009 return err;
3010 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3011 "Headphone Playback Switch",
3012 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3013 if (err < 0)
3014 return err;
3015
3016 return 0;
3017}
3018
3019
3020static int vt1709_auto_create_analog_input_ctls(struct hda_codec *codec,
3021 const struct auto_pin_cfg *cfg)
3022{
3023 static hda_nid_t pin_idxs[] = { 0xff, 0x23, 0x1d, 0x1e, 0x21 };
3024 return vt_auto_create_analog_input_ctls(codec, cfg, 0x18, pin_idxs,
3025 ARRAY_SIZE(pin_idxs));
3026}
3027
3028static int vt1709_parse_auto_config(struct hda_codec *codec)
3029{
3030 struct via_spec *spec = codec->spec;
3031 int err;
3032
3033 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
3034 if (err < 0)
3035 return err;
3036 err = vt1709_auto_fill_dac_nids(spec, &spec->autocfg);
3037 if (err < 0)
3038 return err;
3039 if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
3040 return 0;
3041
3042 err = vt1709_auto_create_multi_out_ctls(spec, &spec->autocfg);
3043 if (err < 0)
3044 return err;
3045 err = vt1709_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
3046 if (err < 0)
3047 return err;
3048 err = vt1709_auto_create_analog_input_ctls(codec, &spec->autocfg);
3049 if (err < 0)
3050 return err;
3051
3052 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3053
3054 if (spec->autocfg.dig_outs)
3055 spec->multiout.dig_out_nid = VT1709_DIGOUT_NID;
3056 spec->dig_in_pin = VT1709_DIGIN_PIN;
3057 if (spec->autocfg.dig_in_pin)
3058 spec->dig_in_nid = VT1709_DIGIN_NID;
3059
3060 if (spec->kctls.list)
3061 spec->mixers[spec->num_mixers++] = spec->kctls.list;
3062
3063 spec->input_mux = &spec->private_imux[0];
3064
3065 if (spec->hp_mux)
3066 via_hp_build(codec);
3067
3068 via_smart51_build(spec);
3069 return 1;
3070}
3071
3072#ifdef CONFIG_SND_HDA_POWER_SAVE
3073static struct hda_amp_list vt1709_loopbacks[] = {
3074 { 0x18, HDA_INPUT, 1 },
3075 { 0x18, HDA_INPUT, 2 },
3076 { 0x18, HDA_INPUT, 3 },
3077 { 0x18, HDA_INPUT, 4 },
3078 { }
3079};
3080#endif
3081
3082static int patch_vt1709_10ch(struct hda_codec *codec)
3083{
3084 struct via_spec *spec;
3085 int err;
3086
3087
3088 spec = via_new_spec(codec);
3089 if (spec == NULL)
3090 return -ENOMEM;
3091
3092 err = vt1709_parse_auto_config(codec);
3093 if (err < 0) {
3094 via_free(codec);
3095 return err;
3096 } else if (!err) {
3097 printk(KERN_INFO "hda_codec: Cannot set up configuration. "
3098 "Using genenic mode...\n");
3099 }
3100
3101 spec->init_verbs[spec->num_iverbs++] = vt1709_10ch_volume_init_verbs;
3102 spec->init_verbs[spec->num_iverbs++] = vt1709_uniwill_init_verbs;
3103
3104 spec->stream_name_analog = "VT1709 Analog";
3105 spec->stream_analog_playback = &vt1709_10ch_pcm_analog_playback;
3106 spec->stream_analog_capture = &vt1709_pcm_analog_capture;
3107
3108 spec->stream_name_digital = "VT1709 Digital";
3109 spec->stream_digital_playback = &vt1709_pcm_digital_playback;
3110 spec->stream_digital_capture = &vt1709_pcm_digital_capture;
3111
3112
3113 if (!spec->adc_nids && spec->input_mux) {
3114 spec->adc_nids = vt1709_adc_nids;
3115 spec->num_adc_nids = ARRAY_SIZE(vt1709_adc_nids);
3116 get_mux_nids(codec);
3117 spec->mixers[spec->num_mixers] = vt1709_capture_mixer;
3118 spec->num_mixers++;
3119 }
3120
3121 codec->patch_ops = via_patch_ops;
3122
3123 codec->patch_ops.init = via_auto_init;
3124 codec->patch_ops.unsol_event = via_unsol_event;
3125#ifdef CONFIG_SND_HDA_POWER_SAVE
3126 spec->loopback.amplist = vt1709_loopbacks;
3127#endif
3128
3129 return 0;
3130}
3131
3132
3133
3134static struct hda_verb vt1709_6ch_volume_init_verbs[] = {
3135
3136
3137
3138 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3139 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3140 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3141
3142
3143
3144
3145
3146
3147 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3148 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3149 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3150 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
3151 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3152
3153
3154
3155
3156
3157 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3158 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3159 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3160
3161
3162
3163
3164 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3165 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3166
3167
3168 {0x20, AC_VERB_SET_CONNECT_SEL, 0},
3169
3170 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3171 { }
3172};
3173
3174static int patch_vt1709_6ch(struct hda_codec *codec)
3175{
3176 struct via_spec *spec;
3177 int err;
3178
3179
3180 spec = via_new_spec(codec);
3181 if (spec == NULL)
3182 return -ENOMEM;
3183
3184 err = vt1709_parse_auto_config(codec);
3185 if (err < 0) {
3186 via_free(codec);
3187 return err;
3188 } else if (!err) {
3189 printk(KERN_INFO "hda_codec: Cannot set up configuration. "
3190 "Using genenic mode...\n");
3191 }
3192
3193 spec->init_verbs[spec->num_iverbs++] = vt1709_6ch_volume_init_verbs;
3194 spec->init_verbs[spec->num_iverbs++] = vt1709_uniwill_init_verbs;
3195
3196 spec->stream_name_analog = "VT1709 Analog";
3197 spec->stream_analog_playback = &vt1709_6ch_pcm_analog_playback;
3198 spec->stream_analog_capture = &vt1709_pcm_analog_capture;
3199
3200 spec->stream_name_digital = "VT1709 Digital";
3201 spec->stream_digital_playback = &vt1709_pcm_digital_playback;
3202 spec->stream_digital_capture = &vt1709_pcm_digital_capture;
3203
3204
3205 if (!spec->adc_nids && spec->input_mux) {
3206 spec->adc_nids = vt1709_adc_nids;
3207 spec->num_adc_nids = ARRAY_SIZE(vt1709_adc_nids);
3208 get_mux_nids(codec);
3209 spec->mixers[spec->num_mixers] = vt1709_capture_mixer;
3210 spec->num_mixers++;
3211 }
3212
3213 codec->patch_ops = via_patch_ops;
3214
3215 codec->patch_ops.init = via_auto_init;
3216 codec->patch_ops.unsol_event = via_unsol_event;
3217#ifdef CONFIG_SND_HDA_POWER_SAVE
3218 spec->loopback.amplist = vt1709_loopbacks;
3219#endif
3220 return 0;
3221}
3222
3223
3224static struct snd_kcontrol_new vt1708B_capture_mixer[] = {
3225 HDA_CODEC_VOLUME("Capture Volume", 0x13, 0x0, HDA_INPUT),
3226 HDA_CODEC_MUTE("Capture Switch", 0x13, 0x0, HDA_INPUT),
3227 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x14, 0x0, HDA_INPUT),
3228 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x14, 0x0, HDA_INPUT),
3229 {
3230 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3231
3232
3233
3234
3235 .name = "Input Source",
3236 .count = 1,
3237 .info = via_mux_enum_info,
3238 .get = via_mux_enum_get,
3239 .put = via_mux_enum_put,
3240 },
3241 { }
3242};
3243
3244
3245
3246static struct hda_verb vt1708B_8ch_volume_init_verbs[] = {
3247
3248
3249
3250 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3251 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3252
3253
3254
3255
3256
3257
3258 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3259 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3260 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3261 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
3262 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3263
3264
3265
3266
3267
3268 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3269 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3270 {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3271
3272
3273 {0x1d, AC_VERB_SET_CONNECT_SEL, 0},
3274
3275 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3276
3277 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3278 { }
3279};
3280
3281static struct hda_verb vt1708B_4ch_volume_init_verbs[] = {
3282
3283
3284
3285 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3286 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3287
3288
3289
3290
3291
3292
3293 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3294 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3295 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3296 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
3297 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3298
3299
3300
3301
3302
3303 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3304 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3305 {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3306
3307
3308 {0x1d, AC_VERB_SET_CONNECT_SEL, 0x0},
3309
3310 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3311
3312 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3313 { }
3314};
3315
3316static struct hda_verb vt1708B_uniwill_init_verbs[] = {
3317 {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE,
3318 AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT},
3319 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3320 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3321 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3322 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3323 {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3324 {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3325 {0x23, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3326 { }
3327};
3328
3329static int via_pcm_open_close(struct hda_pcm_stream *hinfo,
3330 struct hda_codec *codec,
3331 struct snd_pcm_substream *substream)
3332{
3333 int idle = substream->pstr->substream_opened == 1
3334 && substream->ref_count == 0;
3335
3336 analog_low_current_mode(codec, idle);
3337 return 0;
3338}
3339
3340static struct hda_pcm_stream vt1708B_8ch_pcm_analog_playback = {
3341 .substreams = 2,
3342 .channels_min = 2,
3343 .channels_max = 8,
3344 .nid = 0x10,
3345 .ops = {
3346 .open = via_playback_pcm_open,
3347 .prepare = via_playback_multi_pcm_prepare,
3348 .cleanup = via_playback_multi_pcm_cleanup,
3349 .close = via_pcm_open_close
3350 },
3351};
3352
3353static struct hda_pcm_stream vt1708B_4ch_pcm_analog_playback = {
3354 .substreams = 2,
3355 .channels_min = 2,
3356 .channels_max = 4,
3357 .nid = 0x10,
3358 .ops = {
3359 .open = via_playback_pcm_open,
3360 .prepare = via_playback_multi_pcm_prepare,
3361 .cleanup = via_playback_multi_pcm_cleanup
3362 },
3363};
3364
3365static struct hda_pcm_stream vt1708B_pcm_analog_capture = {
3366 .substreams = 2,
3367 .channels_min = 2,
3368 .channels_max = 2,
3369 .nid = 0x13,
3370 .ops = {
3371 .open = via_pcm_open_close,
3372 .prepare = via_capture_pcm_prepare,
3373 .cleanup = via_capture_pcm_cleanup,
3374 .close = via_pcm_open_close
3375 },
3376};
3377
3378static struct hda_pcm_stream vt1708B_pcm_digital_playback = {
3379 .substreams = 1,
3380 .channels_min = 2,
3381 .channels_max = 2,
3382
3383 .ops = {
3384 .open = via_dig_playback_pcm_open,
3385 .close = via_dig_playback_pcm_close,
3386 .prepare = via_dig_playback_pcm_prepare,
3387 .cleanup = via_dig_playback_pcm_cleanup
3388 },
3389};
3390
3391static struct hda_pcm_stream vt1708B_pcm_digital_capture = {
3392 .substreams = 1,
3393 .channels_min = 2,
3394 .channels_max = 2,
3395};
3396
3397
3398static int vt1708B_auto_fill_dac_nids(struct via_spec *spec,
3399 const struct auto_pin_cfg *cfg)
3400{
3401 int i;
3402 hda_nid_t nid;
3403
3404 spec->multiout.num_dacs = cfg->line_outs;
3405
3406 spec->multiout.dac_nids = spec->private_dac_nids;
3407
3408 for (i = 0; i < 4; i++) {
3409 nid = cfg->line_out_pins[i];
3410 if (nid) {
3411
3412 switch (i) {
3413 case AUTO_SEQ_FRONT:
3414 spec->multiout.dac_nids[i] = 0x10;
3415 break;
3416 case AUTO_SEQ_CENLFE:
3417 spec->multiout.dac_nids[i] = 0x24;
3418 break;
3419 case AUTO_SEQ_SURROUND:
3420 spec->multiout.dac_nids[i] = 0x11;
3421 break;
3422 case AUTO_SEQ_SIDE:
3423 spec->multiout.dac_nids[i] = 0x25;
3424 break;
3425 }
3426 }
3427 }
3428
3429 return 0;
3430}
3431
3432
3433static int vt1708B_auto_create_multi_out_ctls(struct via_spec *spec,
3434 const struct auto_pin_cfg *cfg)
3435{
3436 char name[32];
3437 static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" };
3438 hda_nid_t nid_vols[] = {0x16, 0x18, 0x26, 0x27};
3439 hda_nid_t nid, nid_vol = 0;
3440 int i, err;
3441
3442 for (i = 0; i <= AUTO_SEQ_SIDE; i++) {
3443 nid = cfg->line_out_pins[i];
3444
3445 if (!nid)
3446 continue;
3447
3448 nid_vol = nid_vols[i];
3449
3450 if (i == AUTO_SEQ_CENLFE) {
3451
3452 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3453 "Center Playback Volume",
3454 HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
3455 HDA_OUTPUT));
3456 if (err < 0)
3457 return err;
3458 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3459 "LFE Playback Volume",
3460 HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
3461 HDA_OUTPUT));
3462 if (err < 0)
3463 return err;
3464 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3465 "Center Playback Switch",
3466 HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
3467 HDA_OUTPUT));
3468 if (err < 0)
3469 return err;
3470 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3471 "LFE Playback Switch",
3472 HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
3473 HDA_OUTPUT));
3474 if (err < 0)
3475 return err;
3476 } else if (i == AUTO_SEQ_FRONT) {
3477
3478 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3479 "Master Front Playback Volume",
3480 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
3481 HDA_INPUT));
3482 if (err < 0)
3483 return err;
3484 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3485 "Master Front Playback Switch",
3486 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
3487 HDA_INPUT));
3488 if (err < 0)
3489 return err;
3490
3491
3492 sprintf(name, "%s Playback Volume", chname[i]);
3493 err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
3494 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3495 HDA_OUTPUT));
3496 if (err < 0)
3497 return err;
3498 sprintf(name, "%s Playback Switch", chname[i]);
3499 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
3500 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3501 HDA_OUTPUT));
3502 if (err < 0)
3503 return err;
3504 } else {
3505 sprintf(name, "%s Playback Volume", chname[i]);
3506 err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
3507 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
3508 HDA_OUTPUT));
3509 if (err < 0)
3510 return err;
3511 sprintf(name, "%s Playback Switch", chname[i]);
3512 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
3513 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
3514 HDA_OUTPUT));
3515 if (err < 0)
3516 return err;
3517 }
3518 }
3519
3520 return 0;
3521}
3522
3523static int vt1708B_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
3524{
3525 int err;
3526
3527 if (!pin)
3528 return 0;
3529
3530 spec->multiout.hp_nid = VT1708B_HP_NID;
3531 spec->hp_independent_mode_index = 1;
3532
3533 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3534 "Headphone Playback Volume",
3535 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3536 if (err < 0)
3537 return err;
3538 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3539 "Headphone Playback Switch",
3540 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3541 if (err < 0)
3542 return err;
3543
3544 create_hp_imux(spec);
3545
3546 return 0;
3547}
3548
3549
3550static int vt1708B_auto_create_analog_input_ctls(struct hda_codec *codec,
3551 const struct auto_pin_cfg *cfg)
3552{
3553 static hda_nid_t pin_idxs[] = { 0xff, 0x1f, 0x1a, 0x1b, 0x1e };
3554 return vt_auto_create_analog_input_ctls(codec, cfg, 0x16, pin_idxs,
3555 ARRAY_SIZE(pin_idxs));
3556}
3557
3558static int vt1708B_parse_auto_config(struct hda_codec *codec)
3559{
3560 struct via_spec *spec = codec->spec;
3561 int err;
3562
3563 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
3564 if (err < 0)
3565 return err;
3566 err = vt1708B_auto_fill_dac_nids(spec, &spec->autocfg);
3567 if (err < 0)
3568 return err;
3569 if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
3570 return 0;
3571
3572 err = vt1708B_auto_create_multi_out_ctls(spec, &spec->autocfg);
3573 if (err < 0)
3574 return err;
3575 err = vt1708B_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
3576 if (err < 0)
3577 return err;
3578 err = vt1708B_auto_create_analog_input_ctls(codec, &spec->autocfg);
3579 if (err < 0)
3580 return err;
3581
3582 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3583
3584 if (spec->autocfg.dig_outs)
3585 spec->multiout.dig_out_nid = VT1708B_DIGOUT_NID;
3586 spec->dig_in_pin = VT1708B_DIGIN_PIN;
3587 if (spec->autocfg.dig_in_pin)
3588 spec->dig_in_nid = VT1708B_DIGIN_NID;
3589
3590 if (spec->kctls.list)
3591 spec->mixers[spec->num_mixers++] = spec->kctls.list;
3592
3593 spec->input_mux = &spec->private_imux[0];
3594
3595 if (spec->hp_mux)
3596 via_hp_build(codec);
3597
3598 via_smart51_build(spec);
3599 return 1;
3600}
3601
3602#ifdef CONFIG_SND_HDA_POWER_SAVE
3603static struct hda_amp_list vt1708B_loopbacks[] = {
3604 { 0x16, HDA_INPUT, 1 },
3605 { 0x16, HDA_INPUT, 2 },
3606 { 0x16, HDA_INPUT, 3 },
3607 { 0x16, HDA_INPUT, 4 },
3608 { }
3609};
3610#endif
3611static int patch_vt1708S(struct hda_codec *codec);
3612static int patch_vt1708B_8ch(struct hda_codec *codec)
3613{
3614 struct via_spec *spec;
3615 int err;
3616
3617 if (get_codec_type(codec) == VT1708BCE)
3618 return patch_vt1708S(codec);
3619
3620 spec = via_new_spec(codec);
3621 if (spec == NULL)
3622 return -ENOMEM;
3623
3624
3625 err = vt1708B_parse_auto_config(codec);
3626 if (err < 0) {
3627 via_free(codec);
3628 return err;
3629 } else if (!err) {
3630 printk(KERN_INFO "hda_codec: Cannot set up configuration "
3631 "from BIOS. Using genenic mode...\n");
3632 }
3633
3634 spec->init_verbs[spec->num_iverbs++] = vt1708B_8ch_volume_init_verbs;
3635 spec->init_verbs[spec->num_iverbs++] = vt1708B_uniwill_init_verbs;
3636
3637 spec->stream_name_analog = "VT1708B Analog";
3638 spec->stream_analog_playback = &vt1708B_8ch_pcm_analog_playback;
3639 spec->stream_analog_capture = &vt1708B_pcm_analog_capture;
3640
3641 spec->stream_name_digital = "VT1708B Digital";
3642 spec->stream_digital_playback = &vt1708B_pcm_digital_playback;
3643 spec->stream_digital_capture = &vt1708B_pcm_digital_capture;
3644
3645 if (!spec->adc_nids && spec->input_mux) {
3646 spec->adc_nids = vt1708B_adc_nids;
3647 spec->num_adc_nids = ARRAY_SIZE(vt1708B_adc_nids);
3648 get_mux_nids(codec);
3649 spec->mixers[spec->num_mixers] = vt1708B_capture_mixer;
3650 spec->num_mixers++;
3651 }
3652
3653 codec->patch_ops = via_patch_ops;
3654
3655 codec->patch_ops.init = via_auto_init;
3656 codec->patch_ops.unsol_event = via_unsol_event;
3657#ifdef CONFIG_SND_HDA_POWER_SAVE
3658 spec->loopback.amplist = vt1708B_loopbacks;
3659#endif
3660
3661 return 0;
3662}
3663
3664static int patch_vt1708B_4ch(struct hda_codec *codec)
3665{
3666 struct via_spec *spec;
3667 int err;
3668
3669
3670 spec = via_new_spec(codec);
3671 if (spec == NULL)
3672 return -ENOMEM;
3673
3674
3675 err = vt1708B_parse_auto_config(codec);
3676 if (err < 0) {
3677 via_free(codec);
3678 return err;
3679 } else if (!err) {
3680 printk(KERN_INFO "hda_codec: Cannot set up configuration "
3681 "from BIOS. Using genenic mode...\n");
3682 }
3683
3684 spec->init_verbs[spec->num_iverbs++] = vt1708B_4ch_volume_init_verbs;
3685 spec->init_verbs[spec->num_iverbs++] = vt1708B_uniwill_init_verbs;
3686
3687 spec->stream_name_analog = "VT1708B Analog";
3688 spec->stream_analog_playback = &vt1708B_4ch_pcm_analog_playback;
3689 spec->stream_analog_capture = &vt1708B_pcm_analog_capture;
3690
3691 spec->stream_name_digital = "VT1708B Digital";
3692 spec->stream_digital_playback = &vt1708B_pcm_digital_playback;
3693 spec->stream_digital_capture = &vt1708B_pcm_digital_capture;
3694
3695 if (!spec->adc_nids && spec->input_mux) {
3696 spec->adc_nids = vt1708B_adc_nids;
3697 spec->num_adc_nids = ARRAY_SIZE(vt1708B_adc_nids);
3698 get_mux_nids(codec);
3699 spec->mixers[spec->num_mixers] = vt1708B_capture_mixer;
3700 spec->num_mixers++;
3701 }
3702
3703 codec->patch_ops = via_patch_ops;
3704
3705 codec->patch_ops.init = via_auto_init;
3706 codec->patch_ops.unsol_event = via_unsol_event;
3707#ifdef CONFIG_SND_HDA_POWER_SAVE
3708 spec->loopback.amplist = vt1708B_loopbacks;
3709#endif
3710
3711 return 0;
3712}
3713
3714
3715
3716
3717static struct snd_kcontrol_new vt1708S_capture_mixer[] = {
3718 HDA_CODEC_VOLUME("Capture Volume", 0x13, 0x0, HDA_INPUT),
3719 HDA_CODEC_MUTE("Capture Switch", 0x13, 0x0, HDA_INPUT),
3720 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x14, 0x0, HDA_INPUT),
3721 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x14, 0x0, HDA_INPUT),
3722 HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x1A, 0x0, HDA_INPUT),
3723 HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x1E, 0x0,
3724 HDA_INPUT),
3725 {
3726 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3727
3728
3729
3730
3731 .name = "Input Source",
3732 .count = 1,
3733 .info = via_mux_enum_info,
3734 .get = via_mux_enum_get,
3735 .put = via_mux_enum_put,
3736 },
3737 { }
3738};
3739
3740static struct hda_verb vt1708S_volume_init_verbs[] = {
3741
3742 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3743 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3744
3745
3746
3747
3748 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3749 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3750 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3751 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
3752 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3753
3754
3755 {0x1d, AC_VERB_SET_CONNECT_SEL, 0x0},
3756
3757 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3758 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3759
3760 {0x1, 0xf98, 0x1},
3761
3762 {0x1, 0xf88, 0xc0},
3763 { }
3764};
3765
3766static struct hda_verb vt1708S_uniwill_init_verbs[] = {
3767 {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE,
3768 AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT},
3769 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3770 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3771 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3772 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3773 {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3774 {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3775 {0x23, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3776 { }
3777};
3778
3779static struct hda_pcm_stream vt1708S_pcm_analog_playback = {
3780 .substreams = 2,
3781 .channels_min = 2,
3782 .channels_max = 8,
3783 .nid = 0x10,
3784 .ops = {
3785 .open = via_playback_pcm_open,
3786 .prepare = via_playback_multi_pcm_prepare,
3787 .cleanup = via_playback_multi_pcm_cleanup,
3788 .close = via_pcm_open_close
3789 },
3790};
3791
3792static struct hda_pcm_stream vt1708S_pcm_analog_capture = {
3793 .substreams = 2,
3794 .channels_min = 2,
3795 .channels_max = 2,
3796 .nid = 0x13,
3797 .ops = {
3798 .open = via_pcm_open_close,
3799 .prepare = via_capture_pcm_prepare,
3800 .cleanup = via_capture_pcm_cleanup,
3801 .close = via_pcm_open_close
3802 },
3803};
3804
3805static struct hda_pcm_stream vt1708S_pcm_digital_playback = {
3806 .substreams = 1,
3807 .channels_min = 2,
3808 .channels_max = 2,
3809
3810 .ops = {
3811 .open = via_dig_playback_pcm_open,
3812 .close = via_dig_playback_pcm_close,
3813 .prepare = via_dig_playback_pcm_prepare,
3814 .cleanup = via_dig_playback_pcm_cleanup
3815 },
3816};
3817
3818
3819static int vt1708S_auto_fill_dac_nids(struct via_spec *spec,
3820 const struct auto_pin_cfg *cfg)
3821{
3822 int i;
3823 hda_nid_t nid;
3824
3825 spec->multiout.num_dacs = cfg->line_outs;
3826
3827 spec->multiout.dac_nids = spec->private_dac_nids;
3828
3829 for (i = 0; i < 4; i++) {
3830 nid = cfg->line_out_pins[i];
3831 if (nid) {
3832
3833 switch (i) {
3834 case AUTO_SEQ_FRONT:
3835 spec->multiout.dac_nids[i] = 0x10;
3836 break;
3837 case AUTO_SEQ_CENLFE:
3838 spec->multiout.dac_nids[i] = 0x24;
3839 break;
3840 case AUTO_SEQ_SURROUND:
3841 spec->multiout.dac_nids[i] = 0x11;
3842 break;
3843 case AUTO_SEQ_SIDE:
3844 spec->multiout.dac_nids[i] = 0x25;
3845 break;
3846 }
3847 }
3848 }
3849
3850
3851 if (cfg->line_outs == 1) {
3852 spec->multiout.num_dacs = 3;
3853 spec->multiout.dac_nids[AUTO_SEQ_SURROUND] = 0x11;
3854 spec->multiout.dac_nids[AUTO_SEQ_CENLFE] = 0x24;
3855 }
3856
3857 return 0;
3858}
3859
3860
3861static int vt1708S_auto_create_multi_out_ctls(struct via_spec *spec,
3862 const struct auto_pin_cfg *cfg)
3863{
3864 char name[32];
3865 static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" };
3866 hda_nid_t nid_vols[] = {0x10, 0x11, 0x24, 0x25};
3867 hda_nid_t nid_mutes[] = {0x1C, 0x18, 0x26, 0x27};
3868 hda_nid_t nid, nid_vol, nid_mute;
3869 int i, err;
3870
3871 for (i = 0; i <= AUTO_SEQ_SIDE; i++) {
3872 nid = cfg->line_out_pins[i];
3873
3874
3875 if (!nid && i > AUTO_SEQ_CENLFE)
3876 continue;
3877
3878 nid_vol = nid_vols[i];
3879 nid_mute = nid_mutes[i];
3880
3881 if (i == AUTO_SEQ_CENLFE) {
3882
3883 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3884 "Center Playback Volume",
3885 HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
3886 HDA_OUTPUT));
3887 if (err < 0)
3888 return err;
3889 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3890 "LFE Playback Volume",
3891 HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
3892 HDA_OUTPUT));
3893 if (err < 0)
3894 return err;
3895 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3896 "Center Playback Switch",
3897 HDA_COMPOSE_AMP_VAL(nid_mute,
3898 1, 0,
3899 HDA_OUTPUT));
3900 if (err < 0)
3901 return err;
3902 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3903 "LFE Playback Switch",
3904 HDA_COMPOSE_AMP_VAL(nid_mute,
3905 2, 0,
3906 HDA_OUTPUT));
3907 if (err < 0)
3908 return err;
3909 } else if (i == AUTO_SEQ_FRONT) {
3910
3911 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3912 "Master Front Playback Volume",
3913 HDA_COMPOSE_AMP_VAL(0x16, 3, 0,
3914 HDA_INPUT));
3915 if (err < 0)
3916 return err;
3917 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3918 "Master Front Playback Switch",
3919 HDA_COMPOSE_AMP_VAL(0x16, 3, 0,
3920 HDA_INPUT));
3921 if (err < 0)
3922 return err;
3923
3924
3925 sprintf(name, "%s Playback Volume", chname[i]);
3926 err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
3927 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
3928 HDA_OUTPUT));
3929 if (err < 0)
3930 return err;
3931 sprintf(name, "%s Playback Switch", chname[i]);
3932 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
3933 HDA_COMPOSE_AMP_VAL(nid_mute,
3934 3, 0,
3935 HDA_OUTPUT));
3936 if (err < 0)
3937 return err;
3938 } else {
3939 sprintf(name, "%s Playback Volume", chname[i]);
3940 err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
3941 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
3942 HDA_OUTPUT));
3943 if (err < 0)
3944 return err;
3945 sprintf(name, "%s Playback Switch", chname[i]);
3946 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
3947 HDA_COMPOSE_AMP_VAL(nid_mute,
3948 3, 0,
3949 HDA_OUTPUT));
3950 if (err < 0)
3951 return err;
3952 }
3953 }
3954
3955 return 0;
3956}
3957
3958static int vt1708S_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
3959{
3960 int err;
3961
3962 if (!pin)
3963 return 0;
3964
3965 spec->multiout.hp_nid = VT1708S_HP_NID;
3966 spec->hp_independent_mode_index = 1;
3967
3968 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3969 "Headphone Playback Volume",
3970 HDA_COMPOSE_AMP_VAL(0x25, 3, 0, HDA_OUTPUT));
3971 if (err < 0)
3972 return err;
3973
3974 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3975 "Headphone Playback Switch",
3976 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3977 if (err < 0)
3978 return err;
3979
3980 create_hp_imux(spec);
3981
3982 return 0;
3983}
3984
3985
3986static int vt1708S_auto_create_analog_input_ctls(struct hda_codec *codec,
3987 const struct auto_pin_cfg *cfg)
3988{
3989 static hda_nid_t pin_idxs[] = { 0x1f, 0x1a, 0x1b, 0x1e, 0, 0xff };
3990 return vt_auto_create_analog_input_ctls(codec, cfg, 0x16, pin_idxs,
3991 ARRAY_SIZE(pin_idxs));
3992}
3993
3994
3995static void fill_dig_outs(struct hda_codec *codec)
3996{
3997 struct via_spec *spec = codec->spec;
3998 int i;
3999
4000 for (i = 0; i < spec->autocfg.dig_outs; i++) {
4001 hda_nid_t nid;
4002 int conn;
4003
4004 nid = spec->autocfg.dig_out_pins[i];
4005 if (!nid)
4006 continue;
4007 conn = snd_hda_get_connections(codec, nid, &nid, 1);
4008 if (conn < 1)
4009 continue;
4010 if (!spec->multiout.dig_out_nid)
4011 spec->multiout.dig_out_nid = nid;
4012 else {
4013 spec->slave_dig_outs[0] = nid;
4014 break;
4015 }
4016 }
4017}
4018
4019static int vt1708S_parse_auto_config(struct hda_codec *codec)
4020{
4021 struct via_spec *spec = codec->spec;
4022 int err;
4023
4024 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
4025 if (err < 0)
4026 return err;
4027 err = vt1708S_auto_fill_dac_nids(spec, &spec->autocfg);
4028 if (err < 0)
4029 return err;
4030 if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
4031 return 0;
4032
4033 err = vt1708S_auto_create_multi_out_ctls(spec, &spec->autocfg);
4034 if (err < 0)
4035 return err;
4036 err = vt1708S_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
4037 if (err < 0)
4038 return err;
4039 err = vt1708S_auto_create_analog_input_ctls(codec, &spec->autocfg);
4040 if (err < 0)
4041 return err;
4042
4043 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
4044
4045 fill_dig_outs(codec);
4046
4047 if (spec->kctls.list)
4048 spec->mixers[spec->num_mixers++] = spec->kctls.list;
4049
4050 spec->input_mux = &spec->private_imux[0];
4051
4052 if (spec->hp_mux)
4053 via_hp_build(codec);
4054
4055 via_smart51_build(spec);
4056 return 1;
4057}
4058
4059#ifdef CONFIG_SND_HDA_POWER_SAVE
4060static struct hda_amp_list vt1708S_loopbacks[] = {
4061 { 0x16, HDA_INPUT, 1 },
4062 { 0x16, HDA_INPUT, 2 },
4063 { 0x16, HDA_INPUT, 3 },
4064 { 0x16, HDA_INPUT, 4 },
4065 { }
4066};
4067#endif
4068
4069static void override_mic_boost(struct hda_codec *codec, hda_nid_t pin,
4070 int offset, int num_steps, int step_size)
4071{
4072 snd_hda_override_amp_caps(codec, pin, HDA_INPUT,
4073 (offset << AC_AMPCAP_OFFSET_SHIFT) |
4074 (num_steps << AC_AMPCAP_NUM_STEPS_SHIFT) |
4075 (step_size << AC_AMPCAP_STEP_SIZE_SHIFT) |
4076 (0 << AC_AMPCAP_MUTE_SHIFT));
4077}
4078
4079static int patch_vt1708S(struct hda_codec *codec)
4080{
4081 struct via_spec *spec;
4082 int err;
4083
4084
4085 spec = via_new_spec(codec);
4086 if (spec == NULL)
4087 return -ENOMEM;
4088
4089
4090 err = vt1708S_parse_auto_config(codec);
4091 if (err < 0) {
4092 via_free(codec);
4093 return err;
4094 } else if (!err) {
4095 printk(KERN_INFO "hda_codec: Cannot set up configuration "
4096 "from BIOS. Using genenic mode...\n");
4097 }
4098
4099 spec->init_verbs[spec->num_iverbs++] = vt1708S_volume_init_verbs;
4100 spec->init_verbs[spec->num_iverbs++] = vt1708S_uniwill_init_verbs;
4101
4102 if (codec->vendor_id == 0x11060440)
4103 spec->stream_name_analog = "VT1818S Analog";
4104 else
4105 spec->stream_name_analog = "VT1708S Analog";
4106 spec->stream_analog_playback = &vt1708S_pcm_analog_playback;
4107 spec->stream_analog_capture = &vt1708S_pcm_analog_capture;
4108
4109 if (codec->vendor_id == 0x11060440)
4110 spec->stream_name_digital = "VT1818S Digital";
4111 else
4112 spec->stream_name_digital = "VT1708S Digital";
4113 spec->stream_digital_playback = &vt1708S_pcm_digital_playback;
4114
4115 if (!spec->adc_nids && spec->input_mux) {
4116 spec->adc_nids = vt1708S_adc_nids;
4117 spec->num_adc_nids = ARRAY_SIZE(vt1708S_adc_nids);
4118 get_mux_nids(codec);
4119 override_mic_boost(codec, 0x1a, 0, 3, 40);
4120 override_mic_boost(codec, 0x1e, 0, 3, 40);
4121 spec->mixers[spec->num_mixers] = vt1708S_capture_mixer;
4122 spec->num_mixers++;
4123 }
4124
4125 codec->patch_ops = via_patch_ops;
4126
4127 codec->patch_ops.init = via_auto_init;
4128 codec->patch_ops.unsol_event = via_unsol_event;
4129#ifdef CONFIG_SND_HDA_POWER_SAVE
4130 spec->loopback.amplist = vt1708S_loopbacks;
4131#endif
4132
4133
4134 if (get_codec_type(codec) == VT1708BCE) {
4135 kfree(codec->chip_name);
4136 codec->chip_name = kstrdup("VT1708BCE", GFP_KERNEL);
4137 snprintf(codec->bus->card->mixername,
4138 sizeof(codec->bus->card->mixername),
4139 "%s %s", codec->vendor_name, codec->chip_name);
4140 spec->stream_name_analog = "VT1708BCE Analog";
4141 spec->stream_name_digital = "VT1708BCE Digital";
4142 }
4143 return 0;
4144}
4145
4146
4147
4148
4149static struct snd_kcontrol_new vt1702_capture_mixer[] = {
4150 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_INPUT),
4151 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_INPUT),
4152 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x20, 0x0, HDA_INPUT),
4153 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x20, 0x0, HDA_INPUT),
4154 HDA_CODEC_VOLUME("Digital Mic Capture Volume", 0x1F, 0x0, HDA_INPUT),
4155 HDA_CODEC_MUTE("Digital Mic Capture Switch", 0x1F, 0x0, HDA_INPUT),
4156 HDA_CODEC_VOLUME("Digital Mic Boost Capture Volume", 0x1E, 0x0,
4157 HDA_INPUT),
4158 {
4159 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4160
4161
4162
4163
4164 .name = "Input Source",
4165 .count = 1,
4166 .info = via_mux_enum_info,
4167 .get = via_mux_enum_get,
4168 .put = via_mux_enum_put,
4169 },
4170 { }
4171};
4172
4173static struct hda_verb vt1702_volume_init_verbs[] = {
4174
4175
4176
4177 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4178 {0x1F, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4179 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4180
4181
4182
4183
4184
4185
4186 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4187 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4188 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4189 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4190 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4191
4192
4193 {0x17, AC_VERB_SET_CONNECT_SEL, 0x1},
4194
4195 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4196 {0x1C, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4197
4198 {0x1, 0xF88, 0x3},
4199
4200 {0x1, 0xF82, 0x3F},
4201 { }
4202};
4203
4204static struct hda_verb vt1702_uniwill_init_verbs[] = {
4205 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE,
4206 AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT},
4207 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4208 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4209 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4210 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4211 { }
4212};
4213
4214static struct hda_pcm_stream vt1702_pcm_analog_playback = {
4215 .substreams = 2,
4216 .channels_min = 2,
4217 .channels_max = 2,
4218 .nid = 0x10,
4219 .ops = {
4220 .open = via_playback_pcm_open,
4221 .prepare = via_playback_multi_pcm_prepare,
4222 .cleanup = via_playback_multi_pcm_cleanup,
4223 .close = via_pcm_open_close
4224 },
4225};
4226
4227static struct hda_pcm_stream vt1702_pcm_analog_capture = {
4228 .substreams = 3,
4229 .channels_min = 2,
4230 .channels_max = 2,
4231 .nid = 0x12,
4232 .ops = {
4233 .open = via_pcm_open_close,
4234 .prepare = via_capture_pcm_prepare,
4235 .cleanup = via_capture_pcm_cleanup,
4236 .close = via_pcm_open_close
4237 },
4238};
4239
4240static struct hda_pcm_stream vt1702_pcm_digital_playback = {
4241 .substreams = 2,
4242 .channels_min = 2,
4243 .channels_max = 2,
4244
4245 .ops = {
4246 .open = via_dig_playback_pcm_open,
4247 .close = via_dig_playback_pcm_close,
4248 .prepare = via_dig_playback_pcm_prepare,
4249 .cleanup = via_dig_playback_pcm_cleanup
4250 },
4251};
4252
4253
4254static int vt1702_auto_fill_dac_nids(struct via_spec *spec,
4255 const struct auto_pin_cfg *cfg)
4256{
4257 spec->multiout.num_dacs = 1;
4258 spec->multiout.dac_nids = spec->private_dac_nids;
4259
4260 if (cfg->line_out_pins[0]) {
4261
4262 spec->multiout.dac_nids[0] = 0x10;
4263 }
4264
4265 return 0;
4266}
4267
4268
4269static int vt1702_auto_create_line_out_ctls(struct via_spec *spec,
4270 const struct auto_pin_cfg *cfg)
4271{
4272 int err;
4273
4274 if (!cfg->line_out_pins[0])
4275 return -1;
4276
4277
4278 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
4279 "Master Front Playback Volume",
4280 HDA_COMPOSE_AMP_VAL(0x1A, 3, 0, HDA_INPUT));
4281 if (err < 0)
4282 return err;
4283 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
4284 "Master Front Playback Switch",
4285 HDA_COMPOSE_AMP_VAL(0x1A, 3, 0, HDA_INPUT));
4286 if (err < 0)
4287 return err;
4288
4289
4290 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
4291 "Front Playback Volume",
4292 HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT));
4293 if (err < 0)
4294 return err;
4295 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
4296 "Front Playback Switch",
4297 HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_OUTPUT));
4298 if (err < 0)
4299 return err;
4300
4301 return 0;
4302}
4303
4304static int vt1702_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
4305{
4306 int err, i;
4307 struct hda_input_mux *imux;
4308 static const char *texts[] = { "ON", "OFF", NULL};
4309 if (!pin)
4310 return 0;
4311 spec->multiout.hp_nid = 0x1D;
4312 spec->hp_independent_mode_index = 0;
4313
4314 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
4315 "Headphone Playback Volume",
4316 HDA_COMPOSE_AMP_VAL(0x1D, 3, 0, HDA_OUTPUT));
4317 if (err < 0)
4318 return err;
4319
4320 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
4321 "Headphone Playback Switch",
4322 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
4323 if (err < 0)
4324 return err;
4325
4326 imux = &spec->private_imux[1];
4327
4328
4329 for (i = 0; texts[i]; i++)
4330 snd_hda_add_imux_item(imux, texts[i], i, NULL);
4331
4332 spec->hp_mux = &spec->private_imux[1];
4333 return 0;
4334}
4335
4336
4337static int vt1702_auto_create_analog_input_ctls(struct hda_codec *codec,
4338 const struct auto_pin_cfg *cfg)
4339{
4340 static hda_nid_t pin_idxs[] = { 0x14, 0x15, 0x18, 0xff };
4341 return vt_auto_create_analog_input_ctls(codec, cfg, 0x1a, pin_idxs,
4342 ARRAY_SIZE(pin_idxs));
4343}
4344
4345static int vt1702_parse_auto_config(struct hda_codec *codec)
4346{
4347 struct via_spec *spec = codec->spec;
4348 int err;
4349
4350 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
4351 if (err < 0)
4352 return err;
4353 err = vt1702_auto_fill_dac_nids(spec, &spec->autocfg);
4354 if (err < 0)
4355 return err;
4356 if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
4357 return 0;
4358
4359 err = vt1702_auto_create_line_out_ctls(spec, &spec->autocfg);
4360 if (err < 0)
4361 return err;
4362 err = vt1702_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
4363 if (err < 0)
4364 return err;
4365
4366 snd_hda_override_amp_caps(codec, 0x1A, HDA_INPUT,
4367 (0x17 << AC_AMPCAP_OFFSET_SHIFT) |
4368 (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) |
4369 (0x5 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4370 (1 << AC_AMPCAP_MUTE_SHIFT));
4371 err = vt1702_auto_create_analog_input_ctls(codec, &spec->autocfg);
4372 if (err < 0)
4373 return err;
4374
4375 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
4376
4377 fill_dig_outs(codec);
4378
4379 if (spec->kctls.list)
4380 spec->mixers[spec->num_mixers++] = spec->kctls.list;
4381
4382 spec->input_mux = &spec->private_imux[0];
4383
4384 if (spec->hp_mux)
4385 via_hp_build(codec);
4386
4387 return 1;
4388}
4389
4390#ifdef CONFIG_SND_HDA_POWER_SAVE
4391static struct hda_amp_list vt1702_loopbacks[] = {
4392 { 0x1A, HDA_INPUT, 1 },
4393 { 0x1A, HDA_INPUT, 2 },
4394 { 0x1A, HDA_INPUT, 3 },
4395 { 0x1A, HDA_INPUT, 4 },
4396 { }
4397};
4398#endif
4399
4400static int patch_vt1702(struct hda_codec *codec)
4401{
4402 struct via_spec *spec;
4403 int err;
4404
4405
4406 spec = via_new_spec(codec);
4407 if (spec == NULL)
4408 return -ENOMEM;
4409
4410
4411 err = vt1702_parse_auto_config(codec);
4412 if (err < 0) {
4413 via_free(codec);
4414 return err;
4415 } else if (!err) {
4416 printk(KERN_INFO "hda_codec: Cannot set up configuration "
4417 "from BIOS. Using genenic mode...\n");
4418 }
4419
4420 spec->init_verbs[spec->num_iverbs++] = vt1702_volume_init_verbs;
4421 spec->init_verbs[spec->num_iverbs++] = vt1702_uniwill_init_verbs;
4422
4423 spec->stream_name_analog = "VT1702 Analog";
4424 spec->stream_analog_playback = &vt1702_pcm_analog_playback;
4425 spec->stream_analog_capture = &vt1702_pcm_analog_capture;
4426
4427 spec->stream_name_digital = "VT1702 Digital";
4428 spec->stream_digital_playback = &vt1702_pcm_digital_playback;
4429
4430 if (!spec->adc_nids && spec->input_mux) {
4431 spec->adc_nids = vt1702_adc_nids;
4432 spec->num_adc_nids = ARRAY_SIZE(vt1702_adc_nids);
4433 get_mux_nids(codec);
4434 spec->mixers[spec->num_mixers] = vt1702_capture_mixer;
4435 spec->num_mixers++;
4436 }
4437
4438 codec->patch_ops = via_patch_ops;
4439
4440 codec->patch_ops.init = via_auto_init;
4441 codec->patch_ops.unsol_event = via_unsol_event;
4442#ifdef CONFIG_SND_HDA_POWER_SAVE
4443 spec->loopback.amplist = vt1702_loopbacks;
4444#endif
4445
4446 return 0;
4447}
4448
4449
4450
4451
4452static struct snd_kcontrol_new vt1718S_capture_mixer[] = {
4453 HDA_CODEC_VOLUME("Capture Volume", 0x10, 0x0, HDA_INPUT),
4454 HDA_CODEC_MUTE("Capture Switch", 0x10, 0x0, HDA_INPUT),
4455 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x11, 0x0, HDA_INPUT),
4456 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x11, 0x0, HDA_INPUT),
4457 HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x2b, 0x0, HDA_INPUT),
4458 HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x29, 0x0,
4459 HDA_INPUT),
4460 {
4461 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4462
4463
4464
4465 .name = "Input Source",
4466 .count = 2,
4467 .info = via_mux_enum_info,
4468 .get = via_mux_enum_get,
4469 .put = via_mux_enum_put,
4470 },
4471 { }
4472};
4473
4474static struct hda_verb vt1718S_volume_init_verbs[] = {
4475
4476
4477
4478 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4479 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4480
4481
4482
4483
4484
4485
4486 {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4487 {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4488 {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4489 {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4490 {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
4491
4492
4493 {0x28, AC_VERB_SET_CONNECT_SEL, 0x1},
4494
4495 {0x2d, AC_VERB_SET_PIN_WIDGET_CONTROL, AC_PINCTL_OUT_EN},
4496 {0x2e, AC_VERB_SET_PIN_WIDGET_CONTROL, AC_PINCTL_OUT_EN},
4497
4498 {0x2f, AC_VERB_SET_PIN_WIDGET_CONTROL, AC_PINCTL_IN_EN},
4499
4500 {0x1, 0xf88, 0x8},
4501
4502 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4503 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4504 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4505 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4506 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4507 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4508 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4509 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4510 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4511 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4512
4513 {0x34, AC_VERB_SET_CONNECT_SEL, 0x2},
4514 {0x35, AC_VERB_SET_CONNECT_SEL, 0x1},
4515
4516 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4517 { }
4518};
4519
4520
4521static struct hda_verb vt1718S_uniwill_init_verbs[] = {
4522 {0x28, AC_VERB_SET_UNSOLICITED_ENABLE,
4523 AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT},
4524 {0x24, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4525 {0x25, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4526 {0x26, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4527 {0x27, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4528 {0x29, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4529 {0x2a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4530 {0x2b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4531 { }
4532};
4533
4534static struct hda_pcm_stream vt1718S_pcm_analog_playback = {
4535 .substreams = 2,
4536 .channels_min = 2,
4537 .channels_max = 10,
4538 .nid = 0x8,
4539 .ops = {
4540 .open = via_playback_pcm_open,
4541 .prepare = via_playback_multi_pcm_prepare,
4542 .cleanup = via_playback_multi_pcm_cleanup,
4543 .close = via_pcm_open_close,
4544 },
4545};
4546
4547static struct hda_pcm_stream vt1718S_pcm_analog_capture = {
4548 .substreams = 2,
4549 .channels_min = 2,
4550 .channels_max = 2,
4551 .nid = 0x10,
4552 .ops = {
4553 .open = via_pcm_open_close,
4554 .prepare = via_capture_pcm_prepare,
4555 .cleanup = via_capture_pcm_cleanup,
4556 .close = via_pcm_open_close,
4557 },
4558};
4559
4560static struct hda_pcm_stream vt1718S_pcm_digital_playback = {
4561 .substreams = 2,
4562 .channels_min = 2,
4563 .channels_max = 2,
4564
4565 .ops = {
4566 .open = via_dig_playback_pcm_open,
4567 .close = via_dig_playback_pcm_close,
4568 .prepare = via_dig_playback_pcm_prepare,
4569 .cleanup = via_dig_playback_pcm_cleanup
4570 },
4571};
4572
4573static struct hda_pcm_stream vt1718S_pcm_digital_capture = {
4574 .substreams = 1,
4575 .channels_min = 2,
4576 .channels_max = 2,
4577};
4578
4579
4580static int vt1718S_auto_fill_dac_nids(struct via_spec *spec,
4581 const struct auto_pin_cfg *cfg)
4582{
4583 int i;
4584 hda_nid_t nid;
4585
4586 spec->multiout.num_dacs = cfg->line_outs;
4587
4588 spec->multiout.dac_nids = spec->private_dac_nids;
4589
4590 for (i = 0; i < 4; i++) {
4591 nid = cfg->line_out_pins[i];
4592 if (nid) {
4593
4594 switch (i) {
4595 case AUTO_SEQ_FRONT:
4596 spec->multiout.dac_nids[i] = 0x8;
4597 break;
4598 case AUTO_SEQ_CENLFE:
4599 spec->multiout.dac_nids[i] = 0xa;
4600 break;
4601 case AUTO_SEQ_SURROUND:
4602 spec->multiout.dac_nids[i] = 0x9;
4603 break;
4604 case AUTO_SEQ_SIDE:
4605 spec->multiout.dac_nids[i] = 0xb;
4606 break;
4607 }
4608 }
4609 }
4610
4611 return 0;
4612}
4613
4614
4615static int vt1718S_auto_create_multi_out_ctls(struct via_spec *spec,
4616 const struct auto_pin_cfg *cfg)
4617{
4618 char name[32];
4619 static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" };
4620 hda_nid_t nid_vols[] = {0x8, 0x9, 0xa, 0xb};
4621 hda_nid_t nid_mutes[] = {0x24, 0x25, 0x26, 0x27};
4622 hda_nid_t nid, nid_vol, nid_mute = 0;
4623 int i, err;
4624
4625 for (i = 0; i <= AUTO_SEQ_SIDE; i++) {
4626 nid = cfg->line_out_pins[i];
4627
4628 if (!nid)
4629 continue;
4630 nid_vol = nid_vols[i];
4631 nid_mute = nid_mutes[i];
4632
4633 if (i == AUTO_SEQ_CENLFE) {
4634
4635 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
4636 "Center Playback Volume",
4637 HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
4638 HDA_OUTPUT));
4639 if (err < 0)
4640 return err;
4641 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
4642 "LFE Playback Volume",
4643 HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
4644 HDA_OUTPUT));
4645 if (err < 0)
4646 return err;
4647 err = via_add_control(
4648 spec, VIA_CTL_WIDGET_MUTE,
4649 "Center Playback Switch",
4650 HDA_COMPOSE_AMP_VAL(nid_mute, 1, 0,
4651 HDA_OUTPUT));
4652 if (err < 0)
4653 return err;
4654 err = via_add_control(
4655 spec, VIA_CTL_WIDGET_MUTE,
4656 "LFE Playback Switch",
4657 HDA_COMPOSE_AMP_VAL(nid_mute, 2, 0,
4658 HDA_OUTPUT));
4659 if (err < 0)
4660 return err;
4661 } else if (i == AUTO_SEQ_FRONT) {
4662
4663 sprintf(name, "%s Playback Volume", chname[i]);
4664 err = via_add_control(
4665 spec, VIA_CTL_WIDGET_VOL, name,
4666 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT));
4667 if (err < 0)
4668 return err;
4669 sprintf(name, "%s Playback Switch", chname[i]);
4670 err = via_add_control(
4671 spec, VIA_CTL_WIDGET_MUTE, name,
4672 HDA_COMPOSE_AMP_VAL(nid_mute, 3, 0,
4673 HDA_OUTPUT));
4674 if (err < 0)
4675 return err;
4676 } else {
4677 sprintf(name, "%s Playback Volume", chname[i]);
4678 err = via_add_control(
4679 spec, VIA_CTL_WIDGET_VOL, name,
4680 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT));
4681 if (err < 0)
4682 return err;
4683 sprintf(name, "%s Playback Switch", chname[i]);
4684 err = via_add_control(
4685 spec, VIA_CTL_WIDGET_MUTE, name,
4686 HDA_COMPOSE_AMP_VAL(nid_mute, 3, 0,
4687 HDA_OUTPUT));
4688 if (err < 0)
4689 return err;
4690 }
4691 }
4692 return 0;
4693}
4694
4695static int vt1718S_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
4696{
4697 int err;
4698
4699 if (!pin)
4700 return 0;
4701
4702 spec->multiout.hp_nid = 0xc;
4703 spec->hp_independent_mode_index = 1;
4704
4705 err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
4706 "Headphone Playback Volume",
4707 HDA_COMPOSE_AMP_VAL(0xc, 3, 0, HDA_OUTPUT));
4708 if (err < 0)
4709 return err;
4710
4711 err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
4712 "Headphone Playback Switch",
4713 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
4714 if (err < 0)
4715 return err;
4716
4717 create_hp_imux(spec);
4718 return 0;
4719}
4720
4721
4722static int vt1718S_auto_create_analog_input_ctls(struct hda_codec *codec,
4723 const struct auto_pin_cfg *cfg)
4724{
4725 static hda_nid_t pin_idxs[] = { 0x2c, 0x2b, 0x2a, 0x29, 0, 0xff };
4726 return vt_auto_create_analog_input_ctls(codec, cfg, 0x21, pin_idxs,
4727 ARRAY_SIZE(pin_idxs));
4728}
4729
4730static int vt1718S_parse_auto_config(struct hda_codec *codec)
4731{
4732 struct via_spec *spec = codec->spec;
4733 int err;
4734
4735 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
4736
4737 if (err < 0)
4738 return err;
4739 err = vt1718S_auto_fill_dac_nids(spec, &spec->autocfg);
4740 if (err < 0)
4741 return err;
4742 if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
4743 return 0;
4744
4745 err = vt1718S_auto_create_multi_out_ctls(spec, &spec->autocfg);
4746 if (err < 0)
4747 return err;
4748 err = vt1718S_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
4749 if (err < 0)
4750 return err;
4751 err = vt1718S_auto_create_analog_input_ctls(codec, &spec->autocfg);
4752 if (err < 0)
4753 return err;
4754
4755 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
4756
4757 fill_dig_outs(codec);
4758
4759 if (spec->autocfg.dig_in_pin && codec->vendor_id == 0x11060428)
4760 spec->dig_in_nid = 0x13;
4761
4762 if (spec->kctls.list)
4763 spec->mixers[spec->num_mixers++] = spec->kctls.list;
4764
4765 spec->input_mux = &spec->private_imux[0];
4766
4767 if (spec->hp_mux)
4768 via_hp_build(codec);
4769
4770 via_smart51_build(spec);
4771
4772 return 1;
4773}
4774
4775#ifdef CONFIG_SND_HDA_POWER_SAVE
4776static struct hda_amp_list vt1718S_loopbacks[] = {
4777 { 0x21, HDA_INPUT, 1 },
4778 { 0x21, HDA_INPUT, 2 },
4779 { 0x21, HDA_INPUT, 3 },
4780 { 0x21, HDA_INPUT, 4 },
4781 { }
4782};
4783#endif
4784
4785static int patch_vt1718S(struct hda_codec *codec)
4786{
4787 struct via_spec *spec;
4788 int err;
4789
4790
4791 spec = via_new_spec(codec);
4792 if (spec == NULL)
4793 return -ENOMEM;
4794
4795
4796 err = vt1718S_parse_auto_config(codec);
4797 if (err < 0) {
4798 via_free(codec);
4799 return err;
4800 } else if (!err) {
4801 printk(KERN_INFO "hda_codec: Cannot set up configuration "
4802 "from BIOS. Using genenic mode...\n");
4803 }
4804
4805 spec->init_verbs[spec->num_iverbs++] = vt1718S_volume_init_verbs;
4806 spec->init_verbs[spec->num_iverbs++] = vt1718S_uniwill_init_verbs;
4807
4808 if (codec->vendor_id == 0x11060441)
4809 spec->stream_name_analog = "VT2020 Analog";
4810 else if (codec->vendor_id == 0x11064441)
4811 spec->stream_name_analog = "VT1828S Analog";
4812 else
4813 spec->stream_name_analog = "VT1718S Analog";
4814 spec->stream_analog_playback = &vt1718S_pcm_analog_playback;
4815 spec->stream_analog_capture = &vt1718S_pcm_analog_capture;
4816
4817 if (codec->vendor_id == 0x11060441)
4818 spec->stream_name_digital = "VT2020 Digital";
4819 else if (codec->vendor_id == 0x11064441)
4820 spec->stream_name_digital = "VT1828S Digital";
4821 else
4822 spec->stream_name_digital = "VT1718S Digital";
4823 spec->stream_digital_playback = &vt1718S_pcm_digital_playback;
4824 if (codec->vendor_id == 0x11060428 || codec->vendor_id == 0x11060441)
4825 spec->stream_digital_capture = &vt1718S_pcm_digital_capture;
4826
4827 if (!spec->adc_nids && spec->input_mux) {
4828 spec->adc_nids = vt1718S_adc_nids;
4829 spec->num_adc_nids = ARRAY_SIZE(vt1718S_adc_nids);
4830 get_mux_nids(codec);
4831 override_mic_boost(codec, 0x2b, 0, 3, 40);
4832 override_mic_boost(codec, 0x29, 0, 3, 40);
4833 spec->mixers[spec->num_mixers] = vt1718S_capture_mixer;
4834 spec->num_mixers++;
4835 }
4836
4837 codec->patch_ops = via_patch_ops;
4838
4839 codec->patch_ops.init = via_auto_init;
4840 codec->patch_ops.unsol_event = via_unsol_event;
4841
4842#ifdef CONFIG_SND_HDA_POWER_SAVE
4843 spec->loopback.amplist = vt1718S_loopbacks;
4844#endif
4845
4846 return 0;
4847}
4848
4849
4850
4851static int vt1716s_dmic_info(struct snd_kcontrol *kcontrol,
4852 struct snd_ctl_elem_info *uinfo)
4853{
4854 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
4855 uinfo->count = 1;
4856 uinfo->value.integer.min = 0;
4857 uinfo->value.integer.max = 1;
4858 return 0;
4859}
4860
4861static int vt1716s_dmic_get(struct snd_kcontrol *kcontrol,
4862 struct snd_ctl_elem_value *ucontrol)
4863{
4864 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4865 int index = 0;
4866
4867 index = snd_hda_codec_read(codec, 0x26, 0,
4868 AC_VERB_GET_CONNECT_SEL, 0);
4869 if (index != -1)
4870 *ucontrol->value.integer.value = index;
4871
4872 return 0;
4873}
4874
4875static int vt1716s_dmic_put(struct snd_kcontrol *kcontrol,
4876 struct snd_ctl_elem_value *ucontrol)
4877{
4878 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4879 struct via_spec *spec = codec->spec;
4880 int index = *ucontrol->value.integer.value;
4881
4882 snd_hda_codec_write(codec, 0x26, 0,
4883 AC_VERB_SET_CONNECT_SEL, index);
4884 spec->dmic_enabled = index;
4885 set_jack_power_state(codec);
4886
4887 return 1;
4888}
4889
4890
4891static struct snd_kcontrol_new vt1716S_capture_mixer[] = {
4892 HDA_CODEC_VOLUME("Capture Volume", 0x13, 0x0, HDA_INPUT),
4893 HDA_CODEC_MUTE("Capture Switch", 0x13, 0x0, HDA_INPUT),
4894 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x14, 0x0, HDA_INPUT),
4895 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x14, 0x0, HDA_INPUT),
4896 HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x1A, 0x0, HDA_INPUT),
4897 HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x1E, 0x0,
4898 HDA_INPUT),
4899 {
4900 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4901 .name = "Input Source",
4902 .count = 1,
4903 .info = via_mux_enum_info,
4904 .get = via_mux_enum_get,
4905 .put = via_mux_enum_put,
4906 },
4907 { }
4908};
4909
4910static struct snd_kcontrol_new vt1716s_dmic_mixer[] = {
4911 HDA_CODEC_VOLUME("Digital Mic Capture Volume", 0x22, 0x0, HDA_INPUT),
4912 {
4913 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4914 .name = "Digital Mic Capture Switch",
4915 .subdevice = HDA_SUBDEV_NID_FLAG | 0x26,
4916 .count = 1,
4917 .info = vt1716s_dmic_info,
4918 .get = vt1716s_dmic_get,
4919 .put = vt1716s_dmic_put,
4920 },
4921 {}
4922};
4923
4924
4925
4926static struct snd_kcontrol_new vt1716S_mono_out_mixer[] = {
4927 HDA_CODEC_MUTE("Mono Playback Switch", 0x2a, 0x0, HDA_OUTPUT),
4928 { }
4929};
4930
4931static struct hda_verb vt1716S_volume_init_verbs[] = {
4932
4933
4934
4935 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4936 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4937
4938
4939
4940
4941
4942
4943 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4944 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4945 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4946 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4947 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4948
4949
4950 {0x17, AC_VERB_SET_CONNECT_SEL, 0x5},
4951
4952
4953 {0x1d, AC_VERB_SET_CONNECT_SEL, 0x0},
4954
4955
4956 {0x18, AC_VERB_SET_CONNECT_SEL, 0x1},
4957
4958
4959 {0x28, AC_VERB_SET_CONNECT_SEL, 0x1},
4960
4961
4962 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4963 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4964
4965
4966 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4967 {0x2a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4968
4969 {0x2a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4970
4971 {0x1, 0xf8a, 0x80},
4972
4973 {0x1, 0xf88, 0xc0},
4974
4975 {0x1, 0xf90, 0x08},
4976 { }
4977};
4978
4979
4980static struct hda_verb vt1716S_uniwill_init_verbs[] = {
4981 {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE,
4982 AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT},
4983 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4984 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4985 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4986 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE,
4987 AC_USRSP_EN | VIA_MONO_EVENT | VIA_JACK_EVENT},
4988 {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4989 {0x23, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4990 { }
4991};
4992
4993static struct hda_pcm_stream vt1716S_pcm_analog_playback = {
4994 .substreams = 2,
4995 .channels_min = 2,
4996 .channels_max = 6,
4997 .nid = 0x10,
4998 .ops = {
4999 .open = via_playback_pcm_open,
5000 .prepare = via_playback_multi_pcm_prepare,
5001 .cleanup = via_playback_multi_pcm_cleanup,
5002 .close = via_pcm_open_close,
5003 },
5004};
5005
5006static struct hda_pcm_stream vt1716S_pcm_analog_capture = {
5007 .substreams = 2,
5008 .channels_min = 2,
5009 .channels_max = 2,
5010 .nid = 0x13,
5011 .ops = {
5012 .open = via_pcm_open_close,
5013 .prepare = via_capture_pcm_prepare,
5014 .cleanup = via_capture_pcm_cleanup,
5015 .close = via_pcm_open_close,
5016 },
5017};
5018
5019static struct hda_pcm_stream vt1716S_pcm_digital_playback = {
5020 .substreams = 2,
5021 .channels_min = 2,
5022 .channels_max = 2,
5023
5024 .ops = {
5025 .open = via_dig_playback_pcm_open,
5026 .close = via_dig_playback_pcm_close,
5027 .prepare = via_dig_playback_pcm_prepare,
5028 .cleanup = via_dig_playback_pcm_cleanup
5029 },
5030};
5031
5032
5033static int vt1716S_auto_fill_dac_nids(struct via_spec *spec,
5034 const struct auto_pin_cfg *cfg)
5035{ int i;
5036 hda_nid_t nid;
5037
5038 spec->multiout.num_dacs = cfg->line_outs;
5039
5040 spec->multiout.dac_nids = spec->private_dac_nids;
5041
5042 for (i = 0; i < 3; i++) {
5043 nid = cfg->line_out_pins[i];
5044 if (nid) {
5045
5046 switch (i) {
5047 case AUTO_SEQ_FRONT:
5048 spec->multiout.dac_nids[i] = 0x10;
5049 break;
5050 case AUTO_SEQ_CENLFE:
5051 spec->multiout.dac_nids[i] = 0x25;
5052 break;
5053 case AUTO_SEQ_SURROUND:
5054 spec->multiout.dac_nids[i] = 0x11;
5055 break;
5056 }
5057 }
5058 }
5059
5060 return 0;
5061}
5062
5063
5064static int vt1716S_auto_create_multi_out_ctls(struct via_spec *spec,
5065 const struct auto_pin_cfg *cfg)
5066{
5067 char name[32];
5068 static const char *chname[3] = { "Front", "Surround", "C/LFE" };
5069 hda_nid_t nid_vols[] = {0x10, 0x11, 0x25};
5070 hda_nid_t nid_mutes[] = {0x1C, 0x18, 0x27};
5071 hda_nid_t nid, nid_vol, nid_mute;
5072 int i, err;
5073
5074 for (i = 0; i <= AUTO_SEQ_CENLFE; i++) {
5075 nid = cfg->line_out_pins[i];
5076
5077 if (!nid)
5078 continue;
5079
5080 nid_vol = nid_vols[i];
5081 nid_mute = nid_mutes[i];
5082
5083 if (i == AUTO_SEQ_CENLFE) {
5084 err = via_add_control(
5085 spec, VIA_CTL_WIDGET_VOL,
5086 "Center Playback Volume",
5087 HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0, HDA_OUTPUT));
5088 if (err < 0)
5089 return err;
5090 err = via_add_control(
5091 spec, VIA_CTL_WIDGET_VOL,
5092 "LFE Playback Volume",
5093 HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT));
5094 if (err < 0)
5095 return err;
5096 err = via_add_control(
5097 spec, VIA_CTL_WIDGET_MUTE,
5098 "Center Playback Switch",
5099 HDA_COMPOSE_AMP_VAL(nid_mute, 1, 0,
5100 HDA_OUTPUT));
5101 if (err < 0)
5102 return err;
5103 err = via_add_control(
5104 spec, VIA_CTL_WIDGET_MUTE,
5105 "LFE Playback Switch",
5106 HDA_COMPOSE_AMP_VAL(nid_mute, 2, 0,
5107 HDA_OUTPUT));
5108 if (err < 0)
5109 return err;
5110 } else if (i == AUTO_SEQ_FRONT) {
5111
5112 err = via_add_control(
5113 spec, VIA_CTL_WIDGET_VOL,
5114