blob: e0fb8c6d1bc274e4ff5f6a8bf55afa9852bf9026 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Takashi Iwai0ac85512007-06-20 15:46:13 +02002 * HD audio interface patch for AD1882, AD1884, AD1981HD, AD1983, AD1984,
3 * AD1986A, AD1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Takashi Iwai2bac6472007-05-18 18:21:41 +02005 * Copyright (c) 2005-2007 Takashi Iwai <tiwai@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
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.
11 *
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.
16 *
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
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/slab.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040024#include <linux/module.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <sound/core.h>
27#include "hda_codec.h"
28#include "hda_local.h"
Takashi Iwai128bc4b2012-05-07 17:42:31 +020029#include "hda_auto_parser.h"
Takashi Iwaic5a4bcd2009-02-06 17:22:05 +010030#include "hda_beep.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020031#include "hda_jack.h"
Takashi Iwai78bb3cb2012-12-21 15:17:06 +010032#include "hda_generic.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Takashi Iwai9ff4bc82013-01-22 16:45:58 +010034
Takashi Iwai4a3fdf32005-04-14 13:35:51 +020035struct ad198x_spec {
Takashi Iwai78bb3cb2012-12-21 15:17:06 +010036 struct hda_gen_spec gen;
37
Takashi Iwai272f3ea2013-01-22 15:31:33 +010038 /* for auto parser */
39 int smux_paths[4];
40 unsigned int cur_smux;
Takashi Iwaia928bd22013-01-22 18:18:42 +010041 hda_nid_t eapd_nid;
Takashi Iwai272f3ea2013-01-22 15:31:33 +010042
Takashi Iwaic5a4bcd2009-02-06 17:22:05 +010043 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
45
Takashi Iwai2134ea42008-01-10 16:53:55 +010046
Takashi Iwai67d634c2009-11-16 15:35:59 +010047#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwaic5a4bcd2009-02-06 17:22:05 +010048/* additional beep mixers; the actual parameters are overwritten at build */
Takashi Iwai498f5b12011-05-02 11:33:15 +020049static const struct snd_kcontrol_new ad_beep_mixer[] = {
Takashi Iwaic5a4bcd2009-02-06 17:22:05 +010050 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_OUTPUT),
Jaroslav Kysela123c07a2009-10-21 14:48:23 +020051 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_OUTPUT),
Takashi Iwaic5a4bcd2009-02-06 17:22:05 +010052 { } /* end */
53};
54
55#define set_beep_amp(spec, nid, idx, dir) \
56 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 1, idx, dir)) /* mono */
Takashi Iwai67d634c2009-11-16 15:35:59 +010057#else
58#define set_beep_amp(spec, nid, idx, dir) /* NOP */
59#endif
Takashi Iwaic5a4bcd2009-02-06 17:22:05 +010060
Takashi Iwai78bb3cb2012-12-21 15:17:06 +010061#ifdef CONFIG_SND_HDA_INPUT_BEEP
62static int create_beep_ctls(struct hda_codec *codec)
63{
64 struct ad198x_spec *spec = codec->spec;
65 const struct snd_kcontrol_new *knew;
66
67 if (!spec->beep_amp)
68 return 0;
69
Takashi Iwai632408a2013-07-05 14:14:14 +020070 for (knew = ad_beep_mixer ; knew->name; knew++) {
Takashi Iwai78bb3cb2012-12-21 15:17:06 +010071 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;
80 }
81 return 0;
82}
83#else
84#define create_beep_ctls(codec) 0
85#endif
86
Takashi Iwai4a3fdf32005-04-14 13:35:51 +020087
Daniel T Chenea52bf22009-12-27 18:48:29 -050088static void ad198x_power_eapd_write(struct hda_codec *codec, hda_nid_t front,
89 hda_nid_t hp)
90{
Raymond Yaua01ef052011-06-01 15:09:48 +080091 if (snd_hda_query_pin_caps(codec, front) & AC_PINCAP_EAPD)
92 snd_hda_codec_write(codec, front, 0, AC_VERB_SET_EAPD_BTLENABLE,
Takashi Iwai78bb3cb2012-12-21 15:17:06 +010093 !codec->inv_eapd ? 0x00 : 0x02);
Raymond Yaua01ef052011-06-01 15:09:48 +080094 if (snd_hda_query_pin_caps(codec, hp) & AC_PINCAP_EAPD)
95 snd_hda_codec_write(codec, hp, 0, AC_VERB_SET_EAPD_BTLENABLE,
Takashi Iwai78bb3cb2012-12-21 15:17:06 +010096 !codec->inv_eapd ? 0x00 : 0x02);
Daniel T Chenea52bf22009-12-27 18:48:29 -050097}
98
99static void ad198x_power_eapd(struct hda_codec *codec)
100{
101 /* We currently only handle front, HP */
Takashi Iwai7639a062015-03-03 10:07:24 +0100102 switch (codec->core.vendor_id) {
Daniel T Chenea52bf22009-12-27 18:48:29 -0500103 case 0x11d41882:
104 case 0x11d4882a:
105 case 0x11d41884:
106 case 0x11d41984:
107 case 0x11d41883:
108 case 0x11d4184a:
109 case 0x11d4194a:
110 case 0x11d4194b:
Takashi Iwai4dffbe02011-06-03 10:05:02 +0200111 case 0x11d41988:
112 case 0x11d4198b:
113 case 0x11d4989a:
114 case 0x11d4989b:
Daniel T Chenea52bf22009-12-27 18:48:29 -0500115 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;
Daniel T Chenea52bf22009-12-27 18:48:29 -0500124 }
125}
126
Takashi Iwai0da26922011-04-26 15:18:33 +0200127static void ad198x_shutup(struct hda_codec *codec)
128{
129 snd_hda_shutup_pins(codec);
130 ad198x_power_eapd(codec);
131}
132
Takashi Iwai2a439522011-07-26 09:52:50 +0200133#ifdef CONFIG_PM
Takashi Iwai68cb2b52012-07-02 15:20:37 +0200134static int ad198x_suspend(struct hda_codec *codec)
Daniel T Chenea52bf22009-12-27 18:48:29 -0500135{
136 ad198x_shutup(codec);
Daniel T Chenea52bf22009-12-27 18:48:29 -0500137 return 0;
138}
Daniel T Chenea52bf22009-12-27 18:48:29 -0500139#endif
140
Takashi Iwaif710a9f2013-11-13 09:42:56 +0100141/* follow EAPD via vmaster hook */
142static void ad_vmaster_eapd_hook(void *private_data, int enabled)
143{
144 struct hda_codec *codec = private_data;
145 struct ad198x_spec *spec = codec->spec;
146
147 if (!spec->eapd_nid)
148 return;
Takashi Iwaice8e0fd2013-12-02 15:01:35 +0100149 if (codec->inv_eapd)
150 enabled = !enabled;
Takashi Iwaif710a9f2013-11-13 09:42:56 +0100151 snd_hda_codec_update_cache(codec, spec->eapd_nid, 0,
152 AC_VERB_SET_EAPD_BTLENABLE,
153 enabled ? 0x02 : 0x00);
154}
Takashi Iwai9230d212006-03-13 13:49:49 +0100155
Takashi Iwai18a815d2006-03-01 19:54:39 +0100156/*
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100157 * Automatic parse of I/O pins from the BIOS configuration
158 */
159
160static int ad198x_auto_build_controls(struct hda_codec *codec)
161{
162 int err;
163
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;
171}
172
173static 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,
Takashi Iwai7504b6c2013-03-18 11:25:51 +0100177 .free = snd_hda_gen_free,
Takashi Iwai8a6c21a2013-01-18 07:51:17 +0100178 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100179#ifdef CONFIG_PM
180 .check_power_status = snd_hda_gen_check_power_status,
181 .suspend = ad198x_suspend,
182#endif
183 .reboot_notify = ad198x_shutup,
184};
185
186
Takashi Iwaicbd209f2014-01-13 12:40:07 +0100187static int ad198x_parse_auto_config(struct hda_codec *codec, bool indep_hp)
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100188{
189 struct ad198x_spec *spec = codec->spec;
190 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
191 int err;
192
193 codec->spdif_status_reset = 1;
194 codec->no_trigger_sense = 1;
195 codec->no_sticky_stream = 1;
196
Takashi Iwaicbd209f2014-01-13 12:40:07 +0100197 spec->gen.indep_hp = indep_hp;
Takashi Iwai74f14b32014-12-15 13:43:59 +0100198 if (!spec->gen.add_stereo_mix_input)
199 spec->gen.add_stereo_mix_input = HDA_HINT_STEREO_MIX_AUTO;
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100200
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;
207
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100208 return 0;
209}
210
211/*
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200212 * AD1986A specific
213 */
214
Takashi Iwai361dab32012-05-09 14:35:27 +0200215static int alloc_ad_spec(struct hda_codec *codec)
216{
217 struct ad198x_spec *spec;
218
219 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
220 if (!spec)
221 return -ENOMEM;
222 codec->spec = spec;
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100223 snd_hda_gen_spec_init(&spec->gen);
Takashi Iwai225068a2015-05-29 10:42:14 +0200224 codec->patch_ops = ad198x_auto_patch_ops;
Takashi Iwai361dab32012-05-09 14:35:27 +0200225 return 0;
226}
227
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100228/*
Takashi Iwaia928bd22013-01-22 18:18:42 +0100229 * AD1986A fixup codes
230 */
231
232/* Lenovo N100 seems to report the reversed bit for HP jack-sensing */
233static void ad_fixup_inv_jack_detect(struct hda_codec *codec,
234 const struct hda_fixup *fix, int action)
235{
Takashi Iwai7a3e6102013-11-13 09:39:08 +0100236 struct ad198x_spec *spec = codec->spec;
237
238 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaia928bd22013-01-22 18:18:42 +0100239 codec->inv_jack_detect = 1;
Takashi Iwai7a3e6102013-11-13 09:39:08 +0100240 spec->gen.keep_eapd_on = 1;
Takashi Iwaif710a9f2013-11-13 09:42:56 +0100241 spec->gen.vmaster_mute.hook = ad_vmaster_eapd_hook;
242 spec->eapd_nid = 0x1b;
Takashi Iwai7a3e6102013-11-13 09:39:08 +0100243 }
Takashi Iwaia928bd22013-01-22 18:18:42 +0100244}
245
Takashi Iwai4528eb12014-02-04 07:39:06 +0100246/* Toshiba Satellite L40 implements EAPD in a standard way unlike others */
247static void ad1986a_fixup_eapd(struct hda_codec *codec,
248 const struct hda_fixup *fix, int action)
249{
250 struct ad198x_spec *spec = codec->spec;
251
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;
256 }
257}
258
Takashi Iwai73276432014-12-15 13:47:25 +0100259/* enable stereo-mix input for avoiding regression on KDE (bko#88251) */
260static void ad1986a_fixup_eapd_mix_in(struct hda_codec *codec,
261 const struct hda_fixup *fix, int action)
262{
263 struct ad198x_spec *spec = codec->spec;
264
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;
268 }
269}
270
Takashi Iwaia928bd22013-01-22 18:18:42 +0100271enum {
272 AD1986A_FIXUP_INV_JACK_DETECT,
Takashi Iwaie0b27162013-07-04 16:50:46 +0200273 AD1986A_FIXUP_ULTRA,
Takashi Iwaif8c0ab12013-07-04 17:06:04 +0200274 AD1986A_FIXUP_SAMSUNG,
Takashi Iwai632408a2013-07-05 14:14:14 +0200275 AD1986A_FIXUP_3STACK,
276 AD1986A_FIXUP_LAPTOP,
277 AD1986A_FIXUP_LAPTOP_IMIC,
Takashi Iwai4528eb12014-02-04 07:39:06 +0100278 AD1986A_FIXUP_EAPD,
Takashi Iwai73276432014-12-15 13:47:25 +0100279 AD1986A_FIXUP_EAPD_MIX_IN,
280 AD1986A_FIXUP_EASYNOTE,
Takashi Iwaia928bd22013-01-22 18:18:42 +0100281};
282
283static 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,
287 },
Takashi Iwaie0b27162013-07-04 16:50:46 +0200288 [AD1986A_FIXUP_ULTRA] = {
289 .type = HDA_FIXUP_PINS,
290 .v.pins = (const struct hda_pintbl[]) {
291 { 0x1b, 0x90170110 }, /* speaker */
292 { 0x1d, 0x90a7013e }, /* int mic */
293 {}
294 },
295 },
Takashi Iwaif8c0ab12013-07-04 17:06:04 +0200296 [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 */
303 {}
304 },
305 },
Takashi Iwai632408a2013-07-05 14:14:14 +0200306 [AD1986A_FIXUP_3STACK] = {
307 .type = HDA_FIXUP_PINS,
308 .v.pins = (const struct hda_pintbl[]) {
309 { 0x1a, 0x02214021 }, /* headphone */
310 { 0x1b, 0x01014011 }, /* front */
Takashi Iwaied0e0d02014-01-07 17:48:11 +0100311 { 0x1c, 0x01813030 }, /* line-in */
312 { 0x1d, 0x01a19020 }, /* rear mic */
Takashi Iwai632408a2013-07-05 14:14:14 +0200313 { 0x1e, 0x411111f0 }, /* N/A */
314 { 0x1f, 0x02a190f0 }, /* mic */
Takashi Iwaied0e0d02014-01-07 17:48:11 +0100315 { 0x20, 0x411111f0 }, /* N/A */
Takashi Iwai632408a2013-07-05 14:14:14 +0200316 {}
317 },
318 },
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 */
329 {}
330 },
331 },
332 [AD1986A_FIXUP_LAPTOP_IMIC] = {
333 .type = HDA_FIXUP_PINS,
334 .v.pins = (const struct hda_pintbl[]) {
335 { 0x1d, 0x90a7013e }, /* int mic */
336 {}
337 },
338 .chained_before = 1,
339 .chain_id = AD1986A_FIXUP_LAPTOP,
340 },
Takashi Iwai4528eb12014-02-04 07:39:06 +0100341 [AD1986A_FIXUP_EAPD] = {
342 .type = HDA_FIXUP_FUNC,
343 .v.func = ad1986a_fixup_eapd,
344 },
Takashi Iwai73276432014-12-15 13:47:25 +0100345 [AD1986A_FIXUP_EAPD_MIX_IN] = {
346 .type = HDA_FIXUP_FUNC,
347 .v.func = ad1986a_fixup_eapd_mix_in,
348 },
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 */
364 {}
365 },
366 .chained = true,
367 .chain_id = AD1986A_FIXUP_EAPD_MIX_IN,
368 },
Takashi Iwaia928bd22013-01-22 18:18:42 +0100369};
370
371static const struct snd_pci_quirk ad1986a_fixup_tbl[] = {
Takashi Iwai632408a2013-07-05 14:14:14 +0200372 SND_PCI_QUIRK(0x103c, 0x30af, "HP B2800", AD1986A_FIXUP_LAPTOP_IMIC),
Takashi Iwaif62f5ef2014-12-09 19:58:53 +0100373 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS Z99He", AD1986A_FIXUP_EAPD),
Takashi Iwai598e3062014-05-23 09:21:06 +0200374 SND_PCI_QUIRK(0x1043, 0x1447, "ASUS A8JN", AD1986A_FIXUP_EAPD),
Takashi Iwai632408a2013-07-05 14:14:14 +0200375 SND_PCI_QUIRK_MASK(0x1043, 0xff00, 0x8100, "ASUS P5", AD1986A_FIXUP_3STACK),
376 SND_PCI_QUIRK_MASK(0x1043, 0xff00, 0x8200, "ASUS M2", AD1986A_FIXUP_3STACK),
377 SND_PCI_QUIRK(0x10de, 0xcb84, "ASUS A8N-VM", AD1986A_FIXUP_3STACK),
Takashi Iwai4528eb12014-02-04 07:39:06 +0100378 SND_PCI_QUIRK(0x1179, 0xff40, "Toshiba Satellite L40", AD1986A_FIXUP_EAPD),
Takashi Iwai632408a2013-07-05 14:14:14 +0200379 SND_PCI_QUIRK(0x144d, 0xc01e, "FSC V2060", AD1986A_FIXUP_LAPTOP),
Takashi Iwaif8c0ab12013-07-04 17:06:04 +0200380 SND_PCI_QUIRK_MASK(0x144d, 0xff00, 0xc000, "Samsung", AD1986A_FIXUP_SAMSUNG),
Takashi Iwaie0b27162013-07-04 16:50:46 +0200381 SND_PCI_QUIRK(0x144d, 0xc027, "Samsung Q1", AD1986A_FIXUP_ULTRA),
Takashi Iwai73276432014-12-15 13:47:25 +0100382 SND_PCI_QUIRK(0x1631, 0xc022, "PackardBell EasyNote MX65", AD1986A_FIXUP_EASYNOTE),
Takashi Iwaia928bd22013-01-22 18:18:42 +0100383 SND_PCI_QUIRK(0x17aa, 0x2066, "Lenovo N100", AD1986A_FIXUP_INV_JACK_DETECT),
Takashi Iwai632408a2013-07-05 14:14:14 +0200384 SND_PCI_QUIRK(0x17aa, 0x1011, "Lenovo M55", AD1986A_FIXUP_3STACK),
385 SND_PCI_QUIRK(0x17aa, 0x1017, "Lenovo A60", AD1986A_FIXUP_3STACK),
386 {}
387};
388
389static const struct hda_model_fixup ad1986a_fixup_models[] = {
390 { .id = AD1986A_FIXUP_3STACK, .name = "3stack" },
391 { .id = AD1986A_FIXUP_LAPTOP, .name = "laptop" },
392 { .id = AD1986A_FIXUP_LAPTOP_IMIC, .name = "laptop-imic" },
393 { .id = AD1986A_FIXUP_LAPTOP_IMIC, .name = "laptop-eapd" }, /* alias */
Takashi Iwai9faa73f2014-12-10 13:58:37 +0100394 { .id = AD1986A_FIXUP_EAPD, .name = "eapd" },
Takashi Iwaia928bd22013-01-22 18:18:42 +0100395 {}
396};
397
398/*
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100399 */
Takashi Iwai632408a2013-07-05 14:14:14 +0200400static int patch_ad1986a(struct hda_codec *codec)
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100401{
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100402 int err;
403 struct ad198x_spec *spec;
Takashi Iwai36907392013-12-10 17:29:26 +0100404 static hda_nid_t preferred_pairs[] = {
405 0x1a, 0x03,
406 0x1b, 0x03,
407 0x1c, 0x04,
408 0x1d, 0x05,
409 0x1e, 0x03,
410 0
411 };
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100412
413 err = alloc_ad_spec(codec);
414 if (err < 0)
415 return err;
416 spec = codec->spec;
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100417
418 /* AD1986A has the inverted EAPD implementation */
419 codec->inv_eapd = 1;
420
Takashi Iwaif2f8be42013-01-21 16:40:16 +0100421 spec->gen.mixer_nid = 0x07;
Takashi Iwai7504b6c2013-03-18 11:25:51 +0100422 spec->gen.beep_nid = 0x19;
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100423 set_beep_amp(spec, 0x18, 0, HDA_OUTPUT);
424
425 /* AD1986A has a hardware problem that it can't share a stream
426 * with multiple output pins. The copy of front to surrounds
427 * causes noisy or silent outputs at a certain timing, e.g.
428 * changing the volume.
429 * So, let's disable the shared stream.
430 */
431 spec->gen.multiout.no_share_stream = 1;
Takashi Iwai36907392013-12-10 17:29:26 +0100432 /* give fixed DAC/pin pairs */
433 spec->gen.preferred_dacs = preferred_pairs;
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100434
Takashi Iwaib3bd4fc2013-12-02 15:04:03 +0100435 /* AD1986A can't manage the dynamic pin on/off smoothly */
436 spec->gen.auto_mute_via_amp = 1;
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100437
Takashi Iwai632408a2013-07-05 14:14:14 +0200438 snd_hda_pick_fixup(codec, ad1986a_fixup_models, ad1986a_fixup_tbl,
439 ad1986a_fixups);
Takashi Iwaia928bd22013-01-22 18:18:42 +0100440 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
441
Takashi Iwaicbd209f2014-01-13 12:40:07 +0100442 err = ad198x_parse_auto_config(codec, false);
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100443 if (err < 0) {
Takashi Iwai7504b6c2013-03-18 11:25:51 +0100444 snd_hda_gen_free(codec);
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100445 return err;
446 }
447
Takashi Iwaia928bd22013-01-22 18:18:42 +0100448 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
449
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100450 return 0;
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100451}
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454/*
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200455 * AD1983 specific
456 */
457
Takashi Iwai272f3ea2013-01-22 15:31:33 +0100458/*
459 * SPDIF mux control for AD1983 auto-parser
460 */
461static int ad1983_auto_smux_enum_info(struct snd_kcontrol *kcontrol,
462 struct snd_ctl_elem_info *uinfo)
463{
464 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
465 struct ad198x_spec *spec = codec->spec;
466 static const char * const texts2[] = { "PCM", "ADC" };
467 static const char * const texts3[] = { "PCM", "ADC1", "ADC2" };
468 hda_nid_t dig_out = spec->gen.multiout.dig_out_nid;
469 int num_conns = snd_hda_get_num_conns(codec, dig_out);
470
471 if (num_conns == 2)
472 return snd_hda_enum_helper_info(kcontrol, uinfo, 2, texts2);
473 else if (num_conns == 3)
474 return snd_hda_enum_helper_info(kcontrol, uinfo, 3, texts3);
475 else
476 return -EINVAL;
477}
478
479static int ad1983_auto_smux_enum_get(struct snd_kcontrol *kcontrol,
480 struct snd_ctl_elem_value *ucontrol)
481{
482 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
483 struct ad198x_spec *spec = codec->spec;
484
485 ucontrol->value.enumerated.item[0] = spec->cur_smux;
486 return 0;
487}
488
489static int ad1983_auto_smux_enum_put(struct snd_kcontrol *kcontrol,
490 struct snd_ctl_elem_value *ucontrol)
491{
492 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
493 struct ad198x_spec *spec = codec->spec;
494 unsigned int val = ucontrol->value.enumerated.item[0];
495 hda_nid_t dig_out = spec->gen.multiout.dig_out_nid;
496 int num_conns = snd_hda_get_num_conns(codec, dig_out);
497
498 if (val >= num_conns)
499 return -EINVAL;
500 if (spec->cur_smux == val)
501 return 0;
502 spec->cur_smux = val;
503 snd_hda_codec_write_cache(codec, dig_out, 0,
504 AC_VERB_SET_CONNECT_SEL, val);
505 return 1;
506}
507
508static struct snd_kcontrol_new ad1983_auto_smux_mixer = {
509 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
510 .name = "IEC958 Playback Source",
511 .info = ad1983_auto_smux_enum_info,
512 .get = ad1983_auto_smux_enum_get,
513 .put = ad1983_auto_smux_enum_put,
514};
515
516static int ad1983_add_spdif_mux_ctl(struct hda_codec *codec)
517{
518 struct ad198x_spec *spec = codec->spec;
519 hda_nid_t dig_out = spec->gen.multiout.dig_out_nid;
520 int num_conns;
521
522 if (!dig_out)
523 return 0;
524 num_conns = snd_hda_get_num_conns(codec, dig_out);
525 if (num_conns != 2 && num_conns != 3)
526 return 0;
527 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, &ad1983_auto_smux_mixer))
528 return -ENOMEM;
529 return 0;
530}
531
Takashi Iwaibd450dc2013-07-04 15:48:04 +0200532static int patch_ad1983(struct hda_codec *codec)
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100533{
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200534 struct ad198x_spec *spec;
Takashi Iwai276ab332014-02-05 08:49:41 +0100535 static hda_nid_t conn_0c[] = { 0x08 };
536 static hda_nid_t conn_0d[] = { 0x09 };
Takashi Iwaic5a4bcd2009-02-06 17:22:05 +0100537 int err;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200538
Takashi Iwai361dab32012-05-09 14:35:27 +0200539 err = alloc_ad_spec(codec);
540 if (err < 0)
541 return err;
542 spec = codec->spec;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200543
Takashi Iwaic7579fe2014-02-05 07:28:10 +0100544 spec->gen.mixer_nid = 0x0e;
Takashi Iwai7504b6c2013-03-18 11:25:51 +0100545 spec->gen.beep_nid = 0x10;
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100546 set_beep_amp(spec, 0x10, 0, HDA_OUTPUT);
Takashi Iwai276ab332014-02-05 08:49:41 +0100547
548 /* limit the loopback routes not to confuse the parser */
549 snd_hda_override_conn_list(codec, 0x0c, ARRAY_SIZE(conn_0c), conn_0c);
550 snd_hda_override_conn_list(codec, 0x0d, ARRAY_SIZE(conn_0d), conn_0d);
551
Takashi Iwaicbd209f2014-01-13 12:40:07 +0100552 err = ad198x_parse_auto_config(codec, false);
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100553 if (err < 0)
554 goto error;
555 err = ad1983_add_spdif_mux_ctl(codec);
556 if (err < 0)
557 goto error;
558 return 0;
559
560 error:
Takashi Iwai7504b6c2013-03-18 11:25:51 +0100561 snd_hda_gen_free(codec);
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100562 return err;
563}
564
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200565
566/*
567 * AD1981 HD specific
568 */
569
Takashi Iwaia928bd22013-01-22 18:18:42 +0100570static void ad1981_fixup_hp_eapd(struct hda_codec *codec,
571 const struct hda_fixup *fix, int action)
572{
573 struct ad198x_spec *spec = codec->spec;
574
575 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
576 spec->gen.vmaster_mute.hook = ad_vmaster_eapd_hook;
577 spec->eapd_nid = 0x05;
578 }
579}
580
581/* set the upper-limit for mixer amp to 0dB for avoiding the possible
582 * damage by overloading
583 */
584static void ad1981_fixup_amp_override(struct hda_codec *codec,
585 const struct hda_fixup *fix, int action)
586{
587 if (action == HDA_FIXUP_ACT_PRE_PROBE)
588 snd_hda_override_amp_caps(codec, 0x11, HDA_INPUT,
589 (0x17 << AC_AMPCAP_OFFSET_SHIFT) |
590 (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) |
591 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
592 (1 << AC_AMPCAP_MUTE_SHIFT));
593}
594
595enum {
596 AD1981_FIXUP_AMP_OVERRIDE,
597 AD1981_FIXUP_HP_EAPD,
598};
599
600static const struct hda_fixup ad1981_fixups[] = {
601 [AD1981_FIXUP_AMP_OVERRIDE] = {
602 .type = HDA_FIXUP_FUNC,
603 .v.func = ad1981_fixup_amp_override,
604 },
605 [AD1981_FIXUP_HP_EAPD] = {
606 .type = HDA_FIXUP_FUNC,
607 .v.func = ad1981_fixup_hp_eapd,
608 .chained = true,
609 .chain_id = AD1981_FIXUP_AMP_OVERRIDE,
610 },
611};
612
613static const struct snd_pci_quirk ad1981_fixup_tbl[] = {
614 SND_PCI_QUIRK_VENDOR(0x1014, "Lenovo", AD1981_FIXUP_AMP_OVERRIDE),
615 SND_PCI_QUIRK_VENDOR(0x103c, "HP", AD1981_FIXUP_HP_EAPD),
616 SND_PCI_QUIRK_VENDOR(0x17aa, "Lenovo", AD1981_FIXUP_AMP_OVERRIDE),
617 /* HP nx6320 (reversed SSID, H/W bug) */
618 SND_PCI_QUIRK(0x30b0, 0x103c, "HP nx6320", AD1981_FIXUP_HP_EAPD),
619 {}
620};
621
Takashi Iwaibd450dc2013-07-04 15:48:04 +0200622static int patch_ad1981(struct hda_codec *codec)
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100623{
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200624 struct ad198x_spec *spec;
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100625 int err;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200626
Takashi Iwai361dab32012-05-09 14:35:27 +0200627 err = alloc_ad_spec(codec);
628 if (err < 0)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200629 return -ENOMEM;
Takashi Iwai361dab32012-05-09 14:35:27 +0200630 spec = codec->spec;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200631
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100632 spec->gen.mixer_nid = 0x0e;
Takashi Iwai7504b6c2013-03-18 11:25:51 +0100633 spec->gen.beep_nid = 0x10;
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100634 set_beep_amp(spec, 0x0d, 0, HDA_OUTPUT);
Takashi Iwaia928bd22013-01-22 18:18:42 +0100635
636 snd_hda_pick_fixup(codec, NULL, ad1981_fixup_tbl, ad1981_fixups);
637 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
638
Takashi Iwaicbd209f2014-01-13 12:40:07 +0100639 err = ad198x_parse_auto_config(codec, false);
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100640 if (err < 0)
641 goto error;
642 err = ad1983_add_spdif_mux_ctl(codec);
643 if (err < 0)
644 goto error;
Takashi Iwaia928bd22013-01-22 18:18:42 +0100645
646 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
647
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100648 return 0;
649
650 error:
Takashi Iwai7504b6c2013-03-18 11:25:51 +0100651 snd_hda_gen_free(codec);
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100652 return err;
653}
654
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200655
656/*
Takashi Iwaifd66e0d2005-11-17 15:31:34 +0100657 * AD1988
658 *
659 * Output pins and routes
660 *
Takashi Iwaid32410b12005-11-24 16:06:23 +0100661 * Pin Mix Sel DAC (*)
Takashi Iwaifd66e0d2005-11-17 15:31:34 +0100662 * port-A 0x11 (mute/hp) <- 0x22 <- 0x37 <- 03/04/06
663 * port-B 0x14 (mute/hp) <- 0x2b <- 0x30 <- 03/04/06
664 * port-C 0x15 (mute) <- 0x2c <- 0x31 <- 05/0a
665 * port-D 0x12 (mute/hp) <- 0x29 <- 04
666 * port-E 0x17 (mute/hp) <- 0x26 <- 0x32 <- 05/0a
667 * port-F 0x16 (mute) <- 0x2a <- 06
668 * port-G 0x24 (mute) <- 0x27 <- 05
669 * port-H 0x25 (mute) <- 0x28 <- 0a
670 * mono 0x13 (mute/amp)<- 0x1e <- 0x36 <- 03/04/06
671 *
Takashi Iwaid32410b12005-11-24 16:06:23 +0100672 * DAC0 = 03h, DAC1 = 04h, DAC2 = 05h, DAC3 = 06h, DAC4 = 0ah
673 * (*) DAC2/3/4 are swapped to DAC3/4/2 on AD198A rev.2 due to a h/w bug.
Takashi Iwaifd66e0d2005-11-17 15:31:34 +0100674 *
675 * Input pins and routes
676 *
677 * pin boost mix input # / adc input #
678 * port-A 0x11 -> 0x38 -> mix 2, ADC 0
679 * port-B 0x14 -> 0x39 -> mix 0, ADC 1
680 * port-C 0x15 -> 0x3a -> 33:0 - mix 1, ADC 2
681 * port-D 0x12 -> 0x3d -> mix 3, ADC 8
682 * port-E 0x17 -> 0x3c -> 34:0 - mix 4, ADC 4
683 * port-F 0x16 -> 0x3b -> mix 5, ADC 3
684 * port-G 0x24 -> N/A -> 33:1 - mix 1, 34:1 - mix 4, ADC 6
685 * port-H 0x25 -> N/A -> 33:2 - mix 1, 34:2 - mix 4, ADC 7
686 *
687 *
688 * DAC assignment
Takashi Iwaid32410b12005-11-24 16:06:23 +0100689 * 6stack - front/surr/CLFE/side/opt DACs - 04/06/05/0a/03
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +0100690 * 3stack - front/surr/CLFE/opt DACs - 04/05/0a/03
Takashi Iwaifd66e0d2005-11-17 15:31:34 +0100691 *
692 * Inputs of Analog Mix (0x20)
693 * 0:Port-B (front mic)
694 * 1:Port-C/G/H (line-in)
695 * 2:Port-A
696 * 3:Port-D (line-in/2)
697 * 4:Port-E/G/H (mic-in)
698 * 5:Port-F (mic2-in)
699 * 6:CD
700 * 7:Beep
701 *
702 * ADC selection
703 * 0:Port-A
704 * 1:Port-B (front mic-in)
705 * 2:Port-C (line-in)
706 * 3:Port-F (mic2-in)
707 * 4:Port-E (mic-in)
708 * 5:CD
709 * 6:Port-G
710 * 7:Port-H
711 * 8:Port-D (line-in/2)
712 * 9:Mix
713 *
714 * Proposed pin assignments by the datasheet
715 *
716 * 6-stack
717 * Port-A front headphone
718 * B front mic-in
719 * C rear line-in
720 * D rear front-out
721 * E rear mic-in
722 * F rear surround
723 * G rear CLFE
724 * H rear side
725 *
726 * 3-stack
727 * Port-A front headphone
728 * B front mic
729 * C rear line-in/surround
730 * D rear front-out
731 * E rear mic-in/CLFE
732 *
733 * laptop
734 * Port-A headphone
735 * B mic-in
736 * C docking station
737 * D internal speaker (with EAPD)
738 * E/F quad mic array
739 */
740
Takashi Iwai272f3ea2013-01-22 15:31:33 +0100741static int ad1988_auto_smux_enum_info(struct snd_kcontrol *kcontrol,
742 struct snd_ctl_elem_info *uinfo)
743{
744 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
745 static const char * const texts[] = {
746 "PCM", "ADC1", "ADC2", "ADC3",
747 };
748 int num_conns = snd_hda_get_num_conns(codec, 0x0b) + 1;
749 if (num_conns > 4)
750 num_conns = 4;
751 return snd_hda_enum_helper_info(kcontrol, uinfo, num_conns, texts);
752}
753
754static int ad1988_auto_smux_enum_get(struct snd_kcontrol *kcontrol,
755 struct snd_ctl_elem_value *ucontrol)
756{
757 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
758 struct ad198x_spec *spec = codec->spec;
759
760 ucontrol->value.enumerated.item[0] = spec->cur_smux;
761 return 0;
762}
763
764static int ad1988_auto_smux_enum_put(struct snd_kcontrol *kcontrol,
765 struct snd_ctl_elem_value *ucontrol)
766{
767 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
768 struct ad198x_spec *spec = codec->spec;
769 unsigned int val = ucontrol->value.enumerated.item[0];
770 struct nid_path *path;
771 int num_conns = snd_hda_get_num_conns(codec, 0x0b) + 1;
772
773 if (val >= num_conns)
774 return -EINVAL;
775 if (spec->cur_smux == val)
776 return 0;
777
778 mutex_lock(&codec->control_mutex);
Takashi Iwai272f3ea2013-01-22 15:31:33 +0100779 path = snd_hda_get_path_from_idx(codec,
780 spec->smux_paths[spec->cur_smux]);
781 if (path)
782 snd_hda_activate_path(codec, path, false, true);
783 path = snd_hda_get_path_from_idx(codec, spec->smux_paths[val]);
784 if (path)
785 snd_hda_activate_path(codec, path, true, true);
786 spec->cur_smux = val;
Takashi Iwai272f3ea2013-01-22 15:31:33 +0100787 mutex_unlock(&codec->control_mutex);
Takashi Iwai272f3ea2013-01-22 15:31:33 +0100788 return 1;
789}
790
791static struct snd_kcontrol_new ad1988_auto_smux_mixer = {
792 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
793 .name = "IEC958 Playback Source",
794 .info = ad1988_auto_smux_enum_info,
795 .get = ad1988_auto_smux_enum_get,
796 .put = ad1988_auto_smux_enum_put,
797};
798
799static int ad1988_auto_init(struct hda_codec *codec)
800{
801 struct ad198x_spec *spec = codec->spec;
802 int i, err;
803
804 err = snd_hda_gen_init(codec);
805 if (err < 0)
806 return err;
807 if (!spec->gen.autocfg.dig_outs)
808 return 0;
809
810 for (i = 0; i < 4; i++) {
811 struct nid_path *path;
812 path = snd_hda_get_path_from_idx(codec, spec->smux_paths[i]);
813 if (path)
814 snd_hda_activate_path(codec, path, path->active, false);
815 }
816
817 return 0;
818}
819
820static int ad1988_add_spdif_mux_ctl(struct hda_codec *codec)
821{
822 struct ad198x_spec *spec = codec->spec;
823 int i, num_conns;
824 /* we create four static faked paths, since AD codecs have odd
825 * widget connections regarding the SPDIF out source
826 */
827 static struct nid_path fake_paths[4] = {
828 {
829 .depth = 3,
830 .path = { 0x02, 0x1d, 0x1b },
831 .idx = { 0, 0, 0 },
832 .multi = { 0, 0, 0 },
833 },
834 {
835 .depth = 4,
836 .path = { 0x08, 0x0b, 0x1d, 0x1b },
837 .idx = { 0, 0, 1, 0 },
838 .multi = { 0, 1, 0, 0 },
839 },
840 {
841 .depth = 4,
842 .path = { 0x09, 0x0b, 0x1d, 0x1b },
843 .idx = { 0, 1, 1, 0 },
844 .multi = { 0, 1, 0, 0 },
845 },
846 {
847 .depth = 4,
848 .path = { 0x0f, 0x0b, 0x1d, 0x1b },
849 .idx = { 0, 2, 1, 0 },
850 .multi = { 0, 1, 0, 0 },
851 },
852 };
853
854 /* SPDIF source mux appears to be present only on AD1988A */
855 if (!spec->gen.autocfg.dig_outs ||
856 get_wcaps_type(get_wcaps(codec, 0x1d)) != AC_WID_AUD_MIX)
857 return 0;
858
859 num_conns = snd_hda_get_num_conns(codec, 0x0b) + 1;
860 if (num_conns != 3 && num_conns != 4)
861 return 0;
862
863 for (i = 0; i < num_conns; i++) {
864 struct nid_path *path = snd_array_new(&spec->gen.paths);
865 if (!path)
866 return -ENOMEM;
867 *path = fake_paths[i];
868 if (!i)
869 path->active = 1;
870 spec->smux_paths[i] = snd_hda_get_path_idx(codec, path);
871 }
872
873 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, &ad1988_auto_smux_mixer))
874 return -ENOMEM;
875
876 codec->patch_ops.init = ad1988_auto_init;
877
878 return 0;
879}
880
Takashi Iwaifd66e0d2005-11-17 15:31:34 +0100881/*
Takashi Iwaid32410b12005-11-24 16:06:23 +0100882 */
883
Takashi Iwai36ad4532013-07-04 16:34:20 +0200884enum {
885 AD1988_FIXUP_6STACK_DIG,
886};
887
888static const struct hda_fixup ad1988_fixups[] = {
889 [AD1988_FIXUP_6STACK_DIG] = {
890 .type = HDA_FIXUP_PINS,
891 .v.pins = (const struct hda_pintbl[]) {
892 { 0x11, 0x02214130 }, /* front-hp */
893 { 0x12, 0x01014010 }, /* line-out */
894 { 0x14, 0x02a19122 }, /* front-mic */
895 { 0x15, 0x01813021 }, /* line-in */
896 { 0x16, 0x01011012 }, /* line-out */
897 { 0x17, 0x01a19020 }, /* mic */
898 { 0x1b, 0x0145f1f0 }, /* SPDIF */
899 { 0x24, 0x01016011 }, /* line-out */
900 { 0x25, 0x01012013 }, /* line-out */
901 { }
902 }
903 },
904};
905
906static const struct hda_model_fixup ad1988_fixup_models[] = {
907 { .id = AD1988_FIXUP_6STACK_DIG, .name = "6stack-dig" },
908 {}
909};
910
911static int patch_ad1988(struct hda_codec *codec)
Takashi Iwaid32410b12005-11-24 16:06:23 +0100912{
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100913 struct ad198x_spec *spec;
Takashi Iwai272f3ea2013-01-22 15:31:33 +0100914 int err;
Takashi Iwaid32410b12005-11-24 16:06:23 +0100915
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100916 err = alloc_ad_spec(codec);
917 if (err < 0)
918 return err;
919 spec = codec->spec;
920
Takashi Iwaif2f8be42013-01-21 16:40:16 +0100921 spec->gen.mixer_nid = 0x20;
Takashi Iwaie4a395e2013-01-23 17:00:31 +0100922 spec->gen.mixer_merge_nid = 0x21;
Takashi Iwai7504b6c2013-03-18 11:25:51 +0100923 spec->gen.beep_nid = 0x10;
Takashi Iwai78bb3cb2012-12-21 15:17:06 +0100924 set_beep_amp(spec, 0x10, 0, HDA_OUTPUT);
Takashi Iwai36ad4532013-07-04 16:34:20 +0200925
926 snd_hda_pick_fixup(codec, ad1988_fixup_models, NULL, ad1988_fixups);
927 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
928
Takashi Iwaicbd209f2014-01-13 12:40:07 +0100929 err = ad198x_parse_auto_config(codec, true);
Takashi Iwai272f3ea2013-01-22 15:31:33 +0100930 if (err < 0)
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100931 goto error;
Takashi Iwai272f3ea2013-01-22 15:31:33 +0100932 err = ad1988_add_spdif_mux_ctl(codec);
933 if (err < 0)
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100934 goto error;
Takashi Iwai36ad4532013-07-04 16:34:20 +0200935
936 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
937
Takashi Iwai272f3ea2013-01-22 15:31:33 +0100938 return 0;
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100939
940 error:
Takashi Iwai7504b6c2013-03-18 11:25:51 +0100941 snd_hda_gen_free(codec);
Takashi Iwai9ff4bc82013-01-22 16:45:58 +0100942 return err;
Takashi Iwaid32410b12005-11-24 16:06:23 +0100943}
944
Takashi Iwaifd66e0d2005-11-17 15:31:34 +0100945
946/*
Takashi Iwai2bac6472007-05-18 18:21:41 +0200947 * AD1884 / AD1984
948 *
949 * port-B - front line/mic-in
950 * port-E - aux in/out
951 * port-F - aux in/out
952 * port-C - rear line/mic-in
953 * port-D - rear line/hp-out
954 * port-A - front line/hp-out
955 *
956 * AD1984 = AD1884 + two digital mic-ins
957 *
Takashi Iwai5ccc6182013-07-04 15:36:56 +0200958 * AD1883 / AD1884A / AD1984A / AD1984B
959 *
960 * port-B (0x14) - front mic-in
961 * port-E (0x1c) - rear mic-in
962 * port-F (0x16) - CD / ext out
963 * port-C (0x15) - rear line-in
964 * port-D (0x12) - rear line-out
965 * port-A (0x11) - front hp-out
966 *
967 * AD1984A = AD1884A + digital-mic
968 * AD1883 = equivalent with AD1984A
969 * AD1984B = AD1984A + extra SPDIF-out
Takashi Iwai2bac6472007-05-18 18:21:41 +0200970 */
971
Takashi Iwaia928bd22013-01-22 18:18:42 +0100972/* set the upper-limit for mixer amp to 0dB for avoiding the possible
973 * damage by overloading
974 */
975static void ad1884_fixup_amp_override(struct hda_codec *codec,
976 const struct hda_fixup *fix, int action)
977{
978 if (action == HDA_FIXUP_ACT_PRE_PROBE)
979 snd_hda_override_amp_caps(codec, 0x20, HDA_INPUT,
980 (0x17 << AC_AMPCAP_OFFSET_SHIFT) |
981 (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) |
982 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
983 (1 << AC_AMPCAP_MUTE_SHIFT));
984}
985
Takashi Iwai1a39b5e2013-07-04 14:32:16 +0200986/* toggle GPIO1 according to the mute state */
987static void ad1884_vmaster_hp_gpio_hook(void *private_data, int enabled)
988{
989 struct hda_codec *codec = private_data;
990 struct ad198x_spec *spec = codec->spec;
991
992 if (spec->eapd_nid)
993 ad_vmaster_eapd_hook(private_data, enabled);
994 snd_hda_codec_update_cache(codec, 0x01, 0,
995 AC_VERB_SET_GPIO_DATA,
996 enabled ? 0x00 : 0x02);
997}
998
Takashi Iwaia928bd22013-01-22 18:18:42 +0100999static void ad1884_fixup_hp_eapd(struct hda_codec *codec,
1000 const struct hda_fixup *fix, int action)
1001{
1002 struct ad198x_spec *spec = codec->spec;
1003
Takashi Iwai8f0b3b72013-07-04 12:54:22 +02001004 switch (action) {
1005 case HDA_FIXUP_ACT_PRE_PROBE:
Takashi Iwai1a39b5e2013-07-04 14:32:16 +02001006 spec->gen.vmaster_mute.hook = ad1884_vmaster_hp_gpio_hook;
Takashi Iwai1cd9b2f2013-12-02 13:19:45 +01001007 spec->gen.own_eapd_ctl = 1;
Takashi Iwaia551d912015-02-26 12:34:49 +01001008 snd_hda_codec_write_cache(codec, 0x01, 0,
1009 AC_VERB_SET_GPIO_MASK, 0x02);
1010 snd_hda_codec_write_cache(codec, 0x01, 0,
1011 AC_VERB_SET_GPIO_DIRECTION, 0x02);
1012 snd_hda_codec_write_cache(codec, 0x01, 0,
1013 AC_VERB_SET_GPIO_DATA, 0x02);
Takashi Iwai8f0b3b72013-07-04 12:54:22 +02001014 break;
1015 case HDA_FIXUP_ACT_PROBE:
Takashi Iwaia928bd22013-01-22 18:18:42 +01001016 if (spec->gen.autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
1017 spec->eapd_nid = spec->gen.autocfg.line_out_pins[0];
1018 else
1019 spec->eapd_nid = spec->gen.autocfg.speaker_pins[0];
Takashi Iwai8f0b3b72013-07-04 12:54:22 +02001020 break;
Takashi Iwaia928bd22013-01-22 18:18:42 +01001021 }
1022}
1023
Takashi Iwai1ac32932013-10-26 00:24:14 +02001024static void ad1884_fixup_thinkpad(struct hda_codec *codec,
1025 const struct hda_fixup *fix, int action)
1026{
1027 struct ad198x_spec *spec = codec->spec;
1028
Takashi Iwaiafb5a772013-10-26 00:33:58 +02001029 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
Takashi Iwai1ac32932013-10-26 00:24:14 +02001030 spec->gen.keep_eapd_on = 1;
Takashi Iwaiafb5a772013-10-26 00:33:58 +02001031 spec->gen.vmaster_mute.hook = ad_vmaster_eapd_hook;
1032 spec->eapd_nid = 0x12;
Takashi Iwaif3e9b592014-03-05 12:00:29 +01001033 /* Analog PC Beeper - allow firmware/ACPI beeps */
1034 spec->beep_amp = HDA_COMPOSE_AMP_VAL(0x20, 3, 3, HDA_INPUT);
1035 spec->gen.beep_nid = 0; /* no digital beep */
Takashi Iwaiafb5a772013-10-26 00:33:58 +02001036 }
Takashi Iwai1ac32932013-10-26 00:24:14 +02001037}
1038
Takashi Iwai6a699be2013-07-04 14:45:37 +02001039/* set magic COEFs for dmic */
1040static const struct hda_verb ad1884_dmic_init_verbs[] = {
1041 {0x01, AC_VERB_SET_COEF_INDEX, 0x13f7},
1042 {0x01, AC_VERB_SET_PROC_COEF, 0x08},
1043 {}
1044};
1045
Takashi Iwaia928bd22013-01-22 18:18:42 +01001046enum {
1047 AD1884_FIXUP_AMP_OVERRIDE,
1048 AD1884_FIXUP_HP_EAPD,
Takashi Iwai6a699be2013-07-04 14:45:37 +02001049 AD1884_FIXUP_DMIC_COEF,
Takashi Iwai1ac32932013-10-26 00:24:14 +02001050 AD1884_FIXUP_THINKPAD,
Takashi Iwaif4046272013-07-04 15:14:17 +02001051 AD1884_FIXUP_HP_TOUCHSMART,
Takashi Iwaia928bd22013-01-22 18:18:42 +01001052};
1053
1054static const struct hda_fixup ad1884_fixups[] = {
1055 [AD1884_FIXUP_AMP_OVERRIDE] = {
1056 .type = HDA_FIXUP_FUNC,
1057 .v.func = ad1884_fixup_amp_override,
1058 },
1059 [AD1884_FIXUP_HP_EAPD] = {
1060 .type = HDA_FIXUP_FUNC,
1061 .v.func = ad1884_fixup_hp_eapd,
1062 .chained = true,
1063 .chain_id = AD1884_FIXUP_AMP_OVERRIDE,
1064 },
Takashi Iwai6a699be2013-07-04 14:45:37 +02001065 [AD1884_FIXUP_DMIC_COEF] = {
1066 .type = HDA_FIXUP_VERBS,
1067 .v.verbs = ad1884_dmic_init_verbs,
1068 },
Takashi Iwai1ac32932013-10-26 00:24:14 +02001069 [AD1884_FIXUP_THINKPAD] = {
1070 .type = HDA_FIXUP_FUNC,
1071 .v.func = ad1884_fixup_thinkpad,
1072 .chained = true,
1073 .chain_id = AD1884_FIXUP_DMIC_COEF,
1074 },
Takashi Iwaif4046272013-07-04 15:14:17 +02001075 [AD1884_FIXUP_HP_TOUCHSMART] = {
1076 .type = HDA_FIXUP_VERBS,
1077 .v.verbs = ad1884_dmic_init_verbs,
1078 .chained = true,
1079 .chain_id = AD1884_FIXUP_HP_EAPD,
1080 },
Takashi Iwaia928bd22013-01-22 18:18:42 +01001081};
1082
1083static const struct snd_pci_quirk ad1884_fixup_tbl[] = {
Takashi Iwaif4046272013-07-04 15:14:17 +02001084 SND_PCI_QUIRK(0x103c, 0x2a82, "HP Touchsmart", AD1884_FIXUP_HP_TOUCHSMART),
Takashi Iwaia928bd22013-01-22 18:18:42 +01001085 SND_PCI_QUIRK_VENDOR(0x103c, "HP", AD1884_FIXUP_HP_EAPD),
Takashi Iwai1ac32932013-10-26 00:24:14 +02001086 SND_PCI_QUIRK_VENDOR(0x17aa, "Lenovo Thinkpad", AD1884_FIXUP_THINKPAD),
Takashi Iwaia928bd22013-01-22 18:18:42 +01001087 {}
1088};
1089
1090
Takashi Iwai5ccc6182013-07-04 15:36:56 +02001091static int patch_ad1884(struct hda_codec *codec)
Takashi Iwai78bb3cb2012-12-21 15:17:06 +01001092{
Takashi Iwai9ff4bc82013-01-22 16:45:58 +01001093 struct ad198x_spec *spec;
Takashi Iwai272f3ea2013-01-22 15:31:33 +01001094 int err;
Takashi Iwai78bb3cb2012-12-21 15:17:06 +01001095
Takashi Iwai9ff4bc82013-01-22 16:45:58 +01001096 err = alloc_ad_spec(codec);
1097 if (err < 0)
1098 return err;
1099 spec = codec->spec;
1100
Takashi Iwaif2f8be42013-01-21 16:40:16 +01001101 spec->gen.mixer_nid = 0x20;
Takashi Iwaic5eda4c2014-03-05 11:52:24 +01001102 spec->gen.mixer_merge_nid = 0x21;
Takashi Iwai7504b6c2013-03-18 11:25:51 +01001103 spec->gen.beep_nid = 0x10;
Takashi Iwai78bb3cb2012-12-21 15:17:06 +01001104 set_beep_amp(spec, 0x10, 0, HDA_OUTPUT);
Takashi Iwaia928bd22013-01-22 18:18:42 +01001105
1106 snd_hda_pick_fixup(codec, NULL, ad1884_fixup_tbl, ad1884_fixups);
1107 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1108
Takashi Iwaicbd209f2014-01-13 12:40:07 +01001109 err = ad198x_parse_auto_config(codec, true);
Takashi Iwai272f3ea2013-01-22 15:31:33 +01001110 if (err < 0)
Takashi Iwai9ff4bc82013-01-22 16:45:58 +01001111 goto error;
Takashi Iwai272f3ea2013-01-22 15:31:33 +01001112 err = ad1983_add_spdif_mux_ctl(codec);
1113 if (err < 0)
Takashi Iwai9ff4bc82013-01-22 16:45:58 +01001114 goto error;
Takashi Iwaia928bd22013-01-22 18:18:42 +01001115
1116 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1117
Takashi Iwai272f3ea2013-01-22 15:31:33 +01001118 return 0;
Takashi Iwai9ff4bc82013-01-22 16:45:58 +01001119
1120 error:
Takashi Iwai7504b6c2013-03-18 11:25:51 +01001121 snd_hda_gen_free(codec);
Takashi Iwai9ff4bc82013-01-22 16:45:58 +01001122 return err;
Takashi Iwai78bb3cb2012-12-21 15:17:06 +01001123}
1124
Takashi Iwaic5059252008-02-16 09:43:56 +01001125/*
Takashi Iwai9e44c6e2008-08-18 13:53:07 +02001126 * AD1882 / AD1882A
Takashi Iwai0ac85512007-06-20 15:46:13 +02001127 *
1128 * port-A - front hp-out
1129 * port-B - front mic-in
1130 * port-C - rear line-in, shared surr-out (3stack)
1131 * port-D - rear line-out
1132 * port-E - rear mic-in, shared clfe-out (3stack)
1133 * port-F - rear surr-out (6stack)
1134 * port-G - rear clfe-out (6stack)
1135 */
1136
Takashi Iwaiaa95d612013-07-04 15:16:31 +02001137static int patch_ad1882(struct hda_codec *codec)
Takashi Iwai78bb3cb2012-12-21 15:17:06 +01001138{
Takashi Iwai0ac85512007-06-20 15:46:13 +02001139 struct ad198x_spec *spec;
Takashi Iwai9ff4bc82013-01-22 16:45:58 +01001140 int err;
Takashi Iwai0ac85512007-06-20 15:46:13 +02001141
Takashi Iwai361dab32012-05-09 14:35:27 +02001142 err = alloc_ad_spec(codec);
1143 if (err < 0)
1144 return err;
1145 spec = codec->spec;
Takashi Iwai0ac85512007-06-20 15:46:13 +02001146
Takashi Iwai9ff4bc82013-01-22 16:45:58 +01001147 spec->gen.mixer_nid = 0x20;
Takashi Iwaie4a395e2013-01-23 17:00:31 +01001148 spec->gen.mixer_merge_nid = 0x21;
Takashi Iwai7504b6c2013-03-18 11:25:51 +01001149 spec->gen.beep_nid = 0x10;
Takashi Iwai9ff4bc82013-01-22 16:45:58 +01001150 set_beep_amp(spec, 0x10, 0, HDA_OUTPUT);
Takashi Iwaicbd209f2014-01-13 12:40:07 +01001151 err = ad198x_parse_auto_config(codec, true);
Takashi Iwai9ff4bc82013-01-22 16:45:58 +01001152 if (err < 0)
1153 goto error;
1154 err = ad1988_add_spdif_mux_ctl(codec);
1155 if (err < 0)
1156 goto error;
1157 return 0;
1158
1159 error:
Takashi Iwai7504b6c2013-03-18 11:25:51 +01001160 snd_hda_gen_free(codec);
Takashi Iwai9ff4bc82013-01-22 16:45:58 +01001161 return err;
1162}
1163
Takashi Iwai0ac85512007-06-20 15:46:13 +02001164
1165/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 * patch entries
1167 */
Takashi Iwaib9a94a92015-10-01 16:20:04 +02001168static const struct hda_device_id snd_hda_id_analog[] = {
1169 HDA_CODEC_ENTRY(0x11d4184a, "AD1884A", patch_ad1884),
1170 HDA_CODEC_ENTRY(0x11d41882, "AD1882", patch_ad1882),
1171 HDA_CODEC_ENTRY(0x11d41883, "AD1883", patch_ad1884),
1172 HDA_CODEC_ENTRY(0x11d41884, "AD1884", patch_ad1884),
1173 HDA_CODEC_ENTRY(0x11d4194a, "AD1984A", patch_ad1884),
1174 HDA_CODEC_ENTRY(0x11d4194b, "AD1984B", patch_ad1884),
1175 HDA_CODEC_ENTRY(0x11d41981, "AD1981", patch_ad1981),
1176 HDA_CODEC_ENTRY(0x11d41983, "AD1983", patch_ad1983),
1177 HDA_CODEC_ENTRY(0x11d41984, "AD1984", patch_ad1884),
1178 HDA_CODEC_ENTRY(0x11d41986, "AD1986A", patch_ad1986a),
1179 HDA_CODEC_ENTRY(0x11d41988, "AD1988", patch_ad1988),
1180 HDA_CODEC_ENTRY(0x11d4198b, "AD1988B", patch_ad1988),
1181 HDA_CODEC_ENTRY(0x11d4882a, "AD1882A", patch_ad1882),
1182 HDA_CODEC_ENTRY(0x11d4989a, "AD1989A", patch_ad1988),
1183 HDA_CODEC_ENTRY(0x11d4989b, "AD1989B", patch_ad1988),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 {} /* terminator */
1185};
Takashi Iwaib9a94a92015-10-01 16:20:04 +02001186MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_analog);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001187
1188MODULE_LICENSE("GPL");
1189MODULE_DESCRIPTION("Analog Devices HD-audio codec");
1190
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001191static struct hda_codec_driver analog_driver = {
Takashi Iwaib9a94a92015-10-01 16:20:04 +02001192 .id = snd_hda_id_analog,
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001193};
1194
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001195module_hda_codec_driver(analog_driver);