blob: ca077402d6c0f8d7b4090891d298ef6812c81980 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
Takashi Iwai1d045db2011-07-07 18:23:21 +02004 * HD audio interface patch for Realtek ALC codecs
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Kailang Yangdf694da2005-12-05 19:42:22 +01006 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7 * PeiSen Hou <pshou@realtek.com.tw>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Takashi Iwai <tiwai@suse.de>
Jonathan Woithe409a3e92012-03-27 13:01:01 +10309 * Jonathan Woithe <jwoithe@just42.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This driver is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This driver is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/delay.h>
28#include <linux/slab.h>
29#include <linux/pci.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040030#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <sound/core.h>
Kailang Yang9ad0e492010-09-14 23:22:00 +020032#include <sound/jack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "hda_codec.h"
34#include "hda_local.h"
Takashi Iwai23d30f22012-05-07 17:17:32 +020035#include "hda_auto_parser.h"
Kusanagi Kouichi680cd532009-02-05 00:00:58 +090036#include "hda_beep.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020037#include "hda_jack.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Takashi Iwai1d045db2011-07-07 18:23:21 +020039/* unsol event tags */
40#define ALC_FRONT_EVENT 0x01
41#define ALC_DCVOL_EVENT 0x02
42#define ALC_HP_EVENT 0x04
43#define ALC_MIC_EVENT 0x08
Takashi Iwaid4a86d82010-06-23 17:51:26 +020044
Kailang Yangdf694da2005-12-05 19:42:22 +010045/* for GPIO Poll */
46#define GPIO_MASK 0x03
47
Takashi Iwai4a79ba32009-04-22 16:31:35 +020048/* extra amp-initialization sequence types */
49enum {
50 ALC_INIT_NONE,
51 ALC_INIT_DEFAULT,
52 ALC_INIT_GPIO1,
53 ALC_INIT_GPIO2,
54 ALC_INIT_GPIO3,
55};
56
Kailang Yangda00c242010-03-19 11:23:45 +010057struct alc_customize_define {
58 unsigned int sku_cfg;
59 unsigned char port_connectivity;
60 unsigned char check_sum;
61 unsigned char customization;
62 unsigned char external_amp;
63 unsigned int enable_pcbeep:1;
64 unsigned int platform_type:1;
65 unsigned int swap:1;
66 unsigned int override:1;
David Henningsson90622912010-10-14 14:50:18 +020067 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
Kailang Yangda00c242010-03-19 11:23:45 +010068};
69
Takashi Iwaice764ab2011-04-27 16:35:23 +020070struct alc_multi_io {
71 hda_nid_t pin; /* multi-io widget pin NID */
72 hda_nid_t dac; /* DAC to be connected */
73 unsigned int ctl_in; /* cached input-pin control value */
74};
75
Takashi Iwaid922b512011-04-28 12:18:53 +020076enum {
Takashi Iwai3b8510c2011-04-28 14:03:24 +020077 ALC_AUTOMUTE_PIN, /* change the pin control */
78 ALC_AUTOMUTE_AMP, /* mute/unmute the pin AMP */
79 ALC_AUTOMUTE_MIXER, /* mute/unmute mixer widget AMP */
Takashi Iwaid922b512011-04-28 12:18:53 +020080};
81
Takashi Iwaic14c95f2012-02-16 16:38:07 +010082#define MAX_VOL_NIDS 0x40
83
Takashi Iwai23d30f22012-05-07 17:17:32 +020084/* make compatible with old code */
85#define alc_apply_pincfgs snd_hda_apply_pincfgs
86#define alc_apply_fixup snd_hda_apply_fixup
87#define alc_pick_fixup snd_hda_pick_fixup
88#define alc_fixup hda_fixup
89#define alc_pincfg hda_pintbl
90#define alc_model_fixup hda_model_fixup
91
92#define ALC_FIXUP_PINS HDA_FIXUP_PINS
93#define ALC_FIXUP_VERBS HDA_FIXUP_VERBS
94#define ALC_FIXUP_FUNC HDA_FIXUP_FUNC
95
96#define ALC_FIXUP_ACT_PRE_PROBE HDA_FIXUP_ACT_PRE_PROBE
97#define ALC_FIXUP_ACT_PROBE HDA_FIXUP_ACT_PROBE
98#define ALC_FIXUP_ACT_INIT HDA_FIXUP_ACT_INIT
99#define ALC_FIXUP_ACT_BUILD HDA_FIXUP_ACT_BUILD
100
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102struct alc_spec {
Takashi Iwai23d30f22012-05-07 17:17:32 +0200103 struct hda_gen_spec gen;
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 /* codec parameterization */
Takashi Iwaia9111322011-05-02 11:30:18 +0200106 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 unsigned int num_mixers;
Takashi Iwaia9111322011-05-02 11:30:18 +0200108 const struct snd_kcontrol_new *cap_mixer; /* capture mixer */
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100109 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Takashi Iwaiaa563af2009-07-31 10:05:11 +0200111 char stream_name_analog[32]; /* analog PCM stream */
Takashi Iwaia9111322011-05-02 11:30:18 +0200112 const struct hda_pcm_stream *stream_analog_playback;
113 const struct hda_pcm_stream *stream_analog_capture;
114 const struct hda_pcm_stream *stream_analog_alt_playback;
115 const struct hda_pcm_stream *stream_analog_alt_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Takashi Iwaiaa563af2009-07-31 10:05:11 +0200117 char stream_name_digital[32]; /* digital PCM stream */
Takashi Iwaia9111322011-05-02 11:30:18 +0200118 const struct hda_pcm_stream *stream_digital_playback;
119 const struct hda_pcm_stream *stream_digital_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 /* playback */
Takashi Iwai16ded522005-06-10 19:58:24 +0200122 struct hda_multi_out multiout; /* playback set-up
123 * max_channels, dacs must be set
124 * dig_out_nid and hp_nid are optional
125 */
Takashi Iwai63300792008-01-24 15:31:36 +0100126 hda_nid_t alt_dac_nid;
Takashi Iwai6a05ac42009-02-13 11:19:09 +0100127 hda_nid_t slave_dig_outs[3]; /* optional - for auto-parsing */
Takashi Iwai8c441982009-01-20 18:30:20 +0100128 int dig_out_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 /* capture */
131 unsigned int num_adc_nids;
Takashi Iwai4c6d72d2011-05-02 11:30:18 +0200132 const hda_nid_t *adc_nids;
133 const hda_nid_t *capsrc_nids;
Takashi Iwai16ded522005-06-10 19:58:24 +0200134 hda_nid_t dig_in_nid; /* digital-in NID; optional */
Takashi Iwai1f0f4b82011-06-27 10:52:59 +0200135 hda_nid_t mixer_nid; /* analog-mixer NID */
Takashi Iwaic14c95f2012-02-16 16:38:07 +0100136 DECLARE_BITMAP(vol_ctls, MAX_VOL_NIDS << 1);
137 DECLARE_BITMAP(sw_ctls, MAX_VOL_NIDS << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Takashi Iwai840b64c2010-07-13 22:49:01 +0200139 /* capture setup for dynamic dual-adc switch */
Takashi Iwai840b64c2010-07-13 22:49:01 +0200140 hda_nid_t cur_adc;
141 unsigned int cur_adc_stream_tag;
142 unsigned int cur_adc_format;
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 /* capture source */
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200145 unsigned int num_mux_defs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 const struct hda_input_mux *input_mux;
147 unsigned int cur_mux[3];
Takashi Iwai21268962011-07-07 15:01:13 +0200148 hda_nid_t ext_mic_pin;
149 hda_nid_t dock_mic_pin;
150 hda_nid_t int_mic_pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 /* channel model */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100153 const struct hda_channel_mode *channel_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 int num_channel_mode;
Takashi Iwai4e195a72006-07-28 14:47:34 +0200155 int need_dac_fix;
Takashi Iwaib6adb572012-12-03 10:30:58 +0100156 int const_channel_count; /* min. channel count (for speakers) */
157 int ext_channel_count; /* current channel count for multi-io */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 /* PCM information */
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100160 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
Takashi Iwai41e41f12005-06-08 14:48:49 +0200161
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200162 /* dynamic controls, init_verbs and input_mux */
163 struct auto_pin_cfg autocfg;
Kailang Yangda00c242010-03-19 11:23:45 +0100164 struct alc_customize_define cdefine;
Takashi Iwai603c4012008-07-30 15:01:44 +0200165 struct snd_array kctls;
Herton Ronaldo Krzesinski61b9b9b2009-01-28 09:16:33 -0200166 struct hda_input_mux private_imux[3];
Takashi Iwai41923e42007-10-22 17:20:10 +0200167 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwai4953550a2009-06-30 15:28:30 +0200168 hda_nid_t private_adc_nids[AUTO_CFG_MAX_OUTS];
169 hda_nid_t private_capsrc_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwai21268962011-07-07 15:01:13 +0200170 hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS];
171 unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS];
172 int int_mic_idx, ext_mic_idx, dock_mic_idx; /* for auto-mic */
Takashi Iwai125821a2012-06-22 14:30:29 +0200173 hda_nid_t inv_dmic_pin;
Takashi Iwai834be882006-03-01 14:16:17 +0100174
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100175 /* hooks */
176 void (*init_hook)(struct hda_codec *codec);
Takashi Iwai83012a72012-08-24 18:38:08 +0200177#ifdef CONFIG_PM
Daniel T Chenc97259d2009-12-27 18:52:08 -0500178 void (*power_hook)(struct hda_codec *codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100179#endif
Takashi Iwai1c7161532011-04-07 10:37:16 +0200180 void (*shutup)(struct hda_codec *codec);
Takashi Iwai24519912011-08-16 15:08:49 +0200181 void (*automute_hook)(struct hda_codec *codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100182
Takashi Iwai834be882006-03-01 14:16:17 +0100183 /* for pin sensing */
David Henningsson42cf0d02011-09-20 12:04:56 +0200184 unsigned int hp_jack_present:1;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200185 unsigned int line_jack_present:1;
Takashi Iwaie9427962011-04-28 15:46:07 +0200186 unsigned int master_mute:1;
Takashi Iwai6c819492009-08-10 18:47:44 +0200187 unsigned int auto_mic:1;
Takashi Iwai21268962011-07-07 15:01:13 +0200188 unsigned int auto_mic_valid_imux:1; /* valid imux for auto-mic */
David Henningsson42cf0d02011-09-20 12:04:56 +0200189 unsigned int automute_speaker:1; /* automute speaker outputs */
190 unsigned int automute_lo:1; /* automute LO outputs */
191 unsigned int detect_hp:1; /* Headphone detection enabled */
192 unsigned int detect_lo:1; /* Line-out detection enabled */
193 unsigned int automute_speaker_possible:1; /* there are speakers and either LO or HP */
194 unsigned int automute_lo_possible:1; /* there are line outs and HP */
Takashi Iwai31150f22012-01-30 10:54:08 +0100195 unsigned int keep_vref_in_automute:1; /* Don't clear VREF in automute */
Takashi Iwaicb53c622007-08-10 17:21:45 +0200196
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100197 /* other flags */
198 unsigned int no_analog :1; /* digital I/O only */
Takashi Iwai21268962011-07-07 15:01:13 +0200199 unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */
Takashi Iwai584c0c42011-03-10 12:51:11 +0100200 unsigned int single_input_src:1;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +0200201 unsigned int vol_in_capsrc:1; /* use capsrc volume (ADC has no vol) */
Takashi Iwai53c334a2011-08-23 18:27:14 +0200202 unsigned int parse_flags; /* passed to snd_hda_parse_pin_defcfg() */
Takashi Iwai24de1832011-11-07 17:13:39 +0100203 unsigned int shared_mic_hp:1; /* HP/Mic-in sharing */
Takashi Iwai125821a2012-06-22 14:30:29 +0200204 unsigned int inv_dmic_fixup:1; /* has inverted digital-mic workaround */
205 unsigned int inv_dmic_muted:1; /* R-ch of inv d-mic is muted? */
Takashi Iwaie427c232012-07-29 10:04:08 +0200206 unsigned int no_primary_hp:1; /* Don't prefer HP pins to speaker pins */
Takashi Iwaid922b512011-04-28 12:18:53 +0200207
208 /* auto-mute control */
209 int automute_mode;
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200210 hda_nid_t automute_mixer_nid[AUTO_CFG_MAX_OUTS];
Takashi Iwaid922b512011-04-28 12:18:53 +0200211
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200212 int init_amp;
Takashi Iwaid433a672010-09-20 15:11:54 +0200213 int codec_variant; /* flag for other variants */
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100214
Takashi Iwai2134ea42008-01-10 16:53:55 +0100215 /* for virtual master */
216 hda_nid_t vmaster_nid;
Takashi Iwaid2f344b2012-03-12 16:59:58 +0100217 struct hda_vmaster_mute_hook vmaster_mute;
Takashi Iwai83012a72012-08-24 18:38:08 +0200218#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +0200219 struct hda_loopback_check loopback;
Takashi Iwai164f73e2012-02-21 11:27:09 +0100220 int num_loopbacks;
221 struct hda_amp_list loopback_list[8];
Takashi Iwaicb53c622007-08-10 17:21:45 +0200222#endif
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200223
224 /* for PLL fix */
225 hda_nid_t pll_nid;
226 unsigned int pll_coef_idx, pll_coef_bit;
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200227 unsigned int coef0;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +0100228
Takashi Iwaice764ab2011-04-27 16:35:23 +0200229 /* multi-io */
230 int multi_ios;
231 struct alc_multi_io multi_io[4];
Takashi Iwai23c09b02011-08-19 09:05:35 +0200232
233 /* bind volumes */
234 struct snd_array bind_ctls;
Kailang Yangdf694da2005-12-05 19:42:22 +0100235};
236
Takashi Iwai44c02402011-07-08 15:14:19 +0200237static bool check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
238 int dir, unsigned int bits)
239{
240 if (!nid)
241 return false;
242 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
243 if (query_amp_caps(codec, nid, dir) & bits)
244 return true;
245 return false;
246}
247
248#define nid_has_mute(codec, nid, dir) \
249 check_amp_caps(codec, nid, dir, AC_AMPCAP_MUTE)
250#define nid_has_volume(codec, nid, dir) \
251 check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS)
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253/*
254 * input MUX handling
255 */
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200256static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
257 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
259 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
260 struct alc_spec *spec = codec->spec;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200261 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
262 if (mux_idx >= spec->num_mux_defs)
263 mux_idx = 0;
Takashi Iwai53111142010-03-08 12:13:07 +0100264 if (!spec->input_mux[mux_idx].num_items && mux_idx > 0)
265 mux_idx = 0;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200266 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200269static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
270 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
273 struct alc_spec *spec = codec->spec;
274 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
275
276 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
277 return 0;
278}
279
Takashi Iwai21268962011-07-07 15:01:13 +0200280static bool alc_dyn_adc_pcm_resetup(struct hda_codec *codec, int cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Takashi Iwai21268962011-07-07 15:01:13 +0200282 struct alc_spec *spec = codec->spec;
283 hda_nid_t new_adc = spec->adc_nids[spec->dyn_adc_idx[cur]];
284
285 if (spec->cur_adc && spec->cur_adc != new_adc) {
286 /* stream is running, let's swap the current ADC */
287 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
288 spec->cur_adc = new_adc;
289 snd_hda_codec_setup_stream(codec, new_adc,
290 spec->cur_adc_stream_tag, 0,
291 spec->cur_adc_format);
292 return true;
293 }
294 return false;
295}
296
Takashi Iwai61071592011-11-23 07:52:15 +0100297static inline hda_nid_t get_capsrc(struct alc_spec *spec, int idx)
298{
299 return spec->capsrc_nids ?
300 spec->capsrc_nids[idx] : spec->adc_nids[idx];
301}
302
Takashi Iwai24de1832011-11-07 17:13:39 +0100303static void call_update_outputs(struct hda_codec *codec);
Takashi Iwai125821a2012-06-22 14:30:29 +0200304static void alc_inv_dmic_sync(struct hda_codec *codec, bool force);
Takashi Iwai24de1832011-11-07 17:13:39 +0100305
David Henningsson00227f12012-06-27 18:45:44 +0200306/* for shared I/O, change the pin-control accordingly */
307static void update_shared_mic_hp(struct hda_codec *codec, bool set_as_mic)
308{
309 struct alc_spec *spec = codec->spec;
310 unsigned int val;
311 hda_nid_t pin = spec->autocfg.inputs[1].pin;
312 /* NOTE: this assumes that there are only two inputs, the
313 * first is the real internal mic and the second is HP/mic jack.
314 */
315
316 val = snd_hda_get_default_vref(codec, pin);
317
318 /* This pin does not have vref caps - let's enable vref on pin 0x18
319 instead, as suggested by Realtek */
320 if (val == AC_PINCTL_VREF_HIZ) {
321 const hda_nid_t vref_pin = 0x18;
322 /* Sanity check pin 0x18 */
323 if (get_wcaps_type(get_wcaps(codec, vref_pin)) == AC_WID_PIN &&
324 get_defcfg_connect(snd_hda_codec_get_pincfg(codec, vref_pin)) == AC_JACK_PORT_NONE) {
325 unsigned int vref_val = snd_hda_get_default_vref(codec, vref_pin);
326 if (vref_val != AC_PINCTL_VREF_HIZ)
327 snd_hda_set_pin_ctl(codec, vref_pin, PIN_IN | (set_as_mic ? vref_val : 0));
328 }
329 }
330
331 val = set_as_mic ? val | PIN_IN : PIN_HP;
332 snd_hda_set_pin_ctl(codec, pin, val);
333
334 spec->automute_speaker = !set_as_mic;
335 call_update_outputs(codec);
336}
Takashi Iwai21268962011-07-07 15:01:13 +0200337
338/* select the given imux item; either unmute exclusively or select the route */
339static int alc_mux_select(struct hda_codec *codec, unsigned int adc_idx,
340 unsigned int idx, bool force)
341{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 struct alc_spec *spec = codec->spec;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100343 const struct hda_input_mux *imux;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100344 unsigned int mux_idx;
Takashi Iwaidccc1812011-11-08 07:52:19 +0100345 int i, type, num_conns;
Takashi Iwai21268962011-07-07 15:01:13 +0200346 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Takashi Iwai5803a322012-02-21 11:59:45 +0100348 if (!spec->input_mux)
349 return 0;
350
Takashi Iwaicd896c32008-11-18 12:36:33 +0100351 mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
352 imux = &spec->input_mux[mux_idx];
Takashi Iwai53111142010-03-08 12:13:07 +0100353 if (!imux->num_items && mux_idx > 0)
354 imux = &spec->input_mux[0];
Takashi Iwaicce4aa32011-12-02 15:29:12 +0100355 if (!imux->num_items)
356 return 0;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100357
Takashi Iwai21268962011-07-07 15:01:13 +0200358 if (idx >= imux->num_items)
359 idx = imux->num_items - 1;
360 if (spec->cur_mux[adc_idx] == idx && !force)
361 return 0;
362 spec->cur_mux[adc_idx] = idx;
363
David Henningsson00227f12012-06-27 18:45:44 +0200364 if (spec->shared_mic_hp)
365 update_shared_mic_hp(codec, spec->cur_mux[adc_idx]);
Takashi Iwai24de1832011-11-07 17:13:39 +0100366
Takashi Iwai21268962011-07-07 15:01:13 +0200367 if (spec->dyn_adc_switch) {
368 alc_dyn_adc_pcm_resetup(codec, idx);
369 adc_idx = spec->dyn_adc_idx[idx];
370 }
371
Takashi Iwai61071592011-11-23 07:52:15 +0100372 nid = get_capsrc(spec, adc_idx);
Takashi Iwai21268962011-07-07 15:01:13 +0200373
374 /* no selection? */
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200375 num_conns = snd_hda_get_num_conns(codec, nid);
Takashi Iwaidccc1812011-11-08 07:52:19 +0100376 if (num_conns <= 1)
Takashi Iwai21268962011-07-07 15:01:13 +0200377 return 1;
378
Takashi Iwaia22d5432009-07-27 12:54:26 +0200379 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwai0169b6b2009-06-22 10:50:19 +0200380 if (type == AC_WID_AUD_MIX) {
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100381 /* Matrix-mixer style (e.g. ALC882) */
Takashi Iwaidccc1812011-11-08 07:52:19 +0100382 int active = imux->items[idx].index;
383 for (i = 0; i < num_conns; i++) {
384 unsigned int v = (i == active) ? 0 : HDA_AMP_MUTE;
385 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, i,
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100386 HDA_AMP_MUTE, v);
387 }
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100388 } else {
389 /* MUX style (e.g. ALC880) */
Takashi Iwai21268962011-07-07 15:01:13 +0200390 snd_hda_codec_write_cache(codec, nid, 0,
391 AC_VERB_SET_CONNECT_SEL,
392 imux->items[idx].index);
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100393 }
Takashi Iwai125821a2012-06-22 14:30:29 +0200394 alc_inv_dmic_sync(codec, true);
Takashi Iwai21268962011-07-07 15:01:13 +0200395 return 1;
396}
397
398static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
399 struct snd_ctl_elem_value *ucontrol)
400{
401 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
402 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
403 return alc_mux_select(codec, adc_idx,
404 ucontrol->value.enumerated.item[0], false);
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100405}
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407/*
Takashi Iwai23f0c042009-02-26 13:03:58 +0100408 * set up the input pin config (depending on the given auto-pin type)
409 */
410static void alc_set_input_pin(struct hda_codec *codec, hda_nid_t nid,
411 int auto_pin_type)
412{
413 unsigned int val = PIN_IN;
Takashi Iwai47408602012-04-20 13:06:53 +0200414 if (auto_pin_type == AUTO_PIN_MIC)
415 val |= snd_hda_get_default_vref(codec, nid);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +0200416 snd_hda_set_pin_ctl(codec, nid, val);
Takashi Iwai23f0c042009-02-26 13:03:58 +0100417}
418
419/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200420 * Append the given mixer and verb elements for the later use
421 * The mixer array is referred in build_controls(), and init_verbs are
422 * called in init().
Takashi Iwaid88897e2008-10-31 15:01:37 +0100423 */
Takashi Iwaia9111322011-05-02 11:30:18 +0200424static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
Takashi Iwaid88897e2008-10-31 15:01:37 +0100425{
426 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
427 return;
428 spec->mixers[spec->num_mixers++] = mix;
429}
430
Takashi Iwaid88897e2008-10-31 15:01:37 +0100431/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200432 * GPIO setup tables, used in initialization
Kailang Yangdf694da2005-12-05 19:42:22 +0100433 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200434/* Enable GPIO mask and set output */
Takashi Iwaia9111322011-05-02 11:30:18 +0200435static const struct hda_verb alc_gpio1_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200436 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
437 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
438 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
439 { }
440};
441
Takashi Iwaia9111322011-05-02 11:30:18 +0200442static const struct hda_verb alc_gpio2_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200443 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
444 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
445 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
446 { }
447};
448
Takashi Iwaia9111322011-05-02 11:30:18 +0200449static const struct hda_verb alc_gpio3_init_verbs[] = {
Kailang Yangbdd148a2007-05-08 15:19:08 +0200450 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
451 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
452 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
453 { }
454};
455
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200456/*
457 * Fix hardware PLL issue
458 * On some codecs, the analog PLL gating control must be off while
459 * the default value is 1.
460 */
461static void alc_fix_pll(struct hda_codec *codec)
462{
463 struct alc_spec *spec = codec->spec;
464 unsigned int val;
465
466 if (!spec->pll_nid)
467 return;
468 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
469 spec->pll_coef_idx);
470 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
471 AC_VERB_GET_PROC_COEF, 0);
472 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
473 spec->pll_coef_idx);
474 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
475 val & ~(1 << spec->pll_coef_bit));
476}
477
478static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
479 unsigned int coef_idx, unsigned int coef_bit)
480{
481 struct alc_spec *spec = codec->spec;
482 spec->pll_nid = nid;
483 spec->pll_coef_idx = coef_idx;
484 spec->pll_coef_bit = coef_bit;
485 alc_fix_pll(codec);
486}
487
Takashi Iwai1d045db2011-07-07 18:23:21 +0200488/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200489 * Jack detections for HP auto-mute and mic-switch
490 */
491
492/* check each pin in the given array; returns true if any of them is plugged */
493static bool detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins)
Kailang Yangc9b58002007-10-16 14:30:01 +0200494{
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200495 int i, present = 0;
Kailang Yangc9b58002007-10-16 14:30:01 +0200496
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200497 for (i = 0; i < num_pins; i++) {
498 hda_nid_t nid = pins[i];
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200499 if (!nid)
500 break;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200501 present |= snd_hda_jack_detect(codec, nid);
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200502 }
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200503 return present;
504}
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200505
Takashi Iwai1d045db2011-07-07 18:23:21 +0200506/* standard HP/line-out auto-mute helper */
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200507static void do_automute(struct hda_codec *codec, int num_pins, hda_nid_t *pins,
Takashi Iwaie9427962011-04-28 15:46:07 +0200508 bool mute, bool hp_out)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200509{
510 struct alc_spec *spec = codec->spec;
511 unsigned int mute_bits = mute ? HDA_AMP_MUTE : 0;
Takashi Iwaie9427962011-04-28 15:46:07 +0200512 unsigned int pin_bits = mute ? 0 : (hp_out ? PIN_HP : PIN_OUT);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200513 int i;
514
515 for (i = 0; i < num_pins; i++) {
516 hda_nid_t nid = pins[i];
Takashi Iwai31150f22012-01-30 10:54:08 +0100517 unsigned int val;
Takashi Iwaia9fd4f3f2009-05-08 15:57:59 +0200518 if (!nid)
519 break;
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200520 switch (spec->automute_mode) {
521 case ALC_AUTOMUTE_PIN:
Takashi Iwai31150f22012-01-30 10:54:08 +0100522 /* don't reset VREF value in case it's controlling
523 * the amp (see alc861_fixup_asus_amp_vref_0f())
524 */
525 if (spec->keep_vref_in_automute) {
526 val = snd_hda_codec_read(codec, nid, 0,
527 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
528 val &= ~PIN_HP;
529 } else
530 val = 0;
531 val |= pin_bits;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +0200532 snd_hda_set_pin_ctl(codec, nid, val);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200533 break;
534 case ALC_AUTOMUTE_AMP:
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200535 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200536 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200537 break;
538 case ALC_AUTOMUTE_MIXER:
539 nid = spec->automute_mixer_nid[i];
540 if (!nid)
541 break;
542 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200543 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200544 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 1,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200545 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200546 break;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200547 }
Takashi Iwaia9fd4f3f2009-05-08 15:57:59 +0200548 }
Kailang Yangc9b58002007-10-16 14:30:01 +0200549}
550
David Henningsson42cf0d02011-09-20 12:04:56 +0200551/* Toggle outputs muting */
552static void update_outputs(struct hda_codec *codec)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200553{
554 struct alc_spec *spec = codec->spec;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200555 int on;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200556
Takashi Iwaic0a20262011-06-10 15:28:15 +0200557 /* Control HP pins/amps depending on master_mute state;
558 * in general, HP pins/amps control should be enabled in all cases,
559 * but currently set only for master_mute, just to be safe
560 */
Takashi Iwai24de1832011-11-07 17:13:39 +0100561 if (!spec->shared_mic_hp) /* don't change HP-pin when shared with mic */
562 do_automute(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
Takashi Iwaic0a20262011-06-10 15:28:15 +0200563 spec->autocfg.hp_pins, spec->master_mute, true);
564
David Henningsson42cf0d02011-09-20 12:04:56 +0200565 if (!spec->automute_speaker)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200566 on = 0;
567 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200568 on = spec->hp_jack_present | spec->line_jack_present;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200569 on |= spec->master_mute;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200570 do_automute(codec, ARRAY_SIZE(spec->autocfg.speaker_pins),
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200571 spec->autocfg.speaker_pins, on, false);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200572
573 /* toggle line-out mutes if needed, too */
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200574 /* if LO is a copy of either HP or Speaker, don't need to handle it */
575 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0] ||
576 spec->autocfg.line_out_pins[0] == spec->autocfg.speaker_pins[0])
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200577 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200578 if (!spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200579 on = 0;
580 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200581 on = spec->hp_jack_present;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200582 on |= spec->master_mute;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200583 do_automute(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200584 spec->autocfg.line_out_pins, on, false);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200585}
586
David Henningsson42cf0d02011-09-20 12:04:56 +0200587static void call_update_outputs(struct hda_codec *codec)
Takashi Iwai24519912011-08-16 15:08:49 +0200588{
589 struct alc_spec *spec = codec->spec;
590 if (spec->automute_hook)
591 spec->automute_hook(codec);
592 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200593 update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +0200594}
595
Takashi Iwai1d045db2011-07-07 18:23:21 +0200596/* standard HP-automute helper */
David Henningsson29adc4b2012-09-25 11:31:00 +0200597static void alc_hp_automute(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200598{
599 struct alc_spec *spec = codec->spec;
600
David Henningsson42cf0d02011-09-20 12:04:56 +0200601 spec->hp_jack_present =
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200602 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
603 spec->autocfg.hp_pins);
David Henningsson42cf0d02011-09-20 12:04:56 +0200604 if (!spec->detect_hp || (!spec->automute_speaker && !spec->automute_lo))
Takashi Iwai3c715a92011-08-23 12:41:09 +0200605 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200606 call_update_outputs(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200607}
608
Takashi Iwai1d045db2011-07-07 18:23:21 +0200609/* standard line-out-automute helper */
David Henningsson29adc4b2012-09-25 11:31:00 +0200610static void alc_line_automute(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200611{
612 struct alc_spec *spec = codec->spec;
613
David Henningssonf7f4b2322012-10-10 16:32:09 +0200614 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
615 return;
Takashi Iwaie0d32e32011-09-26 15:19:55 +0200616 /* check LO jack only when it's different from HP */
617 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0])
618 return;
619
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200620 spec->line_jack_present =
621 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
622 spec->autocfg.line_out_pins);
David Henningsson42cf0d02011-09-20 12:04:56 +0200623 if (!spec->automute_speaker || !spec->detect_lo)
Takashi Iwai3c715a92011-08-23 12:41:09 +0200624 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200625 call_update_outputs(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200626}
627
Takashi Iwai8d087c72011-06-28 12:45:47 +0200628#define get_connection_index(codec, mux, nid) \
629 snd_hda_get_conn_index(codec, mux, nid, 0)
Takashi Iwai6c819492009-08-10 18:47:44 +0200630
Takashi Iwai1d045db2011-07-07 18:23:21 +0200631/* standard mic auto-switch helper */
David Henningsson29adc4b2012-09-25 11:31:00 +0200632static void alc_mic_automute(struct hda_codec *codec, struct hda_jack_tbl *jack)
Kailang Yang7fb0d782008-10-15 11:12:35 +0200633{
634 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +0200635 hda_nid_t *pins = spec->imux_pins;
Kailang Yang7fb0d782008-10-15 11:12:35 +0200636
Takashi Iwai21268962011-07-07 15:01:13 +0200637 if (!spec->auto_mic || !spec->auto_mic_valid_imux)
Takashi Iwai6c819492009-08-10 18:47:44 +0200638 return;
639 if (snd_BUG_ON(!spec->adc_nids))
640 return;
Takashi Iwai21268962011-07-07 15:01:13 +0200641 if (snd_BUG_ON(spec->int_mic_idx < 0 || spec->ext_mic_idx < 0))
Takashi Iwai840b64c2010-07-13 22:49:01 +0200642 return;
Takashi Iwai840b64c2010-07-13 22:49:01 +0200643
Takashi Iwai21268962011-07-07 15:01:13 +0200644 if (snd_hda_jack_detect(codec, pins[spec->ext_mic_idx]))
645 alc_mux_select(codec, 0, spec->ext_mic_idx, false);
646 else if (spec->dock_mic_idx >= 0 &&
647 snd_hda_jack_detect(codec, pins[spec->dock_mic_idx]))
648 alc_mux_select(codec, 0, spec->dock_mic_idx, false);
649 else
650 alc_mux_select(codec, 0, spec->int_mic_idx, false);
Kailang Yang7fb0d782008-10-15 11:12:35 +0200651}
652
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100653/* update the master volume per volume-knob's unsol event */
David Henningsson29adc4b2012-09-25 11:31:00 +0200654static void alc_update_knob_master(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100655{
656 unsigned int val;
657 struct snd_kcontrol *kctl;
658 struct snd_ctl_elem_value *uctl;
659
660 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
661 if (!kctl)
662 return;
663 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
664 if (!uctl)
665 return;
David Henningsson29adc4b2012-09-25 11:31:00 +0200666 val = snd_hda_codec_read(codec, jack->nid, 0,
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100667 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
668 val &= HDA_AMP_VOLMASK;
669 uctl->value.integer.value[0] = val;
670 uctl->value.integer.value[1] = val;
671 kctl->put(kctl, uctl);
672 kfree(uctl);
673}
674
David Henningsson29adc4b2012-09-25 11:31:00 +0200675static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100676{
David Henningsson29adc4b2012-09-25 11:31:00 +0200677 /* For some reason, the res given from ALC880 is broken.
678 Here we adjust it properly. */
679 snd_hda_jack_unsol_event(codec, res >> 2);
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100680}
681
Takashi Iwai1d045db2011-07-07 18:23:21 +0200682/* call init functions of standard auto-mute helpers */
Kailang Yang7fb0d782008-10-15 11:12:35 +0200683static void alc_inithook(struct hda_codec *codec)
684{
David Henningsson29adc4b2012-09-25 11:31:00 +0200685 alc_hp_automute(codec, NULL);
686 alc_line_automute(codec, NULL);
687 alc_mic_automute(codec, NULL);
Kailang Yangc9b58002007-10-16 14:30:01 +0200688}
689
Kailang Yangf9423e72008-05-27 12:32:25 +0200690/* additional initialization for ALC888 variants */
691static void alc888_coef_init(struct hda_codec *codec)
692{
693 unsigned int tmp;
694
695 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
696 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
697 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
Takashi Iwai37db6232009-03-05 09:40:16 +0100698 if ((tmp & 0xf0) == 0x20)
Kailang Yangf9423e72008-05-27 12:32:25 +0200699 /* alc888S-VC */
700 snd_hda_codec_read(codec, 0x20, 0,
701 AC_VERB_SET_PROC_COEF, 0x830);
702 else
703 /* alc888-VB */
704 snd_hda_codec_read(codec, 0x20, 0,
705 AC_VERB_SET_PROC_COEF, 0x3030);
706}
707
Takashi Iwai1d045db2011-07-07 18:23:21 +0200708/* additional initialization for ALC889 variants */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200709static void alc889_coef_init(struct hda_codec *codec)
710{
711 unsigned int tmp;
712
713 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
714 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
715 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
716 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
717}
718
Takashi Iwai3fb4a502010-01-19 15:46:37 +0100719/* turn on/off EAPD control (only if available) */
720static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
721{
722 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
723 return;
724 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
725 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
726 on ? 2 : 0);
727}
728
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200729/* turn on/off EAPD controls of the codec */
730static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
731{
732 /* We currently only handle front, HP */
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200733 static hda_nid_t pins[] = {
734 0x0f, 0x10, 0x14, 0x15, 0
735 };
736 hda_nid_t *p;
737 for (p = pins; *p; p++)
738 set_eapd(codec, *p, on);
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200739}
740
Takashi Iwai1c7161532011-04-07 10:37:16 +0200741/* generic shutup callback;
742 * just turning off EPAD and a little pause for avoiding pop-noise
743 */
744static void alc_eapd_shutup(struct hda_codec *codec)
745{
746 alc_auto_setup_eapd(codec, false);
747 msleep(200);
748}
749
Takashi Iwai1d045db2011-07-07 18:23:21 +0200750/* generic EAPD initialization */
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200751static void alc_auto_init_amp(struct hda_codec *codec, int type)
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200752{
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200753 unsigned int tmp;
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200754
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200755 alc_auto_setup_eapd(codec, true);
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200756 switch (type) {
757 case ALC_INIT_GPIO1:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200758 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
759 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200760 case ALC_INIT_GPIO2:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200761 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
762 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200763 case ALC_INIT_GPIO3:
Kailang Yangbdd148a2007-05-08 15:19:08 +0200764 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
765 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200766 case ALC_INIT_DEFAULT:
Kailang Yangc9b58002007-10-16 14:30:01 +0200767 switch (codec->vendor_id) {
768 case 0x10ec0260:
769 snd_hda_codec_write(codec, 0x1a, 0,
770 AC_VERB_SET_COEF_INDEX, 7);
771 tmp = snd_hda_codec_read(codec, 0x1a, 0,
772 AC_VERB_GET_PROC_COEF, 0);
773 snd_hda_codec_write(codec, 0x1a, 0,
774 AC_VERB_SET_COEF_INDEX, 7);
775 snd_hda_codec_write(codec, 0x1a, 0,
776 AC_VERB_SET_PROC_COEF,
777 tmp | 0x2010);
778 break;
779 case 0x10ec0262:
780 case 0x10ec0880:
781 case 0x10ec0882:
782 case 0x10ec0883:
783 case 0x10ec0885:
Takashi Iwai4a5a4c52009-02-06 12:46:59 +0100784 case 0x10ec0887:
Takashi Iwai20b67dd2011-03-23 22:54:32 +0100785 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200786 alc889_coef_init(codec);
Kailang Yangc9b58002007-10-16 14:30:01 +0200787 break;
Kailang Yangf9423e72008-05-27 12:32:25 +0200788 case 0x10ec0888:
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200789 alc888_coef_init(codec);
Kailang Yangf9423e72008-05-27 12:32:25 +0200790 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100791#if 0 /* XXX: This may cause the silent output on speaker on some machines */
Kailang Yangc9b58002007-10-16 14:30:01 +0200792 case 0x10ec0267:
793 case 0x10ec0268:
794 snd_hda_codec_write(codec, 0x20, 0,
795 AC_VERB_SET_COEF_INDEX, 7);
796 tmp = snd_hda_codec_read(codec, 0x20, 0,
797 AC_VERB_GET_PROC_COEF, 0);
798 snd_hda_codec_write(codec, 0x20, 0,
Kailang Yangea1fb292008-08-26 12:58:38 +0200799 AC_VERB_SET_COEF_INDEX, 7);
Kailang Yangc9b58002007-10-16 14:30:01 +0200800 snd_hda_codec_write(codec, 0x20, 0,
801 AC_VERB_SET_PROC_COEF,
802 tmp | 0x3000);
803 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100804#endif /* XXX */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200805 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200806 break;
807 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200808}
Kailang Yangea1fb292008-08-26 12:58:38 +0200809
Takashi Iwai1d045db2011-07-07 18:23:21 +0200810/*
811 * Auto-Mute mode mixer enum support
812 */
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200813static int alc_automute_mode_info(struct snd_kcontrol *kcontrol,
814 struct snd_ctl_elem_info *uinfo)
815{
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200816 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
817 struct alc_spec *spec = codec->spec;
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200818 static const char * const texts3[] = {
Takashi Iwaie49a3432012-03-01 18:14:41 +0100819 "Disabled", "Speaker Only", "Line Out+Speaker"
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200820 };
821
Takashi Iwaidda415d2012-11-30 18:34:38 +0100822 if (spec->automute_speaker_possible && spec->automute_lo_possible)
823 return snd_hda_enum_helper_info(kcontrol, uinfo, 3, texts3);
824 return snd_hda_enum_bool_helper_info(kcontrol, uinfo);
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200825}
826
827static int alc_automute_mode_get(struct snd_kcontrol *kcontrol,
828 struct snd_ctl_elem_value *ucontrol)
829{
830 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
831 struct alc_spec *spec = codec->spec;
David Henningsson42cf0d02011-09-20 12:04:56 +0200832 unsigned int val = 0;
833 if (spec->automute_speaker)
834 val++;
835 if (spec->automute_lo)
836 val++;
837
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200838 ucontrol->value.enumerated.item[0] = val;
839 return 0;
840}
841
842static int alc_automute_mode_put(struct snd_kcontrol *kcontrol,
843 struct snd_ctl_elem_value *ucontrol)
844{
845 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
846 struct alc_spec *spec = codec->spec;
847
848 switch (ucontrol->value.enumerated.item[0]) {
849 case 0:
David Henningsson42cf0d02011-09-20 12:04:56 +0200850 if (!spec->automute_speaker && !spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200851 return 0;
David Henningsson42cf0d02011-09-20 12:04:56 +0200852 spec->automute_speaker = 0;
853 spec->automute_lo = 0;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200854 break;
855 case 1:
David Henningsson42cf0d02011-09-20 12:04:56 +0200856 if (spec->automute_speaker_possible) {
857 if (!spec->automute_lo && spec->automute_speaker)
858 return 0;
859 spec->automute_speaker = 1;
860 spec->automute_lo = 0;
861 } else if (spec->automute_lo_possible) {
862 if (spec->automute_lo)
863 return 0;
864 spec->automute_lo = 1;
865 } else
866 return -EINVAL;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200867 break;
868 case 2:
David Henningsson42cf0d02011-09-20 12:04:56 +0200869 if (!spec->automute_lo_possible || !spec->automute_speaker_possible)
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200870 return -EINVAL;
David Henningsson42cf0d02011-09-20 12:04:56 +0200871 if (spec->automute_speaker && spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200872 return 0;
David Henningsson42cf0d02011-09-20 12:04:56 +0200873 spec->automute_speaker = 1;
874 spec->automute_lo = 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200875 break;
876 default:
877 return -EINVAL;
878 }
David Henningsson42cf0d02011-09-20 12:04:56 +0200879 call_update_outputs(codec);
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200880 return 1;
881}
882
Takashi Iwaia9111322011-05-02 11:30:18 +0200883static const struct snd_kcontrol_new alc_automute_mode_enum = {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200884 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
885 .name = "Auto-Mute Mode",
886 .info = alc_automute_mode_info,
887 .get = alc_automute_mode_get,
888 .put = alc_automute_mode_put,
889};
890
Takashi Iwai668d1e92012-11-29 14:10:17 +0100891static struct snd_kcontrol_new *
892alc_kcontrol_new(struct alc_spec *spec, const char *name,
893 const struct snd_kcontrol_new *temp)
Takashi Iwai1d045db2011-07-07 18:23:21 +0200894{
Takashi Iwai668d1e92012-11-29 14:10:17 +0100895 struct snd_kcontrol_new *knew = snd_array_new(&spec->kctls);
896 if (!knew)
897 return NULL;
898 *knew = *temp;
899 knew->name = kstrdup(name, GFP_KERNEL);
900 if (!knew->name)
901 return NULL;
902 return knew;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200903}
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200904
905static int alc_add_automute_mode_enum(struct hda_codec *codec)
906{
907 struct alc_spec *spec = codec->spec;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200908
Takashi Iwai668d1e92012-11-29 14:10:17 +0100909 if (!alc_kcontrol_new(spec, "Auto-Mute Mode", &alc_automute_mode_enum))
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200910 return -ENOMEM;
911 return 0;
912}
913
Takashi Iwai1d045db2011-07-07 18:23:21 +0200914/*
915 * Check the availability of HP/line-out auto-mute;
916 * Set up appropriately if really supported
917 */
Takashi Iwai475c3d22012-11-30 08:31:30 +0100918static int alc_init_automute(struct hda_codec *codec)
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200919{
920 struct alc_spec *spec = codec->spec;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200921 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai1daf5f42011-04-28 17:57:46 +0200922 int present = 0;
Takashi Iwai475c3d22012-11-30 08:31:30 +0100923 int i, err;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200924
Takashi Iwai1daf5f42011-04-28 17:57:46 +0200925 if (cfg->hp_pins[0])
926 present++;
927 if (cfg->line_out_pins[0])
928 present++;
929 if (cfg->speaker_pins[0])
930 present++;
931 if (present < 2) /* need two different output types */
Takashi Iwai475c3d22012-11-30 08:31:30 +0100932 return 0;
Kailang Yangc9b58002007-10-16 14:30:01 +0200933
Takashi Iwaic48a8fb2011-07-27 16:41:57 +0200934 if (!cfg->speaker_pins[0] &&
935 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200936 memcpy(cfg->speaker_pins, cfg->line_out_pins,
937 sizeof(cfg->speaker_pins));
938 cfg->speaker_outs = cfg->line_outs;
939 }
940
Takashi Iwaic48a8fb2011-07-27 16:41:57 +0200941 if (!cfg->hp_pins[0] &&
942 cfg->line_out_type == AUTO_PIN_HP_OUT) {
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200943 memcpy(cfg->hp_pins, cfg->line_out_pins,
944 sizeof(cfg->hp_pins));
945 cfg->hp_outs = cfg->line_outs;
946 }
947
David Henningsson42cf0d02011-09-20 12:04:56 +0200948 spec->automute_mode = ALC_AUTOMUTE_PIN;
949
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200950 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200951 hda_nid_t nid = cfg->hp_pins[i];
Takashi Iwai06dec222011-05-17 10:00:16 +0200952 if (!is_jack_detectable(codec, nid))
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200953 continue;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200954 snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n",
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200955 nid);
David Henningsson29adc4b2012-09-25 11:31:00 +0200956 snd_hda_jack_detect_enable_callback(codec, nid, ALC_HP_EVENT,
957 alc_hp_automute);
David Henningsson42cf0d02011-09-20 12:04:56 +0200958 spec->detect_hp = 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200959 }
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200960
David Henningsson42cf0d02011-09-20 12:04:56 +0200961 if (cfg->line_out_type == AUTO_PIN_LINE_OUT && cfg->line_outs) {
962 if (cfg->speaker_outs)
963 for (i = 0; i < cfg->line_outs; i++) {
964 hda_nid_t nid = cfg->line_out_pins[i];
965 if (!is_jack_detectable(codec, nid))
966 continue;
967 snd_printdd("realtek: Enable Line-Out "
968 "auto-muting on NID 0x%x\n", nid);
David Henningsson29adc4b2012-09-25 11:31:00 +0200969 snd_hda_jack_detect_enable_callback(codec, nid, ALC_FRONT_EVENT,
970 alc_line_automute);
David Henningsson42cf0d02011-09-20 12:04:56 +0200971 spec->detect_lo = 1;
David Henningsson29adc4b2012-09-25 11:31:00 +0200972 }
David Henningsson42cf0d02011-09-20 12:04:56 +0200973 spec->automute_lo_possible = spec->detect_hp;
974 }
975
976 spec->automute_speaker_possible = cfg->speaker_outs &&
977 (spec->detect_hp || spec->detect_lo);
978
979 spec->automute_lo = spec->automute_lo_possible;
980 spec->automute_speaker = spec->automute_speaker_possible;
981
Takashi Iwai475c3d22012-11-30 08:31:30 +0100982 if (spec->automute_speaker_possible || spec->automute_lo_possible) {
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200983 /* create a control for automute mode */
Takashi Iwai475c3d22012-11-30 08:31:30 +0100984 err = alc_add_automute_mode_enum(codec);
985 if (err < 0)
986 return err;
987 }
988 return 0;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200989}
990
Takashi Iwai1d045db2011-07-07 18:23:21 +0200991/* return the position of NID in the list, or -1 if not found */
Takashi Iwai21268962011-07-07 15:01:13 +0200992static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
993{
994 int i;
995 for (i = 0; i < nums; i++)
996 if (list[i] == nid)
997 return i;
998 return -1;
999}
1000
Takashi Iwai1d045db2011-07-07 18:23:21 +02001001/* check whether dynamic ADC-switching is available */
1002static bool alc_check_dyn_adc_switch(struct hda_codec *codec)
1003{
1004 struct alc_spec *spec = codec->spec;
1005 struct hda_input_mux *imux = &spec->private_imux[0];
1006 int i, n, idx;
1007 hda_nid_t cap, pin;
1008
1009 if (imux != spec->input_mux) /* no dynamic imux? */
1010 return false;
1011
1012 for (n = 0; n < spec->num_adc_nids; n++) {
1013 cap = spec->private_capsrc_nids[n];
1014 for (i = 0; i < imux->num_items; i++) {
1015 pin = spec->imux_pins[i];
1016 if (!pin)
1017 return false;
1018 if (get_connection_index(codec, cap, pin) < 0)
1019 break;
1020 }
1021 if (i >= imux->num_items)
Takashi Iwai268ff6f2011-07-08 14:37:35 +02001022 return true; /* no ADC-switch is needed */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001023 }
1024
1025 for (i = 0; i < imux->num_items; i++) {
1026 pin = spec->imux_pins[i];
1027 for (n = 0; n < spec->num_adc_nids; n++) {
1028 cap = spec->private_capsrc_nids[n];
1029 idx = get_connection_index(codec, cap, pin);
1030 if (idx >= 0) {
1031 imux->items[i].index = idx;
1032 spec->dyn_adc_idx[i] = n;
1033 break;
1034 }
1035 }
1036 }
1037
1038 snd_printdd("realtek: enabling ADC switching\n");
1039 spec->dyn_adc_switch = 1;
1040 return true;
1041}
Takashi Iwai21268962011-07-07 15:01:13 +02001042
Takashi Iwai21268962011-07-07 15:01:13 +02001043/* check whether all auto-mic pins are valid; setup indices if OK */
1044static bool alc_auto_mic_check_imux(struct hda_codec *codec)
1045{
1046 struct alc_spec *spec = codec->spec;
1047 const struct hda_input_mux *imux;
1048
1049 if (!spec->auto_mic)
1050 return false;
1051 if (spec->auto_mic_valid_imux)
1052 return true; /* already checked */
1053
1054 /* fill up imux indices */
1055 if (!alc_check_dyn_adc_switch(codec)) {
1056 spec->auto_mic = 0;
1057 return false;
1058 }
1059
1060 imux = spec->input_mux;
1061 spec->ext_mic_idx = find_idx_in_nid_list(spec->ext_mic_pin,
1062 spec->imux_pins, imux->num_items);
1063 spec->int_mic_idx = find_idx_in_nid_list(spec->int_mic_pin,
1064 spec->imux_pins, imux->num_items);
1065 spec->dock_mic_idx = find_idx_in_nid_list(spec->dock_mic_pin,
1066 spec->imux_pins, imux->num_items);
1067 if (spec->ext_mic_idx < 0 || spec->int_mic_idx < 0) {
1068 spec->auto_mic = 0;
1069 return false; /* no corresponding imux */
1070 }
1071
David Henningsson29adc4b2012-09-25 11:31:00 +02001072 snd_hda_jack_detect_enable_callback(codec, spec->ext_mic_pin,
1073 ALC_MIC_EVENT, alc_mic_automute);
Takashi Iwai21268962011-07-07 15:01:13 +02001074 if (spec->dock_mic_pin)
David Henningsson29adc4b2012-09-25 11:31:00 +02001075 snd_hda_jack_detect_enable_callback(codec, spec->dock_mic_pin,
1076 ALC_MIC_EVENT,
1077 alc_mic_automute);
Takashi Iwai21268962011-07-07 15:01:13 +02001078
1079 spec->auto_mic_valid_imux = 1;
1080 spec->auto_mic = 1;
1081 return true;
1082}
1083
Takashi Iwai1d045db2011-07-07 18:23:21 +02001084/*
1085 * Check the availability of auto-mic switch;
1086 * Set up if really supported
1087 */
Takashi Iwai475c3d22012-11-30 08:31:30 +01001088static int alc_init_auto_mic(struct hda_codec *codec)
Takashi Iwai6c819492009-08-10 18:47:44 +02001089{
1090 struct alc_spec *spec = codec->spec;
1091 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001092 hda_nid_t fixed, ext, dock;
Takashi Iwai6c819492009-08-10 18:47:44 +02001093 int i;
1094
Takashi Iwai24de1832011-11-07 17:13:39 +01001095 if (spec->shared_mic_hp)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001096 return 0; /* no auto-mic for the shared I/O */
Takashi Iwai24de1832011-11-07 17:13:39 +01001097
Takashi Iwai21268962011-07-07 15:01:13 +02001098 spec->ext_mic_idx = spec->int_mic_idx = spec->dock_mic_idx = -1;
1099
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001100 fixed = ext = dock = 0;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02001101 for (i = 0; i < cfg->num_inputs; i++) {
1102 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai6c819492009-08-10 18:47:44 +02001103 unsigned int defcfg;
Takashi Iwai6c819492009-08-10 18:47:44 +02001104 defcfg = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001105 switch (snd_hda_get_input_pin_attr(defcfg)) {
1106 case INPUT_PIN_ATTR_INT:
Takashi Iwai6c819492009-08-10 18:47:44 +02001107 if (fixed)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001108 return 0; /* already occupied */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001109 if (cfg->inputs[i].type != AUTO_PIN_MIC)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001110 return 0; /* invalid type */
Takashi Iwai6c819492009-08-10 18:47:44 +02001111 fixed = nid;
1112 break;
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001113 case INPUT_PIN_ATTR_UNUSED:
Takashi Iwai475c3d22012-11-30 08:31:30 +01001114 return 0; /* invalid entry */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001115 case INPUT_PIN_ATTR_DOCK:
1116 if (dock)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001117 return 0; /* already occupied */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001118 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001119 return 0; /* invalid type */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001120 dock = nid;
1121 break;
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001122 default:
Takashi Iwai6c819492009-08-10 18:47:44 +02001123 if (ext)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001124 return 0; /* already occupied */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001125 if (cfg->inputs[i].type != AUTO_PIN_MIC)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001126 return 0; /* invalid type */
Takashi Iwai6c819492009-08-10 18:47:44 +02001127 ext = nid;
1128 break;
Takashi Iwai6c819492009-08-10 18:47:44 +02001129 }
1130 }
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001131 if (!ext && dock) {
1132 ext = dock;
1133 dock = 0;
1134 }
Takashi Iwaieaa9b3a2010-01-17 13:09:33 +01001135 if (!ext || !fixed)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001136 return 0;
Takashi Iwaie35d9d62011-05-17 11:28:16 +02001137 if (!is_jack_detectable(codec, ext))
Takashi Iwai475c3d22012-11-30 08:31:30 +01001138 return 0; /* no unsol support */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001139 if (dock && !is_jack_detectable(codec, dock))
Takashi Iwai475c3d22012-11-30 08:31:30 +01001140 return 0; /* no unsol support */
Takashi Iwai21268962011-07-07 15:01:13 +02001141
1142 /* check imux indices */
1143 spec->ext_mic_pin = ext;
1144 spec->int_mic_pin = fixed;
1145 spec->dock_mic_pin = dock;
1146
1147 spec->auto_mic = 1;
1148 if (!alc_auto_mic_check_imux(codec))
Takashi Iwai475c3d22012-11-30 08:31:30 +01001149 return 0;
Takashi Iwai21268962011-07-07 15:01:13 +02001150
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001151 snd_printdd("realtek: Enable auto-mic switch on NID 0x%x/0x%x/0x%x\n",
1152 ext, fixed, dock);
Takashi Iwai475c3d22012-11-30 08:31:30 +01001153
1154 return 0;
Takashi Iwai6c819492009-08-10 18:47:44 +02001155}
1156
Takashi Iwai1d045db2011-07-07 18:23:21 +02001157/* check the availabilities of auto-mute and auto-mic switches */
Takashi Iwai475c3d22012-11-30 08:31:30 +01001158static int alc_auto_check_switches(struct hda_codec *codec)
Takashi Iwai1d045db2011-07-07 18:23:21 +02001159{
Takashi Iwai475c3d22012-11-30 08:31:30 +01001160 int err;
1161
1162 err = alc_init_automute(codec);
1163 if (err < 0)
1164 return err;
1165 err = alc_init_auto_mic(codec);
1166 if (err < 0)
1167 return err;
1168 return 0;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001169}
1170
1171/*
1172 * Realtek SSID verification
1173 */
1174
David Henningsson90622912010-10-14 14:50:18 +02001175/* Could be any non-zero and even value. When used as fixup, tells
1176 * the driver to ignore any present sku defines.
1177 */
1178#define ALC_FIXUP_SKU_IGNORE (2)
1179
Takashi Iwai23d30f22012-05-07 17:17:32 +02001180static void alc_fixup_sku_ignore(struct hda_codec *codec,
1181 const struct hda_fixup *fix, int action)
1182{
1183 struct alc_spec *spec = codec->spec;
1184 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1185 spec->cdefine.fixup = 1;
1186 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
1187 }
1188}
1189
Kailang Yangda00c242010-03-19 11:23:45 +01001190static int alc_auto_parse_customize_define(struct hda_codec *codec)
1191{
1192 unsigned int ass, tmp, i;
Takashi Iwai7fb56222010-03-22 17:09:47 +01001193 unsigned nid = 0;
Kailang Yangda00c242010-03-19 11:23:45 +01001194 struct alc_spec *spec = codec->spec;
1195
Takashi Iwaib6cbe512010-07-28 17:43:36 +02001196 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
1197
David Henningsson90622912010-10-14 14:50:18 +02001198 if (spec->cdefine.fixup) {
1199 ass = spec->cdefine.sku_cfg;
1200 if (ass == ALC_FIXUP_SKU_IGNORE)
1201 return -1;
1202 goto do_sku;
1203 }
1204
Kailang Yangda00c242010-03-19 11:23:45 +01001205 ass = codec->subsystem_id & 0xffff;
Takashi Iwaib6cbe512010-07-28 17:43:36 +02001206 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
Kailang Yangda00c242010-03-19 11:23:45 +01001207 goto do_sku;
1208
1209 nid = 0x1d;
1210 if (codec->vendor_id == 0x10ec0260)
1211 nid = 0x17;
1212 ass = snd_hda_codec_get_pincfg(codec, nid);
1213
1214 if (!(ass & 1)) {
1215 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
1216 codec->chip_name, ass);
1217 return -1;
1218 }
1219
1220 /* check sum */
1221 tmp = 0;
1222 for (i = 1; i < 16; i++) {
1223 if ((ass >> i) & 1)
1224 tmp++;
1225 }
1226 if (((ass >> 16) & 0xf) != tmp)
1227 return -1;
1228
1229 spec->cdefine.port_connectivity = ass >> 30;
1230 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
1231 spec->cdefine.check_sum = (ass >> 16) & 0xf;
1232 spec->cdefine.customization = ass >> 8;
1233do_sku:
1234 spec->cdefine.sku_cfg = ass;
1235 spec->cdefine.external_amp = (ass & 0x38) >> 3;
1236 spec->cdefine.platform_type = (ass & 0x4) >> 2;
1237 spec->cdefine.swap = (ass & 0x2) >> 1;
1238 spec->cdefine.override = ass & 0x1;
1239
1240 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
1241 nid, spec->cdefine.sku_cfg);
1242 snd_printd("SKU: port_connectivity=0x%x\n",
1243 spec->cdefine.port_connectivity);
1244 snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
1245 snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
1246 snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
1247 snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
1248 snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
1249 snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
1250 snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
1251
1252 return 0;
1253}
1254
Takashi Iwai1d045db2011-07-07 18:23:21 +02001255/* return true if the given NID is found in the list */
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001256static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
1257{
Takashi Iwai21268962011-07-07 15:01:13 +02001258 return find_idx_in_nid_list(nid, list, nums) >= 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001259}
1260
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001261/* check subsystem ID and set up device-specific initialization;
1262 * return 1 if initialized, 0 if invalid SSID
1263 */
1264/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
1265 * 31 ~ 16 : Manufacture ID
1266 * 15 ~ 8 : SKU ID
1267 * 7 ~ 0 : Assembly ID
1268 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
1269 */
1270static int alc_subsystem_id(struct hda_codec *codec,
1271 hda_nid_t porta, hda_nid_t porte,
Kailang Yang6227cdc2010-02-25 08:36:52 +01001272 hda_nid_t portd, hda_nid_t porti)
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001273{
1274 unsigned int ass, tmp, i;
1275 unsigned nid;
1276 struct alc_spec *spec = codec->spec;
1277
David Henningsson90622912010-10-14 14:50:18 +02001278 if (spec->cdefine.fixup) {
1279 ass = spec->cdefine.sku_cfg;
1280 if (ass == ALC_FIXUP_SKU_IGNORE)
1281 return 0;
1282 goto do_sku;
1283 }
1284
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001285 ass = codec->subsystem_id & 0xffff;
1286 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
1287 goto do_sku;
1288
1289 /* invalid SSID, check the special NID pin defcfg instead */
1290 /*
Sasha Alexandrdef319f2009-06-16 16:00:15 -04001291 * 31~30 : port connectivity
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001292 * 29~21 : reserve
1293 * 20 : PCBEEP input
1294 * 19~16 : Check sum (15:1)
1295 * 15~1 : Custom
1296 * 0 : override
1297 */
1298 nid = 0x1d;
1299 if (codec->vendor_id == 0x10ec0260)
1300 nid = 0x17;
1301 ass = snd_hda_codec_get_pincfg(codec, nid);
1302 snd_printd("realtek: No valid SSID, "
1303 "checking pincfg 0x%08x for NID 0x%x\n",
Takashi Iwaicb6605c2009-04-28 13:03:19 +02001304 ass, nid);
Kailang Yang6227cdc2010-02-25 08:36:52 +01001305 if (!(ass & 1))
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001306 return 0;
1307 if ((ass >> 30) != 1) /* no physical connection */
1308 return 0;
1309
1310 /* check sum */
1311 tmp = 0;
1312 for (i = 1; i < 16; i++) {
1313 if ((ass >> i) & 1)
1314 tmp++;
1315 }
1316 if (((ass >> 16) & 0xf) != tmp)
1317 return 0;
1318do_sku:
1319 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
1320 ass & 0xffff, codec->vendor_id);
1321 /*
1322 * 0 : override
1323 * 1 : Swap Jack
1324 * 2 : 0 --> Desktop, 1 --> Laptop
1325 * 3~5 : External Amplifier control
1326 * 7~6 : Reserved
1327 */
1328 tmp = (ass & 0x38) >> 3; /* external Amp control */
1329 switch (tmp) {
1330 case 1:
1331 spec->init_amp = ALC_INIT_GPIO1;
1332 break;
1333 case 3:
1334 spec->init_amp = ALC_INIT_GPIO2;
1335 break;
1336 case 7:
1337 spec->init_amp = ALC_INIT_GPIO3;
1338 break;
1339 case 5:
Takashi Iwai5a8cfb42010-11-26 17:11:18 +01001340 default:
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001341 spec->init_amp = ALC_INIT_DEFAULT;
1342 break;
1343 }
1344
1345 /* is laptop or Desktop and enable the function "Mute internal speaker
1346 * when the external headphone out jack is plugged"
1347 */
1348 if (!(ass & 0x8000))
1349 return 1;
1350 /*
1351 * 10~8 : Jack location
1352 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1353 * 14~13: Resvered
1354 * 15 : 1 --> enable the function "Mute internal speaker
1355 * when the external headphone out jack is plugged"
1356 */
Takashi Iwai5fe6e012011-09-26 10:41:21 +02001357 if (!spec->autocfg.hp_pins[0] &&
1358 !(spec->autocfg.line_out_pins[0] &&
1359 spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
Takashi Iwai01d48252009-10-06 13:21:54 +02001360 hda_nid_t nid;
Kailang Yangc9b58002007-10-16 14:30:01 +02001361 tmp = (ass >> 11) & 0x3; /* HP to chassis */
1362 if (tmp == 0)
Takashi Iwai01d48252009-10-06 13:21:54 +02001363 nid = porta;
Kailang Yangc9b58002007-10-16 14:30:01 +02001364 else if (tmp == 1)
Takashi Iwai01d48252009-10-06 13:21:54 +02001365 nid = porte;
Kailang Yangc9b58002007-10-16 14:30:01 +02001366 else if (tmp == 2)
Takashi Iwai01d48252009-10-06 13:21:54 +02001367 nid = portd;
Kailang Yang6227cdc2010-02-25 08:36:52 +01001368 else if (tmp == 3)
1369 nid = porti;
Kailang Yangc9b58002007-10-16 14:30:01 +02001370 else
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001371 return 1;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001372 if (found_in_nid_list(nid, spec->autocfg.line_out_pins,
1373 spec->autocfg.line_outs))
1374 return 1;
Takashi Iwai01d48252009-10-06 13:21:54 +02001375 spec->autocfg.hp_pins[0] = nid;
Kailang Yangc9b58002007-10-16 14:30:01 +02001376 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001377 return 1;
1378}
Kailang Yangea1fb292008-08-26 12:58:38 +02001379
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001380/* Check the validity of ALC subsystem-id
1381 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
1382static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001383{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001384 if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001385 struct alc_spec *spec = codec->spec;
1386 snd_printd("realtek: "
1387 "Enable default setup for auto mode as fallback\n");
1388 spec->init_amp = ALC_INIT_DEFAULT;
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001389 }
Takashi Iwai21268962011-07-07 15:01:13 +02001390}
Takashi Iwai1a1455d2011-04-28 17:36:18 +02001391
Takashi Iwai41e41f12005-06-08 14:48:49 +02001392/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02001393 * COEF access helper functions
1394 */
Kailang Yang274693f2009-12-03 10:07:50 +01001395static int alc_read_coef_idx(struct hda_codec *codec,
1396 unsigned int coef_idx)
1397{
1398 unsigned int val;
1399 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1400 coef_idx);
1401 val = snd_hda_codec_read(codec, 0x20, 0,
1402 AC_VERB_GET_PROC_COEF, 0);
1403 return val;
1404}
1405
Kailang Yang977ddd62010-09-15 10:02:29 +02001406static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
1407 unsigned int coef_val)
1408{
1409 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1410 coef_idx);
1411 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
1412 coef_val);
1413}
1414
Takashi Iwai1bb7e432011-10-17 16:50:59 +02001415/* a special bypass for COEF 0; read the cached value at the second time */
1416static unsigned int alc_get_coef0(struct hda_codec *codec)
1417{
1418 struct alc_spec *spec = codec->spec;
1419 if (!spec->coef0)
1420 spec->coef0 = alc_read_coef_idx(codec, 0);
1421 return spec->coef0;
1422}
1423
Takashi Iwai1d045db2011-07-07 18:23:21 +02001424/*
1425 * Digital I/O handling
1426 */
1427
Takashi Iwai757899a2010-07-30 10:48:14 +02001428/* set right pin controls for digital I/O */
1429static void alc_auto_init_digital(struct hda_codec *codec)
1430{
1431 struct alc_spec *spec = codec->spec;
1432 int i;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001433 hda_nid_t pin, dac;
Takashi Iwai757899a2010-07-30 10:48:14 +02001434
1435 for (i = 0; i < spec->autocfg.dig_outs; i++) {
1436 pin = spec->autocfg.dig_out_pins[i];
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001437 if (!pin)
1438 continue;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001439 snd_hda_set_pin_ctl(codec, pin, PIN_OUT);
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001440 if (!i)
1441 dac = spec->multiout.dig_out_nid;
1442 else
1443 dac = spec->slave_dig_outs[i - 1];
1444 if (!dac || !(get_wcaps(codec, dac) & AC_WCAP_OUT_AMP))
1445 continue;
1446 snd_hda_codec_write(codec, dac, 0,
1447 AC_VERB_SET_AMP_GAIN_MUTE,
1448 AMP_OUT_UNMUTE);
Takashi Iwai757899a2010-07-30 10:48:14 +02001449 }
1450 pin = spec->autocfg.dig_in_pin;
1451 if (pin)
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001452 snd_hda_set_pin_ctl(codec, pin, PIN_IN);
Takashi Iwai757899a2010-07-30 10:48:14 +02001453}
1454
1455/* parse digital I/Os and set up NIDs in BIOS auto-parse mode */
1456static void alc_auto_parse_digital(struct hda_codec *codec)
1457{
1458 struct alc_spec *spec = codec->spec;
Takashi Iwai51e41522011-11-03 16:54:06 +01001459 int i, err, nums;
Takashi Iwai757899a2010-07-30 10:48:14 +02001460 hda_nid_t dig_nid;
1461
1462 /* support multiple SPDIFs; the secondary is set up as a slave */
Takashi Iwai51e41522011-11-03 16:54:06 +01001463 nums = 0;
Takashi Iwai757899a2010-07-30 10:48:14 +02001464 for (i = 0; i < spec->autocfg.dig_outs; i++) {
Takashi Iwaia9267572011-07-07 15:12:55 +02001465 hda_nid_t conn[4];
Takashi Iwai757899a2010-07-30 10:48:14 +02001466 err = snd_hda_get_connections(codec,
1467 spec->autocfg.dig_out_pins[i],
Takashi Iwaia9267572011-07-07 15:12:55 +02001468 conn, ARRAY_SIZE(conn));
Takashi Iwai51e41522011-11-03 16:54:06 +01001469 if (err <= 0)
Takashi Iwai757899a2010-07-30 10:48:14 +02001470 continue;
Takashi Iwaia9267572011-07-07 15:12:55 +02001471 dig_nid = conn[0]; /* assume the first element is audio-out */
Takashi Iwai51e41522011-11-03 16:54:06 +01001472 if (!nums) {
Takashi Iwai757899a2010-07-30 10:48:14 +02001473 spec->multiout.dig_out_nid = dig_nid;
1474 spec->dig_out_type = spec->autocfg.dig_out_type[0];
1475 } else {
1476 spec->multiout.slave_dig_outs = spec->slave_dig_outs;
Takashi Iwai51e41522011-11-03 16:54:06 +01001477 if (nums >= ARRAY_SIZE(spec->slave_dig_outs) - 1)
Takashi Iwai757899a2010-07-30 10:48:14 +02001478 break;
Takashi Iwai51e41522011-11-03 16:54:06 +01001479 spec->slave_dig_outs[nums - 1] = dig_nid;
Takashi Iwai757899a2010-07-30 10:48:14 +02001480 }
Takashi Iwai51e41522011-11-03 16:54:06 +01001481 nums++;
Takashi Iwai757899a2010-07-30 10:48:14 +02001482 }
1483
1484 if (spec->autocfg.dig_in_pin) {
Takashi Iwai01fdf182010-09-24 09:09:42 +02001485 dig_nid = codec->start_nid;
1486 for (i = 0; i < codec->num_nodes; i++, dig_nid++) {
1487 unsigned int wcaps = get_wcaps(codec, dig_nid);
1488 if (get_wcaps_type(wcaps) != AC_WID_AUD_IN)
1489 continue;
1490 if (!(wcaps & AC_WCAP_DIGITAL))
1491 continue;
1492 if (!(wcaps & AC_WCAP_CONN_LIST))
1493 continue;
1494 err = get_connection_index(codec, dig_nid,
1495 spec->autocfg.dig_in_pin);
1496 if (err >= 0) {
1497 spec->dig_in_nid = dig_nid;
1498 break;
1499 }
1500 }
Takashi Iwai757899a2010-07-30 10:48:14 +02001501 }
1502}
1503
Takashi Iwaif95474e2007-07-10 00:47:43 +02001504/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02001505 * capture mixer elements
Vincent Petryef8ef5f2008-11-23 11:31:41 +08001506 */
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001507static int alc_cap_vol_info(struct snd_kcontrol *kcontrol,
1508 struct snd_ctl_elem_info *uinfo)
1509{
1510 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1511 struct alc_spec *spec = codec->spec;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001512 unsigned long val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001513 int err;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001514
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001515 mutex_lock(&codec->control_mutex);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001516 if (spec->vol_in_capsrc)
1517 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1518 else
1519 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1520 kcontrol->private_value = val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001521 err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001522 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001523 return err;
1524}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001526static int alc_cap_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1527 unsigned int size, unsigned int __user *tlv)
1528{
1529 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1530 struct alc_spec *spec = codec->spec;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001531 unsigned long val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001532 int err;
1533
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001534 mutex_lock(&codec->control_mutex);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001535 if (spec->vol_in_capsrc)
1536 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1537 else
1538 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1539 kcontrol->private_value = val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001540 err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001541 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001542 return err;
1543}
1544
1545typedef int (*getput_call_t)(struct snd_kcontrol *kcontrol,
1546 struct snd_ctl_elem_value *ucontrol);
1547
1548static int alc_cap_getput_caller(struct snd_kcontrol *kcontrol,
1549 struct snd_ctl_elem_value *ucontrol,
Takashi Iwai125821a2012-06-22 14:30:29 +02001550 getput_call_t func, bool is_put)
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001551{
1552 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1553 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +02001554 int i, err = 0;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001555
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001556 mutex_lock(&codec->control_mutex);
Takashi Iwai125821a2012-06-22 14:30:29 +02001557 if (is_put && spec->dyn_adc_switch) {
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001558 for (i = 0; i < spec->num_adc_nids; i++) {
1559 kcontrol->private_value =
1560 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1561 3, 0, HDA_INPUT);
1562 err = func(kcontrol, ucontrol);
1563 if (err < 0)
1564 goto error;
1565 }
1566 } else {
1567 i = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001568 if (spec->vol_in_capsrc)
1569 kcontrol->private_value =
1570 HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[i],
1571 3, 0, HDA_OUTPUT);
1572 else
1573 kcontrol->private_value =
Takashi Iwai21268962011-07-07 15:01:13 +02001574 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1575 3, 0, HDA_INPUT);
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001576 err = func(kcontrol, ucontrol);
1577 }
Takashi Iwai125821a2012-06-22 14:30:29 +02001578 if (err >= 0 && is_put)
1579 alc_inv_dmic_sync(codec, false);
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001580 error:
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001581 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001582 return err;
1583}
1584
1585static int alc_cap_vol_get(struct snd_kcontrol *kcontrol,
1586 struct snd_ctl_elem_value *ucontrol)
1587{
1588 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001589 snd_hda_mixer_amp_volume_get, false);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001590}
1591
1592static int alc_cap_vol_put(struct snd_kcontrol *kcontrol,
1593 struct snd_ctl_elem_value *ucontrol)
1594{
1595 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001596 snd_hda_mixer_amp_volume_put, true);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001597}
1598
1599/* capture mixer elements */
1600#define alc_cap_sw_info snd_ctl_boolean_stereo_info
1601
1602static int alc_cap_sw_get(struct snd_kcontrol *kcontrol,
1603 struct snd_ctl_elem_value *ucontrol)
1604{
1605 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001606 snd_hda_mixer_amp_switch_get, false);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001607}
1608
1609static int alc_cap_sw_put(struct snd_kcontrol *kcontrol,
1610 struct snd_ctl_elem_value *ucontrol)
1611{
1612 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001613 snd_hda_mixer_amp_switch_put, true);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001614}
1615
Takashi Iwaia23b6882009-03-23 15:21:36 +01001616#define _DEFINE_CAPMIX(num) \
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001617 { \
1618 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1619 .name = "Capture Switch", \
1620 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
1621 .count = num, \
1622 .info = alc_cap_sw_info, \
1623 .get = alc_cap_sw_get, \
1624 .put = alc_cap_sw_put, \
1625 }, \
1626 { \
1627 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1628 .name = "Capture Volume", \
1629 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | \
1630 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
1631 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK), \
1632 .count = num, \
1633 .info = alc_cap_vol_info, \
1634 .get = alc_cap_vol_get, \
1635 .put = alc_cap_vol_put, \
1636 .tlv = { .c = alc_cap_vol_tlv }, \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001637 }
1638
1639#define _DEFINE_CAPSRC(num) \
Takashi Iwai3c3e9892008-10-31 17:48:56 +01001640 { \
1641 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1642 /* .name = "Capture Source", */ \
1643 .name = "Input Source", \
1644 .count = num, \
1645 .info = alc_mux_enum_info, \
1646 .get = alc_mux_enum_get, \
1647 .put = alc_mux_enum_put, \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001648 }
1649
1650#define DEFINE_CAPMIX(num) \
Takashi Iwaia9111322011-05-02 11:30:18 +02001651static const struct snd_kcontrol_new alc_capture_mixer ## num[] = { \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001652 _DEFINE_CAPMIX(num), \
1653 _DEFINE_CAPSRC(num), \
1654 { } /* end */ \
1655}
1656
1657#define DEFINE_CAPMIX_NOSRC(num) \
Takashi Iwaia9111322011-05-02 11:30:18 +02001658static const struct snd_kcontrol_new alc_capture_mixer_nosrc ## num[] = { \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001659 _DEFINE_CAPMIX(num), \
1660 { } /* end */ \
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001661}
1662
1663/* up to three ADCs */
1664DEFINE_CAPMIX(1);
1665DEFINE_CAPMIX(2);
1666DEFINE_CAPMIX(3);
Takashi Iwaia23b6882009-03-23 15:21:36 +01001667DEFINE_CAPMIX_NOSRC(1);
1668DEFINE_CAPMIX_NOSRC(2);
1669DEFINE_CAPMIX_NOSRC(3);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001670
1671/*
Takashi Iwai125821a2012-06-22 14:30:29 +02001672 * Inverted digital-mic handling
1673 *
1674 * First off, it's a bit tricky. The "Inverted Internal Mic Capture Switch"
1675 * gives the additional mute only to the right channel of the digital mic
1676 * capture stream. This is a workaround for avoiding the almost silence
1677 * by summing the stereo stream from some (known to be ForteMedia)
1678 * digital mic unit.
1679 *
1680 * The logic is to call alc_inv_dmic_sync() after each action (possibly)
1681 * modifying ADC amp. When the mute flag is set, it mutes the R-channel
1682 * without caching so that the cache can still keep the original value.
1683 * The cached value is then restored when the flag is set off or any other
1684 * than d-mic is used as the current input source.
1685 */
1686static void alc_inv_dmic_sync(struct hda_codec *codec, bool force)
1687{
1688 struct alc_spec *spec = codec->spec;
1689 int i;
1690
1691 if (!spec->inv_dmic_fixup)
1692 return;
1693 if (!spec->inv_dmic_muted && !force)
1694 return;
1695 for (i = 0; i < spec->num_adc_nids; i++) {
1696 int src = spec->dyn_adc_switch ? 0 : i;
1697 bool dmic_fixup = false;
1698 hda_nid_t nid;
1699 int parm, dir, v;
1700
1701 if (spec->inv_dmic_muted &&
1702 spec->imux_pins[spec->cur_mux[src]] == spec->inv_dmic_pin)
1703 dmic_fixup = true;
1704 if (!dmic_fixup && !force)
1705 continue;
1706 if (spec->vol_in_capsrc) {
1707 nid = spec->capsrc_nids[i];
1708 parm = AC_AMP_SET_RIGHT | AC_AMP_SET_OUTPUT;
1709 dir = HDA_OUTPUT;
1710 } else {
1711 nid = spec->adc_nids[i];
1712 parm = AC_AMP_SET_RIGHT | AC_AMP_SET_INPUT;
1713 dir = HDA_INPUT;
1714 }
1715 /* we care only right channel */
1716 v = snd_hda_codec_amp_read(codec, nid, 1, dir, 0);
1717 if (v & 0x80) /* if already muted, we don't need to touch */
1718 continue;
1719 if (dmic_fixup) /* add mute for d-mic */
1720 v |= 0x80;
1721 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1722 parm | v);
1723 }
1724}
1725
1726static int alc_inv_dmic_sw_get(struct snd_kcontrol *kcontrol,
1727 struct snd_ctl_elem_value *ucontrol)
1728{
1729 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1730 struct alc_spec *spec = codec->spec;
1731
1732 ucontrol->value.integer.value[0] = !spec->inv_dmic_muted;
1733 return 0;
1734}
1735
1736static int alc_inv_dmic_sw_put(struct snd_kcontrol *kcontrol,
1737 struct snd_ctl_elem_value *ucontrol)
1738{
1739 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1740 struct alc_spec *spec = codec->spec;
1741 unsigned int val = !ucontrol->value.integer.value[0];
1742
1743 if (val == spec->inv_dmic_muted)
1744 return 0;
1745 spec->inv_dmic_muted = val;
1746 alc_inv_dmic_sync(codec, true);
1747 return 0;
1748}
1749
1750static const struct snd_kcontrol_new alc_inv_dmic_sw = {
1751 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1752 .info = snd_ctl_boolean_mono_info,
1753 .get = alc_inv_dmic_sw_get,
1754 .put = alc_inv_dmic_sw_put,
1755};
1756
1757static int alc_add_inv_dmic_mixer(struct hda_codec *codec, hda_nid_t nid)
1758{
1759 struct alc_spec *spec = codec->spec;
Takashi Iwai668d1e92012-11-29 14:10:17 +01001760
1761 if (!alc_kcontrol_new(spec, "Inverted Internal Mic Capture Switch",
1762 &alc_inv_dmic_sw))
Takashi Iwai125821a2012-06-22 14:30:29 +02001763 return -ENOMEM;
1764 spec->inv_dmic_fixup = 1;
1765 spec->inv_dmic_muted = 0;
1766 spec->inv_dmic_pin = nid;
1767 return 0;
1768}
1769
Takashi Iwai6e72aa52012-06-25 10:52:25 +02001770/* typically the digital mic is put at node 0x12 */
1771static void alc_fixup_inv_dmic_0x12(struct hda_codec *codec,
1772 const struct alc_fixup *fix, int action)
1773{
1774 if (action == ALC_FIXUP_ACT_PROBE)
1775 alc_add_inv_dmic_mixer(codec, 0x12);
1776}
1777
Takashi Iwai125821a2012-06-22 14:30:29 +02001778/*
Takashi Iwai2134ea42008-01-10 16:53:55 +01001779 * virtual master controls
1780 */
1781
1782/*
1783 * slave controls for virtual master
1784 */
Takashi Iwai9322ca52012-02-03 14:28:01 +01001785static const char * const alc_slave_pfxs[] = {
1786 "Front", "Surround", "Center", "LFE", "Side",
Takashi Iwai7c589752012-03-02 09:00:33 +01001787 "Headphone", "Speaker", "Mono", "Line Out",
Takashi Iwai9322ca52012-02-03 14:28:01 +01001788 "CLFE", "Bass Speaker", "PCM",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001789 NULL,
1790};
1791
1792/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001793 * build control elements
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 */
Takashi Iwai603c4012008-07-30 15:01:44 +02001795
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001796#define NID_MAPPING (-1)
1797
1798#define SUBDEV_SPEAKER_ (0 << 6)
1799#define SUBDEV_HP_ (1 << 6)
1800#define SUBDEV_LINE_ (2 << 6)
1801#define SUBDEV_SPEAKER(x) (SUBDEV_SPEAKER_ | ((x) & 0x3f))
1802#define SUBDEV_HP(x) (SUBDEV_HP_ | ((x) & 0x3f))
1803#define SUBDEV_LINE(x) (SUBDEV_LINE_ | ((x) & 0x3f))
1804
Takashi Iwai603c4012008-07-30 15:01:44 +02001805static void alc_free_kctls(struct hda_codec *codec);
1806
Takashi Iwai67d634c2009-11-16 15:35:59 +01001807#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001808/* additional beep mixers; the actual parameters are overwritten at build */
Takashi Iwaia9111322011-05-02 11:30:18 +02001809static const struct snd_kcontrol_new alc_beep_mixer[] = {
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001810 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
Jaroslav Kysela123c07a2009-10-21 14:48:23 +02001811 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001812 { } /* end */
1813};
Takashi Iwai67d634c2009-11-16 15:35:59 +01001814#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001815
Takashi Iwaif21d78e2012-01-19 12:10:29 +01001816static int __alc_build_controls(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
1818 struct alc_spec *spec = codec->spec;
Takashi Iwai2f44f842010-06-22 11:12:32 +02001819 struct snd_kcontrol *kctl = NULL;
Takashi Iwaia9111322011-05-02 11:30:18 +02001820 const struct snd_kcontrol_new *knew;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001821 int i, j, err;
1822 unsigned int u;
1823 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
1825 for (i = 0; i < spec->num_mixers; i++) {
1826 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1827 if (err < 0)
1828 return err;
1829 }
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001830 if (spec->cap_mixer) {
1831 err = snd_hda_add_new_ctls(codec, spec->cap_mixer);
1832 if (err < 0)
1833 return err;
1834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 if (spec->multiout.dig_out_nid) {
Takashi Iwaidcda5802012-10-12 17:24:51 +02001836 err = snd_hda_create_dig_out_ctls(codec,
1837 spec->multiout.dig_out_nid,
1838 spec->multiout.dig_out_nid,
1839 spec->pcm_rec[1].pcm_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 if (err < 0)
1841 return err;
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001842 if (!spec->no_analog) {
1843 err = snd_hda_create_spdif_share_sw(codec,
1844 &spec->multiout);
1845 if (err < 0)
1846 return err;
1847 spec->multiout.share_spdif = 1;
1848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 }
1850 if (spec->dig_in_nid) {
1851 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1852 if (err < 0)
1853 return err;
1854 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001855
Takashi Iwai67d634c2009-11-16 15:35:59 +01001856#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001857 /* create beep controls if needed */
1858 if (spec->beep_amp) {
Takashi Iwaia9111322011-05-02 11:30:18 +02001859 const struct snd_kcontrol_new *knew;
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001860 for (knew = alc_beep_mixer; knew->name; knew++) {
1861 struct snd_kcontrol *kctl;
1862 kctl = snd_ctl_new1(knew, codec);
1863 if (!kctl)
1864 return -ENOMEM;
1865 kctl->private_value = spec->beep_amp;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001866 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001867 if (err < 0)
1868 return err;
1869 }
1870 }
Takashi Iwai67d634c2009-11-16 15:35:59 +01001871#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001872
Takashi Iwai2134ea42008-01-10 16:53:55 +01001873 /* if we have no master control, let's create it */
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001874 if (!spec->no_analog &&
1875 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001876 unsigned int vmaster_tlv[4];
Takashi Iwai2134ea42008-01-10 16:53:55 +01001877 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001878 HDA_OUTPUT, vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001879 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
Takashi Iwai9322ca52012-02-03 14:28:01 +01001880 vmaster_tlv, alc_slave_pfxs,
1881 "Playback Volume");
Takashi Iwai2134ea42008-01-10 16:53:55 +01001882 if (err < 0)
1883 return err;
1884 }
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001885 if (!spec->no_analog &&
1886 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
Takashi Iwai420b0fe2012-03-12 12:35:27 +01001887 err = __snd_hda_add_vmaster(codec, "Master Playback Switch",
1888 NULL, alc_slave_pfxs,
1889 "Playback Switch",
Takashi Iwaid2f344b2012-03-12 16:59:58 +01001890 true, &spec->vmaster_mute.sw_kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001891 if (err < 0)
1892 return err;
1893 }
1894
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001895 /* assign Capture Source enums to NID */
Takashi Iwaifbe618f2010-06-11 11:24:58 +02001896 if (spec->capsrc_nids || spec->adc_nids) {
1897 kctl = snd_hda_find_mixer_ctl(codec, "Capture Source");
1898 if (!kctl)
1899 kctl = snd_hda_find_mixer_ctl(codec, "Input Source");
1900 for (i = 0; kctl && i < kctl->count; i++) {
Takashi Iwai61071592011-11-23 07:52:15 +01001901 err = snd_hda_add_nid(codec, kctl, i,
1902 get_capsrc(spec, i));
Takashi Iwaifbe618f2010-06-11 11:24:58 +02001903 if (err < 0)
1904 return err;
1905 }
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001906 }
Takashi Iwai60a6a842011-07-27 14:01:24 +02001907 if (spec->cap_mixer && spec->adc_nids) {
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001908 const char *kname = kctl ? kctl->id.name : NULL;
1909 for (knew = spec->cap_mixer; knew->name; knew++) {
1910 if (kname && strcmp(knew->name, kname) == 0)
1911 continue;
1912 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1913 for (i = 0; kctl && i < kctl->count; i++) {
1914 err = snd_hda_add_nid(codec, kctl, i,
1915 spec->adc_nids[i]);
1916 if (err < 0)
1917 return err;
1918 }
1919 }
1920 }
1921
1922 /* other nid->control mapping */
1923 for (i = 0; i < spec->num_mixers; i++) {
1924 for (knew = spec->mixers[i]; knew->name; knew++) {
1925 if (knew->iface != NID_MAPPING)
1926 continue;
1927 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1928 if (kctl == NULL)
1929 continue;
1930 u = knew->subdevice;
1931 for (j = 0; j < 4; j++, u >>= 8) {
1932 nid = u & 0x3f;
1933 if (nid == 0)
1934 continue;
1935 switch (u & 0xc0) {
1936 case SUBDEV_SPEAKER_:
1937 nid = spec->autocfg.speaker_pins[nid];
1938 break;
1939 case SUBDEV_LINE_:
1940 nid = spec->autocfg.line_out_pins[nid];
1941 break;
1942 case SUBDEV_HP_:
1943 nid = spec->autocfg.hp_pins[nid];
1944 break;
1945 default:
1946 continue;
1947 }
1948 err = snd_hda_add_nid(codec, kctl, 0, nid);
1949 if (err < 0)
1950 return err;
1951 }
1952 u = knew->private_value;
1953 for (j = 0; j < 4; j++, u >>= 8) {
1954 nid = u & 0xff;
1955 if (nid == 0)
1956 continue;
1957 err = snd_hda_add_nid(codec, kctl, 0, nid);
1958 if (err < 0)
1959 return err;
1960 }
1961 }
1962 }
Takashi Iwaibae84e72010-03-22 08:30:20 +01001963
1964 alc_free_kctls(codec); /* no longer needed */
1965
Takashi Iwaif21d78e2012-01-19 12:10:29 +01001966 return 0;
1967}
1968
David Henningsson5780b622012-06-27 18:45:45 +02001969static int alc_build_jacks(struct hda_codec *codec)
Takashi Iwaif21d78e2012-01-19 12:10:29 +01001970{
1971 struct alc_spec *spec = codec->spec;
David Henningsson5780b622012-06-27 18:45:45 +02001972
1973 if (spec->shared_mic_hp) {
1974 int err;
1975 int nid = spec->autocfg.inputs[1].pin;
1976 err = snd_hda_jack_add_kctl(codec, nid, "Headphone Mic", 0);
1977 if (err < 0)
1978 return err;
1979 err = snd_hda_jack_detect_enable(codec, nid, 0);
1980 if (err < 0)
1981 return err;
1982 }
1983
1984 return snd_hda_jack_add_kctls(codec, &spec->autocfg);
1985}
1986
1987static int alc_build_controls(struct hda_codec *codec)
1988{
Takashi Iwaif21d78e2012-01-19 12:10:29 +01001989 int err = __alc_build_controls(codec);
Takashi Iwai01a61e12011-10-28 00:03:22 +02001990 if (err < 0)
1991 return err;
David Henningsson5780b622012-06-27 18:45:45 +02001992
1993 err = alc_build_jacks(codec);
Takashi Iwai420b0fe2012-03-12 12:35:27 +01001994 if (err < 0)
1995 return err;
1996 alc_apply_fixup(codec, ALC_FIXUP_ACT_BUILD);
1997 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998}
1999
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001/*
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002002 * Common callbacks
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002003 */
Takashi Iwai16ded522005-06-10 19:58:24 +02002004
Takashi Iwai584c0c42011-03-10 12:51:11 +01002005static void alc_init_special_input_src(struct hda_codec *codec);
Takashi Iwai070cff42012-02-21 12:54:17 +01002006static void alc_auto_init_std(struct hda_codec *codec);
Takashi Iwai584c0c42011-03-10 12:51:11 +01002007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008static int alc_init(struct hda_codec *codec)
2009{
2010 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002011
Takashi Iwai546bb672012-03-07 08:37:19 +01002012 if (spec->init_hook)
2013 spec->init_hook(codec);
Kailang Yang526af6e2012-03-07 08:25:20 +01002014
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02002015 alc_fix_pll(codec);
Takashi Iwai4a79ba32009-04-22 16:31:35 +02002016 alc_auto_init_amp(codec, spec->init_amp);
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02002017
Takashi Iwai2e8b2b22012-06-13 16:47:32 +02002018 snd_hda_gen_apply_verbs(codec);
Takashi Iwai584c0c42011-03-10 12:51:11 +01002019 alc_init_special_input_src(codec);
Takashi Iwai070cff42012-02-21 12:54:17 +01002020 alc_auto_init_std(codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002021
Takashi Iwai58701122011-01-13 15:41:45 +01002022 alc_apply_fixup(codec, ALC_FIXUP_ACT_INIT);
2023
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002024 hda_call_check_power_status(codec, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 return 0;
2026}
2027
Takashi Iwai83012a72012-08-24 18:38:08 +02002028#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +02002029static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2030{
2031 struct alc_spec *spec = codec->spec;
2032 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2033}
2034#endif
2035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036/*
2037 * Analog playback callbacks
2038 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002039static int alc_playback_pcm_open(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002041 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042{
2043 struct alc_spec *spec = codec->spec;
Takashi Iwai9a081602008-02-12 18:37:26 +01002044 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2045 hinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046}
2047
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002048static int alc_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 struct hda_codec *codec,
2050 unsigned int stream_tag,
2051 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002052 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053{
2054 struct alc_spec *spec = codec->spec;
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002055 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2056 stream_tag, format, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057}
2058
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002059static int alc_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002061 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062{
2063 struct alc_spec *spec = codec->spec;
2064 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2065}
2066
2067/*
2068 * Digital out
2069 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002070static int alc_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002072 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073{
2074 struct alc_spec *spec = codec->spec;
2075 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2076}
2077
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002078static int alc_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002079 struct hda_codec *codec,
2080 unsigned int stream_tag,
2081 unsigned int format,
2082 struct snd_pcm_substream *substream)
2083{
2084 struct alc_spec *spec = codec->spec;
2085 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2086 stream_tag, format, substream);
2087}
2088
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002089static int alc_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
Takashi Iwai9b5f12e2009-02-13 11:47:37 +01002090 struct hda_codec *codec,
2091 struct snd_pcm_substream *substream)
2092{
2093 struct alc_spec *spec = codec->spec;
2094 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2095}
2096
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002097static int alc_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002099 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
2101 struct alc_spec *spec = codec->spec;
2102 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2103}
2104
2105/*
2106 * Analog capture
2107 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002108static int alc_alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 struct hda_codec *codec,
2110 unsigned int stream_tag,
2111 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002112 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
2114 struct alc_spec *spec = codec->spec;
2115
Takashi Iwai63300792008-01-24 15:31:36 +01002116 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 stream_tag, 0, format);
2118 return 0;
2119}
2120
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002121static int alc_alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002123 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124{
2125 struct alc_spec *spec = codec->spec;
2126
Takashi Iwai888afa12008-03-18 09:57:50 +01002127 snd_hda_codec_cleanup_stream(codec,
2128 spec->adc_nids[substream->number + 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 return 0;
2130}
2131
Takashi Iwai840b64c2010-07-13 22:49:01 +02002132/* analog capture with dynamic dual-adc changes */
Takashi Iwai21268962011-07-07 15:01:13 +02002133static int dyn_adc_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai840b64c2010-07-13 22:49:01 +02002134 struct hda_codec *codec,
2135 unsigned int stream_tag,
2136 unsigned int format,
2137 struct snd_pcm_substream *substream)
2138{
2139 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +02002140 spec->cur_adc = spec->adc_nids[spec->dyn_adc_idx[spec->cur_mux[0]]];
Takashi Iwai840b64c2010-07-13 22:49:01 +02002141 spec->cur_adc_stream_tag = stream_tag;
2142 spec->cur_adc_format = format;
2143 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
2144 return 0;
2145}
2146
Takashi Iwai21268962011-07-07 15:01:13 +02002147static int dyn_adc_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
Takashi Iwai840b64c2010-07-13 22:49:01 +02002148 struct hda_codec *codec,
2149 struct snd_pcm_substream *substream)
2150{
2151 struct alc_spec *spec = codec->spec;
2152 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
2153 spec->cur_adc = 0;
2154 return 0;
2155}
2156
Takashi Iwai21268962011-07-07 15:01:13 +02002157static const struct hda_pcm_stream dyn_adc_pcm_analog_capture = {
Takashi Iwai840b64c2010-07-13 22:49:01 +02002158 .substreams = 1,
2159 .channels_min = 2,
2160 .channels_max = 2,
2161 .nid = 0, /* fill later */
2162 .ops = {
Takashi Iwai21268962011-07-07 15:01:13 +02002163 .prepare = dyn_adc_capture_pcm_prepare,
2164 .cleanup = dyn_adc_capture_pcm_cleanup
Takashi Iwai840b64c2010-07-13 22:49:01 +02002165 },
2166};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
2168/*
2169 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002170static const struct hda_pcm_stream alc_pcm_analog_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 .substreams = 1,
2172 .channels_min = 2,
2173 .channels_max = 8,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002174 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002176 .open = alc_playback_pcm_open,
2177 .prepare = alc_playback_pcm_prepare,
2178 .cleanup = alc_playback_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 },
2180};
2181
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002182static const struct hda_pcm_stream alc_pcm_analog_capture = {
Takashi Iwai63300792008-01-24 15:31:36 +01002183 .substreams = 1,
2184 .channels_min = 2,
2185 .channels_max = 2,
2186 /* NID is set in alc_build_pcms */
2187};
2188
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002189static const struct hda_pcm_stream alc_pcm_analog_alt_playback = {
Takashi Iwai63300792008-01-24 15:31:36 +01002190 .substreams = 1,
2191 .channels_min = 2,
2192 .channels_max = 2,
2193 /* NID is set in alc_build_pcms */
2194};
2195
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002196static const struct hda_pcm_stream alc_pcm_analog_alt_capture = {
Takashi Iwai63300792008-01-24 15:31:36 +01002197 .substreams = 2, /* can be overridden */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 .channels_min = 2,
2199 .channels_max = 2,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002200 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002202 .prepare = alc_alt_capture_pcm_prepare,
2203 .cleanup = alc_alt_capture_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 },
2205};
2206
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002207static const struct hda_pcm_stream alc_pcm_digital_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 .substreams = 1,
2209 .channels_min = 2,
2210 .channels_max = 2,
2211 /* NID is set in alc_build_pcms */
2212 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002213 .open = alc_dig_playback_pcm_open,
2214 .close = alc_dig_playback_pcm_close,
2215 .prepare = alc_dig_playback_pcm_prepare,
2216 .cleanup = alc_dig_playback_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 },
2218};
2219
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002220static const struct hda_pcm_stream alc_pcm_digital_capture = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 .substreams = 1,
2222 .channels_min = 2,
2223 .channels_max = 2,
2224 /* NID is set in alc_build_pcms */
2225};
2226
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002227/* Used by alc_build_pcms to flag that a PCM has no playback stream */
Takashi Iwaia9111322011-05-02 11:30:18 +02002228static const struct hda_pcm_stream alc_pcm_null_stream = {
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002229 .substreams = 0,
2230 .channels_min = 0,
2231 .channels_max = 0,
2232};
2233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234static int alc_build_pcms(struct hda_codec *codec)
2235{
2236 struct alc_spec *spec = codec->spec;
2237 struct hda_pcm *info = spec->pcm_rec;
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002238 const struct hda_pcm_stream *p;
Takashi Iwai1fa17572011-11-02 21:30:51 +01002239 bool have_multi_adcs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 int i;
2241
2242 codec->num_pcms = 1;
2243 codec->pcm_info = info;
2244
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002245 if (spec->no_analog)
2246 goto skip_analog;
2247
Takashi Iwai812a2cc2009-05-16 10:00:49 +02002248 snprintf(spec->stream_name_analog, sizeof(spec->stream_name_analog),
2249 "%s Analog", codec->chip_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 info->name = spec->stream_name_analog;
Kailang Yang274693f2009-12-03 10:07:50 +01002251
Takashi Iwaieedec3d2012-02-06 10:24:04 +01002252 if (spec->multiout.num_dacs > 0) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002253 p = spec->stream_analog_playback;
2254 if (!p)
2255 p = &alc_pcm_analog_playback;
2256 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002257 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
Takashi Iwai9c9a5172012-07-31 11:35:35 +02002258 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
2259 spec->multiout.max_channels;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01002260 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT &&
2261 spec->autocfg.line_outs == 2)
2262 info->stream[SNDRV_PCM_STREAM_PLAYBACK].chmap =
2263 snd_pcm_2_1_chmaps;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002264 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002265 if (spec->adc_nids) {
2266 p = spec->stream_analog_capture;
Takashi Iwai21268962011-07-07 15:01:13 +02002267 if (!p) {
2268 if (spec->dyn_adc_switch)
2269 p = &dyn_adc_pcm_analog_capture;
2270 else
2271 p = &alc_pcm_analog_capture;
2272 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002273 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002274 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
Takashi Iwai4a471b72005-12-07 13:56:29 +01002277 if (spec->channel_mode) {
2278 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2279 for (i = 0; i < spec->num_channel_mode; i++) {
2280 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2281 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 }
2284 }
2285
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002286 skip_analog:
Takashi Iwaie08a0072006-09-07 17:52:14 +02002287 /* SPDIF for stream index #1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
Takashi Iwai812a2cc2009-05-16 10:00:49 +02002289 snprintf(spec->stream_name_digital,
2290 sizeof(spec->stream_name_digital),
2291 "%s Digital", codec->chip_name);
Takashi Iwaie08a0072006-09-07 17:52:14 +02002292 codec->num_pcms = 2;
Wu Fengguangb25c9da2009-02-06 15:02:27 +08002293 codec->slave_dig_outs = spec->multiout.slave_dig_outs;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002294 info = spec->pcm_rec + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 info->name = spec->stream_name_digital;
Takashi Iwai8c441982009-01-20 18:30:20 +01002296 if (spec->dig_out_type)
2297 info->pcm_type = spec->dig_out_type;
2298 else
2299 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002300 if (spec->multiout.dig_out_nid) {
2301 p = spec->stream_digital_playback;
2302 if (!p)
2303 p = &alc_pcm_digital_playback;
2304 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2306 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002307 if (spec->dig_in_nid) {
2308 p = spec->stream_digital_capture;
2309 if (!p)
2310 p = &alc_pcm_digital_capture;
2311 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2313 }
Takashi Iwai963f8032008-08-11 10:04:40 +02002314 /* FIXME: do we need this for all Realtek codec models? */
2315 codec->spdif_status_reset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 }
2317
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002318 if (spec->no_analog)
2319 return 0;
2320
Takashi Iwaie08a0072006-09-07 17:52:14 +02002321 /* If the use of more than one ADC is requested for the current
2322 * model, configure a second analog capture-only PCM.
2323 */
Takashi Iwai1fa17572011-11-02 21:30:51 +01002324 have_multi_adcs = (spec->num_adc_nids > 1) &&
2325 !spec->dyn_adc_switch && !spec->auto_mic &&
2326 (!spec->input_mux || spec->input_mux->num_items > 1);
Takashi Iwaie08a0072006-09-07 17:52:14 +02002327 /* Additional Analaog capture for index #2 */
Takashi Iwai1fa17572011-11-02 21:30:51 +01002328 if (spec->alt_dac_nid || have_multi_adcs) {
Takashi Iwaie08a0072006-09-07 17:52:14 +02002329 codec->num_pcms = 3;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002330 info = spec->pcm_rec + 2;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002331 info->name = spec->stream_name_analog;
Takashi Iwai63300792008-01-24 15:31:36 +01002332 if (spec->alt_dac_nid) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002333 p = spec->stream_analog_alt_playback;
2334 if (!p)
2335 p = &alc_pcm_analog_alt_playback;
2336 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Takashi Iwai63300792008-01-24 15:31:36 +01002337 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2338 spec->alt_dac_nid;
2339 } else {
2340 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2341 alc_pcm_null_stream;
2342 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2343 }
Takashi Iwai1fa17572011-11-02 21:30:51 +01002344 if (have_multi_adcs) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002345 p = spec->stream_analog_alt_capture;
2346 if (!p)
2347 p = &alc_pcm_analog_alt_capture;
2348 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Takashi Iwai63300792008-01-24 15:31:36 +01002349 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
2350 spec->adc_nids[1];
2351 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
2352 spec->num_adc_nids - 1;
2353 } else {
2354 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2355 alc_pcm_null_stream;
2356 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002357 }
2358 }
2359
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 return 0;
2361}
2362
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002363static inline void alc_shutup(struct hda_codec *codec)
2364{
Takashi Iwai1c7161532011-04-07 10:37:16 +02002365 struct alc_spec *spec = codec->spec;
2366
2367 if (spec && spec->shutup)
2368 spec->shutup(codec);
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002369 snd_hda_shutup_pins(codec);
2370}
2371
Takashi Iwai603c4012008-07-30 15:01:44 +02002372static void alc_free_kctls(struct hda_codec *codec)
2373{
2374 struct alc_spec *spec = codec->spec;
2375
2376 if (spec->kctls.list) {
2377 struct snd_kcontrol_new *kctl = spec->kctls.list;
2378 int i;
2379 for (i = 0; i < spec->kctls.used; i++)
2380 kfree(kctl[i].name);
2381 }
2382 snd_array_free(&spec->kctls);
2383}
2384
Takashi Iwai23c09b02011-08-19 09:05:35 +02002385static void alc_free_bind_ctls(struct hda_codec *codec)
2386{
2387 struct alc_spec *spec = codec->spec;
2388 if (spec->bind_ctls.list) {
2389 struct hda_bind_ctls **ctl = spec->bind_ctls.list;
2390 int i;
2391 for (i = 0; i < spec->bind_ctls.used; i++)
2392 kfree(ctl[i]);
2393 }
2394 snd_array_free(&spec->bind_ctls);
2395}
2396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397static void alc_free(struct hda_codec *codec)
2398{
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002399 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002400
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002401 if (!spec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002402 return;
2403
Takashi Iwai603c4012008-07-30 15:01:44 +02002404 alc_free_kctls(codec);
Takashi Iwai23c09b02011-08-19 09:05:35 +02002405 alc_free_bind_ctls(codec);
Takashi Iwaiee48df52012-06-26 14:54:32 +02002406 snd_hda_gen_free(&spec->gen);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002407 kfree(spec);
Kusanagi Kouichi680cd532009-02-05 00:00:58 +09002408 snd_hda_detach_beep_device(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409}
2410
Takashi Iwai83012a72012-08-24 18:38:08 +02002411#ifdef CONFIG_PM
Daniel T Chenc97259d2009-12-27 18:52:08 -05002412static void alc_power_eapd(struct hda_codec *codec)
2413{
Takashi Iwai691f1fc2011-04-07 10:31:43 +02002414 alc_auto_setup_eapd(codec, false);
Daniel T Chenc97259d2009-12-27 18:52:08 -05002415}
2416
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002417static int alc_suspend(struct hda_codec *codec)
Hector Martinf5de24b2009-12-20 22:51:31 +01002418{
2419 struct alc_spec *spec = codec->spec;
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002420 alc_shutup(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +01002421 if (spec && spec->power_hook)
Daniel T Chenc97259d2009-12-27 18:52:08 -05002422 spec->power_hook(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +01002423 return 0;
2424}
2425#endif
2426
Takashi Iwai2a439522011-07-26 09:52:50 +02002427#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +01002428static int alc_resume(struct hda_codec *codec)
2429{
Takashi Iwai1c7161532011-04-07 10:37:16 +02002430 msleep(150); /* to avoid pop noise */
Takashi Iwaie044c392008-10-27 16:56:24 +01002431 codec->patch_ops.init(codec);
2432 snd_hda_codec_resume_amp(codec);
2433 snd_hda_codec_resume_cache(codec);
Takashi Iwai125821a2012-06-22 14:30:29 +02002434 alc_inv_dmic_sync(codec, true);
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002435 hda_call_check_power_status(codec, 0x01);
Takashi Iwaie044c392008-10-27 16:56:24 +01002436 return 0;
2437}
Takashi Iwaie044c392008-10-27 16:56:24 +01002438#endif
2439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440/*
2441 */
Takashi Iwaia9111322011-05-02 11:30:18 +02002442static const struct hda_codec_ops alc_patch_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 .build_controls = alc_build_controls,
2444 .build_pcms = alc_build_pcms,
2445 .init = alc_init,
2446 .free = alc_free,
David Henningsson29adc4b2012-09-25 11:31:00 +02002447 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwai2a439522011-07-26 09:52:50 +02002448#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +01002449 .resume = alc_resume,
2450#endif
Takashi Iwai83012a72012-08-24 18:38:08 +02002451#ifdef CONFIG_PM
Hector Martinf5de24b2009-12-20 22:51:31 +01002452 .suspend = alc_suspend,
Takashi Iwaicb53c622007-08-10 17:21:45 +02002453 .check_power_status = alc_check_power_status,
2454#endif
Daniel T Chenc97259d2009-12-27 18:52:08 -05002455 .reboot_notify = alc_shutup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456};
2457
David Henningsson29adc4b2012-09-25 11:31:00 +02002458
Kailang Yangc027ddc2010-03-19 11:33:06 +01002459/* replace the codec chip_name with the given string */
2460static int alc_codec_rename(struct hda_codec *codec, const char *name)
2461{
2462 kfree(codec->chip_name);
2463 codec->chip_name = kstrdup(name, GFP_KERNEL);
2464 if (!codec->chip_name) {
2465 alc_free(codec);
2466 return -ENOMEM;
2467 }
2468 return 0;
2469}
2470
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002471/*
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002472 * Rename codecs appropriately from COEF value
2473 */
2474struct alc_codec_rename_table {
2475 unsigned int vendor_id;
2476 unsigned short coef_mask;
2477 unsigned short coef_bits;
2478 const char *name;
2479};
2480
2481static struct alc_codec_rename_table rename_tbl[] = {
2482 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
2483 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
2484 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
2485 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
2486 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
2487 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
2488 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
Kailang Yangadcc70b2012-05-25 08:08:38 +02002489 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002490 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
2491 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
2492 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
2493 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
2494 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
2495 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
2496 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
2497 { } /* terminator */
2498};
2499
2500static int alc_codec_rename_from_preset(struct hda_codec *codec)
2501{
2502 const struct alc_codec_rename_table *p;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002503
2504 for (p = rename_tbl; p->vendor_id; p++) {
2505 if (p->vendor_id != codec->vendor_id)
2506 continue;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02002507 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002508 return alc_codec_rename(codec, p->name);
2509 }
2510 return 0;
2511}
2512
2513/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002514 * Automatic parse of I/O pins from the BIOS configuration
2515 */
2516
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002517enum {
2518 ALC_CTL_WIDGET_VOL,
2519 ALC_CTL_WIDGET_MUTE,
2520 ALC_CTL_BIND_MUTE,
Takashi Iwai23c09b02011-08-19 09:05:35 +02002521 ALC_CTL_BIND_VOL,
2522 ALC_CTL_BIND_SW,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002523};
Takashi Iwai1d045db2011-07-07 18:23:21 +02002524static const struct snd_kcontrol_new alc_control_templates[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002525 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2526 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Takashi Iwai985be542005-11-02 18:26:49 +01002527 HDA_BIND_MUTE(NULL, 0, 0, 0),
Takashi Iwai23c09b02011-08-19 09:05:35 +02002528 HDA_BIND_VOL(NULL, 0),
2529 HDA_BIND_SW(NULL, 0),
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002530};
2531
2532/* add dynamic controls */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002533static int add_control(struct alc_spec *spec, int type, const char *name,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002534 int cidx, unsigned long val)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002535{
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002536 struct snd_kcontrol_new *knew;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002537
Takashi Iwai668d1e92012-11-29 14:10:17 +01002538 knew = alc_kcontrol_new(spec, name, &alc_control_templates[type]);
Takashi Iwai603c4012008-07-30 15:01:44 +02002539 if (!knew)
2540 return -ENOMEM;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002541 knew->index = cidx;
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002542 if (get_amp_nid_(val))
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002543 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002544 knew->private_value = val;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002545 return 0;
2546}
2547
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002548static int add_control_with_pfx(struct alc_spec *spec, int type,
2549 const char *pfx, const char *dir,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002550 const char *sfx, int cidx, unsigned long val)
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002551{
2552 char name[32];
2553 snprintf(name, sizeof(name), "%s %s %s", pfx, dir, sfx);
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002554 return add_control(spec, type, name, cidx, val);
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002555}
2556
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002557#define add_pb_vol_ctrl(spec, type, pfx, val) \
2558 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val)
2559#define add_pb_sw_ctrl(spec, type, pfx, val) \
2560 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val)
2561#define __add_pb_vol_ctrl(spec, type, pfx, cidx, val) \
2562 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val)
2563#define __add_pb_sw_ctrl(spec, type, pfx, cidx, val) \
2564 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val)
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002565
Takashi Iwai23c09b02011-08-19 09:05:35 +02002566static const char * const channel_name[4] = {
2567 "Front", "Surround", "CLFE", "Side"
2568};
2569
Takashi Iwai6843ca12011-06-24 11:03:58 +02002570static const char *alc_get_line_out_pfx(struct alc_spec *spec, int ch,
2571 bool can_be_master, int *index)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002572{
Takashi Iwaice764ab2011-04-27 16:35:23 +02002573 struct auto_pin_cfg *cfg = &spec->autocfg;
2574
Takashi Iwai6843ca12011-06-24 11:03:58 +02002575 *index = 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02002576 if (cfg->line_outs == 1 && !spec->multi_ios &&
2577 !cfg->hp_outs && !cfg->speaker_outs && can_be_master)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002578 return "Master";
2579
2580 switch (cfg->line_out_type) {
2581 case AUTO_PIN_SPEAKER_OUT:
David Henningssonebbeb3d2011-03-04 14:08:30 +01002582 if (cfg->line_outs == 1)
2583 return "Speaker";
Takashi Iwaifbabc242011-12-07 17:14:20 +01002584 if (cfg->line_outs == 2)
2585 return ch ? "Bass Speaker" : "Speaker";
David Henningssonebbeb3d2011-03-04 14:08:30 +01002586 break;
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002587 case AUTO_PIN_HP_OUT:
Takashi Iwai6843ca12011-06-24 11:03:58 +02002588 /* for multi-io case, only the primary out */
2589 if (ch && spec->multi_ios)
2590 break;
2591 *index = ch;
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002592 return "Headphone";
2593 default:
Takashi Iwaice764ab2011-04-27 16:35:23 +02002594 if (cfg->line_outs == 1 && !spec->multi_ios)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002595 return "PCM";
2596 break;
2597 }
David Henningsson71aa5eb2012-10-17 12:43:44 +02002598 if (ch >= ARRAY_SIZE(channel_name)) {
2599 snd_BUG();
Takashi Iwai23c09b02011-08-19 09:05:35 +02002600 return "PCM";
David Henningsson71aa5eb2012-10-17 12:43:44 +02002601 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02002602
2603 return channel_name[ch];
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002604}
2605
Takashi Iwai83012a72012-08-24 18:38:08 +02002606#ifdef CONFIG_PM
Takashi Iwai164f73e2012-02-21 11:27:09 +01002607/* add the powersave loopback-list entry */
2608static void add_loopback_list(struct alc_spec *spec, hda_nid_t mix, int idx)
2609{
2610 struct hda_amp_list *list;
2611
2612 if (spec->num_loopbacks >= ARRAY_SIZE(spec->loopback_list) - 1)
2613 return;
2614 list = spec->loopback_list + spec->num_loopbacks;
2615 list->nid = mix;
2616 list->dir = HDA_INPUT;
2617 list->idx = idx;
2618 spec->num_loopbacks++;
2619 spec->loopback.amplist = spec->loopback_list;
2620}
2621#else
2622#define add_loopback_list(spec, mix, idx) /* NOP */
2623#endif
2624
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002625/* create input playback/capture controls for the given pin */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002626static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002627 const char *ctlname, int ctlidx,
Kailang Yangdf694da2005-12-05 19:42:22 +01002628 int idx, hda_nid_t mix_nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002629{
Kailang Yangdf694da2005-12-05 19:42:22 +01002630 int err;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002631
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002632 err = __add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, ctlname, ctlidx,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002633 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2634 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002635 return err;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002636 err = __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, ctlidx,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002637 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2638 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002639 return err;
Takashi Iwai164f73e2012-02-21 11:27:09 +01002640 add_loopback_list(spec, mix_nid, idx);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002641 return 0;
2642}
2643
Takashi Iwai05f5f472009-08-25 13:10:18 +02002644static int alc_is_input_pin(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002645{
Takashi Iwai05f5f472009-08-25 13:10:18 +02002646 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2647 return (pincap & AC_PINCAP_IN) != 0;
2648}
2649
Takashi Iwai1d045db2011-07-07 18:23:21 +02002650/* Parse the codec tree and retrieve ADCs and corresponding capsrc MUXs */
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002651static int alc_auto_fill_adc_caps(struct hda_codec *codec)
Takashi Iwaib7821702011-07-06 15:12:46 +02002652{
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002653 struct alc_spec *spec = codec->spec;
Takashi Iwaib7821702011-07-06 15:12:46 +02002654 hda_nid_t nid;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002655 hda_nid_t *adc_nids = spec->private_adc_nids;
2656 hda_nid_t *cap_nids = spec->private_capsrc_nids;
2657 int max_nums = ARRAY_SIZE(spec->private_adc_nids);
Takashi Iwaib7821702011-07-06 15:12:46 +02002658 int i, nums = 0;
2659
2660 nid = codec->start_nid;
2661 for (i = 0; i < codec->num_nodes; i++, nid++) {
2662 hda_nid_t src;
Takashi Iwaib7821702011-07-06 15:12:46 +02002663 unsigned int caps = get_wcaps(codec, nid);
2664 int type = get_wcaps_type(caps);
2665
2666 if (type != AC_WID_AUD_IN || (caps & AC_WCAP_DIGITAL))
2667 continue;
2668 adc_nids[nums] = nid;
2669 cap_nids[nums] = nid;
2670 src = nid;
2671 for (;;) {
2672 int n;
2673 type = get_wcaps_type(get_wcaps(codec, src));
2674 if (type == AC_WID_PIN)
2675 break;
2676 if (type == AC_WID_AUD_SEL) {
2677 cap_nids[nums] = src;
2678 break;
2679 }
Takashi Iwai09cf03b2012-05-19 17:21:25 +02002680 n = snd_hda_get_num_conns(codec, src);
Takashi Iwaib7821702011-07-06 15:12:46 +02002681 if (n > 1) {
2682 cap_nids[nums] = src;
2683 break;
2684 } else if (n != 1)
2685 break;
Takashi Iwai09cf03b2012-05-19 17:21:25 +02002686 if (snd_hda_get_connections(codec, src, &src, 1) != 1)
2687 break;
Takashi Iwaib7821702011-07-06 15:12:46 +02002688 }
2689 if (++nums >= max_nums)
2690 break;
2691 }
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002692 spec->adc_nids = spec->private_adc_nids;
Takashi Iwai21268962011-07-07 15:01:13 +02002693 spec->capsrc_nids = spec->private_capsrc_nids;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002694 spec->num_adc_nids = nums;
Takashi Iwaib7821702011-07-06 15:12:46 +02002695 return nums;
2696}
2697
Takashi Iwai05f5f472009-08-25 13:10:18 +02002698/* create playback/capture controls for input pins */
Takashi Iwaib7821702011-07-06 15:12:46 +02002699static int alc_auto_create_input_ctls(struct hda_codec *codec)
Takashi Iwai05f5f472009-08-25 13:10:18 +02002700{
2701 struct alc_spec *spec = codec->spec;
Takashi Iwaib7821702011-07-06 15:12:46 +02002702 const struct auto_pin_cfg *cfg = &spec->autocfg;
2703 hda_nid_t mixer = spec->mixer_nid;
Herton Ronaldo Krzesinski61b9b9b2009-01-28 09:16:33 -02002704 struct hda_input_mux *imux = &spec->private_imux[0];
Takashi Iwaib7821702011-07-06 15:12:46 +02002705 int num_adcs;
Takashi Iwaib7821702011-07-06 15:12:46 +02002706 int i, c, err, idx, type_idx = 0;
David Henningsson5322bf22011-01-05 11:03:56 +01002707 const char *prev_label = NULL;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002708
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002709 num_adcs = alc_auto_fill_adc_caps(codec);
Takashi Iwaib7821702011-07-06 15:12:46 +02002710 if (num_adcs < 0)
2711 return 0;
2712
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002713 for (i = 0; i < cfg->num_inputs; i++) {
Takashi Iwai05f5f472009-08-25 13:10:18 +02002714 hda_nid_t pin;
Takashi Iwai10a20af2010-09-09 16:28:02 +02002715 const char *label;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002716
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002717 pin = cfg->inputs[i].pin;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002718 if (!alc_is_input_pin(codec, pin))
2719 continue;
2720
David Henningsson5322bf22011-01-05 11:03:56 +01002721 label = hda_get_autocfg_input_label(codec, cfg, i);
Takashi Iwai24de1832011-11-07 17:13:39 +01002722 if (spec->shared_mic_hp && !strcmp(label, "Misc"))
2723 label = "Headphone Mic";
David Henningsson5322bf22011-01-05 11:03:56 +01002724 if (prev_label && !strcmp(label, prev_label))
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002725 type_idx++;
2726 else
2727 type_idx = 0;
David Henningsson5322bf22011-01-05 11:03:56 +01002728 prev_label = label;
2729
Takashi Iwai05f5f472009-08-25 13:10:18 +02002730 if (mixer) {
2731 idx = get_connection_index(codec, mixer, pin);
2732 if (idx >= 0) {
2733 err = new_analog_input(spec, pin,
Takashi Iwai10a20af2010-09-09 16:28:02 +02002734 label, type_idx,
2735 idx, mixer);
Takashi Iwai05f5f472009-08-25 13:10:18 +02002736 if (err < 0)
2737 return err;
2738 }
2739 }
2740
Takashi Iwaib7821702011-07-06 15:12:46 +02002741 for (c = 0; c < num_adcs; c++) {
Takashi Iwai61071592011-11-23 07:52:15 +01002742 hda_nid_t cap = get_capsrc(spec, c);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002743 idx = get_connection_index(codec, cap, pin);
Takashi Iwaib7821702011-07-06 15:12:46 +02002744 if (idx >= 0) {
Takashi Iwai21268962011-07-07 15:01:13 +02002745 spec->imux_pins[imux->num_items] = pin;
Takashi Iwaib7821702011-07-06 15:12:46 +02002746 snd_hda_add_imux_item(imux, label, idx, NULL);
2747 break;
2748 }
2749 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002750 }
Takashi Iwai21268962011-07-07 15:01:13 +02002751
2752 spec->num_mux_defs = 1;
2753 spec->input_mux = imux;
2754
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002755 return 0;
2756}
2757
Takashi Iwai24de1832011-11-07 17:13:39 +01002758/* create a shared input with the headphone out */
2759static int alc_auto_create_shared_input(struct hda_codec *codec)
2760{
2761 struct alc_spec *spec = codec->spec;
2762 struct auto_pin_cfg *cfg = &spec->autocfg;
2763 unsigned int defcfg;
2764 hda_nid_t nid;
2765
2766 /* only one internal input pin? */
2767 if (cfg->num_inputs != 1)
2768 return 0;
2769 defcfg = snd_hda_codec_get_pincfg(codec, cfg->inputs[0].pin);
2770 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
2771 return 0;
2772
2773 if (cfg->hp_outs == 1 && cfg->line_out_type == AUTO_PIN_SPEAKER_OUT)
2774 nid = cfg->hp_pins[0]; /* OK, we have a single HP-out */
2775 else if (cfg->line_outs == 1 && cfg->line_out_type == AUTO_PIN_HP_OUT)
2776 nid = cfg->line_out_pins[0]; /* OK, we have a single line-out */
2777 else
2778 return 0; /* both not available */
2779
2780 if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_IN))
2781 return 0; /* no input */
2782
2783 cfg->inputs[1].pin = nid;
2784 cfg->inputs[1].type = AUTO_PIN_MIC;
2785 cfg->num_inputs = 2;
2786 spec->shared_mic_hp = 1;
2787 snd_printdd("realtek: Enable shared I/O jack on NID 0x%x\n", nid);
2788 return 0;
2789}
2790
Takashi Iwaif6c7e542008-02-12 18:32:23 +01002791static void alc_set_pin_output(struct hda_codec *codec, hda_nid_t nid,
2792 unsigned int pin_type)
2793{
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02002794 snd_hda_set_pin_ctl(codec, nid, pin_type);
Takashi Iwaif6c7e542008-02-12 18:32:23 +01002795 /* unmute pin */
Takashi Iwai44c02402011-07-08 15:14:19 +02002796 if (nid_has_mute(codec, nid, HDA_OUTPUT))
2797 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaid260cdf2008-02-13 17:19:35 +01002798 AMP_OUT_UNMUTE);
Takashi Iwaif6c7e542008-02-12 18:32:23 +01002799}
2800
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02002801static int get_pin_type(int line_out_type)
2802{
2803 if (line_out_type == AUTO_PIN_HP_OUT)
2804 return PIN_HP;
2805 else
2806 return PIN_OUT;
2807}
2808
Takashi Iwai0a7f5322011-07-06 15:15:12 +02002809static void alc_auto_init_analog_input(struct hda_codec *codec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002810{
2811 struct alc_spec *spec = codec->spec;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002812 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002813 int i;
2814
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002815 for (i = 0; i < cfg->num_inputs; i++) {
2816 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002817 if (alc_is_input_pin(codec, nid)) {
Takashi Iwai30ea0982010-09-16 18:47:56 +02002818 alc_set_input_pin(codec, nid, cfg->inputs[i].type);
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002819 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002820 snd_hda_codec_write(codec, nid, 0,
2821 AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002822 AMP_OUT_MUTE);
2823 }
2824 }
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002825
2826 /* mute all loopback inputs */
2827 if (spec->mixer_nid) {
Takashi Iwai09cf03b2012-05-19 17:21:25 +02002828 int nums = snd_hda_get_num_conns(codec, spec->mixer_nid);
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002829 for (i = 0; i < nums; i++)
2830 snd_hda_codec_write(codec, spec->mixer_nid, 0,
2831 AC_VERB_SET_AMP_GAIN_MUTE,
2832 AMP_IN_MUTE(i));
2833 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002834}
2835
Takashi Iwai7085ec12009-10-02 09:03:58 +02002836/* convert from MIX nid to DAC */
Takashi Iwai604401a2011-04-27 15:14:23 +02002837static hda_nid_t alc_auto_mix_to_dac(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002838{
Takashi Iwai604401a2011-04-27 15:14:23 +02002839 hda_nid_t list[5];
Takashi Iwai1304ac82011-04-06 15:16:21 +02002840 int i, num;
2841
Takashi Iwaiafcd5512011-07-08 11:07:59 +02002842 if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_AUD_OUT)
2843 return nid;
Takashi Iwai1304ac82011-04-06 15:16:21 +02002844 num = snd_hda_get_connections(codec, nid, list, ARRAY_SIZE(list));
2845 for (i = 0; i < num; i++) {
2846 if (get_wcaps_type(get_wcaps(codec, list[i])) == AC_WID_AUD_OUT)
2847 return list[i];
2848 }
2849 return 0;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002850}
2851
Takashi Iwai604401a2011-04-27 15:14:23 +02002852/* go down to the selector widget before the mixer */
2853static hda_nid_t alc_go_down_to_selector(struct hda_codec *codec, hda_nid_t pin)
2854{
2855 hda_nid_t srcs[5];
2856 int num = snd_hda_get_connections(codec, pin, srcs,
2857 ARRAY_SIZE(srcs));
2858 if (num != 1 ||
2859 get_wcaps_type(get_wcaps(codec, srcs[0])) != AC_WID_AUD_SEL)
2860 return pin;
2861 return srcs[0];
2862}
2863
Takashi Iwai7085ec12009-10-02 09:03:58 +02002864/* get MIX nid connected to the given pin targeted to DAC */
Takashi Iwai604401a2011-04-27 15:14:23 +02002865static hda_nid_t alc_auto_dac_to_mix(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai7085ec12009-10-02 09:03:58 +02002866 hda_nid_t dac)
2867{
David Henningssoncc1c4522010-11-24 14:17:47 +01002868 hda_nid_t mix[5];
Takashi Iwai7085ec12009-10-02 09:03:58 +02002869 int i, num;
2870
Takashi Iwai604401a2011-04-27 15:14:23 +02002871 pin = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002872 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2873 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02002874 if (alc_auto_mix_to_dac(codec, mix[i]) == dac)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002875 return mix[i];
2876 }
2877 return 0;
2878}
2879
Takashi Iwaice764ab2011-04-27 16:35:23 +02002880/* select the connection from pin to DAC if needed */
2881static int alc_auto_select_dac(struct hda_codec *codec, hda_nid_t pin,
2882 hda_nid_t dac)
2883{
2884 hda_nid_t mix[5];
2885 int i, num;
2886
2887 pin = alc_go_down_to_selector(codec, pin);
2888 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2889 if (num < 2)
2890 return 0;
2891 for (i = 0; i < num; i++) {
2892 if (alc_auto_mix_to_dac(codec, mix[i]) == dac) {
2893 snd_hda_codec_update_cache(codec, pin, 0,
2894 AC_VERB_SET_CONNECT_SEL, i);
2895 return 0;
2896 }
2897 }
2898 return 0;
2899}
2900
Takashi Iwai185d99f2012-02-16 18:39:45 +01002901static bool alc_is_dac_already_used(struct hda_codec *codec, hda_nid_t nid)
2902{
2903 struct alc_spec *spec = codec->spec;
Takashi Iwai276dd702012-02-17 16:17:03 +01002904 int i;
Takashi Iwai185d99f2012-02-16 18:39:45 +01002905 if (found_in_nid_list(nid, spec->multiout.dac_nids,
2906 ARRAY_SIZE(spec->private_dac_nids)) ||
2907 found_in_nid_list(nid, spec->multiout.hp_out_nid,
2908 ARRAY_SIZE(spec->multiout.hp_out_nid)) ||
2909 found_in_nid_list(nid, spec->multiout.extra_out_nid,
2910 ARRAY_SIZE(spec->multiout.extra_out_nid)))
2911 return true;
Takashi Iwai276dd702012-02-17 16:17:03 +01002912 for (i = 0; i < spec->multi_ios; i++) {
2913 if (spec->multi_io[i].dac == nid)
2914 return true;
2915 }
Takashi Iwai185d99f2012-02-16 18:39:45 +01002916 return false;
2917}
2918
Takashi Iwai7085ec12009-10-02 09:03:58 +02002919/* look for an empty DAC slot */
Takashi Iwai604401a2011-04-27 15:14:23 +02002920static hda_nid_t alc_auto_look_for_dac(struct hda_codec *codec, hda_nid_t pin)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002921{
Takashi Iwai7085ec12009-10-02 09:03:58 +02002922 hda_nid_t srcs[5];
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002923 int i, num;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002924
Takashi Iwai604401a2011-04-27 15:14:23 +02002925 pin = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002926 num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs));
Takashi Iwai7085ec12009-10-02 09:03:58 +02002927 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02002928 hda_nid_t nid = alc_auto_mix_to_dac(codec, srcs[i]);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002929 if (!nid)
2930 continue;
Takashi Iwai185d99f2012-02-16 18:39:45 +01002931 if (!alc_is_dac_already_used(codec, nid))
2932 return nid;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002933 }
2934 return 0;
2935}
2936
Takashi Iwai07b18f62011-11-10 15:42:54 +01002937/* check whether the DAC is reachable from the pin */
2938static bool alc_auto_is_dac_reachable(struct hda_codec *codec,
2939 hda_nid_t pin, hda_nid_t dac)
2940{
Takashi Iwaidc31b582012-02-17 17:27:53 +01002941 if (!pin || !dac)
2942 return false;
Takashi Iwai6a84c302012-12-05 14:08:45 +01002943 return snd_hda_get_conn_index(codec, pin, dac, true) >= 0;
Takashi Iwai07b18f62011-11-10 15:42:54 +01002944}
2945
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002946static hda_nid_t get_dac_if_single(struct hda_codec *codec, hda_nid_t pin)
2947{
Takashi Iwai140547e2012-02-16 17:23:46 +01002948 struct alc_spec *spec = codec->spec;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002949 hda_nid_t sel = alc_go_down_to_selector(codec, pin);
Takashi Iwai185d99f2012-02-16 18:39:45 +01002950 hda_nid_t nid, nid_found, srcs[5];
2951 int i, num = snd_hda_get_connections(codec, sel, srcs,
Takashi Iwai140547e2012-02-16 17:23:46 +01002952 ARRAY_SIZE(srcs));
Takashi Iwai185d99f2012-02-16 18:39:45 +01002953 if (num == 1)
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002954 return alc_auto_look_for_dac(codec, pin);
Takashi Iwai185d99f2012-02-16 18:39:45 +01002955 nid_found = 0;
2956 for (i = 0; i < num; i++) {
2957 if (srcs[i] == spec->mixer_nid)
2958 continue;
2959 nid = alc_auto_mix_to_dac(codec, srcs[i]);
2960 if (nid && !alc_is_dac_already_used(codec, nid)) {
2961 if (nid_found)
2962 return 0;
2963 nid_found = nid;
2964 }
2965 }
2966 return nid_found;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002967}
2968
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01002969/* mark up volume and mute control NIDs: used during badness parsing and
2970 * at creating actual controls
2971 */
2972static inline unsigned int get_ctl_pos(unsigned int data)
2973{
2974 hda_nid_t nid = get_amp_nid_(data);
2975 unsigned int dir;
2976 if (snd_BUG_ON(nid >= MAX_VOL_NIDS))
2977 return 0;
2978 dir = get_amp_direction_(data);
2979 return (nid << 1) | dir;
2980}
2981
2982#define is_ctl_used(bits, data) \
2983 test_bit(get_ctl_pos(data), bits)
2984#define mark_ctl_usage(bits, data) \
2985 set_bit(get_ctl_pos(data), bits)
2986
2987static void clear_vol_marks(struct hda_codec *codec)
2988{
2989 struct alc_spec *spec = codec->spec;
2990 memset(spec->vol_ctls, 0, sizeof(spec->vol_ctls));
2991 memset(spec->sw_ctls, 0, sizeof(spec->sw_ctls));
2992}
2993
2994/* badness definition */
2995enum {
2996 /* No primary DAC is found for the main output */
2997 BAD_NO_PRIMARY_DAC = 0x10000,
2998 /* No DAC is found for the extra output */
2999 BAD_NO_DAC = 0x4000,
Takashi Iwai276dd702012-02-17 16:17:03 +01003000 /* No possible multi-ios */
3001 BAD_MULTI_IO = 0x103,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003002 /* No individual DAC for extra output */
Takashi Iwai276dd702012-02-17 16:17:03 +01003003 BAD_NO_EXTRA_DAC = 0x102,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003004 /* No individual DAC for extra surrounds */
Takashi Iwai276dd702012-02-17 16:17:03 +01003005 BAD_NO_EXTRA_SURR_DAC = 0x101,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003006 /* Primary DAC shared with main surrounds */
3007 BAD_SHARED_SURROUND = 0x100,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003008 /* Primary DAC shared with main CLFE */
3009 BAD_SHARED_CLFE = 0x10,
3010 /* Primary DAC shared with extra surrounds */
3011 BAD_SHARED_EXTRA_SURROUND = 0x10,
Takashi Iwai276dd702012-02-17 16:17:03 +01003012 /* Volume widget is shared */
3013 BAD_SHARED_VOL = 0x10,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003014};
3015
3016static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
3017 hda_nid_t pin, hda_nid_t dac);
3018static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
3019 hda_nid_t pin, hda_nid_t dac);
3020
3021static int eval_shared_vol_badness(struct hda_codec *codec, hda_nid_t pin,
3022 hda_nid_t dac)
3023{
3024 struct alc_spec *spec = codec->spec;
3025 hda_nid_t nid;
3026 unsigned int val;
3027 int badness = 0;
3028
3029 nid = alc_look_for_out_vol_nid(codec, pin, dac);
3030 if (nid) {
3031 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3032 if (is_ctl_used(spec->vol_ctls, nid))
3033 badness += BAD_SHARED_VOL;
3034 else
3035 mark_ctl_usage(spec->vol_ctls, val);
3036 } else
3037 badness += BAD_SHARED_VOL;
3038 nid = alc_look_for_out_mute_nid(codec, pin, dac);
3039 if (nid) {
3040 unsigned int wid_type = get_wcaps_type(get_wcaps(codec, nid));
3041 if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT)
3042 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3043 else
3044 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT);
3045 if (is_ctl_used(spec->sw_ctls, val))
3046 badness += BAD_SHARED_VOL;
3047 else
3048 mark_ctl_usage(spec->sw_ctls, val);
3049 } else
3050 badness += BAD_SHARED_VOL;
3051 return badness;
3052}
3053
Takashi Iwaidc31b582012-02-17 17:27:53 +01003054struct badness_table {
3055 int no_primary_dac; /* no primary DAC */
3056 int no_dac; /* no secondary DACs */
3057 int shared_primary; /* primary DAC is shared with main output */
3058 int shared_surr; /* secondary DAC shared with main or primary */
3059 int shared_clfe; /* third DAC shared with main or primary */
3060 int shared_surr_main; /* secondary DAC sahred with main/DAC0 */
3061};
3062
3063static struct badness_table main_out_badness = {
3064 .no_primary_dac = BAD_NO_PRIMARY_DAC,
3065 .no_dac = BAD_NO_DAC,
3066 .shared_primary = BAD_NO_PRIMARY_DAC,
3067 .shared_surr = BAD_SHARED_SURROUND,
3068 .shared_clfe = BAD_SHARED_CLFE,
3069 .shared_surr_main = BAD_SHARED_SURROUND,
3070};
3071
3072static struct badness_table extra_out_badness = {
3073 .no_primary_dac = BAD_NO_DAC,
3074 .no_dac = BAD_NO_DAC,
3075 .shared_primary = BAD_NO_EXTRA_DAC,
3076 .shared_surr = BAD_SHARED_EXTRA_SURROUND,
3077 .shared_clfe = BAD_SHARED_EXTRA_SURROUND,
3078 .shared_surr_main = BAD_NO_EXTRA_SURR_DAC,
3079};
3080
3081/* try to assign DACs to pins and return the resultant badness */
3082static int alc_auto_fill_dacs(struct hda_codec *codec, int num_outs,
3083 const hda_nid_t *pins, hda_nid_t *dacs,
3084 const struct badness_table *bad)
Takashi Iwaic2674682011-08-24 17:57:44 +02003085{
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003086 struct alc_spec *spec = codec->spec;
Takashi Iwaidc31b582012-02-17 17:27:53 +01003087 struct auto_pin_cfg *cfg = &spec->autocfg;
3088 int i, j;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003089 int badness = 0;
3090 hda_nid_t dac;
Takashi Iwaic2674682011-08-24 17:57:44 +02003091
Takashi Iwai185d99f2012-02-16 18:39:45 +01003092 if (!num_outs)
3093 return 0;
3094
Takashi Iwaidc31b582012-02-17 17:27:53 +01003095 for (i = 0; i < num_outs; i++) {
3096 hda_nid_t pin = pins[i];
3097 if (!dacs[i])
3098 dacs[i] = alc_auto_look_for_dac(codec, pin);
3099 if (!dacs[i] && !i) {
3100 for (j = 1; j < num_outs; j++) {
3101 if (alc_auto_is_dac_reachable(codec, pin, dacs[j])) {
3102 dacs[0] = dacs[j];
3103 dacs[j] = 0;
3104 break;
3105 }
Takashi Iwai185d99f2012-02-16 18:39:45 +01003106 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003107 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003108 dac = dacs[i];
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003109 if (!dac) {
Takashi Iwaidc31b582012-02-17 17:27:53 +01003110 if (alc_auto_is_dac_reachable(codec, pin, dacs[0]))
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003111 dac = dacs[0];
Takashi Iwaidc31b582012-02-17 17:27:53 +01003112 else if (cfg->line_outs > i &&
3113 alc_auto_is_dac_reachable(codec, pin,
3114 spec->private_dac_nids[i]))
3115 dac = spec->private_dac_nids[i];
3116 if (dac) {
3117 if (!i)
3118 badness += bad->shared_primary;
3119 else if (i == 1)
3120 badness += bad->shared_surr;
3121 else
3122 badness += bad->shared_clfe;
3123 } else if (alc_auto_is_dac_reachable(codec, pin,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003124 spec->private_dac_nids[0])) {
3125 dac = spec->private_dac_nids[0];
Takashi Iwaidc31b582012-02-17 17:27:53 +01003126 badness += bad->shared_surr_main;
3127 } else if (!i)
3128 badness += bad->no_primary_dac;
3129 else
3130 badness += bad->no_dac;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003131 }
3132 if (dac)
Takashi Iwaidc31b582012-02-17 17:27:53 +01003133 badness += eval_shared_vol_badness(codec, pin, dac);
Takashi Iwaic2674682011-08-24 17:57:44 +02003134 }
Takashi Iwaidc31b582012-02-17 17:27:53 +01003135
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003136 return badness;
Takashi Iwaic2674682011-08-24 17:57:44 +02003137}
3138
3139static int alc_auto_fill_multi_ios(struct hda_codec *codec,
Takashi Iwai276dd702012-02-17 16:17:03 +01003140 hda_nid_t reference_pin,
3141 bool hardwired, int offset);
Takashi Iwaic2674682011-08-24 17:57:44 +02003142
Takashi Iwai185d99f2012-02-16 18:39:45 +01003143static bool alc_map_singles(struct hda_codec *codec, int outs,
3144 const hda_nid_t *pins, hda_nid_t *dacs)
3145{
3146 int i;
3147 bool found = false;
3148 for (i = 0; i < outs; i++) {
3149 if (dacs[i])
3150 continue;
3151 dacs[i] = get_dac_if_single(codec, pins[i]);
3152 if (dacs[i])
3153 found = true;
3154 }
3155 return found;
3156}
3157
Takashi Iwai7085ec12009-10-02 09:03:58 +02003158/* fill in the dac_nids table from the parsed pin configuration */
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003159static int fill_and_eval_dacs(struct hda_codec *codec,
Takashi Iwai276dd702012-02-17 16:17:03 +01003160 bool fill_hardwired,
3161 bool fill_mio_first)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003162{
3163 struct alc_spec *spec = codec->spec;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003164 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaidc31b582012-02-17 17:27:53 +01003165 int i, err, badness;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003166
Takashi Iwai8f398ae2011-07-23 18:57:11 +02003167 /* set num_dacs once to full for alc_auto_look_for_dac() */
3168 spec->multiout.num_dacs = cfg->line_outs;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003169 spec->multiout.dac_nids = spec->private_dac_nids;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003170 memset(spec->private_dac_nids, 0, sizeof(spec->private_dac_nids));
3171 memset(spec->multiout.hp_out_nid, 0, sizeof(spec->multiout.hp_out_nid));
3172 memset(spec->multiout.extra_out_nid, 0, sizeof(spec->multiout.extra_out_nid));
Takashi Iwai0a34b422011-12-07 17:20:30 +01003173 spec->multi_ios = 0;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003174 clear_vol_marks(codec);
3175 badness = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003176
3177 /* fill hard-wired DACs first */
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003178 if (fill_hardwired) {
Takashi Iwai185d99f2012-02-16 18:39:45 +01003179 bool mapped;
3180 do {
3181 mapped = alc_map_singles(codec, cfg->line_outs,
Takashi Iwai276dd702012-02-17 16:17:03 +01003182 cfg->line_out_pins,
3183 spec->private_dac_nids);
Takashi Iwai185d99f2012-02-16 18:39:45 +01003184 mapped |= alc_map_singles(codec, cfg->hp_outs,
3185 cfg->hp_pins,
3186 spec->multiout.hp_out_nid);
3187 mapped |= alc_map_singles(codec, cfg->speaker_outs,
3188 cfg->speaker_pins,
3189 spec->multiout.extra_out_nid);
Takashi Iwai276dd702012-02-17 16:17:03 +01003190 if (fill_mio_first && cfg->line_outs == 1 &&
3191 cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3192 err = alc_auto_fill_multi_ios(codec, cfg->line_out_pins[0], true, 0);
3193 if (!err)
3194 mapped = true;
3195 }
Takashi Iwai185d99f2012-02-16 18:39:45 +01003196 } while (mapped);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003197 }
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003198
Takashi Iwaidc31b582012-02-17 17:27:53 +01003199 badness += alc_auto_fill_dacs(codec, cfg->line_outs, cfg->line_out_pins,
3200 spec->private_dac_nids,
3201 &main_out_badness);
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003202
Takashi Iwai8f398ae2011-07-23 18:57:11 +02003203 /* re-count num_dacs and squash invalid entries */
3204 spec->multiout.num_dacs = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003205 for (i = 0; i < cfg->line_outs; i++) {
3206 if (spec->private_dac_nids[i])
3207 spec->multiout.num_dacs++;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003208 else {
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003209 memmove(spec->private_dac_nids + i,
3210 spec->private_dac_nids + i + 1,
3211 sizeof(hda_nid_t) * (cfg->line_outs - i - 1));
Takashi Iwai0a34b422011-12-07 17:20:30 +01003212 spec->private_dac_nids[cfg->line_outs - 1] = 0;
3213 }
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003214 }
3215
Takashi Iwai276dd702012-02-17 16:17:03 +01003216 if (fill_mio_first &&
3217 cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaic2674682011-08-24 17:57:44 +02003218 /* try to fill multi-io first */
Takashi Iwai276dd702012-02-17 16:17:03 +01003219 err = alc_auto_fill_multi_ios(codec, cfg->line_out_pins[0], false, 0);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003220 if (err < 0)
3221 return err;
Takashi Iwai276dd702012-02-17 16:17:03 +01003222 /* we don't count badness at this stage yet */
Takashi Iwai23c09b02011-08-19 09:05:35 +02003223 }
Takashi Iwaic2674682011-08-24 17:57:44 +02003224
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003225 if (cfg->line_out_type != AUTO_PIN_HP_OUT) {
Takashi Iwaidc31b582012-02-17 17:27:53 +01003226 err = alc_auto_fill_dacs(codec, cfg->hp_outs, cfg->hp_pins,
3227 spec->multiout.hp_out_nid,
3228 &extra_out_badness);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003229 if (err < 0)
3230 return err;
3231 badness += err;
3232 }
Takashi Iwai0a34b422011-12-07 17:20:30 +01003233 if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaidc31b582012-02-17 17:27:53 +01003234 err = alc_auto_fill_dacs(codec, cfg->speaker_outs,
3235 cfg->speaker_pins,
3236 spec->multiout.extra_out_nid,
3237 &extra_out_badness);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003238 if (err < 0)
3239 return err;
3240 badness += err;
3241 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003242 if (cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3243 err = alc_auto_fill_multi_ios(codec, cfg->line_out_pins[0], false, 0);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003244 if (err < 0)
3245 return err;
3246 badness += err;
3247 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003248 if (cfg->hp_outs && cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
3249 /* try multi-ios with HP + inputs */
Takashi Iwaif5682912012-02-21 12:37:00 +01003250 int offset = 0;
3251 if (cfg->line_outs >= 3)
3252 offset = 1;
3253 err = alc_auto_fill_multi_ios(codec, cfg->hp_pins[0], false,
3254 offset);
Takashi Iwai276dd702012-02-17 16:17:03 +01003255 if (err < 0)
3256 return err;
3257 badness += err;
3258 }
3259
3260 if (spec->multi_ios == 2) {
3261 for (i = 0; i < 2; i++)
3262 spec->private_dac_nids[spec->multiout.num_dacs++] =
3263 spec->multi_io[i].dac;
3264 spec->ext_channel_count = 2;
3265 } else if (spec->multi_ios) {
3266 spec->multi_ios = 0;
3267 badness += BAD_MULTI_IO;
3268 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003269
3270 return badness;
3271}
3272
3273#define DEBUG_BADNESS
3274
3275#ifdef DEBUG_BADNESS
3276#define debug_badness snd_printdd
3277#else
3278#define debug_badness(...)
3279#endif
3280
3281static void debug_show_configs(struct alc_spec *spec, struct auto_pin_cfg *cfg)
3282{
3283 debug_badness("multi_outs = %x/%x/%x/%x : %x/%x/%x/%x\n",
3284 cfg->line_out_pins[0], cfg->line_out_pins[1],
3285 cfg->line_out_pins[2], cfg->line_out_pins[2],
3286 spec->multiout.dac_nids[0],
3287 spec->multiout.dac_nids[1],
3288 spec->multiout.dac_nids[2],
3289 spec->multiout.dac_nids[3]);
Takashi Iwai6f453042012-02-17 14:09:20 +01003290 if (spec->multi_ios > 0)
3291 debug_badness("multi_ios(%d) = %x/%x : %x/%x\n",
3292 spec->multi_ios,
3293 spec->multi_io[0].pin, spec->multi_io[1].pin,
3294 spec->multi_io[0].dac, spec->multi_io[1].dac);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003295 debug_badness("hp_outs = %x/%x/%x/%x : %x/%x/%x/%x\n",
3296 cfg->hp_pins[0], cfg->hp_pins[1],
3297 cfg->hp_pins[2], cfg->hp_pins[2],
3298 spec->multiout.hp_out_nid[0],
3299 spec->multiout.hp_out_nid[1],
3300 spec->multiout.hp_out_nid[2],
3301 spec->multiout.hp_out_nid[3]);
3302 debug_badness("spk_outs = %x/%x/%x/%x : %x/%x/%x/%x\n",
3303 cfg->speaker_pins[0], cfg->speaker_pins[1],
3304 cfg->speaker_pins[2], cfg->speaker_pins[3],
3305 spec->multiout.extra_out_nid[0],
3306 spec->multiout.extra_out_nid[1],
3307 spec->multiout.extra_out_nid[2],
3308 spec->multiout.extra_out_nid[3]);
3309}
3310
3311static int alc_auto_fill_dac_nids(struct hda_codec *codec)
3312{
3313 struct alc_spec *spec = codec->spec;
3314 struct auto_pin_cfg *cfg = &spec->autocfg;
3315 struct auto_pin_cfg *best_cfg;
3316 int best_badness = INT_MAX;
3317 int badness;
Takashi Iwai276dd702012-02-17 16:17:03 +01003318 bool fill_hardwired = true, fill_mio_first = true;
3319 bool best_wired = true, best_mio = true;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003320 bool hp_spk_swapped = false;
3321
3322 best_cfg = kmalloc(sizeof(*best_cfg), GFP_KERNEL);
3323 if (!best_cfg)
3324 return -ENOMEM;
3325 *best_cfg = *cfg;
3326
3327 for (;;) {
Takashi Iwai276dd702012-02-17 16:17:03 +01003328 badness = fill_and_eval_dacs(codec, fill_hardwired,
3329 fill_mio_first);
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003330 if (badness < 0) {
3331 kfree(best_cfg);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003332 return badness;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003333 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003334 debug_badness("==> lo_type=%d, wired=%d, mio=%d, badness=0x%x\n",
3335 cfg->line_out_type, fill_hardwired, fill_mio_first,
3336 badness);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003337 debug_show_configs(spec, cfg);
3338 if (badness < best_badness) {
3339 best_badness = badness;
3340 *best_cfg = *cfg;
3341 best_wired = fill_hardwired;
Takashi Iwai276dd702012-02-17 16:17:03 +01003342 best_mio = fill_mio_first;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003343 }
3344 if (!badness)
3345 break;
Takashi Iwai276dd702012-02-17 16:17:03 +01003346 fill_mio_first = !fill_mio_first;
3347 if (!fill_mio_first)
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003348 continue;
Takashi Iwai276dd702012-02-17 16:17:03 +01003349 fill_hardwired = !fill_hardwired;
3350 if (!fill_hardwired)
3351 continue;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003352 if (hp_spk_swapped)
3353 break;
3354 hp_spk_swapped = true;
3355 if (cfg->speaker_outs > 0 &&
Takashi Iwai0a34b422011-12-07 17:20:30 +01003356 cfg->line_out_type == AUTO_PIN_HP_OUT) {
3357 cfg->hp_outs = cfg->line_outs;
3358 memcpy(cfg->hp_pins, cfg->line_out_pins,
3359 sizeof(cfg->hp_pins));
3360 cfg->line_outs = cfg->speaker_outs;
3361 memcpy(cfg->line_out_pins, cfg->speaker_pins,
3362 sizeof(cfg->speaker_pins));
3363 cfg->speaker_outs = 0;
3364 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
3365 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003366 fill_hardwired = true;
3367 continue;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003368 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003369 if (cfg->hp_outs > 0 &&
3370 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
3371 cfg->speaker_outs = cfg->line_outs;
3372 memcpy(cfg->speaker_pins, cfg->line_out_pins,
3373 sizeof(cfg->speaker_pins));
3374 cfg->line_outs = cfg->hp_outs;
3375 memcpy(cfg->line_out_pins, cfg->hp_pins,
3376 sizeof(cfg->hp_pins));
3377 cfg->hp_outs = 0;
3378 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3379 cfg->line_out_type = AUTO_PIN_HP_OUT;
3380 fill_hardwired = true;
3381 continue;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003382 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003383 break;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003384 }
Takashi Iwaic2674682011-08-24 17:57:44 +02003385
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003386 if (badness) {
3387 *cfg = *best_cfg;
Takashi Iwai276dd702012-02-17 16:17:03 +01003388 fill_and_eval_dacs(codec, best_wired, best_mio);
Takashi Iwai07b18f62011-11-10 15:42:54 +01003389 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003390 debug_badness("==> Best config: lo_type=%d, wired=%d, mio=%d\n",
3391 cfg->line_out_type, best_wired, best_mio);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003392 debug_show_configs(spec, cfg);
Takashi Iwai07b18f62011-11-10 15:42:54 +01003393
David Henningssonfde48a12011-12-09 18:27:42 +08003394 if (cfg->line_out_pins[0])
3395 spec->vmaster_nid =
3396 alc_look_for_out_vol_nid(codec, cfg->line_out_pins[0],
3397 spec->multiout.dac_nids[0]);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003398
3399 /* clear the bitmap flags for creating controls */
3400 clear_vol_marks(codec);
3401 kfree(best_cfg);
Takashi Iwai23c09b02011-08-19 09:05:35 +02003402 return 0;
3403}
3404
Takashi Iwai343a04b2011-07-06 14:28:39 +02003405static int alc_auto_add_vol_ctl(struct hda_codec *codec,
Takashi Iwai97aaab72011-07-06 14:02:55 +02003406 const char *pfx, int cidx,
3407 hda_nid_t nid, unsigned int chs)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003408{
Takashi Iwai527e4d72011-10-27 16:33:27 +02003409 struct alc_spec *spec = codec->spec;
3410 unsigned int val;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003411 if (!nid)
3412 return 0;
Takashi Iwai527e4d72011-10-27 16:33:27 +02003413 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
3414 if (is_ctl_used(spec->vol_ctls, val) && chs != 2) /* exclude LFE */
3415 return 0;
3416 mark_ctl_usage(spec->vol_ctls, val);
Takashi Iwai97aaab72011-07-06 14:02:55 +02003417 return __add_pb_vol_ctrl(codec->spec, ALC_CTL_WIDGET_VOL, pfx, cidx,
Takashi Iwai527e4d72011-10-27 16:33:27 +02003418 val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003419}
3420
Takashi Iwaie29d3772011-11-14 17:13:23 +01003421static int alc_auto_add_stereo_vol(struct hda_codec *codec,
3422 const char *pfx, int cidx,
3423 hda_nid_t nid)
3424{
3425 int chs = 1;
3426 if (get_wcaps(codec, nid) & AC_WCAP_STEREO)
3427 chs = 3;
3428 return alc_auto_add_vol_ctl(codec, pfx, cidx, nid, chs);
3429}
Takashi Iwai97aaab72011-07-06 14:02:55 +02003430
3431/* create a mute-switch for the given mixer widget;
3432 * if it has multiple sources (e.g. DAC and loopback), create a bind-mute
3433 */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003434static int alc_auto_add_sw_ctl(struct hda_codec *codec,
Takashi Iwai97aaab72011-07-06 14:02:55 +02003435 const char *pfx, int cidx,
3436 hda_nid_t nid, unsigned int chs)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003437{
Takashi Iwai527e4d72011-10-27 16:33:27 +02003438 struct alc_spec *spec = codec->spec;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003439 int wid_type;
Takashi Iwai97aaab72011-07-06 14:02:55 +02003440 int type;
3441 unsigned long val;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003442 if (!nid)
3443 return 0;
3444 wid_type = get_wcaps_type(get_wcaps(codec, nid));
3445 if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT) {
3446 type = ALC_CTL_WIDGET_MUTE;
3447 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
Takashi Iwai09cf03b2012-05-19 17:21:25 +02003448 } else if (snd_hda_get_num_conns(codec, nid) == 1) {
Takashi Iwai97aaab72011-07-06 14:02:55 +02003449 type = ALC_CTL_WIDGET_MUTE;
3450 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_INPUT);
3451 } else {
3452 type = ALC_CTL_BIND_MUTE;
3453 val = HDA_COMPOSE_AMP_VAL(nid, chs, 2, HDA_INPUT);
3454 }
Takashi Iwai527e4d72011-10-27 16:33:27 +02003455 if (is_ctl_used(spec->sw_ctls, val) && chs != 2) /* exclude LFE */
3456 return 0;
3457 mark_ctl_usage(spec->sw_ctls, val);
Takashi Iwai97aaab72011-07-06 14:02:55 +02003458 return __add_pb_sw_ctrl(codec->spec, type, pfx, cidx, val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003459}
3460
Takashi Iwaie29d3772011-11-14 17:13:23 +01003461static int alc_auto_add_stereo_sw(struct hda_codec *codec, const char *pfx,
3462 int cidx, hda_nid_t nid)
3463{
3464 int chs = 1;
3465 if (get_wcaps(codec, nid) & AC_WCAP_STEREO)
3466 chs = 3;
3467 return alc_auto_add_sw_ctl(codec, pfx, cidx, nid, chs);
3468}
Takashi Iwai7085ec12009-10-02 09:03:58 +02003469
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003470static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
3471 hda_nid_t pin, hda_nid_t dac)
3472{
3473 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3474 if (nid_has_mute(codec, pin, HDA_OUTPUT))
3475 return pin;
3476 else if (mix && nid_has_mute(codec, mix, HDA_INPUT))
3477 return mix;
3478 else if (nid_has_mute(codec, dac, HDA_OUTPUT))
3479 return dac;
3480 return 0;
3481}
3482
3483static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
3484 hda_nid_t pin, hda_nid_t dac)
3485{
3486 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3487 if (nid_has_volume(codec, dac, HDA_OUTPUT))
3488 return dac;
3489 else if (nid_has_volume(codec, mix, HDA_OUTPUT))
3490 return mix;
3491 else if (nid_has_volume(codec, pin, HDA_OUTPUT))
3492 return pin;
3493 return 0;
3494}
3495
Takashi Iwai7085ec12009-10-02 09:03:58 +02003496/* add playback controls from the parsed DAC table */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003497static int alc_auto_create_multi_out_ctls(struct hda_codec *codec,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003498 const struct auto_pin_cfg *cfg)
3499{
3500 struct alc_spec *spec = codec->spec;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003501 int i, err, noutputs;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003502
Takashi Iwaice764ab2011-04-27 16:35:23 +02003503 noutputs = cfg->line_outs;
Takashi Iwaib90bf1d2012-01-19 11:42:55 +01003504 if (spec->multi_ios > 0 && cfg->line_outs < 3)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003505 noutputs += spec->multi_ios;
3506
3507 for (i = 0; i < noutputs; i++) {
Takashi Iwai6843ca12011-06-24 11:03:58 +02003508 const char *name;
3509 int index;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003510 hda_nid_t dac, pin;
3511 hda_nid_t sw, vol;
3512
3513 dac = spec->multiout.dac_nids[i];
3514 if (!dac)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003515 continue;
Takashi Iwai689cabf2012-02-21 12:35:27 +01003516 if (i >= cfg->line_outs) {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003517 pin = spec->multi_io[i - 1].pin;
Takashi Iwai689cabf2012-02-21 12:35:27 +01003518 index = 0;
3519 name = channel_name[i];
3520 } else {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003521 pin = cfg->line_out_pins[i];
Takashi Iwai689cabf2012-02-21 12:35:27 +01003522 name = alc_get_line_out_pfx(spec, i, true, &index);
3523 }
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003524
3525 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3526 vol = alc_look_for_out_vol_nid(codec, pin, dac);
Takashi Iwai9c4e84d2011-08-24 17:27:52 +02003527 if (!name || !strcmp(name, "CLFE")) {
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003528 /* Center/LFE */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003529 err = alc_auto_add_vol_ctl(codec, "Center", 0, vol, 1);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003530 if (err < 0)
3531 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003532 err = alc_auto_add_vol_ctl(codec, "LFE", 0, vol, 2);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003533 if (err < 0)
3534 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003535 err = alc_auto_add_sw_ctl(codec, "Center", 0, sw, 1);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003536 if (err < 0)
3537 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003538 err = alc_auto_add_sw_ctl(codec, "LFE", 0, sw, 2);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003539 if (err < 0)
3540 return err;
3541 } else {
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003542 err = alc_auto_add_stereo_vol(codec, name, index, vol);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003543 if (err < 0)
3544 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003545 err = alc_auto_add_stereo_sw(codec, name, index, sw);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003546 if (err < 0)
3547 return err;
3548 }
3549 }
3550 return 0;
3551}
3552
Takashi Iwai343a04b2011-07-06 14:28:39 +02003553static int alc_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai766ddee2011-12-07 16:55:19 +01003554 hda_nid_t dac, const char *pfx,
3555 int cidx)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003556{
Takashi Iwai7085ec12009-10-02 09:03:58 +02003557 struct alc_spec *spec = codec->spec;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003558 hda_nid_t sw, vol;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003559 int err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003560
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003561 if (!dac) {
Takashi Iwai527e4d72011-10-27 16:33:27 +02003562 unsigned int val;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003563 /* the corresponding DAC is already occupied */
3564 if (!(get_wcaps(codec, pin) & AC_WCAP_OUT_AMP))
3565 return 0; /* no way */
3566 /* create a switch only */
Takashi Iwai527e4d72011-10-27 16:33:27 +02003567 val = HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT);
3568 if (is_ctl_used(spec->sw_ctls, val))
3569 return 0; /* already created */
3570 mark_ctl_usage(spec->sw_ctls, val);
Takashi Iwai766ddee2011-12-07 16:55:19 +01003571 return __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx, cidx, val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003572 }
3573
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003574 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3575 vol = alc_look_for_out_vol_nid(codec, pin, dac);
Takashi Iwai766ddee2011-12-07 16:55:19 +01003576 err = alc_auto_add_stereo_vol(codec, pfx, cidx, vol);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003577 if (err < 0)
Takashi Iwai24fb9172008-09-02 14:48:20 +02003578 return err;
Takashi Iwai766ddee2011-12-07 16:55:19 +01003579 err = alc_auto_add_stereo_sw(codec, pfx, cidx, sw);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003580 if (err < 0)
3581 return err;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003582 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003583}
3584
Takashi Iwai23c09b02011-08-19 09:05:35 +02003585static struct hda_bind_ctls *new_bind_ctl(struct hda_codec *codec,
3586 unsigned int nums,
3587 struct hda_ctl_ops *ops)
3588{
3589 struct alc_spec *spec = codec->spec;
3590 struct hda_bind_ctls **ctlp, *ctl;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003591 ctlp = snd_array_new(&spec->bind_ctls);
3592 if (!ctlp)
3593 return NULL;
3594 ctl = kzalloc(sizeof(*ctl) + sizeof(long) * (nums + 1), GFP_KERNEL);
3595 *ctlp = ctl;
3596 if (ctl)
3597 ctl->ops = ops;
3598 return ctl;
3599}
3600
3601/* add playback controls for speaker and HP outputs */
3602static int alc_auto_create_extra_outs(struct hda_codec *codec, int num_pins,
3603 const hda_nid_t *pins,
3604 const hda_nid_t *dacs,
3605 const char *pfx)
3606{
3607 struct alc_spec *spec = codec->spec;
3608 struct hda_bind_ctls *ctl;
3609 char name[32];
3610 int i, n, err;
3611
3612 if (!num_pins || !pins[0])
3613 return 0;
3614
Takashi Iwai527e4d72011-10-27 16:33:27 +02003615 if (num_pins == 1) {
3616 hda_nid_t dac = *dacs;
3617 if (!dac)
3618 dac = spec->multiout.dac_nids[0];
Takashi Iwai766ddee2011-12-07 16:55:19 +01003619 return alc_auto_create_extra_out(codec, *pins, dac, pfx, 0);
Takashi Iwai527e4d72011-10-27 16:33:27 +02003620 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003621
Takashi Iwai23c09b02011-08-19 09:05:35 +02003622 for (i = 0; i < num_pins; i++) {
Takashi Iwaic96f0bf2012-02-21 12:12:57 +01003623 hda_nid_t dac;
3624 if (dacs[num_pins - 1])
3625 dac = dacs[i]; /* with individual volumes */
3626 else
3627 dac = 0;
3628 if (num_pins == 2 && i == 1 && !strcmp(pfx, "Speaker")) {
3629 err = alc_auto_create_extra_out(codec, pins[i], dac,
3630 "Bass Speaker", 0);
3631 } else if (num_pins >= 3) {
3632 snprintf(name, sizeof(name), "%s %s",
3633 pfx, channel_name[i]);
3634 err = alc_auto_create_extra_out(codec, pins[i], dac,
3635 name, 0);
3636 } else {
3637 err = alc_auto_create_extra_out(codec, pins[i], dac,
3638 pfx, i);
3639 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003640 if (err < 0)
3641 return err;
3642 }
Takashi Iwaic96f0bf2012-02-21 12:12:57 +01003643 if (dacs[num_pins - 1])
3644 return 0;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003645
Takashi Iwaic96f0bf2012-02-21 12:12:57 +01003646 /* Let's create a bind-controls for volumes */
Takashi Iwai23c09b02011-08-19 09:05:35 +02003647 ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_vol);
3648 if (!ctl)
3649 return -ENOMEM;
3650 n = 0;
3651 for (i = 0; i < num_pins; i++) {
3652 hda_nid_t vol;
3653 if (!pins[i] || !dacs[i])
3654 continue;
3655 vol = alc_look_for_out_vol_nid(codec, pins[i], dacs[i]);
3656 if (vol)
3657 ctl->values[n++] =
3658 HDA_COMPOSE_AMP_VAL(vol, 3, 0, HDA_OUTPUT);
3659 }
3660 if (n) {
3661 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
3662 err = add_control(spec, ALC_CTL_BIND_VOL, name, 0, (long)ctl);
3663 if (err < 0)
3664 return err;
3665 }
3666 return 0;
3667}
3668
Takashi Iwai343a04b2011-07-06 14:28:39 +02003669static int alc_auto_create_hp_out(struct hda_codec *codec)
3670{
3671 struct alc_spec *spec = codec->spec;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003672 return alc_auto_create_extra_outs(codec, spec->autocfg.hp_outs,
3673 spec->autocfg.hp_pins,
3674 spec->multiout.hp_out_nid,
3675 "Headphone");
Takashi Iwai343a04b2011-07-06 14:28:39 +02003676}
3677
3678static int alc_auto_create_speaker_out(struct hda_codec *codec)
3679{
3680 struct alc_spec *spec = codec->spec;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003681 return alc_auto_create_extra_outs(codec, spec->autocfg.speaker_outs,
3682 spec->autocfg.speaker_pins,
3683 spec->multiout.extra_out_nid,
3684 "Speaker");
Takashi Iwai343a04b2011-07-06 14:28:39 +02003685}
3686
Takashi Iwai343a04b2011-07-06 14:28:39 +02003687static void alc_auto_set_output_and_unmute(struct hda_codec *codec,
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003688 hda_nid_t pin, int pin_type,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003689 hda_nid_t dac)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003690{
Takashi Iwai7085ec12009-10-02 09:03:58 +02003691 int i, num;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003692 hda_nid_t nid, mix = 0;
Takashi Iwaice503f32010-07-30 10:37:29 +02003693 hda_nid_t srcs[HDA_MAX_CONNECTIONS];
Takashi Iwai7085ec12009-10-02 09:03:58 +02003694
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003695 alc_set_pin_output(codec, pin, pin_type);
3696 nid = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003697 num = snd_hda_get_connections(codec, nid, srcs, ARRAY_SIZE(srcs));
Takashi Iwai7085ec12009-10-02 09:03:58 +02003698 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02003699 if (alc_auto_mix_to_dac(codec, srcs[i]) != dac)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003700 continue;
Takashi Iwaicd511552011-07-06 13:10:42 +02003701 mix = srcs[i];
3702 break;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003703 }
Takashi Iwaicd511552011-07-06 13:10:42 +02003704 if (!mix)
3705 return;
3706
3707 /* need the manual connection? */
3708 if (num > 1)
3709 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, i);
3710 /* unmute mixer widget inputs */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003711 if (nid_has_mute(codec, mix, HDA_INPUT)) {
3712 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaicd511552011-07-06 13:10:42 +02003713 AMP_IN_UNMUTE(0));
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003714 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaicd511552011-07-06 13:10:42 +02003715 AMP_IN_UNMUTE(1));
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003716 }
Takashi Iwaicd511552011-07-06 13:10:42 +02003717 /* initialize volume */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003718 nid = alc_look_for_out_vol_nid(codec, pin, dac);
3719 if (nid)
3720 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3721 AMP_OUT_ZERO);
Takashi Iwai43dea222011-11-06 11:25:34 +01003722
3723 /* unmute DAC if it's not assigned to a mixer */
3724 nid = alc_look_for_out_mute_nid(codec, pin, dac);
3725 if (nid == mix && nid_has_mute(codec, dac, HDA_OUTPUT))
3726 snd_hda_codec_write(codec, dac, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3727 AMP_OUT_ZERO);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003728}
3729
Takashi Iwai343a04b2011-07-06 14:28:39 +02003730static void alc_auto_init_multi_out(struct hda_codec *codec)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003731{
3732 struct alc_spec *spec = codec->spec;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003733 int pin_type = get_pin_type(spec->autocfg.line_out_type);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003734 int i;
3735
3736 for (i = 0; i <= HDA_SIDE; i++) {
3737 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3738 if (nid)
Takashi Iwai343a04b2011-07-06 14:28:39 +02003739 alc_auto_set_output_and_unmute(codec, nid, pin_type,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003740 spec->multiout.dac_nids[i]);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003741 }
3742}
3743
Takashi Iwai343a04b2011-07-06 14:28:39 +02003744static void alc_auto_init_extra_out(struct hda_codec *codec)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003745{
3746 struct alc_spec *spec = codec->spec;
Takashi Iwai8cd07752011-08-23 15:16:22 +02003747 int i;
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003748 hda_nid_t pin, dac;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003749
David Henningsson636030e2011-10-12 19:26:03 +02003750 for (i = 0; i < spec->autocfg.hp_outs; i++) {
Takashi Iwai716eef02011-10-21 15:07:42 +02003751 if (spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)
3752 break;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003753 pin = spec->autocfg.hp_pins[i];
3754 if (!pin)
3755 break;
3756 dac = spec->multiout.hp_out_nid[i];
3757 if (!dac) {
3758 if (i > 0 && spec->multiout.hp_out_nid[0])
3759 dac = spec->multiout.hp_out_nid[0];
3760 else
3761 dac = spec->multiout.dac_nids[0];
3762 }
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003763 alc_auto_set_output_and_unmute(codec, pin, PIN_HP, dac);
3764 }
Takashi Iwai8cd07752011-08-23 15:16:22 +02003765 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
Takashi Iwai716eef02011-10-21 15:07:42 +02003766 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
3767 break;
Takashi Iwai8cd07752011-08-23 15:16:22 +02003768 pin = spec->autocfg.speaker_pins[i];
3769 if (!pin)
3770 break;
3771 dac = spec->multiout.extra_out_nid[i];
3772 if (!dac) {
3773 if (i > 0 && spec->multiout.extra_out_nid[0])
3774 dac = spec->multiout.extra_out_nid[0];
3775 else
3776 dac = spec->multiout.dac_nids[0];
3777 }
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003778 alc_auto_set_output_and_unmute(codec, pin, PIN_OUT, dac);
3779 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003780}
3781
Takashi Iwai276dd702012-02-17 16:17:03 +01003782/* check whether the given pin can be a multi-io pin */
3783static bool can_be_multiio_pin(struct hda_codec *codec,
3784 unsigned int location, hda_nid_t nid)
3785{
3786 unsigned int defcfg, caps;
3787
3788 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3789 if (get_defcfg_connect(defcfg) != AC_JACK_PORT_COMPLEX)
3790 return false;
3791 if (location && get_defcfg_location(defcfg) != location)
3792 return false;
3793 caps = snd_hda_query_pin_caps(codec, nid);
3794 if (!(caps & AC_PINCAP_OUT))
3795 return false;
3796 return true;
3797}
3798
Takashi Iwaice764ab2011-04-27 16:35:23 +02003799/*
3800 * multi-io helper
Takashi Iwai276dd702012-02-17 16:17:03 +01003801 *
3802 * When hardwired is set, try to fill ony hardwired pins, and returns
3803 * zero if any pins are filled, non-zero if nothing found.
3804 * When hardwired is off, try to fill possible input pins, and returns
3805 * the badness value.
Takashi Iwaice764ab2011-04-27 16:35:23 +02003806 */
3807static int alc_auto_fill_multi_ios(struct hda_codec *codec,
Takashi Iwai276dd702012-02-17 16:17:03 +01003808 hda_nid_t reference_pin,
3809 bool hardwired, int offset)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003810{
3811 struct alc_spec *spec = codec->spec;
3812 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai276dd702012-02-17 16:17:03 +01003813 int type, i, j, dacs, num_pins, old_pins;
3814 unsigned int defcfg = snd_hda_codec_get_pincfg(codec, reference_pin);
3815 unsigned int location = get_defcfg_location(defcfg);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003816 int badness = 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003817
Takashi Iwai276dd702012-02-17 16:17:03 +01003818 old_pins = spec->multi_ios;
3819 if (old_pins >= 2)
3820 goto end_fill;
3821
3822 num_pins = 0;
3823 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
3824 for (i = 0; i < cfg->num_inputs; i++) {
3825 if (cfg->inputs[i].type != type)
3826 continue;
3827 if (can_be_multiio_pin(codec, location,
3828 cfg->inputs[i].pin))
3829 num_pins++;
3830 }
3831 }
3832 if (num_pins < 2)
3833 goto end_fill;
3834
Takashi Iwai07b18f62011-11-10 15:42:54 +01003835 dacs = spec->multiout.num_dacs;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003836 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
3837 for (i = 0; i < cfg->num_inputs; i++) {
3838 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai07b18f62011-11-10 15:42:54 +01003839 hda_nid_t dac = 0;
Takashi Iwai276dd702012-02-17 16:17:03 +01003840
Takashi Iwaice764ab2011-04-27 16:35:23 +02003841 if (cfg->inputs[i].type != type)
3842 continue;
Takashi Iwai276dd702012-02-17 16:17:03 +01003843 if (!can_be_multiio_pin(codec, location, nid))
Takashi Iwaice764ab2011-04-27 16:35:23 +02003844 continue;
Takashi Iwai276dd702012-02-17 16:17:03 +01003845 for (j = 0; j < spec->multi_ios; j++) {
3846 if (nid == spec->multi_io[j].pin)
3847 break;
3848 }
3849 if (j < spec->multi_ios)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003850 continue;
Takashi Iwai276dd702012-02-17 16:17:03 +01003851
3852 if (offset && offset + spec->multi_ios < dacs) {
3853 dac = spec->private_dac_nids[offset + spec->multi_ios];
Takashi Iwai07b18f62011-11-10 15:42:54 +01003854 if (!alc_auto_is_dac_reachable(codec, nid, dac))
3855 dac = 0;
3856 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003857 if (hardwired)
3858 dac = get_dac_if_single(codec, nid);
3859 else if (!dac)
Takashi Iwai07b18f62011-11-10 15:42:54 +01003860 dac = alc_auto_look_for_dac(codec, nid);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003861 if (!dac) {
Takashi Iwai276dd702012-02-17 16:17:03 +01003862 badness++;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003863 continue;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003864 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003865 spec->multi_io[spec->multi_ios].pin = nid;
3866 spec->multi_io[spec->multi_ios].dac = dac;
3867 spec->multi_ios++;
3868 if (spec->multi_ios >= 2)
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003869 break;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003870 }
3871 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003872 end_fill:
3873 if (badness)
3874 badness = BAD_MULTI_IO;
3875 if (old_pins == spec->multi_ios) {
3876 if (hardwired)
3877 return 1; /* nothing found */
3878 else
3879 return badness; /* no badness if nothing found */
3880 }
3881 if (!hardwired && spec->multi_ios < 2) {
3882 spec->multi_ios = old_pins;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003883 return badness;
Takashi Iwaic2674682011-08-24 17:57:44 +02003884 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003885
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003886 return 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003887}
3888
3889static int alc_auto_ch_mode_info(struct snd_kcontrol *kcontrol,
3890 struct snd_ctl_elem_info *uinfo)
3891{
3892 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3893 struct alc_spec *spec = codec->spec;
3894
3895 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3896 uinfo->count = 1;
3897 uinfo->value.enumerated.items = spec->multi_ios + 1;
3898 if (uinfo->value.enumerated.item > spec->multi_ios)
3899 uinfo->value.enumerated.item = spec->multi_ios;
3900 sprintf(uinfo->value.enumerated.name, "%dch",
3901 (uinfo->value.enumerated.item + 1) * 2);
3902 return 0;
3903}
3904
3905static int alc_auto_ch_mode_get(struct snd_kcontrol *kcontrol,
3906 struct snd_ctl_elem_value *ucontrol)
3907{
3908 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3909 struct alc_spec *spec = codec->spec;
3910 ucontrol->value.enumerated.item[0] = (spec->ext_channel_count - 1) / 2;
3911 return 0;
3912}
3913
3914static int alc_set_multi_io(struct hda_codec *codec, int idx, bool output)
3915{
3916 struct alc_spec *spec = codec->spec;
3917 hda_nid_t nid = spec->multi_io[idx].pin;
3918
3919 if (!spec->multi_io[idx].ctl_in)
3920 spec->multi_io[idx].ctl_in =
3921 snd_hda_codec_read(codec, nid, 0,
3922 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3923 if (output) {
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003924 snd_hda_set_pin_ctl_cache(codec, nid, PIN_OUT);
Takashi Iwaice764ab2011-04-27 16:35:23 +02003925 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3926 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3927 HDA_AMP_MUTE, 0);
3928 alc_auto_select_dac(codec, nid, spec->multi_io[idx].dac);
3929 } else {
3930 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3931 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3932 HDA_AMP_MUTE, HDA_AMP_MUTE);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003933 snd_hda_set_pin_ctl_cache(codec, nid,
3934 spec->multi_io[idx].ctl_in);
Takashi Iwaice764ab2011-04-27 16:35:23 +02003935 }
3936 return 0;
3937}
3938
3939static int alc_auto_ch_mode_put(struct snd_kcontrol *kcontrol,
3940 struct snd_ctl_elem_value *ucontrol)
3941{
3942 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3943 struct alc_spec *spec = codec->spec;
3944 int i, ch;
3945
3946 ch = ucontrol->value.enumerated.item[0];
3947 if (ch < 0 || ch > spec->multi_ios)
3948 return -EINVAL;
3949 if (ch == (spec->ext_channel_count - 1) / 2)
3950 return 0;
3951 spec->ext_channel_count = (ch + 1) * 2;
3952 for (i = 0; i < spec->multi_ios; i++)
3953 alc_set_multi_io(codec, i, i < ch);
Takashi Iwaib6adb572012-12-03 10:30:58 +01003954 spec->multiout.max_channels = max(spec->ext_channel_count,
3955 spec->const_channel_count);
3956 if (spec->need_dac_fix)
Takashi Iwai7b1655f2011-07-14 15:31:21 +02003957 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003958 return 1;
3959}
3960
Takashi Iwaia9111322011-05-02 11:30:18 +02003961static const struct snd_kcontrol_new alc_auto_channel_mode_enum = {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003962 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3963 .name = "Channel Mode",
3964 .info = alc_auto_ch_mode_info,
3965 .get = alc_auto_ch_mode_get,
3966 .put = alc_auto_ch_mode_put,
3967};
3968
Takashi Iwai23c09b02011-08-19 09:05:35 +02003969static int alc_auto_add_multi_channel_mode(struct hda_codec *codec)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003970{
3971 struct alc_spec *spec = codec->spec;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003972
Takashi Iwaic2674682011-08-24 17:57:44 +02003973 if (spec->multi_ios > 0) {
Takashi Iwai668d1e92012-11-29 14:10:17 +01003974 if (!alc_kcontrol_new(spec, "Channel Mode",
3975 &alc_auto_channel_mode_enum))
Takashi Iwaice764ab2011-04-27 16:35:23 +02003976 return -ENOMEM;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003977 }
3978 return 0;
3979}
3980
Takashi Iwai1d045db2011-07-07 18:23:21 +02003981/* filter out invalid adc_nids (and capsrc_nids) that don't give all
3982 * active input pins
3983 */
3984static void alc_remove_invalid_adc_nids(struct hda_codec *codec)
3985{
3986 struct alc_spec *spec = codec->spec;
3987 const struct hda_input_mux *imux;
3988 hda_nid_t adc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3989 hda_nid_t capsrc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3990 int i, n, nums;
3991
3992 imux = spec->input_mux;
3993 if (!imux)
3994 return;
3995 if (spec->dyn_adc_switch)
3996 return;
3997
Takashi Iwai26acaf02012-03-22 14:36:50 +01003998 again:
Takashi Iwai1d045db2011-07-07 18:23:21 +02003999 nums = 0;
4000 for (n = 0; n < spec->num_adc_nids; n++) {
4001 hda_nid_t cap = spec->private_capsrc_nids[n];
Takashi Iwai09cf03b2012-05-19 17:21:25 +02004002 int num_conns = snd_hda_get_num_conns(codec, cap);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004003 for (i = 0; i < imux->num_items; i++) {
4004 hda_nid_t pin = spec->imux_pins[i];
4005 if (pin) {
4006 if (get_connection_index(codec, cap, pin) < 0)
4007 break;
4008 } else if (num_conns <= imux->items[i].index)
4009 break;
4010 }
4011 if (i >= imux->num_items) {
4012 adc_nids[nums] = spec->private_adc_nids[n];
4013 capsrc_nids[nums++] = cap;
4014 }
4015 }
4016 if (!nums) {
4017 /* check whether ADC-switch is possible */
4018 if (!alc_check_dyn_adc_switch(codec)) {
Takashi Iwai26acaf02012-03-22 14:36:50 +01004019 if (spec->shared_mic_hp) {
4020 spec->shared_mic_hp = 0;
4021 spec->private_imux[0].num_items = 1;
4022 goto again;
4023 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004024 printk(KERN_WARNING "hda_codec: %s: no valid ADC found;"
4025 " using fallback 0x%x\n",
4026 codec->chip_name, spec->private_adc_nids[0]);
4027 spec->num_adc_nids = 1;
4028 spec->auto_mic = 0;
4029 return;
4030 }
4031 } else if (nums != spec->num_adc_nids) {
4032 memcpy(spec->private_adc_nids, adc_nids,
4033 nums * sizeof(hda_nid_t));
4034 memcpy(spec->private_capsrc_nids, capsrc_nids,
4035 nums * sizeof(hda_nid_t));
4036 spec->num_adc_nids = nums;
4037 }
4038
4039 if (spec->auto_mic)
4040 alc_auto_mic_check_imux(codec); /* check auto-mic setups */
Takashi Iwai26acaf02012-03-22 14:36:50 +01004041 else if (spec->input_mux->num_items == 1 || spec->shared_mic_hp)
Takashi Iwai1d045db2011-07-07 18:23:21 +02004042 spec->num_adc_nids = 1; /* reduce to a single ADC */
4043}
4044
4045/*
4046 * initialize ADC paths
4047 */
4048static void alc_auto_init_adc(struct hda_codec *codec, int adc_idx)
4049{
4050 struct alc_spec *spec = codec->spec;
4051 hda_nid_t nid;
4052
4053 nid = spec->adc_nids[adc_idx];
4054 /* mute ADC */
Takashi Iwai44c02402011-07-08 15:14:19 +02004055 if (nid_has_mute(codec, nid, HDA_INPUT)) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004056 snd_hda_codec_write(codec, nid, 0,
4057 AC_VERB_SET_AMP_GAIN_MUTE,
4058 AMP_IN_MUTE(0));
4059 return;
4060 }
4061 if (!spec->capsrc_nids)
4062 return;
4063 nid = spec->capsrc_nids[adc_idx];
Takashi Iwai44c02402011-07-08 15:14:19 +02004064 if (nid_has_mute(codec, nid, HDA_OUTPUT))
Takashi Iwai1d045db2011-07-07 18:23:21 +02004065 snd_hda_codec_write(codec, nid, 0,
4066 AC_VERB_SET_AMP_GAIN_MUTE,
4067 AMP_OUT_MUTE);
4068}
4069
4070static void alc_auto_init_input_src(struct hda_codec *codec)
4071{
4072 struct alc_spec *spec = codec->spec;
4073 int c, nums;
4074
4075 for (c = 0; c < spec->num_adc_nids; c++)
4076 alc_auto_init_adc(codec, c);
4077 if (spec->dyn_adc_switch)
4078 nums = 1;
4079 else
4080 nums = spec->num_adc_nids;
4081 for (c = 0; c < nums; c++)
Takashi Iwai068b9392012-02-25 11:13:16 +01004082 alc_mux_select(codec, c, spec->cur_mux[c], true);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004083}
4084
4085/* add mic boosts if needed */
4086static int alc_auto_add_mic_boost(struct hda_codec *codec)
4087{
4088 struct alc_spec *spec = codec->spec;
4089 struct auto_pin_cfg *cfg = &spec->autocfg;
4090 int i, err;
4091 int type_idx = 0;
4092 hda_nid_t nid;
4093 const char *prev_label = NULL;
4094
4095 for (i = 0; i < cfg->num_inputs; i++) {
4096 if (cfg->inputs[i].type > AUTO_PIN_MIC)
4097 break;
4098 nid = cfg->inputs[i].pin;
4099 if (get_wcaps(codec, nid) & AC_WCAP_IN_AMP) {
4100 const char *label;
4101 char boost_label[32];
4102
4103 label = hda_get_autocfg_input_label(codec, cfg, i);
Takashi Iwai24de1832011-11-07 17:13:39 +01004104 if (spec->shared_mic_hp && !strcmp(label, "Misc"))
4105 label = "Headphone Mic";
Takashi Iwai1d045db2011-07-07 18:23:21 +02004106 if (prev_label && !strcmp(label, prev_label))
4107 type_idx++;
4108 else
4109 type_idx = 0;
4110 prev_label = label;
4111
4112 snprintf(boost_label, sizeof(boost_label),
4113 "%s Boost Volume", label);
4114 err = add_control(spec, ALC_CTL_WIDGET_VOL,
4115 boost_label, type_idx,
4116 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
4117 if (err < 0)
4118 return err;
4119 }
4120 }
4121 return 0;
4122}
4123
4124/* select or unmute the given capsrc route */
4125static void select_or_unmute_capsrc(struct hda_codec *codec, hda_nid_t cap,
4126 int idx)
4127{
4128 if (get_wcaps_type(get_wcaps(codec, cap)) == AC_WID_AUD_MIX) {
4129 snd_hda_codec_amp_stereo(codec, cap, HDA_INPUT, idx,
4130 HDA_AMP_MUTE, 0);
Takashi Iwai09cf03b2012-05-19 17:21:25 +02004131 } else if (snd_hda_get_num_conns(codec, cap) > 1) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004132 snd_hda_codec_write_cache(codec, cap, 0,
4133 AC_VERB_SET_CONNECT_SEL, idx);
4134 }
4135}
4136
4137/* set the default connection to that pin */
4138static int init_capsrc_for_pin(struct hda_codec *codec, hda_nid_t pin)
4139{
4140 struct alc_spec *spec = codec->spec;
4141 int i;
4142
4143 if (!pin)
4144 return 0;
4145 for (i = 0; i < spec->num_adc_nids; i++) {
Takashi Iwai61071592011-11-23 07:52:15 +01004146 hda_nid_t cap = get_capsrc(spec, i);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004147 int idx;
4148
4149 idx = get_connection_index(codec, cap, pin);
4150 if (idx < 0)
4151 continue;
4152 select_or_unmute_capsrc(codec, cap, idx);
4153 return i; /* return the found index */
4154 }
4155 return -1; /* not found */
4156}
4157
4158/* initialize some special cases for input sources */
4159static void alc_init_special_input_src(struct hda_codec *codec)
4160{
4161 struct alc_spec *spec = codec->spec;
4162 int i;
4163
4164 for (i = 0; i < spec->autocfg.num_inputs; i++)
4165 init_capsrc_for_pin(codec, spec->autocfg.inputs[i].pin);
4166}
4167
4168/* assign appropriate capture mixers */
4169static void set_capture_mixer(struct hda_codec *codec)
4170{
4171 struct alc_spec *spec = codec->spec;
4172 static const struct snd_kcontrol_new *caps[2][3] = {
4173 { alc_capture_mixer_nosrc1,
4174 alc_capture_mixer_nosrc2,
4175 alc_capture_mixer_nosrc3 },
4176 { alc_capture_mixer1,
4177 alc_capture_mixer2,
4178 alc_capture_mixer3 },
4179 };
4180
4181 /* check whether either of ADC or MUX has a volume control */
Takashi Iwai44c02402011-07-08 15:14:19 +02004182 if (!nid_has_volume(codec, spec->adc_nids[0], HDA_INPUT)) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004183 if (!spec->capsrc_nids)
4184 return; /* no volume */
Takashi Iwai44c02402011-07-08 15:14:19 +02004185 if (!nid_has_volume(codec, spec->capsrc_nids[0], HDA_OUTPUT))
Takashi Iwai1d045db2011-07-07 18:23:21 +02004186 return; /* no volume in capsrc, too */
4187 spec->vol_in_capsrc = 1;
4188 }
4189
4190 if (spec->num_adc_nids > 0) {
4191 int mux = 0;
4192 int num_adcs = 0;
4193
4194 if (spec->input_mux && spec->input_mux->num_items > 1)
4195 mux = 1;
4196 if (spec->auto_mic) {
4197 num_adcs = 1;
4198 mux = 0;
4199 } else if (spec->dyn_adc_switch)
4200 num_adcs = 1;
4201 if (!num_adcs) {
4202 if (spec->num_adc_nids > 3)
4203 spec->num_adc_nids = 3;
4204 else if (!spec->num_adc_nids)
4205 return;
4206 num_adcs = spec->num_adc_nids;
4207 }
4208 spec->cap_mixer = caps[mux][num_adcs - 1];
4209 }
4210}
4211
4212/*
Takashi Iwaie4770622011-07-08 11:11:35 +02004213 * standard auto-parser initializations
4214 */
4215static void alc_auto_init_std(struct hda_codec *codec)
4216{
Takashi Iwaie4770622011-07-08 11:11:35 +02004217 alc_auto_init_multi_out(codec);
4218 alc_auto_init_extra_out(codec);
4219 alc_auto_init_analog_input(codec);
4220 alc_auto_init_input_src(codec);
4221 alc_auto_init_digital(codec);
David Henningssona7a0a642012-07-05 12:00:12 +02004222 alc_inithook(codec);
Takashi Iwaie4770622011-07-08 11:11:35 +02004223}
4224
4225/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02004226 * Digital-beep handlers
4227 */
4228#ifdef CONFIG_SND_HDA_INPUT_BEEP
4229#define set_beep_amp(spec, nid, idx, dir) \
4230 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
4231
4232static const struct snd_pci_quirk beep_white_list[] = {
Duncan Roe71100052012-10-10 14:19:50 +02004233 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004234 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
4235 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
4236 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
4237 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
Takashi Iwai78f8baf2012-03-06 14:02:32 +01004238 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004239 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
4240 {}
4241};
4242
4243static inline int has_cdefine_beep(struct hda_codec *codec)
4244{
4245 struct alc_spec *spec = codec->spec;
4246 const struct snd_pci_quirk *q;
4247 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
4248 if (q)
4249 return q->value;
4250 return spec->cdefine.enable_pcbeep;
4251}
4252#else
4253#define set_beep_amp(spec, nid, idx, dir) /* NOP */
4254#define has_cdefine_beep(codec) 0
4255#endif
4256
4257/* parse the BIOS configuration and set up the alc_spec */
4258/* return 1 if successful, 0 if the proper config is not found,
4259 * or a negative error code
4260 */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004261static int alc_parse_auto_config(struct hda_codec *codec,
4262 const hda_nid_t *ignore_nids,
4263 const hda_nid_t *ssid_nids)
Takashi Iwai1d045db2011-07-07 18:23:21 +02004264{
4265 struct alc_spec *spec = codec->spec;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004266 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004267 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004268
Takashi Iwai53c334a2011-08-23 18:27:14 +02004269 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
4270 spec->parse_flags);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004271 if (err < 0)
4272 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004273 if (!cfg->line_outs) {
4274 if (cfg->dig_outs || cfg->dig_in_pin) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004275 spec->multiout.max_channels = 2;
4276 spec->no_analog = 1;
4277 goto dig_only;
4278 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004279 return 0; /* can't find valid BIOS pin config */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004280 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02004281
Takashi Iwaie427c232012-07-29 10:04:08 +02004282 if (!spec->no_primary_hp &&
4283 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT &&
Takashi Iwai06503672011-10-06 08:27:19 +02004284 cfg->line_outs <= cfg->hp_outs) {
Takashi Iwai23c09b02011-08-19 09:05:35 +02004285 /* use HP as primary out */
4286 cfg->speaker_outs = cfg->line_outs;
4287 memcpy(cfg->speaker_pins, cfg->line_out_pins,
4288 sizeof(cfg->speaker_pins));
4289 cfg->line_outs = cfg->hp_outs;
4290 memcpy(cfg->line_out_pins, cfg->hp_pins, sizeof(cfg->hp_pins));
4291 cfg->hp_outs = 0;
4292 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
4293 cfg->line_out_type = AUTO_PIN_HP_OUT;
4294 }
4295
Takashi Iwai1d045db2011-07-07 18:23:21 +02004296 err = alc_auto_fill_dac_nids(codec);
4297 if (err < 0)
4298 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004299 err = alc_auto_add_multi_channel_mode(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004300 if (err < 0)
4301 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004302 err = alc_auto_create_multi_out_ctls(codec, cfg);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004303 if (err < 0)
4304 return err;
4305 err = alc_auto_create_hp_out(codec);
4306 if (err < 0)
4307 return err;
4308 err = alc_auto_create_speaker_out(codec);
4309 if (err < 0)
4310 return err;
Takashi Iwai24de1832011-11-07 17:13:39 +01004311 err = alc_auto_create_shared_input(codec);
4312 if (err < 0)
4313 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004314 err = alc_auto_create_input_ctls(codec);
4315 if (err < 0)
4316 return err;
4317
Takashi Iwaib6adb572012-12-03 10:30:58 +01004318 /* check the multiple speaker pins */
4319 if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT)
4320 spec->const_channel_count = cfg->line_outs * 2;
4321 else
4322 spec->const_channel_count = cfg->speaker_outs * 2;
4323
4324 if (spec->multi_ios > 0)
4325 spec->multiout.max_channels = max(spec->ext_channel_count,
4326 spec->const_channel_count);
4327 else
4328 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004329
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004330 dig_only:
Takashi Iwai1d045db2011-07-07 18:23:21 +02004331 alc_auto_parse_digital(codec);
4332
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004333 if (!spec->no_analog)
4334 alc_remove_invalid_adc_nids(codec);
4335
4336 if (ssid_nids)
4337 alc_ssid_check(codec, ssid_nids);
4338
4339 if (!spec->no_analog) {
Takashi Iwai475c3d22012-11-30 08:31:30 +01004340 err = alc_auto_check_switches(codec);
4341 if (err < 0)
4342 return err;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004343 err = alc_auto_add_mic_boost(codec);
4344 if (err < 0)
4345 return err;
4346 }
4347
Takashi Iwai1d045db2011-07-07 18:23:21 +02004348 if (spec->kctls.list)
4349 add_mixer(spec, spec->kctls.list);
4350
Takashi Iwai070cff42012-02-21 12:54:17 +01004351 if (!spec->no_analog && !spec->cap_mixer)
4352 set_capture_mixer(codec);
4353
Takashi Iwai1d045db2011-07-07 18:23:21 +02004354 return 1;
4355}
4356
Takashi Iwai3de95172012-05-07 18:03:15 +02004357/* common preparation job for alc_spec */
4358static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
4359{
4360 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4361 int err;
4362
4363 if (!spec)
4364 return -ENOMEM;
4365 codec->spec = spec;
Takashi Iwai1098b7c2012-12-17 20:03:15 +01004366 codec->single_adc_amp = 1;
Takashi Iwai3de95172012-05-07 18:03:15 +02004367 spec->mixer_nid = mixer_nid;
Takashi Iwaiee48df52012-06-26 14:54:32 +02004368 snd_hda_gen_init(&spec->gen);
Takashi Iwai361dab32012-05-09 14:35:27 +02004369 snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32);
4370 snd_array_init(&spec->bind_ctls, sizeof(struct hda_bind_ctls *), 8);
Takashi Iwai3de95172012-05-07 18:03:15 +02004371
4372 err = alc_codec_rename_from_preset(codec);
4373 if (err < 0) {
4374 kfree(spec);
4375 return err;
4376 }
4377 return 0;
4378}
4379
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004380static int alc880_parse_auto_config(struct hda_codec *codec)
4381{
4382 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02004383 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004384 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
4385}
4386
Takashi Iwai1d045db2011-07-07 18:23:21 +02004387/*
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004388 * ALC880 fix-ups
4389 */
4390enum {
Takashi Iwai411225a2012-02-20 17:48:19 +01004391 ALC880_FIXUP_GPIO1,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004392 ALC880_FIXUP_GPIO2,
4393 ALC880_FIXUP_MEDION_RIM,
Takashi Iwaidc6af522012-02-17 16:18:59 +01004394 ALC880_FIXUP_LG,
Takashi Iwaif02aab52012-02-17 16:33:56 +01004395 ALC880_FIXUP_W810,
Takashi Iwai27e917f2012-02-17 17:49:54 +01004396 ALC880_FIXUP_EAPD_COEF,
Takashi Iwaib9368f52012-02-17 17:54:44 +01004397 ALC880_FIXUP_TCL_S700,
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004398 ALC880_FIXUP_VOL_KNOB,
4399 ALC880_FIXUP_FUJITSU,
Takashi Iwaiba533812012-02-20 16:36:52 +01004400 ALC880_FIXUP_F1734,
Takashi Iwai817de922012-02-20 17:20:48 +01004401 ALC880_FIXUP_UNIWILL,
Takashi Iwai967b88c2012-02-20 17:31:02 +01004402 ALC880_FIXUP_UNIWILL_DIG,
Takashi Iwai96e225f2012-02-20 17:41:51 +01004403 ALC880_FIXUP_Z71V,
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004404 ALC880_FIXUP_3ST_BASE,
4405 ALC880_FIXUP_3ST,
4406 ALC880_FIXUP_3ST_DIG,
4407 ALC880_FIXUP_5ST_BASE,
4408 ALC880_FIXUP_5ST,
4409 ALC880_FIXUP_5ST_DIG,
4410 ALC880_FIXUP_6ST_BASE,
4411 ALC880_FIXUP_6ST,
4412 ALC880_FIXUP_6ST_DIG,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004413};
4414
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004415/* enable the volume-knob widget support on NID 0x21 */
4416static void alc880_fixup_vol_knob(struct hda_codec *codec,
4417 const struct alc_fixup *fix, int action)
4418{
4419 if (action == ALC_FIXUP_ACT_PROBE)
David Henningsson29adc4b2012-09-25 11:31:00 +02004420 snd_hda_jack_detect_enable_callback(codec, 0x21, ALC_DCVOL_EVENT, alc_update_knob_master);
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004421}
4422
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004423static const struct alc_fixup alc880_fixups[] = {
Takashi Iwai411225a2012-02-20 17:48:19 +01004424 [ALC880_FIXUP_GPIO1] = {
4425 .type = ALC_FIXUP_VERBS,
4426 .v.verbs = alc_gpio1_init_verbs,
4427 },
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004428 [ALC880_FIXUP_GPIO2] = {
4429 .type = ALC_FIXUP_VERBS,
4430 .v.verbs = alc_gpio2_init_verbs,
4431 },
4432 [ALC880_FIXUP_MEDION_RIM] = {
4433 .type = ALC_FIXUP_VERBS,
4434 .v.verbs = (const struct hda_verb[]) {
4435 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4436 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
4437 { }
4438 },
4439 .chained = true,
4440 .chain_id = ALC880_FIXUP_GPIO2,
4441 },
Takashi Iwaidc6af522012-02-17 16:18:59 +01004442 [ALC880_FIXUP_LG] = {
4443 .type = ALC_FIXUP_PINS,
4444 .v.pins = (const struct alc_pincfg[]) {
4445 /* disable bogus unused pins */
4446 { 0x16, 0x411111f0 },
4447 { 0x18, 0x411111f0 },
4448 { 0x1a, 0x411111f0 },
4449 { }
4450 }
4451 },
Takashi Iwaif02aab52012-02-17 16:33:56 +01004452 [ALC880_FIXUP_W810] = {
4453 .type = ALC_FIXUP_PINS,
4454 .v.pins = (const struct alc_pincfg[]) {
4455 /* disable bogus unused pins */
4456 { 0x17, 0x411111f0 },
4457 { }
4458 },
4459 .chained = true,
4460 .chain_id = ALC880_FIXUP_GPIO2,
4461 },
Takashi Iwai27e917f2012-02-17 17:49:54 +01004462 [ALC880_FIXUP_EAPD_COEF] = {
4463 .type = ALC_FIXUP_VERBS,
4464 .v.verbs = (const struct hda_verb[]) {
4465 /* change to EAPD mode */
4466 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4467 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
4468 {}
4469 },
4470 },
Takashi Iwaib9368f52012-02-17 17:54:44 +01004471 [ALC880_FIXUP_TCL_S700] = {
4472 .type = ALC_FIXUP_VERBS,
4473 .v.verbs = (const struct hda_verb[]) {
4474 /* change to EAPD mode */
4475 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4476 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
4477 {}
4478 },
4479 .chained = true,
4480 .chain_id = ALC880_FIXUP_GPIO2,
4481 },
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004482 [ALC880_FIXUP_VOL_KNOB] = {
4483 .type = ALC_FIXUP_FUNC,
4484 .v.func = alc880_fixup_vol_knob,
4485 },
4486 [ALC880_FIXUP_FUJITSU] = {
4487 /* override all pins as BIOS on old Amilo is broken */
4488 .type = ALC_FIXUP_PINS,
4489 .v.pins = (const struct alc_pincfg[]) {
4490 { 0x14, 0x0121411f }, /* HP */
4491 { 0x15, 0x99030120 }, /* speaker */
4492 { 0x16, 0x99030130 }, /* bass speaker */
4493 { 0x17, 0x411111f0 }, /* N/A */
4494 { 0x18, 0x411111f0 }, /* N/A */
4495 { 0x19, 0x01a19950 }, /* mic-in */
4496 { 0x1a, 0x411111f0 }, /* N/A */
4497 { 0x1b, 0x411111f0 }, /* N/A */
4498 { 0x1c, 0x411111f0 }, /* N/A */
4499 { 0x1d, 0x411111f0 }, /* N/A */
4500 { 0x1e, 0x01454140 }, /* SPDIF out */
4501 { }
4502 },
4503 .chained = true,
4504 .chain_id = ALC880_FIXUP_VOL_KNOB,
4505 },
Takashi Iwaiba533812012-02-20 16:36:52 +01004506 [ALC880_FIXUP_F1734] = {
4507 /* almost compatible with FUJITSU, but no bass and SPDIF */
4508 .type = ALC_FIXUP_PINS,
4509 .v.pins = (const struct alc_pincfg[]) {
4510 { 0x14, 0x0121411f }, /* HP */
4511 { 0x15, 0x99030120 }, /* speaker */
4512 { 0x16, 0x411111f0 }, /* N/A */
4513 { 0x17, 0x411111f0 }, /* N/A */
4514 { 0x18, 0x411111f0 }, /* N/A */
4515 { 0x19, 0x01a19950 }, /* mic-in */
4516 { 0x1a, 0x411111f0 }, /* N/A */
4517 { 0x1b, 0x411111f0 }, /* N/A */
4518 { 0x1c, 0x411111f0 }, /* N/A */
4519 { 0x1d, 0x411111f0 }, /* N/A */
4520 { 0x1e, 0x411111f0 }, /* N/A */
4521 { }
4522 },
4523 .chained = true,
4524 .chain_id = ALC880_FIXUP_VOL_KNOB,
4525 },
Takashi Iwai817de922012-02-20 17:20:48 +01004526 [ALC880_FIXUP_UNIWILL] = {
4527 /* need to fix HP and speaker pins to be parsed correctly */
4528 .type = ALC_FIXUP_PINS,
4529 .v.pins = (const struct alc_pincfg[]) {
4530 { 0x14, 0x0121411f }, /* HP */
4531 { 0x15, 0x99030120 }, /* speaker */
4532 { 0x16, 0x99030130 }, /* bass speaker */
4533 { }
4534 },
4535 },
Takashi Iwai967b88c2012-02-20 17:31:02 +01004536 [ALC880_FIXUP_UNIWILL_DIG] = {
4537 .type = ALC_FIXUP_PINS,
4538 .v.pins = (const struct alc_pincfg[]) {
4539 /* disable bogus unused pins */
4540 { 0x17, 0x411111f0 },
4541 { 0x19, 0x411111f0 },
4542 { 0x1b, 0x411111f0 },
4543 { 0x1f, 0x411111f0 },
4544 { }
4545 }
4546 },
Takashi Iwai96e225f2012-02-20 17:41:51 +01004547 [ALC880_FIXUP_Z71V] = {
4548 .type = ALC_FIXUP_PINS,
4549 .v.pins = (const struct alc_pincfg[]) {
4550 /* set up the whole pins as BIOS is utterly broken */
4551 { 0x14, 0x99030120 }, /* speaker */
4552 { 0x15, 0x0121411f }, /* HP */
4553 { 0x16, 0x411111f0 }, /* N/A */
4554 { 0x17, 0x411111f0 }, /* N/A */
4555 { 0x18, 0x01a19950 }, /* mic-in */
4556 { 0x19, 0x411111f0 }, /* N/A */
4557 { 0x1a, 0x01813031 }, /* line-in */
4558 { 0x1b, 0x411111f0 }, /* N/A */
4559 { 0x1c, 0x411111f0 }, /* N/A */
4560 { 0x1d, 0x411111f0 }, /* N/A */
4561 { 0x1e, 0x0144111e }, /* SPDIF */
4562 { }
4563 }
4564 },
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004565 [ALC880_FIXUP_3ST_BASE] = {
4566 .type = ALC_FIXUP_PINS,
4567 .v.pins = (const struct alc_pincfg[]) {
4568 { 0x14, 0x01014010 }, /* line-out */
4569 { 0x15, 0x411111f0 }, /* N/A */
4570 { 0x16, 0x411111f0 }, /* N/A */
4571 { 0x17, 0x411111f0 }, /* N/A */
4572 { 0x18, 0x01a19c30 }, /* mic-in */
4573 { 0x19, 0x0121411f }, /* HP */
4574 { 0x1a, 0x01813031 }, /* line-in */
4575 { 0x1b, 0x02a19c40 }, /* front-mic */
4576 { 0x1c, 0x411111f0 }, /* N/A */
4577 { 0x1d, 0x411111f0 }, /* N/A */
4578 /* 0x1e is filled in below */
4579 { 0x1f, 0x411111f0 }, /* N/A */
4580 { }
4581 }
4582 },
4583 [ALC880_FIXUP_3ST] = {
4584 .type = ALC_FIXUP_PINS,
4585 .v.pins = (const struct alc_pincfg[]) {
4586 { 0x1e, 0x411111f0 }, /* N/A */
4587 { }
4588 },
4589 .chained = true,
4590 .chain_id = ALC880_FIXUP_3ST_BASE,
4591 },
4592 [ALC880_FIXUP_3ST_DIG] = {
4593 .type = ALC_FIXUP_PINS,
4594 .v.pins = (const struct alc_pincfg[]) {
4595 { 0x1e, 0x0144111e }, /* SPDIF */
4596 { }
4597 },
4598 .chained = true,
4599 .chain_id = ALC880_FIXUP_3ST_BASE,
4600 },
4601 [ALC880_FIXUP_5ST_BASE] = {
4602 .type = ALC_FIXUP_PINS,
4603 .v.pins = (const struct alc_pincfg[]) {
4604 { 0x14, 0x01014010 }, /* front */
4605 { 0x15, 0x411111f0 }, /* N/A */
4606 { 0x16, 0x01011411 }, /* CLFE */
4607 { 0x17, 0x01016412 }, /* surr */
4608 { 0x18, 0x01a19c30 }, /* mic-in */
4609 { 0x19, 0x0121411f }, /* HP */
4610 { 0x1a, 0x01813031 }, /* line-in */
4611 { 0x1b, 0x02a19c40 }, /* front-mic */
4612 { 0x1c, 0x411111f0 }, /* N/A */
4613 { 0x1d, 0x411111f0 }, /* N/A */
4614 /* 0x1e is filled in below */
4615 { 0x1f, 0x411111f0 }, /* N/A */
4616 { }
4617 }
4618 },
4619 [ALC880_FIXUP_5ST] = {
4620 .type = ALC_FIXUP_PINS,
4621 .v.pins = (const struct alc_pincfg[]) {
4622 { 0x1e, 0x411111f0 }, /* N/A */
4623 { }
4624 },
4625 .chained = true,
4626 .chain_id = ALC880_FIXUP_5ST_BASE,
4627 },
4628 [ALC880_FIXUP_5ST_DIG] = {
4629 .type = ALC_FIXUP_PINS,
4630 .v.pins = (const struct alc_pincfg[]) {
4631 { 0x1e, 0x0144111e }, /* SPDIF */
4632 { }
4633 },
4634 .chained = true,
4635 .chain_id = ALC880_FIXUP_5ST_BASE,
4636 },
4637 [ALC880_FIXUP_6ST_BASE] = {
4638 .type = ALC_FIXUP_PINS,
4639 .v.pins = (const struct alc_pincfg[]) {
4640 { 0x14, 0x01014010 }, /* front */
4641 { 0x15, 0x01016412 }, /* surr */
4642 { 0x16, 0x01011411 }, /* CLFE */
4643 { 0x17, 0x01012414 }, /* side */
4644 { 0x18, 0x01a19c30 }, /* mic-in */
4645 { 0x19, 0x02a19c40 }, /* front-mic */
4646 { 0x1a, 0x01813031 }, /* line-in */
4647 { 0x1b, 0x0121411f }, /* HP */
4648 { 0x1c, 0x411111f0 }, /* N/A */
4649 { 0x1d, 0x411111f0 }, /* N/A */
4650 /* 0x1e is filled in below */
4651 { 0x1f, 0x411111f0 }, /* N/A */
4652 { }
4653 }
4654 },
4655 [ALC880_FIXUP_6ST] = {
4656 .type = ALC_FIXUP_PINS,
4657 .v.pins = (const struct alc_pincfg[]) {
4658 { 0x1e, 0x411111f0 }, /* N/A */
4659 { }
4660 },
4661 .chained = true,
4662 .chain_id = ALC880_FIXUP_6ST_BASE,
4663 },
4664 [ALC880_FIXUP_6ST_DIG] = {
4665 .type = ALC_FIXUP_PINS,
4666 .v.pins = (const struct alc_pincfg[]) {
4667 { 0x1e, 0x0144111e }, /* SPDIF */
4668 { }
4669 },
4670 .chained = true,
4671 .chain_id = ALC880_FIXUP_6ST_BASE,
4672 },
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004673};
4674
4675static const struct snd_pci_quirk alc880_fixup_tbl[] = {
Takashi Iwaif02aab52012-02-17 16:33:56 +01004676 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
Takashi Iwai96e225f2012-02-20 17:41:51 +01004677 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
Takashi Iwai29e3fdc2012-02-20 17:56:57 +01004678 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
4679 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
Takashi Iwai27e917f2012-02-17 17:49:54 +01004680 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
Takashi Iwai967b88c2012-02-20 17:31:02 +01004681 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
Takashi Iwaiba533812012-02-20 16:36:52 +01004682 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
Takashi Iwai817de922012-02-20 17:20:48 +01004683 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
Takashi Iwai7833c7e2012-02-20 17:11:38 +01004684 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
Takashi Iwaif02aab52012-02-17 16:33:56 +01004685 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004686 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
Takashi Iwaiba533812012-02-20 16:36:52 +01004687 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_FIXUP_F1734),
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004688 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
Takashi Iwaiba533812012-02-20 16:36:52 +01004689 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004690 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
Takashi Iwaidc6af522012-02-17 16:18:59 +01004691 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
4692 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
4693 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
Takashi Iwaib9368f52012-02-17 17:54:44 +01004694 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004695
4696 /* Below is the copied entries from alc880_quirks.c.
4697 * It's not quite sure whether BIOS sets the correct pin-config table
4698 * on these machines, thus they are kept to be compatible with
4699 * the old static quirks. Once when it's confirmed to work without
4700 * these overrides, it'd be better to remove.
4701 */
4702 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
4703 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
4704 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
4705 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
4706 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
4707 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
4708 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
4709 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
4710 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
4711 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
4712 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
4713 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
4714 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
4715 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
4716 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
4717 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
4718 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
4719 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
4720 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
4721 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
4722 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
4723 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
4724 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
4725 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4726 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4727 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4728 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
4729 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4730 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
4731 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
4732 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4733 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4734 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4735 /* default Intel */
4736 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
4737 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
4738 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
4739 {}
4740};
4741
4742static const struct alc_model_fixup alc880_fixup_models[] = {
4743 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
4744 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
4745 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
4746 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
4747 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
4748 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004749 {}
4750};
4751
4752
4753/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02004754 * OK, here we have finally the patch for ALC880
4755 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004756static int patch_alc880(struct hda_codec *codec)
4757{
4758 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004759 int err;
4760
Takashi Iwai3de95172012-05-07 18:03:15 +02004761 err = alc_alloc_spec(codec, 0x0b);
4762 if (err < 0)
4763 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004764
Takashi Iwai3de95172012-05-07 18:03:15 +02004765 spec = codec->spec;
Takashi Iwai7b1655f2011-07-14 15:31:21 +02004766 spec->need_dac_fix = 1;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004767
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004768 alc_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
4769 alc880_fixups);
4770 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004771
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004772 /* automatic parse from the BIOS config */
4773 err = alc880_parse_auto_config(codec);
4774 if (err < 0)
4775 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004776
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004777 if (!spec->no_analog) {
4778 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004779 if (err < 0)
4780 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004781 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4782 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004783
Takashi Iwai1d045db2011-07-07 18:23:21 +02004784 codec->patch_ops = alc_patch_ops;
David Henningsson29adc4b2012-09-25 11:31:00 +02004785 codec->patch_ops.unsol_event = alc880_unsol_event;
4786
Takashi Iwai1d045db2011-07-07 18:23:21 +02004787
Takashi Iwai589876e2012-02-20 15:47:55 +01004788 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4789
Takashi Iwai1d045db2011-07-07 18:23:21 +02004790 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004791
4792 error:
4793 alc_free(codec);
4794 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004795}
4796
4797
4798/*
4799 * ALC260 support
4800 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004801static int alc260_parse_auto_config(struct hda_codec *codec)
4802{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004803 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004804 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
4805 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004806}
4807
Takashi Iwai1d045db2011-07-07 18:23:21 +02004808/*
4809 * Pin config fixes
4810 */
4811enum {
Takashi Iwaica8f0422012-02-16 11:51:19 +01004812 ALC260_FIXUP_HP_DC5750,
4813 ALC260_FIXUP_HP_PIN_0F,
4814 ALC260_FIXUP_COEF,
Takashi Iwai15317ab2012-02-16 12:02:53 +01004815 ALC260_FIXUP_GPIO1,
Takashi Iwai20f7d922012-02-16 12:35:16 +01004816 ALC260_FIXUP_GPIO1_TOGGLE,
4817 ALC260_FIXUP_REPLACER,
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01004818 ALC260_FIXUP_HP_B1900,
Takashi Iwai118cb4a2012-04-19 07:33:27 +02004819 ALC260_FIXUP_KN1,
Takashi Iwai1d045db2011-07-07 18:23:21 +02004820};
4821
Takashi Iwai20f7d922012-02-16 12:35:16 +01004822static void alc260_gpio1_automute(struct hda_codec *codec)
4823{
4824 struct alc_spec *spec = codec->spec;
4825 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
4826 spec->hp_jack_present);
4827}
4828
4829static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
4830 const struct alc_fixup *fix, int action)
4831{
4832 struct alc_spec *spec = codec->spec;
4833 if (action == ALC_FIXUP_ACT_PROBE) {
4834 /* although the machine has only one output pin, we need to
4835 * toggle GPIO1 according to the jack state
4836 */
4837 spec->automute_hook = alc260_gpio1_automute;
4838 spec->detect_hp = 1;
4839 spec->automute_speaker = 1;
4840 spec->autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
David Henningsson29adc4b2012-09-25 11:31:00 +02004841 snd_hda_jack_detect_enable_callback(codec, 0x0f, ALC_HP_EVENT,
4842 alc_hp_automute);
Takashi Iwai23d30f22012-05-07 17:17:32 +02004843 snd_hda_gen_add_verbs(&spec->gen, alc_gpio1_init_verbs);
Takashi Iwai20f7d922012-02-16 12:35:16 +01004844 }
4845}
4846
Takashi Iwai118cb4a2012-04-19 07:33:27 +02004847static void alc260_fixup_kn1(struct hda_codec *codec,
4848 const struct alc_fixup *fix, int action)
4849{
4850 struct alc_spec *spec = codec->spec;
4851 static const struct alc_pincfg pincfgs[] = {
4852 { 0x0f, 0x02214000 }, /* HP/speaker */
4853 { 0x12, 0x90a60160 }, /* int mic */
4854 { 0x13, 0x02a19000 }, /* ext mic */
4855 { 0x18, 0x01446000 }, /* SPDIF out */
4856 /* disable bogus I/O pins */
4857 { 0x10, 0x411111f0 },
4858 { 0x11, 0x411111f0 },
4859 { 0x14, 0x411111f0 },
4860 { 0x15, 0x411111f0 },
4861 { 0x16, 0x411111f0 },
4862 { 0x17, 0x411111f0 },
4863 { 0x19, 0x411111f0 },
4864 { }
4865 };
4866
4867 switch (action) {
4868 case ALC_FIXUP_ACT_PRE_PROBE:
4869 alc_apply_pincfgs(codec, pincfgs);
4870 break;
4871 case ALC_FIXUP_ACT_PROBE:
4872 spec->init_amp = ALC_INIT_NONE;
4873 break;
4874 }
4875}
4876
Takashi Iwai1d045db2011-07-07 18:23:21 +02004877static const struct alc_fixup alc260_fixups[] = {
Takashi Iwaica8f0422012-02-16 11:51:19 +01004878 [ALC260_FIXUP_HP_DC5750] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004879 .type = ALC_FIXUP_PINS,
4880 .v.pins = (const struct alc_pincfg[]) {
4881 { 0x11, 0x90130110 }, /* speaker */
4882 { }
4883 }
4884 },
Takashi Iwaica8f0422012-02-16 11:51:19 +01004885 [ALC260_FIXUP_HP_PIN_0F] = {
4886 .type = ALC_FIXUP_PINS,
4887 .v.pins = (const struct alc_pincfg[]) {
4888 { 0x0f, 0x01214000 }, /* HP */
4889 { }
4890 }
4891 },
4892 [ALC260_FIXUP_COEF] = {
4893 .type = ALC_FIXUP_VERBS,
4894 .v.verbs = (const struct hda_verb[]) {
4895 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4896 { 0x20, AC_VERB_SET_PROC_COEF, 0x3040 },
4897 { }
4898 },
4899 .chained = true,
4900 .chain_id = ALC260_FIXUP_HP_PIN_0F,
4901 },
Takashi Iwai15317ab2012-02-16 12:02:53 +01004902 [ALC260_FIXUP_GPIO1] = {
4903 .type = ALC_FIXUP_VERBS,
4904 .v.verbs = alc_gpio1_init_verbs,
4905 },
Takashi Iwai20f7d922012-02-16 12:35:16 +01004906 [ALC260_FIXUP_GPIO1_TOGGLE] = {
4907 .type = ALC_FIXUP_FUNC,
4908 .v.func = alc260_fixup_gpio1_toggle,
4909 .chained = true,
4910 .chain_id = ALC260_FIXUP_HP_PIN_0F,
4911 },
4912 [ALC260_FIXUP_REPLACER] = {
4913 .type = ALC_FIXUP_VERBS,
4914 .v.verbs = (const struct hda_verb[]) {
4915 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4916 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
4917 { }
4918 },
4919 .chained = true,
4920 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
4921 },
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01004922 [ALC260_FIXUP_HP_B1900] = {
4923 .type = ALC_FIXUP_FUNC,
4924 .v.func = alc260_fixup_gpio1_toggle,
4925 .chained = true,
4926 .chain_id = ALC260_FIXUP_COEF,
Takashi Iwai118cb4a2012-04-19 07:33:27 +02004927 },
4928 [ALC260_FIXUP_KN1] = {
4929 .type = ALC_FIXUP_FUNC,
4930 .v.func = alc260_fixup_kn1,
4931 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02004932};
4933
4934static const struct snd_pci_quirk alc260_fixup_tbl[] = {
Takashi Iwai15317ab2012-02-16 12:02:53 +01004935 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
Takashi Iwaica8f0422012-02-16 11:51:19 +01004936 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
Takashi Iwai15317ab2012-02-16 12:02:53 +01004937 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
Takashi Iwaica8f0422012-02-16 11:51:19 +01004938 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01004939 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
Takashi Iwaib1f58082012-02-16 12:45:03 +01004940 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
Takashi Iwai118cb4a2012-04-19 07:33:27 +02004941 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
Takashi Iwai20f7d922012-02-16 12:35:16 +01004942 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
Takashi Iwaica8f0422012-02-16 11:51:19 +01004943 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004944 {}
4945};
4946
4947/*
4948 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004949static int patch_alc260(struct hda_codec *codec)
4950{
4951 struct alc_spec *spec;
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01004952 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004953
Takashi Iwai3de95172012-05-07 18:03:15 +02004954 err = alc_alloc_spec(codec, 0x07);
4955 if (err < 0)
4956 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004957
Takashi Iwai3de95172012-05-07 18:03:15 +02004958 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004959
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01004960 alc_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
4961 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004962
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01004963 /* automatic parse from the BIOS config */
4964 err = alc260_parse_auto_config(codec);
4965 if (err < 0)
4966 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004967
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004968 if (!spec->no_analog) {
4969 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004970 if (err < 0)
4971 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004972 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
4973 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004974
Takashi Iwai1d045db2011-07-07 18:23:21 +02004975 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004976 spec->shutup = alc_eapd_shutup;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004977
Takashi Iwai589876e2012-02-20 15:47:55 +01004978 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4979
Takashi Iwai1d045db2011-07-07 18:23:21 +02004980 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004981
4982 error:
4983 alc_free(codec);
4984 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004985}
4986
4987
4988/*
4989 * ALC882/883/885/888/889 support
4990 *
4991 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4992 * configuration. Each pin widget can choose any input DACs and a mixer.
4993 * Each ADC is connected from a mixer of all inputs. This makes possible
4994 * 6-channel independent captures.
4995 *
4996 * In addition, an independent DAC for the multi-playback (not used in this
4997 * driver yet).
4998 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004999
5000/*
5001 * Pin config fixes
5002 */
5003enum {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005004 ALC882_FIXUP_ABIT_AW9D_MAX,
5005 ALC882_FIXUP_LENOVO_Y530,
5006 ALC882_FIXUP_PB_M5210,
5007 ALC882_FIXUP_ACER_ASPIRE_7736,
5008 ALC882_FIXUP_ASUS_W90V,
Marton Balint8f239212012-03-05 21:33:23 +01005009 ALC889_FIXUP_CD,
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005010 ALC889_FIXUP_VAIO_TT,
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01005011 ALC888_FIXUP_EEE1601,
Takashi Iwai177943a2011-11-09 12:55:18 +01005012 ALC882_FIXUP_EAPD,
Takashi Iwai7a6069b2011-11-09 15:22:01 +01005013 ALC883_FIXUP_EAPD,
Takashi Iwai8812c4f2011-11-09 17:39:15 +01005014 ALC883_FIXUP_ACER_EAPD,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005015 ALC882_FIXUP_GPIO1,
5016 ALC882_FIXUP_GPIO2,
Takashi Iwaieb844d52011-11-09 18:03:07 +01005017 ALC882_FIXUP_GPIO3,
Takashi Iwai68ef0562011-11-09 18:24:44 +01005018 ALC889_FIXUP_COEF,
5019 ALC882_FIXUP_ASUS_W2JC,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005020 ALC882_FIXUP_ACER_ASPIRE_4930G,
5021 ALC882_FIXUP_ACER_ASPIRE_8930G,
5022 ALC882_FIXUP_ASPIRE_8930G_VERBS,
Takashi Iwai56710872011-11-14 17:42:11 +01005023 ALC885_FIXUP_MACPRO_GPIO,
Takashi Iwai02a237b2012-02-13 15:25:07 +01005024 ALC889_FIXUP_DAC_ROUTE,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005025 ALC889_FIXUP_MBP_VREF,
5026 ALC889_FIXUP_IMAC91_VREF,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005027 ALC882_FIXUP_INV_DMIC,
Takashi Iwaie427c232012-07-29 10:04:08 +02005028 ALC882_FIXUP_NO_PRIMARY_HP,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005029};
5030
Takashi Iwai68ef0562011-11-09 18:24:44 +01005031static void alc889_fixup_coef(struct hda_codec *codec,
5032 const struct alc_fixup *fix, int action)
5033{
5034 if (action != ALC_FIXUP_ACT_INIT)
5035 return;
5036 alc889_coef_init(codec);
5037}
5038
Takashi Iwai56710872011-11-14 17:42:11 +01005039/* toggle speaker-output according to the hp-jack state */
5040static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
5041{
5042 unsigned int gpiostate, gpiomask, gpiodir;
5043
5044 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
5045 AC_VERB_GET_GPIO_DATA, 0);
5046
5047 if (!muted)
5048 gpiostate |= (1 << pin);
5049 else
5050 gpiostate &= ~(1 << pin);
5051
5052 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
5053 AC_VERB_GET_GPIO_MASK, 0);
5054 gpiomask |= (1 << pin);
5055
5056 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
5057 AC_VERB_GET_GPIO_DIRECTION, 0);
5058 gpiodir |= (1 << pin);
5059
5060
5061 snd_hda_codec_write(codec, codec->afg, 0,
5062 AC_VERB_SET_GPIO_MASK, gpiomask);
5063 snd_hda_codec_write(codec, codec->afg, 0,
5064 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
5065
5066 msleep(1);
5067
5068 snd_hda_codec_write(codec, codec->afg, 0,
5069 AC_VERB_SET_GPIO_DATA, gpiostate);
5070}
5071
5072/* set up GPIO at initialization */
5073static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
5074 const struct alc_fixup *fix, int action)
5075{
5076 if (action != ALC_FIXUP_ACT_INIT)
5077 return;
5078 alc882_gpio_mute(codec, 0, 0);
5079 alc882_gpio_mute(codec, 1, 0);
5080}
5081
Takashi Iwai02a237b2012-02-13 15:25:07 +01005082/* Fix the connection of some pins for ALC889:
5083 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
5084 * work correctly (bko#42740)
5085 */
5086static void alc889_fixup_dac_route(struct hda_codec *codec,
5087 const struct alc_fixup *fix, int action)
5088{
5089 if (action == ALC_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaief8d60f2012-02-17 10:12:38 +01005090 /* fake the connections during parsing the tree */
Takashi Iwai02a237b2012-02-13 15:25:07 +01005091 hda_nid_t conn1[2] = { 0x0c, 0x0d };
5092 hda_nid_t conn2[2] = { 0x0e, 0x0f };
5093 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
5094 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
5095 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
5096 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
Takashi Iwaief8d60f2012-02-17 10:12:38 +01005097 } else if (action == ALC_FIXUP_ACT_PROBE) {
5098 /* restore the connections */
5099 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
5100 snd_hda_override_conn_list(codec, 0x14, 5, conn);
5101 snd_hda_override_conn_list(codec, 0x15, 5, conn);
5102 snd_hda_override_conn_list(codec, 0x18, 5, conn);
5103 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
Takashi Iwai02a237b2012-02-13 15:25:07 +01005104 }
5105}
5106
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005107/* Set VREF on HP pin */
5108static void alc889_fixup_mbp_vref(struct hda_codec *codec,
5109 const struct alc_fixup *fix, int action)
5110{
5111 struct alc_spec *spec = codec->spec;
5112 static hda_nid_t nids[2] = { 0x14, 0x15 };
5113 int i;
5114
5115 if (action != ALC_FIXUP_ACT_INIT)
5116 return;
5117 for (i = 0; i < ARRAY_SIZE(nids); i++) {
5118 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
5119 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
5120 continue;
5121 val = snd_hda_codec_read(codec, nids[i], 0,
5122 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
5123 val |= AC_PINCTL_VREF_80;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005124 snd_hda_set_pin_ctl(codec, nids[i], val);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005125 spec->keep_vref_in_automute = 1;
5126 break;
5127 }
5128}
5129
5130/* Set VREF on speaker pins on imac91 */
5131static void alc889_fixup_imac91_vref(struct hda_codec *codec,
5132 const struct alc_fixup *fix, int action)
5133{
5134 struct alc_spec *spec = codec->spec;
5135 static hda_nid_t nids[2] = { 0x18, 0x1a };
5136 int i;
5137
5138 if (action != ALC_FIXUP_ACT_INIT)
5139 return;
5140 for (i = 0; i < ARRAY_SIZE(nids); i++) {
5141 unsigned int val;
5142 val = snd_hda_codec_read(codec, nids[i], 0,
5143 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
5144 val |= AC_PINCTL_VREF_50;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005145 snd_hda_set_pin_ctl(codec, nids[i], val);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005146 }
5147 spec->keep_vref_in_automute = 1;
5148}
5149
Takashi Iwaie427c232012-07-29 10:04:08 +02005150/* Don't take HP output as primary
5151 * strangely, the speaker output doesn't work on VAIO Z through DAC 0x05
5152 */
5153static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
5154 const struct alc_fixup *fix, int action)
5155{
5156 struct alc_spec *spec = codec->spec;
5157 if (action == ALC_FIXUP_ACT_PRE_PROBE)
5158 spec->no_primary_hp = 1;
5159}
5160
Takashi Iwai1d045db2011-07-07 18:23:21 +02005161static const struct alc_fixup alc882_fixups[] = {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005162 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005163 .type = ALC_FIXUP_PINS,
5164 .v.pins = (const struct alc_pincfg[]) {
5165 { 0x15, 0x01080104 }, /* side */
5166 { 0x16, 0x01011012 }, /* rear */
5167 { 0x17, 0x01016011 }, /* clfe */
5168 { }
5169 }
5170 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005171 [ALC882_FIXUP_LENOVO_Y530] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005172 .type = ALC_FIXUP_PINS,
5173 .v.pins = (const struct alc_pincfg[]) {
5174 { 0x15, 0x99130112 }, /* rear int speakers */
5175 { 0x16, 0x99130111 }, /* subwoofer */
5176 { }
5177 }
5178 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005179 [ALC882_FIXUP_PB_M5210] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005180 .type = ALC_FIXUP_VERBS,
5181 .v.verbs = (const struct hda_verb[]) {
5182 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
5183 {}
5184 }
5185 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005186 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
Takashi Iwai23d30f22012-05-07 17:17:32 +02005187 .type = ALC_FIXUP_FUNC,
5188 .v.func = alc_fixup_sku_ignore,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005189 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005190 [ALC882_FIXUP_ASUS_W90V] = {
Takashi Iwai5cdf7452011-10-26 23:04:08 +02005191 .type = ALC_FIXUP_PINS,
5192 .v.pins = (const struct alc_pincfg[]) {
5193 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
5194 { }
5195 }
5196 },
Marton Balint8f239212012-03-05 21:33:23 +01005197 [ALC889_FIXUP_CD] = {
5198 .type = ALC_FIXUP_PINS,
5199 .v.pins = (const struct alc_pincfg[]) {
5200 { 0x1c, 0x993301f0 }, /* CD */
5201 { }
5202 }
5203 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005204 [ALC889_FIXUP_VAIO_TT] = {
5205 .type = ALC_FIXUP_PINS,
5206 .v.pins = (const struct alc_pincfg[]) {
5207 { 0x17, 0x90170111 }, /* hidden surround speaker */
5208 { }
5209 }
5210 },
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01005211 [ALC888_FIXUP_EEE1601] = {
5212 .type = ALC_FIXUP_VERBS,
5213 .v.verbs = (const struct hda_verb[]) {
5214 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
5215 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
5216 { }
5217 }
Takashi Iwai177943a2011-11-09 12:55:18 +01005218 },
5219 [ALC882_FIXUP_EAPD] = {
5220 .type = ALC_FIXUP_VERBS,
5221 .v.verbs = (const struct hda_verb[]) {
5222 /* change to EAPD mode */
5223 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5224 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
5225 { }
5226 }
5227 },
Takashi Iwai7a6069b2011-11-09 15:22:01 +01005228 [ALC883_FIXUP_EAPD] = {
5229 .type = ALC_FIXUP_VERBS,
5230 .v.verbs = (const struct hda_verb[]) {
5231 /* change to EAPD mode */
5232 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5233 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
5234 { }
5235 }
5236 },
Takashi Iwai8812c4f2011-11-09 17:39:15 +01005237 [ALC883_FIXUP_ACER_EAPD] = {
5238 .type = ALC_FIXUP_VERBS,
5239 .v.verbs = (const struct hda_verb[]) {
5240 /* eanable EAPD on Acer laptops */
5241 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5242 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5243 { }
5244 }
5245 },
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005246 [ALC882_FIXUP_GPIO1] = {
5247 .type = ALC_FIXUP_VERBS,
5248 .v.verbs = alc_gpio1_init_verbs,
5249 },
5250 [ALC882_FIXUP_GPIO2] = {
5251 .type = ALC_FIXUP_VERBS,
5252 .v.verbs = alc_gpio2_init_verbs,
5253 },
Takashi Iwaieb844d52011-11-09 18:03:07 +01005254 [ALC882_FIXUP_GPIO3] = {
5255 .type = ALC_FIXUP_VERBS,
5256 .v.verbs = alc_gpio3_init_verbs,
5257 },
Takashi Iwai68ef0562011-11-09 18:24:44 +01005258 [ALC882_FIXUP_ASUS_W2JC] = {
5259 .type = ALC_FIXUP_VERBS,
5260 .v.verbs = alc_gpio1_init_verbs,
5261 .chained = true,
5262 .chain_id = ALC882_FIXUP_EAPD,
5263 },
5264 [ALC889_FIXUP_COEF] = {
5265 .type = ALC_FIXUP_FUNC,
5266 .v.func = alc889_fixup_coef,
5267 },
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005268 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
5269 .type = ALC_FIXUP_PINS,
5270 .v.pins = (const struct alc_pincfg[]) {
5271 { 0x16, 0x99130111 }, /* CLFE speaker */
5272 { 0x17, 0x99130112 }, /* surround speaker */
5273 { }
Takashi Iwai038d4fe2012-04-11 17:18:12 +02005274 },
5275 .chained = true,
5276 .chain_id = ALC882_FIXUP_GPIO1,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005277 },
5278 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
5279 .type = ALC_FIXUP_PINS,
5280 .v.pins = (const struct alc_pincfg[]) {
5281 { 0x16, 0x99130111 }, /* CLFE speaker */
5282 { 0x1b, 0x99130112 }, /* surround speaker */
5283 { }
5284 },
5285 .chained = true,
5286 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
5287 },
5288 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
5289 /* additional init verbs for Acer Aspire 8930G */
5290 .type = ALC_FIXUP_VERBS,
5291 .v.verbs = (const struct hda_verb[]) {
5292 /* Enable all DACs */
5293 /* DAC DISABLE/MUTE 1? */
5294 /* setting bits 1-5 disables DAC nids 0x02-0x06
5295 * apparently. Init=0x38 */
5296 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
5297 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
5298 /* DAC DISABLE/MUTE 2? */
5299 /* some bit here disables the other DACs.
5300 * Init=0x4900 */
5301 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
5302 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
5303 /* DMIC fix
5304 * This laptop has a stereo digital microphone.
5305 * The mics are only 1cm apart which makes the stereo
5306 * useless. However, either the mic or the ALC889
5307 * makes the signal become a difference/sum signal
5308 * instead of standard stereo, which is annoying.
5309 * So instead we flip this bit which makes the
5310 * codec replicate the sum signal to both channels,
5311 * turning it into a normal mono mic.
5312 */
5313 /* DMIC_CONTROL? Init value = 0x0001 */
5314 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
5315 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
5316 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5317 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5318 { }
Takashi Iwai038d4fe2012-04-11 17:18:12 +02005319 },
5320 .chained = true,
5321 .chain_id = ALC882_FIXUP_GPIO1,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005322 },
Takashi Iwai56710872011-11-14 17:42:11 +01005323 [ALC885_FIXUP_MACPRO_GPIO] = {
5324 .type = ALC_FIXUP_FUNC,
5325 .v.func = alc885_fixup_macpro_gpio,
5326 },
Takashi Iwai02a237b2012-02-13 15:25:07 +01005327 [ALC889_FIXUP_DAC_ROUTE] = {
5328 .type = ALC_FIXUP_FUNC,
5329 .v.func = alc889_fixup_dac_route,
5330 },
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005331 [ALC889_FIXUP_MBP_VREF] = {
5332 .type = ALC_FIXUP_FUNC,
5333 .v.func = alc889_fixup_mbp_vref,
5334 .chained = true,
5335 .chain_id = ALC882_FIXUP_GPIO1,
5336 },
5337 [ALC889_FIXUP_IMAC91_VREF] = {
5338 .type = ALC_FIXUP_FUNC,
5339 .v.func = alc889_fixup_imac91_vref,
5340 .chained = true,
5341 .chain_id = ALC882_FIXUP_GPIO1,
5342 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005343 [ALC882_FIXUP_INV_DMIC] = {
5344 .type = ALC_FIXUP_FUNC,
5345 .v.func = alc_fixup_inv_dmic_0x12,
5346 },
Takashi Iwaie427c232012-07-29 10:04:08 +02005347 [ALC882_FIXUP_NO_PRIMARY_HP] = {
5348 .type = ALC_FIXUP_FUNC,
5349 .v.func = alc882_fixup_no_primary_hp,
5350 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005351};
5352
5353static const struct snd_pci_quirk alc882_fixup_tbl[] = {
Takashi Iwai8812c4f2011-11-09 17:39:15 +01005354 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
5355 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
5356 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
5357 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
5358 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
5359 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005360 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
5361 ALC882_FIXUP_ACER_ASPIRE_4930G),
5362 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
5363 ALC882_FIXUP_ACER_ASPIRE_4930G),
5364 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
5365 ALC882_FIXUP_ACER_ASPIRE_8930G),
5366 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
5367 ALC882_FIXUP_ACER_ASPIRE_8930G),
5368 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
5369 ALC882_FIXUP_ACER_ASPIRE_4930G),
5370 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
5371 ALC882_FIXUP_ACER_ASPIRE_4930G),
5372 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
5373 ALC882_FIXUP_ACER_ASPIRE_4930G),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005374 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
Takashi Iwaif5c53d82012-05-07 10:07:33 +02005375 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
5376 ALC882_FIXUP_ACER_ASPIRE_4930G),
Takashi Iwai02a237b2012-02-13 15:25:07 +01005377 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
Takashi Iwaife97da12012-04-12 08:00:19 +02005378 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01005379 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
Takashi Iwai177943a2011-11-09 12:55:18 +01005380 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005381 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
Takashi Iwai68ef0562011-11-09 18:24:44 +01005382 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01005383 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01005384 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
Takashi Iwaie427c232012-07-29 10:04:08 +02005385 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
Takashi Iwai56710872011-11-14 17:42:11 +01005386
5387 /* All Apple entries are in codec SSIDs */
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005388 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
5389 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
5390 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01005391 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
5392 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
5393 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005394 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
5395 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01005396 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005397 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBP_VREF),
5398 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBP_VREF),
5399 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
5400 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01005401 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005402 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
5403 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
5404 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
Josh Boyer29ebe402012-04-12 13:55:36 -04005405 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 5,1", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai05193632012-11-12 10:07:36 +01005406 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005407 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
5408 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
5409 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_IMAC91_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01005410
Takashi Iwai7a6069b2011-11-09 15:22:01 +01005411 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
Takashi Iwaibca40132012-05-07 11:13:14 +02005412 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
Takashi Iwaieb844d52011-11-09 18:03:07 +01005413 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
Marton Balint8f239212012-03-05 21:33:23 +01005414 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3", ALC889_FIXUP_CD),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005415 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
Takashi Iwai7a6069b2011-11-09 15:22:01 +01005416 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
5417 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01005418 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
Takashi Iwai68ef0562011-11-09 18:24:44 +01005419 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005420 {}
5421};
5422
Takashi Iwai912093b2012-04-11 14:03:41 +02005423static const struct alc_model_fixup alc882_fixup_models[] = {
5424 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
5425 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
5426 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005427 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
Takashi Iwaie427c232012-07-29 10:04:08 +02005428 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
Takashi Iwai912093b2012-04-11 14:03:41 +02005429 {}
5430};
5431
Takashi Iwai1d045db2011-07-07 18:23:21 +02005432/*
5433 * BIOS auto configuration
5434 */
5435/* almost identical with ALC880 parser... */
5436static int alc882_parse_auto_config(struct hda_codec *codec)
5437{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005438 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005439 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5440 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005441}
5442
Takashi Iwai1d045db2011-07-07 18:23:21 +02005443/*
5444 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005445static int patch_alc882(struct hda_codec *codec)
5446{
5447 struct alc_spec *spec;
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005448 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005449
Takashi Iwai3de95172012-05-07 18:03:15 +02005450 err = alc_alloc_spec(codec, 0x0b);
5451 if (err < 0)
5452 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005453
Takashi Iwai3de95172012-05-07 18:03:15 +02005454 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005455
5456 switch (codec->vendor_id) {
5457 case 0x10ec0882:
5458 case 0x10ec0885:
5459 break;
5460 default:
5461 /* ALC883 and variants */
5462 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
5463 break;
5464 }
5465
Takashi Iwai912093b2012-04-11 14:03:41 +02005466 alc_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
5467 alc882_fixups);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005468 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005469
5470 alc_auto_parse_customize_define(codec);
5471
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005472 /* automatic parse from the BIOS config */
5473 err = alc882_parse_auto_config(codec);
5474 if (err < 0)
5475 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005476
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005477 if (!spec->no_analog && has_cdefine_beep(codec)) {
5478 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005479 if (err < 0)
5480 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005481 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005482 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005483
Takashi Iwai1d045db2011-07-07 18:23:21 +02005484 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005485
Takashi Iwai589876e2012-02-20 15:47:55 +01005486 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5487
Takashi Iwai1d045db2011-07-07 18:23:21 +02005488 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005489
5490 error:
5491 alc_free(codec);
5492 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005493}
5494
5495
5496/*
5497 * ALC262 support
5498 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005499static int alc262_parse_auto_config(struct hda_codec *codec)
5500{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005501 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005502 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5503 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005504}
5505
5506/*
5507 * Pin config fixes
5508 */
5509enum {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005510 ALC262_FIXUP_FSC_H270,
5511 ALC262_FIXUP_HP_Z200,
5512 ALC262_FIXUP_TYAN,
Takashi Iwaic4701502011-11-07 14:20:07 +01005513 ALC262_FIXUP_LENOVO_3000,
Takashi Iwaib42590b2011-11-07 14:41:01 +01005514 ALC262_FIXUP_BENQ,
5515 ALC262_FIXUP_BENQ_T31,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005516 ALC262_FIXUP_INV_DMIC,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005517};
5518
5519static const struct alc_fixup alc262_fixups[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005520 [ALC262_FIXUP_FSC_H270] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005521 .type = ALC_FIXUP_PINS,
5522 .v.pins = (const struct alc_pincfg[]) {
5523 { 0x14, 0x99130110 }, /* speaker */
5524 { 0x15, 0x0221142f }, /* front HP */
5525 { 0x1b, 0x0121141f }, /* rear HP */
5526 { }
5527 }
5528 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005529 [ALC262_FIXUP_HP_Z200] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005530 .type = ALC_FIXUP_PINS,
5531 .v.pins = (const struct alc_pincfg[]) {
5532 { 0x16, 0x99130120 }, /* internal speaker */
5533 { }
5534 }
5535 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005536 [ALC262_FIXUP_TYAN] = {
5537 .type = ALC_FIXUP_PINS,
5538 .v.pins = (const struct alc_pincfg[]) {
5539 { 0x14, 0x1993e1f0 }, /* int AUX */
5540 { }
5541 }
5542 },
Takashi Iwaic4701502011-11-07 14:20:07 +01005543 [ALC262_FIXUP_LENOVO_3000] = {
5544 .type = ALC_FIXUP_VERBS,
5545 .v.verbs = (const struct hda_verb[]) {
5546 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01005547 {}
5548 },
5549 .chained = true,
5550 .chain_id = ALC262_FIXUP_BENQ,
5551 },
5552 [ALC262_FIXUP_BENQ] = {
5553 .type = ALC_FIXUP_VERBS,
5554 .v.verbs = (const struct hda_verb[]) {
Takashi Iwaic4701502011-11-07 14:20:07 +01005555 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5556 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
5557 {}
5558 }
5559 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01005560 [ALC262_FIXUP_BENQ_T31] = {
5561 .type = ALC_FIXUP_VERBS,
5562 .v.verbs = (const struct hda_verb[]) {
5563 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5564 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5565 {}
5566 }
5567 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005568 [ALC262_FIXUP_INV_DMIC] = {
5569 .type = ALC_FIXUP_FUNC,
5570 .v.func = alc_fixup_inv_dmic_0x12,
5571 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005572};
5573
5574static const struct snd_pci_quirk alc262_fixup_tbl[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005575 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
Takashi Iwai3dcd3be2011-11-07 14:59:40 +01005576 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FIXUP_BENQ),
5577 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005578 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
5579 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
Takashi Iwaic4701502011-11-07 14:20:07 +01005580 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
Takashi Iwaib42590b2011-11-07 14:41:01 +01005581 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
5582 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005583 {}
5584};
5585
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005586static const struct alc_model_fixup alc262_fixup_models[] = {
5587 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
5588 {}
5589};
Takashi Iwai1d045db2011-07-07 18:23:21 +02005590
Takashi Iwai1d045db2011-07-07 18:23:21 +02005591/*
5592 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005593static int patch_alc262(struct hda_codec *codec)
5594{
5595 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005596 int err;
5597
Takashi Iwai3de95172012-05-07 18:03:15 +02005598 err = alc_alloc_spec(codec, 0x0b);
5599 if (err < 0)
5600 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005601
Takashi Iwai3de95172012-05-07 18:03:15 +02005602 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005603
5604#if 0
5605 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
5606 * under-run
5607 */
5608 {
5609 int tmp;
5610 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
5611 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
5612 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
5613 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
5614 }
5615#endif
Takashi Iwai1d045db2011-07-07 18:23:21 +02005616 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
5617
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005618 alc_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
5619 alc262_fixups);
Takashi Iwai42399f72011-11-07 17:18:44 +01005620 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005621
Takashi Iwaiaf741c12012-05-07 18:09:48 +02005622 alc_auto_parse_customize_define(codec);
5623
Takashi Iwai42399f72011-11-07 17:18:44 +01005624 /* automatic parse from the BIOS config */
5625 err = alc262_parse_auto_config(codec);
5626 if (err < 0)
5627 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005628
Takashi Iwai1d045db2011-07-07 18:23:21 +02005629 if (!spec->no_analog && has_cdefine_beep(codec)) {
5630 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005631 if (err < 0)
5632 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005633 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005634 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005635
Takashi Iwai1d045db2011-07-07 18:23:21 +02005636 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005637 spec->shutup = alc_eapd_shutup;
5638
Takashi Iwai589876e2012-02-20 15:47:55 +01005639 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5640
Takashi Iwai1d045db2011-07-07 18:23:21 +02005641 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005642
5643 error:
5644 alc_free(codec);
5645 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005646}
5647
5648/*
5649 * ALC268
5650 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005651/* bind Beep switches of both NID 0x0f and 0x10 */
5652static const struct hda_bind_ctls alc268_bind_beep_sw = {
5653 .ops = &snd_hda_bind_sw,
5654 .values = {
5655 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
5656 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
5657 0
5658 },
5659};
5660
5661static const struct snd_kcontrol_new alc268_beep_mixer[] = {
5662 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
5663 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
5664 { }
5665};
5666
5667/* set PCBEEP vol = 0, mute connections */
5668static const struct hda_verb alc268_beep_init_verbs[] = {
5669 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5670 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5671 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5672 { }
5673};
5674
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005675enum {
5676 ALC268_FIXUP_INV_DMIC,
Takashi Iwaicb766402012-10-20 10:55:21 +02005677 ALC268_FIXUP_HP_EAPD,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005678};
5679
5680static const struct alc_fixup alc268_fixups[] = {
5681 [ALC268_FIXUP_INV_DMIC] = {
5682 .type = ALC_FIXUP_FUNC,
5683 .v.func = alc_fixup_inv_dmic_0x12,
5684 },
Takashi Iwaicb766402012-10-20 10:55:21 +02005685 [ALC268_FIXUP_HP_EAPD] = {
5686 .type = ALC_FIXUP_VERBS,
5687 .v.verbs = (const struct hda_verb[]) {
5688 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
5689 {}
5690 }
5691 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005692};
5693
5694static const struct alc_model_fixup alc268_fixup_models[] = {
5695 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
Takashi Iwaicb766402012-10-20 10:55:21 +02005696 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
5697 {}
5698};
5699
5700static const struct snd_pci_quirk alc268_fixup_tbl[] = {
5701 /* below is codec SSID since multiple Toshiba laptops have the
5702 * same PCI SSID 1179:ff00
5703 */
5704 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005705 {}
5706};
5707
Takashi Iwai1d045db2011-07-07 18:23:21 +02005708/*
5709 * BIOS auto configuration
5710 */
5711static int alc268_parse_auto_config(struct hda_codec *codec)
5712{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005713 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai1d045db2011-07-07 18:23:21 +02005714 struct alc_spec *spec = codec->spec;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005715 int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
5716 if (err > 0) {
5717 if (!spec->no_analog && spec->autocfg.speaker_pins[0] != 0x1d) {
5718 add_mixer(spec, alc268_beep_mixer);
Takashi Iwai23d30f22012-05-07 17:17:32 +02005719 snd_hda_gen_add_verbs(&spec->gen, alc268_beep_init_verbs);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005720 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005721 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005722 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005723}
5724
Takashi Iwai1d045db2011-07-07 18:23:21 +02005725/*
5726 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005727static int patch_alc268(struct hda_codec *codec)
5728{
5729 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005730 int i, has_beep, err;
5731
Takashi Iwai1d045db2011-07-07 18:23:21 +02005732 /* ALC268 has no aa-loopback mixer */
Takashi Iwai3de95172012-05-07 18:03:15 +02005733 err = alc_alloc_spec(codec, 0);
5734 if (err < 0)
5735 return err;
5736
5737 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005738
Takashi Iwaicb766402012-10-20 10:55:21 +02005739 alc_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005740 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5741
Takashi Iwai6ebb8052011-08-16 15:15:40 +02005742 /* automatic parse from the BIOS config */
5743 err = alc268_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005744 if (err < 0)
5745 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005746
Takashi Iwai1d045db2011-07-07 18:23:21 +02005747 has_beep = 0;
5748 for (i = 0; i < spec->num_mixers; i++) {
5749 if (spec->mixers[i] == alc268_beep_mixer) {
5750 has_beep = 1;
5751 break;
5752 }
5753 }
5754
5755 if (has_beep) {
5756 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005757 if (err < 0)
5758 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005759 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
5760 /* override the amp caps for beep generator */
5761 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
5762 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
5763 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
5764 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5765 (0 << AC_AMPCAP_MUTE_SHIFT));
5766 }
5767
Takashi Iwai1d045db2011-07-07 18:23:21 +02005768 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005769 spec->shutup = alc_eapd_shutup;
5770
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005771 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5772
Takashi Iwai1d045db2011-07-07 18:23:21 +02005773 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005774
5775 error:
5776 alc_free(codec);
5777 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005778}
5779
5780/*
5781 * ALC269
5782 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005783static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
5784 .substreams = 1,
5785 .channels_min = 2,
5786 .channels_max = 8,
5787 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
5788 /* NID is set in alc_build_pcms */
5789 .ops = {
5790 .open = alc_playback_pcm_open,
5791 .prepare = alc_playback_pcm_prepare,
5792 .cleanup = alc_playback_pcm_cleanup
5793 },
5794};
5795
5796static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
5797 .substreams = 1,
5798 .channels_min = 2,
5799 .channels_max = 2,
5800 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
5801 /* NID is set in alc_build_pcms */
5802};
5803
Takashi Iwai1d045db2011-07-07 18:23:21 +02005804/* different alc269-variants */
5805enum {
5806 ALC269_TYPE_ALC269VA,
5807 ALC269_TYPE_ALC269VB,
5808 ALC269_TYPE_ALC269VC,
Kailang Yangadcc70b2012-05-25 08:08:38 +02005809 ALC269_TYPE_ALC269VD,
Kailang Yang065380f2013-01-10 10:25:48 +01005810 ALC269_TYPE_ALC280,
5811 ALC269_TYPE_ALC282,
5812 ALC269_TYPE_ALC284,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005813};
5814
5815/*
5816 * BIOS auto configuration
5817 */
5818static int alc269_parse_auto_config(struct hda_codec *codec)
5819{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005820 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005821 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
5822 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5823 struct alc_spec *spec = codec->spec;
Kailang Yangadcc70b2012-05-25 08:08:38 +02005824 const hda_nid_t *ssids;
5825
5826 switch (spec->codec_variant) {
5827 case ALC269_TYPE_ALC269VA:
5828 case ALC269_TYPE_ALC269VC:
Kailang Yang065380f2013-01-10 10:25:48 +01005829 case ALC269_TYPE_ALC280:
5830 case ALC269_TYPE_ALC284:
Kailang Yangadcc70b2012-05-25 08:08:38 +02005831 ssids = alc269va_ssids;
5832 break;
5833 case ALC269_TYPE_ALC269VB:
5834 case ALC269_TYPE_ALC269VD:
Kailang Yang065380f2013-01-10 10:25:48 +01005835 case ALC269_TYPE_ALC282:
Kailang Yangadcc70b2012-05-25 08:08:38 +02005836 ssids = alc269_ssids;
5837 break;
5838 default:
5839 ssids = alc269_ssids;
5840 break;
5841 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005842
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005843 return alc_parse_auto_config(codec, alc269_ignore, ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005844}
5845
Kailang Yang1387e2d2012-11-08 10:23:18 +01005846static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005847{
5848 int val = alc_read_coef_idx(codec, 0x04);
5849 if (power_up)
5850 val |= 1 << 11;
5851 else
5852 val &= ~(1 << 11);
5853 alc_write_coef_idx(codec, 0x04, val);
5854}
5855
5856static void alc269_shutup(struct hda_codec *codec)
5857{
Kailang Yangadcc70b2012-05-25 08:08:38 +02005858 struct alc_spec *spec = codec->spec;
5859
5860 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
5861 return;
5862
Kailang Yang1387e2d2012-11-08 10:23:18 +01005863 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
5864 alc269vb_toggle_power_output(codec, 0);
5865 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
5866 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005867 msleep(150);
5868 }
5869}
5870
Takashi Iwai2a439522011-07-26 09:52:50 +02005871#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02005872static int alc269_resume(struct hda_codec *codec)
5873{
Kailang Yangadcc70b2012-05-25 08:08:38 +02005874 struct alc_spec *spec = codec->spec;
5875
Kailang Yang1387e2d2012-11-08 10:23:18 +01005876 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
5877 alc269vb_toggle_power_output(codec, 0);
5878 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
Kailang Yangadcc70b2012-05-25 08:08:38 +02005879 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005880 msleep(150);
5881 }
5882
5883 codec->patch_ops.init(codec);
5884
Kailang Yang1387e2d2012-11-08 10:23:18 +01005885 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
5886 alc269vb_toggle_power_output(codec, 1);
5887 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
Kailang Yangadcc70b2012-05-25 08:08:38 +02005888 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005889 msleep(200);
5890 }
5891
Takashi Iwai1d045db2011-07-07 18:23:21 +02005892 snd_hda_codec_resume_amp(codec);
5893 snd_hda_codec_resume_cache(codec);
5894 hda_call_check_power_status(codec, 0x01);
5895 return 0;
5896}
Takashi Iwai2a439522011-07-26 09:52:50 +02005897#endif /* CONFIG_PM */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005898
David Henningsson108cc102012-07-20 10:37:25 +02005899static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
5900 const struct alc_fixup *fix, int action)
5901{
5902 struct alc_spec *spec = codec->spec;
5903
5904 if (action == ALC_FIXUP_ACT_PRE_PROBE)
5905 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5906}
5907
Takashi Iwai1d045db2011-07-07 18:23:21 +02005908static void alc269_fixup_hweq(struct hda_codec *codec,
5909 const struct alc_fixup *fix, int action)
5910{
5911 int coef;
5912
5913 if (action != ALC_FIXUP_ACT_INIT)
5914 return;
5915 coef = alc_read_coef_idx(codec, 0x1e);
5916 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
5917}
5918
5919static void alc271_fixup_dmic(struct hda_codec *codec,
5920 const struct alc_fixup *fix, int action)
5921{
5922 static const struct hda_verb verbs[] = {
5923 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
5924 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
5925 {}
5926 };
5927 unsigned int cfg;
5928
5929 if (strcmp(codec->chip_name, "ALC271X"))
5930 return;
5931 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
5932 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
5933 snd_hda_sequence_write(codec, verbs);
5934}
5935
Takashi Iwai017f2a12011-07-09 14:42:25 +02005936static void alc269_fixup_pcm_44k(struct hda_codec *codec,
5937 const struct alc_fixup *fix, int action)
5938{
5939 struct alc_spec *spec = codec->spec;
5940
5941 if (action != ALC_FIXUP_ACT_PROBE)
5942 return;
5943
5944 /* Due to a hardware problem on Lenovo Ideadpad, we need to
5945 * fix the sample rate of analog I/O to 44.1kHz
5946 */
5947 spec->stream_analog_playback = &alc269_44k_pcm_analog_playback;
5948 spec->stream_analog_capture = &alc269_44k_pcm_analog_capture;
5949}
5950
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02005951static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
5952 const struct alc_fixup *fix, int action)
5953{
5954 int coef;
5955
5956 if (action != ALC_FIXUP_ACT_INIT)
5957 return;
5958 /* The digital-mic unit sends PDM (differential signal) instead of
5959 * the standard PCM, thus you can't record a valid mono stream as is.
5960 * Below is a workaround specific to ALC269 to control the dmic
5961 * signal source as mono.
5962 */
5963 coef = alc_read_coef_idx(codec, 0x07);
5964 alc_write_coef_idx(codec, 0x07, coef | 0x80);
5965}
5966
Takashi Iwai24519912011-08-16 15:08:49 +02005967static void alc269_quanta_automute(struct hda_codec *codec)
5968{
David Henningsson42cf0d02011-09-20 12:04:56 +02005969 update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +02005970
5971 snd_hda_codec_write(codec, 0x20, 0,
5972 AC_VERB_SET_COEF_INDEX, 0x0c);
5973 snd_hda_codec_write(codec, 0x20, 0,
5974 AC_VERB_SET_PROC_COEF, 0x680);
5975
5976 snd_hda_codec_write(codec, 0x20, 0,
5977 AC_VERB_SET_COEF_INDEX, 0x0c);
5978 snd_hda_codec_write(codec, 0x20, 0,
5979 AC_VERB_SET_PROC_COEF, 0x480);
5980}
5981
5982static void alc269_fixup_quanta_mute(struct hda_codec *codec,
5983 const struct alc_fixup *fix, int action)
5984{
5985 struct alc_spec *spec = codec->spec;
5986 if (action != ALC_FIXUP_ACT_PROBE)
5987 return;
5988 spec->automute_hook = alc269_quanta_automute;
5989}
5990
David Henningsson6d3cd5d2013-01-07 12:03:47 +01005991/* update mute-LED according to the speaker mute state via mic1 VREF pin */
5992static void alc269_fixup_mic1_mute_hook(void *private_data, int enabled)
5993{
5994 struct hda_codec *codec = private_data;
5995 unsigned int pinval = AC_PINCTL_IN_EN + (enabled ?
5996 AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80);
5997 snd_hda_set_pin_ctl_cache(codec, 0x18, pinval);
5998}
5999
6000static void alc269_fixup_mic1_mute(struct hda_codec *codec,
6001 const struct alc_fixup *fix, int action)
6002{
6003 struct alc_spec *spec = codec->spec;
6004 switch (action) {
6005 case ALC_FIXUP_ACT_BUILD:
6006 spec->vmaster_mute.hook = alc269_fixup_mic1_mute_hook;
6007 snd_hda_add_vmaster_hook(codec, &spec->vmaster_mute, true);
6008 /* fallthru */
6009 case ALC_FIXUP_ACT_INIT:
6010 snd_hda_sync_vmaster_hook(&spec->vmaster_mute);
6011 break;
6012 }
6013}
6014
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006015/* update mute-LED according to the speaker mute state via mic2 VREF pin */
6016static void alc269_fixup_mic2_mute_hook(void *private_data, int enabled)
6017{
6018 struct hda_codec *codec = private_data;
6019 unsigned int pinval = enabled ? 0x20 : 0x24;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02006020 snd_hda_set_pin_ctl_cache(codec, 0x19, pinval);
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006021}
6022
6023static void alc269_fixup_mic2_mute(struct hda_codec *codec,
6024 const struct alc_fixup *fix, int action)
6025{
6026 struct alc_spec *spec = codec->spec;
6027 switch (action) {
6028 case ALC_FIXUP_ACT_BUILD:
Takashi Iwaid2f344b2012-03-12 16:59:58 +01006029 spec->vmaster_mute.hook = alc269_fixup_mic2_mute_hook;
Takashi Iwaif29735c2012-03-13 07:55:10 +01006030 snd_hda_add_vmaster_hook(codec, &spec->vmaster_mute, true);
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006031 /* fallthru */
6032 case ALC_FIXUP_ACT_INIT:
Takashi Iwaid2f344b2012-03-12 16:59:58 +01006033 snd_hda_sync_vmaster_hook(&spec->vmaster_mute);
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006034 break;
6035 }
6036}
6037
Dylan Reid08a978d2012-11-18 22:56:40 -08006038static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
6039 const struct alc_fixup *fix,
6040 int action)
6041{
6042 struct alc_spec *spec = codec->spec;
6043
6044 if (action == ALC_FIXUP_ACT_PROBE)
6045 snd_hda_jack_set_gating_jack(codec, spec->ext_mic_pin,
6046 spec->autocfg.hp_pins[0]);
6047}
David Henningsson693b6132012-06-22 19:12:10 +02006048
Takashi Iwai1d045db2011-07-07 18:23:21 +02006049enum {
6050 ALC269_FIXUP_SONY_VAIO,
6051 ALC275_FIXUP_SONY_VAIO_GPIO2,
6052 ALC269_FIXUP_DELL_M101Z,
6053 ALC269_FIXUP_SKU_IGNORE,
6054 ALC269_FIXUP_ASUS_G73JW,
6055 ALC269_FIXUP_LENOVO_EAPD,
6056 ALC275_FIXUP_SONY_HWEQ,
6057 ALC271_FIXUP_DMIC,
Takashi Iwai017f2a12011-07-09 14:42:25 +02006058 ALC269_FIXUP_PCM_44K,
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02006059 ALC269_FIXUP_STEREO_DMIC,
Takashi Iwai24519912011-08-16 15:08:49 +02006060 ALC269_FIXUP_QUANTA_MUTE,
6061 ALC269_FIXUP_LIFEBOOK,
Takashi Iwaia4297b52011-08-23 18:40:12 +02006062 ALC269_FIXUP_AMIC,
6063 ALC269_FIXUP_DMIC,
6064 ALC269VB_FIXUP_AMIC,
6065 ALC269VB_FIXUP_DMIC,
David Henningsson6d3cd5d2013-01-07 12:03:47 +01006066 ALC269_FIXUP_MIC1_MUTE_LED,
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006067 ALC269_FIXUP_MIC2_MUTE_LED,
David Henningsson693b6132012-06-22 19:12:10 +02006068 ALC269_FIXUP_INV_DMIC,
David Henningsson108cc102012-07-20 10:37:25 +02006069 ALC269_FIXUP_LENOVO_DOCK,
6070 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
Dylan Reid08a978d2012-11-18 22:56:40 -08006071 ALC271_FIXUP_AMIC_MIC2,
6072 ALC271_FIXUP_HP_GATE_MIC_JACK,
Takashi Iwai1d045db2011-07-07 18:23:21 +02006073};
6074
6075static const struct alc_fixup alc269_fixups[] = {
6076 [ALC269_FIXUP_SONY_VAIO] = {
6077 .type = ALC_FIXUP_VERBS,
6078 .v.verbs = (const struct hda_verb[]) {
6079 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
6080 {}
6081 }
6082 },
6083 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
6084 .type = ALC_FIXUP_VERBS,
6085 .v.verbs = (const struct hda_verb[]) {
6086 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
6087 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
6088 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
6089 { }
6090 },
6091 .chained = true,
6092 .chain_id = ALC269_FIXUP_SONY_VAIO
6093 },
6094 [ALC269_FIXUP_DELL_M101Z] = {
6095 .type = ALC_FIXUP_VERBS,
6096 .v.verbs = (const struct hda_verb[]) {
6097 /* Enables internal speaker */
6098 {0x20, AC_VERB_SET_COEF_INDEX, 13},
6099 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
6100 {}
6101 }
6102 },
6103 [ALC269_FIXUP_SKU_IGNORE] = {
Takashi Iwai23d30f22012-05-07 17:17:32 +02006104 .type = ALC_FIXUP_FUNC,
6105 .v.func = alc_fixup_sku_ignore,
Takashi Iwai1d045db2011-07-07 18:23:21 +02006106 },
6107 [ALC269_FIXUP_ASUS_G73JW] = {
6108 .type = ALC_FIXUP_PINS,
6109 .v.pins = (const struct alc_pincfg[]) {
6110 { 0x17, 0x99130111 }, /* subwoofer */
6111 { }
6112 }
6113 },
6114 [ALC269_FIXUP_LENOVO_EAPD] = {
6115 .type = ALC_FIXUP_VERBS,
6116 .v.verbs = (const struct hda_verb[]) {
6117 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
6118 {}
6119 }
6120 },
6121 [ALC275_FIXUP_SONY_HWEQ] = {
6122 .type = ALC_FIXUP_FUNC,
6123 .v.func = alc269_fixup_hweq,
6124 .chained = true,
6125 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
6126 },
6127 [ALC271_FIXUP_DMIC] = {
6128 .type = ALC_FIXUP_FUNC,
6129 .v.func = alc271_fixup_dmic,
6130 },
Takashi Iwai017f2a12011-07-09 14:42:25 +02006131 [ALC269_FIXUP_PCM_44K] = {
6132 .type = ALC_FIXUP_FUNC,
6133 .v.func = alc269_fixup_pcm_44k,
David Henningsson012e7eb2012-08-08 08:43:37 +02006134 .chained = true,
6135 .chain_id = ALC269_FIXUP_QUANTA_MUTE
Takashi Iwai017f2a12011-07-09 14:42:25 +02006136 },
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02006137 [ALC269_FIXUP_STEREO_DMIC] = {
6138 .type = ALC_FIXUP_FUNC,
6139 .v.func = alc269_fixup_stereo_dmic,
6140 },
Takashi Iwai24519912011-08-16 15:08:49 +02006141 [ALC269_FIXUP_QUANTA_MUTE] = {
6142 .type = ALC_FIXUP_FUNC,
6143 .v.func = alc269_fixup_quanta_mute,
6144 },
6145 [ALC269_FIXUP_LIFEBOOK] = {
6146 .type = ALC_FIXUP_PINS,
6147 .v.pins = (const struct alc_pincfg[]) {
6148 { 0x1a, 0x2101103f }, /* dock line-out */
6149 { 0x1b, 0x23a11040 }, /* dock mic-in */
6150 { }
6151 },
6152 .chained = true,
6153 .chain_id = ALC269_FIXUP_QUANTA_MUTE
6154 },
Takashi Iwaia4297b52011-08-23 18:40:12 +02006155 [ALC269_FIXUP_AMIC] = {
6156 .type = ALC_FIXUP_PINS,
6157 .v.pins = (const struct alc_pincfg[]) {
6158 { 0x14, 0x99130110 }, /* speaker */
6159 { 0x15, 0x0121401f }, /* HP out */
6160 { 0x18, 0x01a19c20 }, /* mic */
6161 { 0x19, 0x99a3092f }, /* int-mic */
6162 { }
6163 },
6164 },
6165 [ALC269_FIXUP_DMIC] = {
6166 .type = ALC_FIXUP_PINS,
6167 .v.pins = (const struct alc_pincfg[]) {
6168 { 0x12, 0x99a3092f }, /* int-mic */
6169 { 0x14, 0x99130110 }, /* speaker */
6170 { 0x15, 0x0121401f }, /* HP out */
6171 { 0x18, 0x01a19c20 }, /* mic */
6172 { }
6173 },
6174 },
6175 [ALC269VB_FIXUP_AMIC] = {
6176 .type = ALC_FIXUP_PINS,
6177 .v.pins = (const struct alc_pincfg[]) {
6178 { 0x14, 0x99130110 }, /* speaker */
6179 { 0x18, 0x01a19c20 }, /* mic */
6180 { 0x19, 0x99a3092f }, /* int-mic */
6181 { 0x21, 0x0121401f }, /* HP out */
6182 { }
6183 },
6184 },
David Henningsson2267ea92012-01-03 08:45:56 +01006185 [ALC269VB_FIXUP_DMIC] = {
Takashi Iwaia4297b52011-08-23 18:40:12 +02006186 .type = ALC_FIXUP_PINS,
6187 .v.pins = (const struct alc_pincfg[]) {
6188 { 0x12, 0x99a3092f }, /* int-mic */
6189 { 0x14, 0x99130110 }, /* speaker */
6190 { 0x18, 0x01a19c20 }, /* mic */
6191 { 0x21, 0x0121401f }, /* HP out */
6192 { }
6193 },
6194 },
David Henningsson6d3cd5d2013-01-07 12:03:47 +01006195 [ALC269_FIXUP_MIC1_MUTE_LED] = {
6196 .type = ALC_FIXUP_FUNC,
6197 .v.func = alc269_fixup_mic1_mute,
6198 },
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006199 [ALC269_FIXUP_MIC2_MUTE_LED] = {
6200 .type = ALC_FIXUP_FUNC,
6201 .v.func = alc269_fixup_mic2_mute,
6202 },
David Henningsson693b6132012-06-22 19:12:10 +02006203 [ALC269_FIXUP_INV_DMIC] = {
6204 .type = ALC_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02006205 .v.func = alc_fixup_inv_dmic_0x12,
David Henningsson693b6132012-06-22 19:12:10 +02006206 },
David Henningsson108cc102012-07-20 10:37:25 +02006207 [ALC269_FIXUP_LENOVO_DOCK] = {
6208 .type = ALC_FIXUP_PINS,
6209 .v.pins = (const struct alc_pincfg[]) {
6210 { 0x19, 0x23a11040 }, /* dock mic */
6211 { 0x1b, 0x2121103f }, /* dock headphone */
6212 { }
6213 },
6214 .chained = true,
6215 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
6216 },
6217 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
6218 .type = ALC_FIXUP_FUNC,
6219 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
6220 },
Dylan Reid08a978d2012-11-18 22:56:40 -08006221 [ALC271_FIXUP_AMIC_MIC2] = {
6222 .type = ALC_FIXUP_PINS,
6223 .v.pins = (const struct alc_pincfg[]) {
6224 { 0x14, 0x99130110 }, /* speaker */
6225 { 0x19, 0x01a19c20 }, /* mic */
6226 { 0x1b, 0x99a7012f }, /* int-mic */
6227 { 0x21, 0x0121401f }, /* HP out */
6228 { }
6229 },
6230 },
6231 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
6232 .type = ALC_FIXUP_FUNC,
6233 .v.func = alc271_hp_gate_mic_jack,
6234 .chained = true,
6235 .chain_id = ALC271_FIXUP_AMIC_MIC2,
6236 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02006237};
6238
6239static const struct snd_pci_quirk alc269_fixup_tbl[] = {
David Henningsson693b6132012-06-22 19:12:10 +02006240 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
6241 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006242 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_MIC2_MUTE_LED),
David Henningsson6d3cd5d2013-01-07 12:03:47 +01006243 SND_PCI_QUIRK(0x103c, 0x1972, "HP Pavilion 17", ALC269_FIXUP_MIC1_MUTE_LED),
David Henningsson5ac57552012-04-20 10:01:46 +02006244 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_DMIC),
Oleksij Rempel148728f2012-09-21 17:44:58 +02006245 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_DMIC),
Takashi Iwai017f2a12011-07-09 14:42:25 +02006246 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
David Henningsson693b6132012-06-22 19:12:10 +02006247 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02006248 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
6249 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
6250 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
6251 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
6252 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006253 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
6254 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
6255 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
6256 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
6257 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
Dylan Reid08a978d2012-11-18 22:56:40 -08006258 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006259 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
Takashi Iwai24519912011-08-16 15:08:49 +02006260 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006261 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
6262 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
6263 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
6264 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
6265 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
Takashi Iwai707fba32012-08-02 09:04:39 +02006266 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
Felix Kaechelec8415a42012-08-06 23:02:01 +02006267 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
Stefán Freyr84f98fd2012-10-19 22:46:00 +02006268 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
Philipp A. Mohrenweiser4407be62012-08-06 13:14:18 +02006269 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
David Henningsson108cc102012-07-20 10:37:25 +02006270 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
David Henningsson012e7eb2012-08-08 08:43:37 +02006271 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006272 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
Takashi Iwaia4297b52011-08-23 18:40:12 +02006273
Takashi Iwaia7f3eed2012-02-16 13:03:18 +01006274#if 0
Takashi Iwaia4297b52011-08-23 18:40:12 +02006275 /* Below is a quirk table taken from the old code.
6276 * Basically the device should work as is without the fixup table.
6277 * If BIOS doesn't give a proper info, enable the corresponding
6278 * fixup entry.
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02006279 */
Takashi Iwaia4297b52011-08-23 18:40:12 +02006280 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
6281 ALC269_FIXUP_AMIC),
6282 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
Takashi Iwaia4297b52011-08-23 18:40:12 +02006283 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
6284 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
6285 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
6286 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
6287 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
6288 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
6289 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
6290 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
6291 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
6292 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
6293 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
6294 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
6295 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
6296 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
6297 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
6298 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
6299 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
6300 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
6301 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
6302 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
6303 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
6304 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
6305 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
6306 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
6307 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
6308 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
6309 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
6310 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
6311 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
6312 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
6313 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
6314 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
6315 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
6316 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
6317 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
6318 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
6319 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
6320 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
6321#endif
6322 {}
6323};
6324
6325static const struct alc_model_fixup alc269_fixup_models[] = {
6326 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
6327 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02006328 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
6329 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
6330 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
David Henningsson108cc102012-07-20 10:37:25 +02006331 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
Takashi Iwai1d045db2011-07-07 18:23:21 +02006332 {}
6333};
6334
6335
Takashi Iwai546bb672012-03-07 08:37:19 +01006336static void alc269_fill_coef(struct hda_codec *codec)
Takashi Iwai1d045db2011-07-07 18:23:21 +02006337{
Kailang Yang526af6e2012-03-07 08:25:20 +01006338 struct alc_spec *spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006339 int val;
6340
Kailang Yang526af6e2012-03-07 08:25:20 +01006341 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
Takashi Iwai546bb672012-03-07 08:37:19 +01006342 return;
Kailang Yang526af6e2012-03-07 08:25:20 +01006343
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006344 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006345 alc_write_coef_idx(codec, 0xf, 0x960b);
6346 alc_write_coef_idx(codec, 0xe, 0x8817);
6347 }
6348
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006349 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006350 alc_write_coef_idx(codec, 0xf, 0x960b);
6351 alc_write_coef_idx(codec, 0xe, 0x8814);
6352 }
6353
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006354 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006355 val = alc_read_coef_idx(codec, 0x04);
6356 /* Power up output pin */
6357 alc_write_coef_idx(codec, 0x04, val | (1<<11));
6358 }
6359
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006360 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006361 val = alc_read_coef_idx(codec, 0xd);
6362 if ((val & 0x0c00) >> 10 != 0x1) {
6363 /* Capless ramp up clock control */
6364 alc_write_coef_idx(codec, 0xd, val | (1<<10));
6365 }
6366 val = alc_read_coef_idx(codec, 0x17);
6367 if ((val & 0x01c0) >> 6 != 0x4) {
6368 /* Class D power on reset */
6369 alc_write_coef_idx(codec, 0x17, val | (1<<7));
6370 }
6371 }
6372
6373 val = alc_read_coef_idx(codec, 0xd); /* Class D */
6374 alc_write_coef_idx(codec, 0xd, val | (1<<14));
6375
6376 val = alc_read_coef_idx(codec, 0x4); /* HP */
6377 alc_write_coef_idx(codec, 0x4, val | (1<<11));
Takashi Iwai1d045db2011-07-07 18:23:21 +02006378}
6379
6380/*
6381 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006382static int patch_alc269(struct hda_codec *codec)
6383{
6384 struct alc_spec *spec;
Takashi Iwai3de95172012-05-07 18:03:15 +02006385 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006386
Takashi Iwai3de95172012-05-07 18:03:15 +02006387 err = alc_alloc_spec(codec, 0x0b);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006388 if (err < 0)
Takashi Iwai3de95172012-05-07 18:03:15 +02006389 return err;
6390
6391 spec = codec->spec;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006392
Herton Ronaldo Krzesinski9f720bb92012-09-27 10:38:14 -03006393 alc_pick_fixup(codec, alc269_fixup_models,
6394 alc269_fixup_tbl, alc269_fixups);
6395 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
6396
6397 alc_auto_parse_customize_define(codec);
6398
Kailang Yang065380f2013-01-10 10:25:48 +01006399 switch (codec->vendor_id) {
6400 case 0x10ec0269:
Takashi Iwai1d045db2011-07-07 18:23:21 +02006401 spec->codec_variant = ALC269_TYPE_ALC269VA;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006402 switch (alc_get_coef0(codec) & 0x00f0) {
6403 case 0x0010:
Takashi Iwai1d045db2011-07-07 18:23:21 +02006404 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006405 spec->cdefine.platform_type == 1)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02006406 err = alc_codec_rename(codec, "ALC271X");
Takashi Iwai1d045db2011-07-07 18:23:21 +02006407 spec->codec_variant = ALC269_TYPE_ALC269VB;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006408 break;
6409 case 0x0020:
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006410 if (codec->bus->pci->subsystem_vendor == 0x17aa &&
6411 codec->bus->pci->subsystem_device == 0x21f3)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02006412 err = alc_codec_rename(codec, "ALC3202");
Takashi Iwai1d045db2011-07-07 18:23:21 +02006413 spec->codec_variant = ALC269_TYPE_ALC269VC;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006414 break;
Kailang Yangadcc70b2012-05-25 08:08:38 +02006415 case 0x0030:
6416 spec->codec_variant = ALC269_TYPE_ALC269VD;
6417 break;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006418 default:
Takashi Iwai1d045db2011-07-07 18:23:21 +02006419 alc_fix_pll_init(codec, 0x20, 0x04, 15);
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006420 }
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006421 if (err < 0)
6422 goto error;
Takashi Iwai546bb672012-03-07 08:37:19 +01006423 spec->init_hook = alc269_fill_coef;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006424 alc269_fill_coef(codec);
Kailang Yang065380f2013-01-10 10:25:48 +01006425 break;
6426
6427 case 0x10ec0280:
6428 case 0x10ec0290:
6429 spec->codec_variant = ALC269_TYPE_ALC280;
6430 break;
6431 case 0x10ec0282:
6432 case 0x10ec0283:
6433 spec->codec_variant = ALC269_TYPE_ALC282;
6434 break;
6435 case 0x10ec0284:
6436 case 0x10ec0292:
6437 spec->codec_variant = ALC269_TYPE_ALC284;
6438 break;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006439 }
6440
Takashi Iwaia4297b52011-08-23 18:40:12 +02006441 /* automatic parse from the BIOS config */
6442 err = alc269_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006443 if (err < 0)
6444 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006445
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006446 if (!spec->no_analog && has_cdefine_beep(codec)) {
6447 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006448 if (err < 0)
6449 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006450 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006451 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02006452
Takashi Iwai1d045db2011-07-07 18:23:21 +02006453 codec->patch_ops = alc_patch_ops;
Takashi Iwai2a439522011-07-26 09:52:50 +02006454#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02006455 codec->patch_ops.resume = alc269_resume;
6456#endif
Takashi Iwai1d045db2011-07-07 18:23:21 +02006457 spec->shutup = alc269_shutup;
6458
Takashi Iwai589876e2012-02-20 15:47:55 +01006459 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6460
Takashi Iwai1d045db2011-07-07 18:23:21 +02006461 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006462
6463 error:
6464 alc_free(codec);
6465 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006466}
6467
6468/*
6469 * ALC861
6470 */
6471
Takashi Iwai1d045db2011-07-07 18:23:21 +02006472static int alc861_parse_auto_config(struct hda_codec *codec)
6473{
Takashi Iwai1d045db2011-07-07 18:23:21 +02006474 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006475 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
6476 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02006477}
6478
Takashi Iwai1d045db2011-07-07 18:23:21 +02006479/* Pin config fixes */
6480enum {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006481 ALC861_FIXUP_FSC_AMILO_PI1505,
6482 ALC861_FIXUP_AMP_VREF_0F,
6483 ALC861_FIXUP_NO_JACK_DETECT,
6484 ALC861_FIXUP_ASUS_A6RP,
Takashi Iwai1d045db2011-07-07 18:23:21 +02006485};
6486
Takashi Iwai31150f22012-01-30 10:54:08 +01006487/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
6488static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
6489 const struct alc_fixup *fix, int action)
6490{
6491 struct alc_spec *spec = codec->spec;
6492 unsigned int val;
6493
6494 if (action != ALC_FIXUP_ACT_INIT)
6495 return;
6496 val = snd_hda_codec_read(codec, 0x0f, 0,
6497 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
6498 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
6499 val |= AC_PINCTL_IN_EN;
6500 val |= AC_PINCTL_VREF_50;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02006501 snd_hda_set_pin_ctl(codec, 0x0f, val);
Takashi Iwai31150f22012-01-30 10:54:08 +01006502 spec->keep_vref_in_automute = 1;
6503}
6504
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006505/* suppress the jack-detection */
6506static void alc_fixup_no_jack_detect(struct hda_codec *codec,
6507 const struct alc_fixup *fix, int action)
6508{
6509 if (action == ALC_FIXUP_ACT_PRE_PROBE)
6510 codec->no_jack_detect = 1;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02006511}
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006512
Takashi Iwai1d045db2011-07-07 18:23:21 +02006513static const struct alc_fixup alc861_fixups[] = {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006514 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006515 .type = ALC_FIXUP_PINS,
6516 .v.pins = (const struct alc_pincfg[]) {
6517 { 0x0b, 0x0221101f }, /* HP */
6518 { 0x0f, 0x90170310 }, /* speaker */
6519 { }
6520 }
6521 },
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006522 [ALC861_FIXUP_AMP_VREF_0F] = {
Takashi Iwai31150f22012-01-30 10:54:08 +01006523 .type = ALC_FIXUP_FUNC,
6524 .v.func = alc861_fixup_asus_amp_vref_0f,
Takashi Iwai3b25eb62012-01-25 09:55:46 +01006525 },
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006526 [ALC861_FIXUP_NO_JACK_DETECT] = {
6527 .type = ALC_FIXUP_FUNC,
6528 .v.func = alc_fixup_no_jack_detect,
6529 },
6530 [ALC861_FIXUP_ASUS_A6RP] = {
6531 .type = ALC_FIXUP_FUNC,
6532 .v.func = alc861_fixup_asus_amp_vref_0f,
6533 .chained = true,
6534 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
6535 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02006536};
6537
6538static const struct snd_pci_quirk alc861_fixup_tbl[] = {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006539 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
6540 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
6541 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
6542 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
6543 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
6544 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006545 {}
6546};
6547
6548/*
6549 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006550static int patch_alc861(struct hda_codec *codec)
6551{
6552 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006553 int err;
6554
Takashi Iwai3de95172012-05-07 18:03:15 +02006555 err = alc_alloc_spec(codec, 0x15);
6556 if (err < 0)
6557 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006558
Takashi Iwai3de95172012-05-07 18:03:15 +02006559 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006560
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006561 alc_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
6562 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02006563
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006564 /* automatic parse from the BIOS config */
6565 err = alc861_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006566 if (err < 0)
6567 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006568
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006569 if (!spec->no_analog) {
6570 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006571 if (err < 0)
6572 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006573 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
6574 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02006575
Takashi Iwai1d045db2011-07-07 18:23:21 +02006576 codec->patch_ops = alc_patch_ops;
Takashi Iwai83012a72012-08-24 18:38:08 +02006577#ifdef CONFIG_PM
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006578 spec->power_hook = alc_power_eapd;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006579#endif
6580
Takashi Iwai589876e2012-02-20 15:47:55 +01006581 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6582
Takashi Iwai1d045db2011-07-07 18:23:21 +02006583 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006584
6585 error:
6586 alc_free(codec);
6587 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006588}
6589
6590/*
6591 * ALC861-VD support
6592 *
6593 * Based on ALC882
6594 *
6595 * In addition, an independent DAC
6596 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006597static int alc861vd_parse_auto_config(struct hda_codec *codec)
6598{
Takashi Iwai1d045db2011-07-07 18:23:21 +02006599 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006600 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
6601 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02006602}
6603
Takashi Iwai1d045db2011-07-07 18:23:21 +02006604enum {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006605 ALC660VD_FIX_ASUS_GPIO1,
6606 ALC861VD_FIX_DALLAS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02006607};
6608
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006609/* exclude VREF80 */
6610static void alc861vd_fixup_dallas(struct hda_codec *codec,
6611 const struct alc_fixup *fix, int action)
6612{
6613 if (action == ALC_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaib78562b2012-12-17 20:06:49 +01006614 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
6615 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006616 }
6617}
6618
Takashi Iwai1d045db2011-07-07 18:23:21 +02006619static const struct alc_fixup alc861vd_fixups[] = {
6620 [ALC660VD_FIX_ASUS_GPIO1] = {
6621 .type = ALC_FIXUP_VERBS,
6622 .v.verbs = (const struct hda_verb[]) {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006623 /* reset GPIO1 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006624 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
6625 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
6626 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
6627 { }
6628 }
6629 },
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006630 [ALC861VD_FIX_DALLAS] = {
6631 .type = ALC_FIXUP_FUNC,
6632 .v.func = alc861vd_fixup_dallas,
6633 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02006634};
6635
6636static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006637 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006638 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006639 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006640 {}
6641};
6642
Takashi Iwai1d045db2011-07-07 18:23:21 +02006643/*
6644 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006645static int patch_alc861vd(struct hda_codec *codec)
6646{
6647 struct alc_spec *spec;
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006648 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006649
Takashi Iwai3de95172012-05-07 18:03:15 +02006650 err = alc_alloc_spec(codec, 0x0b);
6651 if (err < 0)
6652 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006653
Takashi Iwai3de95172012-05-07 18:03:15 +02006654 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006655
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006656 alc_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
6657 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02006658
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006659 /* automatic parse from the BIOS config */
6660 err = alc861vd_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006661 if (err < 0)
6662 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006663
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006664 if (!spec->no_analog) {
6665 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006666 if (err < 0)
6667 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006668 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
6669 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02006670
Takashi Iwai1d045db2011-07-07 18:23:21 +02006671 codec->patch_ops = alc_patch_ops;
6672
Takashi Iwai1d045db2011-07-07 18:23:21 +02006673 spec->shutup = alc_eapd_shutup;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006674
Takashi Iwai589876e2012-02-20 15:47:55 +01006675 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6676
Takashi Iwai1d045db2011-07-07 18:23:21 +02006677 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006678
6679 error:
6680 alc_free(codec);
6681 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006682}
6683
6684/*
6685 * ALC662 support
6686 *
6687 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
6688 * configuration. Each pin widget can choose any input DACs and a mixer.
6689 * Each ADC is connected from a mixer of all inputs. This makes possible
6690 * 6-channel independent captures.
6691 *
6692 * In addition, an independent DAC for the multi-playback (not used in this
6693 * driver yet).
6694 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006695
6696/*
6697 * BIOS auto configuration
6698 */
6699
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006700static int alc662_parse_auto_config(struct hda_codec *codec)
6701{
Takashi Iwai4c6d72d2011-05-02 11:30:18 +02006702 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006703 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
6704 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
6705 const hda_nid_t *ssids;
Takashi Iwaiee979a142008-09-02 15:42:20 +02006706
Kailang Yang6227cdc2010-02-25 08:36:52 +01006707 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
6708 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006709 ssids = alc663_ssids;
Kailang Yang6227cdc2010-02-25 08:36:52 +01006710 else
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006711 ssids = alc662_ssids;
6712 return alc_parse_auto_config(codec, alc662_ignore, ssids);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006713}
6714
Todd Broch6be79482010-12-07 16:51:05 -08006715static void alc272_fixup_mario(struct hda_codec *codec,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006716 const struct alc_fixup *fix, int action)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01006717{
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006718 if (action != ALC_FIXUP_ACT_PROBE)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01006719 return;
Todd Broch6be79482010-12-07 16:51:05 -08006720 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
6721 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
6722 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
6723 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
6724 (0 << AC_AMPCAP_MUTE_SHIFT)))
6725 printk(KERN_WARNING
6726 "hda_codec: failed to override amp caps for NID 0x2\n");
6727}
6728
David Henningsson6cb3b702010-09-09 08:51:44 +02006729enum {
Daniel T Chen2df03512010-10-10 22:39:28 -04006730 ALC662_FIXUP_ASPIRE,
David Henningsson6cb3b702010-09-09 08:51:44 +02006731 ALC662_FIXUP_IDEAPAD,
Todd Broch6be79482010-12-07 16:51:05 -08006732 ALC272_FIXUP_MARIO,
Anisse Astierd2ebd472011-01-20 12:36:21 +01006733 ALC662_FIXUP_CZC_P10T,
David Henningsson94024cd2011-04-29 14:10:55 +02006734 ALC662_FIXUP_SKU_IGNORE,
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02006735 ALC662_FIXUP_HP_RP5800,
Takashi Iwai53c334a2011-08-23 18:27:14 +02006736 ALC662_FIXUP_ASUS_MODE1,
6737 ALC662_FIXUP_ASUS_MODE2,
6738 ALC662_FIXUP_ASUS_MODE3,
6739 ALC662_FIXUP_ASUS_MODE4,
6740 ALC662_FIXUP_ASUS_MODE5,
6741 ALC662_FIXUP_ASUS_MODE6,
6742 ALC662_FIXUP_ASUS_MODE7,
6743 ALC662_FIXUP_ASUS_MODE8,
Takashi Iwai1565cc32012-02-13 12:03:25 +01006744 ALC662_FIXUP_NO_JACK_DETECT,
David Henningssonedfe3bf2012-06-12 13:15:12 +02006745 ALC662_FIXUP_ZOTAC_Z68,
Takashi Iwai125821a2012-06-22 14:30:29 +02006746 ALC662_FIXUP_INV_DMIC,
David Henningsson6cb3b702010-09-09 08:51:44 +02006747};
6748
6749static const struct alc_fixup alc662_fixups[] = {
Daniel T Chen2df03512010-10-10 22:39:28 -04006750 [ALC662_FIXUP_ASPIRE] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006751 .type = ALC_FIXUP_PINS,
6752 .v.pins = (const struct alc_pincfg[]) {
Daniel T Chen2df03512010-10-10 22:39:28 -04006753 { 0x15, 0x99130112 }, /* subwoofer */
6754 { }
6755 }
6756 },
David Henningsson6cb3b702010-09-09 08:51:44 +02006757 [ALC662_FIXUP_IDEAPAD] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006758 .type = ALC_FIXUP_PINS,
6759 .v.pins = (const struct alc_pincfg[]) {
David Henningsson6cb3b702010-09-09 08:51:44 +02006760 { 0x17, 0x99130112 }, /* subwoofer */
6761 { }
6762 }
6763 },
Todd Broch6be79482010-12-07 16:51:05 -08006764 [ALC272_FIXUP_MARIO] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006765 .type = ALC_FIXUP_FUNC,
6766 .v.func = alc272_fixup_mario,
Anisse Astierd2ebd472011-01-20 12:36:21 +01006767 },
6768 [ALC662_FIXUP_CZC_P10T] = {
6769 .type = ALC_FIXUP_VERBS,
6770 .v.verbs = (const struct hda_verb[]) {
6771 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
6772 {}
6773 }
6774 },
David Henningsson94024cd2011-04-29 14:10:55 +02006775 [ALC662_FIXUP_SKU_IGNORE] = {
Takashi Iwai23d30f22012-05-07 17:17:32 +02006776 .type = ALC_FIXUP_FUNC,
6777 .v.func = alc_fixup_sku_ignore,
Takashi Iwaic6b35872011-03-28 12:05:31 +02006778 },
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02006779 [ALC662_FIXUP_HP_RP5800] = {
6780 .type = ALC_FIXUP_PINS,
6781 .v.pins = (const struct alc_pincfg[]) {
6782 { 0x14, 0x0221201f }, /* HP out */
6783 { }
6784 },
6785 .chained = true,
6786 .chain_id = ALC662_FIXUP_SKU_IGNORE
6787 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02006788 [ALC662_FIXUP_ASUS_MODE1] = {
6789 .type = ALC_FIXUP_PINS,
6790 .v.pins = (const struct alc_pincfg[]) {
6791 { 0x14, 0x99130110 }, /* speaker */
6792 { 0x18, 0x01a19c20 }, /* mic */
6793 { 0x19, 0x99a3092f }, /* int-mic */
6794 { 0x21, 0x0121401f }, /* HP out */
6795 { }
6796 },
6797 .chained = true,
6798 .chain_id = ALC662_FIXUP_SKU_IGNORE
6799 },
6800 [ALC662_FIXUP_ASUS_MODE2] = {
Takashi Iwai2996bdb2011-08-18 16:02:24 +02006801 .type = ALC_FIXUP_PINS,
6802 .v.pins = (const struct alc_pincfg[]) {
6803 { 0x14, 0x99130110 }, /* speaker */
6804 { 0x18, 0x01a19820 }, /* mic */
6805 { 0x19, 0x99a3092f }, /* int-mic */
6806 { 0x1b, 0x0121401f }, /* HP out */
6807 { }
6808 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02006809 .chained = true,
6810 .chain_id = ALC662_FIXUP_SKU_IGNORE
6811 },
6812 [ALC662_FIXUP_ASUS_MODE3] = {
6813 .type = ALC_FIXUP_PINS,
6814 .v.pins = (const struct alc_pincfg[]) {
6815 { 0x14, 0x99130110 }, /* speaker */
6816 { 0x15, 0x0121441f }, /* HP */
6817 { 0x18, 0x01a19840 }, /* mic */
6818 { 0x19, 0x99a3094f }, /* int-mic */
6819 { 0x21, 0x01211420 }, /* HP2 */
6820 { }
6821 },
6822 .chained = true,
6823 .chain_id = ALC662_FIXUP_SKU_IGNORE
6824 },
6825 [ALC662_FIXUP_ASUS_MODE4] = {
6826 .type = ALC_FIXUP_PINS,
6827 .v.pins = (const struct alc_pincfg[]) {
6828 { 0x14, 0x99130110 }, /* speaker */
6829 { 0x16, 0x99130111 }, /* speaker */
6830 { 0x18, 0x01a19840 }, /* mic */
6831 { 0x19, 0x99a3094f }, /* int-mic */
6832 { 0x21, 0x0121441f }, /* HP */
6833 { }
6834 },
6835 .chained = true,
6836 .chain_id = ALC662_FIXUP_SKU_IGNORE
6837 },
6838 [ALC662_FIXUP_ASUS_MODE5] = {
6839 .type = ALC_FIXUP_PINS,
6840 .v.pins = (const struct alc_pincfg[]) {
6841 { 0x14, 0x99130110 }, /* speaker */
6842 { 0x15, 0x0121441f }, /* HP */
6843 { 0x16, 0x99130111 }, /* speaker */
6844 { 0x18, 0x01a19840 }, /* mic */
6845 { 0x19, 0x99a3094f }, /* int-mic */
6846 { }
6847 },
6848 .chained = true,
6849 .chain_id = ALC662_FIXUP_SKU_IGNORE
6850 },
6851 [ALC662_FIXUP_ASUS_MODE6] = {
6852 .type = ALC_FIXUP_PINS,
6853 .v.pins = (const struct alc_pincfg[]) {
6854 { 0x14, 0x99130110 }, /* speaker */
6855 { 0x15, 0x01211420 }, /* HP2 */
6856 { 0x18, 0x01a19840 }, /* mic */
6857 { 0x19, 0x99a3094f }, /* int-mic */
6858 { 0x1b, 0x0121441f }, /* HP */
6859 { }
6860 },
6861 .chained = true,
6862 .chain_id = ALC662_FIXUP_SKU_IGNORE
6863 },
6864 [ALC662_FIXUP_ASUS_MODE7] = {
6865 .type = ALC_FIXUP_PINS,
6866 .v.pins = (const struct alc_pincfg[]) {
6867 { 0x14, 0x99130110 }, /* speaker */
6868 { 0x17, 0x99130111 }, /* speaker */
6869 { 0x18, 0x01a19840 }, /* mic */
6870 { 0x19, 0x99a3094f }, /* int-mic */
6871 { 0x1b, 0x01214020 }, /* HP */
6872 { 0x21, 0x0121401f }, /* HP */
6873 { }
6874 },
6875 .chained = true,
6876 .chain_id = ALC662_FIXUP_SKU_IGNORE
6877 },
6878 [ALC662_FIXUP_ASUS_MODE8] = {
6879 .type = ALC_FIXUP_PINS,
6880 .v.pins = (const struct alc_pincfg[]) {
6881 { 0x14, 0x99130110 }, /* speaker */
6882 { 0x12, 0x99a30970 }, /* int-mic */
6883 { 0x15, 0x01214020 }, /* HP */
6884 { 0x17, 0x99130111 }, /* speaker */
6885 { 0x18, 0x01a19840 }, /* mic */
6886 { 0x21, 0x0121401f }, /* HP */
6887 { }
6888 },
6889 .chained = true,
6890 .chain_id = ALC662_FIXUP_SKU_IGNORE
Takashi Iwai2996bdb2011-08-18 16:02:24 +02006891 },
Takashi Iwai1565cc32012-02-13 12:03:25 +01006892 [ALC662_FIXUP_NO_JACK_DETECT] = {
6893 .type = ALC_FIXUP_FUNC,
6894 .v.func = alc_fixup_no_jack_detect,
6895 },
David Henningssonedfe3bf2012-06-12 13:15:12 +02006896 [ALC662_FIXUP_ZOTAC_Z68] = {
6897 .type = ALC_FIXUP_PINS,
6898 .v.pins = (const struct alc_pincfg[]) {
6899 { 0x1b, 0x02214020 }, /* Front HP */
6900 { }
6901 }
6902 },
Takashi Iwai125821a2012-06-22 14:30:29 +02006903 [ALC662_FIXUP_INV_DMIC] = {
6904 .type = ALC_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02006905 .v.func = alc_fixup_inv_dmic_0x12,
Takashi Iwai125821a2012-06-22 14:30:29 +02006906 },
David Henningsson6cb3b702010-09-09 08:51:44 +02006907};
6908
Takashi Iwaia9111322011-05-02 11:30:18 +02006909static const struct snd_pci_quirk alc662_fixup_tbl[] = {
Takashi Iwai53c334a2011-08-23 18:27:14 +02006910 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
David Henningssona6c47a82011-02-10 15:39:19 +01006911 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
David Henningsson94024cd2011-04-29 14:10:55 +02006912 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
Takashi Iwai125821a2012-06-22 14:30:29 +02006913 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
Daniel T Chen2df03512010-10-10 22:39:28 -04006914 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02006915 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
Takashi Iwai1565cc32012-02-13 12:03:25 +01006916 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
Takashi Iwai53c334a2011-08-23 18:27:14 +02006917 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
Daniel T Chena0e90ac2010-11-20 10:20:35 -05006918 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
Valentine Sinitsynd4118582010-10-01 22:24:08 +06006919 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
David Henningsson6cb3b702010-09-09 08:51:44 +02006920 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
David Henningssonedfe3bf2012-06-12 13:15:12 +02006921 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
Anisse Astierd2ebd472011-01-20 12:36:21 +01006922 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
Takashi Iwai53c334a2011-08-23 18:27:14 +02006923
6924#if 0
6925 /* Below is a quirk table taken from the old code.
6926 * Basically the device should work as is without the fixup table.
6927 * If BIOS doesn't give a proper info, enable the corresponding
6928 * fixup entry.
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02006929 */
Takashi Iwai53c334a2011-08-23 18:27:14 +02006930 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
6931 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
6932 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
6933 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
6934 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6935 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6936 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6937 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
6938 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
6939 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6940 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
6941 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
6942 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
6943 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
6944 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
6945 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6946 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
6947 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
6948 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6949 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6950 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6951 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6952 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
6953 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
6954 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
6955 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6956 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
6957 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6958 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6959 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
6960 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6961 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6962 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
6963 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
6964 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
6965 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
6966 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
6967 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
6968 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
6969 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6970 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
6971 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
6972 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6973 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
6974 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
6975 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
6976 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
6977 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
6978 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6979 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
6980#endif
David Henningsson6cb3b702010-09-09 08:51:44 +02006981 {}
6982};
6983
Todd Broch6be79482010-12-07 16:51:05 -08006984static const struct alc_model_fixup alc662_fixup_models[] = {
6985 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
Takashi Iwai53c334a2011-08-23 18:27:14 +02006986 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
6987 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
6988 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
6989 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
6990 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
6991 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
6992 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
6993 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02006994 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
Todd Broch6be79482010-12-07 16:51:05 -08006995 {}
6996};
David Henningsson6cb3b702010-09-09 08:51:44 +02006997
Kailang Yang8663ff72012-06-29 09:35:52 +02006998static void alc662_fill_coef(struct hda_codec *codec)
6999{
7000 int val, coef;
7001
7002 coef = alc_get_coef0(codec);
7003
7004 switch (codec->vendor_id) {
7005 case 0x10ec0662:
7006 if ((coef & 0x00f0) == 0x0030) {
7007 val = alc_read_coef_idx(codec, 0x4); /* EAPD Ctrl */
7008 alc_write_coef_idx(codec, 0x4, val & ~(1<<10));
7009 }
7010 break;
7011 case 0x10ec0272:
7012 case 0x10ec0273:
7013 case 0x10ec0663:
7014 case 0x10ec0665:
7015 case 0x10ec0670:
7016 case 0x10ec0671:
7017 case 0x10ec0672:
7018 val = alc_read_coef_idx(codec, 0xd); /* EAPD Ctrl */
7019 alc_write_coef_idx(codec, 0xd, val | (1<<14));
7020 break;
7021 }
7022}
David Henningsson6cb3b702010-09-09 08:51:44 +02007023
Takashi Iwai1d045db2011-07-07 18:23:21 +02007024/*
7025 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007026static int patch_alc662(struct hda_codec *codec)
7027{
7028 struct alc_spec *spec;
Takashi Iwai3de95172012-05-07 18:03:15 +02007029 int err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007030
Takashi Iwai3de95172012-05-07 18:03:15 +02007031 err = alc_alloc_spec(codec, 0x0b);
7032 if (err < 0)
7033 return err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007034
Takashi Iwai3de95172012-05-07 18:03:15 +02007035 spec = codec->spec;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02007036
Takashi Iwai53c334a2011-08-23 18:27:14 +02007037 /* handle multiple HPs as is */
7038 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
7039
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02007040 alc_fix_pll_init(codec, 0x20, 0x04, 15);
7041
Kailang Yang8663ff72012-06-29 09:35:52 +02007042 spec->init_hook = alc662_fill_coef;
7043 alc662_fill_coef(codec);
7044
Takashi Iwai8e5a0502012-06-21 15:49:33 +02007045 alc_pick_fixup(codec, alc662_fixup_models,
7046 alc662_fixup_tbl, alc662_fixups);
7047 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
7048
7049 alc_auto_parse_customize_define(codec);
7050
Takashi Iwai1bb7e432011-10-17 16:50:59 +02007051 if ((alc_get_coef0(codec) & (1 << 14)) &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007052 codec->bus->pci->subsystem_vendor == 0x1025 &&
7053 spec->cdefine.platform_type == 1) {
7054 if (alc_codec_rename(codec, "ALC272X") < 0)
7055 goto error;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02007056 }
Kailang Yang274693f2009-12-03 10:07:50 +01007057
Takashi Iwaib9c51062011-08-24 18:08:07 +02007058 /* automatic parse from the BIOS config */
7059 err = alc662_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007060 if (err < 0)
7061 goto error;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007062
Takashi Iwai3e6179b2011-07-08 16:55:13 +02007063 if (!spec->no_analog && has_cdefine_beep(codec)) {
7064 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007065 if (err < 0)
7066 goto error;
Kailang Yangda00c242010-03-19 11:23:45 +01007067 switch (codec->vendor_id) {
7068 case 0x10ec0662:
7069 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
7070 break;
7071 case 0x10ec0272:
7072 case 0x10ec0663:
7073 case 0x10ec0665:
7074 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
7075 break;
7076 case 0x10ec0273:
7077 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
7078 break;
7079 }
Kailang Yangcec27c82010-02-04 14:18:18 +01007080 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01007081
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007082 codec->patch_ops = alc_patch_ops;
Takashi Iwai1c7161532011-04-07 10:37:16 +02007083 spec->shutup = alc_eapd_shutup;
David Henningsson6cb3b702010-09-09 08:51:44 +02007084
Takashi Iwai589876e2012-02-20 15:47:55 +01007085 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
7086
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007087 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007088
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007089 error:
7090 alc_free(codec);
7091 return err;
Kailang Yangb478b992011-05-18 11:51:15 +02007092}
7093
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007094/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007095 * ALC680 support
7096 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007097
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007098static int alc680_parse_auto_config(struct hda_codec *codec)
7099{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02007100 return alc_parse_auto_config(codec, NULL, NULL);
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007101}
7102
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007103/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007104 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007105static int patch_alc680(struct hda_codec *codec)
7106{
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007107 int err;
7108
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02007109 /* ALC680 has no aa-loopback mixer */
Takashi Iwai3de95172012-05-07 18:03:15 +02007110 err = alc_alloc_spec(codec, 0);
7111 if (err < 0)
7112 return err;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02007113
Takashi Iwai1ebec5f2011-08-15 13:21:48 +02007114 /* automatic parse from the BIOS config */
7115 err = alc680_parse_auto_config(codec);
7116 if (err < 0) {
7117 alc_free(codec);
7118 return err;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007119 }
7120
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007121 codec->patch_ops = alc_patch_ops;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007122
7123 return 0;
7124}
7125
7126/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127 * patch entries
7128 */
Takashi Iwaia9111322011-05-02 11:30:18 +02007129static const struct hda_codec_preset snd_hda_preset_realtek[] = {
Kailang Yang296f0332011-05-18 11:52:36 +02007130 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07007131 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
Kailang Yangdf694da2005-12-05 19:42:22 +01007132 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
Kailang Yangf6a92242007-12-13 16:52:54 +01007133 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
Kailang Yanga361d842007-06-05 12:30:55 +02007134 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
Kailang Yangf6a92242007-12-13 16:52:54 +01007135 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01007136 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
Kailang Yang01afd412008-10-15 11:22:09 +02007137 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01007138 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
Kailang Yang296f0332011-05-18 11:52:36 +02007139 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
David Henningssonbefae822012-06-25 19:49:28 +02007140 { .id = 0x10ec0280, .name = "ALC280", .patch = patch_alc269 },
David Henningsson4e01ec62012-07-18 07:38:46 +02007141 { .id = 0x10ec0282, .name = "ALC282", .patch = patch_alc269 },
Kailang Yang7ff34ad2012-10-06 17:02:30 +02007142 { .id = 0x10ec0283, .name = "ALC283", .patch = patch_alc269 },
Kailang Yang065380f2013-01-10 10:25:48 +01007143 { .id = 0x10ec0284, .name = "ALC284", .patch = patch_alc269 },
Kailang Yang7ff34ad2012-10-06 17:02:30 +02007144 { .id = 0x10ec0290, .name = "ALC290", .patch = patch_alc269 },
David Henningssonaf02dde2012-11-21 08:57:58 +01007145 { .id = 0x10ec0292, .name = "ALC292", .patch = patch_alc269 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01007146 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007147 .patch = patch_alc861 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01007148 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
7149 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
7150 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007151 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
Takashi Iwai4953550a2009-06-30 15:28:30 +02007152 .patch = patch_alc882 },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007153 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
7154 .patch = patch_alc662 },
David Henningssoncc667a72011-10-18 14:07:51 +02007155 { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
7156 .patch = patch_alc662 },
Kailang Yang6dda9f42008-05-27 12:05:31 +02007157 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
Kailang Yangcec27c82010-02-04 14:18:18 +01007158 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
Kailang Yang19a62822012-11-08 10:25:37 +01007159 { .id = 0x10ec0668, .name = "ALC668", .patch = patch_alc662 },
Kailang Yang6227cdc2010-02-25 08:36:52 +01007160 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007161 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01007162 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07007163 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02007164 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
Clive Messer669faba2008-09-30 15:49:13 +02007165 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02007166 .patch = patch_alc882 },
Takashi Iwaicb308f92008-04-16 14:13:29 +02007167 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02007168 .patch = patch_alc882 },
Kailang Yangdf694da2005-12-05 19:42:22 +01007169 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007170 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
Kailang Yang44426082008-10-15 11:18:05 +02007171 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
Takashi Iwai4953550a2009-06-30 15:28:30 +02007172 .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007173 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02007174 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
Kailang Yang274693f2009-12-03 10:07:50 +01007175 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007176 { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
Kailang Yang19a62822012-11-08 10:25:37 +01007177 { .id = 0x10ec0900, .name = "ALC1150", .patch = patch_alc882 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07007178 {} /* terminator */
7179};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01007180
7181MODULE_ALIAS("snd-hda-codec-id:10ec*");
7182
7183MODULE_LICENSE("GPL");
7184MODULE_DESCRIPTION("Realtek HD-audio codec");
7185
7186static struct hda_codec_preset_list realtek_list = {
7187 .preset = snd_hda_preset_realtek,
7188 .owner = THIS_MODULE,
7189};
7190
7191static int __init patch_realtek_init(void)
7192{
7193 return snd_hda_add_codec_preset(&realtek_list);
7194}
7195
7196static void __exit patch_realtek_exit(void)
7197{
7198 snd_hda_delete_codec_preset(&realtek_list);
7199}
7200
7201module_init(patch_realtek_init)
7202module_exit(patch_realtek_exit)