blob: 1f178d6da9d4d54060642d39db620dfb05202b24 [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
Takashi Iwai30dcd3b2012-12-06 15:45:38 +0100102#define MAX_NID_PATH_DEPTH 5
103
104/* output-path: DAC -> ... -> pin
105 * idx[] contains the source index number of the next widget;
106 * e.g. idx[0] is the index of the DAC selected by path[1] widget
107 * multi[] indicates whether it's a selector widget with multi-connectors
108 * (i.e. the connection selection is mandatory)
109 * vol_ctl and mute_ctl contains the NIDs for the assigned mixers
110 */
111struct nid_path {
112 int depth;
113 hda_nid_t path[MAX_NID_PATH_DEPTH];
114 unsigned char idx[MAX_NID_PATH_DEPTH];
115 unsigned char multi[MAX_NID_PATH_DEPTH];
116 unsigned int ctls[2]; /* 0 = volume, 1 = mute */
117};
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119struct alc_spec {
Takashi Iwai23d30f22012-05-07 17:17:32 +0200120 struct hda_gen_spec gen;
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 /* codec parameterization */
Takashi Iwaia9111322011-05-02 11:30:18 +0200123 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 unsigned int num_mixers;
Takashi Iwaia9111322011-05-02 11:30:18 +0200125 const struct snd_kcontrol_new *cap_mixer; /* capture mixer */
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100126 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Takashi Iwaiaa563af2009-07-31 10:05:11 +0200128 char stream_name_analog[32]; /* analog PCM stream */
Takashi Iwaia9111322011-05-02 11:30:18 +0200129 const struct hda_pcm_stream *stream_analog_playback;
130 const struct hda_pcm_stream *stream_analog_capture;
131 const struct hda_pcm_stream *stream_analog_alt_playback;
132 const struct hda_pcm_stream *stream_analog_alt_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Takashi Iwaiaa563af2009-07-31 10:05:11 +0200134 char stream_name_digital[32]; /* digital PCM stream */
Takashi Iwaia9111322011-05-02 11:30:18 +0200135 const struct hda_pcm_stream *stream_digital_playback;
136 const struct hda_pcm_stream *stream_digital_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 /* playback */
Takashi Iwai16ded522005-06-10 19:58:24 +0200139 struct hda_multi_out multiout; /* playback set-up
140 * max_channels, dacs must be set
141 * dig_out_nid and hp_nid are optional
142 */
Takashi Iwai63300792008-01-24 15:31:36 +0100143 hda_nid_t alt_dac_nid;
Takashi Iwai6a05ac42009-02-13 11:19:09 +0100144 hda_nid_t slave_dig_outs[3]; /* optional - for auto-parsing */
Takashi Iwai8c441982009-01-20 18:30:20 +0100145 int dig_out_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 /* capture */
148 unsigned int num_adc_nids;
Takashi Iwai4c6d72d2011-05-02 11:30:18 +0200149 const hda_nid_t *adc_nids;
150 const hda_nid_t *capsrc_nids;
Takashi Iwai16ded522005-06-10 19:58:24 +0200151 hda_nid_t dig_in_nid; /* digital-in NID; optional */
Takashi Iwai1f0f4b82011-06-27 10:52:59 +0200152 hda_nid_t mixer_nid; /* analog-mixer NID */
Takashi Iwaic14c95f2012-02-16 16:38:07 +0100153 DECLARE_BITMAP(vol_ctls, MAX_VOL_NIDS << 1);
154 DECLARE_BITMAP(sw_ctls, MAX_VOL_NIDS << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Takashi Iwai840b64c2010-07-13 22:49:01 +0200156 /* capture setup for dynamic dual-adc switch */
Takashi Iwai840b64c2010-07-13 22:49:01 +0200157 hda_nid_t cur_adc;
158 unsigned int cur_adc_stream_tag;
159 unsigned int cur_adc_format;
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 /* capture source */
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200162 unsigned int num_mux_defs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 const struct hda_input_mux *input_mux;
164 unsigned int cur_mux[3];
Takashi Iwai21268962011-07-07 15:01:13 +0200165 hda_nid_t ext_mic_pin;
166 hda_nid_t dock_mic_pin;
167 hda_nid_t int_mic_pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 /* channel model */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100170 const struct hda_channel_mode *channel_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 int num_channel_mode;
Takashi Iwai4e195a72006-07-28 14:47:34 +0200172 int need_dac_fix;
Takashi Iwaib6adb572012-12-03 10:30:58 +0100173 int const_channel_count; /* min. channel count (for speakers) */
174 int ext_channel_count; /* current channel count for multi-io */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 /* PCM information */
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100177 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
Takashi Iwai41e41f12005-06-08 14:48:49 +0200178
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200179 /* dynamic controls, init_verbs and input_mux */
180 struct auto_pin_cfg autocfg;
Kailang Yangda00c242010-03-19 11:23:45 +0100181 struct alc_customize_define cdefine;
Takashi Iwai603c4012008-07-30 15:01:44 +0200182 struct snd_array kctls;
Herton Ronaldo Krzesinski61b9b9b2009-01-28 09:16:33 -0200183 struct hda_input_mux private_imux[3];
Takashi Iwai41923e42007-10-22 17:20:10 +0200184 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwai4953550a2009-06-30 15:28:30 +0200185 hda_nid_t private_adc_nids[AUTO_CFG_MAX_OUTS];
186 hda_nid_t private_capsrc_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwai21268962011-07-07 15:01:13 +0200187 hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS];
188 unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS];
189 int int_mic_idx, ext_mic_idx, dock_mic_idx; /* for auto-mic */
Takashi Iwai125821a2012-06-22 14:30:29 +0200190 hda_nid_t inv_dmic_pin;
Takashi Iwai834be882006-03-01 14:16:17 +0100191
Takashi Iwai463419d2012-12-05 14:17:37 +0100192 /* DAC list */
193 int num_all_dacs;
194 hda_nid_t all_dacs[16];
195
Takashi Iwai30dcd3b2012-12-06 15:45:38 +0100196 /* output paths */
197 struct snd_array out_path;
198
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100199 /* hooks */
200 void (*init_hook)(struct hda_codec *codec);
Takashi Iwai83012a72012-08-24 18:38:08 +0200201#ifdef CONFIG_PM
Daniel T Chenc97259d2009-12-27 18:52:08 -0500202 void (*power_hook)(struct hda_codec *codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100203#endif
Takashi Iwai1c7161532011-04-07 10:37:16 +0200204 void (*shutup)(struct hda_codec *codec);
Takashi Iwai24519912011-08-16 15:08:49 +0200205 void (*automute_hook)(struct hda_codec *codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100206
Takashi Iwai834be882006-03-01 14:16:17 +0100207 /* for pin sensing */
David Henningsson42cf0d02011-09-20 12:04:56 +0200208 unsigned int hp_jack_present:1;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200209 unsigned int line_jack_present:1;
Takashi Iwaie9427962011-04-28 15:46:07 +0200210 unsigned int master_mute:1;
Takashi Iwai6c819492009-08-10 18:47:44 +0200211 unsigned int auto_mic:1;
Takashi Iwai21268962011-07-07 15:01:13 +0200212 unsigned int auto_mic_valid_imux:1; /* valid imux for auto-mic */
David Henningsson42cf0d02011-09-20 12:04:56 +0200213 unsigned int automute_speaker:1; /* automute speaker outputs */
214 unsigned int automute_lo:1; /* automute LO outputs */
215 unsigned int detect_hp:1; /* Headphone detection enabled */
216 unsigned int detect_lo:1; /* Line-out detection enabled */
217 unsigned int automute_speaker_possible:1; /* there are speakers and either LO or HP */
218 unsigned int automute_lo_possible:1; /* there are line outs and HP */
Takashi Iwai31150f22012-01-30 10:54:08 +0100219 unsigned int keep_vref_in_automute:1; /* Don't clear VREF in automute */
Takashi Iwaicb53c622007-08-10 17:21:45 +0200220
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100221 /* other flags */
222 unsigned int no_analog :1; /* digital I/O only */
Takashi Iwai21268962011-07-07 15:01:13 +0200223 unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */
Takashi Iwai584c0c42011-03-10 12:51:11 +0100224 unsigned int single_input_src:1;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +0200225 unsigned int vol_in_capsrc:1; /* use capsrc volume (ADC has no vol) */
Takashi Iwai53c334a2011-08-23 18:27:14 +0200226 unsigned int parse_flags; /* passed to snd_hda_parse_pin_defcfg() */
Takashi Iwai24de1832011-11-07 17:13:39 +0100227 unsigned int shared_mic_hp:1; /* HP/Mic-in sharing */
Takashi Iwai125821a2012-06-22 14:30:29 +0200228 unsigned int inv_dmic_fixup:1; /* has inverted digital-mic workaround */
229 unsigned int inv_dmic_muted:1; /* R-ch of inv d-mic is muted? */
Takashi Iwaie427c232012-07-29 10:04:08 +0200230 unsigned int no_primary_hp:1; /* Don't prefer HP pins to speaker pins */
Takashi Iwaid922b512011-04-28 12:18:53 +0200231
232 /* auto-mute control */
233 int automute_mode;
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200234 hda_nid_t automute_mixer_nid[AUTO_CFG_MAX_OUTS];
Takashi Iwaid922b512011-04-28 12:18:53 +0200235
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200236 int init_amp;
Takashi Iwaid433a672010-09-20 15:11:54 +0200237 int codec_variant; /* flag for other variants */
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100238
Takashi Iwai2134ea42008-01-10 16:53:55 +0100239 /* for virtual master */
240 hda_nid_t vmaster_nid;
Takashi Iwaid2f344b2012-03-12 16:59:58 +0100241 struct hda_vmaster_mute_hook vmaster_mute;
Takashi Iwai83012a72012-08-24 18:38:08 +0200242#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +0200243 struct hda_loopback_check loopback;
Takashi Iwai164f73e2012-02-21 11:27:09 +0100244 int num_loopbacks;
245 struct hda_amp_list loopback_list[8];
Takashi Iwaicb53c622007-08-10 17:21:45 +0200246#endif
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200247
248 /* for PLL fix */
249 hda_nid_t pll_nid;
250 unsigned int pll_coef_idx, pll_coef_bit;
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200251 unsigned int coef0;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +0100252
Takashi Iwaice764ab2011-04-27 16:35:23 +0200253 /* multi-io */
254 int multi_ios;
255 struct alc_multi_io multi_io[4];
Takashi Iwai23c09b02011-08-19 09:05:35 +0200256
257 /* bind volumes */
258 struct snd_array bind_ctls;
Kailang Yangdf694da2005-12-05 19:42:22 +0100259};
260
Takashi Iwai44c02402011-07-08 15:14:19 +0200261static bool check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
262 int dir, unsigned int bits)
263{
264 if (!nid)
265 return false;
266 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
267 if (query_amp_caps(codec, nid, dir) & bits)
268 return true;
269 return false;
270}
271
272#define nid_has_mute(codec, nid, dir) \
273 check_amp_caps(codec, nid, dir, AC_AMPCAP_MUTE)
274#define nid_has_volume(codec, nid, dir) \
275 check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS)
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277/*
278 * input MUX handling
279 */
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200280static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
281 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
284 struct alc_spec *spec = codec->spec;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200285 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
286 if (mux_idx >= spec->num_mux_defs)
287 mux_idx = 0;
Takashi Iwai53111142010-03-08 12:13:07 +0100288 if (!spec->input_mux[mux_idx].num_items && mux_idx > 0)
289 mux_idx = 0;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200290 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200293static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
294 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
297 struct alc_spec *spec = codec->spec;
298 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
299
300 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
301 return 0;
302}
303
Takashi Iwai21268962011-07-07 15:01:13 +0200304static bool alc_dyn_adc_pcm_resetup(struct hda_codec *codec, int cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Takashi Iwai21268962011-07-07 15:01:13 +0200306 struct alc_spec *spec = codec->spec;
307 hda_nid_t new_adc = spec->adc_nids[spec->dyn_adc_idx[cur]];
308
309 if (spec->cur_adc && spec->cur_adc != new_adc) {
310 /* stream is running, let's swap the current ADC */
311 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
312 spec->cur_adc = new_adc;
313 snd_hda_codec_setup_stream(codec, new_adc,
314 spec->cur_adc_stream_tag, 0,
315 spec->cur_adc_format);
316 return true;
317 }
318 return false;
319}
320
Takashi Iwai61071592011-11-23 07:52:15 +0100321static inline hda_nid_t get_capsrc(struct alc_spec *spec, int idx)
322{
323 return spec->capsrc_nids ?
324 spec->capsrc_nids[idx] : spec->adc_nids[idx];
325}
326
Takashi Iwai24de1832011-11-07 17:13:39 +0100327static void call_update_outputs(struct hda_codec *codec);
Takashi Iwai125821a2012-06-22 14:30:29 +0200328static void alc_inv_dmic_sync(struct hda_codec *codec, bool force);
Takashi Iwai24de1832011-11-07 17:13:39 +0100329
David Henningsson00227f12012-06-27 18:45:44 +0200330/* for shared I/O, change the pin-control accordingly */
331static void update_shared_mic_hp(struct hda_codec *codec, bool set_as_mic)
332{
333 struct alc_spec *spec = codec->spec;
334 unsigned int val;
335 hda_nid_t pin = spec->autocfg.inputs[1].pin;
336 /* NOTE: this assumes that there are only two inputs, the
337 * first is the real internal mic and the second is HP/mic jack.
338 */
339
340 val = snd_hda_get_default_vref(codec, pin);
341
342 /* This pin does not have vref caps - let's enable vref on pin 0x18
343 instead, as suggested by Realtek */
344 if (val == AC_PINCTL_VREF_HIZ) {
345 const hda_nid_t vref_pin = 0x18;
346 /* Sanity check pin 0x18 */
347 if (get_wcaps_type(get_wcaps(codec, vref_pin)) == AC_WID_PIN &&
348 get_defcfg_connect(snd_hda_codec_get_pincfg(codec, vref_pin)) == AC_JACK_PORT_NONE) {
349 unsigned int vref_val = snd_hda_get_default_vref(codec, vref_pin);
350 if (vref_val != AC_PINCTL_VREF_HIZ)
351 snd_hda_set_pin_ctl(codec, vref_pin, PIN_IN | (set_as_mic ? vref_val : 0));
352 }
353 }
354
355 val = set_as_mic ? val | PIN_IN : PIN_HP;
356 snd_hda_set_pin_ctl(codec, pin, val);
357
358 spec->automute_speaker = !set_as_mic;
359 call_update_outputs(codec);
360}
Takashi Iwai21268962011-07-07 15:01:13 +0200361
362/* select the given imux item; either unmute exclusively or select the route */
363static int alc_mux_select(struct hda_codec *codec, unsigned int adc_idx,
364 unsigned int idx, bool force)
365{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 struct alc_spec *spec = codec->spec;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100367 const struct hda_input_mux *imux;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100368 unsigned int mux_idx;
Takashi Iwaidccc1812011-11-08 07:52:19 +0100369 int i, type, num_conns;
Takashi Iwai21268962011-07-07 15:01:13 +0200370 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Takashi Iwai5803a322012-02-21 11:59:45 +0100372 if (!spec->input_mux)
373 return 0;
374
Takashi Iwaicd896c32008-11-18 12:36:33 +0100375 mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
376 imux = &spec->input_mux[mux_idx];
Takashi Iwai53111142010-03-08 12:13:07 +0100377 if (!imux->num_items && mux_idx > 0)
378 imux = &spec->input_mux[0];
Takashi Iwaicce4aa32011-12-02 15:29:12 +0100379 if (!imux->num_items)
380 return 0;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100381
Takashi Iwai21268962011-07-07 15:01:13 +0200382 if (idx >= imux->num_items)
383 idx = imux->num_items - 1;
384 if (spec->cur_mux[adc_idx] == idx && !force)
385 return 0;
386 spec->cur_mux[adc_idx] = idx;
387
David Henningsson00227f12012-06-27 18:45:44 +0200388 if (spec->shared_mic_hp)
389 update_shared_mic_hp(codec, spec->cur_mux[adc_idx]);
Takashi Iwai24de1832011-11-07 17:13:39 +0100390
Takashi Iwai21268962011-07-07 15:01:13 +0200391 if (spec->dyn_adc_switch) {
392 alc_dyn_adc_pcm_resetup(codec, idx);
393 adc_idx = spec->dyn_adc_idx[idx];
394 }
395
Takashi Iwai61071592011-11-23 07:52:15 +0100396 nid = get_capsrc(spec, adc_idx);
Takashi Iwai21268962011-07-07 15:01:13 +0200397
398 /* no selection? */
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200399 num_conns = snd_hda_get_num_conns(codec, nid);
Takashi Iwaidccc1812011-11-08 07:52:19 +0100400 if (num_conns <= 1)
Takashi Iwai21268962011-07-07 15:01:13 +0200401 return 1;
402
Takashi Iwaia22d5432009-07-27 12:54:26 +0200403 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwai0169b6b2009-06-22 10:50:19 +0200404 if (type == AC_WID_AUD_MIX) {
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100405 /* Matrix-mixer style (e.g. ALC882) */
Takashi Iwaidccc1812011-11-08 07:52:19 +0100406 int active = imux->items[idx].index;
407 for (i = 0; i < num_conns; i++) {
408 unsigned int v = (i == active) ? 0 : HDA_AMP_MUTE;
409 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, i,
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100410 HDA_AMP_MUTE, v);
411 }
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100412 } else {
413 /* MUX style (e.g. ALC880) */
Takashi Iwai21268962011-07-07 15:01:13 +0200414 snd_hda_codec_write_cache(codec, nid, 0,
415 AC_VERB_SET_CONNECT_SEL,
416 imux->items[idx].index);
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100417 }
Takashi Iwai125821a2012-06-22 14:30:29 +0200418 alc_inv_dmic_sync(codec, true);
Takashi Iwai21268962011-07-07 15:01:13 +0200419 return 1;
420}
421
422static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
423 struct snd_ctl_elem_value *ucontrol)
424{
425 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
426 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
427 return alc_mux_select(codec, adc_idx,
428 ucontrol->value.enumerated.item[0], false);
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100429}
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431/*
Takashi Iwai23f0c042009-02-26 13:03:58 +0100432 * set up the input pin config (depending on the given auto-pin type)
433 */
434static void alc_set_input_pin(struct hda_codec *codec, hda_nid_t nid,
435 int auto_pin_type)
436{
437 unsigned int val = PIN_IN;
Takashi Iwai47408602012-04-20 13:06:53 +0200438 if (auto_pin_type == AUTO_PIN_MIC)
439 val |= snd_hda_get_default_vref(codec, nid);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +0200440 snd_hda_set_pin_ctl(codec, nid, val);
Takashi Iwai23f0c042009-02-26 13:03:58 +0100441}
442
443/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200444 * Append the given mixer and verb elements for the later use
445 * The mixer array is referred in build_controls(), and init_verbs are
446 * called in init().
Takashi Iwaid88897e2008-10-31 15:01:37 +0100447 */
Takashi Iwaia9111322011-05-02 11:30:18 +0200448static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
Takashi Iwaid88897e2008-10-31 15:01:37 +0100449{
450 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
451 return;
452 spec->mixers[spec->num_mixers++] = mix;
453}
454
Takashi Iwaid88897e2008-10-31 15:01:37 +0100455/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200456 * GPIO setup tables, used in initialization
Kailang Yangdf694da2005-12-05 19:42:22 +0100457 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200458/* Enable GPIO mask and set output */
Takashi Iwaia9111322011-05-02 11:30:18 +0200459static const struct hda_verb alc_gpio1_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200460 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
461 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
462 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
463 { }
464};
465
Takashi Iwaia9111322011-05-02 11:30:18 +0200466static const struct hda_verb alc_gpio2_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200467 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
468 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
469 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
470 { }
471};
472
Takashi Iwaia9111322011-05-02 11:30:18 +0200473static const struct hda_verb alc_gpio3_init_verbs[] = {
Kailang Yangbdd148a2007-05-08 15:19:08 +0200474 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
475 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
476 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
477 { }
478};
479
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200480/*
481 * Fix hardware PLL issue
482 * On some codecs, the analog PLL gating control must be off while
483 * the default value is 1.
484 */
485static void alc_fix_pll(struct hda_codec *codec)
486{
487 struct alc_spec *spec = codec->spec;
488 unsigned int val;
489
490 if (!spec->pll_nid)
491 return;
492 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
493 spec->pll_coef_idx);
494 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
495 AC_VERB_GET_PROC_COEF, 0);
496 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
497 spec->pll_coef_idx);
498 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
499 val & ~(1 << spec->pll_coef_bit));
500}
501
502static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
503 unsigned int coef_idx, unsigned int coef_bit)
504{
505 struct alc_spec *spec = codec->spec;
506 spec->pll_nid = nid;
507 spec->pll_coef_idx = coef_idx;
508 spec->pll_coef_bit = coef_bit;
509 alc_fix_pll(codec);
510}
511
Takashi Iwai1d045db2011-07-07 18:23:21 +0200512/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200513 * Jack detections for HP auto-mute and mic-switch
514 */
515
516/* check each pin in the given array; returns true if any of them is plugged */
517static bool detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins)
Kailang Yangc9b58002007-10-16 14:30:01 +0200518{
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200519 int i, present = 0;
Kailang Yangc9b58002007-10-16 14:30:01 +0200520
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200521 for (i = 0; i < num_pins; i++) {
522 hda_nid_t nid = pins[i];
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200523 if (!nid)
524 break;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200525 present |= snd_hda_jack_detect(codec, nid);
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200526 }
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200527 return present;
528}
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200529
Takashi Iwai1d045db2011-07-07 18:23:21 +0200530/* standard HP/line-out auto-mute helper */
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200531static void do_automute(struct hda_codec *codec, int num_pins, hda_nid_t *pins,
Takashi Iwaie9427962011-04-28 15:46:07 +0200532 bool mute, bool hp_out)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200533{
534 struct alc_spec *spec = codec->spec;
535 unsigned int mute_bits = mute ? HDA_AMP_MUTE : 0;
Takashi Iwaie9427962011-04-28 15:46:07 +0200536 unsigned int pin_bits = mute ? 0 : (hp_out ? PIN_HP : PIN_OUT);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200537 int i;
538
539 for (i = 0; i < num_pins; i++) {
540 hda_nid_t nid = pins[i];
Takashi Iwai31150f22012-01-30 10:54:08 +0100541 unsigned int val;
Takashi Iwaia9fd4f3f2009-05-08 15:57:59 +0200542 if (!nid)
543 break;
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200544 switch (spec->automute_mode) {
545 case ALC_AUTOMUTE_PIN:
Takashi Iwai31150f22012-01-30 10:54:08 +0100546 /* don't reset VREF value in case it's controlling
547 * the amp (see alc861_fixup_asus_amp_vref_0f())
548 */
549 if (spec->keep_vref_in_automute) {
550 val = snd_hda_codec_read(codec, nid, 0,
551 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
552 val &= ~PIN_HP;
553 } else
554 val = 0;
555 val |= pin_bits;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +0200556 snd_hda_set_pin_ctl(codec, nid, val);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200557 break;
558 case ALC_AUTOMUTE_AMP:
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200559 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200560 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200561 break;
562 case ALC_AUTOMUTE_MIXER:
563 nid = spec->automute_mixer_nid[i];
564 if (!nid)
565 break;
566 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200567 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200568 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 1,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200569 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200570 break;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200571 }
Takashi Iwaia9fd4f3f2009-05-08 15:57:59 +0200572 }
Kailang Yangc9b58002007-10-16 14:30:01 +0200573}
574
David Henningsson42cf0d02011-09-20 12:04:56 +0200575/* Toggle outputs muting */
576static void update_outputs(struct hda_codec *codec)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200577{
578 struct alc_spec *spec = codec->spec;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200579 int on;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200580
Takashi Iwaic0a20262011-06-10 15:28:15 +0200581 /* Control HP pins/amps depending on master_mute state;
582 * in general, HP pins/amps control should be enabled in all cases,
583 * but currently set only for master_mute, just to be safe
584 */
Takashi Iwai24de1832011-11-07 17:13:39 +0100585 if (!spec->shared_mic_hp) /* don't change HP-pin when shared with mic */
586 do_automute(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
Takashi Iwaic0a20262011-06-10 15:28:15 +0200587 spec->autocfg.hp_pins, spec->master_mute, true);
588
David Henningsson42cf0d02011-09-20 12:04:56 +0200589 if (!spec->automute_speaker)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200590 on = 0;
591 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200592 on = spec->hp_jack_present | spec->line_jack_present;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200593 on |= spec->master_mute;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200594 do_automute(codec, ARRAY_SIZE(spec->autocfg.speaker_pins),
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200595 spec->autocfg.speaker_pins, on, false);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200596
597 /* toggle line-out mutes if needed, too */
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200598 /* if LO is a copy of either HP or Speaker, don't need to handle it */
599 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0] ||
600 spec->autocfg.line_out_pins[0] == spec->autocfg.speaker_pins[0])
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200601 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200602 if (!spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200603 on = 0;
604 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200605 on = spec->hp_jack_present;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200606 on |= spec->master_mute;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200607 do_automute(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200608 spec->autocfg.line_out_pins, on, false);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200609}
610
David Henningsson42cf0d02011-09-20 12:04:56 +0200611static void call_update_outputs(struct hda_codec *codec)
Takashi Iwai24519912011-08-16 15:08:49 +0200612{
613 struct alc_spec *spec = codec->spec;
614 if (spec->automute_hook)
615 spec->automute_hook(codec);
616 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200617 update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +0200618}
619
Takashi Iwai1d045db2011-07-07 18:23:21 +0200620/* standard HP-automute helper */
David Henningsson29adc4b2012-09-25 11:31:00 +0200621static void alc_hp_automute(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200622{
623 struct alc_spec *spec = codec->spec;
624
David Henningsson42cf0d02011-09-20 12:04:56 +0200625 spec->hp_jack_present =
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200626 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
627 spec->autocfg.hp_pins);
David Henningsson42cf0d02011-09-20 12:04:56 +0200628 if (!spec->detect_hp || (!spec->automute_speaker && !spec->automute_lo))
Takashi Iwai3c715a92011-08-23 12:41:09 +0200629 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200630 call_update_outputs(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200631}
632
Takashi Iwai1d045db2011-07-07 18:23:21 +0200633/* standard line-out-automute helper */
David Henningsson29adc4b2012-09-25 11:31:00 +0200634static void alc_line_automute(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200635{
636 struct alc_spec *spec = codec->spec;
637
David Henningssonf7f4b2322012-10-10 16:32:09 +0200638 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
639 return;
Takashi Iwaie0d32e32011-09-26 15:19:55 +0200640 /* check LO jack only when it's different from HP */
641 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0])
642 return;
643
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200644 spec->line_jack_present =
645 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
646 spec->autocfg.line_out_pins);
David Henningsson42cf0d02011-09-20 12:04:56 +0200647 if (!spec->automute_speaker || !spec->detect_lo)
Takashi Iwai3c715a92011-08-23 12:41:09 +0200648 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200649 call_update_outputs(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200650}
651
Takashi Iwai8d087c72011-06-28 12:45:47 +0200652#define get_connection_index(codec, mux, nid) \
653 snd_hda_get_conn_index(codec, mux, nid, 0)
Takashi Iwai6c819492009-08-10 18:47:44 +0200654
Takashi Iwai1d045db2011-07-07 18:23:21 +0200655/* standard mic auto-switch helper */
David Henningsson29adc4b2012-09-25 11:31:00 +0200656static void alc_mic_automute(struct hda_codec *codec, struct hda_jack_tbl *jack)
Kailang Yang7fb0d782008-10-15 11:12:35 +0200657{
658 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +0200659 hda_nid_t *pins = spec->imux_pins;
Kailang Yang7fb0d782008-10-15 11:12:35 +0200660
Takashi Iwai21268962011-07-07 15:01:13 +0200661 if (!spec->auto_mic || !spec->auto_mic_valid_imux)
Takashi Iwai6c819492009-08-10 18:47:44 +0200662 return;
663 if (snd_BUG_ON(!spec->adc_nids))
664 return;
Takashi Iwai21268962011-07-07 15:01:13 +0200665 if (snd_BUG_ON(spec->int_mic_idx < 0 || spec->ext_mic_idx < 0))
Takashi Iwai840b64c2010-07-13 22:49:01 +0200666 return;
Takashi Iwai840b64c2010-07-13 22:49:01 +0200667
Takashi Iwai21268962011-07-07 15:01:13 +0200668 if (snd_hda_jack_detect(codec, pins[spec->ext_mic_idx]))
669 alc_mux_select(codec, 0, spec->ext_mic_idx, false);
670 else if (spec->dock_mic_idx >= 0 &&
671 snd_hda_jack_detect(codec, pins[spec->dock_mic_idx]))
672 alc_mux_select(codec, 0, spec->dock_mic_idx, false);
673 else
674 alc_mux_select(codec, 0, spec->int_mic_idx, false);
Kailang Yang7fb0d782008-10-15 11:12:35 +0200675}
676
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100677/* update the master volume per volume-knob's unsol event */
David Henningsson29adc4b2012-09-25 11:31:00 +0200678static void alc_update_knob_master(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100679{
680 unsigned int val;
681 struct snd_kcontrol *kctl;
682 struct snd_ctl_elem_value *uctl;
683
684 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
685 if (!kctl)
686 return;
687 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
688 if (!uctl)
689 return;
David Henningsson29adc4b2012-09-25 11:31:00 +0200690 val = snd_hda_codec_read(codec, jack->nid, 0,
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100691 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
692 val &= HDA_AMP_VOLMASK;
693 uctl->value.integer.value[0] = val;
694 uctl->value.integer.value[1] = val;
695 kctl->put(kctl, uctl);
696 kfree(uctl);
697}
698
David Henningsson29adc4b2012-09-25 11:31:00 +0200699static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100700{
David Henningsson29adc4b2012-09-25 11:31:00 +0200701 /* For some reason, the res given from ALC880 is broken.
702 Here we adjust it properly. */
703 snd_hda_jack_unsol_event(codec, res >> 2);
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100704}
705
Takashi Iwai1d045db2011-07-07 18:23:21 +0200706/* call init functions of standard auto-mute helpers */
Kailang Yang7fb0d782008-10-15 11:12:35 +0200707static void alc_inithook(struct hda_codec *codec)
708{
David Henningsson29adc4b2012-09-25 11:31:00 +0200709 alc_hp_automute(codec, NULL);
710 alc_line_automute(codec, NULL);
711 alc_mic_automute(codec, NULL);
Kailang Yangc9b58002007-10-16 14:30:01 +0200712}
713
Kailang Yangf9423e72008-05-27 12:32:25 +0200714/* additional initialization for ALC888 variants */
715static void alc888_coef_init(struct hda_codec *codec)
716{
717 unsigned int tmp;
718
719 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
720 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
721 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
Takashi Iwai37db6232009-03-05 09:40:16 +0100722 if ((tmp & 0xf0) == 0x20)
Kailang Yangf9423e72008-05-27 12:32:25 +0200723 /* alc888S-VC */
724 snd_hda_codec_read(codec, 0x20, 0,
725 AC_VERB_SET_PROC_COEF, 0x830);
726 else
727 /* alc888-VB */
728 snd_hda_codec_read(codec, 0x20, 0,
729 AC_VERB_SET_PROC_COEF, 0x3030);
730}
731
Takashi Iwai1d045db2011-07-07 18:23:21 +0200732/* additional initialization for ALC889 variants */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200733static void alc889_coef_init(struct hda_codec *codec)
734{
735 unsigned int tmp;
736
737 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
738 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
739 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
740 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
741}
742
Takashi Iwai3fb4a502010-01-19 15:46:37 +0100743/* turn on/off EAPD control (only if available) */
744static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
745{
746 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
747 return;
748 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
749 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
750 on ? 2 : 0);
751}
752
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200753/* turn on/off EAPD controls of the codec */
754static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
755{
756 /* We currently only handle front, HP */
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200757 static hda_nid_t pins[] = {
758 0x0f, 0x10, 0x14, 0x15, 0
759 };
760 hda_nid_t *p;
761 for (p = pins; *p; p++)
762 set_eapd(codec, *p, on);
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200763}
764
Takashi Iwai1c7161532011-04-07 10:37:16 +0200765/* generic shutup callback;
766 * just turning off EPAD and a little pause for avoiding pop-noise
767 */
768static void alc_eapd_shutup(struct hda_codec *codec)
769{
770 alc_auto_setup_eapd(codec, false);
771 msleep(200);
772}
773
Takashi Iwai1d045db2011-07-07 18:23:21 +0200774/* generic EAPD initialization */
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200775static void alc_auto_init_amp(struct hda_codec *codec, int type)
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200776{
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200777 unsigned int tmp;
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200778
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200779 alc_auto_setup_eapd(codec, true);
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200780 switch (type) {
781 case ALC_INIT_GPIO1:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200782 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
783 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200784 case ALC_INIT_GPIO2:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200785 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
786 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200787 case ALC_INIT_GPIO3:
Kailang Yangbdd148a2007-05-08 15:19:08 +0200788 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
789 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200790 case ALC_INIT_DEFAULT:
Kailang Yangc9b58002007-10-16 14:30:01 +0200791 switch (codec->vendor_id) {
792 case 0x10ec0260:
793 snd_hda_codec_write(codec, 0x1a, 0,
794 AC_VERB_SET_COEF_INDEX, 7);
795 tmp = snd_hda_codec_read(codec, 0x1a, 0,
796 AC_VERB_GET_PROC_COEF, 0);
797 snd_hda_codec_write(codec, 0x1a, 0,
798 AC_VERB_SET_COEF_INDEX, 7);
799 snd_hda_codec_write(codec, 0x1a, 0,
800 AC_VERB_SET_PROC_COEF,
801 tmp | 0x2010);
802 break;
803 case 0x10ec0262:
804 case 0x10ec0880:
805 case 0x10ec0882:
806 case 0x10ec0883:
807 case 0x10ec0885:
Takashi Iwai4a5a4c52009-02-06 12:46:59 +0100808 case 0x10ec0887:
Takashi Iwai20b67dd2011-03-23 22:54:32 +0100809 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200810 alc889_coef_init(codec);
Kailang Yangc9b58002007-10-16 14:30:01 +0200811 break;
Kailang Yangf9423e72008-05-27 12:32:25 +0200812 case 0x10ec0888:
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200813 alc888_coef_init(codec);
Kailang Yangf9423e72008-05-27 12:32:25 +0200814 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100815#if 0 /* XXX: This may cause the silent output on speaker on some machines */
Kailang Yangc9b58002007-10-16 14:30:01 +0200816 case 0x10ec0267:
817 case 0x10ec0268:
818 snd_hda_codec_write(codec, 0x20, 0,
819 AC_VERB_SET_COEF_INDEX, 7);
820 tmp = snd_hda_codec_read(codec, 0x20, 0,
821 AC_VERB_GET_PROC_COEF, 0);
822 snd_hda_codec_write(codec, 0x20, 0,
Kailang Yangea1fb292008-08-26 12:58:38 +0200823 AC_VERB_SET_COEF_INDEX, 7);
Kailang Yangc9b58002007-10-16 14:30:01 +0200824 snd_hda_codec_write(codec, 0x20, 0,
825 AC_VERB_SET_PROC_COEF,
826 tmp | 0x3000);
827 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100828#endif /* XXX */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200829 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200830 break;
831 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200832}
Kailang Yangea1fb292008-08-26 12:58:38 +0200833
Takashi Iwai1d045db2011-07-07 18:23:21 +0200834/*
835 * Auto-Mute mode mixer enum support
836 */
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200837static int alc_automute_mode_info(struct snd_kcontrol *kcontrol,
838 struct snd_ctl_elem_info *uinfo)
839{
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200840 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
841 struct alc_spec *spec = codec->spec;
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200842 static const char * const texts3[] = {
Takashi Iwaie49a3432012-03-01 18:14:41 +0100843 "Disabled", "Speaker Only", "Line Out+Speaker"
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200844 };
845
Takashi Iwaidda415d2012-11-30 18:34:38 +0100846 if (spec->automute_speaker_possible && spec->automute_lo_possible)
847 return snd_hda_enum_helper_info(kcontrol, uinfo, 3, texts3);
848 return snd_hda_enum_bool_helper_info(kcontrol, uinfo);
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200849}
850
851static int alc_automute_mode_get(struct snd_kcontrol *kcontrol,
852 struct snd_ctl_elem_value *ucontrol)
853{
854 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
855 struct alc_spec *spec = codec->spec;
David Henningsson42cf0d02011-09-20 12:04:56 +0200856 unsigned int val = 0;
857 if (spec->automute_speaker)
858 val++;
859 if (spec->automute_lo)
860 val++;
861
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200862 ucontrol->value.enumerated.item[0] = val;
863 return 0;
864}
865
866static int alc_automute_mode_put(struct snd_kcontrol *kcontrol,
867 struct snd_ctl_elem_value *ucontrol)
868{
869 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
870 struct alc_spec *spec = codec->spec;
871
872 switch (ucontrol->value.enumerated.item[0]) {
873 case 0:
David Henningsson42cf0d02011-09-20 12:04:56 +0200874 if (!spec->automute_speaker && !spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200875 return 0;
David Henningsson42cf0d02011-09-20 12:04:56 +0200876 spec->automute_speaker = 0;
877 spec->automute_lo = 0;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200878 break;
879 case 1:
David Henningsson42cf0d02011-09-20 12:04:56 +0200880 if (spec->automute_speaker_possible) {
881 if (!spec->automute_lo && spec->automute_speaker)
882 return 0;
883 spec->automute_speaker = 1;
884 spec->automute_lo = 0;
885 } else if (spec->automute_lo_possible) {
886 if (spec->automute_lo)
887 return 0;
888 spec->automute_lo = 1;
889 } else
890 return -EINVAL;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200891 break;
892 case 2:
David Henningsson42cf0d02011-09-20 12:04:56 +0200893 if (!spec->automute_lo_possible || !spec->automute_speaker_possible)
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200894 return -EINVAL;
David Henningsson42cf0d02011-09-20 12:04:56 +0200895 if (spec->automute_speaker && spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200896 return 0;
David Henningsson42cf0d02011-09-20 12:04:56 +0200897 spec->automute_speaker = 1;
898 spec->automute_lo = 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200899 break;
900 default:
901 return -EINVAL;
902 }
David Henningsson42cf0d02011-09-20 12:04:56 +0200903 call_update_outputs(codec);
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200904 return 1;
905}
906
Takashi Iwaia9111322011-05-02 11:30:18 +0200907static const struct snd_kcontrol_new alc_automute_mode_enum = {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200908 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
909 .name = "Auto-Mute Mode",
910 .info = alc_automute_mode_info,
911 .get = alc_automute_mode_get,
912 .put = alc_automute_mode_put,
913};
914
Takashi Iwai668d1e92012-11-29 14:10:17 +0100915static struct snd_kcontrol_new *
916alc_kcontrol_new(struct alc_spec *spec, const char *name,
917 const struct snd_kcontrol_new *temp)
Takashi Iwai1d045db2011-07-07 18:23:21 +0200918{
Takashi Iwai668d1e92012-11-29 14:10:17 +0100919 struct snd_kcontrol_new *knew = snd_array_new(&spec->kctls);
920 if (!knew)
921 return NULL;
922 *knew = *temp;
923 knew->name = kstrdup(name, GFP_KERNEL);
924 if (!knew->name)
925 return NULL;
926 return knew;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200927}
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200928
929static int alc_add_automute_mode_enum(struct hda_codec *codec)
930{
931 struct alc_spec *spec = codec->spec;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200932
Takashi Iwai668d1e92012-11-29 14:10:17 +0100933 if (!alc_kcontrol_new(spec, "Auto-Mute Mode", &alc_automute_mode_enum))
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200934 return -ENOMEM;
935 return 0;
936}
937
Takashi Iwai1d045db2011-07-07 18:23:21 +0200938/*
939 * Check the availability of HP/line-out auto-mute;
940 * Set up appropriately if really supported
941 */
Takashi Iwai475c3d22012-11-30 08:31:30 +0100942static int alc_init_automute(struct hda_codec *codec)
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200943{
944 struct alc_spec *spec = codec->spec;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200945 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai1daf5f42011-04-28 17:57:46 +0200946 int present = 0;
Takashi Iwai475c3d22012-11-30 08:31:30 +0100947 int i, err;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200948
Takashi Iwai1daf5f42011-04-28 17:57:46 +0200949 if (cfg->hp_pins[0])
950 present++;
951 if (cfg->line_out_pins[0])
952 present++;
953 if (cfg->speaker_pins[0])
954 present++;
955 if (present < 2) /* need two different output types */
Takashi Iwai475c3d22012-11-30 08:31:30 +0100956 return 0;
Kailang Yangc9b58002007-10-16 14:30:01 +0200957
Takashi Iwaic48a8fb2011-07-27 16:41:57 +0200958 if (!cfg->speaker_pins[0] &&
959 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200960 memcpy(cfg->speaker_pins, cfg->line_out_pins,
961 sizeof(cfg->speaker_pins));
962 cfg->speaker_outs = cfg->line_outs;
963 }
964
Takashi Iwaic48a8fb2011-07-27 16:41:57 +0200965 if (!cfg->hp_pins[0] &&
966 cfg->line_out_type == AUTO_PIN_HP_OUT) {
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200967 memcpy(cfg->hp_pins, cfg->line_out_pins,
968 sizeof(cfg->hp_pins));
969 cfg->hp_outs = cfg->line_outs;
970 }
971
David Henningsson42cf0d02011-09-20 12:04:56 +0200972 spec->automute_mode = ALC_AUTOMUTE_PIN;
973
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200974 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200975 hda_nid_t nid = cfg->hp_pins[i];
Takashi Iwai06dec222011-05-17 10:00:16 +0200976 if (!is_jack_detectable(codec, nid))
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200977 continue;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200978 snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n",
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200979 nid);
David Henningsson29adc4b2012-09-25 11:31:00 +0200980 snd_hda_jack_detect_enable_callback(codec, nid, ALC_HP_EVENT,
981 alc_hp_automute);
David Henningsson42cf0d02011-09-20 12:04:56 +0200982 spec->detect_hp = 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200983 }
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200984
David Henningsson42cf0d02011-09-20 12:04:56 +0200985 if (cfg->line_out_type == AUTO_PIN_LINE_OUT && cfg->line_outs) {
986 if (cfg->speaker_outs)
987 for (i = 0; i < cfg->line_outs; i++) {
988 hda_nid_t nid = cfg->line_out_pins[i];
989 if (!is_jack_detectable(codec, nid))
990 continue;
991 snd_printdd("realtek: Enable Line-Out "
992 "auto-muting on NID 0x%x\n", nid);
David Henningsson29adc4b2012-09-25 11:31:00 +0200993 snd_hda_jack_detect_enable_callback(codec, nid, ALC_FRONT_EVENT,
994 alc_line_automute);
David Henningsson42cf0d02011-09-20 12:04:56 +0200995 spec->detect_lo = 1;
David Henningsson29adc4b2012-09-25 11:31:00 +0200996 }
David Henningsson42cf0d02011-09-20 12:04:56 +0200997 spec->automute_lo_possible = spec->detect_hp;
998 }
999
1000 spec->automute_speaker_possible = cfg->speaker_outs &&
1001 (spec->detect_hp || spec->detect_lo);
1002
1003 spec->automute_lo = spec->automute_lo_possible;
1004 spec->automute_speaker = spec->automute_speaker_possible;
1005
Takashi Iwai475c3d22012-11-30 08:31:30 +01001006 if (spec->automute_speaker_possible || spec->automute_lo_possible) {
Takashi Iwaiae8a60a2011-04-28 18:09:52 +02001007 /* create a control for automute mode */
Takashi Iwai475c3d22012-11-30 08:31:30 +01001008 err = alc_add_automute_mode_enum(codec);
1009 if (err < 0)
1010 return err;
1011 }
1012 return 0;
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001013}
1014
Takashi Iwai1d045db2011-07-07 18:23:21 +02001015/* return the position of NID in the list, or -1 if not found */
Takashi Iwai21268962011-07-07 15:01:13 +02001016static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
1017{
1018 int i;
1019 for (i = 0; i < nums; i++)
1020 if (list[i] == nid)
1021 return i;
1022 return -1;
1023}
1024
Takashi Iwai1d045db2011-07-07 18:23:21 +02001025/* check whether dynamic ADC-switching is available */
1026static bool alc_check_dyn_adc_switch(struct hda_codec *codec)
1027{
1028 struct alc_spec *spec = codec->spec;
1029 struct hda_input_mux *imux = &spec->private_imux[0];
1030 int i, n, idx;
1031 hda_nid_t cap, pin;
1032
1033 if (imux != spec->input_mux) /* no dynamic imux? */
1034 return false;
1035
1036 for (n = 0; n < spec->num_adc_nids; n++) {
1037 cap = spec->private_capsrc_nids[n];
1038 for (i = 0; i < imux->num_items; i++) {
1039 pin = spec->imux_pins[i];
1040 if (!pin)
1041 return false;
1042 if (get_connection_index(codec, cap, pin) < 0)
1043 break;
1044 }
1045 if (i >= imux->num_items)
Takashi Iwai268ff6f2011-07-08 14:37:35 +02001046 return true; /* no ADC-switch is needed */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001047 }
1048
1049 for (i = 0; i < imux->num_items; i++) {
1050 pin = spec->imux_pins[i];
1051 for (n = 0; n < spec->num_adc_nids; n++) {
1052 cap = spec->private_capsrc_nids[n];
1053 idx = get_connection_index(codec, cap, pin);
1054 if (idx >= 0) {
1055 imux->items[i].index = idx;
1056 spec->dyn_adc_idx[i] = n;
1057 break;
1058 }
1059 }
1060 }
1061
1062 snd_printdd("realtek: enabling ADC switching\n");
1063 spec->dyn_adc_switch = 1;
1064 return true;
1065}
Takashi Iwai21268962011-07-07 15:01:13 +02001066
Takashi Iwai21268962011-07-07 15:01:13 +02001067/* check whether all auto-mic pins are valid; setup indices if OK */
1068static bool alc_auto_mic_check_imux(struct hda_codec *codec)
1069{
1070 struct alc_spec *spec = codec->spec;
1071 const struct hda_input_mux *imux;
1072
1073 if (!spec->auto_mic)
1074 return false;
1075 if (spec->auto_mic_valid_imux)
1076 return true; /* already checked */
1077
1078 /* fill up imux indices */
1079 if (!alc_check_dyn_adc_switch(codec)) {
1080 spec->auto_mic = 0;
1081 return false;
1082 }
1083
1084 imux = spec->input_mux;
1085 spec->ext_mic_idx = find_idx_in_nid_list(spec->ext_mic_pin,
1086 spec->imux_pins, imux->num_items);
1087 spec->int_mic_idx = find_idx_in_nid_list(spec->int_mic_pin,
1088 spec->imux_pins, imux->num_items);
1089 spec->dock_mic_idx = find_idx_in_nid_list(spec->dock_mic_pin,
1090 spec->imux_pins, imux->num_items);
1091 if (spec->ext_mic_idx < 0 || spec->int_mic_idx < 0) {
1092 spec->auto_mic = 0;
1093 return false; /* no corresponding imux */
1094 }
1095
David Henningsson29adc4b2012-09-25 11:31:00 +02001096 snd_hda_jack_detect_enable_callback(codec, spec->ext_mic_pin,
1097 ALC_MIC_EVENT, alc_mic_automute);
Takashi Iwai21268962011-07-07 15:01:13 +02001098 if (spec->dock_mic_pin)
David Henningsson29adc4b2012-09-25 11:31:00 +02001099 snd_hda_jack_detect_enable_callback(codec, spec->dock_mic_pin,
1100 ALC_MIC_EVENT,
1101 alc_mic_automute);
Takashi Iwai21268962011-07-07 15:01:13 +02001102
1103 spec->auto_mic_valid_imux = 1;
1104 spec->auto_mic = 1;
1105 return true;
1106}
1107
Takashi Iwai1d045db2011-07-07 18:23:21 +02001108/*
1109 * Check the availability of auto-mic switch;
1110 * Set up if really supported
1111 */
Takashi Iwai475c3d22012-11-30 08:31:30 +01001112static int alc_init_auto_mic(struct hda_codec *codec)
Takashi Iwai6c819492009-08-10 18:47:44 +02001113{
1114 struct alc_spec *spec = codec->spec;
1115 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001116 hda_nid_t fixed, ext, dock;
Takashi Iwai6c819492009-08-10 18:47:44 +02001117 int i;
1118
Takashi Iwai24de1832011-11-07 17:13:39 +01001119 if (spec->shared_mic_hp)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001120 return 0; /* no auto-mic for the shared I/O */
Takashi Iwai24de1832011-11-07 17:13:39 +01001121
Takashi Iwai21268962011-07-07 15:01:13 +02001122 spec->ext_mic_idx = spec->int_mic_idx = spec->dock_mic_idx = -1;
1123
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001124 fixed = ext = dock = 0;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02001125 for (i = 0; i < cfg->num_inputs; i++) {
1126 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai6c819492009-08-10 18:47:44 +02001127 unsigned int defcfg;
Takashi Iwai6c819492009-08-10 18:47:44 +02001128 defcfg = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001129 switch (snd_hda_get_input_pin_attr(defcfg)) {
1130 case INPUT_PIN_ATTR_INT:
Takashi Iwai6c819492009-08-10 18:47:44 +02001131 if (fixed)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001132 return 0; /* already occupied */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001133 if (cfg->inputs[i].type != AUTO_PIN_MIC)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001134 return 0; /* invalid type */
Takashi Iwai6c819492009-08-10 18:47:44 +02001135 fixed = nid;
1136 break;
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001137 case INPUT_PIN_ATTR_UNUSED:
Takashi Iwai475c3d22012-11-30 08:31:30 +01001138 return 0; /* invalid entry */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001139 case INPUT_PIN_ATTR_DOCK:
1140 if (dock)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001141 return 0; /* already occupied */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001142 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001143 return 0; /* invalid type */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001144 dock = nid;
1145 break;
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001146 default:
Takashi Iwai6c819492009-08-10 18:47:44 +02001147 if (ext)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001148 return 0; /* already occupied */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001149 if (cfg->inputs[i].type != AUTO_PIN_MIC)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001150 return 0; /* invalid type */
Takashi Iwai6c819492009-08-10 18:47:44 +02001151 ext = nid;
1152 break;
Takashi Iwai6c819492009-08-10 18:47:44 +02001153 }
1154 }
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001155 if (!ext && dock) {
1156 ext = dock;
1157 dock = 0;
1158 }
Takashi Iwaieaa9b3a2010-01-17 13:09:33 +01001159 if (!ext || !fixed)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001160 return 0;
Takashi Iwaie35d9d62011-05-17 11:28:16 +02001161 if (!is_jack_detectable(codec, ext))
Takashi Iwai475c3d22012-11-30 08:31:30 +01001162 return 0; /* no unsol support */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001163 if (dock && !is_jack_detectable(codec, dock))
Takashi Iwai475c3d22012-11-30 08:31:30 +01001164 return 0; /* no unsol support */
Takashi Iwai21268962011-07-07 15:01:13 +02001165
1166 /* check imux indices */
1167 spec->ext_mic_pin = ext;
1168 spec->int_mic_pin = fixed;
1169 spec->dock_mic_pin = dock;
1170
1171 spec->auto_mic = 1;
1172 if (!alc_auto_mic_check_imux(codec))
Takashi Iwai475c3d22012-11-30 08:31:30 +01001173 return 0;
Takashi Iwai21268962011-07-07 15:01:13 +02001174
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001175 snd_printdd("realtek: Enable auto-mic switch on NID 0x%x/0x%x/0x%x\n",
1176 ext, fixed, dock);
Takashi Iwai475c3d22012-11-30 08:31:30 +01001177
1178 return 0;
Takashi Iwai6c819492009-08-10 18:47:44 +02001179}
1180
Takashi Iwai1d045db2011-07-07 18:23:21 +02001181/* check the availabilities of auto-mute and auto-mic switches */
Takashi Iwai475c3d22012-11-30 08:31:30 +01001182static int alc_auto_check_switches(struct hda_codec *codec)
Takashi Iwai1d045db2011-07-07 18:23:21 +02001183{
Takashi Iwai475c3d22012-11-30 08:31:30 +01001184 int err;
1185
1186 err = alc_init_automute(codec);
1187 if (err < 0)
1188 return err;
1189 err = alc_init_auto_mic(codec);
1190 if (err < 0)
1191 return err;
1192 return 0;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001193}
1194
1195/*
1196 * Realtek SSID verification
1197 */
1198
David Henningsson90622912010-10-14 14:50:18 +02001199/* Could be any non-zero and even value. When used as fixup, tells
1200 * the driver to ignore any present sku defines.
1201 */
1202#define ALC_FIXUP_SKU_IGNORE (2)
1203
Takashi Iwai23d30f22012-05-07 17:17:32 +02001204static void alc_fixup_sku_ignore(struct hda_codec *codec,
1205 const struct hda_fixup *fix, int action)
1206{
1207 struct alc_spec *spec = codec->spec;
1208 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1209 spec->cdefine.fixup = 1;
1210 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
1211 }
1212}
1213
Kailang Yangda00c242010-03-19 11:23:45 +01001214static int alc_auto_parse_customize_define(struct hda_codec *codec)
1215{
1216 unsigned int ass, tmp, i;
Takashi Iwai7fb56222010-03-22 17:09:47 +01001217 unsigned nid = 0;
Kailang Yangda00c242010-03-19 11:23:45 +01001218 struct alc_spec *spec = codec->spec;
1219
Takashi Iwaib6cbe512010-07-28 17:43:36 +02001220 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
1221
David Henningsson90622912010-10-14 14:50:18 +02001222 if (spec->cdefine.fixup) {
1223 ass = spec->cdefine.sku_cfg;
1224 if (ass == ALC_FIXUP_SKU_IGNORE)
1225 return -1;
1226 goto do_sku;
1227 }
1228
Kailang Yangda00c242010-03-19 11:23:45 +01001229 ass = codec->subsystem_id & 0xffff;
Takashi Iwaib6cbe512010-07-28 17:43:36 +02001230 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
Kailang Yangda00c242010-03-19 11:23:45 +01001231 goto do_sku;
1232
1233 nid = 0x1d;
1234 if (codec->vendor_id == 0x10ec0260)
1235 nid = 0x17;
1236 ass = snd_hda_codec_get_pincfg(codec, nid);
1237
1238 if (!(ass & 1)) {
1239 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
1240 codec->chip_name, ass);
1241 return -1;
1242 }
1243
1244 /* check sum */
1245 tmp = 0;
1246 for (i = 1; i < 16; i++) {
1247 if ((ass >> i) & 1)
1248 tmp++;
1249 }
1250 if (((ass >> 16) & 0xf) != tmp)
1251 return -1;
1252
1253 spec->cdefine.port_connectivity = ass >> 30;
1254 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
1255 spec->cdefine.check_sum = (ass >> 16) & 0xf;
1256 spec->cdefine.customization = ass >> 8;
1257do_sku:
1258 spec->cdefine.sku_cfg = ass;
1259 spec->cdefine.external_amp = (ass & 0x38) >> 3;
1260 spec->cdefine.platform_type = (ass & 0x4) >> 2;
1261 spec->cdefine.swap = (ass & 0x2) >> 1;
1262 spec->cdefine.override = ass & 0x1;
1263
1264 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
1265 nid, spec->cdefine.sku_cfg);
1266 snd_printd("SKU: port_connectivity=0x%x\n",
1267 spec->cdefine.port_connectivity);
1268 snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
1269 snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
1270 snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
1271 snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
1272 snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
1273 snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
1274 snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
1275
1276 return 0;
1277}
1278
Takashi Iwai1d045db2011-07-07 18:23:21 +02001279/* return true if the given NID is found in the list */
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001280static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
1281{
Takashi Iwai21268962011-07-07 15:01:13 +02001282 return find_idx_in_nid_list(nid, list, nums) >= 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001283}
1284
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001285/* check subsystem ID and set up device-specific initialization;
1286 * return 1 if initialized, 0 if invalid SSID
1287 */
1288/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
1289 * 31 ~ 16 : Manufacture ID
1290 * 15 ~ 8 : SKU ID
1291 * 7 ~ 0 : Assembly ID
1292 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
1293 */
1294static int alc_subsystem_id(struct hda_codec *codec,
1295 hda_nid_t porta, hda_nid_t porte,
Kailang Yang6227cdc2010-02-25 08:36:52 +01001296 hda_nid_t portd, hda_nid_t porti)
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001297{
1298 unsigned int ass, tmp, i;
1299 unsigned nid;
1300 struct alc_spec *spec = codec->spec;
1301
David Henningsson90622912010-10-14 14:50:18 +02001302 if (spec->cdefine.fixup) {
1303 ass = spec->cdefine.sku_cfg;
1304 if (ass == ALC_FIXUP_SKU_IGNORE)
1305 return 0;
1306 goto do_sku;
1307 }
1308
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001309 ass = codec->subsystem_id & 0xffff;
1310 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
1311 goto do_sku;
1312
1313 /* invalid SSID, check the special NID pin defcfg instead */
1314 /*
Sasha Alexandrdef319f2009-06-16 16:00:15 -04001315 * 31~30 : port connectivity
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001316 * 29~21 : reserve
1317 * 20 : PCBEEP input
1318 * 19~16 : Check sum (15:1)
1319 * 15~1 : Custom
1320 * 0 : override
1321 */
1322 nid = 0x1d;
1323 if (codec->vendor_id == 0x10ec0260)
1324 nid = 0x17;
1325 ass = snd_hda_codec_get_pincfg(codec, nid);
1326 snd_printd("realtek: No valid SSID, "
1327 "checking pincfg 0x%08x for NID 0x%x\n",
Takashi Iwaicb6605c2009-04-28 13:03:19 +02001328 ass, nid);
Kailang Yang6227cdc2010-02-25 08:36:52 +01001329 if (!(ass & 1))
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001330 return 0;
1331 if ((ass >> 30) != 1) /* no physical connection */
1332 return 0;
1333
1334 /* check sum */
1335 tmp = 0;
1336 for (i = 1; i < 16; i++) {
1337 if ((ass >> i) & 1)
1338 tmp++;
1339 }
1340 if (((ass >> 16) & 0xf) != tmp)
1341 return 0;
1342do_sku:
1343 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
1344 ass & 0xffff, codec->vendor_id);
1345 /*
1346 * 0 : override
1347 * 1 : Swap Jack
1348 * 2 : 0 --> Desktop, 1 --> Laptop
1349 * 3~5 : External Amplifier control
1350 * 7~6 : Reserved
1351 */
1352 tmp = (ass & 0x38) >> 3; /* external Amp control */
1353 switch (tmp) {
1354 case 1:
1355 spec->init_amp = ALC_INIT_GPIO1;
1356 break;
1357 case 3:
1358 spec->init_amp = ALC_INIT_GPIO2;
1359 break;
1360 case 7:
1361 spec->init_amp = ALC_INIT_GPIO3;
1362 break;
1363 case 5:
Takashi Iwai5a8cfb42010-11-26 17:11:18 +01001364 default:
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001365 spec->init_amp = ALC_INIT_DEFAULT;
1366 break;
1367 }
1368
1369 /* is laptop or Desktop and enable the function "Mute internal speaker
1370 * when the external headphone out jack is plugged"
1371 */
1372 if (!(ass & 0x8000))
1373 return 1;
1374 /*
1375 * 10~8 : Jack location
1376 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1377 * 14~13: Resvered
1378 * 15 : 1 --> enable the function "Mute internal speaker
1379 * when the external headphone out jack is plugged"
1380 */
Takashi Iwai5fe6e012011-09-26 10:41:21 +02001381 if (!spec->autocfg.hp_pins[0] &&
1382 !(spec->autocfg.line_out_pins[0] &&
1383 spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
Takashi Iwai01d48252009-10-06 13:21:54 +02001384 hda_nid_t nid;
Kailang Yangc9b58002007-10-16 14:30:01 +02001385 tmp = (ass >> 11) & 0x3; /* HP to chassis */
1386 if (tmp == 0)
Takashi Iwai01d48252009-10-06 13:21:54 +02001387 nid = porta;
Kailang Yangc9b58002007-10-16 14:30:01 +02001388 else if (tmp == 1)
Takashi Iwai01d48252009-10-06 13:21:54 +02001389 nid = porte;
Kailang Yangc9b58002007-10-16 14:30:01 +02001390 else if (tmp == 2)
Takashi Iwai01d48252009-10-06 13:21:54 +02001391 nid = portd;
Kailang Yang6227cdc2010-02-25 08:36:52 +01001392 else if (tmp == 3)
1393 nid = porti;
Kailang Yangc9b58002007-10-16 14:30:01 +02001394 else
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001395 return 1;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001396 if (found_in_nid_list(nid, spec->autocfg.line_out_pins,
1397 spec->autocfg.line_outs))
1398 return 1;
Takashi Iwai01d48252009-10-06 13:21:54 +02001399 spec->autocfg.hp_pins[0] = nid;
Kailang Yangc9b58002007-10-16 14:30:01 +02001400 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001401 return 1;
1402}
Kailang Yangea1fb292008-08-26 12:58:38 +02001403
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001404/* Check the validity of ALC subsystem-id
1405 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
1406static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001407{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001408 if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001409 struct alc_spec *spec = codec->spec;
1410 snd_printd("realtek: "
1411 "Enable default setup for auto mode as fallback\n");
1412 spec->init_amp = ALC_INIT_DEFAULT;
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001413 }
Takashi Iwai21268962011-07-07 15:01:13 +02001414}
Takashi Iwai1a1455d2011-04-28 17:36:18 +02001415
Takashi Iwai41e41f12005-06-08 14:48:49 +02001416/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02001417 * COEF access helper functions
1418 */
Kailang Yang274693f2009-12-03 10:07:50 +01001419static int alc_read_coef_idx(struct hda_codec *codec,
1420 unsigned int coef_idx)
1421{
1422 unsigned int val;
1423 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1424 coef_idx);
1425 val = snd_hda_codec_read(codec, 0x20, 0,
1426 AC_VERB_GET_PROC_COEF, 0);
1427 return val;
1428}
1429
Kailang Yang977ddd62010-09-15 10:02:29 +02001430static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
1431 unsigned int coef_val)
1432{
1433 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1434 coef_idx);
1435 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
1436 coef_val);
1437}
1438
Takashi Iwai1bb7e432011-10-17 16:50:59 +02001439/* a special bypass for COEF 0; read the cached value at the second time */
1440static unsigned int alc_get_coef0(struct hda_codec *codec)
1441{
1442 struct alc_spec *spec = codec->spec;
1443 if (!spec->coef0)
1444 spec->coef0 = alc_read_coef_idx(codec, 0);
1445 return spec->coef0;
1446}
1447
Takashi Iwai1d045db2011-07-07 18:23:21 +02001448/*
1449 * Digital I/O handling
1450 */
1451
Takashi Iwai757899a2010-07-30 10:48:14 +02001452/* set right pin controls for digital I/O */
1453static void alc_auto_init_digital(struct hda_codec *codec)
1454{
1455 struct alc_spec *spec = codec->spec;
1456 int i;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001457 hda_nid_t pin, dac;
Takashi Iwai757899a2010-07-30 10:48:14 +02001458
1459 for (i = 0; i < spec->autocfg.dig_outs; i++) {
1460 pin = spec->autocfg.dig_out_pins[i];
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001461 if (!pin)
1462 continue;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001463 snd_hda_set_pin_ctl(codec, pin, PIN_OUT);
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001464 if (!i)
1465 dac = spec->multiout.dig_out_nid;
1466 else
1467 dac = spec->slave_dig_outs[i - 1];
1468 if (!dac || !(get_wcaps(codec, dac) & AC_WCAP_OUT_AMP))
1469 continue;
1470 snd_hda_codec_write(codec, dac, 0,
1471 AC_VERB_SET_AMP_GAIN_MUTE,
1472 AMP_OUT_UNMUTE);
Takashi Iwai757899a2010-07-30 10:48:14 +02001473 }
1474 pin = spec->autocfg.dig_in_pin;
1475 if (pin)
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001476 snd_hda_set_pin_ctl(codec, pin, PIN_IN);
Takashi Iwai757899a2010-07-30 10:48:14 +02001477}
1478
1479/* parse digital I/Os and set up NIDs in BIOS auto-parse mode */
1480static void alc_auto_parse_digital(struct hda_codec *codec)
1481{
1482 struct alc_spec *spec = codec->spec;
Takashi Iwai51e41522011-11-03 16:54:06 +01001483 int i, err, nums;
Takashi Iwai757899a2010-07-30 10:48:14 +02001484 hda_nid_t dig_nid;
1485
1486 /* support multiple SPDIFs; the secondary is set up as a slave */
Takashi Iwai51e41522011-11-03 16:54:06 +01001487 nums = 0;
Takashi Iwai757899a2010-07-30 10:48:14 +02001488 for (i = 0; i < spec->autocfg.dig_outs; i++) {
Takashi Iwaia9267572011-07-07 15:12:55 +02001489 hda_nid_t conn[4];
Takashi Iwai757899a2010-07-30 10:48:14 +02001490 err = snd_hda_get_connections(codec,
1491 spec->autocfg.dig_out_pins[i],
Takashi Iwaia9267572011-07-07 15:12:55 +02001492 conn, ARRAY_SIZE(conn));
Takashi Iwai51e41522011-11-03 16:54:06 +01001493 if (err <= 0)
Takashi Iwai757899a2010-07-30 10:48:14 +02001494 continue;
Takashi Iwaia9267572011-07-07 15:12:55 +02001495 dig_nid = conn[0]; /* assume the first element is audio-out */
Takashi Iwai51e41522011-11-03 16:54:06 +01001496 if (!nums) {
Takashi Iwai757899a2010-07-30 10:48:14 +02001497 spec->multiout.dig_out_nid = dig_nid;
1498 spec->dig_out_type = spec->autocfg.dig_out_type[0];
1499 } else {
1500 spec->multiout.slave_dig_outs = spec->slave_dig_outs;
Takashi Iwai51e41522011-11-03 16:54:06 +01001501 if (nums >= ARRAY_SIZE(spec->slave_dig_outs) - 1)
Takashi Iwai757899a2010-07-30 10:48:14 +02001502 break;
Takashi Iwai51e41522011-11-03 16:54:06 +01001503 spec->slave_dig_outs[nums - 1] = dig_nid;
Takashi Iwai757899a2010-07-30 10:48:14 +02001504 }
Takashi Iwai51e41522011-11-03 16:54:06 +01001505 nums++;
Takashi Iwai757899a2010-07-30 10:48:14 +02001506 }
1507
1508 if (spec->autocfg.dig_in_pin) {
Takashi Iwai01fdf182010-09-24 09:09:42 +02001509 dig_nid = codec->start_nid;
1510 for (i = 0; i < codec->num_nodes; i++, dig_nid++) {
1511 unsigned int wcaps = get_wcaps(codec, dig_nid);
1512 if (get_wcaps_type(wcaps) != AC_WID_AUD_IN)
1513 continue;
1514 if (!(wcaps & AC_WCAP_DIGITAL))
1515 continue;
1516 if (!(wcaps & AC_WCAP_CONN_LIST))
1517 continue;
1518 err = get_connection_index(codec, dig_nid,
1519 spec->autocfg.dig_in_pin);
1520 if (err >= 0) {
1521 spec->dig_in_nid = dig_nid;
1522 break;
1523 }
1524 }
Takashi Iwai757899a2010-07-30 10:48:14 +02001525 }
1526}
1527
Takashi Iwaif95474e2007-07-10 00:47:43 +02001528/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02001529 * capture mixer elements
Vincent Petryef8ef5f2008-11-23 11:31:41 +08001530 */
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001531static int alc_cap_vol_info(struct snd_kcontrol *kcontrol,
1532 struct snd_ctl_elem_info *uinfo)
1533{
1534 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1535 struct alc_spec *spec = codec->spec;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001536 unsigned long val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001537 int err;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001538
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001539 mutex_lock(&codec->control_mutex);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001540 if (spec->vol_in_capsrc)
1541 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1542 else
1543 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1544 kcontrol->private_value = val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001545 err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001546 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001547 return err;
1548}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001550static int alc_cap_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1551 unsigned int size, unsigned int __user *tlv)
1552{
1553 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1554 struct alc_spec *spec = codec->spec;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001555 unsigned long val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001556 int err;
1557
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001558 mutex_lock(&codec->control_mutex);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001559 if (spec->vol_in_capsrc)
1560 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1561 else
1562 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1563 kcontrol->private_value = val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001564 err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001565 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001566 return err;
1567}
1568
1569typedef int (*getput_call_t)(struct snd_kcontrol *kcontrol,
1570 struct snd_ctl_elem_value *ucontrol);
1571
1572static int alc_cap_getput_caller(struct snd_kcontrol *kcontrol,
1573 struct snd_ctl_elem_value *ucontrol,
Takashi Iwai125821a2012-06-22 14:30:29 +02001574 getput_call_t func, bool is_put)
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001575{
1576 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1577 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +02001578 int i, err = 0;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001579
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001580 mutex_lock(&codec->control_mutex);
Takashi Iwai125821a2012-06-22 14:30:29 +02001581 if (is_put && spec->dyn_adc_switch) {
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001582 for (i = 0; i < spec->num_adc_nids; i++) {
1583 kcontrol->private_value =
1584 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1585 3, 0, HDA_INPUT);
1586 err = func(kcontrol, ucontrol);
1587 if (err < 0)
1588 goto error;
1589 }
1590 } else {
1591 i = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001592 if (spec->vol_in_capsrc)
1593 kcontrol->private_value =
1594 HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[i],
1595 3, 0, HDA_OUTPUT);
1596 else
1597 kcontrol->private_value =
Takashi Iwai21268962011-07-07 15:01:13 +02001598 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1599 3, 0, HDA_INPUT);
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001600 err = func(kcontrol, ucontrol);
1601 }
Takashi Iwai125821a2012-06-22 14:30:29 +02001602 if (err >= 0 && is_put)
1603 alc_inv_dmic_sync(codec, false);
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001604 error:
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001605 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001606 return err;
1607}
1608
1609static int alc_cap_vol_get(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_volume_get, false);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001614}
1615
1616static int alc_cap_vol_put(struct snd_kcontrol *kcontrol,
1617 struct snd_ctl_elem_value *ucontrol)
1618{
1619 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001620 snd_hda_mixer_amp_volume_put, true);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001621}
1622
1623/* capture mixer elements */
1624#define alc_cap_sw_info snd_ctl_boolean_stereo_info
1625
1626static int alc_cap_sw_get(struct snd_kcontrol *kcontrol,
1627 struct snd_ctl_elem_value *ucontrol)
1628{
1629 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001630 snd_hda_mixer_amp_switch_get, false);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001631}
1632
1633static int alc_cap_sw_put(struct snd_kcontrol *kcontrol,
1634 struct snd_ctl_elem_value *ucontrol)
1635{
1636 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001637 snd_hda_mixer_amp_switch_put, true);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001638}
1639
Takashi Iwaia23b6882009-03-23 15:21:36 +01001640#define _DEFINE_CAPMIX(num) \
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001641 { \
1642 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1643 .name = "Capture Switch", \
1644 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
1645 .count = num, \
1646 .info = alc_cap_sw_info, \
1647 .get = alc_cap_sw_get, \
1648 .put = alc_cap_sw_put, \
1649 }, \
1650 { \
1651 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1652 .name = "Capture Volume", \
1653 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | \
1654 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
1655 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK), \
1656 .count = num, \
1657 .info = alc_cap_vol_info, \
1658 .get = alc_cap_vol_get, \
1659 .put = alc_cap_vol_put, \
1660 .tlv = { .c = alc_cap_vol_tlv }, \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001661 }
1662
1663#define _DEFINE_CAPSRC(num) \
Takashi Iwai3c3e9892008-10-31 17:48:56 +01001664 { \
1665 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1666 /* .name = "Capture Source", */ \
1667 .name = "Input Source", \
1668 .count = num, \
1669 .info = alc_mux_enum_info, \
1670 .get = alc_mux_enum_get, \
1671 .put = alc_mux_enum_put, \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001672 }
1673
1674#define DEFINE_CAPMIX(num) \
Takashi Iwaia9111322011-05-02 11:30:18 +02001675static const struct snd_kcontrol_new alc_capture_mixer ## num[] = { \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001676 _DEFINE_CAPMIX(num), \
1677 _DEFINE_CAPSRC(num), \
1678 { } /* end */ \
1679}
1680
1681#define DEFINE_CAPMIX_NOSRC(num) \
Takashi Iwaia9111322011-05-02 11:30:18 +02001682static const struct snd_kcontrol_new alc_capture_mixer_nosrc ## num[] = { \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001683 _DEFINE_CAPMIX(num), \
1684 { } /* end */ \
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001685}
1686
1687/* up to three ADCs */
1688DEFINE_CAPMIX(1);
1689DEFINE_CAPMIX(2);
1690DEFINE_CAPMIX(3);
Takashi Iwaia23b6882009-03-23 15:21:36 +01001691DEFINE_CAPMIX_NOSRC(1);
1692DEFINE_CAPMIX_NOSRC(2);
1693DEFINE_CAPMIX_NOSRC(3);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001694
1695/*
Takashi Iwai125821a2012-06-22 14:30:29 +02001696 * Inverted digital-mic handling
1697 *
1698 * First off, it's a bit tricky. The "Inverted Internal Mic Capture Switch"
1699 * gives the additional mute only to the right channel of the digital mic
1700 * capture stream. This is a workaround for avoiding the almost silence
1701 * by summing the stereo stream from some (known to be ForteMedia)
1702 * digital mic unit.
1703 *
1704 * The logic is to call alc_inv_dmic_sync() after each action (possibly)
1705 * modifying ADC amp. When the mute flag is set, it mutes the R-channel
1706 * without caching so that the cache can still keep the original value.
1707 * The cached value is then restored when the flag is set off or any other
1708 * than d-mic is used as the current input source.
1709 */
1710static void alc_inv_dmic_sync(struct hda_codec *codec, bool force)
1711{
1712 struct alc_spec *spec = codec->spec;
1713 int i;
1714
1715 if (!spec->inv_dmic_fixup)
1716 return;
1717 if (!spec->inv_dmic_muted && !force)
1718 return;
1719 for (i = 0; i < spec->num_adc_nids; i++) {
1720 int src = spec->dyn_adc_switch ? 0 : i;
1721 bool dmic_fixup = false;
1722 hda_nid_t nid;
1723 int parm, dir, v;
1724
1725 if (spec->inv_dmic_muted &&
1726 spec->imux_pins[spec->cur_mux[src]] == spec->inv_dmic_pin)
1727 dmic_fixup = true;
1728 if (!dmic_fixup && !force)
1729 continue;
1730 if (spec->vol_in_capsrc) {
1731 nid = spec->capsrc_nids[i];
1732 parm = AC_AMP_SET_RIGHT | AC_AMP_SET_OUTPUT;
1733 dir = HDA_OUTPUT;
1734 } else {
1735 nid = spec->adc_nids[i];
1736 parm = AC_AMP_SET_RIGHT | AC_AMP_SET_INPUT;
1737 dir = HDA_INPUT;
1738 }
1739 /* we care only right channel */
1740 v = snd_hda_codec_amp_read(codec, nid, 1, dir, 0);
1741 if (v & 0x80) /* if already muted, we don't need to touch */
1742 continue;
1743 if (dmic_fixup) /* add mute for d-mic */
1744 v |= 0x80;
1745 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1746 parm | v);
1747 }
1748}
1749
1750static int alc_inv_dmic_sw_get(struct snd_kcontrol *kcontrol,
1751 struct snd_ctl_elem_value *ucontrol)
1752{
1753 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1754 struct alc_spec *spec = codec->spec;
1755
1756 ucontrol->value.integer.value[0] = !spec->inv_dmic_muted;
1757 return 0;
1758}
1759
1760static int alc_inv_dmic_sw_put(struct snd_kcontrol *kcontrol,
1761 struct snd_ctl_elem_value *ucontrol)
1762{
1763 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1764 struct alc_spec *spec = codec->spec;
1765 unsigned int val = !ucontrol->value.integer.value[0];
1766
1767 if (val == spec->inv_dmic_muted)
1768 return 0;
1769 spec->inv_dmic_muted = val;
1770 alc_inv_dmic_sync(codec, true);
1771 return 0;
1772}
1773
1774static const struct snd_kcontrol_new alc_inv_dmic_sw = {
1775 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1776 .info = snd_ctl_boolean_mono_info,
1777 .get = alc_inv_dmic_sw_get,
1778 .put = alc_inv_dmic_sw_put,
1779};
1780
1781static int alc_add_inv_dmic_mixer(struct hda_codec *codec, hda_nid_t nid)
1782{
1783 struct alc_spec *spec = codec->spec;
Takashi Iwai668d1e92012-11-29 14:10:17 +01001784
1785 if (!alc_kcontrol_new(spec, "Inverted Internal Mic Capture Switch",
1786 &alc_inv_dmic_sw))
Takashi Iwai125821a2012-06-22 14:30:29 +02001787 return -ENOMEM;
1788 spec->inv_dmic_fixup = 1;
1789 spec->inv_dmic_muted = 0;
1790 spec->inv_dmic_pin = nid;
1791 return 0;
1792}
1793
Takashi Iwai6e72aa52012-06-25 10:52:25 +02001794/* typically the digital mic is put at node 0x12 */
1795static void alc_fixup_inv_dmic_0x12(struct hda_codec *codec,
1796 const struct alc_fixup *fix, int action)
1797{
1798 if (action == ALC_FIXUP_ACT_PROBE)
1799 alc_add_inv_dmic_mixer(codec, 0x12);
1800}
1801
Takashi Iwai125821a2012-06-22 14:30:29 +02001802/*
Takashi Iwai2134ea42008-01-10 16:53:55 +01001803 * virtual master controls
1804 */
1805
1806/*
1807 * slave controls for virtual master
1808 */
Takashi Iwai9322ca52012-02-03 14:28:01 +01001809static const char * const alc_slave_pfxs[] = {
1810 "Front", "Surround", "Center", "LFE", "Side",
Takashi Iwai7c589752012-03-02 09:00:33 +01001811 "Headphone", "Speaker", "Mono", "Line Out",
Takashi Iwai9322ca52012-02-03 14:28:01 +01001812 "CLFE", "Bass Speaker", "PCM",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001813 NULL,
1814};
1815
1816/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001817 * build control elements
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 */
Takashi Iwai603c4012008-07-30 15:01:44 +02001819
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001820#define NID_MAPPING (-1)
1821
1822#define SUBDEV_SPEAKER_ (0 << 6)
1823#define SUBDEV_HP_ (1 << 6)
1824#define SUBDEV_LINE_ (2 << 6)
1825#define SUBDEV_SPEAKER(x) (SUBDEV_SPEAKER_ | ((x) & 0x3f))
1826#define SUBDEV_HP(x) (SUBDEV_HP_ | ((x) & 0x3f))
1827#define SUBDEV_LINE(x) (SUBDEV_LINE_ | ((x) & 0x3f))
1828
Takashi Iwai603c4012008-07-30 15:01:44 +02001829static void alc_free_kctls(struct hda_codec *codec);
1830
Takashi Iwai67d634c2009-11-16 15:35:59 +01001831#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001832/* additional beep mixers; the actual parameters are overwritten at build */
Takashi Iwaia9111322011-05-02 11:30:18 +02001833static const struct snd_kcontrol_new alc_beep_mixer[] = {
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001834 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
Jaroslav Kysela123c07a2009-10-21 14:48:23 +02001835 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001836 { } /* end */
1837};
Takashi Iwai67d634c2009-11-16 15:35:59 +01001838#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001839
Takashi Iwaif21d78e2012-01-19 12:10:29 +01001840static int __alc_build_controls(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841{
1842 struct alc_spec *spec = codec->spec;
Takashi Iwai2f44f842010-06-22 11:12:32 +02001843 struct snd_kcontrol *kctl = NULL;
Takashi Iwaia9111322011-05-02 11:30:18 +02001844 const struct snd_kcontrol_new *knew;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001845 int i, j, err;
1846 unsigned int u;
1847 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
1849 for (i = 0; i < spec->num_mixers; i++) {
1850 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1851 if (err < 0)
1852 return err;
1853 }
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001854 if (spec->cap_mixer) {
1855 err = snd_hda_add_new_ctls(codec, spec->cap_mixer);
1856 if (err < 0)
1857 return err;
1858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 if (spec->multiout.dig_out_nid) {
Takashi Iwaidcda5802012-10-12 17:24:51 +02001860 err = snd_hda_create_dig_out_ctls(codec,
1861 spec->multiout.dig_out_nid,
1862 spec->multiout.dig_out_nid,
1863 spec->pcm_rec[1].pcm_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 if (err < 0)
1865 return err;
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001866 if (!spec->no_analog) {
1867 err = snd_hda_create_spdif_share_sw(codec,
1868 &spec->multiout);
1869 if (err < 0)
1870 return err;
1871 spec->multiout.share_spdif = 1;
1872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 }
1874 if (spec->dig_in_nid) {
1875 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1876 if (err < 0)
1877 return err;
1878 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001879
Takashi Iwai67d634c2009-11-16 15:35:59 +01001880#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001881 /* create beep controls if needed */
1882 if (spec->beep_amp) {
Takashi Iwaia9111322011-05-02 11:30:18 +02001883 const struct snd_kcontrol_new *knew;
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001884 for (knew = alc_beep_mixer; knew->name; knew++) {
1885 struct snd_kcontrol *kctl;
1886 kctl = snd_ctl_new1(knew, codec);
1887 if (!kctl)
1888 return -ENOMEM;
1889 kctl->private_value = spec->beep_amp;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001890 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001891 if (err < 0)
1892 return err;
1893 }
1894 }
Takashi Iwai67d634c2009-11-16 15:35:59 +01001895#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001896
Takashi Iwai2134ea42008-01-10 16:53:55 +01001897 /* if we have no master control, let's create it */
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001898 if (!spec->no_analog &&
1899 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001900 unsigned int vmaster_tlv[4];
Takashi Iwai2134ea42008-01-10 16:53:55 +01001901 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001902 HDA_OUTPUT, vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001903 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
Takashi Iwai9322ca52012-02-03 14:28:01 +01001904 vmaster_tlv, alc_slave_pfxs,
1905 "Playback Volume");
Takashi Iwai2134ea42008-01-10 16:53:55 +01001906 if (err < 0)
1907 return err;
1908 }
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001909 if (!spec->no_analog &&
1910 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
Takashi Iwai420b0fe2012-03-12 12:35:27 +01001911 err = __snd_hda_add_vmaster(codec, "Master Playback Switch",
1912 NULL, alc_slave_pfxs,
1913 "Playback Switch",
Takashi Iwaid2f344b2012-03-12 16:59:58 +01001914 true, &spec->vmaster_mute.sw_kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001915 if (err < 0)
1916 return err;
1917 }
1918
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001919 /* assign Capture Source enums to NID */
Takashi Iwaifbe618f2010-06-11 11:24:58 +02001920 if (spec->capsrc_nids || spec->adc_nids) {
1921 kctl = snd_hda_find_mixer_ctl(codec, "Capture Source");
1922 if (!kctl)
1923 kctl = snd_hda_find_mixer_ctl(codec, "Input Source");
1924 for (i = 0; kctl && i < kctl->count; i++) {
Takashi Iwai61071592011-11-23 07:52:15 +01001925 err = snd_hda_add_nid(codec, kctl, i,
1926 get_capsrc(spec, i));
Takashi Iwaifbe618f2010-06-11 11:24:58 +02001927 if (err < 0)
1928 return err;
1929 }
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001930 }
Takashi Iwai60a6a842011-07-27 14:01:24 +02001931 if (spec->cap_mixer && spec->adc_nids) {
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001932 const char *kname = kctl ? kctl->id.name : NULL;
1933 for (knew = spec->cap_mixer; knew->name; knew++) {
1934 if (kname && strcmp(knew->name, kname) == 0)
1935 continue;
1936 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1937 for (i = 0; kctl && i < kctl->count; i++) {
1938 err = snd_hda_add_nid(codec, kctl, i,
1939 spec->adc_nids[i]);
1940 if (err < 0)
1941 return err;
1942 }
1943 }
1944 }
1945
1946 /* other nid->control mapping */
1947 for (i = 0; i < spec->num_mixers; i++) {
1948 for (knew = spec->mixers[i]; knew->name; knew++) {
1949 if (knew->iface != NID_MAPPING)
1950 continue;
1951 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1952 if (kctl == NULL)
1953 continue;
1954 u = knew->subdevice;
1955 for (j = 0; j < 4; j++, u >>= 8) {
1956 nid = u & 0x3f;
1957 if (nid == 0)
1958 continue;
1959 switch (u & 0xc0) {
1960 case SUBDEV_SPEAKER_:
1961 nid = spec->autocfg.speaker_pins[nid];
1962 break;
1963 case SUBDEV_LINE_:
1964 nid = spec->autocfg.line_out_pins[nid];
1965 break;
1966 case SUBDEV_HP_:
1967 nid = spec->autocfg.hp_pins[nid];
1968 break;
1969 default:
1970 continue;
1971 }
1972 err = snd_hda_add_nid(codec, kctl, 0, nid);
1973 if (err < 0)
1974 return err;
1975 }
1976 u = knew->private_value;
1977 for (j = 0; j < 4; j++, u >>= 8) {
1978 nid = u & 0xff;
1979 if (nid == 0)
1980 continue;
1981 err = snd_hda_add_nid(codec, kctl, 0, nid);
1982 if (err < 0)
1983 return err;
1984 }
1985 }
1986 }
Takashi Iwaibae84e72010-03-22 08:30:20 +01001987
1988 alc_free_kctls(codec); /* no longer needed */
1989
Takashi Iwaif21d78e2012-01-19 12:10:29 +01001990 return 0;
1991}
1992
David Henningsson5780b622012-06-27 18:45:45 +02001993static int alc_build_jacks(struct hda_codec *codec)
Takashi Iwaif21d78e2012-01-19 12:10:29 +01001994{
1995 struct alc_spec *spec = codec->spec;
David Henningsson5780b622012-06-27 18:45:45 +02001996
1997 if (spec->shared_mic_hp) {
1998 int err;
1999 int nid = spec->autocfg.inputs[1].pin;
2000 err = snd_hda_jack_add_kctl(codec, nid, "Headphone Mic", 0);
2001 if (err < 0)
2002 return err;
2003 err = snd_hda_jack_detect_enable(codec, nid, 0);
2004 if (err < 0)
2005 return err;
2006 }
2007
2008 return snd_hda_jack_add_kctls(codec, &spec->autocfg);
2009}
2010
2011static int alc_build_controls(struct hda_codec *codec)
2012{
Takashi Iwaif21d78e2012-01-19 12:10:29 +01002013 int err = __alc_build_controls(codec);
Takashi Iwai01a61e12011-10-28 00:03:22 +02002014 if (err < 0)
2015 return err;
David Henningsson5780b622012-06-27 18:45:45 +02002016
2017 err = alc_build_jacks(codec);
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002018 if (err < 0)
2019 return err;
2020 alc_apply_fixup(codec, ALC_FIXUP_ACT_BUILD);
2021 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022}
2023
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025/*
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002026 * Common callbacks
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002027 */
Takashi Iwai16ded522005-06-10 19:58:24 +02002028
Takashi Iwai584c0c42011-03-10 12:51:11 +01002029static void alc_init_special_input_src(struct hda_codec *codec);
Takashi Iwai070cff42012-02-21 12:54:17 +01002030static void alc_auto_init_std(struct hda_codec *codec);
Takashi Iwai584c0c42011-03-10 12:51:11 +01002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032static int alc_init(struct hda_codec *codec)
2033{
2034 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002035
Takashi Iwai546bb672012-03-07 08:37:19 +01002036 if (spec->init_hook)
2037 spec->init_hook(codec);
Kailang Yang526af6e2012-03-07 08:25:20 +01002038
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02002039 alc_fix_pll(codec);
Takashi Iwai4a79ba32009-04-22 16:31:35 +02002040 alc_auto_init_amp(codec, spec->init_amp);
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02002041
Takashi Iwai2e8b2b22012-06-13 16:47:32 +02002042 snd_hda_gen_apply_verbs(codec);
Takashi Iwai584c0c42011-03-10 12:51:11 +01002043 alc_init_special_input_src(codec);
Takashi Iwai070cff42012-02-21 12:54:17 +01002044 alc_auto_init_std(codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002045
Takashi Iwai58701122011-01-13 15:41:45 +01002046 alc_apply_fixup(codec, ALC_FIXUP_ACT_INIT);
2047
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002048 hda_call_check_power_status(codec, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 return 0;
2050}
2051
Takashi Iwai83012a72012-08-24 18:38:08 +02002052#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +02002053static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2054{
2055 struct alc_spec *spec = codec->spec;
2056 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2057}
2058#endif
2059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060/*
2061 * Analog playback callbacks
2062 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002063static int alc_playback_pcm_open(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002065 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
2067 struct alc_spec *spec = codec->spec;
Takashi Iwai9a081602008-02-12 18:37:26 +01002068 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2069 hinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070}
2071
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002072static int alc_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 struct hda_codec *codec,
2074 unsigned int stream_tag,
2075 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002076 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
2078 struct alc_spec *spec = codec->spec;
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002079 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2080 stream_tag, format, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081}
2082
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002083static int alc_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002085 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
2087 struct alc_spec *spec = codec->spec;
2088 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2089}
2090
2091/*
2092 * Digital out
2093 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002094static int alc_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002096 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
2098 struct alc_spec *spec = codec->spec;
2099 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2100}
2101
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002102static int alc_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002103 struct hda_codec *codec,
2104 unsigned int stream_tag,
2105 unsigned int format,
2106 struct snd_pcm_substream *substream)
2107{
2108 struct alc_spec *spec = codec->spec;
2109 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2110 stream_tag, format, substream);
2111}
2112
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002113static int alc_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
Takashi Iwai9b5f12e2009-02-13 11:47:37 +01002114 struct hda_codec *codec,
2115 struct snd_pcm_substream *substream)
2116{
2117 struct alc_spec *spec = codec->spec;
2118 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2119}
2120
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002121static int alc_dig_playback_pcm_close(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 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2127}
2128
2129/*
2130 * Analog capture
2131 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002132static int alc_alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 struct hda_codec *codec,
2134 unsigned int stream_tag,
2135 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002136 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
2138 struct alc_spec *spec = codec->spec;
2139
Takashi Iwai63300792008-01-24 15:31:36 +01002140 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 stream_tag, 0, format);
2142 return 0;
2143}
2144
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002145static int alc_alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002147 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
2149 struct alc_spec *spec = codec->spec;
2150
Takashi Iwai888afa12008-03-18 09:57:50 +01002151 snd_hda_codec_cleanup_stream(codec,
2152 spec->adc_nids[substream->number + 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 return 0;
2154}
2155
Takashi Iwai840b64c2010-07-13 22:49:01 +02002156/* analog capture with dynamic dual-adc changes */
Takashi Iwai21268962011-07-07 15:01:13 +02002157static int dyn_adc_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai840b64c2010-07-13 22:49:01 +02002158 struct hda_codec *codec,
2159 unsigned int stream_tag,
2160 unsigned int format,
2161 struct snd_pcm_substream *substream)
2162{
2163 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +02002164 spec->cur_adc = spec->adc_nids[spec->dyn_adc_idx[spec->cur_mux[0]]];
Takashi Iwai840b64c2010-07-13 22:49:01 +02002165 spec->cur_adc_stream_tag = stream_tag;
2166 spec->cur_adc_format = format;
2167 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
2168 return 0;
2169}
2170
Takashi Iwai21268962011-07-07 15:01:13 +02002171static int dyn_adc_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
Takashi Iwai840b64c2010-07-13 22:49:01 +02002172 struct hda_codec *codec,
2173 struct snd_pcm_substream *substream)
2174{
2175 struct alc_spec *spec = codec->spec;
2176 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
2177 spec->cur_adc = 0;
2178 return 0;
2179}
2180
Takashi Iwai21268962011-07-07 15:01:13 +02002181static const struct hda_pcm_stream dyn_adc_pcm_analog_capture = {
Takashi Iwai840b64c2010-07-13 22:49:01 +02002182 .substreams = 1,
2183 .channels_min = 2,
2184 .channels_max = 2,
2185 .nid = 0, /* fill later */
2186 .ops = {
Takashi Iwai21268962011-07-07 15:01:13 +02002187 .prepare = dyn_adc_capture_pcm_prepare,
2188 .cleanup = dyn_adc_capture_pcm_cleanup
Takashi Iwai840b64c2010-07-13 22:49:01 +02002189 },
2190};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
2192/*
2193 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002194static const struct hda_pcm_stream alc_pcm_analog_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 .substreams = 1,
2196 .channels_min = 2,
2197 .channels_max = 8,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002198 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002200 .open = alc_playback_pcm_open,
2201 .prepare = alc_playback_pcm_prepare,
2202 .cleanup = alc_playback_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 },
2204};
2205
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002206static const struct hda_pcm_stream alc_pcm_analog_capture = {
Takashi Iwai63300792008-01-24 15:31:36 +01002207 .substreams = 1,
2208 .channels_min = 2,
2209 .channels_max = 2,
2210 /* NID is set in alc_build_pcms */
2211};
2212
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002213static const struct hda_pcm_stream alc_pcm_analog_alt_playback = {
Takashi Iwai63300792008-01-24 15:31:36 +01002214 .substreams = 1,
2215 .channels_min = 2,
2216 .channels_max = 2,
2217 /* NID is set in alc_build_pcms */
2218};
2219
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002220static const struct hda_pcm_stream alc_pcm_analog_alt_capture = {
Takashi Iwai63300792008-01-24 15:31:36 +01002221 .substreams = 2, /* can be overridden */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 .channels_min = 2,
2223 .channels_max = 2,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002224 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002226 .prepare = alc_alt_capture_pcm_prepare,
2227 .cleanup = alc_alt_capture_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 },
2229};
2230
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002231static const struct hda_pcm_stream alc_pcm_digital_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 .substreams = 1,
2233 .channels_min = 2,
2234 .channels_max = 2,
2235 /* NID is set in alc_build_pcms */
2236 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002237 .open = alc_dig_playback_pcm_open,
2238 .close = alc_dig_playback_pcm_close,
2239 .prepare = alc_dig_playback_pcm_prepare,
2240 .cleanup = alc_dig_playback_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 },
2242};
2243
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002244static const struct hda_pcm_stream alc_pcm_digital_capture = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 .substreams = 1,
2246 .channels_min = 2,
2247 .channels_max = 2,
2248 /* NID is set in alc_build_pcms */
2249};
2250
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002251/* Used by alc_build_pcms to flag that a PCM has no playback stream */
Takashi Iwaia9111322011-05-02 11:30:18 +02002252static const struct hda_pcm_stream alc_pcm_null_stream = {
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002253 .substreams = 0,
2254 .channels_min = 0,
2255 .channels_max = 0,
2256};
2257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258static int alc_build_pcms(struct hda_codec *codec)
2259{
2260 struct alc_spec *spec = codec->spec;
2261 struct hda_pcm *info = spec->pcm_rec;
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002262 const struct hda_pcm_stream *p;
Takashi Iwai1fa17572011-11-02 21:30:51 +01002263 bool have_multi_adcs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 int i;
2265
2266 codec->num_pcms = 1;
2267 codec->pcm_info = info;
2268
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002269 if (spec->no_analog)
2270 goto skip_analog;
2271
Takashi Iwai812a2cc2009-05-16 10:00:49 +02002272 snprintf(spec->stream_name_analog, sizeof(spec->stream_name_analog),
2273 "%s Analog", codec->chip_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 info->name = spec->stream_name_analog;
Kailang Yang274693f2009-12-03 10:07:50 +01002275
Takashi Iwaieedec3d2012-02-06 10:24:04 +01002276 if (spec->multiout.num_dacs > 0) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002277 p = spec->stream_analog_playback;
2278 if (!p)
2279 p = &alc_pcm_analog_playback;
2280 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002281 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
Takashi Iwai9c9a5172012-07-31 11:35:35 +02002282 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
2283 spec->multiout.max_channels;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01002284 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT &&
2285 spec->autocfg.line_outs == 2)
2286 info->stream[SNDRV_PCM_STREAM_PLAYBACK].chmap =
2287 snd_pcm_2_1_chmaps;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002288 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002289 if (spec->adc_nids) {
2290 p = spec->stream_analog_capture;
Takashi Iwai21268962011-07-07 15:01:13 +02002291 if (!p) {
2292 if (spec->dyn_adc_switch)
2293 p = &dyn_adc_pcm_analog_capture;
2294 else
2295 p = &alc_pcm_analog_capture;
2296 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002297 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002298 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Takashi Iwai4a471b72005-12-07 13:56:29 +01002301 if (spec->channel_mode) {
2302 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2303 for (i = 0; i < spec->num_channel_mode; i++) {
2304 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2305 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 }
2308 }
2309
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002310 skip_analog:
Takashi Iwaie08a0072006-09-07 17:52:14 +02002311 /* SPDIF for stream index #1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
Takashi Iwai812a2cc2009-05-16 10:00:49 +02002313 snprintf(spec->stream_name_digital,
2314 sizeof(spec->stream_name_digital),
2315 "%s Digital", codec->chip_name);
Takashi Iwaie08a0072006-09-07 17:52:14 +02002316 codec->num_pcms = 2;
Wu Fengguangb25c9da2009-02-06 15:02:27 +08002317 codec->slave_dig_outs = spec->multiout.slave_dig_outs;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002318 info = spec->pcm_rec + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 info->name = spec->stream_name_digital;
Takashi Iwai8c441982009-01-20 18:30:20 +01002320 if (spec->dig_out_type)
2321 info->pcm_type = spec->dig_out_type;
2322 else
2323 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002324 if (spec->multiout.dig_out_nid) {
2325 p = spec->stream_digital_playback;
2326 if (!p)
2327 p = &alc_pcm_digital_playback;
2328 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2330 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002331 if (spec->dig_in_nid) {
2332 p = spec->stream_digital_capture;
2333 if (!p)
2334 p = &alc_pcm_digital_capture;
2335 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2337 }
Takashi Iwai963f8032008-08-11 10:04:40 +02002338 /* FIXME: do we need this for all Realtek codec models? */
2339 codec->spdif_status_reset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 }
2341
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002342 if (spec->no_analog)
2343 return 0;
2344
Takashi Iwaie08a0072006-09-07 17:52:14 +02002345 /* If the use of more than one ADC is requested for the current
2346 * model, configure a second analog capture-only PCM.
2347 */
Takashi Iwai1fa17572011-11-02 21:30:51 +01002348 have_multi_adcs = (spec->num_adc_nids > 1) &&
2349 !spec->dyn_adc_switch && !spec->auto_mic &&
2350 (!spec->input_mux || spec->input_mux->num_items > 1);
Takashi Iwaie08a0072006-09-07 17:52:14 +02002351 /* Additional Analaog capture for index #2 */
Takashi Iwai1fa17572011-11-02 21:30:51 +01002352 if (spec->alt_dac_nid || have_multi_adcs) {
Takashi Iwaie08a0072006-09-07 17:52:14 +02002353 codec->num_pcms = 3;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002354 info = spec->pcm_rec + 2;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002355 info->name = spec->stream_name_analog;
Takashi Iwai63300792008-01-24 15:31:36 +01002356 if (spec->alt_dac_nid) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002357 p = spec->stream_analog_alt_playback;
2358 if (!p)
2359 p = &alc_pcm_analog_alt_playback;
2360 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Takashi Iwai63300792008-01-24 15:31:36 +01002361 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2362 spec->alt_dac_nid;
2363 } else {
2364 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2365 alc_pcm_null_stream;
2366 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2367 }
Takashi Iwai1fa17572011-11-02 21:30:51 +01002368 if (have_multi_adcs) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002369 p = spec->stream_analog_alt_capture;
2370 if (!p)
2371 p = &alc_pcm_analog_alt_capture;
2372 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Takashi Iwai63300792008-01-24 15:31:36 +01002373 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
2374 spec->adc_nids[1];
2375 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
2376 spec->num_adc_nids - 1;
2377 } else {
2378 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2379 alc_pcm_null_stream;
2380 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002381 }
2382 }
2383
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 return 0;
2385}
2386
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002387static inline void alc_shutup(struct hda_codec *codec)
2388{
Takashi Iwai1c7161532011-04-07 10:37:16 +02002389 struct alc_spec *spec = codec->spec;
2390
2391 if (spec && spec->shutup)
2392 spec->shutup(codec);
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002393 snd_hda_shutup_pins(codec);
2394}
2395
Takashi Iwai603c4012008-07-30 15:01:44 +02002396static void alc_free_kctls(struct hda_codec *codec)
2397{
2398 struct alc_spec *spec = codec->spec;
2399
2400 if (spec->kctls.list) {
2401 struct snd_kcontrol_new *kctl = spec->kctls.list;
2402 int i;
2403 for (i = 0; i < spec->kctls.used; i++)
2404 kfree(kctl[i].name);
2405 }
2406 snd_array_free(&spec->kctls);
2407}
2408
Takashi Iwai23c09b02011-08-19 09:05:35 +02002409static void alc_free_bind_ctls(struct hda_codec *codec)
2410{
2411 struct alc_spec *spec = codec->spec;
2412 if (spec->bind_ctls.list) {
2413 struct hda_bind_ctls **ctl = spec->bind_ctls.list;
2414 int i;
2415 for (i = 0; i < spec->bind_ctls.used; i++)
2416 kfree(ctl[i]);
2417 }
2418 snd_array_free(&spec->bind_ctls);
2419}
2420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421static void alc_free(struct hda_codec *codec)
2422{
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002423 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002424
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002425 if (!spec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002426 return;
2427
Takashi Iwai603c4012008-07-30 15:01:44 +02002428 alc_free_kctls(codec);
Takashi Iwai23c09b02011-08-19 09:05:35 +02002429 alc_free_bind_ctls(codec);
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002430 snd_array_free(&spec->out_path);
Takashi Iwaiee48df52012-06-26 14:54:32 +02002431 snd_hda_gen_free(&spec->gen);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002432 kfree(spec);
Kusanagi Kouichi680cd532009-02-05 00:00:58 +09002433 snd_hda_detach_beep_device(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434}
2435
Takashi Iwai83012a72012-08-24 18:38:08 +02002436#ifdef CONFIG_PM
Daniel T Chenc97259d2009-12-27 18:52:08 -05002437static void alc_power_eapd(struct hda_codec *codec)
2438{
Takashi Iwai691f1fc2011-04-07 10:31:43 +02002439 alc_auto_setup_eapd(codec, false);
Daniel T Chenc97259d2009-12-27 18:52:08 -05002440}
2441
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002442static int alc_suspend(struct hda_codec *codec)
Hector Martinf5de24b2009-12-20 22:51:31 +01002443{
2444 struct alc_spec *spec = codec->spec;
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002445 alc_shutup(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +01002446 if (spec && spec->power_hook)
Daniel T Chenc97259d2009-12-27 18:52:08 -05002447 spec->power_hook(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +01002448 return 0;
2449}
2450#endif
2451
Takashi Iwai2a439522011-07-26 09:52:50 +02002452#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +01002453static int alc_resume(struct hda_codec *codec)
2454{
Takashi Iwai1c7161532011-04-07 10:37:16 +02002455 msleep(150); /* to avoid pop noise */
Takashi Iwaie044c392008-10-27 16:56:24 +01002456 codec->patch_ops.init(codec);
2457 snd_hda_codec_resume_amp(codec);
2458 snd_hda_codec_resume_cache(codec);
Takashi Iwai125821a2012-06-22 14:30:29 +02002459 alc_inv_dmic_sync(codec, true);
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002460 hda_call_check_power_status(codec, 0x01);
Takashi Iwaie044c392008-10-27 16:56:24 +01002461 return 0;
2462}
Takashi Iwaie044c392008-10-27 16:56:24 +01002463#endif
2464
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465/*
2466 */
Takashi Iwaia9111322011-05-02 11:30:18 +02002467static const struct hda_codec_ops alc_patch_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 .build_controls = alc_build_controls,
2469 .build_pcms = alc_build_pcms,
2470 .init = alc_init,
2471 .free = alc_free,
David Henningsson29adc4b2012-09-25 11:31:00 +02002472 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwai2a439522011-07-26 09:52:50 +02002473#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +01002474 .resume = alc_resume,
2475#endif
Takashi Iwai83012a72012-08-24 18:38:08 +02002476#ifdef CONFIG_PM
Hector Martinf5de24b2009-12-20 22:51:31 +01002477 .suspend = alc_suspend,
Takashi Iwaicb53c622007-08-10 17:21:45 +02002478 .check_power_status = alc_check_power_status,
2479#endif
Daniel T Chenc97259d2009-12-27 18:52:08 -05002480 .reboot_notify = alc_shutup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481};
2482
David Henningsson29adc4b2012-09-25 11:31:00 +02002483
Kailang Yangc027ddc2010-03-19 11:33:06 +01002484/* replace the codec chip_name with the given string */
2485static int alc_codec_rename(struct hda_codec *codec, const char *name)
2486{
2487 kfree(codec->chip_name);
2488 codec->chip_name = kstrdup(name, GFP_KERNEL);
2489 if (!codec->chip_name) {
2490 alc_free(codec);
2491 return -ENOMEM;
2492 }
2493 return 0;
2494}
2495
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002496/*
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002497 * Rename codecs appropriately from COEF value
2498 */
2499struct alc_codec_rename_table {
2500 unsigned int vendor_id;
2501 unsigned short coef_mask;
2502 unsigned short coef_bits;
2503 const char *name;
2504};
2505
2506static struct alc_codec_rename_table rename_tbl[] = {
2507 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
2508 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
2509 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
2510 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
2511 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
2512 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
2513 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
Kailang Yangadcc70b2012-05-25 08:08:38 +02002514 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002515 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
2516 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
2517 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
2518 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
2519 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
2520 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
2521 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
2522 { } /* terminator */
2523};
2524
2525static int alc_codec_rename_from_preset(struct hda_codec *codec)
2526{
2527 const struct alc_codec_rename_table *p;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002528
2529 for (p = rename_tbl; p->vendor_id; p++) {
2530 if (p->vendor_id != codec->vendor_id)
2531 continue;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02002532 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002533 return alc_codec_rename(codec, p->name);
2534 }
2535 return 0;
2536}
2537
2538/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002539 * Automatic parse of I/O pins from the BIOS configuration
2540 */
2541
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002542enum {
2543 ALC_CTL_WIDGET_VOL,
2544 ALC_CTL_WIDGET_MUTE,
2545 ALC_CTL_BIND_MUTE,
Takashi Iwai23c09b02011-08-19 09:05:35 +02002546 ALC_CTL_BIND_VOL,
2547 ALC_CTL_BIND_SW,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002548};
Takashi Iwai1d045db2011-07-07 18:23:21 +02002549static const struct snd_kcontrol_new alc_control_templates[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002550 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2551 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Takashi Iwai985be542005-11-02 18:26:49 +01002552 HDA_BIND_MUTE(NULL, 0, 0, 0),
Takashi Iwai23c09b02011-08-19 09:05:35 +02002553 HDA_BIND_VOL(NULL, 0),
2554 HDA_BIND_SW(NULL, 0),
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002555};
2556
2557/* add dynamic controls */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002558static int add_control(struct alc_spec *spec, int type, const char *name,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002559 int cidx, unsigned long val)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002560{
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002561 struct snd_kcontrol_new *knew;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002562
Takashi Iwai668d1e92012-11-29 14:10:17 +01002563 knew = alc_kcontrol_new(spec, name, &alc_control_templates[type]);
Takashi Iwai603c4012008-07-30 15:01:44 +02002564 if (!knew)
2565 return -ENOMEM;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002566 knew->index = cidx;
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002567 if (get_amp_nid_(val))
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002568 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002569 knew->private_value = val;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002570 return 0;
2571}
2572
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002573static int add_control_with_pfx(struct alc_spec *spec, int type,
2574 const char *pfx, const char *dir,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002575 const char *sfx, int cidx, unsigned long val)
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002576{
2577 char name[32];
2578 snprintf(name, sizeof(name), "%s %s %s", pfx, dir, sfx);
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002579 return add_control(spec, type, name, cidx, val);
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002580}
2581
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002582#define add_pb_vol_ctrl(spec, type, pfx, val) \
2583 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val)
2584#define add_pb_sw_ctrl(spec, type, pfx, val) \
2585 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val)
2586#define __add_pb_vol_ctrl(spec, type, pfx, cidx, val) \
2587 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val)
2588#define __add_pb_sw_ctrl(spec, type, pfx, cidx, val) \
2589 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val)
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002590
Takashi Iwai23c09b02011-08-19 09:05:35 +02002591static const char * const channel_name[4] = {
2592 "Front", "Surround", "CLFE", "Side"
2593};
2594
Takashi Iwai6843ca12011-06-24 11:03:58 +02002595static const char *alc_get_line_out_pfx(struct alc_spec *spec, int ch,
2596 bool can_be_master, int *index)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002597{
Takashi Iwaice764ab2011-04-27 16:35:23 +02002598 struct auto_pin_cfg *cfg = &spec->autocfg;
2599
Takashi Iwai6843ca12011-06-24 11:03:58 +02002600 *index = 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02002601 if (cfg->line_outs == 1 && !spec->multi_ios &&
2602 !cfg->hp_outs && !cfg->speaker_outs && can_be_master)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002603 return "Master";
2604
2605 switch (cfg->line_out_type) {
2606 case AUTO_PIN_SPEAKER_OUT:
David Henningssonebbeb3d2011-03-04 14:08:30 +01002607 if (cfg->line_outs == 1)
2608 return "Speaker";
Takashi Iwaifbabc242011-12-07 17:14:20 +01002609 if (cfg->line_outs == 2)
2610 return ch ? "Bass Speaker" : "Speaker";
David Henningssonebbeb3d2011-03-04 14:08:30 +01002611 break;
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002612 case AUTO_PIN_HP_OUT:
Takashi Iwai6843ca12011-06-24 11:03:58 +02002613 /* for multi-io case, only the primary out */
2614 if (ch && spec->multi_ios)
2615 break;
2616 *index = ch;
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002617 return "Headphone";
2618 default:
Takashi Iwaice764ab2011-04-27 16:35:23 +02002619 if (cfg->line_outs == 1 && !spec->multi_ios)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002620 return "PCM";
2621 break;
2622 }
David Henningsson71aa5eb2012-10-17 12:43:44 +02002623 if (ch >= ARRAY_SIZE(channel_name)) {
2624 snd_BUG();
Takashi Iwai23c09b02011-08-19 09:05:35 +02002625 return "PCM";
David Henningsson71aa5eb2012-10-17 12:43:44 +02002626 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02002627
2628 return channel_name[ch];
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002629}
2630
Takashi Iwai83012a72012-08-24 18:38:08 +02002631#ifdef CONFIG_PM
Takashi Iwai164f73e2012-02-21 11:27:09 +01002632/* add the powersave loopback-list entry */
2633static void add_loopback_list(struct alc_spec *spec, hda_nid_t mix, int idx)
2634{
2635 struct hda_amp_list *list;
2636
2637 if (spec->num_loopbacks >= ARRAY_SIZE(spec->loopback_list) - 1)
2638 return;
2639 list = spec->loopback_list + spec->num_loopbacks;
2640 list->nid = mix;
2641 list->dir = HDA_INPUT;
2642 list->idx = idx;
2643 spec->num_loopbacks++;
2644 spec->loopback.amplist = spec->loopback_list;
2645}
2646#else
2647#define add_loopback_list(spec, mix, idx) /* NOP */
2648#endif
2649
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002650/* create input playback/capture controls for the given pin */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002651static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002652 const char *ctlname, int ctlidx,
Kailang Yangdf694da2005-12-05 19:42:22 +01002653 int idx, hda_nid_t mix_nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002654{
Kailang Yangdf694da2005-12-05 19:42:22 +01002655 int err;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002656
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002657 err = __add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, ctlname, ctlidx,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002658 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2659 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002660 return err;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002661 err = __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, ctlidx,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002662 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2663 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002664 return err;
Takashi Iwai164f73e2012-02-21 11:27:09 +01002665 add_loopback_list(spec, mix_nid, idx);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002666 return 0;
2667}
2668
Takashi Iwai05f5f472009-08-25 13:10:18 +02002669static int alc_is_input_pin(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002670{
Takashi Iwai05f5f472009-08-25 13:10:18 +02002671 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2672 return (pincap & AC_PINCAP_IN) != 0;
2673}
2674
Takashi Iwai1d045db2011-07-07 18:23:21 +02002675/* Parse the codec tree and retrieve ADCs and corresponding capsrc MUXs */
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002676static int alc_auto_fill_adc_caps(struct hda_codec *codec)
Takashi Iwaib7821702011-07-06 15:12:46 +02002677{
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002678 struct alc_spec *spec = codec->spec;
Takashi Iwaib7821702011-07-06 15:12:46 +02002679 hda_nid_t nid;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002680 hda_nid_t *adc_nids = spec->private_adc_nids;
2681 hda_nid_t *cap_nids = spec->private_capsrc_nids;
2682 int max_nums = ARRAY_SIZE(spec->private_adc_nids);
Takashi Iwaib7821702011-07-06 15:12:46 +02002683 int i, nums = 0;
2684
2685 nid = codec->start_nid;
2686 for (i = 0; i < codec->num_nodes; i++, nid++) {
2687 hda_nid_t src;
Takashi Iwaib7821702011-07-06 15:12:46 +02002688 unsigned int caps = get_wcaps(codec, nid);
2689 int type = get_wcaps_type(caps);
2690
2691 if (type != AC_WID_AUD_IN || (caps & AC_WCAP_DIGITAL))
2692 continue;
2693 adc_nids[nums] = nid;
2694 cap_nids[nums] = nid;
2695 src = nid;
2696 for (;;) {
2697 int n;
2698 type = get_wcaps_type(get_wcaps(codec, src));
2699 if (type == AC_WID_PIN)
2700 break;
2701 if (type == AC_WID_AUD_SEL) {
2702 cap_nids[nums] = src;
2703 break;
2704 }
Takashi Iwai09cf03b2012-05-19 17:21:25 +02002705 n = snd_hda_get_num_conns(codec, src);
Takashi Iwaib7821702011-07-06 15:12:46 +02002706 if (n > 1) {
2707 cap_nids[nums] = src;
2708 break;
2709 } else if (n != 1)
2710 break;
Takashi Iwai09cf03b2012-05-19 17:21:25 +02002711 if (snd_hda_get_connections(codec, src, &src, 1) != 1)
2712 break;
Takashi Iwaib7821702011-07-06 15:12:46 +02002713 }
2714 if (++nums >= max_nums)
2715 break;
2716 }
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002717 spec->adc_nids = spec->private_adc_nids;
Takashi Iwai21268962011-07-07 15:01:13 +02002718 spec->capsrc_nids = spec->private_capsrc_nids;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002719 spec->num_adc_nids = nums;
Takashi Iwaib7821702011-07-06 15:12:46 +02002720 return nums;
2721}
2722
Takashi Iwai05f5f472009-08-25 13:10:18 +02002723/* create playback/capture controls for input pins */
Takashi Iwaib7821702011-07-06 15:12:46 +02002724static int alc_auto_create_input_ctls(struct hda_codec *codec)
Takashi Iwai05f5f472009-08-25 13:10:18 +02002725{
2726 struct alc_spec *spec = codec->spec;
Takashi Iwaib7821702011-07-06 15:12:46 +02002727 const struct auto_pin_cfg *cfg = &spec->autocfg;
2728 hda_nid_t mixer = spec->mixer_nid;
Herton Ronaldo Krzesinski61b9b9b2009-01-28 09:16:33 -02002729 struct hda_input_mux *imux = &spec->private_imux[0];
Takashi Iwaib7821702011-07-06 15:12:46 +02002730 int num_adcs;
Takashi Iwaib7821702011-07-06 15:12:46 +02002731 int i, c, err, idx, type_idx = 0;
David Henningsson5322bf22011-01-05 11:03:56 +01002732 const char *prev_label = NULL;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002733
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002734 num_adcs = alc_auto_fill_adc_caps(codec);
Takashi Iwaib7821702011-07-06 15:12:46 +02002735 if (num_adcs < 0)
2736 return 0;
2737
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002738 for (i = 0; i < cfg->num_inputs; i++) {
Takashi Iwai05f5f472009-08-25 13:10:18 +02002739 hda_nid_t pin;
Takashi Iwai10a20af2010-09-09 16:28:02 +02002740 const char *label;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002741
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002742 pin = cfg->inputs[i].pin;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002743 if (!alc_is_input_pin(codec, pin))
2744 continue;
2745
David Henningsson5322bf22011-01-05 11:03:56 +01002746 label = hda_get_autocfg_input_label(codec, cfg, i);
Takashi Iwai24de1832011-11-07 17:13:39 +01002747 if (spec->shared_mic_hp && !strcmp(label, "Misc"))
2748 label = "Headphone Mic";
David Henningsson5322bf22011-01-05 11:03:56 +01002749 if (prev_label && !strcmp(label, prev_label))
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002750 type_idx++;
2751 else
2752 type_idx = 0;
David Henningsson5322bf22011-01-05 11:03:56 +01002753 prev_label = label;
2754
Takashi Iwai05f5f472009-08-25 13:10:18 +02002755 if (mixer) {
2756 idx = get_connection_index(codec, mixer, pin);
2757 if (idx >= 0) {
2758 err = new_analog_input(spec, pin,
Takashi Iwai10a20af2010-09-09 16:28:02 +02002759 label, type_idx,
2760 idx, mixer);
Takashi Iwai05f5f472009-08-25 13:10:18 +02002761 if (err < 0)
2762 return err;
2763 }
2764 }
2765
Takashi Iwaib7821702011-07-06 15:12:46 +02002766 for (c = 0; c < num_adcs; c++) {
Takashi Iwai61071592011-11-23 07:52:15 +01002767 hda_nid_t cap = get_capsrc(spec, c);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002768 idx = get_connection_index(codec, cap, pin);
Takashi Iwaib7821702011-07-06 15:12:46 +02002769 if (idx >= 0) {
Takashi Iwai21268962011-07-07 15:01:13 +02002770 spec->imux_pins[imux->num_items] = pin;
Takashi Iwaib7821702011-07-06 15:12:46 +02002771 snd_hda_add_imux_item(imux, label, idx, NULL);
2772 break;
2773 }
2774 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002775 }
Takashi Iwai21268962011-07-07 15:01:13 +02002776
2777 spec->num_mux_defs = 1;
2778 spec->input_mux = imux;
2779
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002780 return 0;
2781}
2782
Takashi Iwai24de1832011-11-07 17:13:39 +01002783/* create a shared input with the headphone out */
2784static int alc_auto_create_shared_input(struct hda_codec *codec)
2785{
2786 struct alc_spec *spec = codec->spec;
2787 struct auto_pin_cfg *cfg = &spec->autocfg;
2788 unsigned int defcfg;
2789 hda_nid_t nid;
2790
2791 /* only one internal input pin? */
2792 if (cfg->num_inputs != 1)
2793 return 0;
2794 defcfg = snd_hda_codec_get_pincfg(codec, cfg->inputs[0].pin);
2795 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
2796 return 0;
2797
2798 if (cfg->hp_outs == 1 && cfg->line_out_type == AUTO_PIN_SPEAKER_OUT)
2799 nid = cfg->hp_pins[0]; /* OK, we have a single HP-out */
2800 else if (cfg->line_outs == 1 && cfg->line_out_type == AUTO_PIN_HP_OUT)
2801 nid = cfg->line_out_pins[0]; /* OK, we have a single line-out */
2802 else
2803 return 0; /* both not available */
2804
2805 if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_IN))
2806 return 0; /* no input */
2807
2808 cfg->inputs[1].pin = nid;
2809 cfg->inputs[1].type = AUTO_PIN_MIC;
2810 cfg->num_inputs = 2;
2811 spec->shared_mic_hp = 1;
2812 snd_printdd("realtek: Enable shared I/O jack on NID 0x%x\n", nid);
2813 return 0;
2814}
2815
Takashi Iwaif6c7e542008-02-12 18:32:23 +01002816static void alc_set_pin_output(struct hda_codec *codec, hda_nid_t nid,
2817 unsigned int pin_type)
2818{
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02002819 snd_hda_set_pin_ctl(codec, nid, pin_type);
Takashi Iwaif6c7e542008-02-12 18:32:23 +01002820 /* unmute pin */
Takashi Iwai44c02402011-07-08 15:14:19 +02002821 if (nid_has_mute(codec, nid, HDA_OUTPUT))
2822 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaid260cdf2008-02-13 17:19:35 +01002823 AMP_OUT_UNMUTE);
Takashi Iwaif6c7e542008-02-12 18:32:23 +01002824}
2825
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02002826static int get_pin_type(int line_out_type)
2827{
2828 if (line_out_type == AUTO_PIN_HP_OUT)
2829 return PIN_HP;
2830 else
2831 return PIN_OUT;
2832}
2833
Takashi Iwai0a7f5322011-07-06 15:15:12 +02002834static void alc_auto_init_analog_input(struct hda_codec *codec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002835{
2836 struct alc_spec *spec = codec->spec;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002837 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002838 int i;
2839
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002840 for (i = 0; i < cfg->num_inputs; i++) {
2841 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002842 if (alc_is_input_pin(codec, nid)) {
Takashi Iwai30ea0982010-09-16 18:47:56 +02002843 alc_set_input_pin(codec, nid, cfg->inputs[i].type);
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002844 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002845 snd_hda_codec_write(codec, nid, 0,
2846 AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002847 AMP_OUT_MUTE);
2848 }
2849 }
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002850
2851 /* mute all loopback inputs */
2852 if (spec->mixer_nid) {
Takashi Iwai09cf03b2012-05-19 17:21:25 +02002853 int nums = snd_hda_get_num_conns(codec, spec->mixer_nid);
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002854 for (i = 0; i < nums; i++)
2855 snd_hda_codec_write(codec, spec->mixer_nid, 0,
2856 AC_VERB_SET_AMP_GAIN_MUTE,
2857 AMP_IN_MUTE(i));
2858 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002859}
2860
Takashi Iwai7085ec12009-10-02 09:03:58 +02002861/* convert from MIX nid to DAC */
Takashi Iwai604401a2011-04-27 15:14:23 +02002862static hda_nid_t alc_auto_mix_to_dac(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002863{
Takashi Iwai604401a2011-04-27 15:14:23 +02002864 hda_nid_t list[5];
Takashi Iwai1304ac82011-04-06 15:16:21 +02002865 int i, num;
2866
Takashi Iwaiafcd5512011-07-08 11:07:59 +02002867 if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_AUD_OUT)
2868 return nid;
Takashi Iwai1304ac82011-04-06 15:16:21 +02002869 num = snd_hda_get_connections(codec, nid, list, ARRAY_SIZE(list));
2870 for (i = 0; i < num; i++) {
2871 if (get_wcaps_type(get_wcaps(codec, list[i])) == AC_WID_AUD_OUT)
2872 return list[i];
2873 }
2874 return 0;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002875}
2876
Takashi Iwai604401a2011-04-27 15:14:23 +02002877/* go down to the selector widget before the mixer */
2878static hda_nid_t alc_go_down_to_selector(struct hda_codec *codec, hda_nid_t pin)
2879{
2880 hda_nid_t srcs[5];
2881 int num = snd_hda_get_connections(codec, pin, srcs,
2882 ARRAY_SIZE(srcs));
2883 if (num != 1 ||
2884 get_wcaps_type(get_wcaps(codec, srcs[0])) != AC_WID_AUD_SEL)
2885 return pin;
2886 return srcs[0];
2887}
2888
Takashi Iwai7085ec12009-10-02 09:03:58 +02002889/* get MIX nid connected to the given pin targeted to DAC */
Takashi Iwai604401a2011-04-27 15:14:23 +02002890static hda_nid_t alc_auto_dac_to_mix(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai7085ec12009-10-02 09:03:58 +02002891 hda_nid_t dac)
2892{
David Henningssoncc1c4522010-11-24 14:17:47 +01002893 hda_nid_t mix[5];
Takashi Iwai7085ec12009-10-02 09:03:58 +02002894 int i, num;
2895
Takashi Iwai604401a2011-04-27 15:14:23 +02002896 pin = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002897 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2898 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02002899 if (alc_auto_mix_to_dac(codec, mix[i]) == dac)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002900 return mix[i];
2901 }
2902 return 0;
2903}
2904
Takashi Iwaice764ab2011-04-27 16:35:23 +02002905/* select the connection from pin to DAC if needed */
2906static int alc_auto_select_dac(struct hda_codec *codec, hda_nid_t pin,
2907 hda_nid_t dac)
2908{
2909 hda_nid_t mix[5];
2910 int i, num;
2911
2912 pin = alc_go_down_to_selector(codec, pin);
2913 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2914 if (num < 2)
2915 return 0;
2916 for (i = 0; i < num; i++) {
2917 if (alc_auto_mix_to_dac(codec, mix[i]) == dac) {
2918 snd_hda_codec_update_cache(codec, pin, 0,
2919 AC_VERB_SET_CONNECT_SEL, i);
2920 return 0;
2921 }
2922 }
2923 return 0;
2924}
2925
Takashi Iwai185d99f2012-02-16 18:39:45 +01002926static bool alc_is_dac_already_used(struct hda_codec *codec, hda_nid_t nid)
2927{
2928 struct alc_spec *spec = codec->spec;
Takashi Iwai276dd702012-02-17 16:17:03 +01002929 int i;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002930
2931 for (i = 0; i < spec->out_path.used; i++) {
2932 struct nid_path *path = snd_array_elem(&spec->out_path, i);
2933 if (path->path[0] == nid)
Takashi Iwai276dd702012-02-17 16:17:03 +01002934 return true;
2935 }
Takashi Iwai185d99f2012-02-16 18:39:45 +01002936 return false;
2937}
2938
Takashi Iwai07b18f62011-11-10 15:42:54 +01002939/* check whether the DAC is reachable from the pin */
2940static bool alc_auto_is_dac_reachable(struct hda_codec *codec,
2941 hda_nid_t pin, hda_nid_t dac)
2942{
Takashi Iwaidc31b582012-02-17 17:27:53 +01002943 if (!pin || !dac)
2944 return false;
Takashi Iwai6a84c302012-12-05 14:08:45 +01002945 return snd_hda_get_conn_index(codec, pin, dac, true) >= 0;
Takashi Iwai07b18f62011-11-10 15:42:54 +01002946}
2947
Takashi Iwai463419d2012-12-05 14:17:37 +01002948/* look for an empty DAC slot */
2949static hda_nid_t alc_auto_look_for_dac(struct hda_codec *codec, hda_nid_t pin)
2950{
2951 struct alc_spec *spec = codec->spec;
2952 int i;
2953
2954 for (i = 0; i < spec->num_all_dacs; i++) {
2955 hda_nid_t nid = spec->all_dacs[i];
2956 if (!nid || alc_is_dac_already_used(codec, nid))
2957 continue;
2958 if (alc_auto_is_dac_reachable(codec, pin, nid))
2959 return nid;
2960 }
2961 return 0;
2962}
2963
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002964/* called recursively */
2965static bool __parse_output_path(struct hda_codec *codec, hda_nid_t nid,
2966 hda_nid_t target_dac, int with_aa_mix,
2967 struct nid_path *path, int depth)
2968{
2969 struct alc_spec *spec = codec->spec;
2970 hda_nid_t conn[8];
2971 int i, nums;
2972
2973 if (nid == spec->mixer_nid) {
2974 if (!with_aa_mix)
2975 return false;
2976 with_aa_mix = 2; /* mark aa-mix is included */
2977 }
2978
2979 nums = snd_hda_get_connections(codec, nid, conn, ARRAY_SIZE(conn));
2980 for (i = 0; i < nums; i++) {
2981 if (get_wcaps_type(get_wcaps(codec, conn[i])) != AC_WID_AUD_OUT)
2982 continue;
2983 if (conn[i] == target_dac ||
2984 (!target_dac && !alc_is_dac_already_used(codec, conn[i]))) {
2985 /* aa-mix is requested but not included? */
2986 if (!(spec->mixer_nid && with_aa_mix == 1))
2987 goto found;
2988 }
2989 }
2990 if (depth >= MAX_NID_PATH_DEPTH)
2991 return false;
2992 for (i = 0; i < nums; i++) {
2993 unsigned int type;
2994 type = get_wcaps_type(get_wcaps(codec, conn[i]));
2995 if (type == AC_WID_AUD_OUT)
2996 continue;
2997 if (__parse_output_path(codec, conn[i], target_dac,
2998 with_aa_mix, path, depth + 1))
2999 goto found;
3000 }
3001 return false;
3002
3003 found:
3004 path->path[path->depth] = conn[i];
3005 path->idx[path->depth] = i;
3006 if (nums > 1 && get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_AUD_MIX)
3007 path->multi[path->depth] = 1;
3008 path->depth++;
3009 return true;
3010}
3011
3012/* parse the output path from the given nid to the target DAC;
3013 * when target_dac is 0, try to find an empty DAC;
3014 * when with_aa_mix is 0, paths with spec->mixer_nid are excluded
3015 */
3016static bool parse_output_path(struct hda_codec *codec, hda_nid_t nid,
3017 hda_nid_t target_dac, int with_aa_mix,
3018 struct nid_path *path)
3019{
3020 if (__parse_output_path(codec, nid, target_dac, with_aa_mix, path, 1)) {
3021 path->path[path->depth] = nid;
3022 path->depth++;
3023#if 0
3024 snd_printdd("output-path: depth=%d, %02x/%02x/%02x/%02x/%02x\n",
3025 path->depth, path->path[0], path->path[1],
3026 path->path[2], path->path[3], path->path[4]);
3027#endif
3028 return true;
3029 }
3030 return false;
3031}
3032
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003033static hda_nid_t get_dac_if_single(struct hda_codec *codec, hda_nid_t pin)
3034{
Takashi Iwai140547e2012-02-16 17:23:46 +01003035 struct alc_spec *spec = codec->spec;
Takashi Iwai463419d2012-12-05 14:17:37 +01003036 int i;
3037 hda_nid_t nid_found = 0;
3038
3039 for (i = 0; i < spec->num_all_dacs; i++) {
3040 hda_nid_t nid = spec->all_dacs[i];
3041 if (!nid || alc_is_dac_already_used(codec, nid))
Takashi Iwai185d99f2012-02-16 18:39:45 +01003042 continue;
Takashi Iwai463419d2012-12-05 14:17:37 +01003043 if (alc_auto_is_dac_reachable(codec, pin, nid)) {
Takashi Iwai185d99f2012-02-16 18:39:45 +01003044 if (nid_found)
3045 return 0;
3046 nid_found = nid;
3047 }
3048 }
3049 return nid_found;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003050}
3051
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003052/* mark up volume and mute control NIDs: used during badness parsing and
3053 * at creating actual controls
3054 */
3055static inline unsigned int get_ctl_pos(unsigned int data)
3056{
3057 hda_nid_t nid = get_amp_nid_(data);
3058 unsigned int dir;
3059 if (snd_BUG_ON(nid >= MAX_VOL_NIDS))
3060 return 0;
3061 dir = get_amp_direction_(data);
3062 return (nid << 1) | dir;
3063}
3064
3065#define is_ctl_used(bits, data) \
3066 test_bit(get_ctl_pos(data), bits)
3067#define mark_ctl_usage(bits, data) \
3068 set_bit(get_ctl_pos(data), bits)
3069
3070static void clear_vol_marks(struct hda_codec *codec)
3071{
3072 struct alc_spec *spec = codec->spec;
3073 memset(spec->vol_ctls, 0, sizeof(spec->vol_ctls));
3074 memset(spec->sw_ctls, 0, sizeof(spec->sw_ctls));
3075}
3076
3077/* badness definition */
3078enum {
3079 /* No primary DAC is found for the main output */
3080 BAD_NO_PRIMARY_DAC = 0x10000,
3081 /* No DAC is found for the extra output */
3082 BAD_NO_DAC = 0x4000,
Takashi Iwai276dd702012-02-17 16:17:03 +01003083 /* No possible multi-ios */
3084 BAD_MULTI_IO = 0x103,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003085 /* No individual DAC for extra output */
Takashi Iwai276dd702012-02-17 16:17:03 +01003086 BAD_NO_EXTRA_DAC = 0x102,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003087 /* No individual DAC for extra surrounds */
Takashi Iwai276dd702012-02-17 16:17:03 +01003088 BAD_NO_EXTRA_SURR_DAC = 0x101,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003089 /* Primary DAC shared with main surrounds */
3090 BAD_SHARED_SURROUND = 0x100,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003091 /* Primary DAC shared with main CLFE */
3092 BAD_SHARED_CLFE = 0x10,
3093 /* Primary DAC shared with extra surrounds */
3094 BAD_SHARED_EXTRA_SURROUND = 0x10,
Takashi Iwai276dd702012-02-17 16:17:03 +01003095 /* Volume widget is shared */
3096 BAD_SHARED_VOL = 0x10,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003097};
3098
3099static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
3100 hda_nid_t pin, hda_nid_t dac);
3101static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
3102 hda_nid_t pin, hda_nid_t dac);
3103
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003104static bool add_new_out_path(struct hda_codec *codec, hda_nid_t pin,
3105 hda_nid_t dac)
3106{
3107 struct alc_spec *spec = codec->spec;
3108 struct nid_path *path;
3109
3110 path = snd_array_new(&spec->out_path);
3111 if (!path)
3112 return false;
3113 memset(path, 0, sizeof(*path));
3114 if (parse_output_path(codec, pin, dac, 0, path))
3115 return true;
3116 /* push back */
3117 spec->out_path.used--;
3118 return false;
3119}
3120
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003121static int eval_shared_vol_badness(struct hda_codec *codec, hda_nid_t pin,
3122 hda_nid_t dac)
3123{
3124 struct alc_spec *spec = codec->spec;
3125 hda_nid_t nid;
3126 unsigned int val;
3127 int badness = 0;
3128
3129 nid = alc_look_for_out_vol_nid(codec, pin, dac);
3130 if (nid) {
3131 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3132 if (is_ctl_used(spec->vol_ctls, nid))
3133 badness += BAD_SHARED_VOL;
3134 else
3135 mark_ctl_usage(spec->vol_ctls, val);
3136 } else
3137 badness += BAD_SHARED_VOL;
3138 nid = alc_look_for_out_mute_nid(codec, pin, dac);
3139 if (nid) {
3140 unsigned int wid_type = get_wcaps_type(get_wcaps(codec, nid));
3141 if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT)
3142 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3143 else
3144 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT);
3145 if (is_ctl_used(spec->sw_ctls, val))
3146 badness += BAD_SHARED_VOL;
3147 else
3148 mark_ctl_usage(spec->sw_ctls, val);
3149 } else
3150 badness += BAD_SHARED_VOL;
3151 return badness;
3152}
3153
Takashi Iwaidc31b582012-02-17 17:27:53 +01003154struct badness_table {
3155 int no_primary_dac; /* no primary DAC */
3156 int no_dac; /* no secondary DACs */
3157 int shared_primary; /* primary DAC is shared with main output */
3158 int shared_surr; /* secondary DAC shared with main or primary */
3159 int shared_clfe; /* third DAC shared with main or primary */
3160 int shared_surr_main; /* secondary DAC sahred with main/DAC0 */
3161};
3162
3163static struct badness_table main_out_badness = {
3164 .no_primary_dac = BAD_NO_PRIMARY_DAC,
3165 .no_dac = BAD_NO_DAC,
3166 .shared_primary = BAD_NO_PRIMARY_DAC,
3167 .shared_surr = BAD_SHARED_SURROUND,
3168 .shared_clfe = BAD_SHARED_CLFE,
3169 .shared_surr_main = BAD_SHARED_SURROUND,
3170};
3171
3172static struct badness_table extra_out_badness = {
3173 .no_primary_dac = BAD_NO_DAC,
3174 .no_dac = BAD_NO_DAC,
3175 .shared_primary = BAD_NO_EXTRA_DAC,
3176 .shared_surr = BAD_SHARED_EXTRA_SURROUND,
3177 .shared_clfe = BAD_SHARED_EXTRA_SURROUND,
3178 .shared_surr_main = BAD_NO_EXTRA_SURR_DAC,
3179};
3180
3181/* try to assign DACs to pins and return the resultant badness */
3182static int alc_auto_fill_dacs(struct hda_codec *codec, int num_outs,
3183 const hda_nid_t *pins, hda_nid_t *dacs,
3184 const struct badness_table *bad)
Takashi Iwaic2674682011-08-24 17:57:44 +02003185{
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003186 struct alc_spec *spec = codec->spec;
Takashi Iwaidc31b582012-02-17 17:27:53 +01003187 struct auto_pin_cfg *cfg = &spec->autocfg;
3188 int i, j;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003189 int badness = 0;
3190 hda_nid_t dac;
Takashi Iwaic2674682011-08-24 17:57:44 +02003191
Takashi Iwai185d99f2012-02-16 18:39:45 +01003192 if (!num_outs)
3193 return 0;
3194
Takashi Iwaidc31b582012-02-17 17:27:53 +01003195 for (i = 0; i < num_outs; i++) {
3196 hda_nid_t pin = pins[i];
3197 if (!dacs[i])
3198 dacs[i] = alc_auto_look_for_dac(codec, pin);
3199 if (!dacs[i] && !i) {
3200 for (j = 1; j < num_outs; j++) {
3201 if (alc_auto_is_dac_reachable(codec, pin, dacs[j])) {
3202 dacs[0] = dacs[j];
3203 dacs[j] = 0;
3204 break;
3205 }
Takashi Iwai185d99f2012-02-16 18:39:45 +01003206 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003207 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003208 dac = dacs[i];
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003209 if (!dac) {
Takashi Iwaidc31b582012-02-17 17:27:53 +01003210 if (alc_auto_is_dac_reachable(codec, pin, dacs[0]))
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003211 dac = dacs[0];
Takashi Iwaidc31b582012-02-17 17:27:53 +01003212 else if (cfg->line_outs > i &&
3213 alc_auto_is_dac_reachable(codec, pin,
3214 spec->private_dac_nids[i]))
3215 dac = spec->private_dac_nids[i];
3216 if (dac) {
3217 if (!i)
3218 badness += bad->shared_primary;
3219 else if (i == 1)
3220 badness += bad->shared_surr;
3221 else
3222 badness += bad->shared_clfe;
3223 } else if (alc_auto_is_dac_reachable(codec, pin,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003224 spec->private_dac_nids[0])) {
3225 dac = spec->private_dac_nids[0];
Takashi Iwaidc31b582012-02-17 17:27:53 +01003226 badness += bad->shared_surr_main;
3227 } else if (!i)
3228 badness += bad->no_primary_dac;
3229 else
3230 badness += bad->no_dac;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003231 }
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003232 if (!add_new_out_path(codec, pin, dac))
3233 dac = dacs[i] = 0;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003234 if (dac)
Takashi Iwaidc31b582012-02-17 17:27:53 +01003235 badness += eval_shared_vol_badness(codec, pin, dac);
Takashi Iwaic2674682011-08-24 17:57:44 +02003236 }
Takashi Iwaidc31b582012-02-17 17:27:53 +01003237
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003238 return badness;
Takashi Iwaic2674682011-08-24 17:57:44 +02003239}
3240
3241static int alc_auto_fill_multi_ios(struct hda_codec *codec,
Takashi Iwai276dd702012-02-17 16:17:03 +01003242 hda_nid_t reference_pin,
3243 bool hardwired, int offset);
Takashi Iwaic2674682011-08-24 17:57:44 +02003244
Takashi Iwai185d99f2012-02-16 18:39:45 +01003245static bool alc_map_singles(struct hda_codec *codec, int outs,
3246 const hda_nid_t *pins, hda_nid_t *dacs)
3247{
3248 int i;
3249 bool found = false;
3250 for (i = 0; i < outs; i++) {
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003251 hda_nid_t dac;
Takashi Iwai185d99f2012-02-16 18:39:45 +01003252 if (dacs[i])
3253 continue;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003254 dac = get_dac_if_single(codec, pins[i]);
3255 if (!dac)
3256 continue;
3257 if (add_new_out_path(codec, pins[i], dac)) {
3258 dacs[i] = dac;
Takashi Iwai185d99f2012-02-16 18:39:45 +01003259 found = true;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003260 }
Takashi Iwai185d99f2012-02-16 18:39:45 +01003261 }
3262 return found;
3263}
3264
Takashi Iwai7085ec12009-10-02 09:03:58 +02003265/* fill in the dac_nids table from the parsed pin configuration */
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003266static int fill_and_eval_dacs(struct hda_codec *codec,
Takashi Iwai276dd702012-02-17 16:17:03 +01003267 bool fill_hardwired,
3268 bool fill_mio_first)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003269{
3270 struct alc_spec *spec = codec->spec;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003271 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaidc31b582012-02-17 17:27:53 +01003272 int i, err, badness;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003273
Takashi Iwai8f398ae2011-07-23 18:57:11 +02003274 /* set num_dacs once to full for alc_auto_look_for_dac() */
3275 spec->multiout.num_dacs = cfg->line_outs;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003276 spec->multiout.dac_nids = spec->private_dac_nids;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003277 memset(spec->private_dac_nids, 0, sizeof(spec->private_dac_nids));
3278 memset(spec->multiout.hp_out_nid, 0, sizeof(spec->multiout.hp_out_nid));
3279 memset(spec->multiout.extra_out_nid, 0, sizeof(spec->multiout.extra_out_nid));
Takashi Iwai0a34b422011-12-07 17:20:30 +01003280 spec->multi_ios = 0;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003281 snd_array_free(&spec->out_path);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003282 clear_vol_marks(codec);
3283 badness = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003284
3285 /* fill hard-wired DACs first */
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003286 if (fill_hardwired) {
Takashi Iwai185d99f2012-02-16 18:39:45 +01003287 bool mapped;
3288 do {
3289 mapped = alc_map_singles(codec, cfg->line_outs,
Takashi Iwai276dd702012-02-17 16:17:03 +01003290 cfg->line_out_pins,
3291 spec->private_dac_nids);
Takashi Iwai185d99f2012-02-16 18:39:45 +01003292 mapped |= alc_map_singles(codec, cfg->hp_outs,
3293 cfg->hp_pins,
3294 spec->multiout.hp_out_nid);
3295 mapped |= alc_map_singles(codec, cfg->speaker_outs,
3296 cfg->speaker_pins,
3297 spec->multiout.extra_out_nid);
Takashi Iwai276dd702012-02-17 16:17:03 +01003298 if (fill_mio_first && cfg->line_outs == 1 &&
3299 cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3300 err = alc_auto_fill_multi_ios(codec, cfg->line_out_pins[0], true, 0);
3301 if (!err)
3302 mapped = true;
3303 }
Takashi Iwai185d99f2012-02-16 18:39:45 +01003304 } while (mapped);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003305 }
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003306
Takashi Iwaidc31b582012-02-17 17:27:53 +01003307 badness += alc_auto_fill_dacs(codec, cfg->line_outs, cfg->line_out_pins,
3308 spec->private_dac_nids,
3309 &main_out_badness);
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003310
Takashi Iwai8f398ae2011-07-23 18:57:11 +02003311 /* re-count num_dacs and squash invalid entries */
3312 spec->multiout.num_dacs = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003313 for (i = 0; i < cfg->line_outs; i++) {
3314 if (spec->private_dac_nids[i])
3315 spec->multiout.num_dacs++;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003316 else {
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003317 memmove(spec->private_dac_nids + i,
3318 spec->private_dac_nids + i + 1,
3319 sizeof(hda_nid_t) * (cfg->line_outs - i - 1));
Takashi Iwai0a34b422011-12-07 17:20:30 +01003320 spec->private_dac_nids[cfg->line_outs - 1] = 0;
3321 }
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003322 }
3323
Takashi Iwai276dd702012-02-17 16:17:03 +01003324 if (fill_mio_first &&
3325 cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaic2674682011-08-24 17:57:44 +02003326 /* try to fill multi-io first */
Takashi Iwai276dd702012-02-17 16:17:03 +01003327 err = alc_auto_fill_multi_ios(codec, cfg->line_out_pins[0], false, 0);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003328 if (err < 0)
3329 return err;
Takashi Iwai276dd702012-02-17 16:17:03 +01003330 /* we don't count badness at this stage yet */
Takashi Iwai23c09b02011-08-19 09:05:35 +02003331 }
Takashi Iwaic2674682011-08-24 17:57:44 +02003332
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003333 if (cfg->line_out_type != AUTO_PIN_HP_OUT) {
Takashi Iwaidc31b582012-02-17 17:27:53 +01003334 err = alc_auto_fill_dacs(codec, cfg->hp_outs, cfg->hp_pins,
3335 spec->multiout.hp_out_nid,
3336 &extra_out_badness);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003337 if (err < 0)
3338 return err;
3339 badness += err;
3340 }
Takashi Iwai0a34b422011-12-07 17:20:30 +01003341 if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaidc31b582012-02-17 17:27:53 +01003342 err = alc_auto_fill_dacs(codec, cfg->speaker_outs,
3343 cfg->speaker_pins,
3344 spec->multiout.extra_out_nid,
3345 &extra_out_badness);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003346 if (err < 0)
3347 return err;
3348 badness += err;
3349 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003350 if (cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3351 err = alc_auto_fill_multi_ios(codec, cfg->line_out_pins[0], false, 0);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003352 if (err < 0)
3353 return err;
3354 badness += err;
3355 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003356 if (cfg->hp_outs && cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
3357 /* try multi-ios with HP + inputs */
Takashi Iwaif5682912012-02-21 12:37:00 +01003358 int offset = 0;
3359 if (cfg->line_outs >= 3)
3360 offset = 1;
3361 err = alc_auto_fill_multi_ios(codec, cfg->hp_pins[0], false,
3362 offset);
Takashi Iwai276dd702012-02-17 16:17:03 +01003363 if (err < 0)
3364 return err;
3365 badness += err;
3366 }
3367
3368 if (spec->multi_ios == 2) {
3369 for (i = 0; i < 2; i++)
3370 spec->private_dac_nids[spec->multiout.num_dacs++] =
3371 spec->multi_io[i].dac;
3372 spec->ext_channel_count = 2;
3373 } else if (spec->multi_ios) {
3374 spec->multi_ios = 0;
3375 badness += BAD_MULTI_IO;
3376 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003377
3378 return badness;
3379}
3380
3381#define DEBUG_BADNESS
3382
3383#ifdef DEBUG_BADNESS
3384#define debug_badness snd_printdd
3385#else
3386#define debug_badness(...)
3387#endif
3388
3389static void debug_show_configs(struct alc_spec *spec, struct auto_pin_cfg *cfg)
3390{
3391 debug_badness("multi_outs = %x/%x/%x/%x : %x/%x/%x/%x\n",
3392 cfg->line_out_pins[0], cfg->line_out_pins[1],
3393 cfg->line_out_pins[2], cfg->line_out_pins[2],
3394 spec->multiout.dac_nids[0],
3395 spec->multiout.dac_nids[1],
3396 spec->multiout.dac_nids[2],
3397 spec->multiout.dac_nids[3]);
Takashi Iwai6f453042012-02-17 14:09:20 +01003398 if (spec->multi_ios > 0)
3399 debug_badness("multi_ios(%d) = %x/%x : %x/%x\n",
3400 spec->multi_ios,
3401 spec->multi_io[0].pin, spec->multi_io[1].pin,
3402 spec->multi_io[0].dac, spec->multi_io[1].dac);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003403 debug_badness("hp_outs = %x/%x/%x/%x : %x/%x/%x/%x\n",
3404 cfg->hp_pins[0], cfg->hp_pins[1],
3405 cfg->hp_pins[2], cfg->hp_pins[2],
3406 spec->multiout.hp_out_nid[0],
3407 spec->multiout.hp_out_nid[1],
3408 spec->multiout.hp_out_nid[2],
3409 spec->multiout.hp_out_nid[3]);
3410 debug_badness("spk_outs = %x/%x/%x/%x : %x/%x/%x/%x\n",
3411 cfg->speaker_pins[0], cfg->speaker_pins[1],
3412 cfg->speaker_pins[2], cfg->speaker_pins[3],
3413 spec->multiout.extra_out_nid[0],
3414 spec->multiout.extra_out_nid[1],
3415 spec->multiout.extra_out_nid[2],
3416 spec->multiout.extra_out_nid[3]);
3417}
3418
Takashi Iwai463419d2012-12-05 14:17:37 +01003419/* find all available DACs of the codec */
3420static void alc_fill_all_nids(struct hda_codec *codec)
3421{
3422 struct alc_spec *spec = codec->spec;
3423 int i;
3424 hda_nid_t nid = codec->start_nid;
3425
3426 spec->num_all_dacs = 0;
3427 memset(spec->all_dacs, 0, sizeof(spec->all_dacs));
3428 for (i = 0; i < codec->num_nodes; i++, nid++) {
3429 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_AUD_OUT)
3430 continue;
3431 if (spec->num_all_dacs >= ARRAY_SIZE(spec->all_dacs)) {
3432 snd_printk(KERN_ERR "hda: Too many DACs!\n");
3433 break;
3434 }
3435 spec->all_dacs[spec->num_all_dacs++] = nid;
3436 }
3437}
3438
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003439static int alc_auto_fill_dac_nids(struct hda_codec *codec)
3440{
3441 struct alc_spec *spec = codec->spec;
3442 struct auto_pin_cfg *cfg = &spec->autocfg;
3443 struct auto_pin_cfg *best_cfg;
3444 int best_badness = INT_MAX;
3445 int badness;
Takashi Iwai276dd702012-02-17 16:17:03 +01003446 bool fill_hardwired = true, fill_mio_first = true;
3447 bool best_wired = true, best_mio = true;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003448 bool hp_spk_swapped = false;
3449
Takashi Iwai463419d2012-12-05 14:17:37 +01003450 alc_fill_all_nids(codec);
3451
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003452 best_cfg = kmalloc(sizeof(*best_cfg), GFP_KERNEL);
3453 if (!best_cfg)
3454 return -ENOMEM;
3455 *best_cfg = *cfg;
3456
3457 for (;;) {
Takashi Iwai276dd702012-02-17 16:17:03 +01003458 badness = fill_and_eval_dacs(codec, fill_hardwired,
3459 fill_mio_first);
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003460 if (badness < 0) {
3461 kfree(best_cfg);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003462 return badness;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003463 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003464 debug_badness("==> lo_type=%d, wired=%d, mio=%d, badness=0x%x\n",
3465 cfg->line_out_type, fill_hardwired, fill_mio_first,
3466 badness);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003467 debug_show_configs(spec, cfg);
3468 if (badness < best_badness) {
3469 best_badness = badness;
3470 *best_cfg = *cfg;
3471 best_wired = fill_hardwired;
Takashi Iwai276dd702012-02-17 16:17:03 +01003472 best_mio = fill_mio_first;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003473 }
3474 if (!badness)
3475 break;
Takashi Iwai276dd702012-02-17 16:17:03 +01003476 fill_mio_first = !fill_mio_first;
3477 if (!fill_mio_first)
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003478 continue;
Takashi Iwai276dd702012-02-17 16:17:03 +01003479 fill_hardwired = !fill_hardwired;
3480 if (!fill_hardwired)
3481 continue;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003482 if (hp_spk_swapped)
3483 break;
3484 hp_spk_swapped = true;
3485 if (cfg->speaker_outs > 0 &&
Takashi Iwai0a34b422011-12-07 17:20:30 +01003486 cfg->line_out_type == AUTO_PIN_HP_OUT) {
3487 cfg->hp_outs = cfg->line_outs;
3488 memcpy(cfg->hp_pins, cfg->line_out_pins,
3489 sizeof(cfg->hp_pins));
3490 cfg->line_outs = cfg->speaker_outs;
3491 memcpy(cfg->line_out_pins, cfg->speaker_pins,
3492 sizeof(cfg->speaker_pins));
3493 cfg->speaker_outs = 0;
3494 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
3495 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003496 fill_hardwired = true;
3497 continue;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003498 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003499 if (cfg->hp_outs > 0 &&
3500 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
3501 cfg->speaker_outs = cfg->line_outs;
3502 memcpy(cfg->speaker_pins, cfg->line_out_pins,
3503 sizeof(cfg->speaker_pins));
3504 cfg->line_outs = cfg->hp_outs;
3505 memcpy(cfg->line_out_pins, cfg->hp_pins,
3506 sizeof(cfg->hp_pins));
3507 cfg->hp_outs = 0;
3508 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3509 cfg->line_out_type = AUTO_PIN_HP_OUT;
3510 fill_hardwired = true;
3511 continue;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003512 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003513 break;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003514 }
Takashi Iwaic2674682011-08-24 17:57:44 +02003515
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003516 if (badness) {
3517 *cfg = *best_cfg;
Takashi Iwai276dd702012-02-17 16:17:03 +01003518 fill_and_eval_dacs(codec, best_wired, best_mio);
Takashi Iwai07b18f62011-11-10 15:42:54 +01003519 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003520 debug_badness("==> Best config: lo_type=%d, wired=%d, mio=%d\n",
3521 cfg->line_out_type, best_wired, best_mio);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003522 debug_show_configs(spec, cfg);
Takashi Iwai07b18f62011-11-10 15:42:54 +01003523
David Henningssonfde48a12011-12-09 18:27:42 +08003524 if (cfg->line_out_pins[0])
3525 spec->vmaster_nid =
3526 alc_look_for_out_vol_nid(codec, cfg->line_out_pins[0],
3527 spec->multiout.dac_nids[0]);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003528
3529 /* clear the bitmap flags for creating controls */
3530 clear_vol_marks(codec);
3531 kfree(best_cfg);
Takashi Iwai23c09b02011-08-19 09:05:35 +02003532 return 0;
3533}
3534
Takashi Iwai343a04b2011-07-06 14:28:39 +02003535static int alc_auto_add_vol_ctl(struct hda_codec *codec,
Takashi Iwai97aaab72011-07-06 14:02:55 +02003536 const char *pfx, int cidx,
3537 hda_nid_t nid, unsigned int chs)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003538{
Takashi Iwai527e4d72011-10-27 16:33:27 +02003539 struct alc_spec *spec = codec->spec;
3540 unsigned int val;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003541 if (!nid)
3542 return 0;
Takashi Iwai527e4d72011-10-27 16:33:27 +02003543 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
3544 if (is_ctl_used(spec->vol_ctls, val) && chs != 2) /* exclude LFE */
3545 return 0;
3546 mark_ctl_usage(spec->vol_ctls, val);
Takashi Iwai97aaab72011-07-06 14:02:55 +02003547 return __add_pb_vol_ctrl(codec->spec, ALC_CTL_WIDGET_VOL, pfx, cidx,
Takashi Iwai527e4d72011-10-27 16:33:27 +02003548 val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003549}
3550
Takashi Iwaie29d3772011-11-14 17:13:23 +01003551static int alc_auto_add_stereo_vol(struct hda_codec *codec,
3552 const char *pfx, int cidx,
3553 hda_nid_t nid)
3554{
3555 int chs = 1;
3556 if (get_wcaps(codec, nid) & AC_WCAP_STEREO)
3557 chs = 3;
3558 return alc_auto_add_vol_ctl(codec, pfx, cidx, nid, chs);
3559}
Takashi Iwai97aaab72011-07-06 14:02:55 +02003560
3561/* create a mute-switch for the given mixer widget;
3562 * if it has multiple sources (e.g. DAC and loopback), create a bind-mute
3563 */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003564static int alc_auto_add_sw_ctl(struct hda_codec *codec,
Takashi Iwai97aaab72011-07-06 14:02:55 +02003565 const char *pfx, int cidx,
3566 hda_nid_t nid, unsigned int chs)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003567{
Takashi Iwai527e4d72011-10-27 16:33:27 +02003568 struct alc_spec *spec = codec->spec;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003569 int wid_type;
Takashi Iwai97aaab72011-07-06 14:02:55 +02003570 int type;
3571 unsigned long val;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003572 if (!nid)
3573 return 0;
3574 wid_type = get_wcaps_type(get_wcaps(codec, nid));
3575 if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT) {
3576 type = ALC_CTL_WIDGET_MUTE;
3577 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
Takashi Iwai09cf03b2012-05-19 17:21:25 +02003578 } else if (snd_hda_get_num_conns(codec, nid) == 1) {
Takashi Iwai97aaab72011-07-06 14:02:55 +02003579 type = ALC_CTL_WIDGET_MUTE;
3580 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_INPUT);
3581 } else {
3582 type = ALC_CTL_BIND_MUTE;
3583 val = HDA_COMPOSE_AMP_VAL(nid, chs, 2, HDA_INPUT);
3584 }
Takashi Iwai527e4d72011-10-27 16:33:27 +02003585 if (is_ctl_used(spec->sw_ctls, val) && chs != 2) /* exclude LFE */
3586 return 0;
3587 mark_ctl_usage(spec->sw_ctls, val);
Takashi Iwai97aaab72011-07-06 14:02:55 +02003588 return __add_pb_sw_ctrl(codec->spec, type, pfx, cidx, val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003589}
3590
Takashi Iwaie29d3772011-11-14 17:13:23 +01003591static int alc_auto_add_stereo_sw(struct hda_codec *codec, const char *pfx,
3592 int cidx, hda_nid_t nid)
3593{
3594 int chs = 1;
3595 if (get_wcaps(codec, nid) & AC_WCAP_STEREO)
3596 chs = 3;
3597 return alc_auto_add_sw_ctl(codec, pfx, cidx, nid, chs);
3598}
Takashi Iwai7085ec12009-10-02 09:03:58 +02003599
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003600static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
3601 hda_nid_t pin, hda_nid_t dac)
3602{
3603 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3604 if (nid_has_mute(codec, pin, HDA_OUTPUT))
3605 return pin;
3606 else if (mix && nid_has_mute(codec, mix, HDA_INPUT))
3607 return mix;
3608 else if (nid_has_mute(codec, dac, HDA_OUTPUT))
3609 return dac;
3610 return 0;
3611}
3612
3613static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
3614 hda_nid_t pin, hda_nid_t dac)
3615{
3616 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3617 if (nid_has_volume(codec, dac, HDA_OUTPUT))
3618 return dac;
3619 else if (nid_has_volume(codec, mix, HDA_OUTPUT))
3620 return mix;
3621 else if (nid_has_volume(codec, pin, HDA_OUTPUT))
3622 return pin;
3623 return 0;
3624}
3625
Takashi Iwai7085ec12009-10-02 09:03:58 +02003626/* add playback controls from the parsed DAC table */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003627static int alc_auto_create_multi_out_ctls(struct hda_codec *codec,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003628 const struct auto_pin_cfg *cfg)
3629{
3630 struct alc_spec *spec = codec->spec;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003631 int i, err, noutputs;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003632
Takashi Iwaice764ab2011-04-27 16:35:23 +02003633 noutputs = cfg->line_outs;
Takashi Iwaib90bf1d2012-01-19 11:42:55 +01003634 if (spec->multi_ios > 0 && cfg->line_outs < 3)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003635 noutputs += spec->multi_ios;
3636
3637 for (i = 0; i < noutputs; i++) {
Takashi Iwai6843ca12011-06-24 11:03:58 +02003638 const char *name;
3639 int index;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003640 hda_nid_t dac, pin;
3641 hda_nid_t sw, vol;
3642
3643 dac = spec->multiout.dac_nids[i];
3644 if (!dac)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003645 continue;
Takashi Iwai689cabf2012-02-21 12:35:27 +01003646 if (i >= cfg->line_outs) {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003647 pin = spec->multi_io[i - 1].pin;
Takashi Iwai689cabf2012-02-21 12:35:27 +01003648 index = 0;
3649 name = channel_name[i];
3650 } else {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003651 pin = cfg->line_out_pins[i];
Takashi Iwai689cabf2012-02-21 12:35:27 +01003652 name = alc_get_line_out_pfx(spec, i, true, &index);
3653 }
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003654
3655 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3656 vol = alc_look_for_out_vol_nid(codec, pin, dac);
Takashi Iwai9c4e84d2011-08-24 17:27:52 +02003657 if (!name || !strcmp(name, "CLFE")) {
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003658 /* Center/LFE */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003659 err = alc_auto_add_vol_ctl(codec, "Center", 0, vol, 1);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003660 if (err < 0)
3661 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003662 err = alc_auto_add_vol_ctl(codec, "LFE", 0, vol, 2);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003663 if (err < 0)
3664 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003665 err = alc_auto_add_sw_ctl(codec, "Center", 0, sw, 1);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003666 if (err < 0)
3667 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003668 err = alc_auto_add_sw_ctl(codec, "LFE", 0, sw, 2);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003669 if (err < 0)
3670 return err;
3671 } else {
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003672 err = alc_auto_add_stereo_vol(codec, name, index, vol);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003673 if (err < 0)
3674 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003675 err = alc_auto_add_stereo_sw(codec, name, index, sw);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003676 if (err < 0)
3677 return err;
3678 }
3679 }
3680 return 0;
3681}
3682
Takashi Iwai343a04b2011-07-06 14:28:39 +02003683static int alc_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai766ddee2011-12-07 16:55:19 +01003684 hda_nid_t dac, const char *pfx,
3685 int cidx)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003686{
Takashi Iwai7085ec12009-10-02 09:03:58 +02003687 struct alc_spec *spec = codec->spec;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003688 hda_nid_t sw, vol;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003689 int err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003690
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003691 if (!dac) {
Takashi Iwai527e4d72011-10-27 16:33:27 +02003692 unsigned int val;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003693 /* the corresponding DAC is already occupied */
3694 if (!(get_wcaps(codec, pin) & AC_WCAP_OUT_AMP))
3695 return 0; /* no way */
3696 /* create a switch only */
Takashi Iwai527e4d72011-10-27 16:33:27 +02003697 val = HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT);
3698 if (is_ctl_used(spec->sw_ctls, val))
3699 return 0; /* already created */
3700 mark_ctl_usage(spec->sw_ctls, val);
Takashi Iwai766ddee2011-12-07 16:55:19 +01003701 return __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx, cidx, val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003702 }
3703
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003704 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3705 vol = alc_look_for_out_vol_nid(codec, pin, dac);
Takashi Iwai766ddee2011-12-07 16:55:19 +01003706 err = alc_auto_add_stereo_vol(codec, pfx, cidx, vol);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003707 if (err < 0)
Takashi Iwai24fb9172008-09-02 14:48:20 +02003708 return err;
Takashi Iwai766ddee2011-12-07 16:55:19 +01003709 err = alc_auto_add_stereo_sw(codec, pfx, cidx, sw);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003710 if (err < 0)
3711 return err;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003712 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003713}
3714
Takashi Iwai23c09b02011-08-19 09:05:35 +02003715static struct hda_bind_ctls *new_bind_ctl(struct hda_codec *codec,
3716 unsigned int nums,
3717 struct hda_ctl_ops *ops)
3718{
3719 struct alc_spec *spec = codec->spec;
3720 struct hda_bind_ctls **ctlp, *ctl;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003721 ctlp = snd_array_new(&spec->bind_ctls);
3722 if (!ctlp)
3723 return NULL;
3724 ctl = kzalloc(sizeof(*ctl) + sizeof(long) * (nums + 1), GFP_KERNEL);
3725 *ctlp = ctl;
3726 if (ctl)
3727 ctl->ops = ops;
3728 return ctl;
3729}
3730
3731/* add playback controls for speaker and HP outputs */
3732static int alc_auto_create_extra_outs(struct hda_codec *codec, int num_pins,
3733 const hda_nid_t *pins,
3734 const hda_nid_t *dacs,
3735 const char *pfx)
3736{
3737 struct alc_spec *spec = codec->spec;
3738 struct hda_bind_ctls *ctl;
3739 char name[32];
3740 int i, n, err;
3741
3742 if (!num_pins || !pins[0])
3743 return 0;
3744
Takashi Iwai527e4d72011-10-27 16:33:27 +02003745 if (num_pins == 1) {
3746 hda_nid_t dac = *dacs;
3747 if (!dac)
3748 dac = spec->multiout.dac_nids[0];
Takashi Iwai766ddee2011-12-07 16:55:19 +01003749 return alc_auto_create_extra_out(codec, *pins, dac, pfx, 0);
Takashi Iwai527e4d72011-10-27 16:33:27 +02003750 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003751
Takashi Iwai23c09b02011-08-19 09:05:35 +02003752 for (i = 0; i < num_pins; i++) {
Takashi Iwaic96f0bf2012-02-21 12:12:57 +01003753 hda_nid_t dac;
3754 if (dacs[num_pins - 1])
3755 dac = dacs[i]; /* with individual volumes */
3756 else
3757 dac = 0;
3758 if (num_pins == 2 && i == 1 && !strcmp(pfx, "Speaker")) {
3759 err = alc_auto_create_extra_out(codec, pins[i], dac,
3760 "Bass Speaker", 0);
3761 } else if (num_pins >= 3) {
3762 snprintf(name, sizeof(name), "%s %s",
3763 pfx, channel_name[i]);
3764 err = alc_auto_create_extra_out(codec, pins[i], dac,
3765 name, 0);
3766 } else {
3767 err = alc_auto_create_extra_out(codec, pins[i], dac,
3768 pfx, i);
3769 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003770 if (err < 0)
3771 return err;
3772 }
Takashi Iwaic96f0bf2012-02-21 12:12:57 +01003773 if (dacs[num_pins - 1])
3774 return 0;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003775
Takashi Iwaic96f0bf2012-02-21 12:12:57 +01003776 /* Let's create a bind-controls for volumes */
Takashi Iwai23c09b02011-08-19 09:05:35 +02003777 ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_vol);
3778 if (!ctl)
3779 return -ENOMEM;
3780 n = 0;
3781 for (i = 0; i < num_pins; i++) {
3782 hda_nid_t vol;
3783 if (!pins[i] || !dacs[i])
3784 continue;
3785 vol = alc_look_for_out_vol_nid(codec, pins[i], dacs[i]);
3786 if (vol)
3787 ctl->values[n++] =
3788 HDA_COMPOSE_AMP_VAL(vol, 3, 0, HDA_OUTPUT);
3789 }
3790 if (n) {
3791 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
3792 err = add_control(spec, ALC_CTL_BIND_VOL, name, 0, (long)ctl);
3793 if (err < 0)
3794 return err;
3795 }
3796 return 0;
3797}
3798
Takashi Iwai343a04b2011-07-06 14:28:39 +02003799static int alc_auto_create_hp_out(struct hda_codec *codec)
3800{
3801 struct alc_spec *spec = codec->spec;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003802 return alc_auto_create_extra_outs(codec, spec->autocfg.hp_outs,
3803 spec->autocfg.hp_pins,
3804 spec->multiout.hp_out_nid,
3805 "Headphone");
Takashi Iwai343a04b2011-07-06 14:28:39 +02003806}
3807
3808static int alc_auto_create_speaker_out(struct hda_codec *codec)
3809{
3810 struct alc_spec *spec = codec->spec;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003811 return alc_auto_create_extra_outs(codec, spec->autocfg.speaker_outs,
3812 spec->autocfg.speaker_pins,
3813 spec->multiout.extra_out_nid,
3814 "Speaker");
Takashi Iwai343a04b2011-07-06 14:28:39 +02003815}
3816
Takashi Iwai343a04b2011-07-06 14:28:39 +02003817static void alc_auto_set_output_and_unmute(struct hda_codec *codec,
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003818 hda_nid_t pin, int pin_type,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003819 hda_nid_t dac)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003820{
Takashi Iwai7085ec12009-10-02 09:03:58 +02003821 int i, num;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003822 hda_nid_t nid, mix = 0;
Takashi Iwaice503f32010-07-30 10:37:29 +02003823 hda_nid_t srcs[HDA_MAX_CONNECTIONS];
Takashi Iwai7085ec12009-10-02 09:03:58 +02003824
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003825 alc_set_pin_output(codec, pin, pin_type);
3826 nid = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003827 num = snd_hda_get_connections(codec, nid, srcs, ARRAY_SIZE(srcs));
Takashi Iwai7085ec12009-10-02 09:03:58 +02003828 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02003829 if (alc_auto_mix_to_dac(codec, srcs[i]) != dac)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003830 continue;
Takashi Iwaicd511552011-07-06 13:10:42 +02003831 mix = srcs[i];
3832 break;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003833 }
Takashi Iwaicd511552011-07-06 13:10:42 +02003834 if (!mix)
3835 return;
3836
3837 /* need the manual connection? */
3838 if (num > 1)
3839 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, i);
3840 /* unmute mixer widget inputs */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003841 if (nid_has_mute(codec, mix, HDA_INPUT)) {
3842 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaicd511552011-07-06 13:10:42 +02003843 AMP_IN_UNMUTE(0));
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003844 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaicd511552011-07-06 13:10:42 +02003845 AMP_IN_UNMUTE(1));
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003846 }
Takashi Iwaicd511552011-07-06 13:10:42 +02003847 /* initialize volume */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003848 nid = alc_look_for_out_vol_nid(codec, pin, dac);
3849 if (nid)
3850 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3851 AMP_OUT_ZERO);
Takashi Iwai43dea222011-11-06 11:25:34 +01003852
3853 /* unmute DAC if it's not assigned to a mixer */
3854 nid = alc_look_for_out_mute_nid(codec, pin, dac);
3855 if (nid == mix && nid_has_mute(codec, dac, HDA_OUTPUT))
3856 snd_hda_codec_write(codec, dac, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3857 AMP_OUT_ZERO);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003858}
3859
Takashi Iwai343a04b2011-07-06 14:28:39 +02003860static void alc_auto_init_multi_out(struct hda_codec *codec)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003861{
3862 struct alc_spec *spec = codec->spec;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003863 int pin_type = get_pin_type(spec->autocfg.line_out_type);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003864 int i;
3865
3866 for (i = 0; i <= HDA_SIDE; i++) {
3867 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3868 if (nid)
Takashi Iwai343a04b2011-07-06 14:28:39 +02003869 alc_auto_set_output_and_unmute(codec, nid, pin_type,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003870 spec->multiout.dac_nids[i]);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003871 }
3872}
3873
Takashi Iwai343a04b2011-07-06 14:28:39 +02003874static void alc_auto_init_extra_out(struct hda_codec *codec)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003875{
3876 struct alc_spec *spec = codec->spec;
Takashi Iwai8cd07752011-08-23 15:16:22 +02003877 int i;
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003878 hda_nid_t pin, dac;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003879
David Henningsson636030e2011-10-12 19:26:03 +02003880 for (i = 0; i < spec->autocfg.hp_outs; i++) {
Takashi Iwai716eef02011-10-21 15:07:42 +02003881 if (spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)
3882 break;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003883 pin = spec->autocfg.hp_pins[i];
3884 if (!pin)
3885 break;
3886 dac = spec->multiout.hp_out_nid[i];
3887 if (!dac) {
3888 if (i > 0 && spec->multiout.hp_out_nid[0])
3889 dac = spec->multiout.hp_out_nid[0];
3890 else
3891 dac = spec->multiout.dac_nids[0];
3892 }
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003893 alc_auto_set_output_and_unmute(codec, pin, PIN_HP, dac);
3894 }
Takashi Iwai8cd07752011-08-23 15:16:22 +02003895 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
Takashi Iwai716eef02011-10-21 15:07:42 +02003896 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
3897 break;
Takashi Iwai8cd07752011-08-23 15:16:22 +02003898 pin = spec->autocfg.speaker_pins[i];
3899 if (!pin)
3900 break;
3901 dac = spec->multiout.extra_out_nid[i];
3902 if (!dac) {
3903 if (i > 0 && spec->multiout.extra_out_nid[0])
3904 dac = spec->multiout.extra_out_nid[0];
3905 else
3906 dac = spec->multiout.dac_nids[0];
3907 }
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003908 alc_auto_set_output_and_unmute(codec, pin, PIN_OUT, dac);
3909 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003910}
3911
Takashi Iwai276dd702012-02-17 16:17:03 +01003912/* check whether the given pin can be a multi-io pin */
3913static bool can_be_multiio_pin(struct hda_codec *codec,
3914 unsigned int location, hda_nid_t nid)
3915{
3916 unsigned int defcfg, caps;
3917
3918 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3919 if (get_defcfg_connect(defcfg) != AC_JACK_PORT_COMPLEX)
3920 return false;
3921 if (location && get_defcfg_location(defcfg) != location)
3922 return false;
3923 caps = snd_hda_query_pin_caps(codec, nid);
3924 if (!(caps & AC_PINCAP_OUT))
3925 return false;
3926 return true;
3927}
3928
Takashi Iwaice764ab2011-04-27 16:35:23 +02003929/*
3930 * multi-io helper
Takashi Iwai276dd702012-02-17 16:17:03 +01003931 *
3932 * When hardwired is set, try to fill ony hardwired pins, and returns
3933 * zero if any pins are filled, non-zero if nothing found.
3934 * When hardwired is off, try to fill possible input pins, and returns
3935 * the badness value.
Takashi Iwaice764ab2011-04-27 16:35:23 +02003936 */
3937static int alc_auto_fill_multi_ios(struct hda_codec *codec,
Takashi Iwai276dd702012-02-17 16:17:03 +01003938 hda_nid_t reference_pin,
3939 bool hardwired, int offset)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003940{
3941 struct alc_spec *spec = codec->spec;
3942 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai276dd702012-02-17 16:17:03 +01003943 int type, i, j, dacs, num_pins, old_pins;
3944 unsigned int defcfg = snd_hda_codec_get_pincfg(codec, reference_pin);
3945 unsigned int location = get_defcfg_location(defcfg);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003946 int badness = 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003947
Takashi Iwai276dd702012-02-17 16:17:03 +01003948 old_pins = spec->multi_ios;
3949 if (old_pins >= 2)
3950 goto end_fill;
3951
3952 num_pins = 0;
3953 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
3954 for (i = 0; i < cfg->num_inputs; i++) {
3955 if (cfg->inputs[i].type != type)
3956 continue;
3957 if (can_be_multiio_pin(codec, location,
3958 cfg->inputs[i].pin))
3959 num_pins++;
3960 }
3961 }
3962 if (num_pins < 2)
3963 goto end_fill;
3964
Takashi Iwai07b18f62011-11-10 15:42:54 +01003965 dacs = spec->multiout.num_dacs;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003966 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
3967 for (i = 0; i < cfg->num_inputs; i++) {
3968 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai07b18f62011-11-10 15:42:54 +01003969 hda_nid_t dac = 0;
Takashi Iwai276dd702012-02-17 16:17:03 +01003970
Takashi Iwaice764ab2011-04-27 16:35:23 +02003971 if (cfg->inputs[i].type != type)
3972 continue;
Takashi Iwai276dd702012-02-17 16:17:03 +01003973 if (!can_be_multiio_pin(codec, location, nid))
Takashi Iwaice764ab2011-04-27 16:35:23 +02003974 continue;
Takashi Iwai276dd702012-02-17 16:17:03 +01003975 for (j = 0; j < spec->multi_ios; j++) {
3976 if (nid == spec->multi_io[j].pin)
3977 break;
3978 }
3979 if (j < spec->multi_ios)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003980 continue;
Takashi Iwai276dd702012-02-17 16:17:03 +01003981
3982 if (offset && offset + spec->multi_ios < dacs) {
3983 dac = spec->private_dac_nids[offset + spec->multi_ios];
Takashi Iwai07b18f62011-11-10 15:42:54 +01003984 if (!alc_auto_is_dac_reachable(codec, nid, dac))
3985 dac = 0;
3986 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003987 if (hardwired)
3988 dac = get_dac_if_single(codec, nid);
3989 else if (!dac)
Takashi Iwai07b18f62011-11-10 15:42:54 +01003990 dac = alc_auto_look_for_dac(codec, nid);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003991 if (!dac) {
Takashi Iwai276dd702012-02-17 16:17:03 +01003992 badness++;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003993 continue;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003994 }
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003995 if (!add_new_out_path(codec, nid, dac)) {
3996 badness++;
3997 continue;
3998 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003999 spec->multi_io[spec->multi_ios].pin = nid;
4000 spec->multi_io[spec->multi_ios].dac = dac;
4001 spec->multi_ios++;
4002 if (spec->multi_ios >= 2)
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01004003 break;
Takashi Iwaice764ab2011-04-27 16:35:23 +02004004 }
4005 }
Takashi Iwai276dd702012-02-17 16:17:03 +01004006 end_fill:
4007 if (badness)
4008 badness = BAD_MULTI_IO;
4009 if (old_pins == spec->multi_ios) {
4010 if (hardwired)
4011 return 1; /* nothing found */
4012 else
4013 return badness; /* no badness if nothing found */
4014 }
4015 if (!hardwired && spec->multi_ios < 2) {
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01004016 /* cancel newly assigned paths */
4017 spec->out_path.used -= spec->multi_ios - old_pins;
Takashi Iwai276dd702012-02-17 16:17:03 +01004018 spec->multi_ios = old_pins;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01004019 return badness;
Takashi Iwaic2674682011-08-24 17:57:44 +02004020 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01004021
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01004022 return 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02004023}
4024
4025static int alc_auto_ch_mode_info(struct snd_kcontrol *kcontrol,
4026 struct snd_ctl_elem_info *uinfo)
4027{
4028 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4029 struct alc_spec *spec = codec->spec;
4030
4031 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
4032 uinfo->count = 1;
4033 uinfo->value.enumerated.items = spec->multi_ios + 1;
4034 if (uinfo->value.enumerated.item > spec->multi_ios)
4035 uinfo->value.enumerated.item = spec->multi_ios;
4036 sprintf(uinfo->value.enumerated.name, "%dch",
4037 (uinfo->value.enumerated.item + 1) * 2);
4038 return 0;
4039}
4040
4041static int alc_auto_ch_mode_get(struct snd_kcontrol *kcontrol,
4042 struct snd_ctl_elem_value *ucontrol)
4043{
4044 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4045 struct alc_spec *spec = codec->spec;
4046 ucontrol->value.enumerated.item[0] = (spec->ext_channel_count - 1) / 2;
4047 return 0;
4048}
4049
4050static int alc_set_multi_io(struct hda_codec *codec, int idx, bool output)
4051{
4052 struct alc_spec *spec = codec->spec;
4053 hda_nid_t nid = spec->multi_io[idx].pin;
4054
4055 if (!spec->multi_io[idx].ctl_in)
4056 spec->multi_io[idx].ctl_in =
4057 snd_hda_codec_read(codec, nid, 0,
4058 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4059 if (output) {
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02004060 snd_hda_set_pin_ctl_cache(codec, nid, PIN_OUT);
Takashi Iwaice764ab2011-04-27 16:35:23 +02004061 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
4062 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
4063 HDA_AMP_MUTE, 0);
4064 alc_auto_select_dac(codec, nid, spec->multi_io[idx].dac);
4065 } else {
4066 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
4067 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
4068 HDA_AMP_MUTE, HDA_AMP_MUTE);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02004069 snd_hda_set_pin_ctl_cache(codec, nid,
4070 spec->multi_io[idx].ctl_in);
Takashi Iwaice764ab2011-04-27 16:35:23 +02004071 }
4072 return 0;
4073}
4074
4075static int alc_auto_ch_mode_put(struct snd_kcontrol *kcontrol,
4076 struct snd_ctl_elem_value *ucontrol)
4077{
4078 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4079 struct alc_spec *spec = codec->spec;
4080 int i, ch;
4081
4082 ch = ucontrol->value.enumerated.item[0];
4083 if (ch < 0 || ch > spec->multi_ios)
4084 return -EINVAL;
4085 if (ch == (spec->ext_channel_count - 1) / 2)
4086 return 0;
4087 spec->ext_channel_count = (ch + 1) * 2;
4088 for (i = 0; i < spec->multi_ios; i++)
4089 alc_set_multi_io(codec, i, i < ch);
Takashi Iwaib6adb572012-12-03 10:30:58 +01004090 spec->multiout.max_channels = max(spec->ext_channel_count,
4091 spec->const_channel_count);
4092 if (spec->need_dac_fix)
Takashi Iwai7b1655f2011-07-14 15:31:21 +02004093 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
Takashi Iwaice764ab2011-04-27 16:35:23 +02004094 return 1;
4095}
4096
Takashi Iwaia9111322011-05-02 11:30:18 +02004097static const struct snd_kcontrol_new alc_auto_channel_mode_enum = {
Takashi Iwaice764ab2011-04-27 16:35:23 +02004098 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4099 .name = "Channel Mode",
4100 .info = alc_auto_ch_mode_info,
4101 .get = alc_auto_ch_mode_get,
4102 .put = alc_auto_ch_mode_put,
4103};
4104
Takashi Iwai23c09b02011-08-19 09:05:35 +02004105static int alc_auto_add_multi_channel_mode(struct hda_codec *codec)
Takashi Iwaice764ab2011-04-27 16:35:23 +02004106{
4107 struct alc_spec *spec = codec->spec;
Takashi Iwaice764ab2011-04-27 16:35:23 +02004108
Takashi Iwaic2674682011-08-24 17:57:44 +02004109 if (spec->multi_ios > 0) {
Takashi Iwai668d1e92012-11-29 14:10:17 +01004110 if (!alc_kcontrol_new(spec, "Channel Mode",
4111 &alc_auto_channel_mode_enum))
Takashi Iwaice764ab2011-04-27 16:35:23 +02004112 return -ENOMEM;
Takashi Iwaice764ab2011-04-27 16:35:23 +02004113 }
4114 return 0;
4115}
4116
Takashi Iwai1d045db2011-07-07 18:23:21 +02004117/* filter out invalid adc_nids (and capsrc_nids) that don't give all
4118 * active input pins
4119 */
4120static void alc_remove_invalid_adc_nids(struct hda_codec *codec)
4121{
4122 struct alc_spec *spec = codec->spec;
4123 const struct hda_input_mux *imux;
4124 hda_nid_t adc_nids[ARRAY_SIZE(spec->private_adc_nids)];
4125 hda_nid_t capsrc_nids[ARRAY_SIZE(spec->private_adc_nids)];
4126 int i, n, nums;
4127
4128 imux = spec->input_mux;
4129 if (!imux)
4130 return;
4131 if (spec->dyn_adc_switch)
4132 return;
4133
Takashi Iwai26acaf02012-03-22 14:36:50 +01004134 again:
Takashi Iwai1d045db2011-07-07 18:23:21 +02004135 nums = 0;
4136 for (n = 0; n < spec->num_adc_nids; n++) {
4137 hda_nid_t cap = spec->private_capsrc_nids[n];
Takashi Iwai09cf03b2012-05-19 17:21:25 +02004138 int num_conns = snd_hda_get_num_conns(codec, cap);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004139 for (i = 0; i < imux->num_items; i++) {
4140 hda_nid_t pin = spec->imux_pins[i];
4141 if (pin) {
4142 if (get_connection_index(codec, cap, pin) < 0)
4143 break;
4144 } else if (num_conns <= imux->items[i].index)
4145 break;
4146 }
4147 if (i >= imux->num_items) {
4148 adc_nids[nums] = spec->private_adc_nids[n];
4149 capsrc_nids[nums++] = cap;
4150 }
4151 }
4152 if (!nums) {
4153 /* check whether ADC-switch is possible */
4154 if (!alc_check_dyn_adc_switch(codec)) {
Takashi Iwai26acaf02012-03-22 14:36:50 +01004155 if (spec->shared_mic_hp) {
4156 spec->shared_mic_hp = 0;
4157 spec->private_imux[0].num_items = 1;
4158 goto again;
4159 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004160 printk(KERN_WARNING "hda_codec: %s: no valid ADC found;"
4161 " using fallback 0x%x\n",
4162 codec->chip_name, spec->private_adc_nids[0]);
4163 spec->num_adc_nids = 1;
4164 spec->auto_mic = 0;
4165 return;
4166 }
4167 } else if (nums != spec->num_adc_nids) {
4168 memcpy(spec->private_adc_nids, adc_nids,
4169 nums * sizeof(hda_nid_t));
4170 memcpy(spec->private_capsrc_nids, capsrc_nids,
4171 nums * sizeof(hda_nid_t));
4172 spec->num_adc_nids = nums;
4173 }
4174
4175 if (spec->auto_mic)
4176 alc_auto_mic_check_imux(codec); /* check auto-mic setups */
Takashi Iwai26acaf02012-03-22 14:36:50 +01004177 else if (spec->input_mux->num_items == 1 || spec->shared_mic_hp)
Takashi Iwai1d045db2011-07-07 18:23:21 +02004178 spec->num_adc_nids = 1; /* reduce to a single ADC */
4179}
4180
4181/*
4182 * initialize ADC paths
4183 */
4184static void alc_auto_init_adc(struct hda_codec *codec, int adc_idx)
4185{
4186 struct alc_spec *spec = codec->spec;
4187 hda_nid_t nid;
4188
4189 nid = spec->adc_nids[adc_idx];
4190 /* mute ADC */
Takashi Iwai44c02402011-07-08 15:14:19 +02004191 if (nid_has_mute(codec, nid, HDA_INPUT)) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004192 snd_hda_codec_write(codec, nid, 0,
4193 AC_VERB_SET_AMP_GAIN_MUTE,
4194 AMP_IN_MUTE(0));
4195 return;
4196 }
4197 if (!spec->capsrc_nids)
4198 return;
4199 nid = spec->capsrc_nids[adc_idx];
Takashi Iwai44c02402011-07-08 15:14:19 +02004200 if (nid_has_mute(codec, nid, HDA_OUTPUT))
Takashi Iwai1d045db2011-07-07 18:23:21 +02004201 snd_hda_codec_write(codec, nid, 0,
4202 AC_VERB_SET_AMP_GAIN_MUTE,
4203 AMP_OUT_MUTE);
4204}
4205
4206static void alc_auto_init_input_src(struct hda_codec *codec)
4207{
4208 struct alc_spec *spec = codec->spec;
4209 int c, nums;
4210
4211 for (c = 0; c < spec->num_adc_nids; c++)
4212 alc_auto_init_adc(codec, c);
4213 if (spec->dyn_adc_switch)
4214 nums = 1;
4215 else
4216 nums = spec->num_adc_nids;
4217 for (c = 0; c < nums; c++)
Takashi Iwai068b9392012-02-25 11:13:16 +01004218 alc_mux_select(codec, c, spec->cur_mux[c], true);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004219}
4220
4221/* add mic boosts if needed */
4222static int alc_auto_add_mic_boost(struct hda_codec *codec)
4223{
4224 struct alc_spec *spec = codec->spec;
4225 struct auto_pin_cfg *cfg = &spec->autocfg;
4226 int i, err;
4227 int type_idx = 0;
4228 hda_nid_t nid;
4229 const char *prev_label = NULL;
4230
4231 for (i = 0; i < cfg->num_inputs; i++) {
4232 if (cfg->inputs[i].type > AUTO_PIN_MIC)
4233 break;
4234 nid = cfg->inputs[i].pin;
4235 if (get_wcaps(codec, nid) & AC_WCAP_IN_AMP) {
4236 const char *label;
4237 char boost_label[32];
4238
4239 label = hda_get_autocfg_input_label(codec, cfg, i);
Takashi Iwai24de1832011-11-07 17:13:39 +01004240 if (spec->shared_mic_hp && !strcmp(label, "Misc"))
4241 label = "Headphone Mic";
Takashi Iwai1d045db2011-07-07 18:23:21 +02004242 if (prev_label && !strcmp(label, prev_label))
4243 type_idx++;
4244 else
4245 type_idx = 0;
4246 prev_label = label;
4247
4248 snprintf(boost_label, sizeof(boost_label),
4249 "%s Boost Volume", label);
4250 err = add_control(spec, ALC_CTL_WIDGET_VOL,
4251 boost_label, type_idx,
4252 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
4253 if (err < 0)
4254 return err;
4255 }
4256 }
4257 return 0;
4258}
4259
4260/* select or unmute the given capsrc route */
4261static void select_or_unmute_capsrc(struct hda_codec *codec, hda_nid_t cap,
4262 int idx)
4263{
4264 if (get_wcaps_type(get_wcaps(codec, cap)) == AC_WID_AUD_MIX) {
4265 snd_hda_codec_amp_stereo(codec, cap, HDA_INPUT, idx,
4266 HDA_AMP_MUTE, 0);
Takashi Iwai09cf03b2012-05-19 17:21:25 +02004267 } else if (snd_hda_get_num_conns(codec, cap) > 1) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004268 snd_hda_codec_write_cache(codec, cap, 0,
4269 AC_VERB_SET_CONNECT_SEL, idx);
4270 }
4271}
4272
4273/* set the default connection to that pin */
4274static int init_capsrc_for_pin(struct hda_codec *codec, hda_nid_t pin)
4275{
4276 struct alc_spec *spec = codec->spec;
4277 int i;
4278
4279 if (!pin)
4280 return 0;
4281 for (i = 0; i < spec->num_adc_nids; i++) {
Takashi Iwai61071592011-11-23 07:52:15 +01004282 hda_nid_t cap = get_capsrc(spec, i);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004283 int idx;
4284
4285 idx = get_connection_index(codec, cap, pin);
4286 if (idx < 0)
4287 continue;
4288 select_or_unmute_capsrc(codec, cap, idx);
4289 return i; /* return the found index */
4290 }
4291 return -1; /* not found */
4292}
4293
4294/* initialize some special cases for input sources */
4295static void alc_init_special_input_src(struct hda_codec *codec)
4296{
4297 struct alc_spec *spec = codec->spec;
4298 int i;
4299
4300 for (i = 0; i < spec->autocfg.num_inputs; i++)
4301 init_capsrc_for_pin(codec, spec->autocfg.inputs[i].pin);
4302}
4303
4304/* assign appropriate capture mixers */
4305static void set_capture_mixer(struct hda_codec *codec)
4306{
4307 struct alc_spec *spec = codec->spec;
4308 static const struct snd_kcontrol_new *caps[2][3] = {
4309 { alc_capture_mixer_nosrc1,
4310 alc_capture_mixer_nosrc2,
4311 alc_capture_mixer_nosrc3 },
4312 { alc_capture_mixer1,
4313 alc_capture_mixer2,
4314 alc_capture_mixer3 },
4315 };
4316
4317 /* check whether either of ADC or MUX has a volume control */
Takashi Iwai44c02402011-07-08 15:14:19 +02004318 if (!nid_has_volume(codec, spec->adc_nids[0], HDA_INPUT)) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004319 if (!spec->capsrc_nids)
4320 return; /* no volume */
Takashi Iwai44c02402011-07-08 15:14:19 +02004321 if (!nid_has_volume(codec, spec->capsrc_nids[0], HDA_OUTPUT))
Takashi Iwai1d045db2011-07-07 18:23:21 +02004322 return; /* no volume in capsrc, too */
4323 spec->vol_in_capsrc = 1;
4324 }
4325
4326 if (spec->num_adc_nids > 0) {
4327 int mux = 0;
4328 int num_adcs = 0;
4329
4330 if (spec->input_mux && spec->input_mux->num_items > 1)
4331 mux = 1;
4332 if (spec->auto_mic) {
4333 num_adcs = 1;
4334 mux = 0;
4335 } else if (spec->dyn_adc_switch)
4336 num_adcs = 1;
4337 if (!num_adcs) {
4338 if (spec->num_adc_nids > 3)
4339 spec->num_adc_nids = 3;
4340 else if (!spec->num_adc_nids)
4341 return;
4342 num_adcs = spec->num_adc_nids;
4343 }
4344 spec->cap_mixer = caps[mux][num_adcs - 1];
4345 }
4346}
4347
4348/*
Takashi Iwaie4770622011-07-08 11:11:35 +02004349 * standard auto-parser initializations
4350 */
4351static void alc_auto_init_std(struct hda_codec *codec)
4352{
Takashi Iwaie4770622011-07-08 11:11:35 +02004353 alc_auto_init_multi_out(codec);
4354 alc_auto_init_extra_out(codec);
4355 alc_auto_init_analog_input(codec);
4356 alc_auto_init_input_src(codec);
4357 alc_auto_init_digital(codec);
David Henningssona7a0a642012-07-05 12:00:12 +02004358 alc_inithook(codec);
Takashi Iwaie4770622011-07-08 11:11:35 +02004359}
4360
4361/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02004362 * Digital-beep handlers
4363 */
4364#ifdef CONFIG_SND_HDA_INPUT_BEEP
4365#define set_beep_amp(spec, nid, idx, dir) \
4366 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
4367
4368static const struct snd_pci_quirk beep_white_list[] = {
Duncan Roe71100052012-10-10 14:19:50 +02004369 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004370 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
4371 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
4372 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
4373 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
Takashi Iwai78f8baf2012-03-06 14:02:32 +01004374 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004375 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
4376 {}
4377};
4378
4379static inline int has_cdefine_beep(struct hda_codec *codec)
4380{
4381 struct alc_spec *spec = codec->spec;
4382 const struct snd_pci_quirk *q;
4383 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
4384 if (q)
4385 return q->value;
4386 return spec->cdefine.enable_pcbeep;
4387}
4388#else
4389#define set_beep_amp(spec, nid, idx, dir) /* NOP */
4390#define has_cdefine_beep(codec) 0
4391#endif
4392
4393/* parse the BIOS configuration and set up the alc_spec */
4394/* return 1 if successful, 0 if the proper config is not found,
4395 * or a negative error code
4396 */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004397static int alc_parse_auto_config(struct hda_codec *codec,
4398 const hda_nid_t *ignore_nids,
4399 const hda_nid_t *ssid_nids)
Takashi Iwai1d045db2011-07-07 18:23:21 +02004400{
4401 struct alc_spec *spec = codec->spec;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004402 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004403 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004404
Takashi Iwai53c334a2011-08-23 18:27:14 +02004405 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
4406 spec->parse_flags);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004407 if (err < 0)
4408 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004409 if (!cfg->line_outs) {
4410 if (cfg->dig_outs || cfg->dig_in_pin) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004411 spec->multiout.max_channels = 2;
4412 spec->no_analog = 1;
4413 goto dig_only;
4414 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004415 return 0; /* can't find valid BIOS pin config */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004416 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02004417
Takashi Iwaie427c232012-07-29 10:04:08 +02004418 if (!spec->no_primary_hp &&
4419 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT &&
Takashi Iwai06503672011-10-06 08:27:19 +02004420 cfg->line_outs <= cfg->hp_outs) {
Takashi Iwai23c09b02011-08-19 09:05:35 +02004421 /* use HP as primary out */
4422 cfg->speaker_outs = cfg->line_outs;
4423 memcpy(cfg->speaker_pins, cfg->line_out_pins,
4424 sizeof(cfg->speaker_pins));
4425 cfg->line_outs = cfg->hp_outs;
4426 memcpy(cfg->line_out_pins, cfg->hp_pins, sizeof(cfg->hp_pins));
4427 cfg->hp_outs = 0;
4428 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
4429 cfg->line_out_type = AUTO_PIN_HP_OUT;
4430 }
4431
Takashi Iwai1d045db2011-07-07 18:23:21 +02004432 err = alc_auto_fill_dac_nids(codec);
4433 if (err < 0)
4434 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004435 err = alc_auto_add_multi_channel_mode(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004436 if (err < 0)
4437 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004438 err = alc_auto_create_multi_out_ctls(codec, cfg);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004439 if (err < 0)
4440 return err;
4441 err = alc_auto_create_hp_out(codec);
4442 if (err < 0)
4443 return err;
4444 err = alc_auto_create_speaker_out(codec);
4445 if (err < 0)
4446 return err;
Takashi Iwai24de1832011-11-07 17:13:39 +01004447 err = alc_auto_create_shared_input(codec);
4448 if (err < 0)
4449 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004450 err = alc_auto_create_input_ctls(codec);
4451 if (err < 0)
4452 return err;
4453
Takashi Iwaib6adb572012-12-03 10:30:58 +01004454 /* check the multiple speaker pins */
4455 if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT)
4456 spec->const_channel_count = cfg->line_outs * 2;
4457 else
4458 spec->const_channel_count = cfg->speaker_outs * 2;
4459
4460 if (spec->multi_ios > 0)
4461 spec->multiout.max_channels = max(spec->ext_channel_count,
4462 spec->const_channel_count);
4463 else
4464 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004465
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004466 dig_only:
Takashi Iwai1d045db2011-07-07 18:23:21 +02004467 alc_auto_parse_digital(codec);
4468
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004469 if (!spec->no_analog)
4470 alc_remove_invalid_adc_nids(codec);
4471
4472 if (ssid_nids)
4473 alc_ssid_check(codec, ssid_nids);
4474
4475 if (!spec->no_analog) {
Takashi Iwai475c3d22012-11-30 08:31:30 +01004476 err = alc_auto_check_switches(codec);
4477 if (err < 0)
4478 return err;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004479 err = alc_auto_add_mic_boost(codec);
4480 if (err < 0)
4481 return err;
4482 }
4483
Takashi Iwai1d045db2011-07-07 18:23:21 +02004484 if (spec->kctls.list)
4485 add_mixer(spec, spec->kctls.list);
4486
Takashi Iwai070cff42012-02-21 12:54:17 +01004487 if (!spec->no_analog && !spec->cap_mixer)
4488 set_capture_mixer(codec);
4489
Takashi Iwai1d045db2011-07-07 18:23:21 +02004490 return 1;
4491}
4492
Takashi Iwai3de95172012-05-07 18:03:15 +02004493/* common preparation job for alc_spec */
4494static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
4495{
4496 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4497 int err;
4498
4499 if (!spec)
4500 return -ENOMEM;
4501 codec->spec = spec;
Takashi Iwai1098b7c2012-12-17 20:03:15 +01004502 codec->single_adc_amp = 1;
Takashi Iwai3de95172012-05-07 18:03:15 +02004503 spec->mixer_nid = mixer_nid;
Takashi Iwaiee48df52012-06-26 14:54:32 +02004504 snd_hda_gen_init(&spec->gen);
Takashi Iwai361dab32012-05-09 14:35:27 +02004505 snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32);
4506 snd_array_init(&spec->bind_ctls, sizeof(struct hda_bind_ctls *), 8);
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01004507 snd_array_init(&spec->out_path, sizeof(struct nid_path), 8);
Takashi Iwai3de95172012-05-07 18:03:15 +02004508
4509 err = alc_codec_rename_from_preset(codec);
4510 if (err < 0) {
4511 kfree(spec);
4512 return err;
4513 }
4514 return 0;
4515}
4516
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004517static int alc880_parse_auto_config(struct hda_codec *codec)
4518{
4519 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02004520 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004521 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
4522}
4523
Takashi Iwai1d045db2011-07-07 18:23:21 +02004524/*
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004525 * ALC880 fix-ups
4526 */
4527enum {
Takashi Iwai411225a2012-02-20 17:48:19 +01004528 ALC880_FIXUP_GPIO1,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004529 ALC880_FIXUP_GPIO2,
4530 ALC880_FIXUP_MEDION_RIM,
Takashi Iwaidc6af522012-02-17 16:18:59 +01004531 ALC880_FIXUP_LG,
Takashi Iwaif02aab52012-02-17 16:33:56 +01004532 ALC880_FIXUP_W810,
Takashi Iwai27e917f2012-02-17 17:49:54 +01004533 ALC880_FIXUP_EAPD_COEF,
Takashi Iwaib9368f52012-02-17 17:54:44 +01004534 ALC880_FIXUP_TCL_S700,
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004535 ALC880_FIXUP_VOL_KNOB,
4536 ALC880_FIXUP_FUJITSU,
Takashi Iwaiba533812012-02-20 16:36:52 +01004537 ALC880_FIXUP_F1734,
Takashi Iwai817de922012-02-20 17:20:48 +01004538 ALC880_FIXUP_UNIWILL,
Takashi Iwai967b88c2012-02-20 17:31:02 +01004539 ALC880_FIXUP_UNIWILL_DIG,
Takashi Iwai96e225f2012-02-20 17:41:51 +01004540 ALC880_FIXUP_Z71V,
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004541 ALC880_FIXUP_3ST_BASE,
4542 ALC880_FIXUP_3ST,
4543 ALC880_FIXUP_3ST_DIG,
4544 ALC880_FIXUP_5ST_BASE,
4545 ALC880_FIXUP_5ST,
4546 ALC880_FIXUP_5ST_DIG,
4547 ALC880_FIXUP_6ST_BASE,
4548 ALC880_FIXUP_6ST,
4549 ALC880_FIXUP_6ST_DIG,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004550};
4551
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004552/* enable the volume-knob widget support on NID 0x21 */
4553static void alc880_fixup_vol_knob(struct hda_codec *codec,
4554 const struct alc_fixup *fix, int action)
4555{
4556 if (action == ALC_FIXUP_ACT_PROBE)
David Henningsson29adc4b2012-09-25 11:31:00 +02004557 snd_hda_jack_detect_enable_callback(codec, 0x21, ALC_DCVOL_EVENT, alc_update_knob_master);
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004558}
4559
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004560static const struct alc_fixup alc880_fixups[] = {
Takashi Iwai411225a2012-02-20 17:48:19 +01004561 [ALC880_FIXUP_GPIO1] = {
4562 .type = ALC_FIXUP_VERBS,
4563 .v.verbs = alc_gpio1_init_verbs,
4564 },
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004565 [ALC880_FIXUP_GPIO2] = {
4566 .type = ALC_FIXUP_VERBS,
4567 .v.verbs = alc_gpio2_init_verbs,
4568 },
4569 [ALC880_FIXUP_MEDION_RIM] = {
4570 .type = ALC_FIXUP_VERBS,
4571 .v.verbs = (const struct hda_verb[]) {
4572 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4573 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
4574 { }
4575 },
4576 .chained = true,
4577 .chain_id = ALC880_FIXUP_GPIO2,
4578 },
Takashi Iwaidc6af522012-02-17 16:18:59 +01004579 [ALC880_FIXUP_LG] = {
4580 .type = ALC_FIXUP_PINS,
4581 .v.pins = (const struct alc_pincfg[]) {
4582 /* disable bogus unused pins */
4583 { 0x16, 0x411111f0 },
4584 { 0x18, 0x411111f0 },
4585 { 0x1a, 0x411111f0 },
4586 { }
4587 }
4588 },
Takashi Iwaif02aab52012-02-17 16:33:56 +01004589 [ALC880_FIXUP_W810] = {
4590 .type = ALC_FIXUP_PINS,
4591 .v.pins = (const struct alc_pincfg[]) {
4592 /* disable bogus unused pins */
4593 { 0x17, 0x411111f0 },
4594 { }
4595 },
4596 .chained = true,
4597 .chain_id = ALC880_FIXUP_GPIO2,
4598 },
Takashi Iwai27e917f2012-02-17 17:49:54 +01004599 [ALC880_FIXUP_EAPD_COEF] = {
4600 .type = ALC_FIXUP_VERBS,
4601 .v.verbs = (const struct hda_verb[]) {
4602 /* change to EAPD mode */
4603 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4604 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
4605 {}
4606 },
4607 },
Takashi Iwaib9368f52012-02-17 17:54:44 +01004608 [ALC880_FIXUP_TCL_S700] = {
4609 .type = ALC_FIXUP_VERBS,
4610 .v.verbs = (const struct hda_verb[]) {
4611 /* change to EAPD mode */
4612 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4613 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
4614 {}
4615 },
4616 .chained = true,
4617 .chain_id = ALC880_FIXUP_GPIO2,
4618 },
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004619 [ALC880_FIXUP_VOL_KNOB] = {
4620 .type = ALC_FIXUP_FUNC,
4621 .v.func = alc880_fixup_vol_knob,
4622 },
4623 [ALC880_FIXUP_FUJITSU] = {
4624 /* override all pins as BIOS on old Amilo is broken */
4625 .type = ALC_FIXUP_PINS,
4626 .v.pins = (const struct alc_pincfg[]) {
4627 { 0x14, 0x0121411f }, /* HP */
4628 { 0x15, 0x99030120 }, /* speaker */
4629 { 0x16, 0x99030130 }, /* bass speaker */
4630 { 0x17, 0x411111f0 }, /* N/A */
4631 { 0x18, 0x411111f0 }, /* N/A */
4632 { 0x19, 0x01a19950 }, /* mic-in */
4633 { 0x1a, 0x411111f0 }, /* N/A */
4634 { 0x1b, 0x411111f0 }, /* N/A */
4635 { 0x1c, 0x411111f0 }, /* N/A */
4636 { 0x1d, 0x411111f0 }, /* N/A */
4637 { 0x1e, 0x01454140 }, /* SPDIF out */
4638 { }
4639 },
4640 .chained = true,
4641 .chain_id = ALC880_FIXUP_VOL_KNOB,
4642 },
Takashi Iwaiba533812012-02-20 16:36:52 +01004643 [ALC880_FIXUP_F1734] = {
4644 /* almost compatible with FUJITSU, but no bass and SPDIF */
4645 .type = ALC_FIXUP_PINS,
4646 .v.pins = (const struct alc_pincfg[]) {
4647 { 0x14, 0x0121411f }, /* HP */
4648 { 0x15, 0x99030120 }, /* speaker */
4649 { 0x16, 0x411111f0 }, /* N/A */
4650 { 0x17, 0x411111f0 }, /* N/A */
4651 { 0x18, 0x411111f0 }, /* N/A */
4652 { 0x19, 0x01a19950 }, /* mic-in */
4653 { 0x1a, 0x411111f0 }, /* N/A */
4654 { 0x1b, 0x411111f0 }, /* N/A */
4655 { 0x1c, 0x411111f0 }, /* N/A */
4656 { 0x1d, 0x411111f0 }, /* N/A */
4657 { 0x1e, 0x411111f0 }, /* N/A */
4658 { }
4659 },
4660 .chained = true,
4661 .chain_id = ALC880_FIXUP_VOL_KNOB,
4662 },
Takashi Iwai817de922012-02-20 17:20:48 +01004663 [ALC880_FIXUP_UNIWILL] = {
4664 /* need to fix HP and speaker pins to be parsed correctly */
4665 .type = ALC_FIXUP_PINS,
4666 .v.pins = (const struct alc_pincfg[]) {
4667 { 0x14, 0x0121411f }, /* HP */
4668 { 0x15, 0x99030120 }, /* speaker */
4669 { 0x16, 0x99030130 }, /* bass speaker */
4670 { }
4671 },
4672 },
Takashi Iwai967b88c2012-02-20 17:31:02 +01004673 [ALC880_FIXUP_UNIWILL_DIG] = {
4674 .type = ALC_FIXUP_PINS,
4675 .v.pins = (const struct alc_pincfg[]) {
4676 /* disable bogus unused pins */
4677 { 0x17, 0x411111f0 },
4678 { 0x19, 0x411111f0 },
4679 { 0x1b, 0x411111f0 },
4680 { 0x1f, 0x411111f0 },
4681 { }
4682 }
4683 },
Takashi Iwai96e225f2012-02-20 17:41:51 +01004684 [ALC880_FIXUP_Z71V] = {
4685 .type = ALC_FIXUP_PINS,
4686 .v.pins = (const struct alc_pincfg[]) {
4687 /* set up the whole pins as BIOS is utterly broken */
4688 { 0x14, 0x99030120 }, /* speaker */
4689 { 0x15, 0x0121411f }, /* HP */
4690 { 0x16, 0x411111f0 }, /* N/A */
4691 { 0x17, 0x411111f0 }, /* N/A */
4692 { 0x18, 0x01a19950 }, /* mic-in */
4693 { 0x19, 0x411111f0 }, /* N/A */
4694 { 0x1a, 0x01813031 }, /* line-in */
4695 { 0x1b, 0x411111f0 }, /* N/A */
4696 { 0x1c, 0x411111f0 }, /* N/A */
4697 { 0x1d, 0x411111f0 }, /* N/A */
4698 { 0x1e, 0x0144111e }, /* SPDIF */
4699 { }
4700 }
4701 },
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004702 [ALC880_FIXUP_3ST_BASE] = {
4703 .type = ALC_FIXUP_PINS,
4704 .v.pins = (const struct alc_pincfg[]) {
4705 { 0x14, 0x01014010 }, /* line-out */
4706 { 0x15, 0x411111f0 }, /* N/A */
4707 { 0x16, 0x411111f0 }, /* N/A */
4708 { 0x17, 0x411111f0 }, /* N/A */
4709 { 0x18, 0x01a19c30 }, /* mic-in */
4710 { 0x19, 0x0121411f }, /* HP */
4711 { 0x1a, 0x01813031 }, /* line-in */
4712 { 0x1b, 0x02a19c40 }, /* front-mic */
4713 { 0x1c, 0x411111f0 }, /* N/A */
4714 { 0x1d, 0x411111f0 }, /* N/A */
4715 /* 0x1e is filled in below */
4716 { 0x1f, 0x411111f0 }, /* N/A */
4717 { }
4718 }
4719 },
4720 [ALC880_FIXUP_3ST] = {
4721 .type = ALC_FIXUP_PINS,
4722 .v.pins = (const struct alc_pincfg[]) {
4723 { 0x1e, 0x411111f0 }, /* N/A */
4724 { }
4725 },
4726 .chained = true,
4727 .chain_id = ALC880_FIXUP_3ST_BASE,
4728 },
4729 [ALC880_FIXUP_3ST_DIG] = {
4730 .type = ALC_FIXUP_PINS,
4731 .v.pins = (const struct alc_pincfg[]) {
4732 { 0x1e, 0x0144111e }, /* SPDIF */
4733 { }
4734 },
4735 .chained = true,
4736 .chain_id = ALC880_FIXUP_3ST_BASE,
4737 },
4738 [ALC880_FIXUP_5ST_BASE] = {
4739 .type = ALC_FIXUP_PINS,
4740 .v.pins = (const struct alc_pincfg[]) {
4741 { 0x14, 0x01014010 }, /* front */
4742 { 0x15, 0x411111f0 }, /* N/A */
4743 { 0x16, 0x01011411 }, /* CLFE */
4744 { 0x17, 0x01016412 }, /* surr */
4745 { 0x18, 0x01a19c30 }, /* mic-in */
4746 { 0x19, 0x0121411f }, /* HP */
4747 { 0x1a, 0x01813031 }, /* line-in */
4748 { 0x1b, 0x02a19c40 }, /* front-mic */
4749 { 0x1c, 0x411111f0 }, /* N/A */
4750 { 0x1d, 0x411111f0 }, /* N/A */
4751 /* 0x1e is filled in below */
4752 { 0x1f, 0x411111f0 }, /* N/A */
4753 { }
4754 }
4755 },
4756 [ALC880_FIXUP_5ST] = {
4757 .type = ALC_FIXUP_PINS,
4758 .v.pins = (const struct alc_pincfg[]) {
4759 { 0x1e, 0x411111f0 }, /* N/A */
4760 { }
4761 },
4762 .chained = true,
4763 .chain_id = ALC880_FIXUP_5ST_BASE,
4764 },
4765 [ALC880_FIXUP_5ST_DIG] = {
4766 .type = ALC_FIXUP_PINS,
4767 .v.pins = (const struct alc_pincfg[]) {
4768 { 0x1e, 0x0144111e }, /* SPDIF */
4769 { }
4770 },
4771 .chained = true,
4772 .chain_id = ALC880_FIXUP_5ST_BASE,
4773 },
4774 [ALC880_FIXUP_6ST_BASE] = {
4775 .type = ALC_FIXUP_PINS,
4776 .v.pins = (const struct alc_pincfg[]) {
4777 { 0x14, 0x01014010 }, /* front */
4778 { 0x15, 0x01016412 }, /* surr */
4779 { 0x16, 0x01011411 }, /* CLFE */
4780 { 0x17, 0x01012414 }, /* side */
4781 { 0x18, 0x01a19c30 }, /* mic-in */
4782 { 0x19, 0x02a19c40 }, /* front-mic */
4783 { 0x1a, 0x01813031 }, /* line-in */
4784 { 0x1b, 0x0121411f }, /* HP */
4785 { 0x1c, 0x411111f0 }, /* N/A */
4786 { 0x1d, 0x411111f0 }, /* N/A */
4787 /* 0x1e is filled in below */
4788 { 0x1f, 0x411111f0 }, /* N/A */
4789 { }
4790 }
4791 },
4792 [ALC880_FIXUP_6ST] = {
4793 .type = ALC_FIXUP_PINS,
4794 .v.pins = (const struct alc_pincfg[]) {
4795 { 0x1e, 0x411111f0 }, /* N/A */
4796 { }
4797 },
4798 .chained = true,
4799 .chain_id = ALC880_FIXUP_6ST_BASE,
4800 },
4801 [ALC880_FIXUP_6ST_DIG] = {
4802 .type = ALC_FIXUP_PINS,
4803 .v.pins = (const struct alc_pincfg[]) {
4804 { 0x1e, 0x0144111e }, /* SPDIF */
4805 { }
4806 },
4807 .chained = true,
4808 .chain_id = ALC880_FIXUP_6ST_BASE,
4809 },
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004810};
4811
4812static const struct snd_pci_quirk alc880_fixup_tbl[] = {
Takashi Iwaif02aab52012-02-17 16:33:56 +01004813 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
Takashi Iwai96e225f2012-02-20 17:41:51 +01004814 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
Takashi Iwai29e3fdc2012-02-20 17:56:57 +01004815 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
4816 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
Takashi Iwai27e917f2012-02-17 17:49:54 +01004817 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
Takashi Iwai967b88c2012-02-20 17:31:02 +01004818 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
Takashi Iwaiba533812012-02-20 16:36:52 +01004819 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
Takashi Iwai817de922012-02-20 17:20:48 +01004820 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
Takashi Iwai7833c7e2012-02-20 17:11:38 +01004821 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
Takashi Iwaif02aab52012-02-17 16:33:56 +01004822 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004823 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
Takashi Iwaiba533812012-02-20 16:36:52 +01004824 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_FIXUP_F1734),
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004825 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
Takashi Iwaiba533812012-02-20 16:36:52 +01004826 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004827 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
Takashi Iwaidc6af522012-02-17 16:18:59 +01004828 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
4829 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
4830 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
Takashi Iwaib9368f52012-02-17 17:54:44 +01004831 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004832
4833 /* Below is the copied entries from alc880_quirks.c.
4834 * It's not quite sure whether BIOS sets the correct pin-config table
4835 * on these machines, thus they are kept to be compatible with
4836 * the old static quirks. Once when it's confirmed to work without
4837 * these overrides, it'd be better to remove.
4838 */
4839 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
4840 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
4841 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
4842 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
4843 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
4844 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
4845 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
4846 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
4847 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
4848 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
4849 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
4850 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
4851 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
4852 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
4853 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
4854 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
4855 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
4856 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
4857 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
4858 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
4859 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
4860 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
4861 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
4862 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4863 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4864 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4865 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
4866 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4867 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
4868 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
4869 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4870 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4871 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4872 /* default Intel */
4873 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
4874 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
4875 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
4876 {}
4877};
4878
4879static const struct alc_model_fixup alc880_fixup_models[] = {
4880 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
4881 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
4882 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
4883 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
4884 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
4885 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004886 {}
4887};
4888
4889
4890/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02004891 * OK, here we have finally the patch for ALC880
4892 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004893static int patch_alc880(struct hda_codec *codec)
4894{
4895 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004896 int err;
4897
Takashi Iwai3de95172012-05-07 18:03:15 +02004898 err = alc_alloc_spec(codec, 0x0b);
4899 if (err < 0)
4900 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004901
Takashi Iwai3de95172012-05-07 18:03:15 +02004902 spec = codec->spec;
Takashi Iwai7b1655f2011-07-14 15:31:21 +02004903 spec->need_dac_fix = 1;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004904
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004905 alc_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
4906 alc880_fixups);
4907 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004908
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004909 /* automatic parse from the BIOS config */
4910 err = alc880_parse_auto_config(codec);
4911 if (err < 0)
4912 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004913
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004914 if (!spec->no_analog) {
4915 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004916 if (err < 0)
4917 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004918 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4919 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004920
Takashi Iwai1d045db2011-07-07 18:23:21 +02004921 codec->patch_ops = alc_patch_ops;
David Henningsson29adc4b2012-09-25 11:31:00 +02004922 codec->patch_ops.unsol_event = alc880_unsol_event;
4923
Takashi Iwai1d045db2011-07-07 18:23:21 +02004924
Takashi Iwai589876e2012-02-20 15:47:55 +01004925 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4926
Takashi Iwai1d045db2011-07-07 18:23:21 +02004927 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004928
4929 error:
4930 alc_free(codec);
4931 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004932}
4933
4934
4935/*
4936 * ALC260 support
4937 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004938static int alc260_parse_auto_config(struct hda_codec *codec)
4939{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004940 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004941 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
4942 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004943}
4944
Takashi Iwai1d045db2011-07-07 18:23:21 +02004945/*
4946 * Pin config fixes
4947 */
4948enum {
Takashi Iwaica8f0422012-02-16 11:51:19 +01004949 ALC260_FIXUP_HP_DC5750,
4950 ALC260_FIXUP_HP_PIN_0F,
4951 ALC260_FIXUP_COEF,
Takashi Iwai15317ab2012-02-16 12:02:53 +01004952 ALC260_FIXUP_GPIO1,
Takashi Iwai20f7d922012-02-16 12:35:16 +01004953 ALC260_FIXUP_GPIO1_TOGGLE,
4954 ALC260_FIXUP_REPLACER,
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01004955 ALC260_FIXUP_HP_B1900,
Takashi Iwai118cb4a2012-04-19 07:33:27 +02004956 ALC260_FIXUP_KN1,
Takashi Iwai1d045db2011-07-07 18:23:21 +02004957};
4958
Takashi Iwai20f7d922012-02-16 12:35:16 +01004959static void alc260_gpio1_automute(struct hda_codec *codec)
4960{
4961 struct alc_spec *spec = codec->spec;
4962 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
4963 spec->hp_jack_present);
4964}
4965
4966static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
4967 const struct alc_fixup *fix, int action)
4968{
4969 struct alc_spec *spec = codec->spec;
4970 if (action == ALC_FIXUP_ACT_PROBE) {
4971 /* although the machine has only one output pin, we need to
4972 * toggle GPIO1 according to the jack state
4973 */
4974 spec->automute_hook = alc260_gpio1_automute;
4975 spec->detect_hp = 1;
4976 spec->automute_speaker = 1;
4977 spec->autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
David Henningsson29adc4b2012-09-25 11:31:00 +02004978 snd_hda_jack_detect_enable_callback(codec, 0x0f, ALC_HP_EVENT,
4979 alc_hp_automute);
Takashi Iwai23d30f22012-05-07 17:17:32 +02004980 snd_hda_gen_add_verbs(&spec->gen, alc_gpio1_init_verbs);
Takashi Iwai20f7d922012-02-16 12:35:16 +01004981 }
4982}
4983
Takashi Iwai118cb4a2012-04-19 07:33:27 +02004984static void alc260_fixup_kn1(struct hda_codec *codec,
4985 const struct alc_fixup *fix, int action)
4986{
4987 struct alc_spec *spec = codec->spec;
4988 static const struct alc_pincfg pincfgs[] = {
4989 { 0x0f, 0x02214000 }, /* HP/speaker */
4990 { 0x12, 0x90a60160 }, /* int mic */
4991 { 0x13, 0x02a19000 }, /* ext mic */
4992 { 0x18, 0x01446000 }, /* SPDIF out */
4993 /* disable bogus I/O pins */
4994 { 0x10, 0x411111f0 },
4995 { 0x11, 0x411111f0 },
4996 { 0x14, 0x411111f0 },
4997 { 0x15, 0x411111f0 },
4998 { 0x16, 0x411111f0 },
4999 { 0x17, 0x411111f0 },
5000 { 0x19, 0x411111f0 },
5001 { }
5002 };
5003
5004 switch (action) {
5005 case ALC_FIXUP_ACT_PRE_PROBE:
5006 alc_apply_pincfgs(codec, pincfgs);
5007 break;
5008 case ALC_FIXUP_ACT_PROBE:
5009 spec->init_amp = ALC_INIT_NONE;
5010 break;
5011 }
5012}
5013
Takashi Iwai1d045db2011-07-07 18:23:21 +02005014static const struct alc_fixup alc260_fixups[] = {
Takashi Iwaica8f0422012-02-16 11:51:19 +01005015 [ALC260_FIXUP_HP_DC5750] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005016 .type = ALC_FIXUP_PINS,
5017 .v.pins = (const struct alc_pincfg[]) {
5018 { 0x11, 0x90130110 }, /* speaker */
5019 { }
5020 }
5021 },
Takashi Iwaica8f0422012-02-16 11:51:19 +01005022 [ALC260_FIXUP_HP_PIN_0F] = {
5023 .type = ALC_FIXUP_PINS,
5024 .v.pins = (const struct alc_pincfg[]) {
5025 { 0x0f, 0x01214000 }, /* HP */
5026 { }
5027 }
5028 },
5029 [ALC260_FIXUP_COEF] = {
5030 .type = ALC_FIXUP_VERBS,
5031 .v.verbs = (const struct hda_verb[]) {
5032 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5033 { 0x20, AC_VERB_SET_PROC_COEF, 0x3040 },
5034 { }
5035 },
5036 .chained = true,
5037 .chain_id = ALC260_FIXUP_HP_PIN_0F,
5038 },
Takashi Iwai15317ab2012-02-16 12:02:53 +01005039 [ALC260_FIXUP_GPIO1] = {
5040 .type = ALC_FIXUP_VERBS,
5041 .v.verbs = alc_gpio1_init_verbs,
5042 },
Takashi Iwai20f7d922012-02-16 12:35:16 +01005043 [ALC260_FIXUP_GPIO1_TOGGLE] = {
5044 .type = ALC_FIXUP_FUNC,
5045 .v.func = alc260_fixup_gpio1_toggle,
5046 .chained = true,
5047 .chain_id = ALC260_FIXUP_HP_PIN_0F,
5048 },
5049 [ALC260_FIXUP_REPLACER] = {
5050 .type = ALC_FIXUP_VERBS,
5051 .v.verbs = (const struct hda_verb[]) {
5052 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5053 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5054 { }
5055 },
5056 .chained = true,
5057 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
5058 },
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01005059 [ALC260_FIXUP_HP_B1900] = {
5060 .type = ALC_FIXUP_FUNC,
5061 .v.func = alc260_fixup_gpio1_toggle,
5062 .chained = true,
5063 .chain_id = ALC260_FIXUP_COEF,
Takashi Iwai118cb4a2012-04-19 07:33:27 +02005064 },
5065 [ALC260_FIXUP_KN1] = {
5066 .type = ALC_FIXUP_FUNC,
5067 .v.func = alc260_fixup_kn1,
5068 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005069};
5070
5071static const struct snd_pci_quirk alc260_fixup_tbl[] = {
Takashi Iwai15317ab2012-02-16 12:02:53 +01005072 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
Takashi Iwaica8f0422012-02-16 11:51:19 +01005073 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
Takashi Iwai15317ab2012-02-16 12:02:53 +01005074 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
Takashi Iwaica8f0422012-02-16 11:51:19 +01005075 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01005076 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
Takashi Iwaib1f58082012-02-16 12:45:03 +01005077 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
Takashi Iwai118cb4a2012-04-19 07:33:27 +02005078 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
Takashi Iwai20f7d922012-02-16 12:35:16 +01005079 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
Takashi Iwaica8f0422012-02-16 11:51:19 +01005080 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005081 {}
5082};
5083
5084/*
5085 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005086static int patch_alc260(struct hda_codec *codec)
5087{
5088 struct alc_spec *spec;
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01005089 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005090
Takashi Iwai3de95172012-05-07 18:03:15 +02005091 err = alc_alloc_spec(codec, 0x07);
5092 if (err < 0)
5093 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005094
Takashi Iwai3de95172012-05-07 18:03:15 +02005095 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005096
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01005097 alc_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
5098 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005099
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01005100 /* automatic parse from the BIOS config */
5101 err = alc260_parse_auto_config(codec);
5102 if (err < 0)
5103 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005104
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005105 if (!spec->no_analog) {
5106 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005107 if (err < 0)
5108 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005109 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
5110 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005111
Takashi Iwai1d045db2011-07-07 18:23:21 +02005112 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005113 spec->shutup = alc_eapd_shutup;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005114
Takashi Iwai589876e2012-02-20 15:47:55 +01005115 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5116
Takashi Iwai1d045db2011-07-07 18:23:21 +02005117 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005118
5119 error:
5120 alc_free(codec);
5121 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005122}
5123
5124
5125/*
5126 * ALC882/883/885/888/889 support
5127 *
5128 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
5129 * configuration. Each pin widget can choose any input DACs and a mixer.
5130 * Each ADC is connected from a mixer of all inputs. This makes possible
5131 * 6-channel independent captures.
5132 *
5133 * In addition, an independent DAC for the multi-playback (not used in this
5134 * driver yet).
5135 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005136
5137/*
5138 * Pin config fixes
5139 */
5140enum {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005141 ALC882_FIXUP_ABIT_AW9D_MAX,
5142 ALC882_FIXUP_LENOVO_Y530,
5143 ALC882_FIXUP_PB_M5210,
5144 ALC882_FIXUP_ACER_ASPIRE_7736,
5145 ALC882_FIXUP_ASUS_W90V,
Marton Balint8f239212012-03-05 21:33:23 +01005146 ALC889_FIXUP_CD,
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005147 ALC889_FIXUP_VAIO_TT,
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01005148 ALC888_FIXUP_EEE1601,
Takashi Iwai177943a2011-11-09 12:55:18 +01005149 ALC882_FIXUP_EAPD,
Takashi Iwai7a6069b2011-11-09 15:22:01 +01005150 ALC883_FIXUP_EAPD,
Takashi Iwai8812c4f2011-11-09 17:39:15 +01005151 ALC883_FIXUP_ACER_EAPD,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005152 ALC882_FIXUP_GPIO1,
5153 ALC882_FIXUP_GPIO2,
Takashi Iwaieb844d52011-11-09 18:03:07 +01005154 ALC882_FIXUP_GPIO3,
Takashi Iwai68ef0562011-11-09 18:24:44 +01005155 ALC889_FIXUP_COEF,
5156 ALC882_FIXUP_ASUS_W2JC,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005157 ALC882_FIXUP_ACER_ASPIRE_4930G,
5158 ALC882_FIXUP_ACER_ASPIRE_8930G,
5159 ALC882_FIXUP_ASPIRE_8930G_VERBS,
Takashi Iwai56710872011-11-14 17:42:11 +01005160 ALC885_FIXUP_MACPRO_GPIO,
Takashi Iwai02a237b2012-02-13 15:25:07 +01005161 ALC889_FIXUP_DAC_ROUTE,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005162 ALC889_FIXUP_MBP_VREF,
5163 ALC889_FIXUP_IMAC91_VREF,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005164 ALC882_FIXUP_INV_DMIC,
Takashi Iwaie427c232012-07-29 10:04:08 +02005165 ALC882_FIXUP_NO_PRIMARY_HP,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005166};
5167
Takashi Iwai68ef0562011-11-09 18:24:44 +01005168static void alc889_fixup_coef(struct hda_codec *codec,
5169 const struct alc_fixup *fix, int action)
5170{
5171 if (action != ALC_FIXUP_ACT_INIT)
5172 return;
5173 alc889_coef_init(codec);
5174}
5175
Takashi Iwai56710872011-11-14 17:42:11 +01005176/* toggle speaker-output according to the hp-jack state */
5177static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
5178{
5179 unsigned int gpiostate, gpiomask, gpiodir;
5180
5181 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
5182 AC_VERB_GET_GPIO_DATA, 0);
5183
5184 if (!muted)
5185 gpiostate |= (1 << pin);
5186 else
5187 gpiostate &= ~(1 << pin);
5188
5189 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
5190 AC_VERB_GET_GPIO_MASK, 0);
5191 gpiomask |= (1 << pin);
5192
5193 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
5194 AC_VERB_GET_GPIO_DIRECTION, 0);
5195 gpiodir |= (1 << pin);
5196
5197
5198 snd_hda_codec_write(codec, codec->afg, 0,
5199 AC_VERB_SET_GPIO_MASK, gpiomask);
5200 snd_hda_codec_write(codec, codec->afg, 0,
5201 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
5202
5203 msleep(1);
5204
5205 snd_hda_codec_write(codec, codec->afg, 0,
5206 AC_VERB_SET_GPIO_DATA, gpiostate);
5207}
5208
5209/* set up GPIO at initialization */
5210static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
5211 const struct alc_fixup *fix, int action)
5212{
5213 if (action != ALC_FIXUP_ACT_INIT)
5214 return;
5215 alc882_gpio_mute(codec, 0, 0);
5216 alc882_gpio_mute(codec, 1, 0);
5217}
5218
Takashi Iwai02a237b2012-02-13 15:25:07 +01005219/* Fix the connection of some pins for ALC889:
5220 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
5221 * work correctly (bko#42740)
5222 */
5223static void alc889_fixup_dac_route(struct hda_codec *codec,
5224 const struct alc_fixup *fix, int action)
5225{
5226 if (action == ALC_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaief8d60f2012-02-17 10:12:38 +01005227 /* fake the connections during parsing the tree */
Takashi Iwai02a237b2012-02-13 15:25:07 +01005228 hda_nid_t conn1[2] = { 0x0c, 0x0d };
5229 hda_nid_t conn2[2] = { 0x0e, 0x0f };
5230 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
5231 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
5232 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
5233 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
Takashi Iwaief8d60f2012-02-17 10:12:38 +01005234 } else if (action == ALC_FIXUP_ACT_PROBE) {
5235 /* restore the connections */
5236 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
5237 snd_hda_override_conn_list(codec, 0x14, 5, conn);
5238 snd_hda_override_conn_list(codec, 0x15, 5, conn);
5239 snd_hda_override_conn_list(codec, 0x18, 5, conn);
5240 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
Takashi Iwai02a237b2012-02-13 15:25:07 +01005241 }
5242}
5243
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005244/* Set VREF on HP pin */
5245static void alc889_fixup_mbp_vref(struct hda_codec *codec,
5246 const struct alc_fixup *fix, int action)
5247{
5248 struct alc_spec *spec = codec->spec;
5249 static hda_nid_t nids[2] = { 0x14, 0x15 };
5250 int i;
5251
5252 if (action != ALC_FIXUP_ACT_INIT)
5253 return;
5254 for (i = 0; i < ARRAY_SIZE(nids); i++) {
5255 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
5256 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
5257 continue;
5258 val = snd_hda_codec_read(codec, nids[i], 0,
5259 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
5260 val |= AC_PINCTL_VREF_80;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005261 snd_hda_set_pin_ctl(codec, nids[i], val);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005262 spec->keep_vref_in_automute = 1;
5263 break;
5264 }
5265}
5266
5267/* Set VREF on speaker pins on imac91 */
5268static void alc889_fixup_imac91_vref(struct hda_codec *codec,
5269 const struct alc_fixup *fix, int action)
5270{
5271 struct alc_spec *spec = codec->spec;
5272 static hda_nid_t nids[2] = { 0x18, 0x1a };
5273 int i;
5274
5275 if (action != ALC_FIXUP_ACT_INIT)
5276 return;
5277 for (i = 0; i < ARRAY_SIZE(nids); i++) {
5278 unsigned int val;
5279 val = snd_hda_codec_read(codec, nids[i], 0,
5280 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
5281 val |= AC_PINCTL_VREF_50;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005282 snd_hda_set_pin_ctl(codec, nids[i], val);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005283 }
5284 spec->keep_vref_in_automute = 1;
5285}
5286
Takashi Iwaie427c232012-07-29 10:04:08 +02005287/* Don't take HP output as primary
5288 * strangely, the speaker output doesn't work on VAIO Z through DAC 0x05
5289 */
5290static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
5291 const struct alc_fixup *fix, int action)
5292{
5293 struct alc_spec *spec = codec->spec;
5294 if (action == ALC_FIXUP_ACT_PRE_PROBE)
5295 spec->no_primary_hp = 1;
5296}
5297
Takashi Iwai1d045db2011-07-07 18:23:21 +02005298static const struct alc_fixup alc882_fixups[] = {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005299 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005300 .type = ALC_FIXUP_PINS,
5301 .v.pins = (const struct alc_pincfg[]) {
5302 { 0x15, 0x01080104 }, /* side */
5303 { 0x16, 0x01011012 }, /* rear */
5304 { 0x17, 0x01016011 }, /* clfe */
5305 { }
5306 }
5307 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005308 [ALC882_FIXUP_LENOVO_Y530] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005309 .type = ALC_FIXUP_PINS,
5310 .v.pins = (const struct alc_pincfg[]) {
5311 { 0x15, 0x99130112 }, /* rear int speakers */
5312 { 0x16, 0x99130111 }, /* subwoofer */
5313 { }
5314 }
5315 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005316 [ALC882_FIXUP_PB_M5210] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005317 .type = ALC_FIXUP_VERBS,
5318 .v.verbs = (const struct hda_verb[]) {
5319 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
5320 {}
5321 }
5322 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005323 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
Takashi Iwai23d30f22012-05-07 17:17:32 +02005324 .type = ALC_FIXUP_FUNC,
5325 .v.func = alc_fixup_sku_ignore,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005326 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005327 [ALC882_FIXUP_ASUS_W90V] = {
Takashi Iwai5cdf7452011-10-26 23:04:08 +02005328 .type = ALC_FIXUP_PINS,
5329 .v.pins = (const struct alc_pincfg[]) {
5330 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
5331 { }
5332 }
5333 },
Marton Balint8f239212012-03-05 21:33:23 +01005334 [ALC889_FIXUP_CD] = {
5335 .type = ALC_FIXUP_PINS,
5336 .v.pins = (const struct alc_pincfg[]) {
5337 { 0x1c, 0x993301f0 }, /* CD */
5338 { }
5339 }
5340 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005341 [ALC889_FIXUP_VAIO_TT] = {
5342 .type = ALC_FIXUP_PINS,
5343 .v.pins = (const struct alc_pincfg[]) {
5344 { 0x17, 0x90170111 }, /* hidden surround speaker */
5345 { }
5346 }
5347 },
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01005348 [ALC888_FIXUP_EEE1601] = {
5349 .type = ALC_FIXUP_VERBS,
5350 .v.verbs = (const struct hda_verb[]) {
5351 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
5352 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
5353 { }
5354 }
Takashi Iwai177943a2011-11-09 12:55:18 +01005355 },
5356 [ALC882_FIXUP_EAPD] = {
5357 .type = ALC_FIXUP_VERBS,
5358 .v.verbs = (const struct hda_verb[]) {
5359 /* change to EAPD mode */
5360 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5361 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
5362 { }
5363 }
5364 },
Takashi Iwai7a6069b2011-11-09 15:22:01 +01005365 [ALC883_FIXUP_EAPD] = {
5366 .type = ALC_FIXUP_VERBS,
5367 .v.verbs = (const struct hda_verb[]) {
5368 /* change to EAPD mode */
5369 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5370 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
5371 { }
5372 }
5373 },
Takashi Iwai8812c4f2011-11-09 17:39:15 +01005374 [ALC883_FIXUP_ACER_EAPD] = {
5375 .type = ALC_FIXUP_VERBS,
5376 .v.verbs = (const struct hda_verb[]) {
5377 /* eanable EAPD on Acer laptops */
5378 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5379 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5380 { }
5381 }
5382 },
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005383 [ALC882_FIXUP_GPIO1] = {
5384 .type = ALC_FIXUP_VERBS,
5385 .v.verbs = alc_gpio1_init_verbs,
5386 },
5387 [ALC882_FIXUP_GPIO2] = {
5388 .type = ALC_FIXUP_VERBS,
5389 .v.verbs = alc_gpio2_init_verbs,
5390 },
Takashi Iwaieb844d52011-11-09 18:03:07 +01005391 [ALC882_FIXUP_GPIO3] = {
5392 .type = ALC_FIXUP_VERBS,
5393 .v.verbs = alc_gpio3_init_verbs,
5394 },
Takashi Iwai68ef0562011-11-09 18:24:44 +01005395 [ALC882_FIXUP_ASUS_W2JC] = {
5396 .type = ALC_FIXUP_VERBS,
5397 .v.verbs = alc_gpio1_init_verbs,
5398 .chained = true,
5399 .chain_id = ALC882_FIXUP_EAPD,
5400 },
5401 [ALC889_FIXUP_COEF] = {
5402 .type = ALC_FIXUP_FUNC,
5403 .v.func = alc889_fixup_coef,
5404 },
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005405 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
5406 .type = ALC_FIXUP_PINS,
5407 .v.pins = (const struct alc_pincfg[]) {
5408 { 0x16, 0x99130111 }, /* CLFE speaker */
5409 { 0x17, 0x99130112 }, /* surround speaker */
5410 { }
Takashi Iwai038d4fe2012-04-11 17:18:12 +02005411 },
5412 .chained = true,
5413 .chain_id = ALC882_FIXUP_GPIO1,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005414 },
5415 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
5416 .type = ALC_FIXUP_PINS,
5417 .v.pins = (const struct alc_pincfg[]) {
5418 { 0x16, 0x99130111 }, /* CLFE speaker */
5419 { 0x1b, 0x99130112 }, /* surround speaker */
5420 { }
5421 },
5422 .chained = true,
5423 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
5424 },
5425 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
5426 /* additional init verbs for Acer Aspire 8930G */
5427 .type = ALC_FIXUP_VERBS,
5428 .v.verbs = (const struct hda_verb[]) {
5429 /* Enable all DACs */
5430 /* DAC DISABLE/MUTE 1? */
5431 /* setting bits 1-5 disables DAC nids 0x02-0x06
5432 * apparently. Init=0x38 */
5433 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
5434 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
5435 /* DAC DISABLE/MUTE 2? */
5436 /* some bit here disables the other DACs.
5437 * Init=0x4900 */
5438 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
5439 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
5440 /* DMIC fix
5441 * This laptop has a stereo digital microphone.
5442 * The mics are only 1cm apart which makes the stereo
5443 * useless. However, either the mic or the ALC889
5444 * makes the signal become a difference/sum signal
5445 * instead of standard stereo, which is annoying.
5446 * So instead we flip this bit which makes the
5447 * codec replicate the sum signal to both channels,
5448 * turning it into a normal mono mic.
5449 */
5450 /* DMIC_CONTROL? Init value = 0x0001 */
5451 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
5452 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
5453 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5454 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5455 { }
Takashi Iwai038d4fe2012-04-11 17:18:12 +02005456 },
5457 .chained = true,
5458 .chain_id = ALC882_FIXUP_GPIO1,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005459 },
Takashi Iwai56710872011-11-14 17:42:11 +01005460 [ALC885_FIXUP_MACPRO_GPIO] = {
5461 .type = ALC_FIXUP_FUNC,
5462 .v.func = alc885_fixup_macpro_gpio,
5463 },
Takashi Iwai02a237b2012-02-13 15:25:07 +01005464 [ALC889_FIXUP_DAC_ROUTE] = {
5465 .type = ALC_FIXUP_FUNC,
5466 .v.func = alc889_fixup_dac_route,
5467 },
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005468 [ALC889_FIXUP_MBP_VREF] = {
5469 .type = ALC_FIXUP_FUNC,
5470 .v.func = alc889_fixup_mbp_vref,
5471 .chained = true,
5472 .chain_id = ALC882_FIXUP_GPIO1,
5473 },
5474 [ALC889_FIXUP_IMAC91_VREF] = {
5475 .type = ALC_FIXUP_FUNC,
5476 .v.func = alc889_fixup_imac91_vref,
5477 .chained = true,
5478 .chain_id = ALC882_FIXUP_GPIO1,
5479 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005480 [ALC882_FIXUP_INV_DMIC] = {
5481 .type = ALC_FIXUP_FUNC,
5482 .v.func = alc_fixup_inv_dmic_0x12,
5483 },
Takashi Iwaie427c232012-07-29 10:04:08 +02005484 [ALC882_FIXUP_NO_PRIMARY_HP] = {
5485 .type = ALC_FIXUP_FUNC,
5486 .v.func = alc882_fixup_no_primary_hp,
5487 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005488};
5489
5490static const struct snd_pci_quirk alc882_fixup_tbl[] = {
Takashi Iwai8812c4f2011-11-09 17:39:15 +01005491 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
5492 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
5493 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
5494 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
5495 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
5496 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005497 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
5498 ALC882_FIXUP_ACER_ASPIRE_4930G),
5499 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
5500 ALC882_FIXUP_ACER_ASPIRE_4930G),
5501 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
5502 ALC882_FIXUP_ACER_ASPIRE_8930G),
5503 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
5504 ALC882_FIXUP_ACER_ASPIRE_8930G),
5505 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
5506 ALC882_FIXUP_ACER_ASPIRE_4930G),
5507 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
5508 ALC882_FIXUP_ACER_ASPIRE_4930G),
5509 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
5510 ALC882_FIXUP_ACER_ASPIRE_4930G),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005511 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
Takashi Iwaif5c53d82012-05-07 10:07:33 +02005512 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
5513 ALC882_FIXUP_ACER_ASPIRE_4930G),
Takashi Iwai02a237b2012-02-13 15:25:07 +01005514 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
Takashi Iwaife97da12012-04-12 08:00:19 +02005515 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01005516 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
Takashi Iwai177943a2011-11-09 12:55:18 +01005517 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005518 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
Takashi Iwai68ef0562011-11-09 18:24:44 +01005519 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01005520 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01005521 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
Takashi Iwaie427c232012-07-29 10:04:08 +02005522 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
Takashi Iwai56710872011-11-14 17:42:11 +01005523
5524 /* All Apple entries are in codec SSIDs */
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005525 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
5526 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
5527 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01005528 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
5529 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
5530 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005531 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
5532 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01005533 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005534 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBP_VREF),
5535 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBP_VREF),
5536 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
5537 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01005538 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005539 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
5540 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
5541 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
Josh Boyer29ebe402012-04-12 13:55:36 -04005542 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 5,1", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai05193632012-11-12 10:07:36 +01005543 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005544 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
5545 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
5546 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_IMAC91_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01005547
Takashi Iwai7a6069b2011-11-09 15:22:01 +01005548 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
Takashi Iwaibca40132012-05-07 11:13:14 +02005549 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
Takashi Iwaieb844d52011-11-09 18:03:07 +01005550 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
Marton Balint8f239212012-03-05 21:33:23 +01005551 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3", ALC889_FIXUP_CD),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005552 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
Takashi Iwai7a6069b2011-11-09 15:22:01 +01005553 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
5554 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01005555 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
Takashi Iwai68ef0562011-11-09 18:24:44 +01005556 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005557 {}
5558};
5559
Takashi Iwai912093b2012-04-11 14:03:41 +02005560static const struct alc_model_fixup alc882_fixup_models[] = {
5561 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
5562 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
5563 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005564 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
Takashi Iwaie427c232012-07-29 10:04:08 +02005565 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
Takashi Iwai912093b2012-04-11 14:03:41 +02005566 {}
5567};
5568
Takashi Iwai1d045db2011-07-07 18:23:21 +02005569/*
5570 * BIOS auto configuration
5571 */
5572/* almost identical with ALC880 parser... */
5573static int alc882_parse_auto_config(struct hda_codec *codec)
5574{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005575 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005576 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5577 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005578}
5579
Takashi Iwai1d045db2011-07-07 18:23:21 +02005580/*
5581 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005582static int patch_alc882(struct hda_codec *codec)
5583{
5584 struct alc_spec *spec;
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005585 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005586
Takashi Iwai3de95172012-05-07 18:03:15 +02005587 err = alc_alloc_spec(codec, 0x0b);
5588 if (err < 0)
5589 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005590
Takashi Iwai3de95172012-05-07 18:03:15 +02005591 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005592
5593 switch (codec->vendor_id) {
5594 case 0x10ec0882:
5595 case 0x10ec0885:
5596 break;
5597 default:
5598 /* ALC883 and variants */
5599 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
5600 break;
5601 }
5602
Takashi Iwai912093b2012-04-11 14:03:41 +02005603 alc_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
5604 alc882_fixups);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005605 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005606
5607 alc_auto_parse_customize_define(codec);
5608
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005609 /* automatic parse from the BIOS config */
5610 err = alc882_parse_auto_config(codec);
5611 if (err < 0)
5612 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005613
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005614 if (!spec->no_analog && has_cdefine_beep(codec)) {
5615 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005616 if (err < 0)
5617 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005618 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005619 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005620
Takashi Iwai1d045db2011-07-07 18:23:21 +02005621 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005622
Takashi Iwai589876e2012-02-20 15:47:55 +01005623 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5624
Takashi Iwai1d045db2011-07-07 18:23:21 +02005625 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005626
5627 error:
5628 alc_free(codec);
5629 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005630}
5631
5632
5633/*
5634 * ALC262 support
5635 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005636static int alc262_parse_auto_config(struct hda_codec *codec)
5637{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005638 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005639 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5640 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005641}
5642
5643/*
5644 * Pin config fixes
5645 */
5646enum {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005647 ALC262_FIXUP_FSC_H270,
5648 ALC262_FIXUP_HP_Z200,
5649 ALC262_FIXUP_TYAN,
Takashi Iwaic4701502011-11-07 14:20:07 +01005650 ALC262_FIXUP_LENOVO_3000,
Takashi Iwaib42590b2011-11-07 14:41:01 +01005651 ALC262_FIXUP_BENQ,
5652 ALC262_FIXUP_BENQ_T31,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005653 ALC262_FIXUP_INV_DMIC,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005654};
5655
5656static const struct alc_fixup alc262_fixups[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005657 [ALC262_FIXUP_FSC_H270] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005658 .type = ALC_FIXUP_PINS,
5659 .v.pins = (const struct alc_pincfg[]) {
5660 { 0x14, 0x99130110 }, /* speaker */
5661 { 0x15, 0x0221142f }, /* front HP */
5662 { 0x1b, 0x0121141f }, /* rear HP */
5663 { }
5664 }
5665 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005666 [ALC262_FIXUP_HP_Z200] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005667 .type = ALC_FIXUP_PINS,
5668 .v.pins = (const struct alc_pincfg[]) {
5669 { 0x16, 0x99130120 }, /* internal speaker */
5670 { }
5671 }
5672 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005673 [ALC262_FIXUP_TYAN] = {
5674 .type = ALC_FIXUP_PINS,
5675 .v.pins = (const struct alc_pincfg[]) {
5676 { 0x14, 0x1993e1f0 }, /* int AUX */
5677 { }
5678 }
5679 },
Takashi Iwaic4701502011-11-07 14:20:07 +01005680 [ALC262_FIXUP_LENOVO_3000] = {
5681 .type = ALC_FIXUP_VERBS,
5682 .v.verbs = (const struct hda_verb[]) {
5683 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01005684 {}
5685 },
5686 .chained = true,
5687 .chain_id = ALC262_FIXUP_BENQ,
5688 },
5689 [ALC262_FIXUP_BENQ] = {
5690 .type = ALC_FIXUP_VERBS,
5691 .v.verbs = (const struct hda_verb[]) {
Takashi Iwaic4701502011-11-07 14:20:07 +01005692 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5693 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
5694 {}
5695 }
5696 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01005697 [ALC262_FIXUP_BENQ_T31] = {
5698 .type = ALC_FIXUP_VERBS,
5699 .v.verbs = (const struct hda_verb[]) {
5700 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5701 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5702 {}
5703 }
5704 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005705 [ALC262_FIXUP_INV_DMIC] = {
5706 .type = ALC_FIXUP_FUNC,
5707 .v.func = alc_fixup_inv_dmic_0x12,
5708 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005709};
5710
5711static const struct snd_pci_quirk alc262_fixup_tbl[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005712 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
Takashi Iwai3dcd3be2011-11-07 14:59:40 +01005713 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FIXUP_BENQ),
5714 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005715 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
5716 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
Takashi Iwaic4701502011-11-07 14:20:07 +01005717 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
Takashi Iwaib42590b2011-11-07 14:41:01 +01005718 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
5719 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005720 {}
5721};
5722
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005723static const struct alc_model_fixup alc262_fixup_models[] = {
5724 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
5725 {}
5726};
Takashi Iwai1d045db2011-07-07 18:23:21 +02005727
Takashi Iwai1d045db2011-07-07 18:23:21 +02005728/*
5729 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005730static int patch_alc262(struct hda_codec *codec)
5731{
5732 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005733 int err;
5734
Takashi Iwai3de95172012-05-07 18:03:15 +02005735 err = alc_alloc_spec(codec, 0x0b);
5736 if (err < 0)
5737 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005738
Takashi Iwai3de95172012-05-07 18:03:15 +02005739 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005740
5741#if 0
5742 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
5743 * under-run
5744 */
5745 {
5746 int tmp;
5747 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
5748 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
5749 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
5750 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
5751 }
5752#endif
Takashi Iwai1d045db2011-07-07 18:23:21 +02005753 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
5754
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005755 alc_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
5756 alc262_fixups);
Takashi Iwai42399f72011-11-07 17:18:44 +01005757 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005758
Takashi Iwaiaf741c12012-05-07 18:09:48 +02005759 alc_auto_parse_customize_define(codec);
5760
Takashi Iwai42399f72011-11-07 17:18:44 +01005761 /* automatic parse from the BIOS config */
5762 err = alc262_parse_auto_config(codec);
5763 if (err < 0)
5764 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005765
Takashi Iwai1d045db2011-07-07 18:23:21 +02005766 if (!spec->no_analog && has_cdefine_beep(codec)) {
5767 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005768 if (err < 0)
5769 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005770 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005771 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005772
Takashi Iwai1d045db2011-07-07 18:23:21 +02005773 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005774 spec->shutup = alc_eapd_shutup;
5775
Takashi Iwai589876e2012-02-20 15:47:55 +01005776 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5777
Takashi Iwai1d045db2011-07-07 18:23:21 +02005778 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005779
5780 error:
5781 alc_free(codec);
5782 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005783}
5784
5785/*
5786 * ALC268
5787 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005788/* bind Beep switches of both NID 0x0f and 0x10 */
5789static const struct hda_bind_ctls alc268_bind_beep_sw = {
5790 .ops = &snd_hda_bind_sw,
5791 .values = {
5792 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
5793 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
5794 0
5795 },
5796};
5797
5798static const struct snd_kcontrol_new alc268_beep_mixer[] = {
5799 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
5800 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
5801 { }
5802};
5803
5804/* set PCBEEP vol = 0, mute connections */
5805static const struct hda_verb alc268_beep_init_verbs[] = {
5806 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5807 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5808 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5809 { }
5810};
5811
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005812enum {
5813 ALC268_FIXUP_INV_DMIC,
Takashi Iwaicb766402012-10-20 10:55:21 +02005814 ALC268_FIXUP_HP_EAPD,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005815};
5816
5817static const struct alc_fixup alc268_fixups[] = {
5818 [ALC268_FIXUP_INV_DMIC] = {
5819 .type = ALC_FIXUP_FUNC,
5820 .v.func = alc_fixup_inv_dmic_0x12,
5821 },
Takashi Iwaicb766402012-10-20 10:55:21 +02005822 [ALC268_FIXUP_HP_EAPD] = {
5823 .type = ALC_FIXUP_VERBS,
5824 .v.verbs = (const struct hda_verb[]) {
5825 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
5826 {}
5827 }
5828 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005829};
5830
5831static const struct alc_model_fixup alc268_fixup_models[] = {
5832 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
Takashi Iwaicb766402012-10-20 10:55:21 +02005833 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
5834 {}
5835};
5836
5837static const struct snd_pci_quirk alc268_fixup_tbl[] = {
5838 /* below is codec SSID since multiple Toshiba laptops have the
5839 * same PCI SSID 1179:ff00
5840 */
5841 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005842 {}
5843};
5844
Takashi Iwai1d045db2011-07-07 18:23:21 +02005845/*
5846 * BIOS auto configuration
5847 */
5848static int alc268_parse_auto_config(struct hda_codec *codec)
5849{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005850 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai1d045db2011-07-07 18:23:21 +02005851 struct alc_spec *spec = codec->spec;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005852 int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
5853 if (err > 0) {
5854 if (!spec->no_analog && spec->autocfg.speaker_pins[0] != 0x1d) {
5855 add_mixer(spec, alc268_beep_mixer);
Takashi Iwai23d30f22012-05-07 17:17:32 +02005856 snd_hda_gen_add_verbs(&spec->gen, alc268_beep_init_verbs);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005857 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005858 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005859 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005860}
5861
Takashi Iwai1d045db2011-07-07 18:23:21 +02005862/*
5863 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005864static int patch_alc268(struct hda_codec *codec)
5865{
5866 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005867 int i, has_beep, err;
5868
Takashi Iwai1d045db2011-07-07 18:23:21 +02005869 /* ALC268 has no aa-loopback mixer */
Takashi Iwai3de95172012-05-07 18:03:15 +02005870 err = alc_alloc_spec(codec, 0);
5871 if (err < 0)
5872 return err;
5873
5874 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005875
Takashi Iwaicb766402012-10-20 10:55:21 +02005876 alc_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005877 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5878
Takashi Iwai6ebb8052011-08-16 15:15:40 +02005879 /* automatic parse from the BIOS config */
5880 err = alc268_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005881 if (err < 0)
5882 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005883
Takashi Iwai1d045db2011-07-07 18:23:21 +02005884 has_beep = 0;
5885 for (i = 0; i < spec->num_mixers; i++) {
5886 if (spec->mixers[i] == alc268_beep_mixer) {
5887 has_beep = 1;
5888 break;
5889 }
5890 }
5891
5892 if (has_beep) {
5893 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005894 if (err < 0)
5895 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005896 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
5897 /* override the amp caps for beep generator */
5898 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
5899 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
5900 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
5901 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5902 (0 << AC_AMPCAP_MUTE_SHIFT));
5903 }
5904
Takashi Iwai1d045db2011-07-07 18:23:21 +02005905 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005906 spec->shutup = alc_eapd_shutup;
5907
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005908 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5909
Takashi Iwai1d045db2011-07-07 18:23:21 +02005910 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005911
5912 error:
5913 alc_free(codec);
5914 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005915}
5916
5917/*
5918 * ALC269
5919 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005920static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
5921 .substreams = 1,
5922 .channels_min = 2,
5923 .channels_max = 8,
5924 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
5925 /* NID is set in alc_build_pcms */
5926 .ops = {
5927 .open = alc_playback_pcm_open,
5928 .prepare = alc_playback_pcm_prepare,
5929 .cleanup = alc_playback_pcm_cleanup
5930 },
5931};
5932
5933static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
5934 .substreams = 1,
5935 .channels_min = 2,
5936 .channels_max = 2,
5937 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
5938 /* NID is set in alc_build_pcms */
5939};
5940
Takashi Iwai1d045db2011-07-07 18:23:21 +02005941/* different alc269-variants */
5942enum {
5943 ALC269_TYPE_ALC269VA,
5944 ALC269_TYPE_ALC269VB,
5945 ALC269_TYPE_ALC269VC,
Kailang Yangadcc70b2012-05-25 08:08:38 +02005946 ALC269_TYPE_ALC269VD,
Kailang Yang065380f2013-01-10 10:25:48 +01005947 ALC269_TYPE_ALC280,
5948 ALC269_TYPE_ALC282,
5949 ALC269_TYPE_ALC284,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005950};
5951
5952/*
5953 * BIOS auto configuration
5954 */
5955static int alc269_parse_auto_config(struct hda_codec *codec)
5956{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005957 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005958 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
5959 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5960 struct alc_spec *spec = codec->spec;
Kailang Yangadcc70b2012-05-25 08:08:38 +02005961 const hda_nid_t *ssids;
5962
5963 switch (spec->codec_variant) {
5964 case ALC269_TYPE_ALC269VA:
5965 case ALC269_TYPE_ALC269VC:
Kailang Yang065380f2013-01-10 10:25:48 +01005966 case ALC269_TYPE_ALC280:
5967 case ALC269_TYPE_ALC284:
Kailang Yangadcc70b2012-05-25 08:08:38 +02005968 ssids = alc269va_ssids;
5969 break;
5970 case ALC269_TYPE_ALC269VB:
5971 case ALC269_TYPE_ALC269VD:
Kailang Yang065380f2013-01-10 10:25:48 +01005972 case ALC269_TYPE_ALC282:
Kailang Yangadcc70b2012-05-25 08:08:38 +02005973 ssids = alc269_ssids;
5974 break;
5975 default:
5976 ssids = alc269_ssids;
5977 break;
5978 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005979
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005980 return alc_parse_auto_config(codec, alc269_ignore, ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005981}
5982
Kailang Yang1387e2d2012-11-08 10:23:18 +01005983static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005984{
5985 int val = alc_read_coef_idx(codec, 0x04);
5986 if (power_up)
5987 val |= 1 << 11;
5988 else
5989 val &= ~(1 << 11);
5990 alc_write_coef_idx(codec, 0x04, val);
5991}
5992
5993static void alc269_shutup(struct hda_codec *codec)
5994{
Kailang Yangadcc70b2012-05-25 08:08:38 +02005995 struct alc_spec *spec = codec->spec;
5996
5997 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
5998 return;
5999
Kailang Yang1387e2d2012-11-08 10:23:18 +01006000 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
6001 alc269vb_toggle_power_output(codec, 0);
6002 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
6003 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006004 msleep(150);
6005 }
6006}
6007
Takashi Iwai2a439522011-07-26 09:52:50 +02006008#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02006009static int alc269_resume(struct hda_codec *codec)
6010{
Kailang Yangadcc70b2012-05-25 08:08:38 +02006011 struct alc_spec *spec = codec->spec;
6012
Kailang Yang1387e2d2012-11-08 10:23:18 +01006013 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
6014 alc269vb_toggle_power_output(codec, 0);
6015 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
Kailang Yangadcc70b2012-05-25 08:08:38 +02006016 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006017 msleep(150);
6018 }
6019
6020 codec->patch_ops.init(codec);
6021
Kailang Yang1387e2d2012-11-08 10:23:18 +01006022 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
6023 alc269vb_toggle_power_output(codec, 1);
6024 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
Kailang Yangadcc70b2012-05-25 08:08:38 +02006025 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006026 msleep(200);
6027 }
6028
Takashi Iwai1d045db2011-07-07 18:23:21 +02006029 snd_hda_codec_resume_amp(codec);
6030 snd_hda_codec_resume_cache(codec);
6031 hda_call_check_power_status(codec, 0x01);
6032 return 0;
6033}
Takashi Iwai2a439522011-07-26 09:52:50 +02006034#endif /* CONFIG_PM */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006035
David Henningsson108cc102012-07-20 10:37:25 +02006036static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
6037 const struct alc_fixup *fix, int action)
6038{
6039 struct alc_spec *spec = codec->spec;
6040
6041 if (action == ALC_FIXUP_ACT_PRE_PROBE)
6042 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
6043}
6044
Takashi Iwai1d045db2011-07-07 18:23:21 +02006045static void alc269_fixup_hweq(struct hda_codec *codec,
6046 const struct alc_fixup *fix, int action)
6047{
6048 int coef;
6049
6050 if (action != ALC_FIXUP_ACT_INIT)
6051 return;
6052 coef = alc_read_coef_idx(codec, 0x1e);
6053 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
6054}
6055
6056static void alc271_fixup_dmic(struct hda_codec *codec,
6057 const struct alc_fixup *fix, int action)
6058{
6059 static const struct hda_verb verbs[] = {
6060 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
6061 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
6062 {}
6063 };
6064 unsigned int cfg;
6065
6066 if (strcmp(codec->chip_name, "ALC271X"))
6067 return;
6068 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
6069 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
6070 snd_hda_sequence_write(codec, verbs);
6071}
6072
Takashi Iwai017f2a12011-07-09 14:42:25 +02006073static void alc269_fixup_pcm_44k(struct hda_codec *codec,
6074 const struct alc_fixup *fix, int action)
6075{
6076 struct alc_spec *spec = codec->spec;
6077
6078 if (action != ALC_FIXUP_ACT_PROBE)
6079 return;
6080
6081 /* Due to a hardware problem on Lenovo Ideadpad, we need to
6082 * fix the sample rate of analog I/O to 44.1kHz
6083 */
6084 spec->stream_analog_playback = &alc269_44k_pcm_analog_playback;
6085 spec->stream_analog_capture = &alc269_44k_pcm_analog_capture;
6086}
6087
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02006088static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
6089 const struct alc_fixup *fix, int action)
6090{
6091 int coef;
6092
6093 if (action != ALC_FIXUP_ACT_INIT)
6094 return;
6095 /* The digital-mic unit sends PDM (differential signal) instead of
6096 * the standard PCM, thus you can't record a valid mono stream as is.
6097 * Below is a workaround specific to ALC269 to control the dmic
6098 * signal source as mono.
6099 */
6100 coef = alc_read_coef_idx(codec, 0x07);
6101 alc_write_coef_idx(codec, 0x07, coef | 0x80);
6102}
6103
Takashi Iwai24519912011-08-16 15:08:49 +02006104static void alc269_quanta_automute(struct hda_codec *codec)
6105{
David Henningsson42cf0d02011-09-20 12:04:56 +02006106 update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +02006107
6108 snd_hda_codec_write(codec, 0x20, 0,
6109 AC_VERB_SET_COEF_INDEX, 0x0c);
6110 snd_hda_codec_write(codec, 0x20, 0,
6111 AC_VERB_SET_PROC_COEF, 0x680);
6112
6113 snd_hda_codec_write(codec, 0x20, 0,
6114 AC_VERB_SET_COEF_INDEX, 0x0c);
6115 snd_hda_codec_write(codec, 0x20, 0,
6116 AC_VERB_SET_PROC_COEF, 0x480);
6117}
6118
6119static void alc269_fixup_quanta_mute(struct hda_codec *codec,
6120 const struct alc_fixup *fix, int action)
6121{
6122 struct alc_spec *spec = codec->spec;
6123 if (action != ALC_FIXUP_ACT_PROBE)
6124 return;
6125 spec->automute_hook = alc269_quanta_automute;
6126}
6127
David Henningsson6d3cd5d2013-01-07 12:03:47 +01006128/* update mute-LED according to the speaker mute state via mic1 VREF pin */
6129static void alc269_fixup_mic1_mute_hook(void *private_data, int enabled)
6130{
6131 struct hda_codec *codec = private_data;
6132 unsigned int pinval = AC_PINCTL_IN_EN + (enabled ?
6133 AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80);
6134 snd_hda_set_pin_ctl_cache(codec, 0x18, pinval);
6135}
6136
6137static void alc269_fixup_mic1_mute(struct hda_codec *codec,
6138 const struct alc_fixup *fix, int action)
6139{
6140 struct alc_spec *spec = codec->spec;
6141 switch (action) {
6142 case ALC_FIXUP_ACT_BUILD:
6143 spec->vmaster_mute.hook = alc269_fixup_mic1_mute_hook;
6144 snd_hda_add_vmaster_hook(codec, &spec->vmaster_mute, true);
6145 /* fallthru */
6146 case ALC_FIXUP_ACT_INIT:
6147 snd_hda_sync_vmaster_hook(&spec->vmaster_mute);
6148 break;
6149 }
6150}
6151
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006152/* update mute-LED according to the speaker mute state via mic2 VREF pin */
6153static void alc269_fixup_mic2_mute_hook(void *private_data, int enabled)
6154{
6155 struct hda_codec *codec = private_data;
6156 unsigned int pinval = enabled ? 0x20 : 0x24;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02006157 snd_hda_set_pin_ctl_cache(codec, 0x19, pinval);
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006158}
6159
6160static void alc269_fixup_mic2_mute(struct hda_codec *codec,
6161 const struct alc_fixup *fix, int action)
6162{
6163 struct alc_spec *spec = codec->spec;
6164 switch (action) {
6165 case ALC_FIXUP_ACT_BUILD:
Takashi Iwaid2f344b2012-03-12 16:59:58 +01006166 spec->vmaster_mute.hook = alc269_fixup_mic2_mute_hook;
Takashi Iwaif29735c2012-03-13 07:55:10 +01006167 snd_hda_add_vmaster_hook(codec, &spec->vmaster_mute, true);
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006168 /* fallthru */
6169 case ALC_FIXUP_ACT_INIT:
Takashi Iwaid2f344b2012-03-12 16:59:58 +01006170 snd_hda_sync_vmaster_hook(&spec->vmaster_mute);
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006171 break;
6172 }
6173}
6174
Dylan Reid08a978d2012-11-18 22:56:40 -08006175static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
6176 const struct alc_fixup *fix,
6177 int action)
6178{
6179 struct alc_spec *spec = codec->spec;
6180
6181 if (action == ALC_FIXUP_ACT_PROBE)
6182 snd_hda_jack_set_gating_jack(codec, spec->ext_mic_pin,
6183 spec->autocfg.hp_pins[0]);
6184}
David Henningsson693b6132012-06-22 19:12:10 +02006185
Takashi Iwai1d045db2011-07-07 18:23:21 +02006186enum {
6187 ALC269_FIXUP_SONY_VAIO,
6188 ALC275_FIXUP_SONY_VAIO_GPIO2,
6189 ALC269_FIXUP_DELL_M101Z,
6190 ALC269_FIXUP_SKU_IGNORE,
6191 ALC269_FIXUP_ASUS_G73JW,
6192 ALC269_FIXUP_LENOVO_EAPD,
6193 ALC275_FIXUP_SONY_HWEQ,
6194 ALC271_FIXUP_DMIC,
Takashi Iwai017f2a12011-07-09 14:42:25 +02006195 ALC269_FIXUP_PCM_44K,
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02006196 ALC269_FIXUP_STEREO_DMIC,
Takashi Iwai24519912011-08-16 15:08:49 +02006197 ALC269_FIXUP_QUANTA_MUTE,
6198 ALC269_FIXUP_LIFEBOOK,
Takashi Iwaia4297b52011-08-23 18:40:12 +02006199 ALC269_FIXUP_AMIC,
6200 ALC269_FIXUP_DMIC,
6201 ALC269VB_FIXUP_AMIC,
6202 ALC269VB_FIXUP_DMIC,
David Henningsson6d3cd5d2013-01-07 12:03:47 +01006203 ALC269_FIXUP_MIC1_MUTE_LED,
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006204 ALC269_FIXUP_MIC2_MUTE_LED,
David Henningsson693b6132012-06-22 19:12:10 +02006205 ALC269_FIXUP_INV_DMIC,
David Henningsson108cc102012-07-20 10:37:25 +02006206 ALC269_FIXUP_LENOVO_DOCK,
6207 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
Dylan Reid08a978d2012-11-18 22:56:40 -08006208 ALC271_FIXUP_AMIC_MIC2,
6209 ALC271_FIXUP_HP_GATE_MIC_JACK,
Takashi Iwai1d045db2011-07-07 18:23:21 +02006210};
6211
6212static const struct alc_fixup alc269_fixups[] = {
6213 [ALC269_FIXUP_SONY_VAIO] = {
6214 .type = ALC_FIXUP_VERBS,
6215 .v.verbs = (const struct hda_verb[]) {
6216 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
6217 {}
6218 }
6219 },
6220 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
6221 .type = ALC_FIXUP_VERBS,
6222 .v.verbs = (const struct hda_verb[]) {
6223 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
6224 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
6225 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
6226 { }
6227 },
6228 .chained = true,
6229 .chain_id = ALC269_FIXUP_SONY_VAIO
6230 },
6231 [ALC269_FIXUP_DELL_M101Z] = {
6232 .type = ALC_FIXUP_VERBS,
6233 .v.verbs = (const struct hda_verb[]) {
6234 /* Enables internal speaker */
6235 {0x20, AC_VERB_SET_COEF_INDEX, 13},
6236 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
6237 {}
6238 }
6239 },
6240 [ALC269_FIXUP_SKU_IGNORE] = {
Takashi Iwai23d30f22012-05-07 17:17:32 +02006241 .type = ALC_FIXUP_FUNC,
6242 .v.func = alc_fixup_sku_ignore,
Takashi Iwai1d045db2011-07-07 18:23:21 +02006243 },
6244 [ALC269_FIXUP_ASUS_G73JW] = {
6245 .type = ALC_FIXUP_PINS,
6246 .v.pins = (const struct alc_pincfg[]) {
6247 { 0x17, 0x99130111 }, /* subwoofer */
6248 { }
6249 }
6250 },
6251 [ALC269_FIXUP_LENOVO_EAPD] = {
6252 .type = ALC_FIXUP_VERBS,
6253 .v.verbs = (const struct hda_verb[]) {
6254 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
6255 {}
6256 }
6257 },
6258 [ALC275_FIXUP_SONY_HWEQ] = {
6259 .type = ALC_FIXUP_FUNC,
6260 .v.func = alc269_fixup_hweq,
6261 .chained = true,
6262 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
6263 },
6264 [ALC271_FIXUP_DMIC] = {
6265 .type = ALC_FIXUP_FUNC,
6266 .v.func = alc271_fixup_dmic,
6267 },
Takashi Iwai017f2a12011-07-09 14:42:25 +02006268 [ALC269_FIXUP_PCM_44K] = {
6269 .type = ALC_FIXUP_FUNC,
6270 .v.func = alc269_fixup_pcm_44k,
David Henningsson012e7eb2012-08-08 08:43:37 +02006271 .chained = true,
6272 .chain_id = ALC269_FIXUP_QUANTA_MUTE
Takashi Iwai017f2a12011-07-09 14:42:25 +02006273 },
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02006274 [ALC269_FIXUP_STEREO_DMIC] = {
6275 .type = ALC_FIXUP_FUNC,
6276 .v.func = alc269_fixup_stereo_dmic,
6277 },
Takashi Iwai24519912011-08-16 15:08:49 +02006278 [ALC269_FIXUP_QUANTA_MUTE] = {
6279 .type = ALC_FIXUP_FUNC,
6280 .v.func = alc269_fixup_quanta_mute,
6281 },
6282 [ALC269_FIXUP_LIFEBOOK] = {
6283 .type = ALC_FIXUP_PINS,
6284 .v.pins = (const struct alc_pincfg[]) {
6285 { 0x1a, 0x2101103f }, /* dock line-out */
6286 { 0x1b, 0x23a11040 }, /* dock mic-in */
6287 { }
6288 },
6289 .chained = true,
6290 .chain_id = ALC269_FIXUP_QUANTA_MUTE
6291 },
Takashi Iwaia4297b52011-08-23 18:40:12 +02006292 [ALC269_FIXUP_AMIC] = {
6293 .type = ALC_FIXUP_PINS,
6294 .v.pins = (const struct alc_pincfg[]) {
6295 { 0x14, 0x99130110 }, /* speaker */
6296 { 0x15, 0x0121401f }, /* HP out */
6297 { 0x18, 0x01a19c20 }, /* mic */
6298 { 0x19, 0x99a3092f }, /* int-mic */
6299 { }
6300 },
6301 },
6302 [ALC269_FIXUP_DMIC] = {
6303 .type = ALC_FIXUP_PINS,
6304 .v.pins = (const struct alc_pincfg[]) {
6305 { 0x12, 0x99a3092f }, /* int-mic */
6306 { 0x14, 0x99130110 }, /* speaker */
6307 { 0x15, 0x0121401f }, /* HP out */
6308 { 0x18, 0x01a19c20 }, /* mic */
6309 { }
6310 },
6311 },
6312 [ALC269VB_FIXUP_AMIC] = {
6313 .type = ALC_FIXUP_PINS,
6314 .v.pins = (const struct alc_pincfg[]) {
6315 { 0x14, 0x99130110 }, /* speaker */
6316 { 0x18, 0x01a19c20 }, /* mic */
6317 { 0x19, 0x99a3092f }, /* int-mic */
6318 { 0x21, 0x0121401f }, /* HP out */
6319 { }
6320 },
6321 },
David Henningsson2267ea92012-01-03 08:45:56 +01006322 [ALC269VB_FIXUP_DMIC] = {
Takashi Iwaia4297b52011-08-23 18:40:12 +02006323 .type = ALC_FIXUP_PINS,
6324 .v.pins = (const struct alc_pincfg[]) {
6325 { 0x12, 0x99a3092f }, /* int-mic */
6326 { 0x14, 0x99130110 }, /* speaker */
6327 { 0x18, 0x01a19c20 }, /* mic */
6328 { 0x21, 0x0121401f }, /* HP out */
6329 { }
6330 },
6331 },
David Henningsson6d3cd5d2013-01-07 12:03:47 +01006332 [ALC269_FIXUP_MIC1_MUTE_LED] = {
6333 .type = ALC_FIXUP_FUNC,
6334 .v.func = alc269_fixup_mic1_mute,
6335 },
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006336 [ALC269_FIXUP_MIC2_MUTE_LED] = {
6337 .type = ALC_FIXUP_FUNC,
6338 .v.func = alc269_fixup_mic2_mute,
6339 },
David Henningsson693b6132012-06-22 19:12:10 +02006340 [ALC269_FIXUP_INV_DMIC] = {
6341 .type = ALC_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02006342 .v.func = alc_fixup_inv_dmic_0x12,
David Henningsson693b6132012-06-22 19:12:10 +02006343 },
David Henningsson108cc102012-07-20 10:37:25 +02006344 [ALC269_FIXUP_LENOVO_DOCK] = {
6345 .type = ALC_FIXUP_PINS,
6346 .v.pins = (const struct alc_pincfg[]) {
6347 { 0x19, 0x23a11040 }, /* dock mic */
6348 { 0x1b, 0x2121103f }, /* dock headphone */
6349 { }
6350 },
6351 .chained = true,
6352 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
6353 },
6354 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
6355 .type = ALC_FIXUP_FUNC,
6356 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
6357 },
Dylan Reid08a978d2012-11-18 22:56:40 -08006358 [ALC271_FIXUP_AMIC_MIC2] = {
6359 .type = ALC_FIXUP_PINS,
6360 .v.pins = (const struct alc_pincfg[]) {
6361 { 0x14, 0x99130110 }, /* speaker */
6362 { 0x19, 0x01a19c20 }, /* mic */
6363 { 0x1b, 0x99a7012f }, /* int-mic */
6364 { 0x21, 0x0121401f }, /* HP out */
6365 { }
6366 },
6367 },
6368 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
6369 .type = ALC_FIXUP_FUNC,
6370 .v.func = alc271_hp_gate_mic_jack,
6371 .chained = true,
6372 .chain_id = ALC271_FIXUP_AMIC_MIC2,
6373 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02006374};
6375
6376static const struct snd_pci_quirk alc269_fixup_tbl[] = {
David Henningsson693b6132012-06-22 19:12:10 +02006377 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
6378 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006379 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_MIC2_MUTE_LED),
David Henningsson6d3cd5d2013-01-07 12:03:47 +01006380 SND_PCI_QUIRK(0x103c, 0x1972, "HP Pavilion 17", ALC269_FIXUP_MIC1_MUTE_LED),
David Henningsson5ac57552012-04-20 10:01:46 +02006381 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_DMIC),
Oleksij Rempel148728f2012-09-21 17:44:58 +02006382 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_DMIC),
Takashi Iwai017f2a12011-07-09 14:42:25 +02006383 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
David Henningsson693b6132012-06-22 19:12:10 +02006384 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02006385 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
6386 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
6387 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
6388 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
6389 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006390 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
6391 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
6392 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
6393 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
6394 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
Dylan Reid08a978d2012-11-18 22:56:40 -08006395 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006396 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
Takashi Iwai24519912011-08-16 15:08:49 +02006397 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006398 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
6399 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
6400 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
6401 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
6402 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
Takashi Iwai707fba32012-08-02 09:04:39 +02006403 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
Felix Kaechelec8415a42012-08-06 23:02:01 +02006404 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
Stefán Freyr84f98fd2012-10-19 22:46:00 +02006405 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
Philipp A. Mohrenweiser4407be62012-08-06 13:14:18 +02006406 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
David Henningsson108cc102012-07-20 10:37:25 +02006407 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
David Henningsson012e7eb2012-08-08 08:43:37 +02006408 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006409 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
Takashi Iwaia4297b52011-08-23 18:40:12 +02006410
Takashi Iwaia7f3eed2012-02-16 13:03:18 +01006411#if 0
Takashi Iwaia4297b52011-08-23 18:40:12 +02006412 /* Below is a quirk table taken from the old code.
6413 * Basically the device should work as is without the fixup table.
6414 * If BIOS doesn't give a proper info, enable the corresponding
6415 * fixup entry.
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02006416 */
Takashi Iwaia4297b52011-08-23 18:40:12 +02006417 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
6418 ALC269_FIXUP_AMIC),
6419 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
Takashi Iwaia4297b52011-08-23 18:40:12 +02006420 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
6421 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
6422 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
6423 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
6424 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
6425 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
6426 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
6427 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
6428 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
6429 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
6430 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
6431 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
6432 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
6433 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
6434 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
6435 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
6436 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
6437 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
6438 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
6439 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
6440 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
6441 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
6442 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
6443 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
6444 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
6445 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
6446 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
6447 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
6448 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
6449 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
6450 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
6451 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
6452 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
6453 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
6454 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
6455 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
6456 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
6457 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
6458#endif
6459 {}
6460};
6461
6462static const struct alc_model_fixup alc269_fixup_models[] = {
6463 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
6464 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02006465 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
6466 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
6467 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
David Henningsson108cc102012-07-20 10:37:25 +02006468 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
Takashi Iwai1d045db2011-07-07 18:23:21 +02006469 {}
6470};
6471
6472
Takashi Iwai546bb672012-03-07 08:37:19 +01006473static void alc269_fill_coef(struct hda_codec *codec)
Takashi Iwai1d045db2011-07-07 18:23:21 +02006474{
Kailang Yang526af6e2012-03-07 08:25:20 +01006475 struct alc_spec *spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006476 int val;
6477
Kailang Yang526af6e2012-03-07 08:25:20 +01006478 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
Takashi Iwai546bb672012-03-07 08:37:19 +01006479 return;
Kailang Yang526af6e2012-03-07 08:25:20 +01006480
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006481 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006482 alc_write_coef_idx(codec, 0xf, 0x960b);
6483 alc_write_coef_idx(codec, 0xe, 0x8817);
6484 }
6485
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006486 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006487 alc_write_coef_idx(codec, 0xf, 0x960b);
6488 alc_write_coef_idx(codec, 0xe, 0x8814);
6489 }
6490
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006491 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006492 val = alc_read_coef_idx(codec, 0x04);
6493 /* Power up output pin */
6494 alc_write_coef_idx(codec, 0x04, val | (1<<11));
6495 }
6496
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006497 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006498 val = alc_read_coef_idx(codec, 0xd);
6499 if ((val & 0x0c00) >> 10 != 0x1) {
6500 /* Capless ramp up clock control */
6501 alc_write_coef_idx(codec, 0xd, val | (1<<10));
6502 }
6503 val = alc_read_coef_idx(codec, 0x17);
6504 if ((val & 0x01c0) >> 6 != 0x4) {
6505 /* Class D power on reset */
6506 alc_write_coef_idx(codec, 0x17, val | (1<<7));
6507 }
6508 }
6509
6510 val = alc_read_coef_idx(codec, 0xd); /* Class D */
6511 alc_write_coef_idx(codec, 0xd, val | (1<<14));
6512
6513 val = alc_read_coef_idx(codec, 0x4); /* HP */
6514 alc_write_coef_idx(codec, 0x4, val | (1<<11));
Takashi Iwai1d045db2011-07-07 18:23:21 +02006515}
6516
6517/*
6518 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006519static int patch_alc269(struct hda_codec *codec)
6520{
6521 struct alc_spec *spec;
Takashi Iwai3de95172012-05-07 18:03:15 +02006522 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006523
Takashi Iwai3de95172012-05-07 18:03:15 +02006524 err = alc_alloc_spec(codec, 0x0b);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006525 if (err < 0)
Takashi Iwai3de95172012-05-07 18:03:15 +02006526 return err;
6527
6528 spec = codec->spec;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006529
Herton Ronaldo Krzesinski9f720bb92012-09-27 10:38:14 -03006530 alc_pick_fixup(codec, alc269_fixup_models,
6531 alc269_fixup_tbl, alc269_fixups);
6532 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
6533
6534 alc_auto_parse_customize_define(codec);
6535
Kailang Yang065380f2013-01-10 10:25:48 +01006536 switch (codec->vendor_id) {
6537 case 0x10ec0269:
Takashi Iwai1d045db2011-07-07 18:23:21 +02006538 spec->codec_variant = ALC269_TYPE_ALC269VA;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006539 switch (alc_get_coef0(codec) & 0x00f0) {
6540 case 0x0010:
Takashi Iwai1d045db2011-07-07 18:23:21 +02006541 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006542 spec->cdefine.platform_type == 1)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02006543 err = alc_codec_rename(codec, "ALC271X");
Takashi Iwai1d045db2011-07-07 18:23:21 +02006544 spec->codec_variant = ALC269_TYPE_ALC269VB;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006545 break;
6546 case 0x0020:
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006547 if (codec->bus->pci->subsystem_vendor == 0x17aa &&
6548 codec->bus->pci->subsystem_device == 0x21f3)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02006549 err = alc_codec_rename(codec, "ALC3202");
Takashi Iwai1d045db2011-07-07 18:23:21 +02006550 spec->codec_variant = ALC269_TYPE_ALC269VC;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006551 break;
Kailang Yangadcc70b2012-05-25 08:08:38 +02006552 case 0x0030:
6553 spec->codec_variant = ALC269_TYPE_ALC269VD;
6554 break;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006555 default:
Takashi Iwai1d045db2011-07-07 18:23:21 +02006556 alc_fix_pll_init(codec, 0x20, 0x04, 15);
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006557 }
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006558 if (err < 0)
6559 goto error;
Takashi Iwai546bb672012-03-07 08:37:19 +01006560 spec->init_hook = alc269_fill_coef;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006561 alc269_fill_coef(codec);
Kailang Yang065380f2013-01-10 10:25:48 +01006562 break;
6563
6564 case 0x10ec0280:
6565 case 0x10ec0290:
6566 spec->codec_variant = ALC269_TYPE_ALC280;
6567 break;
6568 case 0x10ec0282:
6569 case 0x10ec0283:
6570 spec->codec_variant = ALC269_TYPE_ALC282;
6571 break;
6572 case 0x10ec0284:
6573 case 0x10ec0292:
6574 spec->codec_variant = ALC269_TYPE_ALC284;
6575 break;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006576 }
6577
Takashi Iwaia4297b52011-08-23 18:40:12 +02006578 /* automatic parse from the BIOS config */
6579 err = alc269_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006580 if (err < 0)
6581 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006582
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006583 if (!spec->no_analog && has_cdefine_beep(codec)) {
6584 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006585 if (err < 0)
6586 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006587 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006588 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02006589
Takashi Iwai1d045db2011-07-07 18:23:21 +02006590 codec->patch_ops = alc_patch_ops;
Takashi Iwai2a439522011-07-26 09:52:50 +02006591#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02006592 codec->patch_ops.resume = alc269_resume;
6593#endif
Takashi Iwai1d045db2011-07-07 18:23:21 +02006594 spec->shutup = alc269_shutup;
6595
Takashi Iwai589876e2012-02-20 15:47:55 +01006596 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6597
Takashi Iwai1d045db2011-07-07 18:23:21 +02006598 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006599
6600 error:
6601 alc_free(codec);
6602 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006603}
6604
6605/*
6606 * ALC861
6607 */
6608
Takashi Iwai1d045db2011-07-07 18:23:21 +02006609static int alc861_parse_auto_config(struct hda_codec *codec)
6610{
Takashi Iwai1d045db2011-07-07 18:23:21 +02006611 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006612 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
6613 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02006614}
6615
Takashi Iwai1d045db2011-07-07 18:23:21 +02006616/* Pin config fixes */
6617enum {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006618 ALC861_FIXUP_FSC_AMILO_PI1505,
6619 ALC861_FIXUP_AMP_VREF_0F,
6620 ALC861_FIXUP_NO_JACK_DETECT,
6621 ALC861_FIXUP_ASUS_A6RP,
Takashi Iwai1d045db2011-07-07 18:23:21 +02006622};
6623
Takashi Iwai31150f22012-01-30 10:54:08 +01006624/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
6625static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
6626 const struct alc_fixup *fix, int action)
6627{
6628 struct alc_spec *spec = codec->spec;
6629 unsigned int val;
6630
6631 if (action != ALC_FIXUP_ACT_INIT)
6632 return;
6633 val = snd_hda_codec_read(codec, 0x0f, 0,
6634 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
6635 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
6636 val |= AC_PINCTL_IN_EN;
6637 val |= AC_PINCTL_VREF_50;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02006638 snd_hda_set_pin_ctl(codec, 0x0f, val);
Takashi Iwai31150f22012-01-30 10:54:08 +01006639 spec->keep_vref_in_automute = 1;
6640}
6641
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006642/* suppress the jack-detection */
6643static void alc_fixup_no_jack_detect(struct hda_codec *codec,
6644 const struct alc_fixup *fix, int action)
6645{
6646 if (action == ALC_FIXUP_ACT_PRE_PROBE)
6647 codec->no_jack_detect = 1;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02006648}
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006649
Takashi Iwai1d045db2011-07-07 18:23:21 +02006650static const struct alc_fixup alc861_fixups[] = {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006651 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006652 .type = ALC_FIXUP_PINS,
6653 .v.pins = (const struct alc_pincfg[]) {
6654 { 0x0b, 0x0221101f }, /* HP */
6655 { 0x0f, 0x90170310 }, /* speaker */
6656 { }
6657 }
6658 },
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006659 [ALC861_FIXUP_AMP_VREF_0F] = {
Takashi Iwai31150f22012-01-30 10:54:08 +01006660 .type = ALC_FIXUP_FUNC,
6661 .v.func = alc861_fixup_asus_amp_vref_0f,
Takashi Iwai3b25eb62012-01-25 09:55:46 +01006662 },
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006663 [ALC861_FIXUP_NO_JACK_DETECT] = {
6664 .type = ALC_FIXUP_FUNC,
6665 .v.func = alc_fixup_no_jack_detect,
6666 },
6667 [ALC861_FIXUP_ASUS_A6RP] = {
6668 .type = ALC_FIXUP_FUNC,
6669 .v.func = alc861_fixup_asus_amp_vref_0f,
6670 .chained = true,
6671 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
6672 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02006673};
6674
6675static const struct snd_pci_quirk alc861_fixup_tbl[] = {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006676 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
6677 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
6678 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
6679 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
6680 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
6681 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006682 {}
6683};
6684
6685/*
6686 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006687static int patch_alc861(struct hda_codec *codec)
6688{
6689 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006690 int err;
6691
Takashi Iwai3de95172012-05-07 18:03:15 +02006692 err = alc_alloc_spec(codec, 0x15);
6693 if (err < 0)
6694 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006695
Takashi Iwai3de95172012-05-07 18:03:15 +02006696 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006697
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006698 alc_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
6699 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02006700
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006701 /* automatic parse from the BIOS config */
6702 err = alc861_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006703 if (err < 0)
6704 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006705
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006706 if (!spec->no_analog) {
6707 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006708 if (err < 0)
6709 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006710 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
6711 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02006712
Takashi Iwai1d045db2011-07-07 18:23:21 +02006713 codec->patch_ops = alc_patch_ops;
Takashi Iwai83012a72012-08-24 18:38:08 +02006714#ifdef CONFIG_PM
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006715 spec->power_hook = alc_power_eapd;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006716#endif
6717
Takashi Iwai589876e2012-02-20 15:47:55 +01006718 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6719
Takashi Iwai1d045db2011-07-07 18:23:21 +02006720 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006721
6722 error:
6723 alc_free(codec);
6724 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006725}
6726
6727/*
6728 * ALC861-VD support
6729 *
6730 * Based on ALC882
6731 *
6732 * In addition, an independent DAC
6733 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006734static int alc861vd_parse_auto_config(struct hda_codec *codec)
6735{
Takashi Iwai1d045db2011-07-07 18:23:21 +02006736 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006737 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
6738 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02006739}
6740
Takashi Iwai1d045db2011-07-07 18:23:21 +02006741enum {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006742 ALC660VD_FIX_ASUS_GPIO1,
6743 ALC861VD_FIX_DALLAS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02006744};
6745
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006746/* exclude VREF80 */
6747static void alc861vd_fixup_dallas(struct hda_codec *codec,
6748 const struct alc_fixup *fix, int action)
6749{
6750 if (action == ALC_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaib78562b2012-12-17 20:06:49 +01006751 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
6752 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006753 }
6754}
6755
Takashi Iwai1d045db2011-07-07 18:23:21 +02006756static const struct alc_fixup alc861vd_fixups[] = {
6757 [ALC660VD_FIX_ASUS_GPIO1] = {
6758 .type = ALC_FIXUP_VERBS,
6759 .v.verbs = (const struct hda_verb[]) {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006760 /* reset GPIO1 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006761 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
6762 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
6763 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
6764 { }
6765 }
6766 },
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006767 [ALC861VD_FIX_DALLAS] = {
6768 .type = ALC_FIXUP_FUNC,
6769 .v.func = alc861vd_fixup_dallas,
6770 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02006771};
6772
6773static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006774 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006775 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006776 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006777 {}
6778};
6779
Takashi Iwai1d045db2011-07-07 18:23:21 +02006780/*
6781 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006782static int patch_alc861vd(struct hda_codec *codec)
6783{
6784 struct alc_spec *spec;
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006785 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006786
Takashi Iwai3de95172012-05-07 18:03:15 +02006787 err = alc_alloc_spec(codec, 0x0b);
6788 if (err < 0)
6789 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006790
Takashi Iwai3de95172012-05-07 18:03:15 +02006791 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006792
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006793 alc_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
6794 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02006795
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006796 /* automatic parse from the BIOS config */
6797 err = alc861vd_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006798 if (err < 0)
6799 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006800
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006801 if (!spec->no_analog) {
6802 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006803 if (err < 0)
6804 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006805 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
6806 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02006807
Takashi Iwai1d045db2011-07-07 18:23:21 +02006808 codec->patch_ops = alc_patch_ops;
6809
Takashi Iwai1d045db2011-07-07 18:23:21 +02006810 spec->shutup = alc_eapd_shutup;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006811
Takashi Iwai589876e2012-02-20 15:47:55 +01006812 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6813
Takashi Iwai1d045db2011-07-07 18:23:21 +02006814 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006815
6816 error:
6817 alc_free(codec);
6818 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006819}
6820
6821/*
6822 * ALC662 support
6823 *
6824 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
6825 * configuration. Each pin widget can choose any input DACs and a mixer.
6826 * Each ADC is connected from a mixer of all inputs. This makes possible
6827 * 6-channel independent captures.
6828 *
6829 * In addition, an independent DAC for the multi-playback (not used in this
6830 * driver yet).
6831 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006832
6833/*
6834 * BIOS auto configuration
6835 */
6836
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006837static int alc662_parse_auto_config(struct hda_codec *codec)
6838{
Takashi Iwai4c6d72d2011-05-02 11:30:18 +02006839 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006840 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
6841 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
6842 const hda_nid_t *ssids;
Takashi Iwaiee979a142008-09-02 15:42:20 +02006843
Kailang Yang6227cdc2010-02-25 08:36:52 +01006844 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
6845 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006846 ssids = alc663_ssids;
Kailang Yang6227cdc2010-02-25 08:36:52 +01006847 else
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006848 ssids = alc662_ssids;
6849 return alc_parse_auto_config(codec, alc662_ignore, ssids);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006850}
6851
Todd Broch6be79482010-12-07 16:51:05 -08006852static void alc272_fixup_mario(struct hda_codec *codec,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006853 const struct alc_fixup *fix, int action)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01006854{
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006855 if (action != ALC_FIXUP_ACT_PROBE)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01006856 return;
Todd Broch6be79482010-12-07 16:51:05 -08006857 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
6858 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
6859 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
6860 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
6861 (0 << AC_AMPCAP_MUTE_SHIFT)))
6862 printk(KERN_WARNING
6863 "hda_codec: failed to override amp caps for NID 0x2\n");
6864}
6865
David Henningsson6cb3b702010-09-09 08:51:44 +02006866enum {
Daniel T Chen2df03512010-10-10 22:39:28 -04006867 ALC662_FIXUP_ASPIRE,
David Henningsson6cb3b702010-09-09 08:51:44 +02006868 ALC662_FIXUP_IDEAPAD,
Todd Broch6be79482010-12-07 16:51:05 -08006869 ALC272_FIXUP_MARIO,
Anisse Astierd2ebd472011-01-20 12:36:21 +01006870 ALC662_FIXUP_CZC_P10T,
David Henningsson94024cd2011-04-29 14:10:55 +02006871 ALC662_FIXUP_SKU_IGNORE,
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02006872 ALC662_FIXUP_HP_RP5800,
Takashi Iwai53c334a2011-08-23 18:27:14 +02006873 ALC662_FIXUP_ASUS_MODE1,
6874 ALC662_FIXUP_ASUS_MODE2,
6875 ALC662_FIXUP_ASUS_MODE3,
6876 ALC662_FIXUP_ASUS_MODE4,
6877 ALC662_FIXUP_ASUS_MODE5,
6878 ALC662_FIXUP_ASUS_MODE6,
6879 ALC662_FIXUP_ASUS_MODE7,
6880 ALC662_FIXUP_ASUS_MODE8,
Takashi Iwai1565cc32012-02-13 12:03:25 +01006881 ALC662_FIXUP_NO_JACK_DETECT,
David Henningssonedfe3bf2012-06-12 13:15:12 +02006882 ALC662_FIXUP_ZOTAC_Z68,
Takashi Iwai125821a2012-06-22 14:30:29 +02006883 ALC662_FIXUP_INV_DMIC,
David Henningsson6cb3b702010-09-09 08:51:44 +02006884};
6885
6886static const struct alc_fixup alc662_fixups[] = {
Daniel T Chen2df03512010-10-10 22:39:28 -04006887 [ALC662_FIXUP_ASPIRE] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006888 .type = ALC_FIXUP_PINS,
6889 .v.pins = (const struct alc_pincfg[]) {
Daniel T Chen2df03512010-10-10 22:39:28 -04006890 { 0x15, 0x99130112 }, /* subwoofer */
6891 { }
6892 }
6893 },
David Henningsson6cb3b702010-09-09 08:51:44 +02006894 [ALC662_FIXUP_IDEAPAD] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006895 .type = ALC_FIXUP_PINS,
6896 .v.pins = (const struct alc_pincfg[]) {
David Henningsson6cb3b702010-09-09 08:51:44 +02006897 { 0x17, 0x99130112 }, /* subwoofer */
6898 { }
6899 }
6900 },
Todd Broch6be79482010-12-07 16:51:05 -08006901 [ALC272_FIXUP_MARIO] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006902 .type = ALC_FIXUP_FUNC,
6903 .v.func = alc272_fixup_mario,
Anisse Astierd2ebd472011-01-20 12:36:21 +01006904 },
6905 [ALC662_FIXUP_CZC_P10T] = {
6906 .type = ALC_FIXUP_VERBS,
6907 .v.verbs = (const struct hda_verb[]) {
6908 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
6909 {}
6910 }
6911 },
David Henningsson94024cd2011-04-29 14:10:55 +02006912 [ALC662_FIXUP_SKU_IGNORE] = {
Takashi Iwai23d30f22012-05-07 17:17:32 +02006913 .type = ALC_FIXUP_FUNC,
6914 .v.func = alc_fixup_sku_ignore,
Takashi Iwaic6b35872011-03-28 12:05:31 +02006915 },
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02006916 [ALC662_FIXUP_HP_RP5800] = {
6917 .type = ALC_FIXUP_PINS,
6918 .v.pins = (const struct alc_pincfg[]) {
6919 { 0x14, 0x0221201f }, /* HP out */
6920 { }
6921 },
6922 .chained = true,
6923 .chain_id = ALC662_FIXUP_SKU_IGNORE
6924 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02006925 [ALC662_FIXUP_ASUS_MODE1] = {
6926 .type = ALC_FIXUP_PINS,
6927 .v.pins = (const struct alc_pincfg[]) {
6928 { 0x14, 0x99130110 }, /* speaker */
6929 { 0x18, 0x01a19c20 }, /* mic */
6930 { 0x19, 0x99a3092f }, /* int-mic */
6931 { 0x21, 0x0121401f }, /* HP out */
6932 { }
6933 },
6934 .chained = true,
6935 .chain_id = ALC662_FIXUP_SKU_IGNORE
6936 },
6937 [ALC662_FIXUP_ASUS_MODE2] = {
Takashi Iwai2996bdb2011-08-18 16:02:24 +02006938 .type = ALC_FIXUP_PINS,
6939 .v.pins = (const struct alc_pincfg[]) {
6940 { 0x14, 0x99130110 }, /* speaker */
6941 { 0x18, 0x01a19820 }, /* mic */
6942 { 0x19, 0x99a3092f }, /* int-mic */
6943 { 0x1b, 0x0121401f }, /* HP out */
6944 { }
6945 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02006946 .chained = true,
6947 .chain_id = ALC662_FIXUP_SKU_IGNORE
6948 },
6949 [ALC662_FIXUP_ASUS_MODE3] = {
6950 .type = ALC_FIXUP_PINS,
6951 .v.pins = (const struct alc_pincfg[]) {
6952 { 0x14, 0x99130110 }, /* speaker */
6953 { 0x15, 0x0121441f }, /* HP */
6954 { 0x18, 0x01a19840 }, /* mic */
6955 { 0x19, 0x99a3094f }, /* int-mic */
6956 { 0x21, 0x01211420 }, /* HP2 */
6957 { }
6958 },
6959 .chained = true,
6960 .chain_id = ALC662_FIXUP_SKU_IGNORE
6961 },
6962 [ALC662_FIXUP_ASUS_MODE4] = {
6963 .type = ALC_FIXUP_PINS,
6964 .v.pins = (const struct alc_pincfg[]) {
6965 { 0x14, 0x99130110 }, /* speaker */
6966 { 0x16, 0x99130111 }, /* speaker */
6967 { 0x18, 0x01a19840 }, /* mic */
6968 { 0x19, 0x99a3094f }, /* int-mic */
6969 { 0x21, 0x0121441f }, /* HP */
6970 { }
6971 },
6972 .chained = true,
6973 .chain_id = ALC662_FIXUP_SKU_IGNORE
6974 },
6975 [ALC662_FIXUP_ASUS_MODE5] = {
6976 .type = ALC_FIXUP_PINS,
6977 .v.pins = (const struct alc_pincfg[]) {
6978 { 0x14, 0x99130110 }, /* speaker */
6979 { 0x15, 0x0121441f }, /* HP */
6980 { 0x16, 0x99130111 }, /* speaker */
6981 { 0x18, 0x01a19840 }, /* mic */
6982 { 0x19, 0x99a3094f }, /* int-mic */
6983 { }
6984 },
6985 .chained = true,
6986 .chain_id = ALC662_FIXUP_SKU_IGNORE
6987 },
6988 [ALC662_FIXUP_ASUS_MODE6] = {
6989 .type = ALC_FIXUP_PINS,
6990 .v.pins = (const struct alc_pincfg[]) {
6991 { 0x14, 0x99130110 }, /* speaker */
6992 { 0x15, 0x01211420 }, /* HP2 */
6993 { 0x18, 0x01a19840 }, /* mic */
6994 { 0x19, 0x99a3094f }, /* int-mic */
6995 { 0x1b, 0x0121441f }, /* HP */
6996 { }
6997 },
6998 .chained = true,
6999 .chain_id = ALC662_FIXUP_SKU_IGNORE
7000 },
7001 [ALC662_FIXUP_ASUS_MODE7] = {
7002 .type = ALC_FIXUP_PINS,
7003 .v.pins = (const struct alc_pincfg[]) {
7004 { 0x14, 0x99130110 }, /* speaker */
7005 { 0x17, 0x99130111 }, /* speaker */
7006 { 0x18, 0x01a19840 }, /* mic */
7007 { 0x19, 0x99a3094f }, /* int-mic */
7008 { 0x1b, 0x01214020 }, /* HP */
7009 { 0x21, 0x0121401f }, /* HP */
7010 { }
7011 },
7012 .chained = true,
7013 .chain_id = ALC662_FIXUP_SKU_IGNORE
7014 },
7015 [ALC662_FIXUP_ASUS_MODE8] = {
7016 .type = ALC_FIXUP_PINS,
7017 .v.pins = (const struct alc_pincfg[]) {
7018 { 0x14, 0x99130110 }, /* speaker */
7019 { 0x12, 0x99a30970 }, /* int-mic */
7020 { 0x15, 0x01214020 }, /* HP */
7021 { 0x17, 0x99130111 }, /* speaker */
7022 { 0x18, 0x01a19840 }, /* mic */
7023 { 0x21, 0x0121401f }, /* HP */
7024 { }
7025 },
7026 .chained = true,
7027 .chain_id = ALC662_FIXUP_SKU_IGNORE
Takashi Iwai2996bdb2011-08-18 16:02:24 +02007028 },
Takashi Iwai1565cc32012-02-13 12:03:25 +01007029 [ALC662_FIXUP_NO_JACK_DETECT] = {
7030 .type = ALC_FIXUP_FUNC,
7031 .v.func = alc_fixup_no_jack_detect,
7032 },
David Henningssonedfe3bf2012-06-12 13:15:12 +02007033 [ALC662_FIXUP_ZOTAC_Z68] = {
7034 .type = ALC_FIXUP_PINS,
7035 .v.pins = (const struct alc_pincfg[]) {
7036 { 0x1b, 0x02214020 }, /* Front HP */
7037 { }
7038 }
7039 },
Takashi Iwai125821a2012-06-22 14:30:29 +02007040 [ALC662_FIXUP_INV_DMIC] = {
7041 .type = ALC_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02007042 .v.func = alc_fixup_inv_dmic_0x12,
Takashi Iwai125821a2012-06-22 14:30:29 +02007043 },
David Henningsson6cb3b702010-09-09 08:51:44 +02007044};
7045
Takashi Iwaia9111322011-05-02 11:30:18 +02007046static const struct snd_pci_quirk alc662_fixup_tbl[] = {
Takashi Iwai53c334a2011-08-23 18:27:14 +02007047 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
David Henningssona6c47a82011-02-10 15:39:19 +01007048 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
David Henningsson94024cd2011-04-29 14:10:55 +02007049 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
Takashi Iwai125821a2012-06-22 14:30:29 +02007050 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
Daniel T Chen2df03512010-10-10 22:39:28 -04007051 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02007052 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
Takashi Iwai1565cc32012-02-13 12:03:25 +01007053 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
Takashi Iwai53c334a2011-08-23 18:27:14 +02007054 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
Daniel T Chena0e90ac2010-11-20 10:20:35 -05007055 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
Valentine Sinitsynd4118582010-10-01 22:24:08 +06007056 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
David Henningsson6cb3b702010-09-09 08:51:44 +02007057 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
David Henningssonedfe3bf2012-06-12 13:15:12 +02007058 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
Anisse Astierd2ebd472011-01-20 12:36:21 +01007059 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
Takashi Iwai53c334a2011-08-23 18:27:14 +02007060
7061#if 0
7062 /* Below is a quirk table taken from the old code.
7063 * Basically the device should work as is without the fixup table.
7064 * If BIOS doesn't give a proper info, enable the corresponding
7065 * fixup entry.
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02007066 */
Takashi Iwai53c334a2011-08-23 18:27:14 +02007067 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
7068 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
7069 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
7070 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
7071 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
7072 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7073 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
7074 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
7075 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
7076 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7077 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
7078 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
7079 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
7080 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
7081 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
7082 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7083 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
7084 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
7085 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7086 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
7087 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
7088 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7089 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
7090 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
7091 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
7092 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7093 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
7094 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
7095 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7096 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
7097 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7098 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7099 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
7100 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
7101 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
7102 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
7103 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
7104 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
7105 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
7106 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7107 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
7108 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
7109 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
7110 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
7111 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
7112 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
7113 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
7114 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
7115 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
7116 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
7117#endif
David Henningsson6cb3b702010-09-09 08:51:44 +02007118 {}
7119};
7120
Todd Broch6be79482010-12-07 16:51:05 -08007121static const struct alc_model_fixup alc662_fixup_models[] = {
7122 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
Takashi Iwai53c334a2011-08-23 18:27:14 +02007123 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
7124 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
7125 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
7126 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
7127 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
7128 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
7129 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
7130 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02007131 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
Todd Broch6be79482010-12-07 16:51:05 -08007132 {}
7133};
David Henningsson6cb3b702010-09-09 08:51:44 +02007134
Kailang Yang8663ff72012-06-29 09:35:52 +02007135static void alc662_fill_coef(struct hda_codec *codec)
7136{
7137 int val, coef;
7138
7139 coef = alc_get_coef0(codec);
7140
7141 switch (codec->vendor_id) {
7142 case 0x10ec0662:
7143 if ((coef & 0x00f0) == 0x0030) {
7144 val = alc_read_coef_idx(codec, 0x4); /* EAPD Ctrl */
7145 alc_write_coef_idx(codec, 0x4, val & ~(1<<10));
7146 }
7147 break;
7148 case 0x10ec0272:
7149 case 0x10ec0273:
7150 case 0x10ec0663:
7151 case 0x10ec0665:
7152 case 0x10ec0670:
7153 case 0x10ec0671:
7154 case 0x10ec0672:
7155 val = alc_read_coef_idx(codec, 0xd); /* EAPD Ctrl */
7156 alc_write_coef_idx(codec, 0xd, val | (1<<14));
7157 break;
7158 }
7159}
David Henningsson6cb3b702010-09-09 08:51:44 +02007160
Takashi Iwai1d045db2011-07-07 18:23:21 +02007161/*
7162 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007163static int patch_alc662(struct hda_codec *codec)
7164{
7165 struct alc_spec *spec;
Takashi Iwai3de95172012-05-07 18:03:15 +02007166 int err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007167
Takashi Iwai3de95172012-05-07 18:03:15 +02007168 err = alc_alloc_spec(codec, 0x0b);
7169 if (err < 0)
7170 return err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007171
Takashi Iwai3de95172012-05-07 18:03:15 +02007172 spec = codec->spec;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02007173
Takashi Iwai53c334a2011-08-23 18:27:14 +02007174 /* handle multiple HPs as is */
7175 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
7176
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02007177 alc_fix_pll_init(codec, 0x20, 0x04, 15);
7178
Kailang Yang8663ff72012-06-29 09:35:52 +02007179 spec->init_hook = alc662_fill_coef;
7180 alc662_fill_coef(codec);
7181
Takashi Iwai8e5a0502012-06-21 15:49:33 +02007182 alc_pick_fixup(codec, alc662_fixup_models,
7183 alc662_fixup_tbl, alc662_fixups);
7184 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
7185
7186 alc_auto_parse_customize_define(codec);
7187
Takashi Iwai1bb7e432011-10-17 16:50:59 +02007188 if ((alc_get_coef0(codec) & (1 << 14)) &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007189 codec->bus->pci->subsystem_vendor == 0x1025 &&
7190 spec->cdefine.platform_type == 1) {
7191 if (alc_codec_rename(codec, "ALC272X") < 0)
7192 goto error;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02007193 }
Kailang Yang274693f2009-12-03 10:07:50 +01007194
Takashi Iwaib9c51062011-08-24 18:08:07 +02007195 /* automatic parse from the BIOS config */
7196 err = alc662_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007197 if (err < 0)
7198 goto error;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007199
Takashi Iwai3e6179b2011-07-08 16:55:13 +02007200 if (!spec->no_analog && has_cdefine_beep(codec)) {
7201 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007202 if (err < 0)
7203 goto error;
Kailang Yangda00c242010-03-19 11:23:45 +01007204 switch (codec->vendor_id) {
7205 case 0x10ec0662:
7206 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
7207 break;
7208 case 0x10ec0272:
7209 case 0x10ec0663:
7210 case 0x10ec0665:
7211 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
7212 break;
7213 case 0x10ec0273:
7214 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
7215 break;
7216 }
Kailang Yangcec27c82010-02-04 14:18:18 +01007217 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01007218
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007219 codec->patch_ops = alc_patch_ops;
Takashi Iwai1c7161532011-04-07 10:37:16 +02007220 spec->shutup = alc_eapd_shutup;
David Henningsson6cb3b702010-09-09 08:51:44 +02007221
Takashi Iwai589876e2012-02-20 15:47:55 +01007222 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
7223
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007224 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007225
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007226 error:
7227 alc_free(codec);
7228 return err;
Kailang Yangb478b992011-05-18 11:51:15 +02007229}
7230
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007231/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007232 * ALC680 support
7233 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007234
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007235static int alc680_parse_auto_config(struct hda_codec *codec)
7236{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02007237 return alc_parse_auto_config(codec, NULL, NULL);
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007238}
7239
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007240/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007241 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007242static int patch_alc680(struct hda_codec *codec)
7243{
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007244 int err;
7245
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02007246 /* ALC680 has no aa-loopback mixer */
Takashi Iwai3de95172012-05-07 18:03:15 +02007247 err = alc_alloc_spec(codec, 0);
7248 if (err < 0)
7249 return err;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02007250
Takashi Iwai1ebec5f2011-08-15 13:21:48 +02007251 /* automatic parse from the BIOS config */
7252 err = alc680_parse_auto_config(codec);
7253 if (err < 0) {
7254 alc_free(codec);
7255 return err;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007256 }
7257
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007258 codec->patch_ops = alc_patch_ops;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007259
7260 return 0;
7261}
7262
7263/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007264 * patch entries
7265 */
Takashi Iwaia9111322011-05-02 11:30:18 +02007266static const struct hda_codec_preset snd_hda_preset_realtek[] = {
Kailang Yang296f0332011-05-18 11:52:36 +02007267 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07007268 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
Kailang Yangdf694da2005-12-05 19:42:22 +01007269 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
Kailang Yangf6a92242007-12-13 16:52:54 +01007270 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
Kailang Yanga361d842007-06-05 12:30:55 +02007271 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
Kailang Yangf6a92242007-12-13 16:52:54 +01007272 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01007273 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
Kailang Yang01afd412008-10-15 11:22:09 +02007274 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01007275 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
Kailang Yang296f0332011-05-18 11:52:36 +02007276 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
David Henningssonbefae822012-06-25 19:49:28 +02007277 { .id = 0x10ec0280, .name = "ALC280", .patch = patch_alc269 },
David Henningsson4e01ec62012-07-18 07:38:46 +02007278 { .id = 0x10ec0282, .name = "ALC282", .patch = patch_alc269 },
Kailang Yang7ff34ad2012-10-06 17:02:30 +02007279 { .id = 0x10ec0283, .name = "ALC283", .patch = patch_alc269 },
Kailang Yang065380f2013-01-10 10:25:48 +01007280 { .id = 0x10ec0284, .name = "ALC284", .patch = patch_alc269 },
Kailang Yang7ff34ad2012-10-06 17:02:30 +02007281 { .id = 0x10ec0290, .name = "ALC290", .patch = patch_alc269 },
David Henningssonaf02dde2012-11-21 08:57:58 +01007282 { .id = 0x10ec0292, .name = "ALC292", .patch = patch_alc269 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01007283 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007284 .patch = patch_alc861 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01007285 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
7286 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
7287 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007288 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
Takashi Iwai4953550a2009-06-30 15:28:30 +02007289 .patch = patch_alc882 },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007290 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
7291 .patch = patch_alc662 },
David Henningssoncc667a72011-10-18 14:07:51 +02007292 { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
7293 .patch = patch_alc662 },
Kailang Yang6dda9f42008-05-27 12:05:31 +02007294 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
Kailang Yangcec27c82010-02-04 14:18:18 +01007295 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
Kailang Yang19a62822012-11-08 10:25:37 +01007296 { .id = 0x10ec0668, .name = "ALC668", .patch = patch_alc662 },
Kailang Yang6227cdc2010-02-25 08:36:52 +01007297 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007298 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01007299 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07007300 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02007301 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
Clive Messer669faba2008-09-30 15:49:13 +02007302 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02007303 .patch = patch_alc882 },
Takashi Iwaicb308f92008-04-16 14:13:29 +02007304 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02007305 .patch = patch_alc882 },
Kailang Yangdf694da2005-12-05 19:42:22 +01007306 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007307 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
Kailang Yang44426082008-10-15 11:18:05 +02007308 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
Takashi Iwai4953550a2009-06-30 15:28:30 +02007309 .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007310 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02007311 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
Kailang Yang274693f2009-12-03 10:07:50 +01007312 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007313 { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
Kailang Yang19a62822012-11-08 10:25:37 +01007314 { .id = 0x10ec0900, .name = "ALC1150", .patch = patch_alc882 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07007315 {} /* terminator */
7316};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01007317
7318MODULE_ALIAS("snd-hda-codec-id:10ec*");
7319
7320MODULE_LICENSE("GPL");
7321MODULE_DESCRIPTION("Realtek HD-audio codec");
7322
7323static struct hda_codec_preset_list realtek_list = {
7324 .preset = snd_hda_preset_realtek,
7325 .owner = THIS_MODULE,
7326};
7327
7328static int __init patch_realtek_init(void)
7329{
7330 return snd_hda_add_codec_preset(&realtek_list);
7331}
7332
7333static void __exit patch_realtek_exit(void)
7334{
7335 snd_hda_delete_codec_preset(&realtek_list);
7336}
7337
7338module_init(patch_realtek_init)
7339module_exit(patch_realtek_exit)