blob: 1d07e8fa243360d25236a4942ab5e363d69d1558 [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 Woithe7cf51e42006-02-09 12:01:26 +01009 * Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
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"
Kusanagi Kouichi680cd532009-02-05 00:00:58 +090035#include "hda_beep.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Takashi Iwai1d045db2011-07-07 18:23:21 +020037/* unsol event tags */
38#define ALC_FRONT_EVENT 0x01
39#define ALC_DCVOL_EVENT 0x02
40#define ALC_HP_EVENT 0x04
41#define ALC_MIC_EVENT 0x08
Takashi Iwaid4a86d82010-06-23 17:51:26 +020042
Kailang Yangdf694da2005-12-05 19:42:22 +010043/* for GPIO Poll */
44#define GPIO_MASK 0x03
45
Takashi Iwai4a79ba32009-04-22 16:31:35 +020046/* extra amp-initialization sequence types */
47enum {
48 ALC_INIT_NONE,
49 ALC_INIT_DEFAULT,
50 ALC_INIT_GPIO1,
51 ALC_INIT_GPIO2,
52 ALC_INIT_GPIO3,
53};
54
Kailang Yangda00c242010-03-19 11:23:45 +010055struct alc_customize_define {
56 unsigned int sku_cfg;
57 unsigned char port_connectivity;
58 unsigned char check_sum;
59 unsigned char customization;
60 unsigned char external_amp;
61 unsigned int enable_pcbeep:1;
62 unsigned int platform_type:1;
63 unsigned int swap:1;
64 unsigned int override:1;
David Henningsson90622912010-10-14 14:50:18 +020065 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
Kailang Yangda00c242010-03-19 11:23:45 +010066};
67
Takashi Iwaib5bfbc62011-01-13 14:22:32 +010068struct alc_fixup;
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070082struct alc_spec {
83 /* codec parameterization */
Takashi Iwaia9111322011-05-02 11:30:18 +020084 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 unsigned int num_mixers;
Takashi Iwaia9111322011-05-02 11:30:18 +020086 const struct snd_kcontrol_new *cap_mixer; /* capture mixer */
Takashi Iwai45bdd1c2009-02-06 16:11:25 +010087 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Takashi Iwai2d9c6482009-10-13 08:06:55 +020089 const struct hda_verb *init_verbs[10]; /* initialization verbs
Takashi Iwai9c7f8522006-06-28 15:08:22 +020090 * don't forget NULL
91 * termination!
Takashi Iwaie9edcee2005-06-13 14:16:38 +020092 */
93 unsigned int num_init_verbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Takashi Iwaiaa563af2009-07-31 10:05:11 +020095 char stream_name_analog[32]; /* analog PCM stream */
Takashi Iwaia9111322011-05-02 11:30:18 +020096 const struct hda_pcm_stream *stream_analog_playback;
97 const struct hda_pcm_stream *stream_analog_capture;
98 const struct hda_pcm_stream *stream_analog_alt_playback;
99 const struct hda_pcm_stream *stream_analog_alt_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Takashi Iwaiaa563af2009-07-31 10:05:11 +0200101 char stream_name_digital[32]; /* digital PCM stream */
Takashi Iwaia9111322011-05-02 11:30:18 +0200102 const struct hda_pcm_stream *stream_digital_playback;
103 const struct hda_pcm_stream *stream_digital_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 /* playback */
Takashi Iwai16ded522005-06-10 19:58:24 +0200106 struct hda_multi_out multiout; /* playback set-up
107 * max_channels, dacs must be set
108 * dig_out_nid and hp_nid are optional
109 */
Takashi Iwai63300792008-01-24 15:31:36 +0100110 hda_nid_t alt_dac_nid;
Takashi Iwai6a05ac42009-02-13 11:19:09 +0100111 hda_nid_t slave_dig_outs[3]; /* optional - for auto-parsing */
Takashi Iwai8c441982009-01-20 18:30:20 +0100112 int dig_out_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 /* capture */
115 unsigned int num_adc_nids;
Takashi Iwai4c6d72d2011-05-02 11:30:18 +0200116 const hda_nid_t *adc_nids;
117 const hda_nid_t *capsrc_nids;
Takashi Iwai16ded522005-06-10 19:58:24 +0200118 hda_nid_t dig_in_nid; /* digital-in NID; optional */
Takashi Iwai1f0f4b82011-06-27 10:52:59 +0200119 hda_nid_t mixer_nid; /* analog-mixer NID */
Takashi Iwai527e4d72011-10-27 16:33:27 +0200120 DECLARE_BITMAP(vol_ctls, 0x20 << 1);
121 DECLARE_BITMAP(sw_ctls, 0x20 << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Takashi Iwai840b64c2010-07-13 22:49:01 +0200123 /* capture setup for dynamic dual-adc switch */
Takashi Iwai840b64c2010-07-13 22:49:01 +0200124 hda_nid_t cur_adc;
125 unsigned int cur_adc_stream_tag;
126 unsigned int cur_adc_format;
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /* capture source */
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200129 unsigned int num_mux_defs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 const struct hda_input_mux *input_mux;
131 unsigned int cur_mux[3];
Takashi Iwai21268962011-07-07 15:01:13 +0200132 hda_nid_t ext_mic_pin;
133 hda_nid_t dock_mic_pin;
134 hda_nid_t int_mic_pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 /* channel model */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100137 const struct hda_channel_mode *channel_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 int num_channel_mode;
Takashi Iwai4e195a72006-07-28 14:47:34 +0200139 int need_dac_fix;
Hector Martin3b315d72009-06-02 10:54:19 +0200140 int const_channel_count;
141 int ext_channel_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 /* PCM information */
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100144 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
Takashi Iwai41e41f12005-06-08 14:48:49 +0200145
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200146 /* dynamic controls, init_verbs and input_mux */
147 struct auto_pin_cfg autocfg;
Kailang Yangda00c242010-03-19 11:23:45 +0100148 struct alc_customize_define cdefine;
Takashi Iwai603c4012008-07-30 15:01:44 +0200149 struct snd_array kctls;
Herton Ronaldo Krzesinski61b9b9b2009-01-28 09:16:33 -0200150 struct hda_input_mux private_imux[3];
Takashi Iwai41923e42007-10-22 17:20:10 +0200151 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwai49535502009-06-30 15:28:30 +0200152 hda_nid_t private_adc_nids[AUTO_CFG_MAX_OUTS];
153 hda_nid_t private_capsrc_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwai21268962011-07-07 15:01:13 +0200154 hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS];
155 unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS];
156 int int_mic_idx, ext_mic_idx, dock_mic_idx; /* for auto-mic */
Takashi Iwai834be882006-03-01 14:16:17 +0100157
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100158 /* hooks */
159 void (*init_hook)(struct hda_codec *codec);
160 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
Hector Martinf5de24b2009-12-20 22:51:31 +0100161#ifdef CONFIG_SND_HDA_POWER_SAVE
Daniel T Chenc97259d2009-12-27 18:52:08 -0500162 void (*power_hook)(struct hda_codec *codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100163#endif
Takashi Iwai1c716152011-04-07 10:37:16 +0200164 void (*shutup)(struct hda_codec *codec);
Takashi Iwai24519912011-08-16 15:08:49 +0200165 void (*automute_hook)(struct hda_codec *codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100166
Takashi Iwai834be882006-03-01 14:16:17 +0100167 /* for pin sensing */
David Henningsson42cf0d02011-09-20 12:04:56 +0200168 unsigned int hp_jack_present:1;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200169 unsigned int line_jack_present:1;
Takashi Iwaie9427962011-04-28 15:46:07 +0200170 unsigned int master_mute:1;
Takashi Iwai6c819492009-08-10 18:47:44 +0200171 unsigned int auto_mic:1;
Takashi Iwai21268962011-07-07 15:01:13 +0200172 unsigned int auto_mic_valid_imux:1; /* valid imux for auto-mic */
David Henningsson42cf0d02011-09-20 12:04:56 +0200173 unsigned int automute_speaker:1; /* automute speaker outputs */
174 unsigned int automute_lo:1; /* automute LO outputs */
175 unsigned int detect_hp:1; /* Headphone detection enabled */
176 unsigned int detect_lo:1; /* Line-out detection enabled */
177 unsigned int automute_speaker_possible:1; /* there are speakers and either LO or HP */
178 unsigned int automute_lo_possible:1; /* there are line outs and HP */
Takashi Iwaicb53c622007-08-10 17:21:45 +0200179
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100180 /* other flags */
181 unsigned int no_analog :1; /* digital I/O only */
Takashi Iwai21268962011-07-07 15:01:13 +0200182 unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */
Takashi Iwai584c0c42011-03-10 12:51:11 +0100183 unsigned int single_input_src:1;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +0200184 unsigned int vol_in_capsrc:1; /* use capsrc volume (ADC has no vol) */
Takashi Iwai53c334a2011-08-23 18:27:14 +0200185 unsigned int parse_flags; /* passed to snd_hda_parse_pin_defcfg() */
Takashi Iwaid922b512011-04-28 12:18:53 +0200186
187 /* auto-mute control */
188 int automute_mode;
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200189 hda_nid_t automute_mixer_nid[AUTO_CFG_MAX_OUTS];
Takashi Iwaid922b512011-04-28 12:18:53 +0200190
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200191 int init_amp;
Takashi Iwaid433a672010-09-20 15:11:54 +0200192 int codec_variant; /* flag for other variants */
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100193
Takashi Iwai2134ea42008-01-10 16:53:55 +0100194 /* for virtual master */
195 hda_nid_t vmaster_nid;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200196#ifdef CONFIG_SND_HDA_POWER_SAVE
197 struct hda_loopback_check loopback;
198#endif
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200199
200 /* for PLL fix */
201 hda_nid_t pll_nid;
202 unsigned int pll_coef_idx, pll_coef_bit;
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200203 unsigned int coef0;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +0100204
205 /* fix-up list */
206 int fixup_id;
207 const struct alc_fixup *fixup_list;
208 const char *fixup_name;
Takashi Iwaice764ab2011-04-27 16:35:23 +0200209
210 /* multi-io */
211 int multi_ios;
212 struct alc_multi_io multi_io[4];
Takashi Iwai23c09b02011-08-19 09:05:35 +0200213
214 /* bind volumes */
215 struct snd_array bind_ctls;
Kailang Yangdf694da2005-12-05 19:42:22 +0100216};
217
Takashi Iwai1d045db2011-07-07 18:23:21 +0200218#define ALC_MODEL_AUTO 0 /* common for all chips */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Takashi Iwai44c02402011-07-08 15:14:19 +0200220static bool check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
221 int dir, unsigned int bits)
222{
223 if (!nid)
224 return false;
225 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
226 if (query_amp_caps(codec, nid, dir) & bits)
227 return true;
228 return false;
229}
230
231#define nid_has_mute(codec, nid, dir) \
232 check_amp_caps(codec, nid, dir, AC_AMPCAP_MUTE)
233#define nid_has_volume(codec, nid, dir) \
234 check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS)
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/*
237 * input MUX handling
238 */
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200239static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
240 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
243 struct alc_spec *spec = codec->spec;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200244 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
245 if (mux_idx >= spec->num_mux_defs)
246 mux_idx = 0;
Takashi Iwai53111142010-03-08 12:13:07 +0100247 if (!spec->input_mux[mux_idx].num_items && mux_idx > 0)
248 mux_idx = 0;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200249 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200252static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
253 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
256 struct alc_spec *spec = codec->spec;
257 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
258
259 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
260 return 0;
261}
262
Takashi Iwai21268962011-07-07 15:01:13 +0200263static bool alc_dyn_adc_pcm_resetup(struct hda_codec *codec, int cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Takashi Iwai21268962011-07-07 15:01:13 +0200265 struct alc_spec *spec = codec->spec;
266 hda_nid_t new_adc = spec->adc_nids[spec->dyn_adc_idx[cur]];
267
268 if (spec->cur_adc && spec->cur_adc != new_adc) {
269 /* stream is running, let's swap the current ADC */
270 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
271 spec->cur_adc = new_adc;
272 snd_hda_codec_setup_stream(codec, new_adc,
273 spec->cur_adc_stream_tag, 0,
274 spec->cur_adc_format);
275 return true;
276 }
277 return false;
278}
279
Takashi Iwai61071592011-11-23 07:52:15 +0100280static inline hda_nid_t get_capsrc(struct alc_spec *spec, int idx)
281{
282 return spec->capsrc_nids ?
283 spec->capsrc_nids[idx] : spec->adc_nids[idx];
284}
285
Takashi Iwai21268962011-07-07 15:01:13 +0200286/* select the given imux item; either unmute exclusively or select the route */
287static int alc_mux_select(struct hda_codec *codec, unsigned int adc_idx,
288 unsigned int idx, bool force)
289{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 struct alc_spec *spec = codec->spec;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100291 const struct hda_input_mux *imux;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100292 unsigned int mux_idx;
Takashi Iwaidccc1812011-11-08 07:52:19 +0100293 int i, type, num_conns;
Takashi Iwai21268962011-07-07 15:01:13 +0200294 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Takashi Iwaicd896c32008-11-18 12:36:33 +0100296 mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
297 imux = &spec->input_mux[mux_idx];
Takashi Iwai53111142010-03-08 12:13:07 +0100298 if (!imux->num_items && mux_idx > 0)
299 imux = &spec->input_mux[0];
Takashi Iwaicce4aa32011-12-02 15:29:12 +0100300 if (!imux->num_items)
301 return 0;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100302
Takashi Iwai21268962011-07-07 15:01:13 +0200303 if (idx >= imux->num_items)
304 idx = imux->num_items - 1;
305 if (spec->cur_mux[adc_idx] == idx && !force)
306 return 0;
307 spec->cur_mux[adc_idx] = idx;
308
309 if (spec->dyn_adc_switch) {
310 alc_dyn_adc_pcm_resetup(codec, idx);
311 adc_idx = spec->dyn_adc_idx[idx];
312 }
313
Takashi Iwai61071592011-11-23 07:52:15 +0100314 nid = get_capsrc(spec, adc_idx);
Takashi Iwai21268962011-07-07 15:01:13 +0200315
316 /* no selection? */
Takashi Iwaidccc1812011-11-08 07:52:19 +0100317 num_conns = snd_hda_get_conn_list(codec, nid, NULL);
318 if (num_conns <= 1)
Takashi Iwai21268962011-07-07 15:01:13 +0200319 return 1;
320
Takashi Iwaia22d5432009-07-27 12:54:26 +0200321 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwai0169b6b2009-06-22 10:50:19 +0200322 if (type == AC_WID_AUD_MIX) {
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100323 /* Matrix-mixer style (e.g. ALC882) */
Takashi Iwaidccc1812011-11-08 07:52:19 +0100324 int active = imux->items[idx].index;
325 for (i = 0; i < num_conns; i++) {
326 unsigned int v = (i == active) ? 0 : HDA_AMP_MUTE;
327 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, i,
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100328 HDA_AMP_MUTE, v);
329 }
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100330 } else {
331 /* MUX style (e.g. ALC880) */
Takashi Iwai21268962011-07-07 15:01:13 +0200332 snd_hda_codec_write_cache(codec, nid, 0,
333 AC_VERB_SET_CONNECT_SEL,
334 imux->items[idx].index);
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100335 }
Takashi Iwai21268962011-07-07 15:01:13 +0200336 return 1;
337}
338
339static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
340 struct snd_ctl_elem_value *ucontrol)
341{
342 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
343 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
344 return alc_mux_select(codec, adc_idx,
345 ucontrol->value.enumerated.item[0], false);
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100346}
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348/*
Takashi Iwai23f0c042009-02-26 13:03:58 +0100349 * set up the input pin config (depending on the given auto-pin type)
350 */
351static void alc_set_input_pin(struct hda_codec *codec, hda_nid_t nid,
352 int auto_pin_type)
353{
354 unsigned int val = PIN_IN;
355
Takashi Iwai86e29592010-09-09 14:50:17 +0200356 if (auto_pin_type == AUTO_PIN_MIC) {
Takashi Iwai23f0c042009-02-26 13:03:58 +0100357 unsigned int pincap;
Takashi Iwai954a29c2010-07-30 10:55:44 +0200358 unsigned int oldval;
359 oldval = snd_hda_codec_read(codec, nid, 0,
360 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
Takashi Iwai1327a322009-03-23 13:07:47 +0100361 pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwai23f0c042009-02-26 13:03:58 +0100362 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
Takashi Iwai954a29c2010-07-30 10:55:44 +0200363 /* if the default pin setup is vref50, we give it priority */
364 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
Takashi Iwai23f0c042009-02-26 13:03:58 +0100365 val = PIN_VREF80;
Takashi Iwai461c6c32009-05-25 08:06:02 +0200366 else if (pincap & AC_PINCAP_VREF_50)
367 val = PIN_VREF50;
368 else if (pincap & AC_PINCAP_VREF_100)
369 val = PIN_VREF100;
370 else if (pincap & AC_PINCAP_VREF_GRD)
371 val = PIN_VREFGRD;
Takashi Iwai23f0c042009-02-26 13:03:58 +0100372 }
373 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, val);
374}
375
376/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200377 * Append the given mixer and verb elements for the later use
378 * The mixer array is referred in build_controls(), and init_verbs are
379 * called in init().
Takashi Iwaid88897e2008-10-31 15:01:37 +0100380 */
Takashi Iwaia9111322011-05-02 11:30:18 +0200381static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
Takashi Iwaid88897e2008-10-31 15:01:37 +0100382{
383 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
384 return;
385 spec->mixers[spec->num_mixers++] = mix;
386}
387
388static void add_verb(struct alc_spec *spec, const struct hda_verb *verb)
389{
390 if (snd_BUG_ON(spec->num_init_verbs >= ARRAY_SIZE(spec->init_verbs)))
391 return;
392 spec->init_verbs[spec->num_init_verbs++] = verb;
393}
394
395/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200396 * GPIO setup tables, used in initialization
Kailang Yangdf694da2005-12-05 19:42:22 +0100397 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200398/* Enable GPIO mask and set output */
Takashi Iwaia9111322011-05-02 11:30:18 +0200399static const struct hda_verb alc_gpio1_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200400 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
401 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
402 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
403 { }
404};
405
Takashi Iwaia9111322011-05-02 11:30:18 +0200406static const struct hda_verb alc_gpio2_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200407 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
408 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
409 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
410 { }
411};
412
Takashi Iwaia9111322011-05-02 11:30:18 +0200413static const struct hda_verb alc_gpio3_init_verbs[] = {
Kailang Yangbdd148a2007-05-08 15:19:08 +0200414 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
415 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
416 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
417 { }
418};
419
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200420/*
421 * Fix hardware PLL issue
422 * On some codecs, the analog PLL gating control must be off while
423 * the default value is 1.
424 */
425static void alc_fix_pll(struct hda_codec *codec)
426{
427 struct alc_spec *spec = codec->spec;
428 unsigned int val;
429
430 if (!spec->pll_nid)
431 return;
432 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
433 spec->pll_coef_idx);
434 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
435 AC_VERB_GET_PROC_COEF, 0);
436 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
437 spec->pll_coef_idx);
438 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
439 val & ~(1 << spec->pll_coef_bit));
440}
441
442static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
443 unsigned int coef_idx, unsigned int coef_bit)
444{
445 struct alc_spec *spec = codec->spec;
446 spec->pll_nid = nid;
447 spec->pll_coef_idx = coef_idx;
448 spec->pll_coef_bit = coef_bit;
449 alc_fix_pll(codec);
450}
451
Takashi Iwai1d045db2011-07-07 18:23:21 +0200452/*
453 * Jack-reporting via input-jack layer
454 */
455
456/* initialization of jacks; currently checks only a few known pins */
Kailang Yang9ad0e492010-09-14 23:22:00 +0200457static int alc_init_jacks(struct hda_codec *codec)
458{
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100459#ifdef CONFIG_SND_HDA_INPUT_JACK
Kailang Yang9ad0e492010-09-14 23:22:00 +0200460 struct alc_spec *spec = codec->spec;
461 int err;
462 unsigned int hp_nid = spec->autocfg.hp_pins[0];
Takashi Iwai21268962011-07-07 15:01:13 +0200463 unsigned int mic_nid = spec->ext_mic_pin;
464 unsigned int dock_nid = spec->dock_mic_pin;
Kailang Yang9ad0e492010-09-14 23:22:00 +0200465
Takashi Iwai265a0242010-09-21 11:26:21 +0200466 if (hp_nid) {
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100467 err = snd_hda_input_jack_add(codec, hp_nid,
468 SND_JACK_HEADPHONE, NULL);
Takashi Iwai265a0242010-09-21 11:26:21 +0200469 if (err < 0)
470 return err;
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100471 snd_hda_input_jack_report(codec, hp_nid);
Takashi Iwai265a0242010-09-21 11:26:21 +0200472 }
Kailang Yang9ad0e492010-09-14 23:22:00 +0200473
Takashi Iwai265a0242010-09-21 11:26:21 +0200474 if (mic_nid) {
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100475 err = snd_hda_input_jack_add(codec, mic_nid,
476 SND_JACK_MICROPHONE, NULL);
Takashi Iwai265a0242010-09-21 11:26:21 +0200477 if (err < 0)
478 return err;
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100479 snd_hda_input_jack_report(codec, mic_nid);
Takashi Iwai265a0242010-09-21 11:26:21 +0200480 }
Takashi Iwai8ed99d92011-05-17 12:05:02 +0200481 if (dock_nid) {
482 err = snd_hda_input_jack_add(codec, dock_nid,
483 SND_JACK_MICROPHONE, NULL);
484 if (err < 0)
485 return err;
486 snd_hda_input_jack_report(codec, dock_nid);
487 }
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100488#endif /* CONFIG_SND_HDA_INPUT_JACK */
Kailang Yang9ad0e492010-09-14 23:22:00 +0200489 return 0;
490}
Kailang Yang9ad0e492010-09-14 23:22:00 +0200491
Takashi Iwai1d045db2011-07-07 18:23:21 +0200492/*
493 * Jack detections for HP auto-mute and mic-switch
494 */
495
496/* check each pin in the given array; returns true if any of them is plugged */
497static bool detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins)
Kailang Yangc9b58002007-10-16 14:30:01 +0200498{
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200499 int i, present = 0;
Kailang Yangc9b58002007-10-16 14:30:01 +0200500
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200501 for (i = 0; i < num_pins; i++) {
502 hda_nid_t nid = pins[i];
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200503 if (!nid)
504 break;
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100505 snd_hda_input_jack_report(codec, nid);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200506 present |= snd_hda_jack_detect(codec, nid);
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200507 }
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200508 return present;
509}
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200510
Takashi Iwai1d045db2011-07-07 18:23:21 +0200511/* standard HP/line-out auto-mute helper */
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200512static void do_automute(struct hda_codec *codec, int num_pins, hda_nid_t *pins,
Takashi Iwaie9427962011-04-28 15:46:07 +0200513 bool mute, bool hp_out)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200514{
515 struct alc_spec *spec = codec->spec;
516 unsigned int mute_bits = mute ? HDA_AMP_MUTE : 0;
Takashi Iwaie9427962011-04-28 15:46:07 +0200517 unsigned int pin_bits = mute ? 0 : (hp_out ? PIN_HP : PIN_OUT);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200518 int i;
519
520 for (i = 0; i < num_pins; i++) {
521 hda_nid_t nid = pins[i];
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200522 if (!nid)
523 break;
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200524 switch (spec->automute_mode) {
525 case ALC_AUTOMUTE_PIN:
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200526 snd_hda_codec_write(codec, nid, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200527 AC_VERB_SET_PIN_WIDGET_CONTROL,
528 pin_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200529 break;
530 case ALC_AUTOMUTE_AMP:
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200531 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200532 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200533 break;
534 case ALC_AUTOMUTE_MIXER:
535 nid = spec->automute_mixer_nid[i];
536 if (!nid)
537 break;
538 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200539 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200540 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 1,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200541 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200542 break;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200543 }
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200544 }
Kailang Yangc9b58002007-10-16 14:30:01 +0200545}
546
David Henningsson42cf0d02011-09-20 12:04:56 +0200547/* Toggle outputs muting */
548static void update_outputs(struct hda_codec *codec)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200549{
550 struct alc_spec *spec = codec->spec;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200551 int on;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200552
Takashi Iwaic0a20262011-06-10 15:28:15 +0200553 /* Control HP pins/amps depending on master_mute state;
554 * in general, HP pins/amps control should be enabled in all cases,
555 * but currently set only for master_mute, just to be safe
556 */
557 do_automute(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
558 spec->autocfg.hp_pins, spec->master_mute, true);
559
David Henningsson42cf0d02011-09-20 12:04:56 +0200560 if (!spec->automute_speaker)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200561 on = 0;
562 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200563 on = spec->hp_jack_present | spec->line_jack_present;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200564 on |= spec->master_mute;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200565 do_automute(codec, ARRAY_SIZE(spec->autocfg.speaker_pins),
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200566 spec->autocfg.speaker_pins, on, false);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200567
568 /* toggle line-out mutes if needed, too */
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200569 /* if LO is a copy of either HP or Speaker, don't need to handle it */
570 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0] ||
571 spec->autocfg.line_out_pins[0] == spec->autocfg.speaker_pins[0])
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200572 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200573 if (!spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200574 on = 0;
575 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200576 on = spec->hp_jack_present;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200577 on |= spec->master_mute;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200578 do_automute(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200579 spec->autocfg.line_out_pins, on, false);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200580}
581
David Henningsson42cf0d02011-09-20 12:04:56 +0200582static void call_update_outputs(struct hda_codec *codec)
Takashi Iwai24519912011-08-16 15:08:49 +0200583{
584 struct alc_spec *spec = codec->spec;
585 if (spec->automute_hook)
586 spec->automute_hook(codec);
587 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200588 update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +0200589}
590
Takashi Iwai1d045db2011-07-07 18:23:21 +0200591/* standard HP-automute helper */
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200592static void alc_hp_automute(struct hda_codec *codec)
593{
594 struct alc_spec *spec = codec->spec;
595
David Henningsson42cf0d02011-09-20 12:04:56 +0200596 spec->hp_jack_present =
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200597 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
598 spec->autocfg.hp_pins);
David Henningsson42cf0d02011-09-20 12:04:56 +0200599 if (!spec->detect_hp || (!spec->automute_speaker && !spec->automute_lo))
Takashi Iwai3c715a92011-08-23 12:41:09 +0200600 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200601 call_update_outputs(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200602}
603
Takashi Iwai1d045db2011-07-07 18:23:21 +0200604/* standard line-out-automute helper */
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200605static void alc_line_automute(struct hda_codec *codec)
606{
607 struct alc_spec *spec = codec->spec;
608
Takashi Iwaie0d32e32011-09-26 15:19:55 +0200609 /* check LO jack only when it's different from HP */
610 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0])
611 return;
612
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200613 spec->line_jack_present =
614 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
615 spec->autocfg.line_out_pins);
David Henningsson42cf0d02011-09-20 12:04:56 +0200616 if (!spec->automute_speaker || !spec->detect_lo)
Takashi Iwai3c715a92011-08-23 12:41:09 +0200617 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200618 call_update_outputs(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200619}
620
Takashi Iwai8d087c72011-06-28 12:45:47 +0200621#define get_connection_index(codec, mux, nid) \
622 snd_hda_get_conn_index(codec, mux, nid, 0)
Takashi Iwai6c819492009-08-10 18:47:44 +0200623
Takashi Iwai1d045db2011-07-07 18:23:21 +0200624/* standard mic auto-switch helper */
Kailang Yang7fb0d782008-10-15 11:12:35 +0200625static void alc_mic_automute(struct hda_codec *codec)
626{
627 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +0200628 hda_nid_t *pins = spec->imux_pins;
Kailang Yang7fb0d782008-10-15 11:12:35 +0200629
Takashi Iwai21268962011-07-07 15:01:13 +0200630 if (!spec->auto_mic || !spec->auto_mic_valid_imux)
Takashi Iwai6c819492009-08-10 18:47:44 +0200631 return;
632 if (snd_BUG_ON(!spec->adc_nids))
633 return;
Takashi Iwai21268962011-07-07 15:01:13 +0200634 if (snd_BUG_ON(spec->int_mic_idx < 0 || spec->ext_mic_idx < 0))
Takashi Iwai840b64c2010-07-13 22:49:01 +0200635 return;
Takashi Iwai840b64c2010-07-13 22:49:01 +0200636
Takashi Iwai21268962011-07-07 15:01:13 +0200637 if (snd_hda_jack_detect(codec, pins[spec->ext_mic_idx]))
638 alc_mux_select(codec, 0, spec->ext_mic_idx, false);
639 else if (spec->dock_mic_idx >= 0 &&
640 snd_hda_jack_detect(codec, pins[spec->dock_mic_idx]))
641 alc_mux_select(codec, 0, spec->dock_mic_idx, false);
642 else
643 alc_mux_select(codec, 0, spec->int_mic_idx, false);
Takashi Iwai6c819492009-08-10 18:47:44 +0200644
Takashi Iwai21268962011-07-07 15:01:13 +0200645 snd_hda_input_jack_report(codec, pins[spec->ext_mic_idx]);
646 if (spec->dock_mic_idx >= 0)
647 snd_hda_input_jack_report(codec, pins[spec->dock_mic_idx]);
Kailang Yang7fb0d782008-10-15 11:12:35 +0200648}
649
Kailang Yangc9b58002007-10-16 14:30:01 +0200650/* unsolicited event for HP jack sensing */
651static void alc_sku_unsol_event(struct hda_codec *codec, unsigned int res)
652{
653 if (codec->vendor_id == 0x10ec0880)
654 res >>= 28;
655 else
656 res >>= 26;
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200657 switch (res) {
Takashi Iwai1d045db2011-07-07 18:23:21 +0200658 case ALC_HP_EVENT:
Takashi Iwaid922b512011-04-28 12:18:53 +0200659 alc_hp_automute(codec);
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200660 break;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200661 case ALC_FRONT_EVENT:
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200662 alc_line_automute(codec);
663 break;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200664 case ALC_MIC_EVENT:
Kailang Yang7fb0d782008-10-15 11:12:35 +0200665 alc_mic_automute(codec);
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200666 break;
667 }
Kailang Yang7fb0d782008-10-15 11:12:35 +0200668}
669
Takashi Iwai1d045db2011-07-07 18:23:21 +0200670/* call init functions of standard auto-mute helpers */
Kailang Yang7fb0d782008-10-15 11:12:35 +0200671static void alc_inithook(struct hda_codec *codec)
672{
Takashi Iwaid922b512011-04-28 12:18:53 +0200673 alc_hp_automute(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200674 alc_line_automute(codec);
Kailang Yang7fb0d782008-10-15 11:12:35 +0200675 alc_mic_automute(codec);
Kailang Yangc9b58002007-10-16 14:30:01 +0200676}
677
Kailang Yangf9423e72008-05-27 12:32:25 +0200678/* additional initialization for ALC888 variants */
679static void alc888_coef_init(struct hda_codec *codec)
680{
681 unsigned int tmp;
682
683 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
684 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
685 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
Takashi Iwai37db6232009-03-05 09:40:16 +0100686 if ((tmp & 0xf0) == 0x20)
Kailang Yangf9423e72008-05-27 12:32:25 +0200687 /* alc888S-VC */
688 snd_hda_codec_read(codec, 0x20, 0,
689 AC_VERB_SET_PROC_COEF, 0x830);
690 else
691 /* alc888-VB */
692 snd_hda_codec_read(codec, 0x20, 0,
693 AC_VERB_SET_PROC_COEF, 0x3030);
694}
695
Takashi Iwai1d045db2011-07-07 18:23:21 +0200696/* additional initialization for ALC889 variants */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200697static void alc889_coef_init(struct hda_codec *codec)
698{
699 unsigned int tmp;
700
701 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
702 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
703 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
704 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
705}
706
Takashi Iwai3fb4a502010-01-19 15:46:37 +0100707/* turn on/off EAPD control (only if available) */
708static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
709{
710 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
711 return;
712 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
713 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
714 on ? 2 : 0);
715}
716
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200717/* turn on/off EAPD controls of the codec */
718static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
719{
720 /* We currently only handle front, HP */
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200721 static hda_nid_t pins[] = {
722 0x0f, 0x10, 0x14, 0x15, 0
723 };
724 hda_nid_t *p;
725 for (p = pins; *p; p++)
726 set_eapd(codec, *p, on);
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200727}
728
Takashi Iwai1c716152011-04-07 10:37:16 +0200729/* generic shutup callback;
730 * just turning off EPAD and a little pause for avoiding pop-noise
731 */
732static void alc_eapd_shutup(struct hda_codec *codec)
733{
734 alc_auto_setup_eapd(codec, false);
735 msleep(200);
736}
737
Takashi Iwai1d045db2011-07-07 18:23:21 +0200738/* generic EAPD initialization */
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200739static void alc_auto_init_amp(struct hda_codec *codec, int type)
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200740{
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200741 unsigned int tmp;
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200742
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200743 alc_auto_setup_eapd(codec, true);
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200744 switch (type) {
745 case ALC_INIT_GPIO1:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200746 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
747 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200748 case ALC_INIT_GPIO2:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200749 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
750 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200751 case ALC_INIT_GPIO3:
Kailang Yangbdd148a2007-05-08 15:19:08 +0200752 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
753 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200754 case ALC_INIT_DEFAULT:
Kailang Yangc9b58002007-10-16 14:30:01 +0200755 switch (codec->vendor_id) {
756 case 0x10ec0260:
757 snd_hda_codec_write(codec, 0x1a, 0,
758 AC_VERB_SET_COEF_INDEX, 7);
759 tmp = snd_hda_codec_read(codec, 0x1a, 0,
760 AC_VERB_GET_PROC_COEF, 0);
761 snd_hda_codec_write(codec, 0x1a, 0,
762 AC_VERB_SET_COEF_INDEX, 7);
763 snd_hda_codec_write(codec, 0x1a, 0,
764 AC_VERB_SET_PROC_COEF,
765 tmp | 0x2010);
766 break;
767 case 0x10ec0262:
768 case 0x10ec0880:
769 case 0x10ec0882:
770 case 0x10ec0883:
771 case 0x10ec0885:
Takashi Iwai4a5a4c52009-02-06 12:46:59 +0100772 case 0x10ec0887:
Takashi Iwai20b67dd2011-03-23 22:54:32 +0100773 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200774 alc889_coef_init(codec);
Kailang Yangc9b58002007-10-16 14:30:01 +0200775 break;
Kailang Yangf9423e72008-05-27 12:32:25 +0200776 case 0x10ec0888:
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200777 alc888_coef_init(codec);
Kailang Yangf9423e72008-05-27 12:32:25 +0200778 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100779#if 0 /* XXX: This may cause the silent output on speaker on some machines */
Kailang Yangc9b58002007-10-16 14:30:01 +0200780 case 0x10ec0267:
781 case 0x10ec0268:
782 snd_hda_codec_write(codec, 0x20, 0,
783 AC_VERB_SET_COEF_INDEX, 7);
784 tmp = snd_hda_codec_read(codec, 0x20, 0,
785 AC_VERB_GET_PROC_COEF, 0);
786 snd_hda_codec_write(codec, 0x20, 0,
Kailang Yangea1fb292008-08-26 12:58:38 +0200787 AC_VERB_SET_COEF_INDEX, 7);
Kailang Yangc9b58002007-10-16 14:30:01 +0200788 snd_hda_codec_write(codec, 0x20, 0,
789 AC_VERB_SET_PROC_COEF,
790 tmp | 0x3000);
791 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100792#endif /* XXX */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200793 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200794 break;
795 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200796}
Kailang Yangea1fb292008-08-26 12:58:38 +0200797
Takashi Iwai1d045db2011-07-07 18:23:21 +0200798/*
799 * Auto-Mute mode mixer enum support
800 */
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200801static int alc_automute_mode_info(struct snd_kcontrol *kcontrol,
802 struct snd_ctl_elem_info *uinfo)
803{
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200804 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
805 struct alc_spec *spec = codec->spec;
806 static const char * const texts2[] = {
807 "Disabled", "Enabled"
808 };
809 static const char * const texts3[] = {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200810 "Disabled", "Speaker Only", "Line-Out+Speaker"
811 };
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200812 const char * const *texts;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200813
814 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
815 uinfo->count = 1;
David Henningsson42cf0d02011-09-20 12:04:56 +0200816 if (spec->automute_speaker_possible && spec->automute_lo_possible) {
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200817 uinfo->value.enumerated.items = 3;
818 texts = texts3;
819 } else {
820 uinfo->value.enumerated.items = 2;
821 texts = texts2;
822 }
823 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
824 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200825 strcpy(uinfo->value.enumerated.name,
826 texts[uinfo->value.enumerated.item]);
827 return 0;
828}
829
830static int alc_automute_mode_get(struct snd_kcontrol *kcontrol,
831 struct snd_ctl_elem_value *ucontrol)
832{
833 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
834 struct alc_spec *spec = codec->spec;
David Henningsson42cf0d02011-09-20 12:04:56 +0200835 unsigned int val = 0;
836 if (spec->automute_speaker)
837 val++;
838 if (spec->automute_lo)
839 val++;
840
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200841 ucontrol->value.enumerated.item[0] = val;
842 return 0;
843}
844
845static int alc_automute_mode_put(struct snd_kcontrol *kcontrol,
846 struct snd_ctl_elem_value *ucontrol)
847{
848 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
849 struct alc_spec *spec = codec->spec;
850
851 switch (ucontrol->value.enumerated.item[0]) {
852 case 0:
David Henningsson42cf0d02011-09-20 12:04:56 +0200853 if (!spec->automute_speaker && !spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200854 return 0;
David Henningsson42cf0d02011-09-20 12:04:56 +0200855 spec->automute_speaker = 0;
856 spec->automute_lo = 0;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200857 break;
858 case 1:
David Henningsson42cf0d02011-09-20 12:04:56 +0200859 if (spec->automute_speaker_possible) {
860 if (!spec->automute_lo && spec->automute_speaker)
861 return 0;
862 spec->automute_speaker = 1;
863 spec->automute_lo = 0;
864 } else if (spec->automute_lo_possible) {
865 if (spec->automute_lo)
866 return 0;
867 spec->automute_lo = 1;
868 } else
869 return -EINVAL;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200870 break;
871 case 2:
David Henningsson42cf0d02011-09-20 12:04:56 +0200872 if (!spec->automute_lo_possible || !spec->automute_speaker_possible)
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200873 return -EINVAL;
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 = 1;
877 spec->automute_lo = 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200878 break;
879 default:
880 return -EINVAL;
881 }
David Henningsson42cf0d02011-09-20 12:04:56 +0200882 call_update_outputs(codec);
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200883 return 1;
884}
885
Takashi Iwaia9111322011-05-02 11:30:18 +0200886static const struct snd_kcontrol_new alc_automute_mode_enum = {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200887 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
888 .name = "Auto-Mute Mode",
889 .info = alc_automute_mode_info,
890 .get = alc_automute_mode_get,
891 .put = alc_automute_mode_put,
892};
893
Takashi Iwai1d045db2011-07-07 18:23:21 +0200894static struct snd_kcontrol_new *alc_kcontrol_new(struct alc_spec *spec)
895{
896 snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32);
897 return snd_array_new(&spec->kctls);
898}
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200899
900static int alc_add_automute_mode_enum(struct hda_codec *codec)
901{
902 struct alc_spec *spec = codec->spec;
903 struct snd_kcontrol_new *knew;
904
905 knew = alc_kcontrol_new(spec);
906 if (!knew)
907 return -ENOMEM;
908 *knew = alc_automute_mode_enum;
909 knew->name = kstrdup("Auto-Mute Mode", GFP_KERNEL);
910 if (!knew->name)
911 return -ENOMEM;
912 return 0;
913}
914
Takashi Iwai1d045db2011-07-07 18:23:21 +0200915/*
916 * Check the availability of HP/line-out auto-mute;
917 * Set up appropriately if really supported
918 */
David Henningsson42cf0d02011-09-20 12:04:56 +0200919static void alc_init_automute(struct hda_codec *codec)
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200920{
921 struct alc_spec *spec = codec->spec;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200922 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai1daf5f42011-04-28 17:57:46 +0200923 int present = 0;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200924 int i;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200925
Takashi Iwai1daf5f42011-04-28 17:57:46 +0200926 if (cfg->hp_pins[0])
927 present++;
928 if (cfg->line_out_pins[0])
929 present++;
930 if (cfg->speaker_pins[0])
931 present++;
932 if (present < 2) /* need two different output types */
933 return;
Kailang Yangc9b58002007-10-16 14:30:01 +0200934
Takashi Iwaic48a8fb2011-07-27 16:41:57 +0200935 if (!cfg->speaker_pins[0] &&
936 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200937 memcpy(cfg->speaker_pins, cfg->line_out_pins,
938 sizeof(cfg->speaker_pins));
939 cfg->speaker_outs = cfg->line_outs;
940 }
941
Takashi Iwaic48a8fb2011-07-27 16:41:57 +0200942 if (!cfg->hp_pins[0] &&
943 cfg->line_out_type == AUTO_PIN_HP_OUT) {
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200944 memcpy(cfg->hp_pins, cfg->line_out_pins,
945 sizeof(cfg->hp_pins));
946 cfg->hp_outs = cfg->line_outs;
947 }
948
David Henningsson42cf0d02011-09-20 12:04:56 +0200949 spec->automute_mode = ALC_AUTOMUTE_PIN;
950
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200951 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200952 hda_nid_t nid = cfg->hp_pins[i];
Takashi Iwai06dec222011-05-17 10:00:16 +0200953 if (!is_jack_detectable(codec, nid))
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200954 continue;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200955 snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n",
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200956 nid);
957 snd_hda_codec_write_cache(codec, nid, 0,
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200958 AC_VERB_SET_UNSOLICITED_ENABLE,
Takashi Iwai1d045db2011-07-07 18:23:21 +0200959 AC_USRSP_EN | ALC_HP_EVENT);
David Henningsson42cf0d02011-09-20 12:04:56 +0200960 spec->detect_hp = 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200961 }
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200962
David Henningsson42cf0d02011-09-20 12:04:56 +0200963 if (cfg->line_out_type == AUTO_PIN_LINE_OUT && cfg->line_outs) {
964 if (cfg->speaker_outs)
965 for (i = 0; i < cfg->line_outs; i++) {
966 hda_nid_t nid = cfg->line_out_pins[i];
967 if (!is_jack_detectable(codec, nid))
968 continue;
969 snd_printdd("realtek: Enable Line-Out "
970 "auto-muting on NID 0x%x\n", nid);
971 snd_hda_codec_write_cache(codec, nid, 0,
972 AC_VERB_SET_UNSOLICITED_ENABLE,
973 AC_USRSP_EN | ALC_FRONT_EVENT);
974 spec->detect_lo = 1;
975 }
976 spec->automute_lo_possible = spec->detect_hp;
977 }
978
979 spec->automute_speaker_possible = cfg->speaker_outs &&
980 (spec->detect_hp || spec->detect_lo);
981
982 spec->automute_lo = spec->automute_lo_possible;
983 spec->automute_speaker = spec->automute_speaker_possible;
984
985 if (spec->automute_speaker_possible || spec->automute_lo_possible) {
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200986 /* create a control for automute mode */
987 alc_add_automute_mode_enum(codec);
988 spec->unsol_event = alc_sku_unsol_event;
989 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200990}
991
Takashi Iwai1d045db2011-07-07 18:23:21 +0200992/* return the position of NID in the list, or -1 if not found */
Takashi Iwai21268962011-07-07 15:01:13 +0200993static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
994{
995 int i;
996 for (i = 0; i < nums; i++)
997 if (list[i] == nid)
998 return i;
999 return -1;
1000}
1001
Takashi Iwai1d045db2011-07-07 18:23:21 +02001002/* check whether dynamic ADC-switching is available */
1003static bool alc_check_dyn_adc_switch(struct hda_codec *codec)
1004{
1005 struct alc_spec *spec = codec->spec;
1006 struct hda_input_mux *imux = &spec->private_imux[0];
1007 int i, n, idx;
1008 hda_nid_t cap, pin;
1009
1010 if (imux != spec->input_mux) /* no dynamic imux? */
1011 return false;
1012
1013 for (n = 0; n < spec->num_adc_nids; n++) {
1014 cap = spec->private_capsrc_nids[n];
1015 for (i = 0; i < imux->num_items; i++) {
1016 pin = spec->imux_pins[i];
1017 if (!pin)
1018 return false;
1019 if (get_connection_index(codec, cap, pin) < 0)
1020 break;
1021 }
1022 if (i >= imux->num_items)
Takashi Iwai268ff6f2011-07-08 14:37:35 +02001023 return true; /* no ADC-switch is needed */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001024 }
1025
1026 for (i = 0; i < imux->num_items; i++) {
1027 pin = spec->imux_pins[i];
1028 for (n = 0; n < spec->num_adc_nids; n++) {
1029 cap = spec->private_capsrc_nids[n];
1030 idx = get_connection_index(codec, cap, pin);
1031 if (idx >= 0) {
1032 imux->items[i].index = idx;
1033 spec->dyn_adc_idx[i] = n;
1034 break;
1035 }
1036 }
1037 }
1038
1039 snd_printdd("realtek: enabling ADC switching\n");
1040 spec->dyn_adc_switch = 1;
1041 return true;
1042}
Takashi Iwai21268962011-07-07 15:01:13 +02001043
1044/* rebuild imux for matching with the given auto-mic pins (if not yet) */
1045static bool alc_rebuild_imux_for_auto_mic(struct hda_codec *codec)
1046{
1047 struct alc_spec *spec = codec->spec;
1048 struct hda_input_mux *imux;
1049 static char * const texts[3] = {
1050 "Mic", "Internal Mic", "Dock Mic"
1051 };
1052 int i;
1053
1054 if (!spec->auto_mic)
1055 return false;
1056 imux = &spec->private_imux[0];
1057 if (spec->input_mux == imux)
1058 return true;
1059 spec->imux_pins[0] = spec->ext_mic_pin;
1060 spec->imux_pins[1] = spec->int_mic_pin;
1061 spec->imux_pins[2] = spec->dock_mic_pin;
1062 for (i = 0; i < 3; i++) {
1063 strcpy(imux->items[i].label, texts[i]);
Takashi Iwai6759dc32011-11-23 07:38:59 +01001064 if (spec->imux_pins[i]) {
1065 hda_nid_t pin = spec->imux_pins[i];
1066 int c;
1067 for (c = 0; c < spec->num_adc_nids; c++) {
Takashi Iwai61071592011-11-23 07:52:15 +01001068 hda_nid_t cap = get_capsrc(spec, c);
Takashi Iwai6759dc32011-11-23 07:38:59 +01001069 int idx = get_connection_index(codec, cap, pin);
1070 if (idx >= 0) {
1071 imux->items[i].index = idx;
1072 break;
1073 }
1074 }
Takashi Iwai21268962011-07-07 15:01:13 +02001075 imux->num_items = i + 1;
Takashi Iwai6759dc32011-11-23 07:38:59 +01001076 }
Takashi Iwai21268962011-07-07 15:01:13 +02001077 }
1078 spec->num_mux_defs = 1;
1079 spec->input_mux = imux;
1080 return true;
1081}
1082
1083/* check whether all auto-mic pins are valid; setup indices if OK */
1084static bool alc_auto_mic_check_imux(struct hda_codec *codec)
1085{
1086 struct alc_spec *spec = codec->spec;
1087 const struct hda_input_mux *imux;
1088
1089 if (!spec->auto_mic)
1090 return false;
1091 if (spec->auto_mic_valid_imux)
1092 return true; /* already checked */
1093
1094 /* fill up imux indices */
1095 if (!alc_check_dyn_adc_switch(codec)) {
1096 spec->auto_mic = 0;
1097 return false;
1098 }
1099
1100 imux = spec->input_mux;
1101 spec->ext_mic_idx = find_idx_in_nid_list(spec->ext_mic_pin,
1102 spec->imux_pins, imux->num_items);
1103 spec->int_mic_idx = find_idx_in_nid_list(spec->int_mic_pin,
1104 spec->imux_pins, imux->num_items);
1105 spec->dock_mic_idx = find_idx_in_nid_list(spec->dock_mic_pin,
1106 spec->imux_pins, imux->num_items);
1107 if (spec->ext_mic_idx < 0 || spec->int_mic_idx < 0) {
1108 spec->auto_mic = 0;
1109 return false; /* no corresponding imux */
1110 }
1111
1112 snd_hda_codec_write_cache(codec, spec->ext_mic_pin, 0,
1113 AC_VERB_SET_UNSOLICITED_ENABLE,
Takashi Iwai1d045db2011-07-07 18:23:21 +02001114 AC_USRSP_EN | ALC_MIC_EVENT);
Takashi Iwai21268962011-07-07 15:01:13 +02001115 if (spec->dock_mic_pin)
1116 snd_hda_codec_write_cache(codec, spec->dock_mic_pin, 0,
1117 AC_VERB_SET_UNSOLICITED_ENABLE,
Takashi Iwai1d045db2011-07-07 18:23:21 +02001118 AC_USRSP_EN | ALC_MIC_EVENT);
Takashi Iwai21268962011-07-07 15:01:13 +02001119
1120 spec->auto_mic_valid_imux = 1;
1121 spec->auto_mic = 1;
1122 return true;
1123}
1124
Takashi Iwai1d045db2011-07-07 18:23:21 +02001125/*
1126 * Check the availability of auto-mic switch;
1127 * Set up if really supported
1128 */
Takashi Iwai6c819492009-08-10 18:47:44 +02001129static void alc_init_auto_mic(struct hda_codec *codec)
1130{
1131 struct alc_spec *spec = codec->spec;
1132 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001133 hda_nid_t fixed, ext, dock;
Takashi Iwai6c819492009-08-10 18:47:44 +02001134 int i;
1135
Takashi Iwai21268962011-07-07 15:01:13 +02001136 spec->ext_mic_idx = spec->int_mic_idx = spec->dock_mic_idx = -1;
1137
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001138 fixed = ext = dock = 0;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02001139 for (i = 0; i < cfg->num_inputs; i++) {
1140 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai6c819492009-08-10 18:47:44 +02001141 unsigned int defcfg;
Takashi Iwai6c819492009-08-10 18:47:44 +02001142 defcfg = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001143 switch (snd_hda_get_input_pin_attr(defcfg)) {
1144 case INPUT_PIN_ATTR_INT:
Takashi Iwai6c819492009-08-10 18:47:44 +02001145 if (fixed)
1146 return; /* already occupied */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001147 if (cfg->inputs[i].type != AUTO_PIN_MIC)
1148 return; /* invalid type */
Takashi Iwai6c819492009-08-10 18:47:44 +02001149 fixed = nid;
1150 break;
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001151 case INPUT_PIN_ATTR_UNUSED:
1152 return; /* invalid entry */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001153 case INPUT_PIN_ATTR_DOCK:
1154 if (dock)
1155 return; /* already occupied */
1156 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
1157 return; /* invalid type */
1158 dock = nid;
1159 break;
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001160 default:
Takashi Iwai6c819492009-08-10 18:47:44 +02001161 if (ext)
1162 return; /* already occupied */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001163 if (cfg->inputs[i].type != AUTO_PIN_MIC)
1164 return; /* invalid type */
Takashi Iwai6c819492009-08-10 18:47:44 +02001165 ext = nid;
1166 break;
Takashi Iwai6c819492009-08-10 18:47:44 +02001167 }
1168 }
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001169 if (!ext && dock) {
1170 ext = dock;
1171 dock = 0;
1172 }
Takashi Iwaieaa9b3a2010-01-17 13:09:33 +01001173 if (!ext || !fixed)
1174 return;
Takashi Iwaie35d9d62011-05-17 11:28:16 +02001175 if (!is_jack_detectable(codec, ext))
Takashi Iwai6c819492009-08-10 18:47:44 +02001176 return; /* no unsol support */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001177 if (dock && !is_jack_detectable(codec, dock))
1178 return; /* no unsol support */
Takashi Iwai21268962011-07-07 15:01:13 +02001179
1180 /* check imux indices */
1181 spec->ext_mic_pin = ext;
1182 spec->int_mic_pin = fixed;
1183 spec->dock_mic_pin = dock;
1184
1185 spec->auto_mic = 1;
1186 if (!alc_auto_mic_check_imux(codec))
1187 return;
1188
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001189 snd_printdd("realtek: Enable auto-mic switch on NID 0x%x/0x%x/0x%x\n",
1190 ext, fixed, dock);
Takashi Iwai6c819492009-08-10 18:47:44 +02001191 spec->unsol_event = alc_sku_unsol_event;
1192}
1193
Takashi Iwai1d045db2011-07-07 18:23:21 +02001194/* check the availabilities of auto-mute and auto-mic switches */
1195static void alc_auto_check_switches(struct hda_codec *codec)
1196{
David Henningsson42cf0d02011-09-20 12:04:56 +02001197 alc_init_automute(codec);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001198 alc_init_auto_mic(codec);
1199}
1200
1201/*
1202 * Realtek SSID verification
1203 */
1204
David Henningsson90622912010-10-14 14:50:18 +02001205/* Could be any non-zero and even value. When used as fixup, tells
1206 * the driver to ignore any present sku defines.
1207 */
1208#define ALC_FIXUP_SKU_IGNORE (2)
1209
Kailang Yangda00c242010-03-19 11:23:45 +01001210static int alc_auto_parse_customize_define(struct hda_codec *codec)
1211{
1212 unsigned int ass, tmp, i;
Takashi Iwai7fb56222010-03-22 17:09:47 +01001213 unsigned nid = 0;
Kailang Yangda00c242010-03-19 11:23:45 +01001214 struct alc_spec *spec = codec->spec;
1215
Takashi Iwaib6cbe512010-07-28 17:43:36 +02001216 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
1217
David Henningsson90622912010-10-14 14:50:18 +02001218 if (spec->cdefine.fixup) {
1219 ass = spec->cdefine.sku_cfg;
1220 if (ass == ALC_FIXUP_SKU_IGNORE)
1221 return -1;
1222 goto do_sku;
1223 }
1224
Kailang Yangda00c242010-03-19 11:23:45 +01001225 ass = codec->subsystem_id & 0xffff;
Takashi Iwaib6cbe512010-07-28 17:43:36 +02001226 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
Kailang Yangda00c242010-03-19 11:23:45 +01001227 goto do_sku;
1228
1229 nid = 0x1d;
1230 if (codec->vendor_id == 0x10ec0260)
1231 nid = 0x17;
1232 ass = snd_hda_codec_get_pincfg(codec, nid);
1233
1234 if (!(ass & 1)) {
1235 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
1236 codec->chip_name, ass);
1237 return -1;
1238 }
1239
1240 /* check sum */
1241 tmp = 0;
1242 for (i = 1; i < 16; i++) {
1243 if ((ass >> i) & 1)
1244 tmp++;
1245 }
1246 if (((ass >> 16) & 0xf) != tmp)
1247 return -1;
1248
1249 spec->cdefine.port_connectivity = ass >> 30;
1250 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
1251 spec->cdefine.check_sum = (ass >> 16) & 0xf;
1252 spec->cdefine.customization = ass >> 8;
1253do_sku:
1254 spec->cdefine.sku_cfg = ass;
1255 spec->cdefine.external_amp = (ass & 0x38) >> 3;
1256 spec->cdefine.platform_type = (ass & 0x4) >> 2;
1257 spec->cdefine.swap = (ass & 0x2) >> 1;
1258 spec->cdefine.override = ass & 0x1;
1259
1260 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
1261 nid, spec->cdefine.sku_cfg);
1262 snd_printd("SKU: port_connectivity=0x%x\n",
1263 spec->cdefine.port_connectivity);
1264 snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
1265 snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
1266 snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
1267 snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
1268 snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
1269 snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
1270 snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
1271
1272 return 0;
1273}
1274
Takashi Iwai1d045db2011-07-07 18:23:21 +02001275/* return true if the given NID is found in the list */
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001276static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
1277{
Takashi Iwai21268962011-07-07 15:01:13 +02001278 return find_idx_in_nid_list(nid, list, nums) >= 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001279}
1280
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001281/* check subsystem ID and set up device-specific initialization;
1282 * return 1 if initialized, 0 if invalid SSID
1283 */
1284/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
1285 * 31 ~ 16 : Manufacture ID
1286 * 15 ~ 8 : SKU ID
1287 * 7 ~ 0 : Assembly ID
1288 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
1289 */
1290static int alc_subsystem_id(struct hda_codec *codec,
1291 hda_nid_t porta, hda_nid_t porte,
Kailang Yang6227cdc2010-02-25 08:36:52 +01001292 hda_nid_t portd, hda_nid_t porti)
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001293{
1294 unsigned int ass, tmp, i;
1295 unsigned nid;
1296 struct alc_spec *spec = codec->spec;
1297
David Henningsson90622912010-10-14 14:50:18 +02001298 if (spec->cdefine.fixup) {
1299 ass = spec->cdefine.sku_cfg;
1300 if (ass == ALC_FIXUP_SKU_IGNORE)
1301 return 0;
1302 goto do_sku;
1303 }
1304
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001305 ass = codec->subsystem_id & 0xffff;
1306 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
1307 goto do_sku;
1308
1309 /* invalid SSID, check the special NID pin defcfg instead */
1310 /*
Sasha Alexandrdef319f2009-06-16 16:00:15 -04001311 * 31~30 : port connectivity
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001312 * 29~21 : reserve
1313 * 20 : PCBEEP input
1314 * 19~16 : Check sum (15:1)
1315 * 15~1 : Custom
1316 * 0 : override
1317 */
1318 nid = 0x1d;
1319 if (codec->vendor_id == 0x10ec0260)
1320 nid = 0x17;
1321 ass = snd_hda_codec_get_pincfg(codec, nid);
1322 snd_printd("realtek: No valid SSID, "
1323 "checking pincfg 0x%08x for NID 0x%x\n",
Takashi Iwaicb6605c2009-04-28 13:03:19 +02001324 ass, nid);
Kailang Yang6227cdc2010-02-25 08:36:52 +01001325 if (!(ass & 1))
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001326 return 0;
1327 if ((ass >> 30) != 1) /* no physical connection */
1328 return 0;
1329
1330 /* check sum */
1331 tmp = 0;
1332 for (i = 1; i < 16; i++) {
1333 if ((ass >> i) & 1)
1334 tmp++;
1335 }
1336 if (((ass >> 16) & 0xf) != tmp)
1337 return 0;
1338do_sku:
1339 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
1340 ass & 0xffff, codec->vendor_id);
1341 /*
1342 * 0 : override
1343 * 1 : Swap Jack
1344 * 2 : 0 --> Desktop, 1 --> Laptop
1345 * 3~5 : External Amplifier control
1346 * 7~6 : Reserved
1347 */
1348 tmp = (ass & 0x38) >> 3; /* external Amp control */
1349 switch (tmp) {
1350 case 1:
1351 spec->init_amp = ALC_INIT_GPIO1;
1352 break;
1353 case 3:
1354 spec->init_amp = ALC_INIT_GPIO2;
1355 break;
1356 case 7:
1357 spec->init_amp = ALC_INIT_GPIO3;
1358 break;
1359 case 5:
Takashi Iwai5a8cfb42010-11-26 17:11:18 +01001360 default:
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001361 spec->init_amp = ALC_INIT_DEFAULT;
1362 break;
1363 }
1364
1365 /* is laptop or Desktop and enable the function "Mute internal speaker
1366 * when the external headphone out jack is plugged"
1367 */
1368 if (!(ass & 0x8000))
1369 return 1;
1370 /*
1371 * 10~8 : Jack location
1372 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1373 * 14~13: Resvered
1374 * 15 : 1 --> enable the function "Mute internal speaker
1375 * when the external headphone out jack is plugged"
1376 */
Takashi Iwai5fe6e012011-09-26 10:41:21 +02001377 if (!spec->autocfg.hp_pins[0] &&
1378 !(spec->autocfg.line_out_pins[0] &&
1379 spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
Takashi Iwai01d48252009-10-06 13:21:54 +02001380 hda_nid_t nid;
Kailang Yangc9b58002007-10-16 14:30:01 +02001381 tmp = (ass >> 11) & 0x3; /* HP to chassis */
1382 if (tmp == 0)
Takashi Iwai01d48252009-10-06 13:21:54 +02001383 nid = porta;
Kailang Yangc9b58002007-10-16 14:30:01 +02001384 else if (tmp == 1)
Takashi Iwai01d48252009-10-06 13:21:54 +02001385 nid = porte;
Kailang Yangc9b58002007-10-16 14:30:01 +02001386 else if (tmp == 2)
Takashi Iwai01d48252009-10-06 13:21:54 +02001387 nid = portd;
Kailang Yang6227cdc2010-02-25 08:36:52 +01001388 else if (tmp == 3)
1389 nid = porti;
Kailang Yangc9b58002007-10-16 14:30:01 +02001390 else
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001391 return 1;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001392 if (found_in_nid_list(nid, spec->autocfg.line_out_pins,
1393 spec->autocfg.line_outs))
1394 return 1;
Takashi Iwai01d48252009-10-06 13:21:54 +02001395 spec->autocfg.hp_pins[0] = nid;
Kailang Yangc9b58002007-10-16 14:30:01 +02001396 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001397 return 1;
1398}
Kailang Yangea1fb292008-08-26 12:58:38 +02001399
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001400/* Check the validity of ALC subsystem-id
1401 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
1402static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001403{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001404 if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001405 struct alc_spec *spec = codec->spec;
1406 snd_printd("realtek: "
1407 "Enable default setup for auto mode as fallback\n");
1408 spec->init_amp = ALC_INIT_DEFAULT;
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001409 }
Takashi Iwai21268962011-07-07 15:01:13 +02001410}
Takashi Iwai1a1455d2011-04-28 17:36:18 +02001411
Takashi Iwai41e41f12005-06-08 14:48:49 +02001412/*
Takashi Iwaif8f25ba2009-10-06 08:31:29 +02001413 * Fix-up pin default configurations and add default verbs
Takashi Iwaif95474e2007-07-10 00:47:43 +02001414 */
1415
1416struct alc_pincfg {
1417 hda_nid_t nid;
1418 u32 val;
1419};
1420
Todd Broche1eb5f12010-12-06 11:19:51 -08001421struct alc_model_fixup {
1422 const int id;
1423 const char *name;
1424};
1425
Takashi Iwaif8f25ba2009-10-06 08:31:29 +02001426struct alc_fixup {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001427 int type;
Takashi Iwai361fe6e2011-01-14 09:55:32 +01001428 bool chained;
1429 int chain_id;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001430 union {
1431 unsigned int sku;
1432 const struct alc_pincfg *pins;
1433 const struct hda_verb *verbs;
1434 void (*func)(struct hda_codec *codec,
1435 const struct alc_fixup *fix,
1436 int action);
1437 } v;
Takashi Iwaif8f25ba2009-10-06 08:31:29 +02001438};
1439
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001440enum {
1441 ALC_FIXUP_INVALID,
1442 ALC_FIXUP_SKU,
1443 ALC_FIXUP_PINS,
1444 ALC_FIXUP_VERBS,
1445 ALC_FIXUP_FUNC,
1446};
Takashi Iwaif95474e2007-07-10 00:47:43 +02001447
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001448enum {
1449 ALC_FIXUP_ACT_PRE_PROBE,
1450 ALC_FIXUP_ACT_PROBE,
Takashi Iwai58701122011-01-13 15:41:45 +01001451 ALC_FIXUP_ACT_INIT,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001452};
1453
1454static void alc_apply_fixup(struct hda_codec *codec, int action)
1455{
1456 struct alc_spec *spec = codec->spec;
1457 int id = spec->fixup_id;
Takashi Iwaiaa1d0c52011-01-19 17:27:58 +01001458#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001459 const char *modelname = spec->fixup_name;
Takashi Iwaiaa1d0c52011-01-19 17:27:58 +01001460#endif
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001461 int depth = 0;
1462
1463 if (!spec->fixup_list)
1464 return;
1465
1466 while (id >= 0) {
1467 const struct alc_fixup *fix = spec->fixup_list + id;
1468 const struct alc_pincfg *cfg;
1469
1470 switch (fix->type) {
1471 case ALC_FIXUP_SKU:
1472 if (action != ALC_FIXUP_ACT_PRE_PROBE || !fix->v.sku)
Jesper Juhle53de8f2011-11-13 23:11:50 +01001473 break;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001474 snd_printdd(KERN_INFO "hda_codec: %s: "
1475 "Apply sku override for %s\n",
1476 codec->chip_name, modelname);
1477 spec->cdefine.sku_cfg = fix->v.sku;
1478 spec->cdefine.fixup = 1;
1479 break;
1480 case ALC_FIXUP_PINS:
1481 cfg = fix->v.pins;
1482 if (action != ALC_FIXUP_ACT_PRE_PROBE || !cfg)
1483 break;
1484 snd_printdd(KERN_INFO "hda_codec: %s: "
1485 "Apply pincfg for %s\n",
1486 codec->chip_name, modelname);
1487 for (; cfg->nid; cfg++)
1488 snd_hda_codec_set_pincfg(codec, cfg->nid,
1489 cfg->val);
1490 break;
1491 case ALC_FIXUP_VERBS:
1492 if (action != ALC_FIXUP_ACT_PROBE || !fix->v.verbs)
1493 break;
1494 snd_printdd(KERN_INFO "hda_codec: %s: "
1495 "Apply fix-verbs for %s\n",
1496 codec->chip_name, modelname);
1497 add_verb(codec->spec, fix->v.verbs);
1498 break;
1499 case ALC_FIXUP_FUNC:
1500 if (!fix->v.func)
1501 break;
1502 snd_printdd(KERN_INFO "hda_codec: %s: "
1503 "Apply fix-func for %s\n",
1504 codec->chip_name, modelname);
1505 fix->v.func(codec, fix, action);
1506 break;
1507 default:
1508 snd_printk(KERN_ERR "hda_codec: %s: "
1509 "Invalid fixup type %d\n",
1510 codec->chip_name, fix->type);
1511 break;
1512 }
Takashi Iwai24af2b12011-05-02 13:55:36 +02001513 if (!fix->chained)
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001514 break;
1515 if (++depth > 10)
1516 break;
Takashi Iwai24af2b12011-05-02 13:55:36 +02001517 id = fix->chain_id;
Takashi Iwai9d578832010-11-22 13:29:19 +01001518 }
Takashi Iwaif95474e2007-07-10 00:47:43 +02001519}
1520
Todd Broche1eb5f12010-12-06 11:19:51 -08001521static void alc_pick_fixup(struct hda_codec *codec,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001522 const struct alc_model_fixup *models,
1523 const struct snd_pci_quirk *quirk,
1524 const struct alc_fixup *fixlist)
Todd Broche1eb5f12010-12-06 11:19:51 -08001525{
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001526 struct alc_spec *spec = codec->spec;
1527 int id = -1;
1528 const char *name = NULL;
Todd Broche1eb5f12010-12-06 11:19:51 -08001529
Todd Broche1eb5f12010-12-06 11:19:51 -08001530 if (codec->modelname && models) {
1531 while (models->name) {
1532 if (!strcmp(codec->modelname, models->name)) {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001533 id = models->id;
1534 name = models->name;
Todd Broche1eb5f12010-12-06 11:19:51 -08001535 break;
1536 }
1537 models++;
1538 }
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001539 }
1540 if (id < 0) {
1541 quirk = snd_pci_quirk_lookup(codec->bus->pci, quirk);
1542 if (quirk) {
1543 id = quirk->value;
1544#ifdef CONFIG_SND_DEBUG_VERBOSE
1545 name = quirk->name;
1546#endif
1547 }
1548 }
1549
1550 spec->fixup_id = id;
1551 if (id >= 0) {
1552 spec->fixup_list = fixlist;
1553 spec->fixup_name = name;
Todd Broche1eb5f12010-12-06 11:19:51 -08001554 }
Takashi Iwaif95474e2007-07-10 00:47:43 +02001555}
1556
Takashi Iwai1d045db2011-07-07 18:23:21 +02001557/*
1558 * COEF access helper functions
1559 */
Kailang Yang274693f2009-12-03 10:07:50 +01001560static int alc_read_coef_idx(struct hda_codec *codec,
1561 unsigned int coef_idx)
1562{
1563 unsigned int val;
1564 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1565 coef_idx);
1566 val = snd_hda_codec_read(codec, 0x20, 0,
1567 AC_VERB_GET_PROC_COEF, 0);
1568 return val;
1569}
1570
Kailang Yang977ddd62010-09-15 10:02:29 +02001571static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
1572 unsigned int coef_val)
1573{
1574 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1575 coef_idx);
1576 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
1577 coef_val);
1578}
1579
Takashi Iwai1bb7e432011-10-17 16:50:59 +02001580/* a special bypass for COEF 0; read the cached value at the second time */
1581static unsigned int alc_get_coef0(struct hda_codec *codec)
1582{
1583 struct alc_spec *spec = codec->spec;
1584 if (!spec->coef0)
1585 spec->coef0 = alc_read_coef_idx(codec, 0);
1586 return spec->coef0;
1587}
1588
Takashi Iwai1d045db2011-07-07 18:23:21 +02001589/*
1590 * Digital I/O handling
1591 */
1592
Takashi Iwai757899a2010-07-30 10:48:14 +02001593/* set right pin controls for digital I/O */
1594static void alc_auto_init_digital(struct hda_codec *codec)
1595{
1596 struct alc_spec *spec = codec->spec;
1597 int i;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001598 hda_nid_t pin, dac;
Takashi Iwai757899a2010-07-30 10:48:14 +02001599
1600 for (i = 0; i < spec->autocfg.dig_outs; i++) {
1601 pin = spec->autocfg.dig_out_pins[i];
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001602 if (!pin)
1603 continue;
1604 snd_hda_codec_write(codec, pin, 0,
1605 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
1606 if (!i)
1607 dac = spec->multiout.dig_out_nid;
1608 else
1609 dac = spec->slave_dig_outs[i - 1];
1610 if (!dac || !(get_wcaps(codec, dac) & AC_WCAP_OUT_AMP))
1611 continue;
1612 snd_hda_codec_write(codec, dac, 0,
1613 AC_VERB_SET_AMP_GAIN_MUTE,
1614 AMP_OUT_UNMUTE);
Takashi Iwai757899a2010-07-30 10:48:14 +02001615 }
1616 pin = spec->autocfg.dig_in_pin;
1617 if (pin)
1618 snd_hda_codec_write(codec, pin, 0,
1619 AC_VERB_SET_PIN_WIDGET_CONTROL,
1620 PIN_IN);
1621}
1622
1623/* parse digital I/Os and set up NIDs in BIOS auto-parse mode */
1624static void alc_auto_parse_digital(struct hda_codec *codec)
1625{
1626 struct alc_spec *spec = codec->spec;
Takashi Iwai51e41522011-11-03 16:54:06 +01001627 int i, err, nums;
Takashi Iwai757899a2010-07-30 10:48:14 +02001628 hda_nid_t dig_nid;
1629
1630 /* support multiple SPDIFs; the secondary is set up as a slave */
Takashi Iwai51e41522011-11-03 16:54:06 +01001631 nums = 0;
Takashi Iwai757899a2010-07-30 10:48:14 +02001632 for (i = 0; i < spec->autocfg.dig_outs; i++) {
Takashi Iwaia9267572011-07-07 15:12:55 +02001633 hda_nid_t conn[4];
Takashi Iwai757899a2010-07-30 10:48:14 +02001634 err = snd_hda_get_connections(codec,
1635 spec->autocfg.dig_out_pins[i],
Takashi Iwaia9267572011-07-07 15:12:55 +02001636 conn, ARRAY_SIZE(conn));
Takashi Iwai51e41522011-11-03 16:54:06 +01001637 if (err <= 0)
Takashi Iwai757899a2010-07-30 10:48:14 +02001638 continue;
Takashi Iwaia9267572011-07-07 15:12:55 +02001639 dig_nid = conn[0]; /* assume the first element is audio-out */
Takashi Iwai51e41522011-11-03 16:54:06 +01001640 if (!nums) {
Takashi Iwai757899a2010-07-30 10:48:14 +02001641 spec->multiout.dig_out_nid = dig_nid;
1642 spec->dig_out_type = spec->autocfg.dig_out_type[0];
1643 } else {
1644 spec->multiout.slave_dig_outs = spec->slave_dig_outs;
Takashi Iwai51e41522011-11-03 16:54:06 +01001645 if (nums >= ARRAY_SIZE(spec->slave_dig_outs) - 1)
Takashi Iwai757899a2010-07-30 10:48:14 +02001646 break;
Takashi Iwai51e41522011-11-03 16:54:06 +01001647 spec->slave_dig_outs[nums - 1] = dig_nid;
Takashi Iwai757899a2010-07-30 10:48:14 +02001648 }
Takashi Iwai51e41522011-11-03 16:54:06 +01001649 nums++;
Takashi Iwai757899a2010-07-30 10:48:14 +02001650 }
1651
1652 if (spec->autocfg.dig_in_pin) {
Takashi Iwai01fdf182010-09-24 09:09:42 +02001653 dig_nid = codec->start_nid;
1654 for (i = 0; i < codec->num_nodes; i++, dig_nid++) {
1655 unsigned int wcaps = get_wcaps(codec, dig_nid);
1656 if (get_wcaps_type(wcaps) != AC_WID_AUD_IN)
1657 continue;
1658 if (!(wcaps & AC_WCAP_DIGITAL))
1659 continue;
1660 if (!(wcaps & AC_WCAP_CONN_LIST))
1661 continue;
1662 err = get_connection_index(codec, dig_nid,
1663 spec->autocfg.dig_in_pin);
1664 if (err >= 0) {
1665 spec->dig_in_nid = dig_nid;
1666 break;
1667 }
1668 }
Takashi Iwai757899a2010-07-30 10:48:14 +02001669 }
1670}
1671
Takashi Iwaif95474e2007-07-10 00:47:43 +02001672/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02001673 * capture mixer elements
Vincent Petryef8ef5f2008-11-23 11:31:41 +08001674 */
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001675static int alc_cap_vol_info(struct snd_kcontrol *kcontrol,
1676 struct snd_ctl_elem_info *uinfo)
1677{
1678 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1679 struct alc_spec *spec = codec->spec;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001680 unsigned long val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001681 int err;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001682
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001683 mutex_lock(&codec->control_mutex);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001684 if (spec->vol_in_capsrc)
1685 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1686 else
1687 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1688 kcontrol->private_value = val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001689 err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001690 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001691 return err;
1692}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001694static int alc_cap_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1695 unsigned int size, unsigned int __user *tlv)
1696{
1697 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1698 struct alc_spec *spec = codec->spec;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001699 unsigned long val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001700 int err;
1701
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001702 mutex_lock(&codec->control_mutex);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001703 if (spec->vol_in_capsrc)
1704 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1705 else
1706 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1707 kcontrol->private_value = val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001708 err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001709 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001710 return err;
1711}
1712
1713typedef int (*getput_call_t)(struct snd_kcontrol *kcontrol,
1714 struct snd_ctl_elem_value *ucontrol);
1715
1716static int alc_cap_getput_caller(struct snd_kcontrol *kcontrol,
1717 struct snd_ctl_elem_value *ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001718 getput_call_t func, bool check_adc_switch)
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001719{
1720 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1721 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +02001722 int i, err = 0;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001723
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001724 mutex_lock(&codec->control_mutex);
Takashi Iwai21268962011-07-07 15:01:13 +02001725 if (check_adc_switch && spec->dyn_adc_switch) {
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001726 for (i = 0; i < spec->num_adc_nids; i++) {
1727 kcontrol->private_value =
1728 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1729 3, 0, HDA_INPUT);
1730 err = func(kcontrol, ucontrol);
1731 if (err < 0)
1732 goto error;
1733 }
1734 } else {
1735 i = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001736 if (spec->vol_in_capsrc)
1737 kcontrol->private_value =
1738 HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[i],
1739 3, 0, HDA_OUTPUT);
1740 else
1741 kcontrol->private_value =
Takashi Iwai21268962011-07-07 15:01:13 +02001742 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1743 3, 0, HDA_INPUT);
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001744 err = func(kcontrol, ucontrol);
1745 }
1746 error:
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001747 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001748 return err;
1749}
1750
1751static int alc_cap_vol_get(struct snd_kcontrol *kcontrol,
1752 struct snd_ctl_elem_value *ucontrol)
1753{
1754 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001755 snd_hda_mixer_amp_volume_get, false);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001756}
1757
1758static int alc_cap_vol_put(struct snd_kcontrol *kcontrol,
1759 struct snd_ctl_elem_value *ucontrol)
1760{
1761 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001762 snd_hda_mixer_amp_volume_put, true);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001763}
1764
1765/* capture mixer elements */
1766#define alc_cap_sw_info snd_ctl_boolean_stereo_info
1767
1768static int alc_cap_sw_get(struct snd_kcontrol *kcontrol,
1769 struct snd_ctl_elem_value *ucontrol)
1770{
1771 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001772 snd_hda_mixer_amp_switch_get, false);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001773}
1774
1775static int alc_cap_sw_put(struct snd_kcontrol *kcontrol,
1776 struct snd_ctl_elem_value *ucontrol)
1777{
1778 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001779 snd_hda_mixer_amp_switch_put, true);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001780}
1781
Takashi Iwaia23b6882009-03-23 15:21:36 +01001782#define _DEFINE_CAPMIX(num) \
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001783 { \
1784 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1785 .name = "Capture Switch", \
1786 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
1787 .count = num, \
1788 .info = alc_cap_sw_info, \
1789 .get = alc_cap_sw_get, \
1790 .put = alc_cap_sw_put, \
1791 }, \
1792 { \
1793 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1794 .name = "Capture Volume", \
1795 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | \
1796 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
1797 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK), \
1798 .count = num, \
1799 .info = alc_cap_vol_info, \
1800 .get = alc_cap_vol_get, \
1801 .put = alc_cap_vol_put, \
1802 .tlv = { .c = alc_cap_vol_tlv }, \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001803 }
1804
1805#define _DEFINE_CAPSRC(num) \
Takashi Iwai3c3e9892008-10-31 17:48:56 +01001806 { \
1807 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1808 /* .name = "Capture Source", */ \
1809 .name = "Input Source", \
1810 .count = num, \
1811 .info = alc_mux_enum_info, \
1812 .get = alc_mux_enum_get, \
1813 .put = alc_mux_enum_put, \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001814 }
1815
1816#define DEFINE_CAPMIX(num) \
Takashi Iwaia9111322011-05-02 11:30:18 +02001817static const struct snd_kcontrol_new alc_capture_mixer ## num[] = { \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001818 _DEFINE_CAPMIX(num), \
1819 _DEFINE_CAPSRC(num), \
1820 { } /* end */ \
1821}
1822
1823#define DEFINE_CAPMIX_NOSRC(num) \
Takashi Iwaia9111322011-05-02 11:30:18 +02001824static const struct snd_kcontrol_new alc_capture_mixer_nosrc ## num[] = { \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001825 _DEFINE_CAPMIX(num), \
1826 { } /* end */ \
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001827}
1828
1829/* up to three ADCs */
1830DEFINE_CAPMIX(1);
1831DEFINE_CAPMIX(2);
1832DEFINE_CAPMIX(3);
Takashi Iwaia23b6882009-03-23 15:21:36 +01001833DEFINE_CAPMIX_NOSRC(1);
1834DEFINE_CAPMIX_NOSRC(2);
1835DEFINE_CAPMIX_NOSRC(3);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001836
1837/*
Takashi Iwai2134ea42008-01-10 16:53:55 +01001838 * virtual master controls
1839 */
1840
1841/*
1842 * slave controls for virtual master
1843 */
Takashi Iwaiea734962011-01-17 11:29:34 +01001844static const char * const alc_slave_vols[] = {
Takashi Iwai2134ea42008-01-10 16:53:55 +01001845 "Front Playback Volume",
1846 "Surround Playback Volume",
1847 "Center Playback Volume",
1848 "LFE Playback Volume",
1849 "Side Playback Volume",
1850 "Headphone Playback Volume",
1851 "Speaker Playback Volume",
1852 "Mono Playback Volume",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001853 "Line-Out Playback Volume",
Takashi Iwai3fe45ae2011-08-18 15:13:17 +02001854 "PCM Playback Volume",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001855 NULL,
1856};
1857
Takashi Iwaiea734962011-01-17 11:29:34 +01001858static const char * const alc_slave_sws[] = {
Takashi Iwai2134ea42008-01-10 16:53:55 +01001859 "Front Playback Switch",
1860 "Surround Playback Switch",
1861 "Center Playback Switch",
1862 "LFE Playback Switch",
1863 "Side Playback Switch",
1864 "Headphone Playback Switch",
1865 "Speaker Playback Switch",
1866 "Mono Playback Switch",
Takashi Iwaiedb54a52008-01-29 12:47:02 +01001867 "IEC958 Playback Switch",
Takashi Iwai23033b22009-12-08 12:36:52 +01001868 "Line-Out Playback Switch",
Takashi Iwai3fe45ae2011-08-18 15:13:17 +02001869 "PCM Playback Switch",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001870 NULL,
1871};
1872
1873/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001874 * build control elements
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 */
Takashi Iwai603c4012008-07-30 15:01:44 +02001876
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001877#define NID_MAPPING (-1)
1878
1879#define SUBDEV_SPEAKER_ (0 << 6)
1880#define SUBDEV_HP_ (1 << 6)
1881#define SUBDEV_LINE_ (2 << 6)
1882#define SUBDEV_SPEAKER(x) (SUBDEV_SPEAKER_ | ((x) & 0x3f))
1883#define SUBDEV_HP(x) (SUBDEV_HP_ | ((x) & 0x3f))
1884#define SUBDEV_LINE(x) (SUBDEV_LINE_ | ((x) & 0x3f))
1885
Takashi Iwai603c4012008-07-30 15:01:44 +02001886static void alc_free_kctls(struct hda_codec *codec);
1887
Takashi Iwai67d634c2009-11-16 15:35:59 +01001888#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001889/* additional beep mixers; the actual parameters are overwritten at build */
Takashi Iwaia9111322011-05-02 11:30:18 +02001890static const struct snd_kcontrol_new alc_beep_mixer[] = {
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001891 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
Jaroslav Kysela123c07a2009-10-21 14:48:23 +02001892 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001893 { } /* end */
1894};
Takashi Iwai67d634c2009-11-16 15:35:59 +01001895#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897static int alc_build_controls(struct hda_codec *codec)
1898{
1899 struct alc_spec *spec = codec->spec;
Takashi Iwai2f44f842010-06-22 11:12:32 +02001900 struct snd_kcontrol *kctl = NULL;
Takashi Iwaia9111322011-05-02 11:30:18 +02001901 const struct snd_kcontrol_new *knew;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001902 int i, j, err;
1903 unsigned int u;
1904 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906 for (i = 0; i < spec->num_mixers; i++) {
1907 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1908 if (err < 0)
1909 return err;
1910 }
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001911 if (spec->cap_mixer) {
1912 err = snd_hda_add_new_ctls(codec, spec->cap_mixer);
1913 if (err < 0)
1914 return err;
1915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 if (spec->multiout.dig_out_nid) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02001917 err = snd_hda_create_spdif_out_ctls(codec,
Stephen Warren74b654c2011-06-01 11:14:18 -06001918 spec->multiout.dig_out_nid,
Takashi Iwai9c7f8522006-06-28 15:08:22 +02001919 spec->multiout.dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if (err < 0)
1921 return err;
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001922 if (!spec->no_analog) {
1923 err = snd_hda_create_spdif_share_sw(codec,
1924 &spec->multiout);
1925 if (err < 0)
1926 return err;
1927 spec->multiout.share_spdif = 1;
1928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
1930 if (spec->dig_in_nid) {
1931 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1932 if (err < 0)
1933 return err;
1934 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001935
Takashi Iwai67d634c2009-11-16 15:35:59 +01001936#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001937 /* create beep controls if needed */
1938 if (spec->beep_amp) {
Takashi Iwaia9111322011-05-02 11:30:18 +02001939 const struct snd_kcontrol_new *knew;
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001940 for (knew = alc_beep_mixer; knew->name; knew++) {
1941 struct snd_kcontrol *kctl;
1942 kctl = snd_ctl_new1(knew, codec);
1943 if (!kctl)
1944 return -ENOMEM;
1945 kctl->private_value = spec->beep_amp;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001946 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001947 if (err < 0)
1948 return err;
1949 }
1950 }
Takashi Iwai67d634c2009-11-16 15:35:59 +01001951#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001952
Takashi Iwai2134ea42008-01-10 16:53:55 +01001953 /* if we have no master control, let's create it */
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001954 if (!spec->no_analog &&
1955 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001956 unsigned int vmaster_tlv[4];
Takashi Iwai2134ea42008-01-10 16:53:55 +01001957 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001958 HDA_OUTPUT, vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001959 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001960 vmaster_tlv, alc_slave_vols);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001961 if (err < 0)
1962 return err;
1963 }
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001964 if (!spec->no_analog &&
1965 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
Takashi Iwai2134ea42008-01-10 16:53:55 +01001966 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1967 NULL, alc_slave_sws);
1968 if (err < 0)
1969 return err;
1970 }
1971
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001972 /* assign Capture Source enums to NID */
Takashi Iwaifbe618f2010-06-11 11:24:58 +02001973 if (spec->capsrc_nids || spec->adc_nids) {
1974 kctl = snd_hda_find_mixer_ctl(codec, "Capture Source");
1975 if (!kctl)
1976 kctl = snd_hda_find_mixer_ctl(codec, "Input Source");
1977 for (i = 0; kctl && i < kctl->count; i++) {
Takashi Iwai61071592011-11-23 07:52:15 +01001978 err = snd_hda_add_nid(codec, kctl, i,
1979 get_capsrc(spec, i));
Takashi Iwaifbe618f2010-06-11 11:24:58 +02001980 if (err < 0)
1981 return err;
1982 }
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001983 }
Takashi Iwai60a6a842011-07-27 14:01:24 +02001984 if (spec->cap_mixer && spec->adc_nids) {
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001985 const char *kname = kctl ? kctl->id.name : NULL;
1986 for (knew = spec->cap_mixer; knew->name; knew++) {
1987 if (kname && strcmp(knew->name, kname) == 0)
1988 continue;
1989 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1990 for (i = 0; kctl && i < kctl->count; i++) {
1991 err = snd_hda_add_nid(codec, kctl, i,
1992 spec->adc_nids[i]);
1993 if (err < 0)
1994 return err;
1995 }
1996 }
1997 }
1998
1999 /* other nid->control mapping */
2000 for (i = 0; i < spec->num_mixers; i++) {
2001 for (knew = spec->mixers[i]; knew->name; knew++) {
2002 if (knew->iface != NID_MAPPING)
2003 continue;
2004 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
2005 if (kctl == NULL)
2006 continue;
2007 u = knew->subdevice;
2008 for (j = 0; j < 4; j++, u >>= 8) {
2009 nid = u & 0x3f;
2010 if (nid == 0)
2011 continue;
2012 switch (u & 0xc0) {
2013 case SUBDEV_SPEAKER_:
2014 nid = spec->autocfg.speaker_pins[nid];
2015 break;
2016 case SUBDEV_LINE_:
2017 nid = spec->autocfg.line_out_pins[nid];
2018 break;
2019 case SUBDEV_HP_:
2020 nid = spec->autocfg.hp_pins[nid];
2021 break;
2022 default:
2023 continue;
2024 }
2025 err = snd_hda_add_nid(codec, kctl, 0, nid);
2026 if (err < 0)
2027 return err;
2028 }
2029 u = knew->private_value;
2030 for (j = 0; j < 4; j++, u >>= 8) {
2031 nid = u & 0xff;
2032 if (nid == 0)
2033 continue;
2034 err = snd_hda_add_nid(codec, kctl, 0, nid);
2035 if (err < 0)
2036 return err;
2037 }
2038 }
2039 }
Takashi Iwaibae84e72010-03-22 08:30:20 +01002040
2041 alc_free_kctls(codec); /* no longer needed */
2042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return 0;
2044}
2045
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047/*
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002048 * Common callbacks
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002049 */
Takashi Iwai16ded522005-06-10 19:58:24 +02002050
Takashi Iwai584c0c42011-03-10 12:51:11 +01002051static void alc_init_special_input_src(struct hda_codec *codec);
2052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053static int alc_init(struct hda_codec *codec)
2054{
2055 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002056 unsigned int i;
2057
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02002058 alc_fix_pll(codec);
Takashi Iwai4a79ba32009-04-22 16:31:35 +02002059 alc_auto_init_amp(codec, spec->init_amp);
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02002060
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002061 for (i = 0; i < spec->num_init_verbs; i++)
2062 snd_hda_sequence_write(codec, spec->init_verbs[i]);
Takashi Iwai584c0c42011-03-10 12:51:11 +01002063 alc_init_special_input_src(codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002064
2065 if (spec->init_hook)
2066 spec->init_hook(codec);
2067
Takashi Iwai58701122011-01-13 15:41:45 +01002068 alc_apply_fixup(codec, ALC_FIXUP_ACT_INIT);
2069
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002070 hda_call_check_power_status(codec, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 return 0;
2072}
2073
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002074static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2075{
2076 struct alc_spec *spec = codec->spec;
2077
2078 if (spec->unsol_event)
2079 spec->unsol_event(codec, res);
2080}
2081
Takashi Iwaicb53c622007-08-10 17:21:45 +02002082#ifdef CONFIG_SND_HDA_POWER_SAVE
2083static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2084{
2085 struct alc_spec *spec = codec->spec;
2086 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2087}
2088#endif
2089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090/*
2091 * Analog playback callbacks
2092 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002093static int alc_playback_pcm_open(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002095 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
2097 struct alc_spec *spec = codec->spec;
Takashi Iwai9a081602008-02-12 18:37:26 +01002098 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2099 hinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100}
2101
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002102static int alc_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 struct hda_codec *codec,
2104 unsigned int stream_tag,
2105 unsigned int format,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002106 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107{
2108 struct alc_spec *spec = codec->spec;
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002109 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2110 stream_tag, format, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111}
2112
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002113static int alc_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002115 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116{
2117 struct alc_spec *spec = codec->spec;
2118 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2119}
2120
2121/*
2122 * Digital out
2123 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002124static int alc_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002126 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127{
2128 struct alc_spec *spec = codec->spec;
2129 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2130}
2131
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002132static int alc_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002133 struct hda_codec *codec,
2134 unsigned int stream_tag,
2135 unsigned int format,
2136 struct snd_pcm_substream *substream)
2137{
2138 struct alc_spec *spec = codec->spec;
2139 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2140 stream_tag, format, substream);
2141}
2142
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002143static int alc_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
Takashi Iwai9b5f12e2009-02-13 11:47:37 +01002144 struct hda_codec *codec,
2145 struct snd_pcm_substream *substream)
2146{
2147 struct alc_spec *spec = codec->spec;
2148 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2149}
2150
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002151static int alc_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002153 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154{
2155 struct alc_spec *spec = codec->spec;
2156 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2157}
2158
2159/*
2160 * Analog capture
2161 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002162static int alc_alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 struct hda_codec *codec,
2164 unsigned int stream_tag,
2165 unsigned int format,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002166 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167{
2168 struct alc_spec *spec = codec->spec;
2169
Takashi Iwai63300792008-01-24 15:31:36 +01002170 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 stream_tag, 0, format);
2172 return 0;
2173}
2174
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002175static int alc_alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002177 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
2179 struct alc_spec *spec = codec->spec;
2180
Takashi Iwai888afa12008-03-18 09:57:50 +01002181 snd_hda_codec_cleanup_stream(codec,
2182 spec->adc_nids[substream->number + 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 return 0;
2184}
2185
Takashi Iwai840b64c2010-07-13 22:49:01 +02002186/* analog capture with dynamic dual-adc changes */
Takashi Iwai21268962011-07-07 15:01:13 +02002187static int dyn_adc_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai840b64c2010-07-13 22:49:01 +02002188 struct hda_codec *codec,
2189 unsigned int stream_tag,
2190 unsigned int format,
2191 struct snd_pcm_substream *substream)
2192{
2193 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +02002194 spec->cur_adc = spec->adc_nids[spec->dyn_adc_idx[spec->cur_mux[0]]];
Takashi Iwai840b64c2010-07-13 22:49:01 +02002195 spec->cur_adc_stream_tag = stream_tag;
2196 spec->cur_adc_format = format;
2197 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
2198 return 0;
2199}
2200
Takashi Iwai21268962011-07-07 15:01:13 +02002201static int dyn_adc_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
Takashi Iwai840b64c2010-07-13 22:49:01 +02002202 struct hda_codec *codec,
2203 struct snd_pcm_substream *substream)
2204{
2205 struct alc_spec *spec = codec->spec;
2206 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
2207 spec->cur_adc = 0;
2208 return 0;
2209}
2210
Takashi Iwai21268962011-07-07 15:01:13 +02002211static const struct hda_pcm_stream dyn_adc_pcm_analog_capture = {
Takashi Iwai840b64c2010-07-13 22:49:01 +02002212 .substreams = 1,
2213 .channels_min = 2,
2214 .channels_max = 2,
2215 .nid = 0, /* fill later */
2216 .ops = {
Takashi Iwai21268962011-07-07 15:01:13 +02002217 .prepare = dyn_adc_capture_pcm_prepare,
2218 .cleanup = dyn_adc_capture_pcm_cleanup
Takashi Iwai840b64c2010-07-13 22:49:01 +02002219 },
2220};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
2222/*
2223 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002224static const struct hda_pcm_stream alc_pcm_analog_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 .substreams = 1,
2226 .channels_min = 2,
2227 .channels_max = 8,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002228 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002230 .open = alc_playback_pcm_open,
2231 .prepare = alc_playback_pcm_prepare,
2232 .cleanup = alc_playback_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 },
2234};
2235
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002236static const struct hda_pcm_stream alc_pcm_analog_capture = {
Takashi Iwai63300792008-01-24 15:31:36 +01002237 .substreams = 1,
2238 .channels_min = 2,
2239 .channels_max = 2,
2240 /* NID is set in alc_build_pcms */
2241};
2242
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002243static const struct hda_pcm_stream alc_pcm_analog_alt_playback = {
Takashi Iwai63300792008-01-24 15:31:36 +01002244 .substreams = 1,
2245 .channels_min = 2,
2246 .channels_max = 2,
2247 /* NID is set in alc_build_pcms */
2248};
2249
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002250static const struct hda_pcm_stream alc_pcm_analog_alt_capture = {
Takashi Iwai63300792008-01-24 15:31:36 +01002251 .substreams = 2, /* can be overridden */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 .channels_min = 2,
2253 .channels_max = 2,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002254 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002256 .prepare = alc_alt_capture_pcm_prepare,
2257 .cleanup = alc_alt_capture_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 },
2259};
2260
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002261static const struct hda_pcm_stream alc_pcm_digital_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 .substreams = 1,
2263 .channels_min = 2,
2264 .channels_max = 2,
2265 /* NID is set in alc_build_pcms */
2266 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002267 .open = alc_dig_playback_pcm_open,
2268 .close = alc_dig_playback_pcm_close,
2269 .prepare = alc_dig_playback_pcm_prepare,
2270 .cleanup = alc_dig_playback_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 },
2272};
2273
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002274static const struct hda_pcm_stream alc_pcm_digital_capture = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 .substreams = 1,
2276 .channels_min = 2,
2277 .channels_max = 2,
2278 /* NID is set in alc_build_pcms */
2279};
2280
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002281/* Used by alc_build_pcms to flag that a PCM has no playback stream */
Takashi Iwaia9111322011-05-02 11:30:18 +02002282static const struct hda_pcm_stream alc_pcm_null_stream = {
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002283 .substreams = 0,
2284 .channels_min = 0,
2285 .channels_max = 0,
2286};
2287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288static int alc_build_pcms(struct hda_codec *codec)
2289{
2290 struct alc_spec *spec = codec->spec;
2291 struct hda_pcm *info = spec->pcm_rec;
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002292 const struct hda_pcm_stream *p;
Takashi Iwai1fa17572011-11-02 21:30:51 +01002293 bool have_multi_adcs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 int i;
2295
2296 codec->num_pcms = 1;
2297 codec->pcm_info = info;
2298
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002299 if (spec->no_analog)
2300 goto skip_analog;
2301
Takashi Iwai812a2cc2009-05-16 10:00:49 +02002302 snprintf(spec->stream_name_analog, sizeof(spec->stream_name_analog),
2303 "%s Analog", codec->chip_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 info->name = spec->stream_name_analog;
Kailang Yang274693f2009-12-03 10:07:50 +01002305
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002306 if (spec->multiout.dac_nids > 0) {
2307 p = spec->stream_analog_playback;
2308 if (!p)
2309 p = &alc_pcm_analog_playback;
2310 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002311 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2312 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002313 if (spec->adc_nids) {
2314 p = spec->stream_analog_capture;
Takashi Iwai21268962011-07-07 15:01:13 +02002315 if (!p) {
2316 if (spec->dyn_adc_switch)
2317 p = &dyn_adc_pcm_analog_capture;
2318 else
2319 p = &alc_pcm_analog_capture;
2320 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002321 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002322 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
Takashi Iwai4a471b72005-12-07 13:56:29 +01002325 if (spec->channel_mode) {
2326 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2327 for (i = 0; i < spec->num_channel_mode; i++) {
2328 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2329 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 }
2332 }
2333
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002334 skip_analog:
Takashi Iwaie08a0072006-09-07 17:52:14 +02002335 /* SPDIF for stream index #1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
Takashi Iwai812a2cc2009-05-16 10:00:49 +02002337 snprintf(spec->stream_name_digital,
2338 sizeof(spec->stream_name_digital),
2339 "%s Digital", codec->chip_name);
Takashi Iwaie08a0072006-09-07 17:52:14 +02002340 codec->num_pcms = 2;
Wu Fengguangb25c9da2009-02-06 15:02:27 +08002341 codec->slave_dig_outs = spec->multiout.slave_dig_outs;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002342 info = spec->pcm_rec + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 info->name = spec->stream_name_digital;
Takashi Iwai8c441982009-01-20 18:30:20 +01002344 if (spec->dig_out_type)
2345 info->pcm_type = spec->dig_out_type;
2346 else
2347 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002348 if (spec->multiout.dig_out_nid) {
2349 p = spec->stream_digital_playback;
2350 if (!p)
2351 p = &alc_pcm_digital_playback;
2352 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2354 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002355 if (spec->dig_in_nid) {
2356 p = spec->stream_digital_capture;
2357 if (!p)
2358 p = &alc_pcm_digital_capture;
2359 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2361 }
Takashi Iwai963f8032008-08-11 10:04:40 +02002362 /* FIXME: do we need this for all Realtek codec models? */
2363 codec->spdif_status_reset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 }
2365
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002366 if (spec->no_analog)
2367 return 0;
2368
Takashi Iwaie08a0072006-09-07 17:52:14 +02002369 /* If the use of more than one ADC is requested for the current
2370 * model, configure a second analog capture-only PCM.
2371 */
Takashi Iwai1fa17572011-11-02 21:30:51 +01002372 have_multi_adcs = (spec->num_adc_nids > 1) &&
2373 !spec->dyn_adc_switch && !spec->auto_mic &&
2374 (!spec->input_mux || spec->input_mux->num_items > 1);
Takashi Iwaie08a0072006-09-07 17:52:14 +02002375 /* Additional Analaog capture for index #2 */
Takashi Iwai1fa17572011-11-02 21:30:51 +01002376 if (spec->alt_dac_nid || have_multi_adcs) {
Takashi Iwaie08a0072006-09-07 17:52:14 +02002377 codec->num_pcms = 3;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002378 info = spec->pcm_rec + 2;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002379 info->name = spec->stream_name_analog;
Takashi Iwai63300792008-01-24 15:31:36 +01002380 if (spec->alt_dac_nid) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002381 p = spec->stream_analog_alt_playback;
2382 if (!p)
2383 p = &alc_pcm_analog_alt_playback;
2384 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Takashi Iwai63300792008-01-24 15:31:36 +01002385 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2386 spec->alt_dac_nid;
2387 } else {
2388 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2389 alc_pcm_null_stream;
2390 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2391 }
Takashi Iwai1fa17572011-11-02 21:30:51 +01002392 if (have_multi_adcs) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002393 p = spec->stream_analog_alt_capture;
2394 if (!p)
2395 p = &alc_pcm_analog_alt_capture;
2396 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Takashi Iwai63300792008-01-24 15:31:36 +01002397 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
2398 spec->adc_nids[1];
2399 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
2400 spec->num_adc_nids - 1;
2401 } else {
2402 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2403 alc_pcm_null_stream;
2404 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002405 }
2406 }
2407
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 return 0;
2409}
2410
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002411static inline void alc_shutup(struct hda_codec *codec)
2412{
Takashi Iwai1c716152011-04-07 10:37:16 +02002413 struct alc_spec *spec = codec->spec;
2414
2415 if (spec && spec->shutup)
2416 spec->shutup(codec);
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002417 snd_hda_shutup_pins(codec);
2418}
2419
Takashi Iwai603c4012008-07-30 15:01:44 +02002420static void alc_free_kctls(struct hda_codec *codec)
2421{
2422 struct alc_spec *spec = codec->spec;
2423
2424 if (spec->kctls.list) {
2425 struct snd_kcontrol_new *kctl = spec->kctls.list;
2426 int i;
2427 for (i = 0; i < spec->kctls.used; i++)
2428 kfree(kctl[i].name);
2429 }
2430 snd_array_free(&spec->kctls);
2431}
2432
Takashi Iwai23c09b02011-08-19 09:05:35 +02002433static void alc_free_bind_ctls(struct hda_codec *codec)
2434{
2435 struct alc_spec *spec = codec->spec;
2436 if (spec->bind_ctls.list) {
2437 struct hda_bind_ctls **ctl = spec->bind_ctls.list;
2438 int i;
2439 for (i = 0; i < spec->bind_ctls.used; i++)
2440 kfree(ctl[i]);
2441 }
2442 snd_array_free(&spec->bind_ctls);
2443}
2444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445static void alc_free(struct hda_codec *codec)
2446{
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002447 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002448
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002449 if (!spec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002450 return;
2451
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002452 alc_shutup(codec);
Takashi Iwaicd372fb2011-03-03 14:40:14 +01002453 snd_hda_input_jack_free(codec);
Takashi Iwai603c4012008-07-30 15:01:44 +02002454 alc_free_kctls(codec);
Takashi Iwai23c09b02011-08-19 09:05:35 +02002455 alc_free_bind_ctls(codec);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002456 kfree(spec);
Kusanagi Kouichi680cd532009-02-05 00:00:58 +09002457 snd_hda_detach_beep_device(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458}
2459
Hector Martinf5de24b2009-12-20 22:51:31 +01002460#ifdef CONFIG_SND_HDA_POWER_SAVE
Daniel T Chenc97259d2009-12-27 18:52:08 -05002461static void alc_power_eapd(struct hda_codec *codec)
2462{
Takashi Iwai691f1fc2011-04-07 10:31:43 +02002463 alc_auto_setup_eapd(codec, false);
Daniel T Chenc97259d2009-12-27 18:52:08 -05002464}
2465
Hector Martinf5de24b2009-12-20 22:51:31 +01002466static int alc_suspend(struct hda_codec *codec, pm_message_t state)
2467{
2468 struct alc_spec *spec = codec->spec;
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002469 alc_shutup(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +01002470 if (spec && spec->power_hook)
Daniel T Chenc97259d2009-12-27 18:52:08 -05002471 spec->power_hook(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +01002472 return 0;
2473}
2474#endif
2475
Takashi Iwai2a439522011-07-26 09:52:50 +02002476#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +01002477static int alc_resume(struct hda_codec *codec)
2478{
Takashi Iwai1c716152011-04-07 10:37:16 +02002479 msleep(150); /* to avoid pop noise */
Takashi Iwaie044c392008-10-27 16:56:24 +01002480 codec->patch_ops.init(codec);
2481 snd_hda_codec_resume_amp(codec);
2482 snd_hda_codec_resume_cache(codec);
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002483 hda_call_check_power_status(codec, 0x01);
Takashi Iwaie044c392008-10-27 16:56:24 +01002484 return 0;
2485}
Takashi Iwaie044c392008-10-27 16:56:24 +01002486#endif
2487
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488/*
2489 */
Takashi Iwaia9111322011-05-02 11:30:18 +02002490static const struct hda_codec_ops alc_patch_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 .build_controls = alc_build_controls,
2492 .build_pcms = alc_build_pcms,
2493 .init = alc_init,
2494 .free = alc_free,
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002495 .unsol_event = alc_unsol_event,
Takashi Iwai2a439522011-07-26 09:52:50 +02002496#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +01002497 .resume = alc_resume,
2498#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +02002499#ifdef CONFIG_SND_HDA_POWER_SAVE
Hector Martinf5de24b2009-12-20 22:51:31 +01002500 .suspend = alc_suspend,
Takashi Iwaicb53c622007-08-10 17:21:45 +02002501 .check_power_status = alc_check_power_status,
2502#endif
Daniel T Chenc97259d2009-12-27 18:52:08 -05002503 .reboot_notify = alc_shutup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504};
2505
Kailang Yangc027ddc2010-03-19 11:33:06 +01002506/* replace the codec chip_name with the given string */
2507static int alc_codec_rename(struct hda_codec *codec, const char *name)
2508{
2509 kfree(codec->chip_name);
2510 codec->chip_name = kstrdup(name, GFP_KERNEL);
2511 if (!codec->chip_name) {
2512 alc_free(codec);
2513 return -ENOMEM;
2514 }
2515 return 0;
2516}
2517
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002518/*
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002519 * Rename codecs appropriately from COEF value
2520 */
2521struct alc_codec_rename_table {
2522 unsigned int vendor_id;
2523 unsigned short coef_mask;
2524 unsigned short coef_bits;
2525 const char *name;
2526};
2527
2528static struct alc_codec_rename_table rename_tbl[] = {
2529 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
2530 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
2531 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
2532 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
2533 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
2534 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
2535 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
2536 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
2537 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
2538 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
2539 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
2540 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
2541 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
2542 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
2543 { } /* terminator */
2544};
2545
2546static int alc_codec_rename_from_preset(struct hda_codec *codec)
2547{
2548 const struct alc_codec_rename_table *p;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002549
2550 for (p = rename_tbl; p->vendor_id; p++) {
2551 if (p->vendor_id != codec->vendor_id)
2552 continue;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02002553 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002554 return alc_codec_rename(codec, p->name);
2555 }
2556 return 0;
2557}
2558
2559/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002560 * Automatic parse of I/O pins from the BIOS configuration
2561 */
2562
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002563enum {
2564 ALC_CTL_WIDGET_VOL,
2565 ALC_CTL_WIDGET_MUTE,
2566 ALC_CTL_BIND_MUTE,
Takashi Iwai23c09b02011-08-19 09:05:35 +02002567 ALC_CTL_BIND_VOL,
2568 ALC_CTL_BIND_SW,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002569};
Takashi Iwai1d045db2011-07-07 18:23:21 +02002570static const struct snd_kcontrol_new alc_control_templates[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002571 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2572 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Takashi Iwai985be542005-11-02 18:26:49 +01002573 HDA_BIND_MUTE(NULL, 0, 0, 0),
Takashi Iwai23c09b02011-08-19 09:05:35 +02002574 HDA_BIND_VOL(NULL, 0),
2575 HDA_BIND_SW(NULL, 0),
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002576};
2577
2578/* add dynamic controls */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002579static int add_control(struct alc_spec *spec, int type, const char *name,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002580 int cidx, unsigned long val)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002581{
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002582 struct snd_kcontrol_new *knew;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002583
Takashi Iwaice764ab2011-04-27 16:35:23 +02002584 knew = alc_kcontrol_new(spec);
Takashi Iwai603c4012008-07-30 15:01:44 +02002585 if (!knew)
2586 return -ENOMEM;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002587 *knew = alc_control_templates[type];
Paulo Marques543537b2005-06-23 00:09:02 -07002588 knew->name = kstrdup(name, GFP_KERNEL);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002589 if (!knew->name)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002590 return -ENOMEM;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002591 knew->index = cidx;
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002592 if (get_amp_nid_(val))
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002593 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002594 knew->private_value = val;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002595 return 0;
2596}
2597
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002598static int add_control_with_pfx(struct alc_spec *spec, int type,
2599 const char *pfx, const char *dir,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002600 const char *sfx, int cidx, unsigned long val)
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002601{
2602 char name[32];
2603 snprintf(name, sizeof(name), "%s %s %s", pfx, dir, sfx);
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002604 return add_control(spec, type, name, cidx, val);
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002605}
2606
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002607#define add_pb_vol_ctrl(spec, type, pfx, val) \
2608 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val)
2609#define add_pb_sw_ctrl(spec, type, pfx, val) \
2610 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val)
2611#define __add_pb_vol_ctrl(spec, type, pfx, cidx, val) \
2612 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val)
2613#define __add_pb_sw_ctrl(spec, type, pfx, cidx, val) \
2614 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val)
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002615
Takashi Iwai23c09b02011-08-19 09:05:35 +02002616static const char * const channel_name[4] = {
2617 "Front", "Surround", "CLFE", "Side"
2618};
2619
Takashi Iwai6843ca12011-06-24 11:03:58 +02002620static const char *alc_get_line_out_pfx(struct alc_spec *spec, int ch,
2621 bool can_be_master, int *index)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002622{
Takashi Iwaice764ab2011-04-27 16:35:23 +02002623 struct auto_pin_cfg *cfg = &spec->autocfg;
2624
Takashi Iwai6843ca12011-06-24 11:03:58 +02002625 *index = 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02002626 if (cfg->line_outs == 1 && !spec->multi_ios &&
2627 !cfg->hp_outs && !cfg->speaker_outs && can_be_master)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002628 return "Master";
2629
2630 switch (cfg->line_out_type) {
2631 case AUTO_PIN_SPEAKER_OUT:
David Henningssonebbeb3d2011-03-04 14:08:30 +01002632 if (cfg->line_outs == 1)
2633 return "Speaker";
Takashi Iwaifbabc242011-12-07 17:14:20 +01002634 if (cfg->line_outs == 2)
2635 return ch ? "Bass Speaker" : "Speaker";
David Henningssonebbeb3d2011-03-04 14:08:30 +01002636 break;
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002637 case AUTO_PIN_HP_OUT:
Takashi Iwai6843ca12011-06-24 11:03:58 +02002638 /* for multi-io case, only the primary out */
2639 if (ch && spec->multi_ios)
2640 break;
2641 *index = ch;
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002642 return "Headphone";
2643 default:
Takashi Iwaice764ab2011-04-27 16:35:23 +02002644 if (cfg->line_outs == 1 && !spec->multi_ios)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002645 return "PCM";
2646 break;
2647 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02002648 if (snd_BUG_ON(ch >= ARRAY_SIZE(channel_name)))
2649 return "PCM";
2650
2651 return channel_name[ch];
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002652}
2653
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002654/* create input playback/capture controls for the given pin */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002655static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002656 const char *ctlname, int ctlidx,
Kailang Yangdf694da2005-12-05 19:42:22 +01002657 int idx, hda_nid_t mix_nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002658{
Kailang Yangdf694da2005-12-05 19:42:22 +01002659 int err;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002660
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002661 err = __add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, 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 Iwai66ceeb62010-08-30 13:05:52 +02002665 err = __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, ctlidx,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002666 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2667 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002668 return err;
2669 return 0;
2670}
2671
Takashi Iwai05f5f472009-08-25 13:10:18 +02002672static int alc_is_input_pin(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002673{
Takashi Iwai05f5f472009-08-25 13:10:18 +02002674 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2675 return (pincap & AC_PINCAP_IN) != 0;
2676}
2677
Takashi Iwai1d045db2011-07-07 18:23:21 +02002678/* Parse the codec tree and retrieve ADCs and corresponding capsrc MUXs */
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002679static int alc_auto_fill_adc_caps(struct hda_codec *codec)
Takashi Iwaib7821702011-07-06 15:12:46 +02002680{
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002681 struct alc_spec *spec = codec->spec;
Takashi Iwaib7821702011-07-06 15:12:46 +02002682 hda_nid_t nid;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002683 hda_nid_t *adc_nids = spec->private_adc_nids;
2684 hda_nid_t *cap_nids = spec->private_capsrc_nids;
2685 int max_nums = ARRAY_SIZE(spec->private_adc_nids);
Takashi Iwaib7821702011-07-06 15:12:46 +02002686 int i, nums = 0;
2687
2688 nid = codec->start_nid;
2689 for (i = 0; i < codec->num_nodes; i++, nid++) {
2690 hda_nid_t src;
2691 const hda_nid_t *list;
2692 unsigned int caps = get_wcaps(codec, nid);
2693 int type = get_wcaps_type(caps);
2694
2695 if (type != AC_WID_AUD_IN || (caps & AC_WCAP_DIGITAL))
2696 continue;
2697 adc_nids[nums] = nid;
2698 cap_nids[nums] = nid;
2699 src = nid;
2700 for (;;) {
2701 int n;
2702 type = get_wcaps_type(get_wcaps(codec, src));
2703 if (type == AC_WID_PIN)
2704 break;
2705 if (type == AC_WID_AUD_SEL) {
2706 cap_nids[nums] = src;
2707 break;
2708 }
2709 n = snd_hda_get_conn_list(codec, src, &list);
2710 if (n > 1) {
2711 cap_nids[nums] = src;
2712 break;
2713 } else if (n != 1)
2714 break;
2715 src = *list;
2716 }
2717 if (++nums >= max_nums)
2718 break;
2719 }
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002720 spec->adc_nids = spec->private_adc_nids;
Takashi Iwai21268962011-07-07 15:01:13 +02002721 spec->capsrc_nids = spec->private_capsrc_nids;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002722 spec->num_adc_nids = nums;
Takashi Iwaib7821702011-07-06 15:12:46 +02002723 return nums;
2724}
2725
Takashi Iwai05f5f472009-08-25 13:10:18 +02002726/* create playback/capture controls for input pins */
Takashi Iwaib7821702011-07-06 15:12:46 +02002727static int alc_auto_create_input_ctls(struct hda_codec *codec)
Takashi Iwai05f5f472009-08-25 13:10:18 +02002728{
2729 struct alc_spec *spec = codec->spec;
Takashi Iwaib7821702011-07-06 15:12:46 +02002730 const struct auto_pin_cfg *cfg = &spec->autocfg;
2731 hda_nid_t mixer = spec->mixer_nid;
Herton Ronaldo Krzesinski61b9b9b2009-01-28 09:16:33 -02002732 struct hda_input_mux *imux = &spec->private_imux[0];
Takashi Iwaib7821702011-07-06 15:12:46 +02002733 int num_adcs;
Takashi Iwaib7821702011-07-06 15:12:46 +02002734 int i, c, err, idx, type_idx = 0;
David Henningsson5322bf22011-01-05 11:03:56 +01002735 const char *prev_label = NULL;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002736
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002737 num_adcs = alc_auto_fill_adc_caps(codec);
Takashi Iwaib7821702011-07-06 15:12:46 +02002738 if (num_adcs < 0)
2739 return 0;
2740
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002741 for (i = 0; i < cfg->num_inputs; i++) {
Takashi Iwai05f5f472009-08-25 13:10:18 +02002742 hda_nid_t pin;
Takashi Iwai10a20af2010-09-09 16:28:02 +02002743 const char *label;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002744
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002745 pin = cfg->inputs[i].pin;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002746 if (!alc_is_input_pin(codec, pin))
2747 continue;
2748
David Henningsson5322bf22011-01-05 11:03:56 +01002749 label = hda_get_autocfg_input_label(codec, cfg, i);
2750 if (prev_label && !strcmp(label, prev_label))
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002751 type_idx++;
2752 else
2753 type_idx = 0;
David Henningsson5322bf22011-01-05 11:03:56 +01002754 prev_label = label;
2755
Takashi Iwai05f5f472009-08-25 13:10:18 +02002756 if (mixer) {
2757 idx = get_connection_index(codec, mixer, pin);
2758 if (idx >= 0) {
2759 err = new_analog_input(spec, pin,
Takashi Iwai10a20af2010-09-09 16:28:02 +02002760 label, type_idx,
2761 idx, mixer);
Takashi Iwai05f5f472009-08-25 13:10:18 +02002762 if (err < 0)
2763 return err;
2764 }
2765 }
2766
Takashi Iwaib7821702011-07-06 15:12:46 +02002767 for (c = 0; c < num_adcs; c++) {
Takashi Iwai61071592011-11-23 07:52:15 +01002768 hda_nid_t cap = get_capsrc(spec, c);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002769 idx = get_connection_index(codec, cap, pin);
Takashi Iwaib7821702011-07-06 15:12:46 +02002770 if (idx >= 0) {
Takashi Iwai21268962011-07-07 15:01:13 +02002771 spec->imux_pins[imux->num_items] = pin;
Takashi Iwaib7821702011-07-06 15:12:46 +02002772 snd_hda_add_imux_item(imux, label, idx, NULL);
2773 break;
2774 }
2775 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002776 }
Takashi Iwai21268962011-07-07 15:01:13 +02002777
2778 spec->num_mux_defs = 1;
2779 spec->input_mux = imux;
2780
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002781 return 0;
2782}
2783
Takashi Iwaif6c7e542008-02-12 18:32:23 +01002784static void alc_set_pin_output(struct hda_codec *codec, hda_nid_t nid,
2785 unsigned int pin_type)
2786{
2787 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2788 pin_type);
2789 /* unmute pin */
Takashi Iwai44c02402011-07-08 15:14:19 +02002790 if (nid_has_mute(codec, nid, HDA_OUTPUT))
2791 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaid260cdf2008-02-13 17:19:35 +01002792 AMP_OUT_UNMUTE);
Takashi Iwaif6c7e542008-02-12 18:32:23 +01002793}
2794
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02002795static int get_pin_type(int line_out_type)
2796{
2797 if (line_out_type == AUTO_PIN_HP_OUT)
2798 return PIN_HP;
2799 else
2800 return PIN_OUT;
2801}
2802
Takashi Iwai0a7f5322011-07-06 15:15:12 +02002803static void alc_auto_init_analog_input(struct hda_codec *codec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002804{
2805 struct alc_spec *spec = codec->spec;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002806 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002807 int i;
2808
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002809 for (i = 0; i < cfg->num_inputs; i++) {
2810 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002811 if (alc_is_input_pin(codec, nid)) {
Takashi Iwai30ea0982010-09-16 18:47:56 +02002812 alc_set_input_pin(codec, nid, cfg->inputs[i].type);
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002813 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002814 snd_hda_codec_write(codec, nid, 0,
2815 AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002816 AMP_OUT_MUTE);
2817 }
2818 }
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002819
2820 /* mute all loopback inputs */
2821 if (spec->mixer_nid) {
2822 int nums = snd_hda_get_conn_list(codec, spec->mixer_nid, NULL);
2823 for (i = 0; i < nums; i++)
2824 snd_hda_codec_write(codec, spec->mixer_nid, 0,
2825 AC_VERB_SET_AMP_GAIN_MUTE,
2826 AMP_IN_MUTE(i));
2827 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002828}
2829
Takashi Iwai7085ec12009-10-02 09:03:58 +02002830/* convert from MIX nid to DAC */
Takashi Iwai604401a2011-04-27 15:14:23 +02002831static hda_nid_t alc_auto_mix_to_dac(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002832{
Takashi Iwai604401a2011-04-27 15:14:23 +02002833 hda_nid_t list[5];
Takashi Iwai1304ac82011-04-06 15:16:21 +02002834 int i, num;
2835
Takashi Iwaiafcd5512011-07-08 11:07:59 +02002836 if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_AUD_OUT)
2837 return nid;
Takashi Iwai1304ac82011-04-06 15:16:21 +02002838 num = snd_hda_get_connections(codec, nid, list, ARRAY_SIZE(list));
2839 for (i = 0; i < num; i++) {
2840 if (get_wcaps_type(get_wcaps(codec, list[i])) == AC_WID_AUD_OUT)
2841 return list[i];
2842 }
2843 return 0;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002844}
2845
Takashi Iwai604401a2011-04-27 15:14:23 +02002846/* go down to the selector widget before the mixer */
2847static hda_nid_t alc_go_down_to_selector(struct hda_codec *codec, hda_nid_t pin)
2848{
2849 hda_nid_t srcs[5];
2850 int num = snd_hda_get_connections(codec, pin, srcs,
2851 ARRAY_SIZE(srcs));
2852 if (num != 1 ||
2853 get_wcaps_type(get_wcaps(codec, srcs[0])) != AC_WID_AUD_SEL)
2854 return pin;
2855 return srcs[0];
2856}
2857
Takashi Iwai7085ec12009-10-02 09:03:58 +02002858/* get MIX nid connected to the given pin targeted to DAC */
Takashi Iwai604401a2011-04-27 15:14:23 +02002859static hda_nid_t alc_auto_dac_to_mix(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai7085ec12009-10-02 09:03:58 +02002860 hda_nid_t dac)
2861{
David Henningssoncc1c4522010-11-24 14:17:47 +01002862 hda_nid_t mix[5];
Takashi Iwai7085ec12009-10-02 09:03:58 +02002863 int i, num;
2864
Takashi Iwai604401a2011-04-27 15:14:23 +02002865 pin = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002866 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2867 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02002868 if (alc_auto_mix_to_dac(codec, mix[i]) == dac)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002869 return mix[i];
2870 }
2871 return 0;
2872}
2873
Takashi Iwaice764ab2011-04-27 16:35:23 +02002874/* select the connection from pin to DAC if needed */
2875static int alc_auto_select_dac(struct hda_codec *codec, hda_nid_t pin,
2876 hda_nid_t dac)
2877{
2878 hda_nid_t mix[5];
2879 int i, num;
2880
2881 pin = alc_go_down_to_selector(codec, pin);
2882 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2883 if (num < 2)
2884 return 0;
2885 for (i = 0; i < num; i++) {
2886 if (alc_auto_mix_to_dac(codec, mix[i]) == dac) {
2887 snd_hda_codec_update_cache(codec, pin, 0,
2888 AC_VERB_SET_CONNECT_SEL, i);
2889 return 0;
2890 }
2891 }
2892 return 0;
2893}
2894
Takashi Iwai7085ec12009-10-02 09:03:58 +02002895/* look for an empty DAC slot */
Takashi Iwai604401a2011-04-27 15:14:23 +02002896static hda_nid_t alc_auto_look_for_dac(struct hda_codec *codec, hda_nid_t pin)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002897{
2898 struct alc_spec *spec = codec->spec;
2899 hda_nid_t srcs[5];
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002900 int i, num;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002901
Takashi Iwai604401a2011-04-27 15:14:23 +02002902 pin = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002903 num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs));
Takashi Iwai7085ec12009-10-02 09:03:58 +02002904 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02002905 hda_nid_t nid = alc_auto_mix_to_dac(codec, srcs[i]);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002906 if (!nid)
2907 continue;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002908 if (found_in_nid_list(nid, spec->multiout.dac_nids,
Takashi Iwai0a34b422011-12-07 17:20:30 +01002909 ARRAY_SIZE(spec->private_dac_nids)))
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002910 continue;
Takashi Iwaic2674682011-08-24 17:57:44 +02002911 if (found_in_nid_list(nid, spec->multiout.hp_out_nid,
2912 ARRAY_SIZE(spec->multiout.hp_out_nid)))
2913 continue;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002914 if (found_in_nid_list(nid, spec->multiout.extra_out_nid,
2915 ARRAY_SIZE(spec->multiout.extra_out_nid)))
2916 continue;
2917 return nid;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002918 }
2919 return 0;
2920}
2921
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002922static hda_nid_t get_dac_if_single(struct hda_codec *codec, hda_nid_t pin)
2923{
2924 hda_nid_t sel = alc_go_down_to_selector(codec, pin);
2925 if (snd_hda_get_conn_list(codec, sel, NULL) == 1)
2926 return alc_auto_look_for_dac(codec, pin);
2927 return 0;
2928}
2929
Takashi Iwai0a34b422011-12-07 17:20:30 +01002930/* return 0 if no possible DAC is found, 1 if one or more found */
Takashi Iwaic2674682011-08-24 17:57:44 +02002931static int alc_auto_fill_extra_dacs(struct hda_codec *codec, int num_outs,
2932 const hda_nid_t *pins, hda_nid_t *dacs)
2933{
2934 int i;
2935
2936 if (num_outs && !dacs[0]) {
2937 dacs[0] = alc_auto_look_for_dac(codec, pins[0]);
2938 if (!dacs[0])
2939 return 0;
2940 }
2941
2942 for (i = 1; i < num_outs; i++)
2943 dacs[i] = get_dac_if_single(codec, pins[i]);
2944 for (i = 1; i < num_outs; i++) {
2945 if (!dacs[i])
2946 dacs[i] = alc_auto_look_for_dac(codec, pins[i]);
2947 }
Takashi Iwai0a34b422011-12-07 17:20:30 +01002948 return 1;
Takashi Iwaic2674682011-08-24 17:57:44 +02002949}
2950
2951static int alc_auto_fill_multi_ios(struct hda_codec *codec,
2952 unsigned int location);
2953
Takashi Iwai7085ec12009-10-02 09:03:58 +02002954/* fill in the dac_nids table from the parsed pin configuration */
Takashi Iwai343a04b2011-07-06 14:28:39 +02002955static int alc_auto_fill_dac_nids(struct hda_codec *codec)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002956{
2957 struct alc_spec *spec = codec->spec;
Takashi Iwai0a34b422011-12-07 17:20:30 +01002958 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai350434e2011-06-30 21:29:12 +02002959 bool redone = false;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002960 int i;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002961
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002962 again:
Takashi Iwai8f398ae2011-07-23 18:57:11 +02002963 /* set num_dacs once to full for alc_auto_look_for_dac() */
2964 spec->multiout.num_dacs = cfg->line_outs;
Takashi Iwaie23832a2011-08-23 18:16:56 +02002965 spec->multiout.hp_out_nid[0] = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002966 spec->multiout.extra_out_nid[0] = 0;
2967 memset(spec->private_dac_nids, 0, sizeof(spec->private_dac_nids));
2968 spec->multiout.dac_nids = spec->private_dac_nids;
Takashi Iwai0a34b422011-12-07 17:20:30 +01002969 spec->multi_ios = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002970
2971 /* fill hard-wired DACs first */
2972 if (!redone) {
2973 for (i = 0; i < cfg->line_outs; i++)
2974 spec->private_dac_nids[i] =
2975 get_dac_if_single(codec, cfg->line_out_pins[i]);
2976 if (cfg->hp_outs)
Takashi Iwaie23832a2011-08-23 18:16:56 +02002977 spec->multiout.hp_out_nid[0] =
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002978 get_dac_if_single(codec, cfg->hp_pins[0]);
2979 if (cfg->speaker_outs)
2980 spec->multiout.extra_out_nid[0] =
2981 get_dac_if_single(codec, cfg->speaker_pins[0]);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002982 }
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002983
2984 for (i = 0; i < cfg->line_outs; i++) {
2985 hda_nid_t pin = cfg->line_out_pins[i];
2986 if (spec->private_dac_nids[i])
2987 continue;
2988 spec->private_dac_nids[i] = alc_auto_look_for_dac(codec, pin);
2989 if (!spec->private_dac_nids[i] && !redone) {
2990 /* if we can't find primary DACs, re-probe without
2991 * checking the hard-wired DACs
2992 */
2993 redone = true;
2994 goto again;
2995 }
2996 }
2997
Takashi Iwai8f398ae2011-07-23 18:57:11 +02002998 /* re-count num_dacs and squash invalid entries */
2999 spec->multiout.num_dacs = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003000 for (i = 0; i < cfg->line_outs; i++) {
3001 if (spec->private_dac_nids[i])
3002 spec->multiout.num_dacs++;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003003 else {
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003004 memmove(spec->private_dac_nids + i,
3005 spec->private_dac_nids + i + 1,
3006 sizeof(hda_nid_t) * (cfg->line_outs - i - 1));
Takashi Iwai0a34b422011-12-07 17:20:30 +01003007 spec->private_dac_nids[cfg->line_outs - 1] = 0;
3008 }
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003009 }
3010
Takashi Iwaic2674682011-08-24 17:57:44 +02003011 if (cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3012 /* try to fill multi-io first */
3013 unsigned int location, defcfg;
3014 int num_pins;
Takashi Iwaibb8bf4d2011-07-06 13:07:54 +02003015
Takashi Iwaic2674682011-08-24 17:57:44 +02003016 defcfg = snd_hda_codec_get_pincfg(codec, cfg->line_out_pins[0]);
3017 location = get_defcfg_location(defcfg);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003018
Takashi Iwaic2674682011-08-24 17:57:44 +02003019 num_pins = alc_auto_fill_multi_ios(codec, location);
3020 if (num_pins > 0) {
3021 spec->multi_ios = num_pins;
3022 spec->ext_channel_count = 2;
3023 spec->multiout.num_dacs = num_pins + 1;
3024 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003025 }
Takashi Iwaic2674682011-08-24 17:57:44 +02003026
Takashi Iwai716eef02011-10-21 15:07:42 +02003027 if (cfg->line_out_type != AUTO_PIN_HP_OUT)
3028 alc_auto_fill_extra_dacs(codec, cfg->hp_outs, cfg->hp_pins,
Takashi Iwaic2674682011-08-24 17:57:44 +02003029 spec->multiout.hp_out_nid);
Takashi Iwai0a34b422011-12-07 17:20:30 +01003030 if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3031 int err = alc_auto_fill_extra_dacs(codec, cfg->speaker_outs,
3032 cfg->speaker_pins,
3033 spec->multiout.extra_out_nid);
3034 /* if no speaker volume is assigned, try again as the primary
3035 * output
3036 */
3037 if (!err && cfg->speaker_outs > 0 &&
3038 cfg->line_out_type == AUTO_PIN_HP_OUT) {
3039 cfg->hp_outs = cfg->line_outs;
3040 memcpy(cfg->hp_pins, cfg->line_out_pins,
3041 sizeof(cfg->hp_pins));
3042 cfg->line_outs = cfg->speaker_outs;
3043 memcpy(cfg->line_out_pins, cfg->speaker_pins,
3044 sizeof(cfg->speaker_pins));
3045 cfg->speaker_outs = 0;
3046 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
3047 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
3048 redone = false;
3049 goto again;
3050 }
3051 }
Takashi Iwaic2674682011-08-24 17:57:44 +02003052
Takashi Iwai23c09b02011-08-19 09:05:35 +02003053 return 0;
3054}
3055
Takashi Iwai527e4d72011-10-27 16:33:27 +02003056static inline unsigned int get_ctl_pos(unsigned int data)
3057{
3058 hda_nid_t nid = get_amp_nid_(data);
3059 unsigned int dir = get_amp_direction_(data);
3060 return (nid << 1) | dir;
3061}
3062
3063#define is_ctl_used(bits, data) \
3064 test_bit(get_ctl_pos(data), bits)
3065#define mark_ctl_usage(bits, data) \
3066 set_bit(get_ctl_pos(data), bits)
3067
Takashi Iwai343a04b2011-07-06 14:28:39 +02003068static int alc_auto_add_vol_ctl(struct hda_codec *codec,
Takashi Iwai97aaab72011-07-06 14:02:55 +02003069 const char *pfx, int cidx,
3070 hda_nid_t nid, unsigned int chs)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003071{
Takashi Iwai527e4d72011-10-27 16:33:27 +02003072 struct alc_spec *spec = codec->spec;
3073 unsigned int val;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003074 if (!nid)
3075 return 0;
Takashi Iwai527e4d72011-10-27 16:33:27 +02003076 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
3077 if (is_ctl_used(spec->vol_ctls, val) && chs != 2) /* exclude LFE */
3078 return 0;
3079 mark_ctl_usage(spec->vol_ctls, val);
Takashi Iwai97aaab72011-07-06 14:02:55 +02003080 return __add_pb_vol_ctrl(codec->spec, ALC_CTL_WIDGET_VOL, pfx, cidx,
Takashi Iwai527e4d72011-10-27 16:33:27 +02003081 val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003082}
3083
Takashi Iwai343a04b2011-07-06 14:28:39 +02003084#define alc_auto_add_stereo_vol(codec, pfx, cidx, nid) \
3085 alc_auto_add_vol_ctl(codec, pfx, cidx, nid, 3)
Takashi Iwai97aaab72011-07-06 14:02:55 +02003086
3087/* create a mute-switch for the given mixer widget;
3088 * if it has multiple sources (e.g. DAC and loopback), create a bind-mute
3089 */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003090static int alc_auto_add_sw_ctl(struct hda_codec *codec,
Takashi Iwai97aaab72011-07-06 14:02:55 +02003091 const char *pfx, int cidx,
3092 hda_nid_t nid, unsigned int chs)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003093{
Takashi Iwai527e4d72011-10-27 16:33:27 +02003094 struct alc_spec *spec = codec->spec;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003095 int wid_type;
Takashi Iwai97aaab72011-07-06 14:02:55 +02003096 int type;
3097 unsigned long val;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003098 if (!nid)
3099 return 0;
3100 wid_type = get_wcaps_type(get_wcaps(codec, nid));
3101 if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT) {
3102 type = ALC_CTL_WIDGET_MUTE;
3103 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
3104 } else if (snd_hda_get_conn_list(codec, nid, NULL) == 1) {
Takashi Iwai97aaab72011-07-06 14:02:55 +02003105 type = ALC_CTL_WIDGET_MUTE;
3106 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_INPUT);
3107 } else {
3108 type = ALC_CTL_BIND_MUTE;
3109 val = HDA_COMPOSE_AMP_VAL(nid, chs, 2, HDA_INPUT);
3110 }
Takashi Iwai527e4d72011-10-27 16:33:27 +02003111 if (is_ctl_used(spec->sw_ctls, val) && chs != 2) /* exclude LFE */
3112 return 0;
3113 mark_ctl_usage(spec->sw_ctls, val);
Takashi Iwai97aaab72011-07-06 14:02:55 +02003114 return __add_pb_sw_ctrl(codec->spec, type, pfx, cidx, val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003115}
3116
Takashi Iwai343a04b2011-07-06 14:28:39 +02003117#define alc_auto_add_stereo_sw(codec, pfx, cidx, nid) \
3118 alc_auto_add_sw_ctl(codec, pfx, cidx, nid, 3)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003119
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003120static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
3121 hda_nid_t pin, hda_nid_t dac)
3122{
3123 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3124 if (nid_has_mute(codec, pin, HDA_OUTPUT))
3125 return pin;
3126 else if (mix && nid_has_mute(codec, mix, HDA_INPUT))
3127 return mix;
3128 else if (nid_has_mute(codec, dac, HDA_OUTPUT))
3129 return dac;
3130 return 0;
3131}
3132
3133static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
3134 hda_nid_t pin, hda_nid_t dac)
3135{
3136 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3137 if (nid_has_volume(codec, dac, HDA_OUTPUT))
3138 return dac;
3139 else if (nid_has_volume(codec, mix, HDA_OUTPUT))
3140 return mix;
3141 else if (nid_has_volume(codec, pin, HDA_OUTPUT))
3142 return pin;
3143 return 0;
3144}
3145
Takashi Iwai7085ec12009-10-02 09:03:58 +02003146/* add playback controls from the parsed DAC table */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003147static int alc_auto_create_multi_out_ctls(struct hda_codec *codec,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003148 const struct auto_pin_cfg *cfg)
3149{
3150 struct alc_spec *spec = codec->spec;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003151 int i, err, noutputs;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003152
Takashi Iwaice764ab2011-04-27 16:35:23 +02003153 noutputs = cfg->line_outs;
3154 if (spec->multi_ios > 0)
3155 noutputs += spec->multi_ios;
3156
3157 for (i = 0; i < noutputs; i++) {
Takashi Iwai6843ca12011-06-24 11:03:58 +02003158 const char *name;
3159 int index;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003160 hda_nid_t dac, pin;
3161 hda_nid_t sw, vol;
3162
3163 dac = spec->multiout.dac_nids[i];
3164 if (!dac)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003165 continue;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003166 if (i >= cfg->line_outs)
3167 pin = spec->multi_io[i - 1].pin;
3168 else
3169 pin = cfg->line_out_pins[i];
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003170
3171 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3172 vol = alc_look_for_out_vol_nid(codec, pin, dac);
Takashi Iwai6843ca12011-06-24 11:03:58 +02003173 name = alc_get_line_out_pfx(spec, i, true, &index);
Takashi Iwai9c4e84d2011-08-24 17:27:52 +02003174 if (!name || !strcmp(name, "CLFE")) {
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003175 /* Center/LFE */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003176 err = alc_auto_add_vol_ctl(codec, "Center", 0, vol, 1);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003177 if (err < 0)
3178 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003179 err = alc_auto_add_vol_ctl(codec, "LFE", 0, vol, 2);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003180 if (err < 0)
3181 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003182 err = alc_auto_add_sw_ctl(codec, "Center", 0, sw, 1);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003183 if (err < 0)
3184 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003185 err = alc_auto_add_sw_ctl(codec, "LFE", 0, sw, 2);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003186 if (err < 0)
3187 return err;
3188 } else {
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003189 err = alc_auto_add_stereo_vol(codec, name, index, vol);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003190 if (err < 0)
3191 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003192 err = alc_auto_add_stereo_sw(codec, name, index, sw);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003193 if (err < 0)
3194 return err;
3195 }
3196 }
3197 return 0;
3198}
3199
Takashi Iwai343a04b2011-07-06 14:28:39 +02003200static int alc_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai766ddee2011-12-07 16:55:19 +01003201 hda_nid_t dac, const char *pfx,
3202 int cidx)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003203{
Takashi Iwai7085ec12009-10-02 09:03:58 +02003204 struct alc_spec *spec = codec->spec;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003205 hda_nid_t sw, vol;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003206 int err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003207
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003208 if (!dac) {
Takashi Iwai527e4d72011-10-27 16:33:27 +02003209 unsigned int val;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003210 /* the corresponding DAC is already occupied */
3211 if (!(get_wcaps(codec, pin) & AC_WCAP_OUT_AMP))
3212 return 0; /* no way */
3213 /* create a switch only */
Takashi Iwai527e4d72011-10-27 16:33:27 +02003214 val = HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT);
3215 if (is_ctl_used(spec->sw_ctls, val))
3216 return 0; /* already created */
3217 mark_ctl_usage(spec->sw_ctls, val);
Takashi Iwai766ddee2011-12-07 16:55:19 +01003218 return __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx, cidx, val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003219 }
3220
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003221 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3222 vol = alc_look_for_out_vol_nid(codec, pin, dac);
Takashi Iwai766ddee2011-12-07 16:55:19 +01003223 err = alc_auto_add_stereo_vol(codec, pfx, cidx, vol);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003224 if (err < 0)
Takashi Iwai24fb9172008-09-02 14:48:20 +02003225 return err;
Takashi Iwai766ddee2011-12-07 16:55:19 +01003226 err = alc_auto_add_stereo_sw(codec, pfx, cidx, sw);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003227 if (err < 0)
3228 return err;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003229 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003230}
3231
Takashi Iwai23c09b02011-08-19 09:05:35 +02003232static struct hda_bind_ctls *new_bind_ctl(struct hda_codec *codec,
3233 unsigned int nums,
3234 struct hda_ctl_ops *ops)
3235{
3236 struct alc_spec *spec = codec->spec;
3237 struct hda_bind_ctls **ctlp, *ctl;
3238 snd_array_init(&spec->bind_ctls, sizeof(ctl), 8);
3239 ctlp = snd_array_new(&spec->bind_ctls);
3240 if (!ctlp)
3241 return NULL;
3242 ctl = kzalloc(sizeof(*ctl) + sizeof(long) * (nums + 1), GFP_KERNEL);
3243 *ctlp = ctl;
3244 if (ctl)
3245 ctl->ops = ops;
3246 return ctl;
3247}
3248
3249/* add playback controls for speaker and HP outputs */
3250static int alc_auto_create_extra_outs(struct hda_codec *codec, int num_pins,
3251 const hda_nid_t *pins,
3252 const hda_nid_t *dacs,
3253 const char *pfx)
3254{
3255 struct alc_spec *spec = codec->spec;
3256 struct hda_bind_ctls *ctl;
3257 char name[32];
3258 int i, n, err;
3259
3260 if (!num_pins || !pins[0])
3261 return 0;
3262
Takashi Iwai527e4d72011-10-27 16:33:27 +02003263 if (num_pins == 1) {
3264 hda_nid_t dac = *dacs;
3265 if (!dac)
3266 dac = spec->multiout.dac_nids[0];
Takashi Iwai766ddee2011-12-07 16:55:19 +01003267 return alc_auto_create_extra_out(codec, *pins, dac, pfx, 0);
Takashi Iwai527e4d72011-10-27 16:33:27 +02003268 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003269
3270 if (dacs[num_pins - 1]) {
3271 /* OK, we have a multi-output system with individual volumes */
3272 for (i = 0; i < num_pins; i++) {
Takashi Iwai766ddee2011-12-07 16:55:19 +01003273 if (num_pins >= 3) {
3274 snprintf(name, sizeof(name), "%s %s",
3275 pfx, channel_name[i]);
3276 err = alc_auto_create_extra_out(codec, pins[i], dacs[i],
3277 name, 0);
3278 } else {
3279 err = alc_auto_create_extra_out(codec, pins[i], dacs[i],
3280 pfx, i);
3281 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003282 if (err < 0)
3283 return err;
3284 }
3285 return 0;
3286 }
3287
3288 /* Let's create a bind-controls */
3289 ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_sw);
3290 if (!ctl)
3291 return -ENOMEM;
3292 n = 0;
3293 for (i = 0; i < num_pins; i++) {
3294 if (get_wcaps(codec, pins[i]) & AC_WCAP_OUT_AMP)
3295 ctl->values[n++] =
3296 HDA_COMPOSE_AMP_VAL(pins[i], 3, 0, HDA_OUTPUT);
3297 }
3298 if (n) {
3299 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
3300 err = add_control(spec, ALC_CTL_BIND_SW, name, 0, (long)ctl);
3301 if (err < 0)
3302 return err;
3303 }
3304
3305 ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_vol);
3306 if (!ctl)
3307 return -ENOMEM;
3308 n = 0;
3309 for (i = 0; i < num_pins; i++) {
3310 hda_nid_t vol;
3311 if (!pins[i] || !dacs[i])
3312 continue;
3313 vol = alc_look_for_out_vol_nid(codec, pins[i], dacs[i]);
3314 if (vol)
3315 ctl->values[n++] =
3316 HDA_COMPOSE_AMP_VAL(vol, 3, 0, HDA_OUTPUT);
3317 }
3318 if (n) {
3319 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
3320 err = add_control(spec, ALC_CTL_BIND_VOL, name, 0, (long)ctl);
3321 if (err < 0)
3322 return err;
3323 }
3324 return 0;
3325}
3326
Takashi Iwai343a04b2011-07-06 14:28:39 +02003327static int alc_auto_create_hp_out(struct hda_codec *codec)
3328{
3329 struct alc_spec *spec = codec->spec;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003330 return alc_auto_create_extra_outs(codec, spec->autocfg.hp_outs,
3331 spec->autocfg.hp_pins,
3332 spec->multiout.hp_out_nid,
3333 "Headphone");
Takashi Iwai343a04b2011-07-06 14:28:39 +02003334}
3335
3336static int alc_auto_create_speaker_out(struct hda_codec *codec)
3337{
3338 struct alc_spec *spec = codec->spec;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003339 return alc_auto_create_extra_outs(codec, spec->autocfg.speaker_outs,
3340 spec->autocfg.speaker_pins,
3341 spec->multiout.extra_out_nid,
3342 "Speaker");
Takashi Iwai343a04b2011-07-06 14:28:39 +02003343}
3344
Takashi Iwai343a04b2011-07-06 14:28:39 +02003345static void alc_auto_set_output_and_unmute(struct hda_codec *codec,
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003346 hda_nid_t pin, int pin_type,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003347 hda_nid_t dac)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003348{
Takashi Iwai7085ec12009-10-02 09:03:58 +02003349 int i, num;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003350 hda_nid_t nid, mix = 0;
Takashi Iwaice503f32010-07-30 10:37:29 +02003351 hda_nid_t srcs[HDA_MAX_CONNECTIONS];
Takashi Iwai7085ec12009-10-02 09:03:58 +02003352
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003353 alc_set_pin_output(codec, pin, pin_type);
3354 nid = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003355 num = snd_hda_get_connections(codec, nid, srcs, ARRAY_SIZE(srcs));
Takashi Iwai7085ec12009-10-02 09:03:58 +02003356 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02003357 if (alc_auto_mix_to_dac(codec, srcs[i]) != dac)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003358 continue;
Takashi Iwaicd511552011-07-06 13:10:42 +02003359 mix = srcs[i];
3360 break;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003361 }
Takashi Iwaicd511552011-07-06 13:10:42 +02003362 if (!mix)
3363 return;
3364
3365 /* need the manual connection? */
3366 if (num > 1)
3367 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, i);
3368 /* unmute mixer widget inputs */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003369 if (nid_has_mute(codec, mix, HDA_INPUT)) {
3370 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaicd511552011-07-06 13:10:42 +02003371 AMP_IN_UNMUTE(0));
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003372 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaicd511552011-07-06 13:10:42 +02003373 AMP_IN_UNMUTE(1));
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003374 }
Takashi Iwaicd511552011-07-06 13:10:42 +02003375 /* initialize volume */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003376 nid = alc_look_for_out_vol_nid(codec, pin, dac);
3377 if (nid)
3378 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3379 AMP_OUT_ZERO);
Takashi Iwai43dea222011-11-06 11:25:34 +01003380
3381 /* unmute DAC if it's not assigned to a mixer */
3382 nid = alc_look_for_out_mute_nid(codec, pin, dac);
3383 if (nid == mix && nid_has_mute(codec, dac, HDA_OUTPUT))
3384 snd_hda_codec_write(codec, dac, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3385 AMP_OUT_ZERO);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003386}
3387
Takashi Iwai343a04b2011-07-06 14:28:39 +02003388static void alc_auto_init_multi_out(struct hda_codec *codec)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003389{
3390 struct alc_spec *spec = codec->spec;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003391 int pin_type = get_pin_type(spec->autocfg.line_out_type);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003392 int i;
3393
3394 for (i = 0; i <= HDA_SIDE; i++) {
3395 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3396 if (nid)
Takashi Iwai343a04b2011-07-06 14:28:39 +02003397 alc_auto_set_output_and_unmute(codec, nid, pin_type,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003398 spec->multiout.dac_nids[i]);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003399 }
3400}
3401
Takashi Iwai343a04b2011-07-06 14:28:39 +02003402static void alc_auto_init_extra_out(struct hda_codec *codec)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003403{
3404 struct alc_spec *spec = codec->spec;
Takashi Iwai8cd07752011-08-23 15:16:22 +02003405 int i;
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003406 hda_nid_t pin, dac;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003407
David Henningsson636030e2011-10-12 19:26:03 +02003408 for (i = 0; i < spec->autocfg.hp_outs; i++) {
Takashi Iwai716eef02011-10-21 15:07:42 +02003409 if (spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)
3410 break;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003411 pin = spec->autocfg.hp_pins[i];
3412 if (!pin)
3413 break;
3414 dac = spec->multiout.hp_out_nid[i];
3415 if (!dac) {
3416 if (i > 0 && spec->multiout.hp_out_nid[0])
3417 dac = spec->multiout.hp_out_nid[0];
3418 else
3419 dac = spec->multiout.dac_nids[0];
3420 }
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003421 alc_auto_set_output_and_unmute(codec, pin, PIN_HP, dac);
3422 }
Takashi Iwai8cd07752011-08-23 15:16:22 +02003423 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
Takashi Iwai716eef02011-10-21 15:07:42 +02003424 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
3425 break;
Takashi Iwai8cd07752011-08-23 15:16:22 +02003426 pin = spec->autocfg.speaker_pins[i];
3427 if (!pin)
3428 break;
3429 dac = spec->multiout.extra_out_nid[i];
3430 if (!dac) {
3431 if (i > 0 && spec->multiout.extra_out_nid[0])
3432 dac = spec->multiout.extra_out_nid[0];
3433 else
3434 dac = spec->multiout.dac_nids[0];
3435 }
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003436 alc_auto_set_output_and_unmute(codec, pin, PIN_OUT, dac);
3437 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003438}
3439
Takashi Iwaice764ab2011-04-27 16:35:23 +02003440/*
3441 * multi-io helper
3442 */
3443static int alc_auto_fill_multi_ios(struct hda_codec *codec,
3444 unsigned int location)
3445{
3446 struct alc_spec *spec = codec->spec;
3447 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaic2674682011-08-24 17:57:44 +02003448 hda_nid_t prime_dac = spec->private_dac_nids[0];
Takashi Iwaice764ab2011-04-27 16:35:23 +02003449 int type, i, num_pins = 0;
3450
3451 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
3452 for (i = 0; i < cfg->num_inputs; i++) {
3453 hda_nid_t nid = cfg->inputs[i].pin;
3454 hda_nid_t dac;
3455 unsigned int defcfg, caps;
3456 if (cfg->inputs[i].type != type)
3457 continue;
3458 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3459 if (get_defcfg_connect(defcfg) != AC_JACK_PORT_COMPLEX)
3460 continue;
3461 if (location && get_defcfg_location(defcfg) != location)
3462 continue;
3463 caps = snd_hda_query_pin_caps(codec, nid);
3464 if (!(caps & AC_PINCAP_OUT))
3465 continue;
3466 dac = alc_auto_look_for_dac(codec, nid);
3467 if (!dac)
3468 continue;
3469 spec->multi_io[num_pins].pin = nid;
3470 spec->multi_io[num_pins].dac = dac;
3471 num_pins++;
Takashi Iwaidda14412011-05-02 11:29:30 +02003472 spec->private_dac_nids[spec->multiout.num_dacs++] = dac;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003473 }
3474 }
3475 spec->multiout.num_dacs = 1;
Takashi Iwaic2674682011-08-24 17:57:44 +02003476 if (num_pins < 2) {
3477 /* clear up again */
3478 memset(spec->private_dac_nids, 0,
3479 sizeof(spec->private_dac_nids));
3480 spec->private_dac_nids[0] = prime_dac;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003481 return 0;
Takashi Iwaic2674682011-08-24 17:57:44 +02003482 }
Takashi Iwaice764ab2011-04-27 16:35:23 +02003483 return num_pins;
3484}
3485
3486static int alc_auto_ch_mode_info(struct snd_kcontrol *kcontrol,
3487 struct snd_ctl_elem_info *uinfo)
3488{
3489 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3490 struct alc_spec *spec = codec->spec;
3491
3492 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3493 uinfo->count = 1;
3494 uinfo->value.enumerated.items = spec->multi_ios + 1;
3495 if (uinfo->value.enumerated.item > spec->multi_ios)
3496 uinfo->value.enumerated.item = spec->multi_ios;
3497 sprintf(uinfo->value.enumerated.name, "%dch",
3498 (uinfo->value.enumerated.item + 1) * 2);
3499 return 0;
3500}
3501
3502static int alc_auto_ch_mode_get(struct snd_kcontrol *kcontrol,
3503 struct snd_ctl_elem_value *ucontrol)
3504{
3505 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3506 struct alc_spec *spec = codec->spec;
3507 ucontrol->value.enumerated.item[0] = (spec->ext_channel_count - 1) / 2;
3508 return 0;
3509}
3510
3511static int alc_set_multi_io(struct hda_codec *codec, int idx, bool output)
3512{
3513 struct alc_spec *spec = codec->spec;
3514 hda_nid_t nid = spec->multi_io[idx].pin;
3515
3516 if (!spec->multi_io[idx].ctl_in)
3517 spec->multi_io[idx].ctl_in =
3518 snd_hda_codec_read(codec, nid, 0,
3519 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3520 if (output) {
3521 snd_hda_codec_update_cache(codec, nid, 0,
3522 AC_VERB_SET_PIN_WIDGET_CONTROL,
3523 PIN_OUT);
3524 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3525 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3526 HDA_AMP_MUTE, 0);
3527 alc_auto_select_dac(codec, nid, spec->multi_io[idx].dac);
3528 } else {
3529 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3530 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3531 HDA_AMP_MUTE, HDA_AMP_MUTE);
3532 snd_hda_codec_update_cache(codec, nid, 0,
3533 AC_VERB_SET_PIN_WIDGET_CONTROL,
3534 spec->multi_io[idx].ctl_in);
3535 }
3536 return 0;
3537}
3538
3539static int alc_auto_ch_mode_put(struct snd_kcontrol *kcontrol,
3540 struct snd_ctl_elem_value *ucontrol)
3541{
3542 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3543 struct alc_spec *spec = codec->spec;
3544 int i, ch;
3545
3546 ch = ucontrol->value.enumerated.item[0];
3547 if (ch < 0 || ch > spec->multi_ios)
3548 return -EINVAL;
3549 if (ch == (spec->ext_channel_count - 1) / 2)
3550 return 0;
3551 spec->ext_channel_count = (ch + 1) * 2;
3552 for (i = 0; i < spec->multi_ios; i++)
3553 alc_set_multi_io(codec, i, i < ch);
3554 spec->multiout.max_channels = spec->ext_channel_count;
Takashi Iwai7b1655f2011-07-14 15:31:21 +02003555 if (spec->need_dac_fix && !spec->const_channel_count)
3556 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003557 return 1;
3558}
3559
Takashi Iwaia9111322011-05-02 11:30:18 +02003560static const struct snd_kcontrol_new alc_auto_channel_mode_enum = {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003561 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3562 .name = "Channel Mode",
3563 .info = alc_auto_ch_mode_info,
3564 .get = alc_auto_ch_mode_get,
3565 .put = alc_auto_ch_mode_put,
3566};
3567
Takashi Iwai23c09b02011-08-19 09:05:35 +02003568static int alc_auto_add_multi_channel_mode(struct hda_codec *codec)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003569{
3570 struct alc_spec *spec = codec->spec;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003571
Takashi Iwaic2674682011-08-24 17:57:44 +02003572 if (spec->multi_ios > 0) {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003573 struct snd_kcontrol_new *knew;
3574
3575 knew = alc_kcontrol_new(spec);
3576 if (!knew)
3577 return -ENOMEM;
3578 *knew = alc_auto_channel_mode_enum;
3579 knew->name = kstrdup("Channel Mode", GFP_KERNEL);
3580 if (!knew->name)
3581 return -ENOMEM;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003582 }
3583 return 0;
3584}
3585
Takashi Iwai1d045db2011-07-07 18:23:21 +02003586/* filter out invalid adc_nids (and capsrc_nids) that don't give all
3587 * active input pins
3588 */
3589static void alc_remove_invalid_adc_nids(struct hda_codec *codec)
3590{
3591 struct alc_spec *spec = codec->spec;
3592 const struct hda_input_mux *imux;
3593 hda_nid_t adc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3594 hda_nid_t capsrc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3595 int i, n, nums;
3596
3597 imux = spec->input_mux;
3598 if (!imux)
3599 return;
3600 if (spec->dyn_adc_switch)
3601 return;
3602
3603 nums = 0;
3604 for (n = 0; n < spec->num_adc_nids; n++) {
3605 hda_nid_t cap = spec->private_capsrc_nids[n];
3606 int num_conns = snd_hda_get_conn_list(codec, cap, NULL);
3607 for (i = 0; i < imux->num_items; i++) {
3608 hda_nid_t pin = spec->imux_pins[i];
3609 if (pin) {
3610 if (get_connection_index(codec, cap, pin) < 0)
3611 break;
3612 } else if (num_conns <= imux->items[i].index)
3613 break;
3614 }
3615 if (i >= imux->num_items) {
3616 adc_nids[nums] = spec->private_adc_nids[n];
3617 capsrc_nids[nums++] = cap;
3618 }
3619 }
3620 if (!nums) {
3621 /* check whether ADC-switch is possible */
3622 if (!alc_check_dyn_adc_switch(codec)) {
3623 printk(KERN_WARNING "hda_codec: %s: no valid ADC found;"
3624 " using fallback 0x%x\n",
3625 codec->chip_name, spec->private_adc_nids[0]);
3626 spec->num_adc_nids = 1;
3627 spec->auto_mic = 0;
3628 return;
3629 }
3630 } else if (nums != spec->num_adc_nids) {
3631 memcpy(spec->private_adc_nids, adc_nids,
3632 nums * sizeof(hda_nid_t));
3633 memcpy(spec->private_capsrc_nids, capsrc_nids,
3634 nums * sizeof(hda_nid_t));
3635 spec->num_adc_nids = nums;
3636 }
3637
3638 if (spec->auto_mic)
3639 alc_auto_mic_check_imux(codec); /* check auto-mic setups */
3640 else if (spec->input_mux->num_items == 1)
3641 spec->num_adc_nids = 1; /* reduce to a single ADC */
3642}
3643
3644/*
3645 * initialize ADC paths
3646 */
3647static void alc_auto_init_adc(struct hda_codec *codec, int adc_idx)
3648{
3649 struct alc_spec *spec = codec->spec;
3650 hda_nid_t nid;
3651
3652 nid = spec->adc_nids[adc_idx];
3653 /* mute ADC */
Takashi Iwai44c02402011-07-08 15:14:19 +02003654 if (nid_has_mute(codec, nid, HDA_INPUT)) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003655 snd_hda_codec_write(codec, nid, 0,
3656 AC_VERB_SET_AMP_GAIN_MUTE,
3657 AMP_IN_MUTE(0));
3658 return;
3659 }
3660 if (!spec->capsrc_nids)
3661 return;
3662 nid = spec->capsrc_nids[adc_idx];
Takashi Iwai44c02402011-07-08 15:14:19 +02003663 if (nid_has_mute(codec, nid, HDA_OUTPUT))
Takashi Iwai1d045db2011-07-07 18:23:21 +02003664 snd_hda_codec_write(codec, nid, 0,
3665 AC_VERB_SET_AMP_GAIN_MUTE,
3666 AMP_OUT_MUTE);
3667}
3668
3669static void alc_auto_init_input_src(struct hda_codec *codec)
3670{
3671 struct alc_spec *spec = codec->spec;
3672 int c, nums;
3673
3674 for (c = 0; c < spec->num_adc_nids; c++)
3675 alc_auto_init_adc(codec, c);
3676 if (spec->dyn_adc_switch)
3677 nums = 1;
3678 else
3679 nums = spec->num_adc_nids;
3680 for (c = 0; c < nums; c++)
3681 alc_mux_select(codec, 0, spec->cur_mux[c], true);
3682}
3683
3684/* add mic boosts if needed */
3685static int alc_auto_add_mic_boost(struct hda_codec *codec)
3686{
3687 struct alc_spec *spec = codec->spec;
3688 struct auto_pin_cfg *cfg = &spec->autocfg;
3689 int i, err;
3690 int type_idx = 0;
3691 hda_nid_t nid;
3692 const char *prev_label = NULL;
3693
3694 for (i = 0; i < cfg->num_inputs; i++) {
3695 if (cfg->inputs[i].type > AUTO_PIN_MIC)
3696 break;
3697 nid = cfg->inputs[i].pin;
3698 if (get_wcaps(codec, nid) & AC_WCAP_IN_AMP) {
3699 const char *label;
3700 char boost_label[32];
3701
3702 label = hda_get_autocfg_input_label(codec, cfg, i);
3703 if (prev_label && !strcmp(label, prev_label))
3704 type_idx++;
3705 else
3706 type_idx = 0;
3707 prev_label = label;
3708
3709 snprintf(boost_label, sizeof(boost_label),
3710 "%s Boost Volume", label);
3711 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3712 boost_label, type_idx,
3713 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
3714 if (err < 0)
3715 return err;
3716 }
3717 }
3718 return 0;
3719}
3720
3721/* select or unmute the given capsrc route */
3722static void select_or_unmute_capsrc(struct hda_codec *codec, hda_nid_t cap,
3723 int idx)
3724{
3725 if (get_wcaps_type(get_wcaps(codec, cap)) == AC_WID_AUD_MIX) {
3726 snd_hda_codec_amp_stereo(codec, cap, HDA_INPUT, idx,
3727 HDA_AMP_MUTE, 0);
3728 } else if (snd_hda_get_conn_list(codec, cap, NULL) > 1) {
3729 snd_hda_codec_write_cache(codec, cap, 0,
3730 AC_VERB_SET_CONNECT_SEL, idx);
3731 }
3732}
3733
3734/* set the default connection to that pin */
3735static int init_capsrc_for_pin(struct hda_codec *codec, hda_nid_t pin)
3736{
3737 struct alc_spec *spec = codec->spec;
3738 int i;
3739
3740 if (!pin)
3741 return 0;
3742 for (i = 0; i < spec->num_adc_nids; i++) {
Takashi Iwai61071592011-11-23 07:52:15 +01003743 hda_nid_t cap = get_capsrc(spec, i);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003744 int idx;
3745
3746 idx = get_connection_index(codec, cap, pin);
3747 if (idx < 0)
3748 continue;
3749 select_or_unmute_capsrc(codec, cap, idx);
3750 return i; /* return the found index */
3751 }
3752 return -1; /* not found */
3753}
3754
3755/* initialize some special cases for input sources */
3756static void alc_init_special_input_src(struct hda_codec *codec)
3757{
3758 struct alc_spec *spec = codec->spec;
3759 int i;
3760
3761 for (i = 0; i < spec->autocfg.num_inputs; i++)
3762 init_capsrc_for_pin(codec, spec->autocfg.inputs[i].pin);
3763}
3764
3765/* assign appropriate capture mixers */
3766static void set_capture_mixer(struct hda_codec *codec)
3767{
3768 struct alc_spec *spec = codec->spec;
3769 static const struct snd_kcontrol_new *caps[2][3] = {
3770 { alc_capture_mixer_nosrc1,
3771 alc_capture_mixer_nosrc2,
3772 alc_capture_mixer_nosrc3 },
3773 { alc_capture_mixer1,
3774 alc_capture_mixer2,
3775 alc_capture_mixer3 },
3776 };
3777
3778 /* check whether either of ADC or MUX has a volume control */
Takashi Iwai44c02402011-07-08 15:14:19 +02003779 if (!nid_has_volume(codec, spec->adc_nids[0], HDA_INPUT)) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003780 if (!spec->capsrc_nids)
3781 return; /* no volume */
Takashi Iwai44c02402011-07-08 15:14:19 +02003782 if (!nid_has_volume(codec, spec->capsrc_nids[0], HDA_OUTPUT))
Takashi Iwai1d045db2011-07-07 18:23:21 +02003783 return; /* no volume in capsrc, too */
3784 spec->vol_in_capsrc = 1;
3785 }
3786
3787 if (spec->num_adc_nids > 0) {
3788 int mux = 0;
3789 int num_adcs = 0;
3790
3791 if (spec->input_mux && spec->input_mux->num_items > 1)
3792 mux = 1;
3793 if (spec->auto_mic) {
3794 num_adcs = 1;
3795 mux = 0;
3796 } else if (spec->dyn_adc_switch)
3797 num_adcs = 1;
3798 if (!num_adcs) {
3799 if (spec->num_adc_nids > 3)
3800 spec->num_adc_nids = 3;
3801 else if (!spec->num_adc_nids)
3802 return;
3803 num_adcs = spec->num_adc_nids;
3804 }
3805 spec->cap_mixer = caps[mux][num_adcs - 1];
3806 }
3807}
3808
3809/*
Takashi Iwaie4770622011-07-08 11:11:35 +02003810 * standard auto-parser initializations
3811 */
3812static void alc_auto_init_std(struct hda_codec *codec)
3813{
3814 struct alc_spec *spec = codec->spec;
3815 alc_auto_init_multi_out(codec);
3816 alc_auto_init_extra_out(codec);
3817 alc_auto_init_analog_input(codec);
3818 alc_auto_init_input_src(codec);
3819 alc_auto_init_digital(codec);
3820 if (spec->unsol_event)
3821 alc_inithook(codec);
3822}
3823
3824/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02003825 * Digital-beep handlers
3826 */
3827#ifdef CONFIG_SND_HDA_INPUT_BEEP
3828#define set_beep_amp(spec, nid, idx, dir) \
3829 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
3830
3831static const struct snd_pci_quirk beep_white_list[] = {
3832 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
3833 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
3834 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
3835 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
3836 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
3837 {}
3838};
3839
3840static inline int has_cdefine_beep(struct hda_codec *codec)
3841{
3842 struct alc_spec *spec = codec->spec;
3843 const struct snd_pci_quirk *q;
3844 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
3845 if (q)
3846 return q->value;
3847 return spec->cdefine.enable_pcbeep;
3848}
3849#else
3850#define set_beep_amp(spec, nid, idx, dir) /* NOP */
3851#define has_cdefine_beep(codec) 0
3852#endif
3853
3854/* parse the BIOS configuration and set up the alc_spec */
3855/* return 1 if successful, 0 if the proper config is not found,
3856 * or a negative error code
3857 */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003858static int alc_parse_auto_config(struct hda_codec *codec,
3859 const hda_nid_t *ignore_nids,
3860 const hda_nid_t *ssid_nids)
Takashi Iwai1d045db2011-07-07 18:23:21 +02003861{
3862 struct alc_spec *spec = codec->spec;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003863 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003864 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003865
Takashi Iwai53c334a2011-08-23 18:27:14 +02003866 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
3867 spec->parse_flags);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003868 if (err < 0)
3869 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003870 if (!cfg->line_outs) {
3871 if (cfg->dig_outs || cfg->dig_in_pin) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003872 spec->multiout.max_channels = 2;
3873 spec->no_analog = 1;
3874 goto dig_only;
3875 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02003876 return 0; /* can't find valid BIOS pin config */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003877 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003878
Takashi Iwai06503672011-10-06 08:27:19 +02003879 if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT &&
3880 cfg->line_outs <= cfg->hp_outs) {
Takashi Iwai23c09b02011-08-19 09:05:35 +02003881 /* use HP as primary out */
3882 cfg->speaker_outs = cfg->line_outs;
3883 memcpy(cfg->speaker_pins, cfg->line_out_pins,
3884 sizeof(cfg->speaker_pins));
3885 cfg->line_outs = cfg->hp_outs;
3886 memcpy(cfg->line_out_pins, cfg->hp_pins, sizeof(cfg->hp_pins));
3887 cfg->hp_outs = 0;
3888 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3889 cfg->line_out_type = AUTO_PIN_HP_OUT;
3890 }
3891
Takashi Iwai1d045db2011-07-07 18:23:21 +02003892 err = alc_auto_fill_dac_nids(codec);
3893 if (err < 0)
3894 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003895 err = alc_auto_add_multi_channel_mode(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003896 if (err < 0)
3897 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003898 err = alc_auto_create_multi_out_ctls(codec, cfg);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003899 if (err < 0)
3900 return err;
3901 err = alc_auto_create_hp_out(codec);
3902 if (err < 0)
3903 return err;
3904 err = alc_auto_create_speaker_out(codec);
3905 if (err < 0)
3906 return err;
3907 err = alc_auto_create_input_ctls(codec);
3908 if (err < 0)
3909 return err;
3910
3911 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3912
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003913 dig_only:
Takashi Iwai1d045db2011-07-07 18:23:21 +02003914 alc_auto_parse_digital(codec);
3915
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003916 if (!spec->no_analog)
3917 alc_remove_invalid_adc_nids(codec);
3918
3919 if (ssid_nids)
3920 alc_ssid_check(codec, ssid_nids);
3921
3922 if (!spec->no_analog) {
3923 alc_auto_check_switches(codec);
3924 err = alc_auto_add_mic_boost(codec);
3925 if (err < 0)
3926 return err;
3927 }
3928
Takashi Iwai1d045db2011-07-07 18:23:21 +02003929 if (spec->kctls.list)
3930 add_mixer(spec, spec->kctls.list);
3931
Takashi Iwai1d045db2011-07-07 18:23:21 +02003932 return 1;
3933}
3934
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003935static int alc880_parse_auto_config(struct hda_codec *codec)
3936{
3937 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3938 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3939 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
3940}
3941
Takashi Iwai1d045db2011-07-07 18:23:21 +02003942#ifdef CONFIG_SND_HDA_POWER_SAVE
3943static const struct hda_amp_list alc880_loopbacks[] = {
3944 { 0x0b, HDA_INPUT, 0 },
3945 { 0x0b, HDA_INPUT, 1 },
3946 { 0x0b, HDA_INPUT, 2 },
3947 { 0x0b, HDA_INPUT, 3 },
3948 { 0x0b, HDA_INPUT, 4 },
3949 { } /* end */
3950};
3951#endif
3952
3953/*
3954 * board setups
3955 */
3956#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3957#define alc_board_config \
3958 snd_hda_check_board_config
3959#define alc_board_codec_sid_config \
3960 snd_hda_check_board_codec_sid_config
3961#include "alc_quirks.c"
3962#else
3963#define alc_board_config(codec, nums, models, tbl) -1
3964#define alc_board_codec_sid_config(codec, nums, models, tbl) -1
3965#define setup_preset(codec, x) /* NOP */
3966#endif
3967
3968/*
3969 * OK, here we have finally the patch for ALC880
3970 */
3971#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3972#include "alc880_quirks.c"
3973#endif
3974
3975static int patch_alc880(struct hda_codec *codec)
3976{
3977 struct alc_spec *spec;
3978 int board_config;
3979 int err;
3980
3981 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3982 if (spec == NULL)
3983 return -ENOMEM;
3984
3985 codec->spec = spec;
3986
3987 spec->mixer_nid = 0x0b;
Takashi Iwai7b1655f2011-07-14 15:31:21 +02003988 spec->need_dac_fix = 1;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003989
3990 board_config = alc_board_config(codec, ALC880_MODEL_LAST,
3991 alc880_models, alc880_cfg_tbl);
3992 if (board_config < 0) {
3993 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
3994 codec->chip_name);
3995 board_config = ALC_MODEL_AUTO;
3996 }
3997
3998 if (board_config == ALC_MODEL_AUTO) {
3999 /* automatic parse from the BIOS config */
4000 err = alc880_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004001 if (err < 0)
4002 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004003#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4004 else if (!err) {
4005 printk(KERN_INFO
4006 "hda_codec: Cannot set up configuration "
4007 "from BIOS. Using 3-stack mode...\n");
4008 board_config = ALC880_3ST;
4009 }
4010#endif
4011 }
4012
Takashi Iwai1d045db2011-07-07 18:23:21 +02004013 if (board_config != ALC_MODEL_AUTO)
4014 setup_preset(codec, &alc880_presets[board_config]);
4015
Takashi Iwai60a6a842011-07-27 14:01:24 +02004016 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004017 alc_auto_fill_adc_caps(codec);
4018 alc_rebuild_imux_for_auto_mic(codec);
4019 alc_remove_invalid_adc_nids(codec);
4020 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004021
4022 if (!spec->no_analog && !spec->cap_mixer)
4023 set_capture_mixer(codec);
4024
4025 if (!spec->no_analog) {
4026 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004027 if (err < 0)
4028 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004029 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4030 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004031
4032 spec->vmaster_nid = 0x0c;
4033
4034 codec->patch_ops = alc_patch_ops;
4035 if (board_config == ALC_MODEL_AUTO)
Takashi Iwaie4770622011-07-08 11:11:35 +02004036 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004037#ifdef CONFIG_SND_HDA_POWER_SAVE
4038 if (!spec->loopback.amplist)
4039 spec->loopback.amplist = alc880_loopbacks;
4040#endif
4041
4042 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004043
4044 error:
4045 alc_free(codec);
4046 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004047}
4048
4049
4050/*
4051 * ALC260 support
4052 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004053static int alc260_parse_auto_config(struct hda_codec *codec)
4054{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004055 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004056 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
4057 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004058}
4059
Takashi Iwai1d045db2011-07-07 18:23:21 +02004060#ifdef CONFIG_SND_HDA_POWER_SAVE
4061static const struct hda_amp_list alc260_loopbacks[] = {
4062 { 0x07, HDA_INPUT, 0 },
4063 { 0x07, HDA_INPUT, 1 },
4064 { 0x07, HDA_INPUT, 2 },
4065 { 0x07, HDA_INPUT, 3 },
4066 { 0x07, HDA_INPUT, 4 },
4067 { } /* end */
4068};
4069#endif
4070
4071/*
4072 * Pin config fixes
4073 */
4074enum {
4075 PINFIX_HP_DC5750,
4076};
4077
4078static const struct alc_fixup alc260_fixups[] = {
4079 [PINFIX_HP_DC5750] = {
4080 .type = ALC_FIXUP_PINS,
4081 .v.pins = (const struct alc_pincfg[]) {
4082 { 0x11, 0x90130110 }, /* speaker */
4083 { }
4084 }
4085 },
4086};
4087
4088static const struct snd_pci_quirk alc260_fixup_tbl[] = {
4089 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", PINFIX_HP_DC5750),
4090 {}
4091};
4092
4093/*
4094 */
4095#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4096#include "alc260_quirks.c"
4097#endif
4098
4099static int patch_alc260(struct hda_codec *codec)
4100{
4101 struct alc_spec *spec;
4102 int err, board_config;
4103
4104 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4105 if (spec == NULL)
4106 return -ENOMEM;
4107
4108 codec->spec = spec;
4109
4110 spec->mixer_nid = 0x07;
4111
4112 board_config = alc_board_config(codec, ALC260_MODEL_LAST,
4113 alc260_models, alc260_cfg_tbl);
4114 if (board_config < 0) {
4115 snd_printd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4116 codec->chip_name);
4117 board_config = ALC_MODEL_AUTO;
4118 }
4119
4120 if (board_config == ALC_MODEL_AUTO) {
4121 alc_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
4122 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4123 }
4124
4125 if (board_config == ALC_MODEL_AUTO) {
4126 /* automatic parse from the BIOS config */
4127 err = alc260_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004128 if (err < 0)
4129 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004130#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4131 else if (!err) {
4132 printk(KERN_INFO
4133 "hda_codec: Cannot set up configuration "
4134 "from BIOS. Using base mode...\n");
4135 board_config = ALC260_BASIC;
4136 }
4137#endif
4138 }
4139
Takashi Iwai1d045db2011-07-07 18:23:21 +02004140 if (board_config != ALC_MODEL_AUTO)
4141 setup_preset(codec, &alc260_presets[board_config]);
4142
Takashi Iwai60a6a842011-07-27 14:01:24 +02004143 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004144 alc_auto_fill_adc_caps(codec);
4145 alc_rebuild_imux_for_auto_mic(codec);
4146 alc_remove_invalid_adc_nids(codec);
4147 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004148
4149 if (!spec->no_analog && !spec->cap_mixer)
4150 set_capture_mixer(codec);
4151
4152 if (!spec->no_analog) {
4153 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004154 if (err < 0)
4155 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004156 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
4157 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004158
4159 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4160
4161 spec->vmaster_nid = 0x08;
4162
4163 codec->patch_ops = alc_patch_ops;
4164 if (board_config == ALC_MODEL_AUTO)
Takashi Iwai8452a982011-07-08 16:19:48 +02004165 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004166 spec->shutup = alc_eapd_shutup;
4167#ifdef CONFIG_SND_HDA_POWER_SAVE
4168 if (!spec->loopback.amplist)
4169 spec->loopback.amplist = alc260_loopbacks;
4170#endif
4171
4172 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004173
4174 error:
4175 alc_free(codec);
4176 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004177}
4178
4179
4180/*
4181 * ALC882/883/885/888/889 support
4182 *
4183 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4184 * configuration. Each pin widget can choose any input DACs and a mixer.
4185 * Each ADC is connected from a mixer of all inputs. This makes possible
4186 * 6-channel independent captures.
4187 *
4188 * In addition, an independent DAC for the multi-playback (not used in this
4189 * driver yet).
4190 */
4191#ifdef CONFIG_SND_HDA_POWER_SAVE
4192#define alc882_loopbacks alc880_loopbacks
4193#endif
4194
4195/*
4196 * Pin config fixes
4197 */
4198enum {
4199 PINFIX_ABIT_AW9D_MAX,
4200 PINFIX_LENOVO_Y530,
4201 PINFIX_PB_M5210,
4202 PINFIX_ACER_ASPIRE_7736,
Takashi Iwai5cdf7452011-10-26 23:04:08 +02004203 PINFIX_ASUS_W90V,
Takashi Iwai1d045db2011-07-07 18:23:21 +02004204};
4205
4206static const struct alc_fixup alc882_fixups[] = {
4207 [PINFIX_ABIT_AW9D_MAX] = {
4208 .type = ALC_FIXUP_PINS,
4209 .v.pins = (const struct alc_pincfg[]) {
4210 { 0x15, 0x01080104 }, /* side */
4211 { 0x16, 0x01011012 }, /* rear */
4212 { 0x17, 0x01016011 }, /* clfe */
4213 { }
4214 }
4215 },
4216 [PINFIX_LENOVO_Y530] = {
4217 .type = ALC_FIXUP_PINS,
4218 .v.pins = (const struct alc_pincfg[]) {
4219 { 0x15, 0x99130112 }, /* rear int speakers */
4220 { 0x16, 0x99130111 }, /* subwoofer */
4221 { }
4222 }
4223 },
4224 [PINFIX_PB_M5210] = {
4225 .type = ALC_FIXUP_VERBS,
4226 .v.verbs = (const struct hda_verb[]) {
4227 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
4228 {}
4229 }
4230 },
4231 [PINFIX_ACER_ASPIRE_7736] = {
4232 .type = ALC_FIXUP_SKU,
4233 .v.sku = ALC_FIXUP_SKU_IGNORE,
4234 },
Takashi Iwai5cdf7452011-10-26 23:04:08 +02004235 [PINFIX_ASUS_W90V] = {
4236 .type = ALC_FIXUP_PINS,
4237 .v.pins = (const struct alc_pincfg[]) {
4238 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
4239 { }
4240 }
4241 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02004242};
4243
4244static const struct snd_pci_quirk alc882_fixup_tbl[] = {
4245 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", PINFIX_PB_M5210),
Takashi Iwai5cdf7452011-10-26 23:04:08 +02004246 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", PINFIX_ASUS_W90V),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004247 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", PINFIX_LENOVO_Y530),
4248 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX),
4249 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", PINFIX_ACER_ASPIRE_7736),
4250 {}
4251};
4252
4253/*
4254 * BIOS auto configuration
4255 */
4256/* almost identical with ALC880 parser... */
4257static int alc882_parse_auto_config(struct hda_codec *codec)
4258{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004259 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004260 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4261 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004262}
4263
Takashi Iwai1d045db2011-07-07 18:23:21 +02004264/*
4265 */
4266#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4267#include "alc882_quirks.c"
4268#endif
4269
4270static int patch_alc882(struct hda_codec *codec)
4271{
4272 struct alc_spec *spec;
4273 int err, board_config;
4274
4275 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4276 if (spec == NULL)
4277 return -ENOMEM;
4278
4279 codec->spec = spec;
4280
4281 spec->mixer_nid = 0x0b;
4282
4283 switch (codec->vendor_id) {
4284 case 0x10ec0882:
4285 case 0x10ec0885:
4286 break;
4287 default:
4288 /* ALC883 and variants */
4289 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
4290 break;
4291 }
4292
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004293 err = alc_codec_rename_from_preset(codec);
4294 if (err < 0)
4295 goto error;
4296
Takashi Iwai1d045db2011-07-07 18:23:21 +02004297 board_config = alc_board_config(codec, ALC882_MODEL_LAST,
4298 alc882_models, alc882_cfg_tbl);
4299
4300 if (board_config < 0)
4301 board_config = alc_board_codec_sid_config(codec,
4302 ALC882_MODEL_LAST, alc882_models, alc882_ssid_cfg_tbl);
4303
4304 if (board_config < 0) {
4305 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4306 codec->chip_name);
4307 board_config = ALC_MODEL_AUTO;
4308 }
4309
4310 if (board_config == ALC_MODEL_AUTO) {
4311 alc_pick_fixup(codec, NULL, alc882_fixup_tbl, alc882_fixups);
4312 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4313 }
4314
4315 alc_auto_parse_customize_define(codec);
4316
4317 if (board_config == ALC_MODEL_AUTO) {
4318 /* automatic parse from the BIOS config */
4319 err = alc882_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004320 if (err < 0)
4321 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004322#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4323 else if (!err) {
4324 printk(KERN_INFO
4325 "hda_codec: Cannot set up configuration "
4326 "from BIOS. Using base mode...\n");
4327 board_config = ALC882_3ST_DIG;
4328 }
4329#endif
4330 }
4331
Takashi Iwai1d045db2011-07-07 18:23:21 +02004332 if (board_config != ALC_MODEL_AUTO)
4333 setup_preset(codec, &alc882_presets[board_config]);
4334
Takashi Iwai60a6a842011-07-27 14:01:24 +02004335 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004336 alc_auto_fill_adc_caps(codec);
4337 alc_rebuild_imux_for_auto_mic(codec);
4338 alc_remove_invalid_adc_nids(codec);
4339 }
4340
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004341 if (!spec->no_analog && !spec->cap_mixer)
4342 set_capture_mixer(codec);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004343
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004344 if (!spec->no_analog && has_cdefine_beep(codec)) {
4345 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004346 if (err < 0)
4347 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004348 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004349 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004350
4351 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4352
4353 spec->vmaster_nid = 0x0c;
4354
4355 codec->patch_ops = alc_patch_ops;
4356 if (board_config == ALC_MODEL_AUTO)
Takashi Iwaie4770622011-07-08 11:11:35 +02004357 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004358
4359 alc_init_jacks(codec);
4360#ifdef CONFIG_SND_HDA_POWER_SAVE
4361 if (!spec->loopback.amplist)
4362 spec->loopback.amplist = alc882_loopbacks;
4363#endif
4364
4365 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004366
4367 error:
4368 alc_free(codec);
4369 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004370}
4371
4372
4373/*
4374 * ALC262 support
4375 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004376static int alc262_parse_auto_config(struct hda_codec *codec)
4377{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004378 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004379 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4380 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004381}
4382
4383/*
4384 * Pin config fixes
4385 */
4386enum {
4387 PINFIX_FSC_H270,
4388 PINFIX_HP_Z200,
4389};
4390
4391static const struct alc_fixup alc262_fixups[] = {
4392 [PINFIX_FSC_H270] = {
4393 .type = ALC_FIXUP_PINS,
4394 .v.pins = (const struct alc_pincfg[]) {
4395 { 0x14, 0x99130110 }, /* speaker */
4396 { 0x15, 0x0221142f }, /* front HP */
4397 { 0x1b, 0x0121141f }, /* rear HP */
4398 { }
4399 }
4400 },
4401 [PINFIX_HP_Z200] = {
4402 .type = ALC_FIXUP_PINS,
4403 .v.pins = (const struct alc_pincfg[]) {
4404 { 0x16, 0x99130120 }, /* internal speaker */
4405 { }
4406 }
4407 },
4408};
4409
4410static const struct snd_pci_quirk alc262_fixup_tbl[] = {
4411 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", PINFIX_HP_Z200),
4412 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", PINFIX_FSC_H270),
4413 {}
4414};
4415
4416
4417#ifdef CONFIG_SND_HDA_POWER_SAVE
4418#define alc262_loopbacks alc880_loopbacks
4419#endif
4420
Takashi Iwai1d045db2011-07-07 18:23:21 +02004421/*
4422 */
4423#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4424#include "alc262_quirks.c"
4425#endif
4426
4427static int patch_alc262(struct hda_codec *codec)
4428{
4429 struct alc_spec *spec;
4430 int board_config;
4431 int err;
4432
4433 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4434 if (spec == NULL)
4435 return -ENOMEM;
4436
4437 codec->spec = spec;
4438
4439 spec->mixer_nid = 0x0b;
4440
4441#if 0
4442 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
4443 * under-run
4444 */
4445 {
4446 int tmp;
4447 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4448 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
4449 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4450 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
4451 }
4452#endif
4453 alc_auto_parse_customize_define(codec);
4454
4455 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
4456
4457 board_config = alc_board_config(codec, ALC262_MODEL_LAST,
4458 alc262_models, alc262_cfg_tbl);
4459
4460 if (board_config < 0) {
4461 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4462 codec->chip_name);
4463 board_config = ALC_MODEL_AUTO;
4464 }
4465
4466 if (board_config == ALC_MODEL_AUTO) {
4467 alc_pick_fixup(codec, NULL, alc262_fixup_tbl, alc262_fixups);
4468 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4469 }
4470
4471 if (board_config == ALC_MODEL_AUTO) {
4472 /* automatic parse from the BIOS config */
4473 err = alc262_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004474 if (err < 0)
4475 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004476#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4477 else if (!err) {
4478 printk(KERN_INFO
4479 "hda_codec: Cannot set up configuration "
4480 "from BIOS. Using base mode...\n");
4481 board_config = ALC262_BASIC;
4482 }
4483#endif
4484 }
4485
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004486 if (board_config != ALC_MODEL_AUTO)
4487 setup_preset(codec, &alc262_presets[board_config]);
4488
Takashi Iwai60a6a842011-07-27 14:01:24 +02004489 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004490 alc_auto_fill_adc_caps(codec);
4491 alc_rebuild_imux_for_auto_mic(codec);
4492 alc_remove_invalid_adc_nids(codec);
4493 }
4494
4495 if (!spec->no_analog && !spec->cap_mixer)
4496 set_capture_mixer(codec);
4497
Takashi Iwai1d045db2011-07-07 18:23:21 +02004498 if (!spec->no_analog && has_cdefine_beep(codec)) {
4499 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004500 if (err < 0)
4501 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004502 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004503 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004504
4505 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4506
4507 spec->vmaster_nid = 0x0c;
4508
4509 codec->patch_ops = alc_patch_ops;
4510 if (board_config == ALC_MODEL_AUTO)
Takashi Iwaie4770622011-07-08 11:11:35 +02004511 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004512 spec->shutup = alc_eapd_shutup;
4513
4514 alc_init_jacks(codec);
4515#ifdef CONFIG_SND_HDA_POWER_SAVE
4516 if (!spec->loopback.amplist)
4517 spec->loopback.amplist = alc262_loopbacks;
4518#endif
4519
4520 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004521
4522 error:
4523 alc_free(codec);
4524 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004525}
4526
4527/*
4528 * ALC268
4529 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004530/* bind Beep switches of both NID 0x0f and 0x10 */
4531static const struct hda_bind_ctls alc268_bind_beep_sw = {
4532 .ops = &snd_hda_bind_sw,
4533 .values = {
4534 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
4535 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
4536 0
4537 },
4538};
4539
4540static const struct snd_kcontrol_new alc268_beep_mixer[] = {
4541 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
4542 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
4543 { }
4544};
4545
4546/* set PCBEEP vol = 0, mute connections */
4547static const struct hda_verb alc268_beep_init_verbs[] = {
4548 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4549 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4550 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4551 { }
4552};
4553
4554/*
4555 * BIOS auto configuration
4556 */
4557static int alc268_parse_auto_config(struct hda_codec *codec)
4558{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004559 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai1d045db2011-07-07 18:23:21 +02004560 struct alc_spec *spec = codec->spec;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004561 int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
4562 if (err > 0) {
4563 if (!spec->no_analog && spec->autocfg.speaker_pins[0] != 0x1d) {
4564 add_mixer(spec, alc268_beep_mixer);
4565 add_verb(spec, alc268_beep_init_verbs);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004566 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004567 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004568 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004569}
4570
Takashi Iwai1d045db2011-07-07 18:23:21 +02004571/*
4572 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004573static int patch_alc268(struct hda_codec *codec)
4574{
4575 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004576 int i, has_beep, err;
4577
4578 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4579 if (spec == NULL)
4580 return -ENOMEM;
4581
4582 codec->spec = spec;
4583
4584 /* ALC268 has no aa-loopback mixer */
4585
Takashi Iwai6ebb8052011-08-16 15:15:40 +02004586 /* automatic parse from the BIOS config */
4587 err = alc268_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004588 if (err < 0)
4589 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004590
Takashi Iwai1d045db2011-07-07 18:23:21 +02004591 has_beep = 0;
4592 for (i = 0; i < spec->num_mixers; i++) {
4593 if (spec->mixers[i] == alc268_beep_mixer) {
4594 has_beep = 1;
4595 break;
4596 }
4597 }
4598
4599 if (has_beep) {
4600 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004601 if (err < 0)
4602 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004603 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
4604 /* override the amp caps for beep generator */
4605 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
4606 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
4607 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
4608 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4609 (0 << AC_AMPCAP_MUTE_SHIFT));
4610 }
4611
Takashi Iwai60a6a842011-07-27 14:01:24 +02004612 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004613 alc_auto_fill_adc_caps(codec);
4614 alc_rebuild_imux_for_auto_mic(codec);
4615 alc_remove_invalid_adc_nids(codec);
4616 }
4617
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004618 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwai1d045db2011-07-07 18:23:21 +02004619 set_capture_mixer(codec);
4620
4621 spec->vmaster_nid = 0x02;
4622
4623 codec->patch_ops = alc_patch_ops;
Takashi Iwai6ebb8052011-08-16 15:15:40 +02004624 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004625 spec->shutup = alc_eapd_shutup;
4626
4627 alc_init_jacks(codec);
4628
4629 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004630
4631 error:
4632 alc_free(codec);
4633 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004634}
4635
4636/*
4637 * ALC269
4638 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004639#ifdef CONFIG_SND_HDA_POWER_SAVE
4640#define alc269_loopbacks alc880_loopbacks
4641#endif
4642
4643static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
4644 .substreams = 1,
4645 .channels_min = 2,
4646 .channels_max = 8,
4647 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
4648 /* NID is set in alc_build_pcms */
4649 .ops = {
4650 .open = alc_playback_pcm_open,
4651 .prepare = alc_playback_pcm_prepare,
4652 .cleanup = alc_playback_pcm_cleanup
4653 },
4654};
4655
4656static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
4657 .substreams = 1,
4658 .channels_min = 2,
4659 .channels_max = 2,
4660 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
4661 /* NID is set in alc_build_pcms */
4662};
4663
4664#ifdef CONFIG_SND_HDA_POWER_SAVE
4665static int alc269_mic2_for_mute_led(struct hda_codec *codec)
4666{
4667 switch (codec->subsystem_id) {
4668 case 0x103c1586:
4669 return 1;
4670 }
4671 return 0;
4672}
4673
4674static int alc269_mic2_mute_check_ps(struct hda_codec *codec, hda_nid_t nid)
4675{
4676 /* update mute-LED according to the speaker mute state */
4677 if (nid == 0x01 || nid == 0x14) {
4678 int pinval;
4679 if (snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0) &
4680 HDA_AMP_MUTE)
4681 pinval = 0x24;
4682 else
4683 pinval = 0x20;
4684 /* mic2 vref pin is used for mute LED control */
4685 snd_hda_codec_update_cache(codec, 0x19, 0,
4686 AC_VERB_SET_PIN_WIDGET_CONTROL,
4687 pinval);
4688 }
4689 return alc_check_power_status(codec, nid);
4690}
4691#endif /* CONFIG_SND_HDA_POWER_SAVE */
4692
4693/* different alc269-variants */
4694enum {
4695 ALC269_TYPE_ALC269VA,
4696 ALC269_TYPE_ALC269VB,
4697 ALC269_TYPE_ALC269VC,
4698};
4699
4700/*
4701 * BIOS auto configuration
4702 */
4703static int alc269_parse_auto_config(struct hda_codec *codec)
4704{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004705 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004706 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
4707 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4708 struct alc_spec *spec = codec->spec;
4709 const hda_nid_t *ssids = spec->codec_variant == ALC269_TYPE_ALC269VA ?
4710 alc269va_ssids : alc269_ssids;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004711
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004712 return alc_parse_auto_config(codec, alc269_ignore, ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004713}
4714
Takashi Iwai1d045db2011-07-07 18:23:21 +02004715static void alc269_toggle_power_output(struct hda_codec *codec, int power_up)
4716{
4717 int val = alc_read_coef_idx(codec, 0x04);
4718 if (power_up)
4719 val |= 1 << 11;
4720 else
4721 val &= ~(1 << 11);
4722 alc_write_coef_idx(codec, 0x04, val);
4723}
4724
4725static void alc269_shutup(struct hda_codec *codec)
4726{
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004727 if ((alc_get_coef0(codec) & 0x00ff) == 0x017)
Takashi Iwai1d045db2011-07-07 18:23:21 +02004728 alc269_toggle_power_output(codec, 0);
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004729 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004730 alc269_toggle_power_output(codec, 0);
4731 msleep(150);
4732 }
4733}
4734
Takashi Iwai2a439522011-07-26 09:52:50 +02004735#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02004736static int alc269_resume(struct hda_codec *codec)
4737{
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004738 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004739 alc269_toggle_power_output(codec, 0);
4740 msleep(150);
4741 }
4742
4743 codec->patch_ops.init(codec);
4744
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004745 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004746 alc269_toggle_power_output(codec, 1);
4747 msleep(200);
4748 }
4749
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004750 if ((alc_get_coef0(codec) & 0x00ff) == 0x018)
Takashi Iwai1d045db2011-07-07 18:23:21 +02004751 alc269_toggle_power_output(codec, 1);
4752
4753 snd_hda_codec_resume_amp(codec);
4754 snd_hda_codec_resume_cache(codec);
4755 hda_call_check_power_status(codec, 0x01);
4756 return 0;
4757}
Takashi Iwai2a439522011-07-26 09:52:50 +02004758#endif /* CONFIG_PM */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004759
4760static void alc269_fixup_hweq(struct hda_codec *codec,
4761 const struct alc_fixup *fix, int action)
4762{
4763 int coef;
4764
4765 if (action != ALC_FIXUP_ACT_INIT)
4766 return;
4767 coef = alc_read_coef_idx(codec, 0x1e);
4768 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
4769}
4770
4771static void alc271_fixup_dmic(struct hda_codec *codec,
4772 const struct alc_fixup *fix, int action)
4773{
4774 static const struct hda_verb verbs[] = {
4775 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
4776 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
4777 {}
4778 };
4779 unsigned int cfg;
4780
4781 if (strcmp(codec->chip_name, "ALC271X"))
4782 return;
4783 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
4784 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
4785 snd_hda_sequence_write(codec, verbs);
4786}
4787
Takashi Iwai017f2a12011-07-09 14:42:25 +02004788static void alc269_fixup_pcm_44k(struct hda_codec *codec,
4789 const struct alc_fixup *fix, int action)
4790{
4791 struct alc_spec *spec = codec->spec;
4792
4793 if (action != ALC_FIXUP_ACT_PROBE)
4794 return;
4795
4796 /* Due to a hardware problem on Lenovo Ideadpad, we need to
4797 * fix the sample rate of analog I/O to 44.1kHz
4798 */
4799 spec->stream_analog_playback = &alc269_44k_pcm_analog_playback;
4800 spec->stream_analog_capture = &alc269_44k_pcm_analog_capture;
4801}
4802
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02004803static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
4804 const struct alc_fixup *fix, int action)
4805{
4806 int coef;
4807
4808 if (action != ALC_FIXUP_ACT_INIT)
4809 return;
4810 /* The digital-mic unit sends PDM (differential signal) instead of
4811 * the standard PCM, thus you can't record a valid mono stream as is.
4812 * Below is a workaround specific to ALC269 to control the dmic
4813 * signal source as mono.
4814 */
4815 coef = alc_read_coef_idx(codec, 0x07);
4816 alc_write_coef_idx(codec, 0x07, coef | 0x80);
4817}
4818
Takashi Iwai24519912011-08-16 15:08:49 +02004819static void alc269_quanta_automute(struct hda_codec *codec)
4820{
David Henningsson42cf0d02011-09-20 12:04:56 +02004821 update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +02004822
4823 snd_hda_codec_write(codec, 0x20, 0,
4824 AC_VERB_SET_COEF_INDEX, 0x0c);
4825 snd_hda_codec_write(codec, 0x20, 0,
4826 AC_VERB_SET_PROC_COEF, 0x680);
4827
4828 snd_hda_codec_write(codec, 0x20, 0,
4829 AC_VERB_SET_COEF_INDEX, 0x0c);
4830 snd_hda_codec_write(codec, 0x20, 0,
4831 AC_VERB_SET_PROC_COEF, 0x480);
4832}
4833
4834static void alc269_fixup_quanta_mute(struct hda_codec *codec,
4835 const struct alc_fixup *fix, int action)
4836{
4837 struct alc_spec *spec = codec->spec;
4838 if (action != ALC_FIXUP_ACT_PROBE)
4839 return;
4840 spec->automute_hook = alc269_quanta_automute;
4841}
4842
Takashi Iwai1d045db2011-07-07 18:23:21 +02004843enum {
4844 ALC269_FIXUP_SONY_VAIO,
4845 ALC275_FIXUP_SONY_VAIO_GPIO2,
4846 ALC269_FIXUP_DELL_M101Z,
4847 ALC269_FIXUP_SKU_IGNORE,
4848 ALC269_FIXUP_ASUS_G73JW,
4849 ALC269_FIXUP_LENOVO_EAPD,
4850 ALC275_FIXUP_SONY_HWEQ,
4851 ALC271_FIXUP_DMIC,
Takashi Iwai017f2a12011-07-09 14:42:25 +02004852 ALC269_FIXUP_PCM_44K,
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02004853 ALC269_FIXUP_STEREO_DMIC,
Takashi Iwai24519912011-08-16 15:08:49 +02004854 ALC269_FIXUP_QUANTA_MUTE,
4855 ALC269_FIXUP_LIFEBOOK,
Takashi Iwaia4297b52011-08-23 18:40:12 +02004856 ALC269_FIXUP_AMIC,
4857 ALC269_FIXUP_DMIC,
4858 ALC269VB_FIXUP_AMIC,
4859 ALC269VB_FIXUP_DMIC,
Takashi Iwai1d045db2011-07-07 18:23:21 +02004860};
4861
4862static const struct alc_fixup alc269_fixups[] = {
4863 [ALC269_FIXUP_SONY_VAIO] = {
4864 .type = ALC_FIXUP_VERBS,
4865 .v.verbs = (const struct hda_verb[]) {
4866 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
4867 {}
4868 }
4869 },
4870 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
4871 .type = ALC_FIXUP_VERBS,
4872 .v.verbs = (const struct hda_verb[]) {
4873 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
4874 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
4875 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4876 { }
4877 },
4878 .chained = true,
4879 .chain_id = ALC269_FIXUP_SONY_VAIO
4880 },
4881 [ALC269_FIXUP_DELL_M101Z] = {
4882 .type = ALC_FIXUP_VERBS,
4883 .v.verbs = (const struct hda_verb[]) {
4884 /* Enables internal speaker */
4885 {0x20, AC_VERB_SET_COEF_INDEX, 13},
4886 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
4887 {}
4888 }
4889 },
4890 [ALC269_FIXUP_SKU_IGNORE] = {
4891 .type = ALC_FIXUP_SKU,
4892 .v.sku = ALC_FIXUP_SKU_IGNORE,
4893 },
4894 [ALC269_FIXUP_ASUS_G73JW] = {
4895 .type = ALC_FIXUP_PINS,
4896 .v.pins = (const struct alc_pincfg[]) {
4897 { 0x17, 0x99130111 }, /* subwoofer */
4898 { }
4899 }
4900 },
4901 [ALC269_FIXUP_LENOVO_EAPD] = {
4902 .type = ALC_FIXUP_VERBS,
4903 .v.verbs = (const struct hda_verb[]) {
4904 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
4905 {}
4906 }
4907 },
4908 [ALC275_FIXUP_SONY_HWEQ] = {
4909 .type = ALC_FIXUP_FUNC,
4910 .v.func = alc269_fixup_hweq,
4911 .chained = true,
4912 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
4913 },
4914 [ALC271_FIXUP_DMIC] = {
4915 .type = ALC_FIXUP_FUNC,
4916 .v.func = alc271_fixup_dmic,
4917 },
Takashi Iwai017f2a12011-07-09 14:42:25 +02004918 [ALC269_FIXUP_PCM_44K] = {
4919 .type = ALC_FIXUP_FUNC,
4920 .v.func = alc269_fixup_pcm_44k,
4921 },
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02004922 [ALC269_FIXUP_STEREO_DMIC] = {
4923 .type = ALC_FIXUP_FUNC,
4924 .v.func = alc269_fixup_stereo_dmic,
4925 },
Takashi Iwai24519912011-08-16 15:08:49 +02004926 [ALC269_FIXUP_QUANTA_MUTE] = {
4927 .type = ALC_FIXUP_FUNC,
4928 .v.func = alc269_fixup_quanta_mute,
4929 },
4930 [ALC269_FIXUP_LIFEBOOK] = {
4931 .type = ALC_FIXUP_PINS,
4932 .v.pins = (const struct alc_pincfg[]) {
4933 { 0x1a, 0x2101103f }, /* dock line-out */
4934 { 0x1b, 0x23a11040 }, /* dock mic-in */
4935 { }
4936 },
4937 .chained = true,
4938 .chain_id = ALC269_FIXUP_QUANTA_MUTE
4939 },
Takashi Iwaia4297b52011-08-23 18:40:12 +02004940 [ALC269_FIXUP_AMIC] = {
4941 .type = ALC_FIXUP_PINS,
4942 .v.pins = (const struct alc_pincfg[]) {
4943 { 0x14, 0x99130110 }, /* speaker */
4944 { 0x15, 0x0121401f }, /* HP out */
4945 { 0x18, 0x01a19c20 }, /* mic */
4946 { 0x19, 0x99a3092f }, /* int-mic */
4947 { }
4948 },
4949 },
4950 [ALC269_FIXUP_DMIC] = {
4951 .type = ALC_FIXUP_PINS,
4952 .v.pins = (const struct alc_pincfg[]) {
4953 { 0x12, 0x99a3092f }, /* int-mic */
4954 { 0x14, 0x99130110 }, /* speaker */
4955 { 0x15, 0x0121401f }, /* HP out */
4956 { 0x18, 0x01a19c20 }, /* mic */
4957 { }
4958 },
4959 },
4960 [ALC269VB_FIXUP_AMIC] = {
4961 .type = ALC_FIXUP_PINS,
4962 .v.pins = (const struct alc_pincfg[]) {
4963 { 0x14, 0x99130110 }, /* speaker */
4964 { 0x18, 0x01a19c20 }, /* mic */
4965 { 0x19, 0x99a3092f }, /* int-mic */
4966 { 0x21, 0x0121401f }, /* HP out */
4967 { }
4968 },
4969 },
4970 [ALC269_FIXUP_DMIC] = {
4971 .type = ALC_FIXUP_PINS,
4972 .v.pins = (const struct alc_pincfg[]) {
4973 { 0x12, 0x99a3092f }, /* int-mic */
4974 { 0x14, 0x99130110 }, /* speaker */
4975 { 0x18, 0x01a19c20 }, /* mic */
4976 { 0x21, 0x0121401f }, /* HP out */
4977 { }
4978 },
4979 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02004980};
4981
4982static const struct snd_pci_quirk alc269_fixup_tbl[] = {
Takashi Iwai017f2a12011-07-09 14:42:25 +02004983 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02004984 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
4985 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
4986 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
4987 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
4988 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004989 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
4990 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4991 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4992 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
4993 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
4994 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
Takashi Iwai24519912011-08-16 15:08:49 +02004995 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004996 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
4997 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
4998 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
4999 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
5000 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
Takashi Iwai24519912011-08-16 15:08:49 +02005001 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_QUANTA_MUTE),
Takashi Iwai017f2a12011-07-09 14:42:25 +02005002 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Lenovo Ideapd", ALC269_FIXUP_PCM_44K),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005003 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
Takashi Iwaia4297b52011-08-23 18:40:12 +02005004
5005#if 1
5006 /* Below is a quirk table taken from the old code.
5007 * Basically the device should work as is without the fixup table.
5008 * If BIOS doesn't give a proper info, enable the corresponding
5009 * fixup entry.
5010 */
5011 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
5012 ALC269_FIXUP_AMIC),
5013 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
5014 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS N63Jn", ALC269_FIXUP_AMIC),
5015 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
5016 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
5017 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
5018 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
5019 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
5020 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
5021 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
5022 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
5023 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
5024 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
5025 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
5026 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
5027 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
5028 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
5029 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
5030 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
5031 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
5032 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
5033 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
5034 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
5035 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
5036 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
5037 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
5038 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
5039 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
5040 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
5041 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
5042 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
5043 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
5044 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
5045 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
5046 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
5047 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
5048 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
5049 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
5050 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
5051 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
5052 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
5053#endif
5054 {}
5055};
5056
5057static const struct alc_model_fixup alc269_fixup_models[] = {
5058 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
5059 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
Takashi Iwai1d045db2011-07-07 18:23:21 +02005060 {}
5061};
5062
5063
5064static int alc269_fill_coef(struct hda_codec *codec)
5065{
5066 int val;
5067
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005068 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005069 alc_write_coef_idx(codec, 0xf, 0x960b);
5070 alc_write_coef_idx(codec, 0xe, 0x8817);
5071 }
5072
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005073 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005074 alc_write_coef_idx(codec, 0xf, 0x960b);
5075 alc_write_coef_idx(codec, 0xe, 0x8814);
5076 }
5077
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005078 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005079 val = alc_read_coef_idx(codec, 0x04);
5080 /* Power up output pin */
5081 alc_write_coef_idx(codec, 0x04, val | (1<<11));
5082 }
5083
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005084 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005085 val = alc_read_coef_idx(codec, 0xd);
5086 if ((val & 0x0c00) >> 10 != 0x1) {
5087 /* Capless ramp up clock control */
5088 alc_write_coef_idx(codec, 0xd, val | (1<<10));
5089 }
5090 val = alc_read_coef_idx(codec, 0x17);
5091 if ((val & 0x01c0) >> 6 != 0x4) {
5092 /* Class D power on reset */
5093 alc_write_coef_idx(codec, 0x17, val | (1<<7));
5094 }
5095 }
5096
5097 val = alc_read_coef_idx(codec, 0xd); /* Class D */
5098 alc_write_coef_idx(codec, 0xd, val | (1<<14));
5099
5100 val = alc_read_coef_idx(codec, 0x4); /* HP */
5101 alc_write_coef_idx(codec, 0x4, val | (1<<11));
5102
5103 return 0;
5104}
5105
5106/*
5107 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005108static int patch_alc269(struct hda_codec *codec)
5109{
5110 struct alc_spec *spec;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005111 int err = 0;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005112
5113 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5114 if (spec == NULL)
5115 return -ENOMEM;
5116
5117 codec->spec = spec;
5118
5119 spec->mixer_nid = 0x0b;
5120
5121 alc_auto_parse_customize_define(codec);
5122
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005123 err = alc_codec_rename_from_preset(codec);
5124 if (err < 0)
5125 goto error;
5126
Takashi Iwai1d045db2011-07-07 18:23:21 +02005127 if (codec->vendor_id == 0x10ec0269) {
5128 spec->codec_variant = ALC269_TYPE_ALC269VA;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005129 switch (alc_get_coef0(codec) & 0x00f0) {
5130 case 0x0010:
Takashi Iwai1d045db2011-07-07 18:23:21 +02005131 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005132 spec->cdefine.platform_type == 1)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005133 err = alc_codec_rename(codec, "ALC271X");
Takashi Iwai1d045db2011-07-07 18:23:21 +02005134 spec->codec_variant = ALC269_TYPE_ALC269VB;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005135 break;
5136 case 0x0020:
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005137 if (codec->bus->pci->subsystem_vendor == 0x17aa &&
5138 codec->bus->pci->subsystem_device == 0x21f3)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005139 err = alc_codec_rename(codec, "ALC3202");
Takashi Iwai1d045db2011-07-07 18:23:21 +02005140 spec->codec_variant = ALC269_TYPE_ALC269VC;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005141 break;
5142 default:
Takashi Iwai1d045db2011-07-07 18:23:21 +02005143 alc_fix_pll_init(codec, 0x20, 0x04, 15);
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005144 }
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005145 if (err < 0)
5146 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005147 alc269_fill_coef(codec);
5148 }
5149
Takashi Iwaia4297b52011-08-23 18:40:12 +02005150 alc_pick_fixup(codec, alc269_fixup_models,
5151 alc269_fixup_tbl, alc269_fixups);
5152 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005153
Takashi Iwaia4297b52011-08-23 18:40:12 +02005154 /* automatic parse from the BIOS config */
5155 err = alc269_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005156 if (err < 0)
5157 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005158
Takashi Iwai60a6a842011-07-27 14:01:24 +02005159 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005160 alc_auto_fill_adc_caps(codec);
5161 alc_rebuild_imux_for_auto_mic(codec);
5162 alc_remove_invalid_adc_nids(codec);
5163 }
5164
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005165 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005166 set_capture_mixer(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005167
5168 if (!spec->no_analog && has_cdefine_beep(codec)) {
5169 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005170 if (err < 0)
5171 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005172 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005173 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005174
5175 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5176
5177 spec->vmaster_nid = 0x02;
5178
5179 codec->patch_ops = alc_patch_ops;
Takashi Iwai2a439522011-07-26 09:52:50 +02005180#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02005181 codec->patch_ops.resume = alc269_resume;
5182#endif
Takashi Iwaia4297b52011-08-23 18:40:12 +02005183 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005184 spec->shutup = alc269_shutup;
5185
5186 alc_init_jacks(codec);
5187#ifdef CONFIG_SND_HDA_POWER_SAVE
5188 if (!spec->loopback.amplist)
5189 spec->loopback.amplist = alc269_loopbacks;
5190 if (alc269_mic2_for_mute_led(codec))
5191 codec->patch_ops.check_power_status = alc269_mic2_mute_check_ps;
5192#endif
5193
5194 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005195
5196 error:
5197 alc_free(codec);
5198 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005199}
5200
5201/*
5202 * ALC861
5203 */
5204
Takashi Iwai1d045db2011-07-07 18:23:21 +02005205static int alc861_parse_auto_config(struct hda_codec *codec)
5206{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005207 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005208 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
5209 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005210}
5211
Takashi Iwai1d045db2011-07-07 18:23:21 +02005212#ifdef CONFIG_SND_HDA_POWER_SAVE
5213static const struct hda_amp_list alc861_loopbacks[] = {
5214 { 0x15, HDA_INPUT, 0 },
5215 { 0x15, HDA_INPUT, 1 },
5216 { 0x15, HDA_INPUT, 2 },
5217 { 0x15, HDA_INPUT, 3 },
5218 { } /* end */
5219};
5220#endif
5221
5222
5223/* Pin config fixes */
5224enum {
5225 PINFIX_FSC_AMILO_PI1505,
5226};
5227
5228static const struct alc_fixup alc861_fixups[] = {
5229 [PINFIX_FSC_AMILO_PI1505] = {
5230 .type = ALC_FIXUP_PINS,
5231 .v.pins = (const struct alc_pincfg[]) {
5232 { 0x0b, 0x0221101f }, /* HP */
5233 { 0x0f, 0x90170310 }, /* speaker */
5234 { }
5235 }
5236 },
5237};
5238
5239static const struct snd_pci_quirk alc861_fixup_tbl[] = {
5240 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", PINFIX_FSC_AMILO_PI1505),
5241 {}
5242};
5243
5244/*
5245 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005246static int patch_alc861(struct hda_codec *codec)
5247{
5248 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005249 int err;
5250
5251 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5252 if (spec == NULL)
5253 return -ENOMEM;
5254
5255 codec->spec = spec;
5256
5257 spec->mixer_nid = 0x15;
5258
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005259 alc_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
5260 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005261
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005262 /* automatic parse from the BIOS config */
5263 err = alc861_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005264 if (err < 0)
5265 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005266
Takashi Iwai60a6a842011-07-27 14:01:24 +02005267 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005268 alc_auto_fill_adc_caps(codec);
5269 alc_rebuild_imux_for_auto_mic(codec);
5270 alc_remove_invalid_adc_nids(codec);
5271 }
5272
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005273 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005274 set_capture_mixer(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005275
5276 if (!spec->no_analog) {
5277 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005278 if (err < 0)
5279 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005280 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
5281 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005282
5283 spec->vmaster_nid = 0x03;
5284
5285 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5286
5287 codec->patch_ops = alc_patch_ops;
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005288 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005289#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005290 spec->power_hook = alc_power_eapd;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005291 if (!spec->loopback.amplist)
5292 spec->loopback.amplist = alc861_loopbacks;
5293#endif
5294
5295 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005296
5297 error:
5298 alc_free(codec);
5299 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005300}
5301
5302/*
5303 * ALC861-VD support
5304 *
5305 * Based on ALC882
5306 *
5307 * In addition, an independent DAC
5308 */
5309#ifdef CONFIG_SND_HDA_POWER_SAVE
5310#define alc861vd_loopbacks alc880_loopbacks
5311#endif
5312
Takashi Iwai1d045db2011-07-07 18:23:21 +02005313static int alc861vd_parse_auto_config(struct hda_codec *codec)
5314{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005315 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005316 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5317 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005318}
5319
Takashi Iwai1d045db2011-07-07 18:23:21 +02005320enum {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005321 ALC660VD_FIX_ASUS_GPIO1,
5322 ALC861VD_FIX_DALLAS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005323};
5324
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005325/* exclude VREF80 */
5326static void alc861vd_fixup_dallas(struct hda_codec *codec,
5327 const struct alc_fixup *fix, int action)
5328{
5329 if (action == ALC_FIXUP_ACT_PRE_PROBE) {
5330 snd_hda_override_pin_caps(codec, 0x18, 0x00001714);
5331 snd_hda_override_pin_caps(codec, 0x19, 0x0000171c);
5332 }
5333}
5334
Takashi Iwai1d045db2011-07-07 18:23:21 +02005335static const struct alc_fixup alc861vd_fixups[] = {
5336 [ALC660VD_FIX_ASUS_GPIO1] = {
5337 .type = ALC_FIXUP_VERBS,
5338 .v.verbs = (const struct hda_verb[]) {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005339 /* reset GPIO1 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005340 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5341 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
5342 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
5343 { }
5344 }
5345 },
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005346 [ALC861VD_FIX_DALLAS] = {
5347 .type = ALC_FIXUP_FUNC,
5348 .v.func = alc861vd_fixup_dallas,
5349 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005350};
5351
5352static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005353 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005354 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005355 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005356 {}
5357};
5358
5359static const struct hda_verb alc660vd_eapd_verbs[] = {
5360 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
5361 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
5362 { }
5363};
5364
5365/*
5366 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005367static int patch_alc861vd(struct hda_codec *codec)
5368{
5369 struct alc_spec *spec;
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005370 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005371
5372 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5373 if (spec == NULL)
5374 return -ENOMEM;
5375
5376 codec->spec = spec;
5377
5378 spec->mixer_nid = 0x0b;
5379
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005380 alc_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
5381 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005382
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005383 /* automatic parse from the BIOS config */
5384 err = alc861vd_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005385 if (err < 0)
5386 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005387
Takashi Iwai1d045db2011-07-07 18:23:21 +02005388 if (codec->vendor_id == 0x10ec0660) {
5389 /* always turn on EAPD */
5390 add_verb(spec, alc660vd_eapd_verbs);
5391 }
5392
Takashi Iwai60a6a842011-07-27 14:01:24 +02005393 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005394 alc_auto_fill_adc_caps(codec);
5395 alc_rebuild_imux_for_auto_mic(codec);
5396 alc_remove_invalid_adc_nids(codec);
5397 }
5398
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005399 if (!spec->no_analog && !spec->cap_mixer)
5400 set_capture_mixer(codec);
5401
5402 if (!spec->no_analog) {
5403 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005404 if (err < 0)
5405 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005406 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5407 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005408
5409 spec->vmaster_nid = 0x02;
5410
5411 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5412
5413 codec->patch_ops = alc_patch_ops;
5414
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005415 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005416 spec->shutup = alc_eapd_shutup;
5417#ifdef CONFIG_SND_HDA_POWER_SAVE
5418 if (!spec->loopback.amplist)
5419 spec->loopback.amplist = alc861vd_loopbacks;
5420#endif
5421
5422 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005423
5424 error:
5425 alc_free(codec);
5426 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005427}
5428
5429/*
5430 * ALC662 support
5431 *
5432 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
5433 * configuration. Each pin widget can choose any input DACs and a mixer.
5434 * Each ADC is connected from a mixer of all inputs. This makes possible
5435 * 6-channel independent captures.
5436 *
5437 * In addition, an independent DAC for the multi-playback (not used in this
5438 * driver yet).
5439 */
5440#ifdef CONFIG_SND_HDA_POWER_SAVE
5441#define alc662_loopbacks alc880_loopbacks
5442#endif
5443
5444/*
5445 * BIOS auto configuration
5446 */
5447
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005448static int alc662_parse_auto_config(struct hda_codec *codec)
5449{
Takashi Iwai4c6d72d2011-05-02 11:30:18 +02005450 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005451 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
5452 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5453 const hda_nid_t *ssids;
Takashi Iwaiee979a142008-09-02 15:42:20 +02005454
Kailang Yang6227cdc2010-02-25 08:36:52 +01005455 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
5456 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005457 ssids = alc663_ssids;
Kailang Yang6227cdc2010-02-25 08:36:52 +01005458 else
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005459 ssids = alc662_ssids;
5460 return alc_parse_auto_config(codec, alc662_ignore, ssids);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005461}
5462
Todd Broch6be79482010-12-07 16:51:05 -08005463static void alc272_fixup_mario(struct hda_codec *codec,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005464 const struct alc_fixup *fix, int action)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01005465{
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005466 if (action != ALC_FIXUP_ACT_PROBE)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01005467 return;
Todd Broch6be79482010-12-07 16:51:05 -08005468 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
5469 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
5470 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
5471 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5472 (0 << AC_AMPCAP_MUTE_SHIFT)))
5473 printk(KERN_WARNING
5474 "hda_codec: failed to override amp caps for NID 0x2\n");
5475}
5476
David Henningsson6cb3b702010-09-09 08:51:44 +02005477enum {
Daniel T Chen2df03512010-10-10 22:39:28 -04005478 ALC662_FIXUP_ASPIRE,
David Henningsson6cb3b702010-09-09 08:51:44 +02005479 ALC662_FIXUP_IDEAPAD,
Todd Broch6be79482010-12-07 16:51:05 -08005480 ALC272_FIXUP_MARIO,
Anisse Astierd2ebd472011-01-20 12:36:21 +01005481 ALC662_FIXUP_CZC_P10T,
David Henningsson94024cd2011-04-29 14:10:55 +02005482 ALC662_FIXUP_SKU_IGNORE,
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02005483 ALC662_FIXUP_HP_RP5800,
Takashi Iwai53c334a2011-08-23 18:27:14 +02005484 ALC662_FIXUP_ASUS_MODE1,
5485 ALC662_FIXUP_ASUS_MODE2,
5486 ALC662_FIXUP_ASUS_MODE3,
5487 ALC662_FIXUP_ASUS_MODE4,
5488 ALC662_FIXUP_ASUS_MODE5,
5489 ALC662_FIXUP_ASUS_MODE6,
5490 ALC662_FIXUP_ASUS_MODE7,
5491 ALC662_FIXUP_ASUS_MODE8,
David Henningsson6cb3b702010-09-09 08:51:44 +02005492};
5493
5494static const struct alc_fixup alc662_fixups[] = {
Daniel T Chen2df03512010-10-10 22:39:28 -04005495 [ALC662_FIXUP_ASPIRE] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005496 .type = ALC_FIXUP_PINS,
5497 .v.pins = (const struct alc_pincfg[]) {
Daniel T Chen2df03512010-10-10 22:39:28 -04005498 { 0x15, 0x99130112 }, /* subwoofer */
5499 { }
5500 }
5501 },
David Henningsson6cb3b702010-09-09 08:51:44 +02005502 [ALC662_FIXUP_IDEAPAD] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005503 .type = ALC_FIXUP_PINS,
5504 .v.pins = (const struct alc_pincfg[]) {
David Henningsson6cb3b702010-09-09 08:51:44 +02005505 { 0x17, 0x99130112 }, /* subwoofer */
5506 { }
5507 }
5508 },
Todd Broch6be79482010-12-07 16:51:05 -08005509 [ALC272_FIXUP_MARIO] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005510 .type = ALC_FIXUP_FUNC,
5511 .v.func = alc272_fixup_mario,
Anisse Astierd2ebd472011-01-20 12:36:21 +01005512 },
5513 [ALC662_FIXUP_CZC_P10T] = {
5514 .type = ALC_FIXUP_VERBS,
5515 .v.verbs = (const struct hda_verb[]) {
5516 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5517 {}
5518 }
5519 },
David Henningsson94024cd2011-04-29 14:10:55 +02005520 [ALC662_FIXUP_SKU_IGNORE] = {
5521 .type = ALC_FIXUP_SKU,
5522 .v.sku = ALC_FIXUP_SKU_IGNORE,
Takashi Iwaic6b35872011-03-28 12:05:31 +02005523 },
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02005524 [ALC662_FIXUP_HP_RP5800] = {
5525 .type = ALC_FIXUP_PINS,
5526 .v.pins = (const struct alc_pincfg[]) {
5527 { 0x14, 0x0221201f }, /* HP out */
5528 { }
5529 },
5530 .chained = true,
5531 .chain_id = ALC662_FIXUP_SKU_IGNORE
5532 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02005533 [ALC662_FIXUP_ASUS_MODE1] = {
5534 .type = ALC_FIXUP_PINS,
5535 .v.pins = (const struct alc_pincfg[]) {
5536 { 0x14, 0x99130110 }, /* speaker */
5537 { 0x18, 0x01a19c20 }, /* mic */
5538 { 0x19, 0x99a3092f }, /* int-mic */
5539 { 0x21, 0x0121401f }, /* HP out */
5540 { }
5541 },
5542 .chained = true,
5543 .chain_id = ALC662_FIXUP_SKU_IGNORE
5544 },
5545 [ALC662_FIXUP_ASUS_MODE2] = {
Takashi Iwai2996bdb2011-08-18 16:02:24 +02005546 .type = ALC_FIXUP_PINS,
5547 .v.pins = (const struct alc_pincfg[]) {
5548 { 0x14, 0x99130110 }, /* speaker */
5549 { 0x18, 0x01a19820 }, /* mic */
5550 { 0x19, 0x99a3092f }, /* int-mic */
5551 { 0x1b, 0x0121401f }, /* HP out */
5552 { }
5553 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02005554 .chained = true,
5555 .chain_id = ALC662_FIXUP_SKU_IGNORE
5556 },
5557 [ALC662_FIXUP_ASUS_MODE3] = {
5558 .type = ALC_FIXUP_PINS,
5559 .v.pins = (const struct alc_pincfg[]) {
5560 { 0x14, 0x99130110 }, /* speaker */
5561 { 0x15, 0x0121441f }, /* HP */
5562 { 0x18, 0x01a19840 }, /* mic */
5563 { 0x19, 0x99a3094f }, /* int-mic */
5564 { 0x21, 0x01211420 }, /* HP2 */
5565 { }
5566 },
5567 .chained = true,
5568 .chain_id = ALC662_FIXUP_SKU_IGNORE
5569 },
5570 [ALC662_FIXUP_ASUS_MODE4] = {
5571 .type = ALC_FIXUP_PINS,
5572 .v.pins = (const struct alc_pincfg[]) {
5573 { 0x14, 0x99130110 }, /* speaker */
5574 { 0x16, 0x99130111 }, /* speaker */
5575 { 0x18, 0x01a19840 }, /* mic */
5576 { 0x19, 0x99a3094f }, /* int-mic */
5577 { 0x21, 0x0121441f }, /* HP */
5578 { }
5579 },
5580 .chained = true,
5581 .chain_id = ALC662_FIXUP_SKU_IGNORE
5582 },
5583 [ALC662_FIXUP_ASUS_MODE5] = {
5584 .type = ALC_FIXUP_PINS,
5585 .v.pins = (const struct alc_pincfg[]) {
5586 { 0x14, 0x99130110 }, /* speaker */
5587 { 0x15, 0x0121441f }, /* HP */
5588 { 0x16, 0x99130111 }, /* speaker */
5589 { 0x18, 0x01a19840 }, /* mic */
5590 { 0x19, 0x99a3094f }, /* int-mic */
5591 { }
5592 },
5593 .chained = true,
5594 .chain_id = ALC662_FIXUP_SKU_IGNORE
5595 },
5596 [ALC662_FIXUP_ASUS_MODE6] = {
5597 .type = ALC_FIXUP_PINS,
5598 .v.pins = (const struct alc_pincfg[]) {
5599 { 0x14, 0x99130110 }, /* speaker */
5600 { 0x15, 0x01211420 }, /* HP2 */
5601 { 0x18, 0x01a19840 }, /* mic */
5602 { 0x19, 0x99a3094f }, /* int-mic */
5603 { 0x1b, 0x0121441f }, /* HP */
5604 { }
5605 },
5606 .chained = true,
5607 .chain_id = ALC662_FIXUP_SKU_IGNORE
5608 },
5609 [ALC662_FIXUP_ASUS_MODE7] = {
5610 .type = ALC_FIXUP_PINS,
5611 .v.pins = (const struct alc_pincfg[]) {
5612 { 0x14, 0x99130110 }, /* speaker */
5613 { 0x17, 0x99130111 }, /* speaker */
5614 { 0x18, 0x01a19840 }, /* mic */
5615 { 0x19, 0x99a3094f }, /* int-mic */
5616 { 0x1b, 0x01214020 }, /* HP */
5617 { 0x21, 0x0121401f }, /* HP */
5618 { }
5619 },
5620 .chained = true,
5621 .chain_id = ALC662_FIXUP_SKU_IGNORE
5622 },
5623 [ALC662_FIXUP_ASUS_MODE8] = {
5624 .type = ALC_FIXUP_PINS,
5625 .v.pins = (const struct alc_pincfg[]) {
5626 { 0x14, 0x99130110 }, /* speaker */
5627 { 0x12, 0x99a30970 }, /* int-mic */
5628 { 0x15, 0x01214020 }, /* HP */
5629 { 0x17, 0x99130111 }, /* speaker */
5630 { 0x18, 0x01a19840 }, /* mic */
5631 { 0x21, 0x0121401f }, /* HP */
5632 { }
5633 },
5634 .chained = true,
5635 .chain_id = ALC662_FIXUP_SKU_IGNORE
Takashi Iwai2996bdb2011-08-18 16:02:24 +02005636 },
David Henningsson6cb3b702010-09-09 08:51:44 +02005637};
5638
Takashi Iwaia9111322011-05-02 11:30:18 +02005639static const struct snd_pci_quirk alc662_fixup_tbl[] = {
Takashi Iwai53c334a2011-08-23 18:27:14 +02005640 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
David Henningssona6c47a82011-02-10 15:39:19 +01005641 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
David Henningsson94024cd2011-04-29 14:10:55 +02005642 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
Daniel T Chen2df03512010-10-10 22:39:28 -04005643 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02005644 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
Takashi Iwai53c334a2011-08-23 18:27:14 +02005645 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
Daniel T Chena0e90ac2010-11-20 10:20:35 -05005646 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
Valentine Sinitsynd4118582010-10-01 22:24:08 +06005647 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
David Henningsson6cb3b702010-09-09 08:51:44 +02005648 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
Anisse Astierd2ebd472011-01-20 12:36:21 +01005649 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
Takashi Iwai53c334a2011-08-23 18:27:14 +02005650
5651#if 0
5652 /* Below is a quirk table taken from the old code.
5653 * Basically the device should work as is without the fixup table.
5654 * If BIOS doesn't give a proper info, enable the corresponding
5655 * fixup entry.
5656 */
5657 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
5658 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
5659 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
5660 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
5661 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5662 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5663 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5664 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
5665 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
5666 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5667 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
5668 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
5669 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
5670 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
5671 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
5672 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5673 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
5674 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
5675 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5676 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5677 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5678 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5679 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
5680 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
5681 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
5682 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5683 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
5684 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5685 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5686 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
5687 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5688 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5689 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
5690 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
5691 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
5692 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
5693 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
5694 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
5695 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
5696 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5697 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
5698 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
5699 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5700 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
5701 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
5702 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
5703 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
5704 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
5705 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5706 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
5707#endif
David Henningsson6cb3b702010-09-09 08:51:44 +02005708 {}
5709};
5710
Todd Broch6be79482010-12-07 16:51:05 -08005711static const struct alc_model_fixup alc662_fixup_models[] = {
5712 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
Takashi Iwai53c334a2011-08-23 18:27:14 +02005713 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
5714 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
5715 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
5716 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
5717 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
5718 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
5719 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
5720 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
Todd Broch6be79482010-12-07 16:51:05 -08005721 {}
5722};
David Henningsson6cb3b702010-09-09 08:51:44 +02005723
5724
Takashi Iwai1d045db2011-07-07 18:23:21 +02005725/*
5726 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005727static int patch_alc662(struct hda_codec *codec)
5728{
5729 struct alc_spec *spec;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005730 int err = 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005731
5732 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5733 if (!spec)
5734 return -ENOMEM;
5735
5736 codec->spec = spec;
5737
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02005738 spec->mixer_nid = 0x0b;
5739
Takashi Iwai53c334a2011-08-23 18:27:14 +02005740 /* handle multiple HPs as is */
5741 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5742
Kailang Yangda00c242010-03-19 11:23:45 +01005743 alc_auto_parse_customize_define(codec);
5744
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02005745 alc_fix_pll_init(codec, 0x20, 0x04, 15);
5746
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005747 err = alc_codec_rename_from_preset(codec);
5748 if (err < 0)
5749 goto error;
5750
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005751 if ((alc_get_coef0(codec) & (1 << 14)) &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005752 codec->bus->pci->subsystem_vendor == 0x1025 &&
5753 spec->cdefine.platform_type == 1) {
5754 if (alc_codec_rename(codec, "ALC272X") < 0)
5755 goto error;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005756 }
Kailang Yang274693f2009-12-03 10:07:50 +01005757
Takashi Iwaib9c51062011-08-24 18:08:07 +02005758 alc_pick_fixup(codec, alc662_fixup_models,
5759 alc662_fixup_tbl, alc662_fixups);
5760 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5761 /* automatic parse from the BIOS config */
5762 err = alc662_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005763 if (err < 0)
5764 goto error;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005765
Takashi Iwai60a6a842011-07-27 14:01:24 +02005766 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02005767 alc_auto_fill_adc_caps(codec);
Takashi Iwai21268962011-07-07 15:01:13 +02005768 alc_rebuild_imux_for_auto_mic(codec);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02005769 alc_remove_invalid_adc_nids(codec);
Takashi Iwaidd704692009-08-11 08:45:11 +02005770 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005771
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005772 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwaib59bdf32009-08-11 09:47:30 +02005773 set_capture_mixer(codec);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01005774
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005775 if (!spec->no_analog && has_cdefine_beep(codec)) {
5776 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005777 if (err < 0)
5778 goto error;
Kailang Yangda00c242010-03-19 11:23:45 +01005779 switch (codec->vendor_id) {
5780 case 0x10ec0662:
5781 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5782 break;
5783 case 0x10ec0272:
5784 case 0x10ec0663:
5785 case 0x10ec0665:
5786 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
5787 break;
5788 case 0x10ec0273:
5789 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
5790 break;
5791 }
Kailang Yangcec27c82010-02-04 14:18:18 +01005792 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01005793 spec->vmaster_nid = 0x02;
5794
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005795 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5796
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005797 codec->patch_ops = alc_patch_ops;
Takashi Iwaib9c51062011-08-24 18:08:07 +02005798 spec->init_hook = alc_auto_init_std;
Takashi Iwai1c716152011-04-07 10:37:16 +02005799 spec->shutup = alc_eapd_shutup;
David Henningsson6cb3b702010-09-09 08:51:44 +02005800
Kailang Yangbf1b0222010-10-21 08:49:56 +02005801 alc_init_jacks(codec);
5802
Takashi Iwaicb53c622007-08-10 17:21:45 +02005803#ifdef CONFIG_SND_HDA_POWER_SAVE
5804 if (!spec->loopback.amplist)
5805 spec->loopback.amplist = alc662_loopbacks;
5806#endif
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005807
5808 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005809
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005810 error:
5811 alc_free(codec);
5812 return err;
Kailang Yangb478b992011-05-18 11:51:15 +02005813}
5814
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005815/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005816 * ALC680 support
5817 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005818
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005819static int alc680_parse_auto_config(struct hda_codec *codec)
5820{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005821 return alc_parse_auto_config(codec, NULL, NULL);
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005822}
5823
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005824/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005825 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005826static int patch_alc680(struct hda_codec *codec)
5827{
5828 struct alc_spec *spec;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005829 int err;
5830
5831 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5832 if (spec == NULL)
5833 return -ENOMEM;
5834
5835 codec->spec = spec;
5836
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02005837 /* ALC680 has no aa-loopback mixer */
5838
Takashi Iwai1ebec5f2011-08-15 13:21:48 +02005839 /* automatic parse from the BIOS config */
5840 err = alc680_parse_auto_config(codec);
5841 if (err < 0) {
5842 alc_free(codec);
5843 return err;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005844 }
5845
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005846 if (!spec->no_analog && !spec->cap_mixer)
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005847 set_capture_mixer(codec);
5848
5849 spec->vmaster_nid = 0x02;
5850
5851 codec->patch_ops = alc_patch_ops;
Takashi Iwai1ebec5f2011-08-15 13:21:48 +02005852 spec->init_hook = alc_auto_init_std;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005853
5854 return 0;
5855}
5856
5857/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858 * patch entries
5859 */
Takashi Iwaia9111322011-05-02 11:30:18 +02005860static const struct hda_codec_preset snd_hda_preset_realtek[] = {
Kailang Yang296f0332011-05-18 11:52:36 +02005861 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
Kailang Yangdf694da2005-12-05 19:42:22 +01005863 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
Kailang Yangf6a92242007-12-13 16:52:54 +01005864 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
Kailang Yanga361d842007-06-05 12:30:55 +02005865 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
Kailang Yangf6a92242007-12-13 16:52:54 +01005866 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01005867 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
Kailang Yang01afd412008-10-15 11:22:09 +02005868 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01005869 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
Kailang Yang296f0332011-05-18 11:52:36 +02005870 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01005871 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005872 .patch = patch_alc861 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01005873 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
5874 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
5875 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005876 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
Takashi Iwai49535502009-06-30 15:28:30 +02005877 .patch = patch_alc882 },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005878 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
5879 .patch = patch_alc662 },
David Henningssoncc667a72011-10-18 14:07:51 +02005880 { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
5881 .patch = patch_alc662 },
Kailang Yang6dda9f42008-05-27 12:05:31 +02005882 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
Kailang Yangcec27c82010-02-04 14:18:18 +01005883 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
Kailang Yang6227cdc2010-02-25 08:36:52 +01005884 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005885 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01005886 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
Takashi Iwai49535502009-06-30 15:28:30 +02005888 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
Clive Messer669faba2008-09-30 15:49:13 +02005889 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
Takashi Iwai49535502009-06-30 15:28:30 +02005890 .patch = patch_alc882 },
Takashi Iwaicb308f92008-04-16 14:13:29 +02005891 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
Takashi Iwai49535502009-06-30 15:28:30 +02005892 .patch = patch_alc882 },
Kailang Yangdf694da2005-12-05 19:42:22 +01005893 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005894 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
Kailang Yang44426082008-10-15 11:18:05 +02005895 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
Takashi Iwai49535502009-06-30 15:28:30 +02005896 .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005897 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
Takashi Iwai49535502009-06-30 15:28:30 +02005898 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
Kailang Yang274693f2009-12-03 10:07:50 +01005899 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005900 { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901 {} /* terminator */
5902};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005903
5904MODULE_ALIAS("snd-hda-codec-id:10ec*");
5905
5906MODULE_LICENSE("GPL");
5907MODULE_DESCRIPTION("Realtek HD-audio codec");
5908
5909static struct hda_codec_preset_list realtek_list = {
5910 .preset = snd_hda_preset_realtek,
5911 .owner = THIS_MODULE,
5912};
5913
5914static int __init patch_realtek_init(void)
5915{
5916 return snd_hda_add_codec_preset(&realtek_list);
5917}
5918
5919static void __exit patch_realtek_exit(void)
5920{
5921 snd_hda_delete_codec_preset(&realtek_list);
5922}
5923
5924module_init(patch_realtek_init)
5925module_exit(patch_realtek_exit)