net: dsa: mt7530: set CPU port to fallback mode
[linux/fpc-iii.git] / sound / pci / hda / patch_analog.c
blob677dcc0aca978f12dd202d3f4ff401dc78e26564
1 /*
2 * HD audio interface patch for AD1882, AD1884, AD1981HD, AD1983, AD1984,
3 * AD1986A, AD1988
5 * Copyright (c) 2005-2007 Takashi Iwai <tiwai@suse.de>
7 * This driver is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This driver is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/init.h>
23 #include <linux/slab.h>
24 #include <linux/module.h>
26 #include <sound/core.h>
27 #include "hda_codec.h"
28 #include "hda_local.h"
29 #include "hda_auto_parser.h"
30 #include "hda_beep.h"
31 #include "hda_jack.h"
32 #include "hda_generic.h"
35 struct ad198x_spec {
36 struct hda_gen_spec gen;
38 /* for auto parser */
39 int smux_paths[4];
40 unsigned int cur_smux;
41 hda_nid_t eapd_nid;
43 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
47 #ifdef CONFIG_SND_HDA_INPUT_BEEP
48 /* additional beep mixers; the actual parameters are overwritten at build */
49 static const struct snd_kcontrol_new ad_beep_mixer[] = {
50 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_OUTPUT),
51 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_OUTPUT),
52 { } /* end */
55 #define set_beep_amp(spec, nid, idx, dir) \
56 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 1, idx, dir)) /* mono */
57 #else
58 #define set_beep_amp(spec, nid, idx, dir) /* NOP */
59 #endif
61 #ifdef CONFIG_SND_HDA_INPUT_BEEP
62 static int create_beep_ctls(struct hda_codec *codec)
64 struct ad198x_spec *spec = codec->spec;
65 const struct snd_kcontrol_new *knew;
67 if (!spec->beep_amp)
68 return 0;
70 for (knew = ad_beep_mixer ; knew->name; knew++) {
71 int err;
72 struct snd_kcontrol *kctl;
73 kctl = snd_ctl_new1(knew, codec);
74 if (!kctl)
75 return -ENOMEM;
76 kctl->private_value = spec->beep_amp;
77 err = snd_hda_ctl_add(codec, 0, kctl);
78 if (err < 0)
79 return err;
81 return 0;
83 #else
84 #define create_beep_ctls(codec) 0
85 #endif
88 static void ad198x_power_eapd_write(struct hda_codec *codec, hda_nid_t front,
89 hda_nid_t hp)
91 if (snd_hda_query_pin_caps(codec, front) & AC_PINCAP_EAPD)
92 snd_hda_codec_write(codec, front, 0, AC_VERB_SET_EAPD_BTLENABLE,
93 !codec->inv_eapd ? 0x00 : 0x02);
94 if (snd_hda_query_pin_caps(codec, hp) & AC_PINCAP_EAPD)
95 snd_hda_codec_write(codec, hp, 0, AC_VERB_SET_EAPD_BTLENABLE,
96 !codec->inv_eapd ? 0x00 : 0x02);
99 static void ad198x_power_eapd(struct hda_codec *codec)
101 /* We currently only handle front, HP */
102 switch (codec->core.vendor_id) {
103 case 0x11d41882:
104 case 0x11d4882a:
105 case 0x11d41884:
106 case 0x11d41984:
107 case 0x11d41883:
108 case 0x11d4184a:
109 case 0x11d4194a:
110 case 0x11d4194b:
111 case 0x11d41988:
112 case 0x11d4198b:
113 case 0x11d4989a:
114 case 0x11d4989b:
115 ad198x_power_eapd_write(codec, 0x12, 0x11);
116 break;
117 case 0x11d41981:
118 case 0x11d41983:
119 ad198x_power_eapd_write(codec, 0x05, 0x06);
120 break;
121 case 0x11d41986:
122 ad198x_power_eapd_write(codec, 0x1b, 0x1a);
123 break;
127 static void ad198x_shutup(struct hda_codec *codec)
129 snd_hda_shutup_pins(codec);
130 ad198x_power_eapd(codec);
133 #ifdef CONFIG_PM
134 static int ad198x_suspend(struct hda_codec *codec)
136 ad198x_shutup(codec);
137 return 0;
139 #endif
141 /* follow EAPD via vmaster hook */
142 static void ad_vmaster_eapd_hook(void *private_data, int enabled)
144 struct hda_codec *codec = private_data;
145 struct ad198x_spec *spec = codec->spec;
147 if (!spec->eapd_nid)
148 return;
149 if (codec->inv_eapd)
150 enabled = !enabled;
151 snd_hda_codec_write_cache(codec, spec->eapd_nid, 0,
152 AC_VERB_SET_EAPD_BTLENABLE,
153 enabled ? 0x02 : 0x00);
157 * Automatic parse of I/O pins from the BIOS configuration
160 static int ad198x_auto_build_controls(struct hda_codec *codec)
162 int err;
164 err = snd_hda_gen_build_controls(codec);
165 if (err < 0)
166 return err;
167 err = create_beep_ctls(codec);
168 if (err < 0)
169 return err;
170 return 0;
173 static const struct hda_codec_ops ad198x_auto_patch_ops = {
174 .build_controls = ad198x_auto_build_controls,
175 .build_pcms = snd_hda_gen_build_pcms,
176 .init = snd_hda_gen_init,
177 .free = snd_hda_gen_free,
178 .unsol_event = snd_hda_jack_unsol_event,
179 #ifdef CONFIG_PM
180 .check_power_status = snd_hda_gen_check_power_status,
181 .suspend = ad198x_suspend,
182 #endif
183 .reboot_notify = ad198x_shutup,
187 static int ad198x_parse_auto_config(struct hda_codec *codec, bool indep_hp)
189 struct ad198x_spec *spec = codec->spec;
190 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
191 int err;
193 codec->spdif_status_reset = 1;
194 codec->no_trigger_sense = 1;
195 codec->no_sticky_stream = 1;
197 spec->gen.indep_hp = indep_hp;
198 if (!spec->gen.add_stereo_mix_input)
199 spec->gen.add_stereo_mix_input = HDA_HINT_STEREO_MIX_AUTO;
201 err = snd_hda_parse_pin_defcfg(codec, cfg, NULL, 0);
202 if (err < 0)
203 return err;
204 err = snd_hda_gen_parse_auto_config(codec, cfg);
205 if (err < 0)
206 return err;
208 return 0;
212 * AD1986A specific
215 static int alloc_ad_spec(struct hda_codec *codec)
217 struct ad198x_spec *spec;
219 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
220 if (!spec)
221 return -ENOMEM;
222 codec->spec = spec;
223 snd_hda_gen_spec_init(&spec->gen);
224 codec->patch_ops = ad198x_auto_patch_ops;
225 return 0;
229 * AD1986A fixup codes
232 /* Lenovo N100 seems to report the reversed bit for HP jack-sensing */
233 static void ad_fixup_inv_jack_detect(struct hda_codec *codec,
234 const struct hda_fixup *fix, int action)
236 struct ad198x_spec *spec = codec->spec;
238 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
239 codec->inv_jack_detect = 1;
240 spec->gen.keep_eapd_on = 1;
241 spec->gen.vmaster_mute.hook = ad_vmaster_eapd_hook;
242 spec->eapd_nid = 0x1b;
246 /* Toshiba Satellite L40 implements EAPD in a standard way unlike others */
247 static void ad1986a_fixup_eapd(struct hda_codec *codec,
248 const struct hda_fixup *fix, int action)
250 struct ad198x_spec *spec = codec->spec;
252 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
253 codec->inv_eapd = 0;
254 spec->gen.keep_eapd_on = 1;
255 spec->eapd_nid = 0x1b;
259 /* enable stereo-mix input for avoiding regression on KDE (bko#88251) */
260 static void ad1986a_fixup_eapd_mix_in(struct hda_codec *codec,
261 const struct hda_fixup *fix, int action)
263 struct ad198x_spec *spec = codec->spec;
265 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
266 ad1986a_fixup_eapd(codec, fix, action);
267 spec->gen.add_stereo_mix_input = HDA_HINT_STEREO_MIX_ENABLE;
271 enum {
272 AD1986A_FIXUP_INV_JACK_DETECT,
273 AD1986A_FIXUP_ULTRA,
274 AD1986A_FIXUP_SAMSUNG,
275 AD1986A_FIXUP_3STACK,
276 AD1986A_FIXUP_LAPTOP,
277 AD1986A_FIXUP_LAPTOP_IMIC,
278 AD1986A_FIXUP_EAPD,
279 AD1986A_FIXUP_EAPD_MIX_IN,
280 AD1986A_FIXUP_EASYNOTE,
283 static const struct hda_fixup ad1986a_fixups[] = {
284 [AD1986A_FIXUP_INV_JACK_DETECT] = {
285 .type = HDA_FIXUP_FUNC,
286 .v.func = ad_fixup_inv_jack_detect,
288 [AD1986A_FIXUP_ULTRA] = {
289 .type = HDA_FIXUP_PINS,
290 .v.pins = (const struct hda_pintbl[]) {
291 { 0x1b, 0x90170110 }, /* speaker */
292 { 0x1d, 0x90a7013e }, /* int mic */
296 [AD1986A_FIXUP_SAMSUNG] = {
297 .type = HDA_FIXUP_PINS,
298 .v.pins = (const struct hda_pintbl[]) {
299 { 0x1b, 0x90170110 }, /* speaker */
300 { 0x1d, 0x90a7013e }, /* int mic */
301 { 0x20, 0x411111f0 }, /* N/A */
302 { 0x24, 0x411111f0 }, /* N/A */
306 [AD1986A_FIXUP_3STACK] = {
307 .type = HDA_FIXUP_PINS,
308 .v.pins = (const struct hda_pintbl[]) {
309 { 0x1a, 0x02214021 }, /* headphone */
310 { 0x1b, 0x01014011 }, /* front */
311 { 0x1c, 0x01813030 }, /* line-in */
312 { 0x1d, 0x01a19020 }, /* rear mic */
313 { 0x1e, 0x411111f0 }, /* N/A */
314 { 0x1f, 0x02a190f0 }, /* mic */
315 { 0x20, 0x411111f0 }, /* N/A */
319 [AD1986A_FIXUP_LAPTOP] = {
320 .type = HDA_FIXUP_PINS,
321 .v.pins = (const struct hda_pintbl[]) {
322 { 0x1a, 0x02214021 }, /* headphone */
323 { 0x1b, 0x90170110 }, /* speaker */
324 { 0x1c, 0x411111f0 }, /* N/A */
325 { 0x1d, 0x411111f0 }, /* N/A */
326 { 0x1e, 0x411111f0 }, /* N/A */
327 { 0x1f, 0x02a191f0 }, /* mic */
328 { 0x20, 0x411111f0 }, /* N/A */
332 [AD1986A_FIXUP_LAPTOP_IMIC] = {
333 .type = HDA_FIXUP_PINS,
334 .v.pins = (const struct hda_pintbl[]) {
335 { 0x1d, 0x90a7013e }, /* int mic */
338 .chained_before = 1,
339 .chain_id = AD1986A_FIXUP_LAPTOP,
341 [AD1986A_FIXUP_EAPD] = {
342 .type = HDA_FIXUP_FUNC,
343 .v.func = ad1986a_fixup_eapd,
345 [AD1986A_FIXUP_EAPD_MIX_IN] = {
346 .type = HDA_FIXUP_FUNC,
347 .v.func = ad1986a_fixup_eapd_mix_in,
349 [AD1986A_FIXUP_EASYNOTE] = {
350 .type = HDA_FIXUP_PINS,
351 .v.pins = (const struct hda_pintbl[]) {
352 { 0x1a, 0x0421402f }, /* headphone */
353 { 0x1b, 0x90170110 }, /* speaker */
354 { 0x1c, 0x411111f0 }, /* N/A */
355 { 0x1d, 0x90a70130 }, /* int mic */
356 { 0x1e, 0x411111f0 }, /* N/A */
357 { 0x1f, 0x04a19040 }, /* mic */
358 { 0x20, 0x411111f0 }, /* N/A */
359 { 0x21, 0x411111f0 }, /* N/A */
360 { 0x22, 0x411111f0 }, /* N/A */
361 { 0x23, 0x411111f0 }, /* N/A */
362 { 0x24, 0x411111f0 }, /* N/A */
363 { 0x25, 0x411111f0 }, /* N/A */
366 .chained = true,
367 .chain_id = AD1986A_FIXUP_EAPD_MIX_IN,
371 static const struct snd_pci_quirk ad1986a_fixup_tbl[] = {
372 SND_PCI_QUIRK(0x103c, 0x30af, "HP B2800", AD1986A_FIXUP_LAPTOP_IMIC),
373 SND_PCI_QUIRK(0x1043, 0x1153, "ASUS M9V", AD1986A_FIXUP_LAPTOP_IMIC),
374 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS Z99He", AD1986A_FIXUP_EAPD),
375 SND_PCI_QUIRK(0x1043, 0x1447, "ASUS A8JN", AD1986A_FIXUP_EAPD),
376 SND_PCI_QUIRK_MASK(0x1043, 0xff00, 0x8100, "ASUS P5", AD1986A_FIXUP_3STACK),
377 SND_PCI_QUIRK_MASK(0x1043, 0xff00, 0x8200, "ASUS M2", AD1986A_FIXUP_3STACK),
378 SND_PCI_QUIRK(0x10de, 0xcb84, "ASUS A8N-VM", AD1986A_FIXUP_3STACK),
379 SND_PCI_QUIRK(0x1179, 0xff40, "Toshiba Satellite L40", AD1986A_FIXUP_EAPD),
380 SND_PCI_QUIRK(0x144d, 0xc01e, "FSC V2060", AD1986A_FIXUP_LAPTOP),
381 SND_PCI_QUIRK_MASK(0x144d, 0xff00, 0xc000, "Samsung", AD1986A_FIXUP_SAMSUNG),
382 SND_PCI_QUIRK(0x144d, 0xc027, "Samsung Q1", AD1986A_FIXUP_ULTRA),
383 SND_PCI_QUIRK(0x1631, 0xc022, "PackardBell EasyNote MX65", AD1986A_FIXUP_EASYNOTE),
384 SND_PCI_QUIRK(0x17aa, 0x2066, "Lenovo N100", AD1986A_FIXUP_INV_JACK_DETECT),
385 SND_PCI_QUIRK(0x17aa, 0x1011, "Lenovo M55", AD1986A_FIXUP_3STACK),
386 SND_PCI_QUIRK(0x17aa, 0x1017, "Lenovo A60", AD1986A_FIXUP_3STACK),
390 static const struct hda_model_fixup ad1986a_fixup_models[] = {
391 { .id = AD1986A_FIXUP_3STACK, .name = "3stack" },
392 { .id = AD1986A_FIXUP_LAPTOP, .name = "laptop" },
393 { .id = AD1986A_FIXUP_LAPTOP_IMIC, .name = "laptop-imic" },
394 { .id = AD1986A_FIXUP_LAPTOP_IMIC, .name = "laptop-eapd" }, /* alias */
395 { .id = AD1986A_FIXUP_EAPD, .name = "eapd" },
401 static int patch_ad1986a(struct hda_codec *codec)
403 int err;
404 struct ad198x_spec *spec;
405 static hda_nid_t preferred_pairs[] = {
406 0x1a, 0x03,
407 0x1b, 0x03,
408 0x1c, 0x04,
409 0x1d, 0x05,
410 0x1e, 0x03,
414 err = alloc_ad_spec(codec);
415 if (err < 0)
416 return err;
417 spec = codec->spec;
419 /* AD1986A has the inverted EAPD implementation */
420 codec->inv_eapd = 1;
422 spec->gen.mixer_nid = 0x07;
423 spec->gen.beep_nid = 0x19;
424 set_beep_amp(spec, 0x18, 0, HDA_OUTPUT);
426 /* AD1986A has a hardware problem that it can't share a stream
427 * with multiple output pins. The copy of front to surrounds
428 * causes noisy or silent outputs at a certain timing, e.g.
429 * changing the volume.
430 * So, let's disable the shared stream.
432 spec->gen.multiout.no_share_stream = 1;
433 /* give fixed DAC/pin pairs */
434 spec->gen.preferred_dacs = preferred_pairs;
436 /* AD1986A can't manage the dynamic pin on/off smoothly */
437 spec->gen.auto_mute_via_amp = 1;
439 snd_hda_pick_fixup(codec, ad1986a_fixup_models, ad1986a_fixup_tbl,
440 ad1986a_fixups);
441 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
443 err = ad198x_parse_auto_config(codec, false);
444 if (err < 0) {
445 snd_hda_gen_free(codec);
446 return err;
449 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
451 return 0;
456 * AD1983 specific
460 * SPDIF mux control for AD1983 auto-parser
462 static int ad1983_auto_smux_enum_info(struct snd_kcontrol *kcontrol,
463 struct snd_ctl_elem_info *uinfo)
465 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
466 struct ad198x_spec *spec = codec->spec;
467 static const char * const texts2[] = { "PCM", "ADC" };
468 static const char * const texts3[] = { "PCM", "ADC1", "ADC2" };
469 hda_nid_t dig_out = spec->gen.multiout.dig_out_nid;
470 int num_conns = snd_hda_get_num_conns(codec, dig_out);
472 if (num_conns == 2)
473 return snd_hda_enum_helper_info(kcontrol, uinfo, 2, texts2);
474 else if (num_conns == 3)
475 return snd_hda_enum_helper_info(kcontrol, uinfo, 3, texts3);
476 else
477 return -EINVAL;
480 static int ad1983_auto_smux_enum_get(struct snd_kcontrol *kcontrol,
481 struct snd_ctl_elem_value *ucontrol)
483 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
484 struct ad198x_spec *spec = codec->spec;
486 ucontrol->value.enumerated.item[0] = spec->cur_smux;
487 return 0;
490 static int ad1983_auto_smux_enum_put(struct snd_kcontrol *kcontrol,
491 struct snd_ctl_elem_value *ucontrol)
493 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
494 struct ad198x_spec *spec = codec->spec;
495 unsigned int val = ucontrol->value.enumerated.item[0];
496 hda_nid_t dig_out = spec->gen.multiout.dig_out_nid;
497 int num_conns = snd_hda_get_num_conns(codec, dig_out);
499 if (val >= num_conns)
500 return -EINVAL;
501 if (spec->cur_smux == val)
502 return 0;
503 spec->cur_smux = val;
504 snd_hda_codec_write_cache(codec, dig_out, 0,
505 AC_VERB_SET_CONNECT_SEL, val);
506 return 1;
509 static const struct snd_kcontrol_new ad1983_auto_smux_mixer = {
510 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
511 .name = "IEC958 Playback Source",
512 .info = ad1983_auto_smux_enum_info,
513 .get = ad1983_auto_smux_enum_get,
514 .put = ad1983_auto_smux_enum_put,
517 static int ad1983_add_spdif_mux_ctl(struct hda_codec *codec)
519 struct ad198x_spec *spec = codec->spec;
520 hda_nid_t dig_out = spec->gen.multiout.dig_out_nid;
521 int num_conns;
523 if (!dig_out)
524 return 0;
525 num_conns = snd_hda_get_num_conns(codec, dig_out);
526 if (num_conns != 2 && num_conns != 3)
527 return 0;
528 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, &ad1983_auto_smux_mixer))
529 return -ENOMEM;
530 return 0;
533 static int patch_ad1983(struct hda_codec *codec)
535 struct ad198x_spec *spec;
536 static hda_nid_t conn_0c[] = { 0x08 };
537 static hda_nid_t conn_0d[] = { 0x09 };
538 int err;
540 err = alloc_ad_spec(codec);
541 if (err < 0)
542 return err;
543 spec = codec->spec;
545 spec->gen.mixer_nid = 0x0e;
546 spec->gen.beep_nid = 0x10;
547 set_beep_amp(spec, 0x10, 0, HDA_OUTPUT);
549 /* limit the loopback routes not to confuse the parser */
550 snd_hda_override_conn_list(codec, 0x0c, ARRAY_SIZE(conn_0c), conn_0c);
551 snd_hda_override_conn_list(codec, 0x0d, ARRAY_SIZE(conn_0d), conn_0d);
553 err = ad198x_parse_auto_config(codec, false);
554 if (err < 0)
555 goto error;
556 err = ad1983_add_spdif_mux_ctl(codec);
557 if (err < 0)
558 goto error;
559 return 0;
561 error:
562 snd_hda_gen_free(codec);
563 return err;
568 * AD1981 HD specific
571 static void ad1981_fixup_hp_eapd(struct hda_codec *codec,
572 const struct hda_fixup *fix, int action)
574 struct ad198x_spec *spec = codec->spec;
576 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
577 spec->gen.vmaster_mute.hook = ad_vmaster_eapd_hook;
578 spec->eapd_nid = 0x05;
582 /* set the upper-limit for mixer amp to 0dB for avoiding the possible
583 * damage by overloading
585 static void ad1981_fixup_amp_override(struct hda_codec *codec,
586 const struct hda_fixup *fix, int action)
588 if (action == HDA_FIXUP_ACT_PRE_PROBE)
589 snd_hda_override_amp_caps(codec, 0x11, HDA_INPUT,
590 (0x17 << AC_AMPCAP_OFFSET_SHIFT) |
591 (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) |
592 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
593 (1 << AC_AMPCAP_MUTE_SHIFT));
596 enum {
597 AD1981_FIXUP_AMP_OVERRIDE,
598 AD1981_FIXUP_HP_EAPD,
601 static const struct hda_fixup ad1981_fixups[] = {
602 [AD1981_FIXUP_AMP_OVERRIDE] = {
603 .type = HDA_FIXUP_FUNC,
604 .v.func = ad1981_fixup_amp_override,
606 [AD1981_FIXUP_HP_EAPD] = {
607 .type = HDA_FIXUP_FUNC,
608 .v.func = ad1981_fixup_hp_eapd,
609 .chained = true,
610 .chain_id = AD1981_FIXUP_AMP_OVERRIDE,
614 static const struct snd_pci_quirk ad1981_fixup_tbl[] = {
615 SND_PCI_QUIRK_VENDOR(0x1014, "Lenovo", AD1981_FIXUP_AMP_OVERRIDE),
616 SND_PCI_QUIRK_VENDOR(0x103c, "HP", AD1981_FIXUP_HP_EAPD),
617 SND_PCI_QUIRK_VENDOR(0x17aa, "Lenovo", AD1981_FIXUP_AMP_OVERRIDE),
618 /* HP nx6320 (reversed SSID, H/W bug) */
619 SND_PCI_QUIRK(0x30b0, 0x103c, "HP nx6320", AD1981_FIXUP_HP_EAPD),
623 static int patch_ad1981(struct hda_codec *codec)
625 struct ad198x_spec *spec;
626 int err;
628 err = alloc_ad_spec(codec);
629 if (err < 0)
630 return -ENOMEM;
631 spec = codec->spec;
633 spec->gen.mixer_nid = 0x0e;
634 spec->gen.beep_nid = 0x10;
635 set_beep_amp(spec, 0x0d, 0, HDA_OUTPUT);
637 snd_hda_pick_fixup(codec, NULL, ad1981_fixup_tbl, ad1981_fixups);
638 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
640 err = ad198x_parse_auto_config(codec, false);
641 if (err < 0)
642 goto error;
643 err = ad1983_add_spdif_mux_ctl(codec);
644 if (err < 0)
645 goto error;
647 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
649 return 0;
651 error:
652 snd_hda_gen_free(codec);
653 return err;
658 * AD1988
660 * Output pins and routes
662 * Pin Mix Sel DAC (*)
663 * port-A 0x11 (mute/hp) <- 0x22 <- 0x37 <- 03/04/06
664 * port-B 0x14 (mute/hp) <- 0x2b <- 0x30 <- 03/04/06
665 * port-C 0x15 (mute) <- 0x2c <- 0x31 <- 05/0a
666 * port-D 0x12 (mute/hp) <- 0x29 <- 04
667 * port-E 0x17 (mute/hp) <- 0x26 <- 0x32 <- 05/0a
668 * port-F 0x16 (mute) <- 0x2a <- 06
669 * port-G 0x24 (mute) <- 0x27 <- 05
670 * port-H 0x25 (mute) <- 0x28 <- 0a
671 * mono 0x13 (mute/amp)<- 0x1e <- 0x36 <- 03/04/06
673 * DAC0 = 03h, DAC1 = 04h, DAC2 = 05h, DAC3 = 06h, DAC4 = 0ah
674 * (*) DAC2/3/4 are swapped to DAC3/4/2 on AD198A rev.2 due to a h/w bug.
676 * Input pins and routes
678 * pin boost mix input # / adc input #
679 * port-A 0x11 -> 0x38 -> mix 2, ADC 0
680 * port-B 0x14 -> 0x39 -> mix 0, ADC 1
681 * port-C 0x15 -> 0x3a -> 33:0 - mix 1, ADC 2
682 * port-D 0x12 -> 0x3d -> mix 3, ADC 8
683 * port-E 0x17 -> 0x3c -> 34:0 - mix 4, ADC 4
684 * port-F 0x16 -> 0x3b -> mix 5, ADC 3
685 * port-G 0x24 -> N/A -> 33:1 - mix 1, 34:1 - mix 4, ADC 6
686 * port-H 0x25 -> N/A -> 33:2 - mix 1, 34:2 - mix 4, ADC 7
689 * DAC assignment
690 * 6stack - front/surr/CLFE/side/opt DACs - 04/06/05/0a/03
691 * 3stack - front/surr/CLFE/opt DACs - 04/05/0a/03
693 * Inputs of Analog Mix (0x20)
694 * 0:Port-B (front mic)
695 * 1:Port-C/G/H (line-in)
696 * 2:Port-A
697 * 3:Port-D (line-in/2)
698 * 4:Port-E/G/H (mic-in)
699 * 5:Port-F (mic2-in)
700 * 6:CD
701 * 7:Beep
703 * ADC selection
704 * 0:Port-A
705 * 1:Port-B (front mic-in)
706 * 2:Port-C (line-in)
707 * 3:Port-F (mic2-in)
708 * 4:Port-E (mic-in)
709 * 5:CD
710 * 6:Port-G
711 * 7:Port-H
712 * 8:Port-D (line-in/2)
713 * 9:Mix
715 * Proposed pin assignments by the datasheet
717 * 6-stack
718 * Port-A front headphone
719 * B front mic-in
720 * C rear line-in
721 * D rear front-out
722 * E rear mic-in
723 * F rear surround
724 * G rear CLFE
725 * H rear side
727 * 3-stack
728 * Port-A front headphone
729 * B front mic
730 * C rear line-in/surround
731 * D rear front-out
732 * E rear mic-in/CLFE
734 * laptop
735 * Port-A headphone
736 * B mic-in
737 * C docking station
738 * D internal speaker (with EAPD)
739 * E/F quad mic array
742 static int ad1988_auto_smux_enum_info(struct snd_kcontrol *kcontrol,
743 struct snd_ctl_elem_info *uinfo)
745 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
746 static const char * const texts[] = {
747 "PCM", "ADC1", "ADC2", "ADC3",
749 int num_conns = snd_hda_get_num_conns(codec, 0x0b) + 1;
750 if (num_conns > 4)
751 num_conns = 4;
752 return snd_hda_enum_helper_info(kcontrol, uinfo, num_conns, texts);
755 static int ad1988_auto_smux_enum_get(struct snd_kcontrol *kcontrol,
756 struct snd_ctl_elem_value *ucontrol)
758 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
759 struct ad198x_spec *spec = codec->spec;
761 ucontrol->value.enumerated.item[0] = spec->cur_smux;
762 return 0;
765 static int ad1988_auto_smux_enum_put(struct snd_kcontrol *kcontrol,
766 struct snd_ctl_elem_value *ucontrol)
768 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
769 struct ad198x_spec *spec = codec->spec;
770 unsigned int val = ucontrol->value.enumerated.item[0];
771 struct nid_path *path;
772 int num_conns = snd_hda_get_num_conns(codec, 0x0b) + 1;
774 if (val >= num_conns)
775 return -EINVAL;
776 if (spec->cur_smux == val)
777 return 0;
779 mutex_lock(&codec->control_mutex);
780 path = snd_hda_get_path_from_idx(codec,
781 spec->smux_paths[spec->cur_smux]);
782 if (path)
783 snd_hda_activate_path(codec, path, false, true);
784 path = snd_hda_get_path_from_idx(codec, spec->smux_paths[val]);
785 if (path)
786 snd_hda_activate_path(codec, path, true, true);
787 spec->cur_smux = val;
788 mutex_unlock(&codec->control_mutex);
789 return 1;
792 static const struct snd_kcontrol_new ad1988_auto_smux_mixer = {
793 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
794 .name = "IEC958 Playback Source",
795 .info = ad1988_auto_smux_enum_info,
796 .get = ad1988_auto_smux_enum_get,
797 .put = ad1988_auto_smux_enum_put,
800 static int ad1988_auto_init(struct hda_codec *codec)
802 struct ad198x_spec *spec = codec->spec;
803 int i, err;
805 err = snd_hda_gen_init(codec);
806 if (err < 0)
807 return err;
808 if (!spec->gen.autocfg.dig_outs)
809 return 0;
811 for (i = 0; i < 4; i++) {
812 struct nid_path *path;
813 path = snd_hda_get_path_from_idx(codec, spec->smux_paths[i]);
814 if (path)
815 snd_hda_activate_path(codec, path, path->active, false);
818 return 0;
821 static int ad1988_add_spdif_mux_ctl(struct hda_codec *codec)
823 struct ad198x_spec *spec = codec->spec;
824 int i, num_conns;
825 /* we create four static faked paths, since AD codecs have odd
826 * widget connections regarding the SPDIF out source
828 static struct nid_path fake_paths[4] = {
830 .depth = 3,
831 .path = { 0x02, 0x1d, 0x1b },
832 .idx = { 0, 0, 0 },
833 .multi = { 0, 0, 0 },
836 .depth = 4,
837 .path = { 0x08, 0x0b, 0x1d, 0x1b },
838 .idx = { 0, 0, 1, 0 },
839 .multi = { 0, 1, 0, 0 },
842 .depth = 4,
843 .path = { 0x09, 0x0b, 0x1d, 0x1b },
844 .idx = { 0, 1, 1, 0 },
845 .multi = { 0, 1, 0, 0 },
848 .depth = 4,
849 .path = { 0x0f, 0x0b, 0x1d, 0x1b },
850 .idx = { 0, 2, 1, 0 },
851 .multi = { 0, 1, 0, 0 },
855 /* SPDIF source mux appears to be present only on AD1988A */
856 if (!spec->gen.autocfg.dig_outs ||
857 get_wcaps_type(get_wcaps(codec, 0x1d)) != AC_WID_AUD_MIX)
858 return 0;
860 num_conns = snd_hda_get_num_conns(codec, 0x0b) + 1;
861 if (num_conns != 3 && num_conns != 4)
862 return 0;
864 for (i = 0; i < num_conns; i++) {
865 struct nid_path *path = snd_array_new(&spec->gen.paths);
866 if (!path)
867 return -ENOMEM;
868 *path = fake_paths[i];
869 if (!i)
870 path->active = 1;
871 spec->smux_paths[i] = snd_hda_get_path_idx(codec, path);
874 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, &ad1988_auto_smux_mixer))
875 return -ENOMEM;
877 codec->patch_ops.init = ad1988_auto_init;
879 return 0;
885 enum {
886 AD1988_FIXUP_6STACK_DIG,
889 static const struct hda_fixup ad1988_fixups[] = {
890 [AD1988_FIXUP_6STACK_DIG] = {
891 .type = HDA_FIXUP_PINS,
892 .v.pins = (const struct hda_pintbl[]) {
893 { 0x11, 0x02214130 }, /* front-hp */
894 { 0x12, 0x01014010 }, /* line-out */
895 { 0x14, 0x02a19122 }, /* front-mic */
896 { 0x15, 0x01813021 }, /* line-in */
897 { 0x16, 0x01011012 }, /* line-out */
898 { 0x17, 0x01a19020 }, /* mic */
899 { 0x1b, 0x0145f1f0 }, /* SPDIF */
900 { 0x24, 0x01016011 }, /* line-out */
901 { 0x25, 0x01012013 }, /* line-out */
907 static const struct hda_model_fixup ad1988_fixup_models[] = {
908 { .id = AD1988_FIXUP_6STACK_DIG, .name = "6stack-dig" },
912 static int patch_ad1988(struct hda_codec *codec)
914 struct ad198x_spec *spec;
915 int err;
917 err = alloc_ad_spec(codec);
918 if (err < 0)
919 return err;
920 spec = codec->spec;
922 spec->gen.mixer_nid = 0x20;
923 spec->gen.mixer_merge_nid = 0x21;
924 spec->gen.beep_nid = 0x10;
925 set_beep_amp(spec, 0x10, 0, HDA_OUTPUT);
927 snd_hda_pick_fixup(codec, ad1988_fixup_models, NULL, ad1988_fixups);
928 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
930 err = ad198x_parse_auto_config(codec, true);
931 if (err < 0)
932 goto error;
933 err = ad1988_add_spdif_mux_ctl(codec);
934 if (err < 0)
935 goto error;
937 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
939 return 0;
941 error:
942 snd_hda_gen_free(codec);
943 return err;
948 * AD1884 / AD1984
950 * port-B - front line/mic-in
951 * port-E - aux in/out
952 * port-F - aux in/out
953 * port-C - rear line/mic-in
954 * port-D - rear line/hp-out
955 * port-A - front line/hp-out
957 * AD1984 = AD1884 + two digital mic-ins
959 * AD1883 / AD1884A / AD1984A / AD1984B
961 * port-B (0x14) - front mic-in
962 * port-E (0x1c) - rear mic-in
963 * port-F (0x16) - CD / ext out
964 * port-C (0x15) - rear line-in
965 * port-D (0x12) - rear line-out
966 * port-A (0x11) - front hp-out
968 * AD1984A = AD1884A + digital-mic
969 * AD1883 = equivalent with AD1984A
970 * AD1984B = AD1984A + extra SPDIF-out
973 /* set the upper-limit for mixer amp to 0dB for avoiding the possible
974 * damage by overloading
976 static void ad1884_fixup_amp_override(struct hda_codec *codec,
977 const struct hda_fixup *fix, int action)
979 if (action == HDA_FIXUP_ACT_PRE_PROBE)
980 snd_hda_override_amp_caps(codec, 0x20, HDA_INPUT,
981 (0x17 << AC_AMPCAP_OFFSET_SHIFT) |
982 (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) |
983 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
984 (1 << AC_AMPCAP_MUTE_SHIFT));
987 /* toggle GPIO1 according to the mute state */
988 static void ad1884_vmaster_hp_gpio_hook(void *private_data, int enabled)
990 struct hda_codec *codec = private_data;
991 struct ad198x_spec *spec = codec->spec;
993 if (spec->eapd_nid)
994 ad_vmaster_eapd_hook(private_data, enabled);
995 snd_hda_codec_write_cache(codec, 0x01, 0,
996 AC_VERB_SET_GPIO_DATA,
997 enabled ? 0x00 : 0x02);
1000 static void ad1884_fixup_hp_eapd(struct hda_codec *codec,
1001 const struct hda_fixup *fix, int action)
1003 struct ad198x_spec *spec = codec->spec;
1005 switch (action) {
1006 case HDA_FIXUP_ACT_PRE_PROBE:
1007 spec->gen.vmaster_mute.hook = ad1884_vmaster_hp_gpio_hook;
1008 spec->gen.own_eapd_ctl = 1;
1009 snd_hda_codec_write_cache(codec, 0x01, 0,
1010 AC_VERB_SET_GPIO_MASK, 0x02);
1011 snd_hda_codec_write_cache(codec, 0x01, 0,
1012 AC_VERB_SET_GPIO_DIRECTION, 0x02);
1013 snd_hda_codec_write_cache(codec, 0x01, 0,
1014 AC_VERB_SET_GPIO_DATA, 0x02);
1015 break;
1016 case HDA_FIXUP_ACT_PROBE:
1017 if (spec->gen.autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
1018 spec->eapd_nid = spec->gen.autocfg.line_out_pins[0];
1019 else
1020 spec->eapd_nid = spec->gen.autocfg.speaker_pins[0];
1021 break;
1025 static void ad1884_fixup_thinkpad(struct hda_codec *codec,
1026 const struct hda_fixup *fix, int action)
1028 struct ad198x_spec *spec = codec->spec;
1030 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1031 spec->gen.keep_eapd_on = 1;
1032 spec->gen.vmaster_mute.hook = ad_vmaster_eapd_hook;
1033 spec->eapd_nid = 0x12;
1034 /* Analog PC Beeper - allow firmware/ACPI beeps */
1035 spec->beep_amp = HDA_COMPOSE_AMP_VAL(0x20, 3, 3, HDA_INPUT);
1036 spec->gen.beep_nid = 0; /* no digital beep */
1040 /* set magic COEFs for dmic */
1041 static const struct hda_verb ad1884_dmic_init_verbs[] = {
1042 {0x01, AC_VERB_SET_COEF_INDEX, 0x13f7},
1043 {0x01, AC_VERB_SET_PROC_COEF, 0x08},
1047 enum {
1048 AD1884_FIXUP_AMP_OVERRIDE,
1049 AD1884_FIXUP_HP_EAPD,
1050 AD1884_FIXUP_DMIC_COEF,
1051 AD1884_FIXUP_THINKPAD,
1052 AD1884_FIXUP_HP_TOUCHSMART,
1055 static const struct hda_fixup ad1884_fixups[] = {
1056 [AD1884_FIXUP_AMP_OVERRIDE] = {
1057 .type = HDA_FIXUP_FUNC,
1058 .v.func = ad1884_fixup_amp_override,
1060 [AD1884_FIXUP_HP_EAPD] = {
1061 .type = HDA_FIXUP_FUNC,
1062 .v.func = ad1884_fixup_hp_eapd,
1063 .chained = true,
1064 .chain_id = AD1884_FIXUP_AMP_OVERRIDE,
1066 [AD1884_FIXUP_DMIC_COEF] = {
1067 .type = HDA_FIXUP_VERBS,
1068 .v.verbs = ad1884_dmic_init_verbs,
1070 [AD1884_FIXUP_THINKPAD] = {
1071 .type = HDA_FIXUP_FUNC,
1072 .v.func = ad1884_fixup_thinkpad,
1073 .chained = true,
1074 .chain_id = AD1884_FIXUP_DMIC_COEF,
1076 [AD1884_FIXUP_HP_TOUCHSMART] = {
1077 .type = HDA_FIXUP_VERBS,
1078 .v.verbs = ad1884_dmic_init_verbs,
1079 .chained = true,
1080 .chain_id = AD1884_FIXUP_HP_EAPD,
1084 static const struct snd_pci_quirk ad1884_fixup_tbl[] = {
1085 SND_PCI_QUIRK(0x103c, 0x2a82, "HP Touchsmart", AD1884_FIXUP_HP_TOUCHSMART),
1086 SND_PCI_QUIRK_VENDOR(0x103c, "HP", AD1884_FIXUP_HP_EAPD),
1087 SND_PCI_QUIRK_VENDOR(0x17aa, "Lenovo Thinkpad", AD1884_FIXUP_THINKPAD),
1092 static int patch_ad1884(struct hda_codec *codec)
1094 struct ad198x_spec *spec;
1095 int err;
1097 err = alloc_ad_spec(codec);
1098 if (err < 0)
1099 return err;
1100 spec = codec->spec;
1102 spec->gen.mixer_nid = 0x20;
1103 spec->gen.mixer_merge_nid = 0x21;
1104 spec->gen.beep_nid = 0x10;
1105 set_beep_amp(spec, 0x10, 0, HDA_OUTPUT);
1107 snd_hda_pick_fixup(codec, NULL, ad1884_fixup_tbl, ad1884_fixups);
1108 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1110 err = ad198x_parse_auto_config(codec, true);
1111 if (err < 0)
1112 goto error;
1113 err = ad1983_add_spdif_mux_ctl(codec);
1114 if (err < 0)
1115 goto error;
1117 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1119 return 0;
1121 error:
1122 snd_hda_gen_free(codec);
1123 return err;
1127 * AD1882 / AD1882A
1129 * port-A - front hp-out
1130 * port-B - front mic-in
1131 * port-C - rear line-in, shared surr-out (3stack)
1132 * port-D - rear line-out
1133 * port-E - rear mic-in, shared clfe-out (3stack)
1134 * port-F - rear surr-out (6stack)
1135 * port-G - rear clfe-out (6stack)
1138 static int patch_ad1882(struct hda_codec *codec)
1140 struct ad198x_spec *spec;
1141 int err;
1143 err = alloc_ad_spec(codec);
1144 if (err < 0)
1145 return err;
1146 spec = codec->spec;
1148 spec->gen.mixer_nid = 0x20;
1149 spec->gen.mixer_merge_nid = 0x21;
1150 spec->gen.beep_nid = 0x10;
1151 set_beep_amp(spec, 0x10, 0, HDA_OUTPUT);
1152 err = ad198x_parse_auto_config(codec, true);
1153 if (err < 0)
1154 goto error;
1155 err = ad1988_add_spdif_mux_ctl(codec);
1156 if (err < 0)
1157 goto error;
1158 return 0;
1160 error:
1161 snd_hda_gen_free(codec);
1162 return err;
1167 * patch entries
1169 static const struct hda_device_id snd_hda_id_analog[] = {
1170 HDA_CODEC_ENTRY(0x11d4184a, "AD1884A", patch_ad1884),
1171 HDA_CODEC_ENTRY(0x11d41882, "AD1882", patch_ad1882),
1172 HDA_CODEC_ENTRY(0x11d41883, "AD1883", patch_ad1884),
1173 HDA_CODEC_ENTRY(0x11d41884, "AD1884", patch_ad1884),
1174 HDA_CODEC_ENTRY(0x11d4194a, "AD1984A", patch_ad1884),
1175 HDA_CODEC_ENTRY(0x11d4194b, "AD1984B", patch_ad1884),
1176 HDA_CODEC_ENTRY(0x11d41981, "AD1981", patch_ad1981),
1177 HDA_CODEC_ENTRY(0x11d41983, "AD1983", patch_ad1983),
1178 HDA_CODEC_ENTRY(0x11d41984, "AD1984", patch_ad1884),
1179 HDA_CODEC_ENTRY(0x11d41986, "AD1986A", patch_ad1986a),
1180 HDA_CODEC_ENTRY(0x11d41988, "AD1988", patch_ad1988),
1181 HDA_CODEC_ENTRY(0x11d4198b, "AD1988B", patch_ad1988),
1182 HDA_CODEC_ENTRY(0x11d4882a, "AD1882A", patch_ad1882),
1183 HDA_CODEC_ENTRY(0x11d4989a, "AD1989A", patch_ad1988),
1184 HDA_CODEC_ENTRY(0x11d4989b, "AD1989B", patch_ad1988),
1185 {} /* terminator */
1187 MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_analog);
1189 MODULE_LICENSE("GPL");
1190 MODULE_DESCRIPTION("Analog Devices HD-audio codec");
1192 static struct hda_codec_driver analog_driver = {
1193 .id = snd_hda_id_analog,
1196 module_hda_codec_driver(analog_driver);