blob: 485a83746e5ab432530b61bc2ca0c70c11d8758e [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 Woithe7cf51e482006-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"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020036#include "hda_jack.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Takashi Iwai1d045db2011-07-07 18:23:21 +020038/* unsol event tags */
39#define ALC_FRONT_EVENT 0x01
40#define ALC_DCVOL_EVENT 0x02
41#define ALC_HP_EVENT 0x04
42#define ALC_MIC_EVENT 0x08
Takashi Iwaid4a86d82010-06-23 17:51:26 +020043
Kailang Yangdf694da2005-12-05 19:42:22 +010044/* for GPIO Poll */
45#define GPIO_MASK 0x03
46
Takashi Iwai4a79ba342009-04-22 16:31:35 +020047/* extra amp-initialization sequence types */
48enum {
49 ALC_INIT_NONE,
50 ALC_INIT_DEFAULT,
51 ALC_INIT_GPIO1,
52 ALC_INIT_GPIO2,
53 ALC_INIT_GPIO3,
54};
55
Kailang Yangda00c242010-03-19 11:23:45 +010056struct alc_customize_define {
57 unsigned int sku_cfg;
58 unsigned char port_connectivity;
59 unsigned char check_sum;
60 unsigned char customization;
61 unsigned char external_amp;
62 unsigned int enable_pcbeep:1;
63 unsigned int platform_type:1;
64 unsigned int swap:1;
65 unsigned int override:1;
David Henningsson90622912010-10-14 14:50:18 +020066 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
Kailang Yangda00c242010-03-19 11:23:45 +010067};
68
Takashi Iwaib5bfbc62011-01-13 14:22:32 +010069struct alc_fixup;
70
Takashi Iwaice764ab2011-04-27 16:35:23 +020071struct alc_multi_io {
72 hda_nid_t pin; /* multi-io widget pin NID */
73 hda_nid_t dac; /* DAC to be connected */
74 unsigned int ctl_in; /* cached input-pin control value */
75};
76
Takashi Iwaid922b512011-04-28 12:18:53 +020077enum {
Takashi Iwai3b8510c2011-04-28 14:03:24 +020078 ALC_AUTOMUTE_PIN, /* change the pin control */
79 ALC_AUTOMUTE_AMP, /* mute/unmute the pin AMP */
80 ALC_AUTOMUTE_MIXER, /* mute/unmute mixer widget AMP */
Takashi Iwaid922b512011-04-28 12:18:53 +020081};
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083struct alc_spec {
84 /* codec parameterization */
Takashi Iwaia9111322011-05-02 11:30:18 +020085 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 unsigned int num_mixers;
Takashi Iwaia9111322011-05-02 11:30:18 +020087 const struct snd_kcontrol_new *cap_mixer; /* capture mixer */
Takashi Iwai45bdd1c2009-02-06 16:11:25 +010088 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Takashi Iwai2d9c6482009-10-13 08:06:55 +020090 const struct hda_verb *init_verbs[10]; /* initialization verbs
Takashi Iwai9c7f8522006-06-28 15:08:22 +020091 * don't forget NULL
92 * termination!
Takashi Iwaie9edcee2005-06-13 14:16:38 +020093 */
94 unsigned int num_init_verbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Takashi Iwaiaa563af2009-07-31 10:05:11 +020096 char stream_name_analog[32]; /* analog PCM stream */
Takashi Iwaia9111322011-05-02 11:30:18 +020097 const struct hda_pcm_stream *stream_analog_playback;
98 const struct hda_pcm_stream *stream_analog_capture;
99 const struct hda_pcm_stream *stream_analog_alt_playback;
100 const struct hda_pcm_stream *stream_analog_alt_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Takashi Iwaiaa563af2009-07-31 10:05:11 +0200102 char stream_name_digital[32]; /* digital PCM stream */
Takashi Iwaia9111322011-05-02 11:30:18 +0200103 const struct hda_pcm_stream *stream_digital_playback;
104 const struct hda_pcm_stream *stream_digital_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 /* playback */
Takashi Iwai16ded522005-06-10 19:58:24 +0200107 struct hda_multi_out multiout; /* playback set-up
108 * max_channels, dacs must be set
109 * dig_out_nid and hp_nid are optional
110 */
Takashi Iwai63300792008-01-24 15:31:36 +0100111 hda_nid_t alt_dac_nid;
Takashi Iwai6a05ac42009-02-13 11:19:09 +0100112 hda_nid_t slave_dig_outs[3]; /* optional - for auto-parsing */
Takashi Iwai8c441982009-01-20 18:30:20 +0100113 int dig_out_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 /* capture */
116 unsigned int num_adc_nids;
Takashi Iwai4c6d72d2011-05-02 11:30:18 +0200117 const hda_nid_t *adc_nids;
118 const hda_nid_t *capsrc_nids;
Takashi Iwai16ded522005-06-10 19:58:24 +0200119 hda_nid_t dig_in_nid; /* digital-in NID; optional */
Takashi Iwai1f0f4b82011-06-27 10:52:59 +0200120 hda_nid_t mixer_nid; /* analog-mixer NID */
Takashi Iwai527e4d72011-10-27 16:33:27 +0200121 DECLARE_BITMAP(vol_ctls, 0x20 << 1);
122 DECLARE_BITMAP(sw_ctls, 0x20 << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Takashi Iwai840b64c2010-07-13 22:49:01 +0200124 /* capture setup for dynamic dual-adc switch */
Takashi Iwai840b64c2010-07-13 22:49:01 +0200125 hda_nid_t cur_adc;
126 unsigned int cur_adc_stream_tag;
127 unsigned int cur_adc_format;
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 /* capture source */
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200130 unsigned int num_mux_defs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 const struct hda_input_mux *input_mux;
132 unsigned int cur_mux[3];
Takashi Iwai21268962011-07-07 15:01:13 +0200133 hda_nid_t ext_mic_pin;
134 hda_nid_t dock_mic_pin;
135 hda_nid_t int_mic_pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 /* channel model */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100138 const struct hda_channel_mode *channel_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 int num_channel_mode;
Takashi Iwai4e195a72006-07-28 14:47:34 +0200140 int need_dac_fix;
Hector Martin3b315d72009-06-02 10:54:19 +0200141 int const_channel_count;
142 int ext_channel_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 /* PCM information */
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100145 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
Takashi Iwai41e41f12005-06-08 14:48:49 +0200146
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200147 /* dynamic controls, init_verbs and input_mux */
148 struct auto_pin_cfg autocfg;
Kailang Yangda00c242010-03-19 11:23:45 +0100149 struct alc_customize_define cdefine;
Takashi Iwai603c4012008-07-30 15:01:44 +0200150 struct snd_array kctls;
Herton Ronaldo Krzesinski61b9b9b2009-01-28 09:16:33 -0200151 struct hda_input_mux private_imux[3];
Takashi Iwai41923e42007-10-22 17:20:10 +0200152 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwai4953550a2009-06-30 15:28:30 +0200153 hda_nid_t private_adc_nids[AUTO_CFG_MAX_OUTS];
154 hda_nid_t private_capsrc_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwai21268962011-07-07 15:01:13 +0200155 hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS];
156 unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS];
157 int int_mic_idx, ext_mic_idx, dock_mic_idx; /* for auto-mic */
Takashi Iwai834be882006-03-01 14:16:17 +0100158
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100159 /* hooks */
160 void (*init_hook)(struct hda_codec *codec);
161 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
Hector Martinf5de24b2009-12-20 22:51:31 +0100162#ifdef CONFIG_SND_HDA_POWER_SAVE
Daniel T Chenc97259d2009-12-27 18:52:08 -0500163 void (*power_hook)(struct hda_codec *codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100164#endif
Takashi Iwai1c7161532011-04-07 10:37:16 +0200165 void (*shutup)(struct hda_codec *codec);
Takashi Iwai24519912011-08-16 15:08:49 +0200166 void (*automute_hook)(struct hda_codec *codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100167
Takashi Iwai834be882006-03-01 14:16:17 +0100168 /* for pin sensing */
David Henningsson42cf0d02011-09-20 12:04:56 +0200169 unsigned int hp_jack_present:1;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200170 unsigned int line_jack_present:1;
Takashi Iwaie9427962011-04-28 15:46:07 +0200171 unsigned int master_mute:1;
Takashi Iwai6c819492009-08-10 18:47:44 +0200172 unsigned int auto_mic:1;
Takashi Iwai21268962011-07-07 15:01:13 +0200173 unsigned int auto_mic_valid_imux:1; /* valid imux for auto-mic */
David Henningsson42cf0d02011-09-20 12:04:56 +0200174 unsigned int automute_speaker:1; /* automute speaker outputs */
175 unsigned int automute_lo:1; /* automute LO outputs */
176 unsigned int detect_hp:1; /* Headphone detection enabled */
177 unsigned int detect_lo:1; /* Line-out detection enabled */
178 unsigned int automute_speaker_possible:1; /* there are speakers and either LO or HP */
179 unsigned int automute_lo_possible:1; /* there are line outs and HP */
Takashi Iwai31150f22012-01-30 10:54:08 +0100180 unsigned int keep_vref_in_automute:1; /* Don't clear VREF in automute */
Takashi Iwaicb53c622007-08-10 17:21:45 +0200181
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100182 /* other flags */
183 unsigned int no_analog :1; /* digital I/O only */
Takashi Iwai21268962011-07-07 15:01:13 +0200184 unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */
Takashi Iwai584c0c42011-03-10 12:51:11 +0100185 unsigned int single_input_src:1;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +0200186 unsigned int vol_in_capsrc:1; /* use capsrc volume (ADC has no vol) */
Takashi Iwai53c334a2011-08-23 18:27:14 +0200187 unsigned int parse_flags; /* passed to snd_hda_parse_pin_defcfg() */
Takashi Iwai24de1832011-11-07 17:13:39 +0100188 unsigned int shared_mic_hp:1; /* HP/Mic-in sharing */
Takashi Iwaid922b512011-04-28 12:18:53 +0200189
190 /* auto-mute control */
191 int automute_mode;
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200192 hda_nid_t automute_mixer_nid[AUTO_CFG_MAX_OUTS];
Takashi Iwaid922b512011-04-28 12:18:53 +0200193
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200194 int init_amp;
Takashi Iwaid433a672010-09-20 15:11:54 +0200195 int codec_variant; /* flag for other variants */
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100196
Takashi Iwai2134ea42008-01-10 16:53:55 +0100197 /* for virtual master */
198 hda_nid_t vmaster_nid;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200199#ifdef CONFIG_SND_HDA_POWER_SAVE
200 struct hda_loopback_check loopback;
201#endif
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200202
203 /* for PLL fix */
204 hda_nid_t pll_nid;
205 unsigned int pll_coef_idx, pll_coef_bit;
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200206 unsigned int coef0;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +0100207
208 /* fix-up list */
209 int fixup_id;
210 const struct alc_fixup *fixup_list;
211 const char *fixup_name;
Takashi Iwaice764ab2011-04-27 16:35:23 +0200212
213 /* multi-io */
214 int multi_ios;
215 struct alc_multi_io multi_io[4];
Takashi Iwai23c09b02011-08-19 09:05:35 +0200216
217 /* bind volumes */
218 struct snd_array bind_ctls;
Kailang Yangdf694da2005-12-05 19:42:22 +0100219};
220
Takashi Iwai1d045db2011-07-07 18:23:21 +0200221#define ALC_MODEL_AUTO 0 /* common for all chips */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Takashi Iwai44c02402011-07-08 15:14:19 +0200223static bool check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
224 int dir, unsigned int bits)
225{
226 if (!nid)
227 return false;
228 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
229 if (query_amp_caps(codec, nid, dir) & bits)
230 return true;
231 return false;
232}
233
234#define nid_has_mute(codec, nid, dir) \
235 check_amp_caps(codec, nid, dir, AC_AMPCAP_MUTE)
236#define nid_has_volume(codec, nid, dir) \
237 check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS)
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/*
240 * input MUX handling
241 */
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200242static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
243 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
246 struct alc_spec *spec = codec->spec;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200247 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
248 if (mux_idx >= spec->num_mux_defs)
249 mux_idx = 0;
Takashi Iwai53111142010-03-08 12:13:07 +0100250 if (!spec->input_mux[mux_idx].num_items && mux_idx > 0)
251 mux_idx = 0;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200252 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200255static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
256 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
259 struct alc_spec *spec = codec->spec;
260 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
261
262 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
263 return 0;
264}
265
Takashi Iwai21268962011-07-07 15:01:13 +0200266static bool alc_dyn_adc_pcm_resetup(struct hda_codec *codec, int cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Takashi Iwai21268962011-07-07 15:01:13 +0200268 struct alc_spec *spec = codec->spec;
269 hda_nid_t new_adc = spec->adc_nids[spec->dyn_adc_idx[cur]];
270
271 if (spec->cur_adc && spec->cur_adc != new_adc) {
272 /* stream is running, let's swap the current ADC */
273 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
274 spec->cur_adc = new_adc;
275 snd_hda_codec_setup_stream(codec, new_adc,
276 spec->cur_adc_stream_tag, 0,
277 spec->cur_adc_format);
278 return true;
279 }
280 return false;
281}
282
Takashi Iwai61071592011-11-23 07:52:15 +0100283static inline hda_nid_t get_capsrc(struct alc_spec *spec, int idx)
284{
285 return spec->capsrc_nids ?
286 spec->capsrc_nids[idx] : spec->adc_nids[idx];
287}
288
Takashi Iwai24de1832011-11-07 17:13:39 +0100289static void call_update_outputs(struct hda_codec *codec);
290
Takashi Iwai21268962011-07-07 15:01:13 +0200291/* select the given imux item; either unmute exclusively or select the route */
292static int alc_mux_select(struct hda_codec *codec, unsigned int adc_idx,
293 unsigned int idx, bool force)
294{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 struct alc_spec *spec = codec->spec;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100296 const struct hda_input_mux *imux;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100297 unsigned int mux_idx;
Takashi Iwaidccc1812011-11-08 07:52:19 +0100298 int i, type, num_conns;
Takashi Iwai21268962011-07-07 15:01:13 +0200299 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Takashi Iwaicd896c32008-11-18 12:36:33 +0100301 mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
302 imux = &spec->input_mux[mux_idx];
Takashi Iwai53111142010-03-08 12:13:07 +0100303 if (!imux->num_items && mux_idx > 0)
304 imux = &spec->input_mux[0];
Takashi Iwaicce4aa32011-12-02 15:29:12 +0100305 if (!imux->num_items)
306 return 0;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100307
Takashi Iwai21268962011-07-07 15:01:13 +0200308 if (idx >= imux->num_items)
309 idx = imux->num_items - 1;
310 if (spec->cur_mux[adc_idx] == idx && !force)
311 return 0;
312 spec->cur_mux[adc_idx] = idx;
313
Takashi Iwai24de1832011-11-07 17:13:39 +0100314 /* for shared I/O, change the pin-control accordingly */
315 if (spec->shared_mic_hp) {
316 /* NOTE: this assumes that there are only two inputs, the
317 * first is the real internal mic and the second is HP jack.
318 */
319 snd_hda_codec_write(codec, spec->autocfg.inputs[1].pin, 0,
320 AC_VERB_SET_PIN_WIDGET_CONTROL,
321 spec->cur_mux[adc_idx] ?
322 PIN_VREF80 : PIN_HP);
323 spec->automute_speaker = !spec->cur_mux[adc_idx];
324 call_update_outputs(codec);
325 }
326
Takashi Iwai21268962011-07-07 15:01:13 +0200327 if (spec->dyn_adc_switch) {
328 alc_dyn_adc_pcm_resetup(codec, idx);
329 adc_idx = spec->dyn_adc_idx[idx];
330 }
331
Takashi Iwai61071592011-11-23 07:52:15 +0100332 nid = get_capsrc(spec, adc_idx);
Takashi Iwai21268962011-07-07 15:01:13 +0200333
334 /* no selection? */
Takashi Iwaidccc1812011-11-08 07:52:19 +0100335 num_conns = snd_hda_get_conn_list(codec, nid, NULL);
336 if (num_conns <= 1)
Takashi Iwai21268962011-07-07 15:01:13 +0200337 return 1;
338
Takashi Iwaia22d5432009-07-27 12:54:26 +0200339 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwai0169b6b2009-06-22 10:50:19 +0200340 if (type == AC_WID_AUD_MIX) {
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100341 /* Matrix-mixer style (e.g. ALC882) */
Takashi Iwaidccc1812011-11-08 07:52:19 +0100342 int active = imux->items[idx].index;
343 for (i = 0; i < num_conns; i++) {
344 unsigned int v = (i == active) ? 0 : HDA_AMP_MUTE;
345 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, i,
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100346 HDA_AMP_MUTE, v);
347 }
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100348 } else {
349 /* MUX style (e.g. ALC880) */
Takashi Iwai21268962011-07-07 15:01:13 +0200350 snd_hda_codec_write_cache(codec, nid, 0,
351 AC_VERB_SET_CONNECT_SEL,
352 imux->items[idx].index);
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100353 }
Takashi Iwai21268962011-07-07 15:01:13 +0200354 return 1;
355}
356
357static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
358 struct snd_ctl_elem_value *ucontrol)
359{
360 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
361 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
362 return alc_mux_select(codec, adc_idx,
363 ucontrol->value.enumerated.item[0], false);
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100364}
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366/*
Takashi Iwai23f0c042009-02-26 13:03:58 +0100367 * set up the input pin config (depending on the given auto-pin type)
368 */
369static void alc_set_input_pin(struct hda_codec *codec, hda_nid_t nid,
370 int auto_pin_type)
371{
372 unsigned int val = PIN_IN;
373
Takashi Iwai86e29592010-09-09 14:50:17 +0200374 if (auto_pin_type == AUTO_PIN_MIC) {
Takashi Iwai23f0c042009-02-26 13:03:58 +0100375 unsigned int pincap;
Takashi Iwai954a29c2010-07-30 10:55:44 +0200376 unsigned int oldval;
377 oldval = snd_hda_codec_read(codec, nid, 0,
378 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
Takashi Iwai1327a322009-03-23 13:07:47 +0100379 pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwai23f0c042009-02-26 13:03:58 +0100380 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
Takashi Iwai954a29c2010-07-30 10:55:44 +0200381 /* if the default pin setup is vref50, we give it priority */
382 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
Takashi Iwai23f0c042009-02-26 13:03:58 +0100383 val = PIN_VREF80;
Takashi Iwai461c6c32009-05-25 08:06:02 +0200384 else if (pincap & AC_PINCAP_VREF_50)
385 val = PIN_VREF50;
386 else if (pincap & AC_PINCAP_VREF_100)
387 val = PIN_VREF100;
388 else if (pincap & AC_PINCAP_VREF_GRD)
389 val = PIN_VREFGRD;
Takashi Iwai23f0c042009-02-26 13:03:58 +0100390 }
391 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, val);
392}
393
394/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200395 * Append the given mixer and verb elements for the later use
396 * The mixer array is referred in build_controls(), and init_verbs are
397 * called in init().
Takashi Iwaid88897e2008-10-31 15:01:37 +0100398 */
Takashi Iwaia9111322011-05-02 11:30:18 +0200399static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
Takashi Iwaid88897e2008-10-31 15:01:37 +0100400{
401 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
402 return;
403 spec->mixers[spec->num_mixers++] = mix;
404}
405
406static void add_verb(struct alc_spec *spec, const struct hda_verb *verb)
407{
408 if (snd_BUG_ON(spec->num_init_verbs >= ARRAY_SIZE(spec->init_verbs)))
409 return;
410 spec->init_verbs[spec->num_init_verbs++] = verb;
411}
412
413/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200414 * GPIO setup tables, used in initialization
Kailang Yangdf694da2005-12-05 19:42:22 +0100415 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200416/* Enable GPIO mask and set output */
Takashi Iwaia9111322011-05-02 11:30:18 +0200417static const struct hda_verb alc_gpio1_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200418 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
419 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
420 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
421 { }
422};
423
Takashi Iwaia9111322011-05-02 11:30:18 +0200424static const struct hda_verb alc_gpio2_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200425 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
426 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
427 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
428 { }
429};
430
Takashi Iwaia9111322011-05-02 11:30:18 +0200431static const struct hda_verb alc_gpio3_init_verbs[] = {
Kailang Yangbdd148a2007-05-08 15:19:08 +0200432 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
433 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
434 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
435 { }
436};
437
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200438/*
439 * Fix hardware PLL issue
440 * On some codecs, the analog PLL gating control must be off while
441 * the default value is 1.
442 */
443static void alc_fix_pll(struct hda_codec *codec)
444{
445 struct alc_spec *spec = codec->spec;
446 unsigned int val;
447
448 if (!spec->pll_nid)
449 return;
450 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
451 spec->pll_coef_idx);
452 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
453 AC_VERB_GET_PROC_COEF, 0);
454 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
455 spec->pll_coef_idx);
456 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
457 val & ~(1 << spec->pll_coef_bit));
458}
459
460static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
461 unsigned int coef_idx, unsigned int coef_bit)
462{
463 struct alc_spec *spec = codec->spec;
464 spec->pll_nid = nid;
465 spec->pll_coef_idx = coef_idx;
466 spec->pll_coef_bit = coef_bit;
467 alc_fix_pll(codec);
468}
469
Takashi Iwai1d045db2011-07-07 18:23:21 +0200470/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200471 * Jack detections for HP auto-mute and mic-switch
472 */
473
474/* check each pin in the given array; returns true if any of them is plugged */
475static bool detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins)
Kailang Yangc9b58002007-10-16 14:30:01 +0200476{
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200477 int i, present = 0;
Kailang Yangc9b58002007-10-16 14:30:01 +0200478
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200479 for (i = 0; i < num_pins; i++) {
480 hda_nid_t nid = pins[i];
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200481 if (!nid)
482 break;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200483 present |= snd_hda_jack_detect(codec, nid);
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200484 }
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200485 return present;
486}
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200487
Takashi Iwai1d045db2011-07-07 18:23:21 +0200488/* standard HP/line-out auto-mute helper */
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200489static void do_automute(struct hda_codec *codec, int num_pins, hda_nid_t *pins,
Takashi Iwaie9427962011-04-28 15:46:07 +0200490 bool mute, bool hp_out)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200491{
492 struct alc_spec *spec = codec->spec;
493 unsigned int mute_bits = mute ? HDA_AMP_MUTE : 0;
Takashi Iwaie9427962011-04-28 15:46:07 +0200494 unsigned int pin_bits = mute ? 0 : (hp_out ? PIN_HP : PIN_OUT);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200495 int i;
496
497 for (i = 0; i < num_pins; i++) {
498 hda_nid_t nid = pins[i];
Takashi Iwai31150f22012-01-30 10:54:08 +0100499 unsigned int val;
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200500 if (!nid)
501 break;
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200502 switch (spec->automute_mode) {
503 case ALC_AUTOMUTE_PIN:
Takashi Iwai31150f22012-01-30 10:54:08 +0100504 /* don't reset VREF value in case it's controlling
505 * the amp (see alc861_fixup_asus_amp_vref_0f())
506 */
507 if (spec->keep_vref_in_automute) {
508 val = snd_hda_codec_read(codec, nid, 0,
509 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
510 val &= ~PIN_HP;
511 } else
512 val = 0;
513 val |= pin_bits;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200514 snd_hda_codec_write(codec, nid, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200515 AC_VERB_SET_PIN_WIDGET_CONTROL,
Takashi Iwai31150f22012-01-30 10:54:08 +0100516 val);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200517 break;
518 case ALC_AUTOMUTE_AMP:
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200519 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200520 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200521 break;
522 case ALC_AUTOMUTE_MIXER:
523 nid = spec->automute_mixer_nid[i];
524 if (!nid)
525 break;
526 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200527 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200528 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 1,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200529 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200530 break;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200531 }
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200532 }
Kailang Yangc9b58002007-10-16 14:30:01 +0200533}
534
David Henningsson42cf0d02011-09-20 12:04:56 +0200535/* Toggle outputs muting */
536static void update_outputs(struct hda_codec *codec)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200537{
538 struct alc_spec *spec = codec->spec;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200539 int on;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200540
Takashi Iwaic0a20262011-06-10 15:28:15 +0200541 /* Control HP pins/amps depending on master_mute state;
542 * in general, HP pins/amps control should be enabled in all cases,
543 * but currently set only for master_mute, just to be safe
544 */
Takashi Iwai24de1832011-11-07 17:13:39 +0100545 if (!spec->shared_mic_hp) /* don't change HP-pin when shared with mic */
546 do_automute(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
Takashi Iwaic0a20262011-06-10 15:28:15 +0200547 spec->autocfg.hp_pins, spec->master_mute, true);
548
David Henningsson42cf0d02011-09-20 12:04:56 +0200549 if (!spec->automute_speaker)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200550 on = 0;
551 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200552 on = spec->hp_jack_present | spec->line_jack_present;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200553 on |= spec->master_mute;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200554 do_automute(codec, ARRAY_SIZE(spec->autocfg.speaker_pins),
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200555 spec->autocfg.speaker_pins, on, false);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200556
557 /* toggle line-out mutes if needed, too */
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200558 /* if LO is a copy of either HP or Speaker, don't need to handle it */
559 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0] ||
560 spec->autocfg.line_out_pins[0] == spec->autocfg.speaker_pins[0])
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200561 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200562 if (!spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200563 on = 0;
564 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200565 on = spec->hp_jack_present;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200566 on |= spec->master_mute;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200567 do_automute(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200568 spec->autocfg.line_out_pins, on, false);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200569}
570
David Henningsson42cf0d02011-09-20 12:04:56 +0200571static void call_update_outputs(struct hda_codec *codec)
Takashi Iwai24519912011-08-16 15:08:49 +0200572{
573 struct alc_spec *spec = codec->spec;
574 if (spec->automute_hook)
575 spec->automute_hook(codec);
576 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200577 update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +0200578}
579
Takashi Iwai1d045db2011-07-07 18:23:21 +0200580/* standard HP-automute helper */
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200581static void alc_hp_automute(struct hda_codec *codec)
582{
583 struct alc_spec *spec = codec->spec;
584
David Henningsson42cf0d02011-09-20 12:04:56 +0200585 spec->hp_jack_present =
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200586 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
587 spec->autocfg.hp_pins);
David Henningsson42cf0d02011-09-20 12:04:56 +0200588 if (!spec->detect_hp || (!spec->automute_speaker && !spec->automute_lo))
Takashi Iwai3c715a92011-08-23 12:41:09 +0200589 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200590 call_update_outputs(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200591}
592
Takashi Iwai1d045db2011-07-07 18:23:21 +0200593/* standard line-out-automute helper */
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200594static void alc_line_automute(struct hda_codec *codec)
595{
596 struct alc_spec *spec = codec->spec;
597
Takashi Iwaie0d32e32011-09-26 15:19:55 +0200598 /* check LO jack only when it's different from HP */
599 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0])
600 return;
601
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200602 spec->line_jack_present =
603 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
604 spec->autocfg.line_out_pins);
David Henningsson42cf0d02011-09-20 12:04:56 +0200605 if (!spec->automute_speaker || !spec->detect_lo)
Takashi Iwai3c715a92011-08-23 12:41:09 +0200606 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200607 call_update_outputs(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200608}
609
Takashi Iwai8d087c72011-06-28 12:45:47 +0200610#define get_connection_index(codec, mux, nid) \
611 snd_hda_get_conn_index(codec, mux, nid, 0)
Takashi Iwai6c819492009-08-10 18:47:44 +0200612
Takashi Iwai1d045db2011-07-07 18:23:21 +0200613/* standard mic auto-switch helper */
Kailang Yang7fb0d782008-10-15 11:12:35 +0200614static void alc_mic_automute(struct hda_codec *codec)
615{
616 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +0200617 hda_nid_t *pins = spec->imux_pins;
Kailang Yang7fb0d782008-10-15 11:12:35 +0200618
Takashi Iwai21268962011-07-07 15:01:13 +0200619 if (!spec->auto_mic || !spec->auto_mic_valid_imux)
Takashi Iwai6c819492009-08-10 18:47:44 +0200620 return;
621 if (snd_BUG_ON(!spec->adc_nids))
622 return;
Takashi Iwai21268962011-07-07 15:01:13 +0200623 if (snd_BUG_ON(spec->int_mic_idx < 0 || spec->ext_mic_idx < 0))
Takashi Iwai840b64c2010-07-13 22:49:01 +0200624 return;
Takashi Iwai840b64c2010-07-13 22:49:01 +0200625
Takashi Iwai21268962011-07-07 15:01:13 +0200626 if (snd_hda_jack_detect(codec, pins[spec->ext_mic_idx]))
627 alc_mux_select(codec, 0, spec->ext_mic_idx, false);
628 else if (spec->dock_mic_idx >= 0 &&
629 snd_hda_jack_detect(codec, pins[spec->dock_mic_idx]))
630 alc_mux_select(codec, 0, spec->dock_mic_idx, false);
631 else
632 alc_mux_select(codec, 0, spec->int_mic_idx, false);
Kailang Yang7fb0d782008-10-15 11:12:35 +0200633}
634
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100635/* handle the specified unsol action (ALC_XXX_EVENT) */
636static void alc_exec_unsol_event(struct hda_codec *codec, int action)
Kailang Yangc9b58002007-10-16 14:30:01 +0200637{
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100638 switch (action) {
Takashi Iwai1d045db2011-07-07 18:23:21 +0200639 case ALC_HP_EVENT:
Takashi Iwaid922b512011-04-28 12:18:53 +0200640 alc_hp_automute(codec);
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200641 break;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200642 case ALC_FRONT_EVENT:
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200643 alc_line_automute(codec);
644 break;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200645 case ALC_MIC_EVENT:
Kailang Yang7fb0d782008-10-15 11:12:35 +0200646 alc_mic_automute(codec);
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200647 break;
648 }
Takashi Iwai01a61e12011-10-28 00:03:22 +0200649 snd_hda_jack_report_sync(codec);
Kailang Yang7fb0d782008-10-15 11:12:35 +0200650}
651
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100652/* unsolicited event for HP jack sensing */
653static void alc_sku_unsol_event(struct hda_codec *codec, unsigned int res)
654{
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100655 if (codec->vendor_id == 0x10ec0880)
656 res >>= 28;
657 else
658 res >>= 26;
Takashi Iwaia7309792012-01-19 15:03:48 +0100659 res = snd_hda_jack_get_action(codec, res);
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100660 alc_exec_unsol_event(codec, res);
661}
662
Takashi Iwai1d045db2011-07-07 18:23:21 +0200663/* call init functions of standard auto-mute helpers */
Kailang Yang7fb0d782008-10-15 11:12:35 +0200664static void alc_inithook(struct hda_codec *codec)
665{
Takashi Iwaid922b512011-04-28 12:18:53 +0200666 alc_hp_automute(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200667 alc_line_automute(codec);
Kailang Yang7fb0d782008-10-15 11:12:35 +0200668 alc_mic_automute(codec);
Kailang Yangc9b58002007-10-16 14:30:01 +0200669}
670
Kailang Yangf9423e72008-05-27 12:32:25 +0200671/* additional initialization for ALC888 variants */
672static void alc888_coef_init(struct hda_codec *codec)
673{
674 unsigned int tmp;
675
676 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
677 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
678 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
Takashi Iwai37db6232009-03-05 09:40:16 +0100679 if ((tmp & 0xf0) == 0x20)
Kailang Yangf9423e72008-05-27 12:32:25 +0200680 /* alc888S-VC */
681 snd_hda_codec_read(codec, 0x20, 0,
682 AC_VERB_SET_PROC_COEF, 0x830);
683 else
684 /* alc888-VB */
685 snd_hda_codec_read(codec, 0x20, 0,
686 AC_VERB_SET_PROC_COEF, 0x3030);
687}
688
Takashi Iwai1d045db2011-07-07 18:23:21 +0200689/* additional initialization for ALC889 variants */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200690static void alc889_coef_init(struct hda_codec *codec)
691{
692 unsigned int tmp;
693
694 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
695 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
696 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
697 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
698}
699
Takashi Iwai3fb4a502010-01-19 15:46:37 +0100700/* turn on/off EAPD control (only if available) */
701static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
702{
703 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
704 return;
705 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
706 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
707 on ? 2 : 0);
708}
709
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200710/* turn on/off EAPD controls of the codec */
711static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
712{
713 /* We currently only handle front, HP */
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200714 static hda_nid_t pins[] = {
715 0x0f, 0x10, 0x14, 0x15, 0
716 };
717 hda_nid_t *p;
718 for (p = pins; *p; p++)
719 set_eapd(codec, *p, on);
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200720}
721
Takashi Iwai1c7161532011-04-07 10:37:16 +0200722/* generic shutup callback;
723 * just turning off EPAD and a little pause for avoiding pop-noise
724 */
725static void alc_eapd_shutup(struct hda_codec *codec)
726{
727 alc_auto_setup_eapd(codec, false);
728 msleep(200);
729}
730
Takashi Iwai1d045db2011-07-07 18:23:21 +0200731/* generic EAPD initialization */
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200732static void alc_auto_init_amp(struct hda_codec *codec, int type)
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200733{
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200734 unsigned int tmp;
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200735
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200736 alc_auto_setup_eapd(codec, true);
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200737 switch (type) {
738 case ALC_INIT_GPIO1:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200739 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
740 break;
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200741 case ALC_INIT_GPIO2:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200742 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
743 break;
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200744 case ALC_INIT_GPIO3:
Kailang Yangbdd148a2007-05-08 15:19:08 +0200745 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
746 break;
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200747 case ALC_INIT_DEFAULT:
Kailang Yangc9b58002007-10-16 14:30:01 +0200748 switch (codec->vendor_id) {
749 case 0x10ec0260:
750 snd_hda_codec_write(codec, 0x1a, 0,
751 AC_VERB_SET_COEF_INDEX, 7);
752 tmp = snd_hda_codec_read(codec, 0x1a, 0,
753 AC_VERB_GET_PROC_COEF, 0);
754 snd_hda_codec_write(codec, 0x1a, 0,
755 AC_VERB_SET_COEF_INDEX, 7);
756 snd_hda_codec_write(codec, 0x1a, 0,
757 AC_VERB_SET_PROC_COEF,
758 tmp | 0x2010);
759 break;
760 case 0x10ec0262:
761 case 0x10ec0880:
762 case 0x10ec0882:
763 case 0x10ec0883:
764 case 0x10ec0885:
Takashi Iwai4a5a4c52009-02-06 12:46:59 +0100765 case 0x10ec0887:
Takashi Iwai20b67dd2011-03-23 22:54:32 +0100766 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200767 alc889_coef_init(codec);
Kailang Yangc9b58002007-10-16 14:30:01 +0200768 break;
Kailang Yangf9423e72008-05-27 12:32:25 +0200769 case 0x10ec0888:
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200770 alc888_coef_init(codec);
Kailang Yangf9423e72008-05-27 12:32:25 +0200771 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100772#if 0 /* XXX: This may cause the silent output on speaker on some machines */
Kailang Yangc9b58002007-10-16 14:30:01 +0200773 case 0x10ec0267:
774 case 0x10ec0268:
775 snd_hda_codec_write(codec, 0x20, 0,
776 AC_VERB_SET_COEF_INDEX, 7);
777 tmp = snd_hda_codec_read(codec, 0x20, 0,
778 AC_VERB_GET_PROC_COEF, 0);
779 snd_hda_codec_write(codec, 0x20, 0,
Kailang Yangea1fb292008-08-26 12:58:38 +0200780 AC_VERB_SET_COEF_INDEX, 7);
Kailang Yangc9b58002007-10-16 14:30:01 +0200781 snd_hda_codec_write(codec, 0x20, 0,
782 AC_VERB_SET_PROC_COEF,
783 tmp | 0x3000);
784 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100785#endif /* XXX */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200786 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200787 break;
788 }
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200789}
Kailang Yangea1fb292008-08-26 12:58:38 +0200790
Takashi Iwai1d045db2011-07-07 18:23:21 +0200791/*
792 * Auto-Mute mode mixer enum support
793 */
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200794static int alc_automute_mode_info(struct snd_kcontrol *kcontrol,
795 struct snd_ctl_elem_info *uinfo)
796{
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200797 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
798 struct alc_spec *spec = codec->spec;
799 static const char * const texts2[] = {
800 "Disabled", "Enabled"
801 };
802 static const char * const texts3[] = {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200803 "Disabled", "Speaker Only", "Line-Out+Speaker"
804 };
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200805 const char * const *texts;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200806
807 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
808 uinfo->count = 1;
David Henningsson42cf0d02011-09-20 12:04:56 +0200809 if (spec->automute_speaker_possible && spec->automute_lo_possible) {
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200810 uinfo->value.enumerated.items = 3;
811 texts = texts3;
812 } else {
813 uinfo->value.enumerated.items = 2;
814 texts = texts2;
815 }
816 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
817 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200818 strcpy(uinfo->value.enumerated.name,
819 texts[uinfo->value.enumerated.item]);
820 return 0;
821}
822
823static int alc_automute_mode_get(struct snd_kcontrol *kcontrol,
824 struct snd_ctl_elem_value *ucontrol)
825{
826 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
827 struct alc_spec *spec = codec->spec;
David Henningsson42cf0d02011-09-20 12:04:56 +0200828 unsigned int val = 0;
829 if (spec->automute_speaker)
830 val++;
831 if (spec->automute_lo)
832 val++;
833
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200834 ucontrol->value.enumerated.item[0] = val;
835 return 0;
836}
837
838static int alc_automute_mode_put(struct snd_kcontrol *kcontrol,
839 struct snd_ctl_elem_value *ucontrol)
840{
841 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
842 struct alc_spec *spec = codec->spec;
843
844 switch (ucontrol->value.enumerated.item[0]) {
845 case 0:
David Henningsson42cf0d02011-09-20 12:04:56 +0200846 if (!spec->automute_speaker && !spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200847 return 0;
David Henningsson42cf0d02011-09-20 12:04:56 +0200848 spec->automute_speaker = 0;
849 spec->automute_lo = 0;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200850 break;
851 case 1:
David Henningsson42cf0d02011-09-20 12:04:56 +0200852 if (spec->automute_speaker_possible) {
853 if (!spec->automute_lo && spec->automute_speaker)
854 return 0;
855 spec->automute_speaker = 1;
856 spec->automute_lo = 0;
857 } else if (spec->automute_lo_possible) {
858 if (spec->automute_lo)
859 return 0;
860 spec->automute_lo = 1;
861 } else
862 return -EINVAL;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200863 break;
864 case 2:
David Henningsson42cf0d02011-09-20 12:04:56 +0200865 if (!spec->automute_lo_possible || !spec->automute_speaker_possible)
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200866 return -EINVAL;
David Henningsson42cf0d02011-09-20 12:04:56 +0200867 if (spec->automute_speaker && spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200868 return 0;
David Henningsson42cf0d02011-09-20 12:04:56 +0200869 spec->automute_speaker = 1;
870 spec->automute_lo = 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200871 break;
872 default:
873 return -EINVAL;
874 }
David Henningsson42cf0d02011-09-20 12:04:56 +0200875 call_update_outputs(codec);
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200876 return 1;
877}
878
Takashi Iwaia9111322011-05-02 11:30:18 +0200879static const struct snd_kcontrol_new alc_automute_mode_enum = {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200880 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
881 .name = "Auto-Mute Mode",
882 .info = alc_automute_mode_info,
883 .get = alc_automute_mode_get,
884 .put = alc_automute_mode_put,
885};
886
Takashi Iwai1d045db2011-07-07 18:23:21 +0200887static struct snd_kcontrol_new *alc_kcontrol_new(struct alc_spec *spec)
888{
889 snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32);
890 return snd_array_new(&spec->kctls);
891}
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200892
893static int alc_add_automute_mode_enum(struct hda_codec *codec)
894{
895 struct alc_spec *spec = codec->spec;
896 struct snd_kcontrol_new *knew;
897
898 knew = alc_kcontrol_new(spec);
899 if (!knew)
900 return -ENOMEM;
901 *knew = alc_automute_mode_enum;
902 knew->name = kstrdup("Auto-Mute Mode", GFP_KERNEL);
903 if (!knew->name)
904 return -ENOMEM;
905 return 0;
906}
907
Takashi Iwai1d045db2011-07-07 18:23:21 +0200908/*
909 * Check the availability of HP/line-out auto-mute;
910 * Set up appropriately if really supported
911 */
David Henningsson42cf0d02011-09-20 12:04:56 +0200912static void alc_init_automute(struct hda_codec *codec)
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200913{
914 struct alc_spec *spec = codec->spec;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200915 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai1daf5f42011-04-28 17:57:46 +0200916 int present = 0;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200917 int i;
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200918
Takashi Iwai1daf5f42011-04-28 17:57:46 +0200919 if (cfg->hp_pins[0])
920 present++;
921 if (cfg->line_out_pins[0])
922 present++;
923 if (cfg->speaker_pins[0])
924 present++;
925 if (present < 2) /* need two different output types */
926 return;
Kailang Yangc9b58002007-10-16 14:30:01 +0200927
Takashi Iwaic48a8fb2011-07-27 16:41:57 +0200928 if (!cfg->speaker_pins[0] &&
929 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200930 memcpy(cfg->speaker_pins, cfg->line_out_pins,
931 sizeof(cfg->speaker_pins));
932 cfg->speaker_outs = cfg->line_outs;
933 }
934
Takashi Iwaic48a8fb2011-07-27 16:41:57 +0200935 if (!cfg->hp_pins[0] &&
936 cfg->line_out_type == AUTO_PIN_HP_OUT) {
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200937 memcpy(cfg->hp_pins, cfg->line_out_pins,
938 sizeof(cfg->hp_pins));
939 cfg->hp_outs = cfg->line_outs;
940 }
941
David Henningsson42cf0d02011-09-20 12:04:56 +0200942 spec->automute_mode = ALC_AUTOMUTE_PIN;
943
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200944 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200945 hda_nid_t nid = cfg->hp_pins[i];
Takashi Iwai06dec222011-05-17 10:00:16 +0200946 if (!is_jack_detectable(codec, nid))
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200947 continue;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200948 snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n",
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200949 nid);
Takashi Iwai1835a0f2011-10-27 22:12:46 +0200950 snd_hda_jack_detect_enable(codec, nid, ALC_HP_EVENT);
David Henningsson42cf0d02011-09-20 12:04:56 +0200951 spec->detect_hp = 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200952 }
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200953
David Henningsson42cf0d02011-09-20 12:04:56 +0200954 if (cfg->line_out_type == AUTO_PIN_LINE_OUT && cfg->line_outs) {
955 if (cfg->speaker_outs)
956 for (i = 0; i < cfg->line_outs; i++) {
957 hda_nid_t nid = cfg->line_out_pins[i];
958 if (!is_jack_detectable(codec, nid))
959 continue;
960 snd_printdd("realtek: Enable Line-Out "
961 "auto-muting on NID 0x%x\n", nid);
Takashi Iwai1835a0f2011-10-27 22:12:46 +0200962 snd_hda_jack_detect_enable(codec, nid,
963 ALC_FRONT_EVENT);
David Henningsson42cf0d02011-09-20 12:04:56 +0200964 spec->detect_lo = 1;
965 }
966 spec->automute_lo_possible = spec->detect_hp;
967 }
968
969 spec->automute_speaker_possible = cfg->speaker_outs &&
970 (spec->detect_hp || spec->detect_lo);
971
972 spec->automute_lo = spec->automute_lo_possible;
973 spec->automute_speaker = spec->automute_speaker_possible;
974
975 if (spec->automute_speaker_possible || spec->automute_lo_possible) {
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200976 /* create a control for automute mode */
977 alc_add_automute_mode_enum(codec);
978 spec->unsol_event = alc_sku_unsol_event;
979 }
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200980}
981
Takashi Iwai1d045db2011-07-07 18:23:21 +0200982/* return the position of NID in the list, or -1 if not found */
Takashi Iwai21268962011-07-07 15:01:13 +0200983static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
984{
985 int i;
986 for (i = 0; i < nums; i++)
987 if (list[i] == nid)
988 return i;
989 return -1;
990}
991
Takashi Iwai1d045db2011-07-07 18:23:21 +0200992/* check whether dynamic ADC-switching is available */
993static bool alc_check_dyn_adc_switch(struct hda_codec *codec)
994{
995 struct alc_spec *spec = codec->spec;
996 struct hda_input_mux *imux = &spec->private_imux[0];
997 int i, n, idx;
998 hda_nid_t cap, pin;
999
1000 if (imux != spec->input_mux) /* no dynamic imux? */
1001 return false;
1002
1003 for (n = 0; n < spec->num_adc_nids; n++) {
1004 cap = spec->private_capsrc_nids[n];
1005 for (i = 0; i < imux->num_items; i++) {
1006 pin = spec->imux_pins[i];
1007 if (!pin)
1008 return false;
1009 if (get_connection_index(codec, cap, pin) < 0)
1010 break;
1011 }
1012 if (i >= imux->num_items)
Takashi Iwai268ff6f2011-07-08 14:37:35 +02001013 return true; /* no ADC-switch is needed */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001014 }
1015
1016 for (i = 0; i < imux->num_items; i++) {
1017 pin = spec->imux_pins[i];
1018 for (n = 0; n < spec->num_adc_nids; n++) {
1019 cap = spec->private_capsrc_nids[n];
1020 idx = get_connection_index(codec, cap, pin);
1021 if (idx >= 0) {
1022 imux->items[i].index = idx;
1023 spec->dyn_adc_idx[i] = n;
1024 break;
1025 }
1026 }
1027 }
1028
1029 snd_printdd("realtek: enabling ADC switching\n");
1030 spec->dyn_adc_switch = 1;
1031 return true;
1032}
Takashi Iwai21268962011-07-07 15:01:13 +02001033
1034/* rebuild imux for matching with the given auto-mic pins (if not yet) */
1035static bool alc_rebuild_imux_for_auto_mic(struct hda_codec *codec)
1036{
1037 struct alc_spec *spec = codec->spec;
1038 struct hda_input_mux *imux;
1039 static char * const texts[3] = {
1040 "Mic", "Internal Mic", "Dock Mic"
1041 };
1042 int i;
1043
1044 if (!spec->auto_mic)
1045 return false;
1046 imux = &spec->private_imux[0];
1047 if (spec->input_mux == imux)
1048 return true;
1049 spec->imux_pins[0] = spec->ext_mic_pin;
1050 spec->imux_pins[1] = spec->int_mic_pin;
1051 spec->imux_pins[2] = spec->dock_mic_pin;
1052 for (i = 0; i < 3; i++) {
1053 strcpy(imux->items[i].label, texts[i]);
Takashi Iwai6759dc32011-11-23 07:38:59 +01001054 if (spec->imux_pins[i]) {
1055 hda_nid_t pin = spec->imux_pins[i];
1056 int c;
1057 for (c = 0; c < spec->num_adc_nids; c++) {
Takashi Iwai61071592011-11-23 07:52:15 +01001058 hda_nid_t cap = get_capsrc(spec, c);
Takashi Iwai6759dc32011-11-23 07:38:59 +01001059 int idx = get_connection_index(codec, cap, pin);
1060 if (idx >= 0) {
1061 imux->items[i].index = idx;
1062 break;
1063 }
1064 }
Takashi Iwai21268962011-07-07 15:01:13 +02001065 imux->num_items = i + 1;
Takashi Iwai6759dc32011-11-23 07:38:59 +01001066 }
Takashi Iwai21268962011-07-07 15:01:13 +02001067 }
1068 spec->num_mux_defs = 1;
1069 spec->input_mux = imux;
1070 return true;
1071}
1072
1073/* check whether all auto-mic pins are valid; setup indices if OK */
1074static bool alc_auto_mic_check_imux(struct hda_codec *codec)
1075{
1076 struct alc_spec *spec = codec->spec;
1077 const struct hda_input_mux *imux;
1078
1079 if (!spec->auto_mic)
1080 return false;
1081 if (spec->auto_mic_valid_imux)
1082 return true; /* already checked */
1083
1084 /* fill up imux indices */
1085 if (!alc_check_dyn_adc_switch(codec)) {
1086 spec->auto_mic = 0;
1087 return false;
1088 }
1089
1090 imux = spec->input_mux;
1091 spec->ext_mic_idx = find_idx_in_nid_list(spec->ext_mic_pin,
1092 spec->imux_pins, imux->num_items);
1093 spec->int_mic_idx = find_idx_in_nid_list(spec->int_mic_pin,
1094 spec->imux_pins, imux->num_items);
1095 spec->dock_mic_idx = find_idx_in_nid_list(spec->dock_mic_pin,
1096 spec->imux_pins, imux->num_items);
1097 if (spec->ext_mic_idx < 0 || spec->int_mic_idx < 0) {
1098 spec->auto_mic = 0;
1099 return false; /* no corresponding imux */
1100 }
1101
Takashi Iwai1835a0f2011-10-27 22:12:46 +02001102 snd_hda_jack_detect_enable(codec, spec->ext_mic_pin, ALC_MIC_EVENT);
Takashi Iwai21268962011-07-07 15:01:13 +02001103 if (spec->dock_mic_pin)
Takashi Iwai1835a0f2011-10-27 22:12:46 +02001104 snd_hda_jack_detect_enable(codec, spec->dock_mic_pin,
1105 ALC_MIC_EVENT);
Takashi Iwai21268962011-07-07 15:01:13 +02001106
1107 spec->auto_mic_valid_imux = 1;
1108 spec->auto_mic = 1;
1109 return true;
1110}
1111
Takashi Iwai1d045db2011-07-07 18:23:21 +02001112/*
1113 * Check the availability of auto-mic switch;
1114 * Set up if really supported
1115 */
Takashi Iwai6c819492009-08-10 18:47:44 +02001116static void alc_init_auto_mic(struct hda_codec *codec)
1117{
1118 struct alc_spec *spec = codec->spec;
1119 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001120 hda_nid_t fixed, ext, dock;
Takashi Iwai6c819492009-08-10 18:47:44 +02001121 int i;
1122
Takashi Iwai24de1832011-11-07 17:13:39 +01001123 if (spec->shared_mic_hp)
1124 return; /* no auto-mic for the shared I/O */
1125
Takashi Iwai21268962011-07-07 15:01:13 +02001126 spec->ext_mic_idx = spec->int_mic_idx = spec->dock_mic_idx = -1;
1127
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001128 fixed = ext = dock = 0;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02001129 for (i = 0; i < cfg->num_inputs; i++) {
1130 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai6c819492009-08-10 18:47:44 +02001131 unsigned int defcfg;
Takashi Iwai6c819492009-08-10 18:47:44 +02001132 defcfg = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001133 switch (snd_hda_get_input_pin_attr(defcfg)) {
1134 case INPUT_PIN_ATTR_INT:
Takashi Iwai6c819492009-08-10 18:47:44 +02001135 if (fixed)
1136 return; /* already occupied */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001137 if (cfg->inputs[i].type != AUTO_PIN_MIC)
1138 return; /* invalid type */
Takashi Iwai6c819492009-08-10 18:47:44 +02001139 fixed = nid;
1140 break;
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001141 case INPUT_PIN_ATTR_UNUSED:
1142 return; /* invalid entry */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001143 case INPUT_PIN_ATTR_DOCK:
1144 if (dock)
1145 return; /* already occupied */
1146 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
1147 return; /* invalid type */
1148 dock = nid;
1149 break;
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001150 default:
Takashi Iwai6c819492009-08-10 18:47:44 +02001151 if (ext)
1152 return; /* already occupied */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001153 if (cfg->inputs[i].type != AUTO_PIN_MIC)
1154 return; /* invalid type */
Takashi Iwai6c819492009-08-10 18:47:44 +02001155 ext = nid;
1156 break;
Takashi Iwai6c819492009-08-10 18:47:44 +02001157 }
1158 }
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001159 if (!ext && dock) {
1160 ext = dock;
1161 dock = 0;
1162 }
Takashi Iwaieaa9b3a2010-01-17 13:09:33 +01001163 if (!ext || !fixed)
1164 return;
Takashi Iwaie35d9d62011-05-17 11:28:16 +02001165 if (!is_jack_detectable(codec, ext))
Takashi Iwai6c819492009-08-10 18:47:44 +02001166 return; /* no unsol support */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001167 if (dock && !is_jack_detectable(codec, dock))
1168 return; /* no unsol support */
Takashi Iwai21268962011-07-07 15:01:13 +02001169
1170 /* check imux indices */
1171 spec->ext_mic_pin = ext;
1172 spec->int_mic_pin = fixed;
1173 spec->dock_mic_pin = dock;
1174
1175 spec->auto_mic = 1;
1176 if (!alc_auto_mic_check_imux(codec))
1177 return;
1178
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001179 snd_printdd("realtek: Enable auto-mic switch on NID 0x%x/0x%x/0x%x\n",
1180 ext, fixed, dock);
Takashi Iwai6c819492009-08-10 18:47:44 +02001181 spec->unsol_event = alc_sku_unsol_event;
1182}
1183
Takashi Iwai1d045db2011-07-07 18:23:21 +02001184/* check the availabilities of auto-mute and auto-mic switches */
1185static void alc_auto_check_switches(struct hda_codec *codec)
1186{
David Henningsson42cf0d02011-09-20 12:04:56 +02001187 alc_init_automute(codec);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001188 alc_init_auto_mic(codec);
1189}
1190
1191/*
1192 * Realtek SSID verification
1193 */
1194
David Henningsson90622912010-10-14 14:50:18 +02001195/* Could be any non-zero and even value. When used as fixup, tells
1196 * the driver to ignore any present sku defines.
1197 */
1198#define ALC_FIXUP_SKU_IGNORE (2)
1199
Kailang Yangda00c242010-03-19 11:23:45 +01001200static int alc_auto_parse_customize_define(struct hda_codec *codec)
1201{
1202 unsigned int ass, tmp, i;
Takashi Iwai7fb56222010-03-22 17:09:47 +01001203 unsigned nid = 0;
Kailang Yangda00c242010-03-19 11:23:45 +01001204 struct alc_spec *spec = codec->spec;
1205
Takashi Iwaib6cbe512010-07-28 17:43:36 +02001206 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
1207
David Henningsson90622912010-10-14 14:50:18 +02001208 if (spec->cdefine.fixup) {
1209 ass = spec->cdefine.sku_cfg;
1210 if (ass == ALC_FIXUP_SKU_IGNORE)
1211 return -1;
1212 goto do_sku;
1213 }
1214
Kailang Yangda00c242010-03-19 11:23:45 +01001215 ass = codec->subsystem_id & 0xffff;
Takashi Iwaib6cbe512010-07-28 17:43:36 +02001216 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
Kailang Yangda00c242010-03-19 11:23:45 +01001217 goto do_sku;
1218
1219 nid = 0x1d;
1220 if (codec->vendor_id == 0x10ec0260)
1221 nid = 0x17;
1222 ass = snd_hda_codec_get_pincfg(codec, nid);
1223
1224 if (!(ass & 1)) {
1225 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
1226 codec->chip_name, ass);
1227 return -1;
1228 }
1229
1230 /* check sum */
1231 tmp = 0;
1232 for (i = 1; i < 16; i++) {
1233 if ((ass >> i) & 1)
1234 tmp++;
1235 }
1236 if (((ass >> 16) & 0xf) != tmp)
1237 return -1;
1238
1239 spec->cdefine.port_connectivity = ass >> 30;
1240 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
1241 spec->cdefine.check_sum = (ass >> 16) & 0xf;
1242 spec->cdefine.customization = ass >> 8;
1243do_sku:
1244 spec->cdefine.sku_cfg = ass;
1245 spec->cdefine.external_amp = (ass & 0x38) >> 3;
1246 spec->cdefine.platform_type = (ass & 0x4) >> 2;
1247 spec->cdefine.swap = (ass & 0x2) >> 1;
1248 spec->cdefine.override = ass & 0x1;
1249
1250 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
1251 nid, spec->cdefine.sku_cfg);
1252 snd_printd("SKU: port_connectivity=0x%x\n",
1253 spec->cdefine.port_connectivity);
1254 snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
1255 snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
1256 snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
1257 snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
1258 snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
1259 snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
1260 snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
1261
1262 return 0;
1263}
1264
Takashi Iwai1d045db2011-07-07 18:23:21 +02001265/* return true if the given NID is found in the list */
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001266static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
1267{
Takashi Iwai21268962011-07-07 15:01:13 +02001268 return find_idx_in_nid_list(nid, list, nums) >= 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001269}
1270
Takashi Iwai4a79ba342009-04-22 16:31:35 +02001271/* check subsystem ID and set up device-specific initialization;
1272 * return 1 if initialized, 0 if invalid SSID
1273 */
1274/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
1275 * 31 ~ 16 : Manufacture ID
1276 * 15 ~ 8 : SKU ID
1277 * 7 ~ 0 : Assembly ID
1278 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
1279 */
1280static int alc_subsystem_id(struct hda_codec *codec,
1281 hda_nid_t porta, hda_nid_t porte,
Kailang Yang6227cdc2010-02-25 08:36:52 +01001282 hda_nid_t portd, hda_nid_t porti)
Takashi Iwai4a79ba342009-04-22 16:31:35 +02001283{
1284 unsigned int ass, tmp, i;
1285 unsigned nid;
1286 struct alc_spec *spec = codec->spec;
1287
David Henningsson90622912010-10-14 14:50:18 +02001288 if (spec->cdefine.fixup) {
1289 ass = spec->cdefine.sku_cfg;
1290 if (ass == ALC_FIXUP_SKU_IGNORE)
1291 return 0;
1292 goto do_sku;
1293 }
1294
Takashi Iwai4a79ba342009-04-22 16:31:35 +02001295 ass = codec->subsystem_id & 0xffff;
1296 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
1297 goto do_sku;
1298
1299 /* invalid SSID, check the special NID pin defcfg instead */
1300 /*
Sasha Alexandrdef319f2009-06-16 16:00:15 -04001301 * 31~30 : port connectivity
Takashi Iwai4a79ba342009-04-22 16:31:35 +02001302 * 29~21 : reserve
1303 * 20 : PCBEEP input
1304 * 19~16 : Check sum (15:1)
1305 * 15~1 : Custom
1306 * 0 : override
1307 */
1308 nid = 0x1d;
1309 if (codec->vendor_id == 0x10ec0260)
1310 nid = 0x17;
1311 ass = snd_hda_codec_get_pincfg(codec, nid);
1312 snd_printd("realtek: No valid SSID, "
1313 "checking pincfg 0x%08x for NID 0x%x\n",
Takashi Iwaicb6605c2009-04-28 13:03:19 +02001314 ass, nid);
Kailang Yang6227cdc2010-02-25 08:36:52 +01001315 if (!(ass & 1))
Takashi Iwai4a79ba342009-04-22 16:31:35 +02001316 return 0;
1317 if ((ass >> 30) != 1) /* no physical connection */
1318 return 0;
1319
1320 /* check sum */
1321 tmp = 0;
1322 for (i = 1; i < 16; i++) {
1323 if ((ass >> i) & 1)
1324 tmp++;
1325 }
1326 if (((ass >> 16) & 0xf) != tmp)
1327 return 0;
1328do_sku:
1329 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
1330 ass & 0xffff, codec->vendor_id);
1331 /*
1332 * 0 : override
1333 * 1 : Swap Jack
1334 * 2 : 0 --> Desktop, 1 --> Laptop
1335 * 3~5 : External Amplifier control
1336 * 7~6 : Reserved
1337 */
1338 tmp = (ass & 0x38) >> 3; /* external Amp control */
1339 switch (tmp) {
1340 case 1:
1341 spec->init_amp = ALC_INIT_GPIO1;
1342 break;
1343 case 3:
1344 spec->init_amp = ALC_INIT_GPIO2;
1345 break;
1346 case 7:
1347 spec->init_amp = ALC_INIT_GPIO3;
1348 break;
1349 case 5:
Takashi Iwai5a8cfb42010-11-26 17:11:18 +01001350 default:
Takashi Iwai4a79ba342009-04-22 16:31:35 +02001351 spec->init_amp = ALC_INIT_DEFAULT;
1352 break;
1353 }
1354
1355 /* is laptop or Desktop and enable the function "Mute internal speaker
1356 * when the external headphone out jack is plugged"
1357 */
1358 if (!(ass & 0x8000))
1359 return 1;
1360 /*
1361 * 10~8 : Jack location
1362 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1363 * 14~13: Resvered
1364 * 15 : 1 --> enable the function "Mute internal speaker
1365 * when the external headphone out jack is plugged"
1366 */
Takashi Iwai5fe6e012011-09-26 10:41:21 +02001367 if (!spec->autocfg.hp_pins[0] &&
1368 !(spec->autocfg.line_out_pins[0] &&
1369 spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
Takashi Iwai01d48252009-10-06 13:21:54 +02001370 hda_nid_t nid;
Kailang Yangc9b58002007-10-16 14:30:01 +02001371 tmp = (ass >> 11) & 0x3; /* HP to chassis */
1372 if (tmp == 0)
Takashi Iwai01d48252009-10-06 13:21:54 +02001373 nid = porta;
Kailang Yangc9b58002007-10-16 14:30:01 +02001374 else if (tmp == 1)
Takashi Iwai01d48252009-10-06 13:21:54 +02001375 nid = porte;
Kailang Yangc9b58002007-10-16 14:30:01 +02001376 else if (tmp == 2)
Takashi Iwai01d48252009-10-06 13:21:54 +02001377 nid = portd;
Kailang Yang6227cdc2010-02-25 08:36:52 +01001378 else if (tmp == 3)
1379 nid = porti;
Kailang Yangc9b58002007-10-16 14:30:01 +02001380 else
Takashi Iwai4a79ba342009-04-22 16:31:35 +02001381 return 1;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001382 if (found_in_nid_list(nid, spec->autocfg.line_out_pins,
1383 spec->autocfg.line_outs))
1384 return 1;
Takashi Iwai01d48252009-10-06 13:21:54 +02001385 spec->autocfg.hp_pins[0] = nid;
Kailang Yangc9b58002007-10-16 14:30:01 +02001386 }
Takashi Iwai4a79ba342009-04-22 16:31:35 +02001387 return 1;
1388}
Kailang Yangea1fb292008-08-26 12:58:38 +02001389
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001390/* Check the validity of ALC subsystem-id
1391 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
1392static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
Takashi Iwai4a79ba342009-04-22 16:31:35 +02001393{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001394 if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
Takashi Iwai4a79ba342009-04-22 16:31:35 +02001395 struct alc_spec *spec = codec->spec;
1396 snd_printd("realtek: "
1397 "Enable default setup for auto mode as fallback\n");
1398 spec->init_amp = ALC_INIT_DEFAULT;
Takashi Iwai4a79ba342009-04-22 16:31:35 +02001399 }
Takashi Iwai21268962011-07-07 15:01:13 +02001400}
Takashi Iwai1a1455d2011-04-28 17:36:18 +02001401
Takashi Iwai41e41f12005-06-08 14:48:49 +02001402/*
Takashi Iwaif8f25ba2009-10-06 08:31:29 +02001403 * Fix-up pin default configurations and add default verbs
Takashi Iwaif95474e2007-07-10 00:47:43 +02001404 */
1405
1406struct alc_pincfg {
1407 hda_nid_t nid;
1408 u32 val;
1409};
1410
Todd Broche1eb5f12010-12-06 11:19:51 -08001411struct alc_model_fixup {
1412 const int id;
1413 const char *name;
1414};
1415
Takashi Iwaif8f25ba2009-10-06 08:31:29 +02001416struct alc_fixup {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001417 int type;
Takashi Iwai361fe6e2011-01-14 09:55:32 +01001418 bool chained;
1419 int chain_id;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001420 union {
1421 unsigned int sku;
1422 const struct alc_pincfg *pins;
1423 const struct hda_verb *verbs;
1424 void (*func)(struct hda_codec *codec,
1425 const struct alc_fixup *fix,
1426 int action);
1427 } v;
Takashi Iwaif8f25ba2009-10-06 08:31:29 +02001428};
1429
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001430enum {
1431 ALC_FIXUP_INVALID,
1432 ALC_FIXUP_SKU,
1433 ALC_FIXUP_PINS,
1434 ALC_FIXUP_VERBS,
1435 ALC_FIXUP_FUNC,
1436};
Takashi Iwaif95474e2007-07-10 00:47:43 +02001437
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001438enum {
1439 ALC_FIXUP_ACT_PRE_PROBE,
1440 ALC_FIXUP_ACT_PROBE,
Takashi Iwai58701122011-01-13 15:41:45 +01001441 ALC_FIXUP_ACT_INIT,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001442};
1443
1444static void alc_apply_fixup(struct hda_codec *codec, int action)
1445{
1446 struct alc_spec *spec = codec->spec;
1447 int id = spec->fixup_id;
Takashi Iwaiaa1d0c52011-01-19 17:27:58 +01001448#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001449 const char *modelname = spec->fixup_name;
Takashi Iwaiaa1d0c52011-01-19 17:27:58 +01001450#endif
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001451 int depth = 0;
1452
1453 if (!spec->fixup_list)
1454 return;
1455
1456 while (id >= 0) {
1457 const struct alc_fixup *fix = spec->fixup_list + id;
1458 const struct alc_pincfg *cfg;
1459
1460 switch (fix->type) {
1461 case ALC_FIXUP_SKU:
1462 if (action != ALC_FIXUP_ACT_PRE_PROBE || !fix->v.sku)
Jesper Juhle53de8f2011-11-13 23:11:50 +01001463 break;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001464 snd_printdd(KERN_INFO "hda_codec: %s: "
1465 "Apply sku override for %s\n",
1466 codec->chip_name, modelname);
1467 spec->cdefine.sku_cfg = fix->v.sku;
1468 spec->cdefine.fixup = 1;
1469 break;
1470 case ALC_FIXUP_PINS:
1471 cfg = fix->v.pins;
1472 if (action != ALC_FIXUP_ACT_PRE_PROBE || !cfg)
1473 break;
1474 snd_printdd(KERN_INFO "hda_codec: %s: "
1475 "Apply pincfg for %s\n",
1476 codec->chip_name, modelname);
1477 for (; cfg->nid; cfg++)
1478 snd_hda_codec_set_pincfg(codec, cfg->nid,
1479 cfg->val);
1480 break;
1481 case ALC_FIXUP_VERBS:
1482 if (action != ALC_FIXUP_ACT_PROBE || !fix->v.verbs)
1483 break;
1484 snd_printdd(KERN_INFO "hda_codec: %s: "
1485 "Apply fix-verbs for %s\n",
1486 codec->chip_name, modelname);
1487 add_verb(codec->spec, fix->v.verbs);
1488 break;
1489 case ALC_FIXUP_FUNC:
1490 if (!fix->v.func)
1491 break;
1492 snd_printdd(KERN_INFO "hda_codec: %s: "
1493 "Apply fix-func for %s\n",
1494 codec->chip_name, modelname);
1495 fix->v.func(codec, fix, action);
1496 break;
1497 default:
1498 snd_printk(KERN_ERR "hda_codec: %s: "
1499 "Invalid fixup type %d\n",
1500 codec->chip_name, fix->type);
1501 break;
1502 }
Takashi Iwai24af2b12011-05-02 13:55:36 +02001503 if (!fix->chained)
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001504 break;
1505 if (++depth > 10)
1506 break;
Takashi Iwai24af2b12011-05-02 13:55:36 +02001507 id = fix->chain_id;
Takashi Iwai9d578832010-11-22 13:29:19 +01001508 }
Takashi Iwaif95474e2007-07-10 00:47:43 +02001509}
1510
Todd Broche1eb5f12010-12-06 11:19:51 -08001511static void alc_pick_fixup(struct hda_codec *codec,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001512 const struct alc_model_fixup *models,
1513 const struct snd_pci_quirk *quirk,
1514 const struct alc_fixup *fixlist)
Todd Broche1eb5f12010-12-06 11:19:51 -08001515{
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001516 struct alc_spec *spec = codec->spec;
Takashi Iwai596830e2011-11-09 15:06:45 +01001517 const struct snd_pci_quirk *q;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001518 int id = -1;
1519 const char *name = NULL;
Todd Broche1eb5f12010-12-06 11:19:51 -08001520
Todd Broche1eb5f12010-12-06 11:19:51 -08001521 if (codec->modelname && models) {
1522 while (models->name) {
1523 if (!strcmp(codec->modelname, models->name)) {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001524 id = models->id;
1525 name = models->name;
Todd Broche1eb5f12010-12-06 11:19:51 -08001526 break;
1527 }
1528 models++;
1529 }
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001530 }
1531 if (id < 0) {
Takashi Iwai596830e2011-11-09 15:06:45 +01001532 q = snd_pci_quirk_lookup(codec->bus->pci, quirk);
1533 if (q) {
1534 id = q->value;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001535#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwai596830e2011-11-09 15:06:45 +01001536 name = q->name;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001537#endif
1538 }
1539 }
Takashi Iwai596830e2011-11-09 15:06:45 +01001540 if (id < 0) {
1541 for (q = quirk; q->subvendor; q++) {
1542 unsigned int vendorid =
1543 q->subdevice | (q->subvendor << 16);
1544 if (vendorid == codec->subsystem_id) {
1545 id = q->value;
1546#ifdef CONFIG_SND_DEBUG_VERBOSE
1547 name = q->name;
1548#endif
1549 break;
1550 }
1551 }
1552 }
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001553
1554 spec->fixup_id = id;
1555 if (id >= 0) {
1556 spec->fixup_list = fixlist;
1557 spec->fixup_name = name;
Todd Broche1eb5f12010-12-06 11:19:51 -08001558 }
Takashi Iwaif95474e2007-07-10 00:47:43 +02001559}
1560
Takashi Iwai1d045db2011-07-07 18:23:21 +02001561/*
1562 * COEF access helper functions
1563 */
Kailang Yang274693f2009-12-03 10:07:50 +01001564static int alc_read_coef_idx(struct hda_codec *codec,
1565 unsigned int coef_idx)
1566{
1567 unsigned int val;
1568 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1569 coef_idx);
1570 val = snd_hda_codec_read(codec, 0x20, 0,
1571 AC_VERB_GET_PROC_COEF, 0);
1572 return val;
1573}
1574
Kailang Yang977ddd62010-09-15 10:02:29 +02001575static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
1576 unsigned int coef_val)
1577{
1578 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1579 coef_idx);
1580 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
1581 coef_val);
1582}
1583
Takashi Iwai1bb7e432011-10-17 16:50:59 +02001584/* a special bypass for COEF 0; read the cached value at the second time */
1585static unsigned int alc_get_coef0(struct hda_codec *codec)
1586{
1587 struct alc_spec *spec = codec->spec;
1588 if (!spec->coef0)
1589 spec->coef0 = alc_read_coef_idx(codec, 0);
1590 return spec->coef0;
1591}
1592
Takashi Iwai1d045db2011-07-07 18:23:21 +02001593/*
1594 * Digital I/O handling
1595 */
1596
Takashi Iwai757899a2010-07-30 10:48:14 +02001597/* set right pin controls for digital I/O */
1598static void alc_auto_init_digital(struct hda_codec *codec)
1599{
1600 struct alc_spec *spec = codec->spec;
1601 int i;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001602 hda_nid_t pin, dac;
Takashi Iwai757899a2010-07-30 10:48:14 +02001603
1604 for (i = 0; i < spec->autocfg.dig_outs; i++) {
1605 pin = spec->autocfg.dig_out_pins[i];
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001606 if (!pin)
1607 continue;
1608 snd_hda_codec_write(codec, pin, 0,
1609 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
1610 if (!i)
1611 dac = spec->multiout.dig_out_nid;
1612 else
1613 dac = spec->slave_dig_outs[i - 1];
1614 if (!dac || !(get_wcaps(codec, dac) & AC_WCAP_OUT_AMP))
1615 continue;
1616 snd_hda_codec_write(codec, dac, 0,
1617 AC_VERB_SET_AMP_GAIN_MUTE,
1618 AMP_OUT_UNMUTE);
Takashi Iwai757899a2010-07-30 10:48:14 +02001619 }
1620 pin = spec->autocfg.dig_in_pin;
1621 if (pin)
1622 snd_hda_codec_write(codec, pin, 0,
1623 AC_VERB_SET_PIN_WIDGET_CONTROL,
1624 PIN_IN);
1625}
1626
1627/* parse digital I/Os and set up NIDs in BIOS auto-parse mode */
1628static void alc_auto_parse_digital(struct hda_codec *codec)
1629{
1630 struct alc_spec *spec = codec->spec;
Takashi Iwai51e41522011-11-03 16:54:06 +01001631 int i, err, nums;
Takashi Iwai757899a2010-07-30 10:48:14 +02001632 hda_nid_t dig_nid;
1633
1634 /* support multiple SPDIFs; the secondary is set up as a slave */
Takashi Iwai51e41522011-11-03 16:54:06 +01001635 nums = 0;
Takashi Iwai757899a2010-07-30 10:48:14 +02001636 for (i = 0; i < spec->autocfg.dig_outs; i++) {
Takashi Iwaia9267572011-07-07 15:12:55 +02001637 hda_nid_t conn[4];
Takashi Iwai757899a2010-07-30 10:48:14 +02001638 err = snd_hda_get_connections(codec,
1639 spec->autocfg.dig_out_pins[i],
Takashi Iwaia9267572011-07-07 15:12:55 +02001640 conn, ARRAY_SIZE(conn));
Takashi Iwai51e41522011-11-03 16:54:06 +01001641 if (err <= 0)
Takashi Iwai757899a2010-07-30 10:48:14 +02001642 continue;
Takashi Iwaia9267572011-07-07 15:12:55 +02001643 dig_nid = conn[0]; /* assume the first element is audio-out */
Takashi Iwai51e41522011-11-03 16:54:06 +01001644 if (!nums) {
Takashi Iwai757899a2010-07-30 10:48:14 +02001645 spec->multiout.dig_out_nid = dig_nid;
1646 spec->dig_out_type = spec->autocfg.dig_out_type[0];
1647 } else {
1648 spec->multiout.slave_dig_outs = spec->slave_dig_outs;
Takashi Iwai51e41522011-11-03 16:54:06 +01001649 if (nums >= ARRAY_SIZE(spec->slave_dig_outs) - 1)
Takashi Iwai757899a2010-07-30 10:48:14 +02001650 break;
Takashi Iwai51e41522011-11-03 16:54:06 +01001651 spec->slave_dig_outs[nums - 1] = dig_nid;
Takashi Iwai757899a2010-07-30 10:48:14 +02001652 }
Takashi Iwai51e41522011-11-03 16:54:06 +01001653 nums++;
Takashi Iwai757899a2010-07-30 10:48:14 +02001654 }
1655
1656 if (spec->autocfg.dig_in_pin) {
Takashi Iwai01fdf182010-09-24 09:09:42 +02001657 dig_nid = codec->start_nid;
1658 for (i = 0; i < codec->num_nodes; i++, dig_nid++) {
1659 unsigned int wcaps = get_wcaps(codec, dig_nid);
1660 if (get_wcaps_type(wcaps) != AC_WID_AUD_IN)
1661 continue;
1662 if (!(wcaps & AC_WCAP_DIGITAL))
1663 continue;
1664 if (!(wcaps & AC_WCAP_CONN_LIST))
1665 continue;
1666 err = get_connection_index(codec, dig_nid,
1667 spec->autocfg.dig_in_pin);
1668 if (err >= 0) {
1669 spec->dig_in_nid = dig_nid;
1670 break;
1671 }
1672 }
Takashi Iwai757899a2010-07-30 10:48:14 +02001673 }
1674}
1675
Takashi Iwaif95474e2007-07-10 00:47:43 +02001676/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02001677 * capture mixer elements
Vincent Petryef8ef5f2008-11-23 11:31:41 +08001678 */
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001679static int alc_cap_vol_info(struct snd_kcontrol *kcontrol,
1680 struct snd_ctl_elem_info *uinfo)
1681{
1682 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1683 struct alc_spec *spec = codec->spec;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001684 unsigned long val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001685 int err;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001686
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001687 mutex_lock(&codec->control_mutex);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001688 if (spec->vol_in_capsrc)
1689 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1690 else
1691 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1692 kcontrol->private_value = val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001693 err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001694 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001695 return err;
1696}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001698static int alc_cap_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1699 unsigned int size, unsigned int __user *tlv)
1700{
1701 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1702 struct alc_spec *spec = codec->spec;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001703 unsigned long val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001704 int err;
1705
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001706 mutex_lock(&codec->control_mutex);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001707 if (spec->vol_in_capsrc)
1708 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1709 else
1710 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1711 kcontrol->private_value = val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001712 err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001713 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001714 return err;
1715}
1716
1717typedef int (*getput_call_t)(struct snd_kcontrol *kcontrol,
1718 struct snd_ctl_elem_value *ucontrol);
1719
1720static int alc_cap_getput_caller(struct snd_kcontrol *kcontrol,
1721 struct snd_ctl_elem_value *ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001722 getput_call_t func, bool check_adc_switch)
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001723{
1724 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1725 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +02001726 int i, err = 0;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001727
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001728 mutex_lock(&codec->control_mutex);
Takashi Iwai21268962011-07-07 15:01:13 +02001729 if (check_adc_switch && spec->dyn_adc_switch) {
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001730 for (i = 0; i < spec->num_adc_nids; i++) {
1731 kcontrol->private_value =
1732 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1733 3, 0, HDA_INPUT);
1734 err = func(kcontrol, ucontrol);
1735 if (err < 0)
1736 goto error;
1737 }
1738 } else {
1739 i = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001740 if (spec->vol_in_capsrc)
1741 kcontrol->private_value =
1742 HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[i],
1743 3, 0, HDA_OUTPUT);
1744 else
1745 kcontrol->private_value =
Takashi Iwai21268962011-07-07 15:01:13 +02001746 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1747 3, 0, HDA_INPUT);
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001748 err = func(kcontrol, ucontrol);
1749 }
1750 error:
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001751 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001752 return err;
1753}
1754
1755static int alc_cap_vol_get(struct snd_kcontrol *kcontrol,
1756 struct snd_ctl_elem_value *ucontrol)
1757{
1758 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001759 snd_hda_mixer_amp_volume_get, false);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001760}
1761
1762static int alc_cap_vol_put(struct snd_kcontrol *kcontrol,
1763 struct snd_ctl_elem_value *ucontrol)
1764{
1765 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001766 snd_hda_mixer_amp_volume_put, true);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001767}
1768
1769/* capture mixer elements */
1770#define alc_cap_sw_info snd_ctl_boolean_stereo_info
1771
1772static int alc_cap_sw_get(struct snd_kcontrol *kcontrol,
1773 struct snd_ctl_elem_value *ucontrol)
1774{
1775 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001776 snd_hda_mixer_amp_switch_get, false);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001777}
1778
1779static int alc_cap_sw_put(struct snd_kcontrol *kcontrol,
1780 struct snd_ctl_elem_value *ucontrol)
1781{
1782 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001783 snd_hda_mixer_amp_switch_put, true);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001784}
1785
Takashi Iwaia23b6882009-03-23 15:21:36 +01001786#define _DEFINE_CAPMIX(num) \
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001787 { \
1788 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1789 .name = "Capture Switch", \
1790 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
1791 .count = num, \
1792 .info = alc_cap_sw_info, \
1793 .get = alc_cap_sw_get, \
1794 .put = alc_cap_sw_put, \
1795 }, \
1796 { \
1797 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1798 .name = "Capture Volume", \
1799 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | \
1800 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
1801 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK), \
1802 .count = num, \
1803 .info = alc_cap_vol_info, \
1804 .get = alc_cap_vol_get, \
1805 .put = alc_cap_vol_put, \
1806 .tlv = { .c = alc_cap_vol_tlv }, \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001807 }
1808
1809#define _DEFINE_CAPSRC(num) \
Takashi Iwai3c3e9892008-10-31 17:48:56 +01001810 { \
1811 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1812 /* .name = "Capture Source", */ \
1813 .name = "Input Source", \
1814 .count = num, \
1815 .info = alc_mux_enum_info, \
1816 .get = alc_mux_enum_get, \
1817 .put = alc_mux_enum_put, \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001818 }
1819
1820#define DEFINE_CAPMIX(num) \
Takashi Iwaia9111322011-05-02 11:30:18 +02001821static const struct snd_kcontrol_new alc_capture_mixer ## num[] = { \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001822 _DEFINE_CAPMIX(num), \
1823 _DEFINE_CAPSRC(num), \
1824 { } /* end */ \
1825}
1826
1827#define DEFINE_CAPMIX_NOSRC(num) \
Takashi Iwaia9111322011-05-02 11:30:18 +02001828static const struct snd_kcontrol_new alc_capture_mixer_nosrc ## num[] = { \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001829 _DEFINE_CAPMIX(num), \
1830 { } /* end */ \
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001831}
1832
1833/* up to three ADCs */
1834DEFINE_CAPMIX(1);
1835DEFINE_CAPMIX(2);
1836DEFINE_CAPMIX(3);
Takashi Iwaia23b6882009-03-23 15:21:36 +01001837DEFINE_CAPMIX_NOSRC(1);
1838DEFINE_CAPMIX_NOSRC(2);
1839DEFINE_CAPMIX_NOSRC(3);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001840
1841/*
Takashi Iwai2134ea42008-01-10 16:53:55 +01001842 * virtual master controls
1843 */
1844
1845/*
1846 * slave controls for virtual master
1847 */
Takashi Iwaiea734962011-01-17 11:29:34 +01001848static const char * const alc_slave_vols[] = {
Takashi Iwai2134ea42008-01-10 16:53:55 +01001849 "Front Playback Volume",
1850 "Surround Playback Volume",
1851 "Center Playback Volume",
1852 "LFE Playback Volume",
1853 "Side Playback Volume",
1854 "Headphone Playback Volume",
1855 "Speaker Playback Volume",
1856 "Mono Playback Volume",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001857 "Line-Out Playback Volume",
Takashi Iwaib544d1e2012-02-03 11:56:35 +01001858 "CLFE Playback Volume",
1859 "Bass Speaker Playback Volume",
Takashi Iwai3fe45ae2011-08-18 15:13:17 +02001860 "PCM Playback Volume",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001861 NULL,
1862};
1863
Takashi Iwaiea734962011-01-17 11:29:34 +01001864static const char * const alc_slave_sws[] = {
Takashi Iwai2134ea42008-01-10 16:53:55 +01001865 "Front Playback Switch",
1866 "Surround Playback Switch",
1867 "Center Playback Switch",
1868 "LFE Playback Switch",
1869 "Side Playback Switch",
1870 "Headphone Playback Switch",
1871 "Speaker Playback Switch",
1872 "Mono Playback Switch",
Takashi Iwaiedb54a52008-01-29 12:47:02 +01001873 "IEC958 Playback Switch",
Takashi Iwai23033b22009-12-08 12:36:52 +01001874 "Line-Out Playback Switch",
Takashi Iwaib544d1e2012-02-03 11:56:35 +01001875 "CLFE Playback Switch",
1876 "Bass Speaker Playback Switch",
Takashi Iwai3fe45ae2011-08-18 15:13:17 +02001877 "PCM Playback Switch",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001878 NULL,
1879};
1880
1881/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001882 * build control elements
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 */
Takashi Iwai603c4012008-07-30 15:01:44 +02001884
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001885#define NID_MAPPING (-1)
1886
1887#define SUBDEV_SPEAKER_ (0 << 6)
1888#define SUBDEV_HP_ (1 << 6)
1889#define SUBDEV_LINE_ (2 << 6)
1890#define SUBDEV_SPEAKER(x) (SUBDEV_SPEAKER_ | ((x) & 0x3f))
1891#define SUBDEV_HP(x) (SUBDEV_HP_ | ((x) & 0x3f))
1892#define SUBDEV_LINE(x) (SUBDEV_LINE_ | ((x) & 0x3f))
1893
Takashi Iwai603c4012008-07-30 15:01:44 +02001894static void alc_free_kctls(struct hda_codec *codec);
1895
Takashi Iwai67d634c2009-11-16 15:35:59 +01001896#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001897/* additional beep mixers; the actual parameters are overwritten at build */
Takashi Iwaia9111322011-05-02 11:30:18 +02001898static const struct snd_kcontrol_new alc_beep_mixer[] = {
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001899 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
Jaroslav Kysela123c07a2009-10-21 14:48:23 +02001900 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001901 { } /* end */
1902};
Takashi Iwai67d634c2009-11-16 15:35:59 +01001903#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001904
Takashi Iwaif21d78e2012-01-19 12:10:29 +01001905static int __alc_build_controls(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906{
1907 struct alc_spec *spec = codec->spec;
Takashi Iwai2f44f842010-06-22 11:12:32 +02001908 struct snd_kcontrol *kctl = NULL;
Takashi Iwaia9111322011-05-02 11:30:18 +02001909 const struct snd_kcontrol_new *knew;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001910 int i, j, err;
1911 unsigned int u;
1912 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 for (i = 0; i < spec->num_mixers; i++) {
1915 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1916 if (err < 0)
1917 return err;
1918 }
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001919 if (spec->cap_mixer) {
1920 err = snd_hda_add_new_ctls(codec, spec->cap_mixer);
1921 if (err < 0)
1922 return err;
1923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 if (spec->multiout.dig_out_nid) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02001925 err = snd_hda_create_spdif_out_ctls(codec,
Stephen Warren74b654c2011-06-01 11:14:18 -06001926 spec->multiout.dig_out_nid,
Takashi Iwai9c7f8522006-06-28 15:08:22 +02001927 spec->multiout.dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 if (err < 0)
1929 return err;
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001930 if (!spec->no_analog) {
1931 err = snd_hda_create_spdif_share_sw(codec,
1932 &spec->multiout);
1933 if (err < 0)
1934 return err;
1935 spec->multiout.share_spdif = 1;
1936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
1938 if (spec->dig_in_nid) {
1939 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1940 if (err < 0)
1941 return err;
1942 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001943
Takashi Iwai67d634c2009-11-16 15:35:59 +01001944#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001945 /* create beep controls if needed */
1946 if (spec->beep_amp) {
Takashi Iwaia9111322011-05-02 11:30:18 +02001947 const struct snd_kcontrol_new *knew;
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001948 for (knew = alc_beep_mixer; knew->name; knew++) {
1949 struct snd_kcontrol *kctl;
1950 kctl = snd_ctl_new1(knew, codec);
1951 if (!kctl)
1952 return -ENOMEM;
1953 kctl->private_value = spec->beep_amp;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001954 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001955 if (err < 0)
1956 return err;
1957 }
1958 }
Takashi Iwai67d634c2009-11-16 15:35:59 +01001959#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001960
Takashi Iwai2134ea42008-01-10 16:53:55 +01001961 /* if we have no master control, let's create it */
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001962 if (!spec->no_analog &&
1963 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001964 unsigned int vmaster_tlv[4];
Takashi Iwai2134ea42008-01-10 16:53:55 +01001965 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001966 HDA_OUTPUT, vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001967 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001968 vmaster_tlv, alc_slave_vols);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001969 if (err < 0)
1970 return err;
1971 }
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001972 if (!spec->no_analog &&
1973 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
Takashi Iwai2134ea42008-01-10 16:53:55 +01001974 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1975 NULL, alc_slave_sws);
1976 if (err < 0)
1977 return err;
1978 }
1979
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001980 /* assign Capture Source enums to NID */
Takashi Iwaifbe618f2010-06-11 11:24:58 +02001981 if (spec->capsrc_nids || spec->adc_nids) {
1982 kctl = snd_hda_find_mixer_ctl(codec, "Capture Source");
1983 if (!kctl)
1984 kctl = snd_hda_find_mixer_ctl(codec, "Input Source");
1985 for (i = 0; kctl && i < kctl->count; i++) {
Takashi Iwai61071592011-11-23 07:52:15 +01001986 err = snd_hda_add_nid(codec, kctl, i,
1987 get_capsrc(spec, i));
Takashi Iwaifbe618f2010-06-11 11:24:58 +02001988 if (err < 0)
1989 return err;
1990 }
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001991 }
Takashi Iwai60a6a842011-07-27 14:01:24 +02001992 if (spec->cap_mixer && spec->adc_nids) {
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001993 const char *kname = kctl ? kctl->id.name : NULL;
1994 for (knew = spec->cap_mixer; knew->name; knew++) {
1995 if (kname && strcmp(knew->name, kname) == 0)
1996 continue;
1997 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1998 for (i = 0; kctl && i < kctl->count; i++) {
1999 err = snd_hda_add_nid(codec, kctl, i,
2000 spec->adc_nids[i]);
2001 if (err < 0)
2002 return err;
2003 }
2004 }
2005 }
2006
2007 /* other nid->control mapping */
2008 for (i = 0; i < spec->num_mixers; i++) {
2009 for (knew = spec->mixers[i]; knew->name; knew++) {
2010 if (knew->iface != NID_MAPPING)
2011 continue;
2012 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
2013 if (kctl == NULL)
2014 continue;
2015 u = knew->subdevice;
2016 for (j = 0; j < 4; j++, u >>= 8) {
2017 nid = u & 0x3f;
2018 if (nid == 0)
2019 continue;
2020 switch (u & 0xc0) {
2021 case SUBDEV_SPEAKER_:
2022 nid = spec->autocfg.speaker_pins[nid];
2023 break;
2024 case SUBDEV_LINE_:
2025 nid = spec->autocfg.line_out_pins[nid];
2026 break;
2027 case SUBDEV_HP_:
2028 nid = spec->autocfg.hp_pins[nid];
2029 break;
2030 default:
2031 continue;
2032 }
2033 err = snd_hda_add_nid(codec, kctl, 0, nid);
2034 if (err < 0)
2035 return err;
2036 }
2037 u = knew->private_value;
2038 for (j = 0; j < 4; j++, u >>= 8) {
2039 nid = u & 0xff;
2040 if (nid == 0)
2041 continue;
2042 err = snd_hda_add_nid(codec, kctl, 0, nid);
2043 if (err < 0)
2044 return err;
2045 }
2046 }
2047 }
Takashi Iwaibae84e72010-03-22 08:30:20 +01002048
2049 alc_free_kctls(codec); /* no longer needed */
2050
Takashi Iwaif21d78e2012-01-19 12:10:29 +01002051 return 0;
2052}
2053
2054static int alc_build_controls(struct hda_codec *codec)
2055{
2056 struct alc_spec *spec = codec->spec;
2057 int err = __alc_build_controls(codec);
Takashi Iwai01a61e12011-10-28 00:03:22 +02002058 if (err < 0)
2059 return err;
Takashi Iwaif21d78e2012-01-19 12:10:29 +01002060 return snd_hda_jack_add_kctls(codec, &spec->autocfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
2062
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064/*
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002065 * Common callbacks
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002066 */
Takashi Iwai16ded522005-06-10 19:58:24 +02002067
Takashi Iwai584c0c42011-03-10 12:51:11 +01002068static void alc_init_special_input_src(struct hda_codec *codec);
2069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070static int alc_init(struct hda_codec *codec)
2071{
2072 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002073 unsigned int i;
2074
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02002075 alc_fix_pll(codec);
Takashi Iwai4a79ba342009-04-22 16:31:35 +02002076 alc_auto_init_amp(codec, spec->init_amp);
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02002077
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002078 for (i = 0; i < spec->num_init_verbs; i++)
2079 snd_hda_sequence_write(codec, spec->init_verbs[i]);
Takashi Iwai584c0c42011-03-10 12:51:11 +01002080 alc_init_special_input_src(codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002081
2082 if (spec->init_hook)
2083 spec->init_hook(codec);
2084
Takashi Iwai58701122011-01-13 15:41:45 +01002085 alc_apply_fixup(codec, ALC_FIXUP_ACT_INIT);
2086
Takashi Iwai01a61e12011-10-28 00:03:22 +02002087 snd_hda_jack_report_sync(codec);
2088
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002089 hda_call_check_power_status(codec, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 return 0;
2091}
2092
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002093static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2094{
2095 struct alc_spec *spec = codec->spec;
2096
2097 if (spec->unsol_event)
2098 spec->unsol_event(codec, res);
2099}
2100
Takashi Iwaicb53c622007-08-10 17:21:45 +02002101#ifdef CONFIG_SND_HDA_POWER_SAVE
2102static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2103{
2104 struct alc_spec *spec = codec->spec;
2105 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2106}
2107#endif
2108
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109/*
2110 * Analog playback callbacks
2111 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002112static int alc_playback_pcm_open(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002114 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
2116 struct alc_spec *spec = codec->spec;
Takashi Iwai9a081602008-02-12 18:37:26 +01002117 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2118 hinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119}
2120
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002121static int alc_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 struct hda_codec *codec,
2123 unsigned int stream_tag,
2124 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002125 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126{
2127 struct alc_spec *spec = codec->spec;
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002128 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2129 stream_tag, format, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130}
2131
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002132static int alc_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002134 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
2136 struct alc_spec *spec = codec->spec;
2137 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2138}
2139
2140/*
2141 * Digital out
2142 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002143static int alc_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002145 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146{
2147 struct alc_spec *spec = codec->spec;
2148 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2149}
2150
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002151static int alc_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002152 struct hda_codec *codec,
2153 unsigned int stream_tag,
2154 unsigned int format,
2155 struct snd_pcm_substream *substream)
2156{
2157 struct alc_spec *spec = codec->spec;
2158 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2159 stream_tag, format, substream);
2160}
2161
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002162static int alc_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
Takashi Iwai9b5f12e2009-02-13 11:47:37 +01002163 struct hda_codec *codec,
2164 struct snd_pcm_substream *substream)
2165{
2166 struct alc_spec *spec = codec->spec;
2167 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2168}
2169
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002170static int alc_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002172 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173{
2174 struct alc_spec *spec = codec->spec;
2175 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2176}
2177
2178/*
2179 * Analog capture
2180 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002181static int alc_alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 struct hda_codec *codec,
2183 unsigned int stream_tag,
2184 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002185 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186{
2187 struct alc_spec *spec = codec->spec;
2188
Takashi Iwai63300792008-01-24 15:31:36 +01002189 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 stream_tag, 0, format);
2191 return 0;
2192}
2193
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002194static int alc_alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002196 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197{
2198 struct alc_spec *spec = codec->spec;
2199
Takashi Iwai888afa12008-03-18 09:57:50 +01002200 snd_hda_codec_cleanup_stream(codec,
2201 spec->adc_nids[substream->number + 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 return 0;
2203}
2204
Takashi Iwai840b64c2010-07-13 22:49:01 +02002205/* analog capture with dynamic dual-adc changes */
Takashi Iwai21268962011-07-07 15:01:13 +02002206static int dyn_adc_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai840b64c2010-07-13 22:49:01 +02002207 struct hda_codec *codec,
2208 unsigned int stream_tag,
2209 unsigned int format,
2210 struct snd_pcm_substream *substream)
2211{
2212 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +02002213 spec->cur_adc = spec->adc_nids[spec->dyn_adc_idx[spec->cur_mux[0]]];
Takashi Iwai840b64c2010-07-13 22:49:01 +02002214 spec->cur_adc_stream_tag = stream_tag;
2215 spec->cur_adc_format = format;
2216 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
2217 return 0;
2218}
2219
Takashi Iwai21268962011-07-07 15:01:13 +02002220static int dyn_adc_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
Takashi Iwai840b64c2010-07-13 22:49:01 +02002221 struct hda_codec *codec,
2222 struct snd_pcm_substream *substream)
2223{
2224 struct alc_spec *spec = codec->spec;
2225 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
2226 spec->cur_adc = 0;
2227 return 0;
2228}
2229
Takashi Iwai21268962011-07-07 15:01:13 +02002230static const struct hda_pcm_stream dyn_adc_pcm_analog_capture = {
Takashi Iwai840b64c2010-07-13 22:49:01 +02002231 .substreams = 1,
2232 .channels_min = 2,
2233 .channels_max = 2,
2234 .nid = 0, /* fill later */
2235 .ops = {
Takashi Iwai21268962011-07-07 15:01:13 +02002236 .prepare = dyn_adc_capture_pcm_prepare,
2237 .cleanup = dyn_adc_capture_pcm_cleanup
Takashi Iwai840b64c2010-07-13 22:49:01 +02002238 },
2239};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241/*
2242 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002243static const struct hda_pcm_stream alc_pcm_analog_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 .substreams = 1,
2245 .channels_min = 2,
2246 .channels_max = 8,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002247 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002249 .open = alc_playback_pcm_open,
2250 .prepare = alc_playback_pcm_prepare,
2251 .cleanup = alc_playback_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 },
2253};
2254
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002255static const struct hda_pcm_stream alc_pcm_analog_capture = {
Takashi Iwai63300792008-01-24 15:31:36 +01002256 .substreams = 1,
2257 .channels_min = 2,
2258 .channels_max = 2,
2259 /* NID is set in alc_build_pcms */
2260};
2261
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002262static const struct hda_pcm_stream alc_pcm_analog_alt_playback = {
Takashi Iwai63300792008-01-24 15:31:36 +01002263 .substreams = 1,
2264 .channels_min = 2,
2265 .channels_max = 2,
2266 /* NID is set in alc_build_pcms */
2267};
2268
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002269static const struct hda_pcm_stream alc_pcm_analog_alt_capture = {
Takashi Iwai63300792008-01-24 15:31:36 +01002270 .substreams = 2, /* can be overridden */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 .channels_min = 2,
2272 .channels_max = 2,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002273 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002275 .prepare = alc_alt_capture_pcm_prepare,
2276 .cleanup = alc_alt_capture_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 },
2278};
2279
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002280static const struct hda_pcm_stream alc_pcm_digital_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 .substreams = 1,
2282 .channels_min = 2,
2283 .channels_max = 2,
2284 /* NID is set in alc_build_pcms */
2285 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002286 .open = alc_dig_playback_pcm_open,
2287 .close = alc_dig_playback_pcm_close,
2288 .prepare = alc_dig_playback_pcm_prepare,
2289 .cleanup = alc_dig_playback_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 },
2291};
2292
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002293static const struct hda_pcm_stream alc_pcm_digital_capture = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 .substreams = 1,
2295 .channels_min = 2,
2296 .channels_max = 2,
2297 /* NID is set in alc_build_pcms */
2298};
2299
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002300/* Used by alc_build_pcms to flag that a PCM has no playback stream */
Takashi Iwaia9111322011-05-02 11:30:18 +02002301static const struct hda_pcm_stream alc_pcm_null_stream = {
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002302 .substreams = 0,
2303 .channels_min = 0,
2304 .channels_max = 0,
2305};
2306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307static int alc_build_pcms(struct hda_codec *codec)
2308{
2309 struct alc_spec *spec = codec->spec;
2310 struct hda_pcm *info = spec->pcm_rec;
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002311 const struct hda_pcm_stream *p;
Takashi Iwai1fa17572011-11-02 21:30:51 +01002312 bool have_multi_adcs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 int i;
2314
2315 codec->num_pcms = 1;
2316 codec->pcm_info = info;
2317
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002318 if (spec->no_analog)
2319 goto skip_analog;
2320
Takashi Iwai812a2cc2009-05-16 10:00:49 +02002321 snprintf(spec->stream_name_analog, sizeof(spec->stream_name_analog),
2322 "%s Analog", codec->chip_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 info->name = spec->stream_name_analog;
Kailang Yang274693f2009-12-03 10:07:50 +01002324
Takashi Iwaieedec3d2012-02-06 10:24:04 +01002325 if (spec->multiout.num_dacs > 0) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002326 p = spec->stream_analog_playback;
2327 if (!p)
2328 p = &alc_pcm_analog_playback;
2329 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002330 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2331 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002332 if (spec->adc_nids) {
2333 p = spec->stream_analog_capture;
Takashi Iwai21268962011-07-07 15:01:13 +02002334 if (!p) {
2335 if (spec->dyn_adc_switch)
2336 p = &dyn_adc_pcm_analog_capture;
2337 else
2338 p = &alc_pcm_analog_capture;
2339 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002340 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002341 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Takashi Iwai4a471b72005-12-07 13:56:29 +01002344 if (spec->channel_mode) {
2345 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2346 for (i = 0; i < spec->num_channel_mode; i++) {
2347 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2348 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 }
2351 }
2352
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002353 skip_analog:
Takashi Iwaie08a0072006-09-07 17:52:14 +02002354 /* SPDIF for stream index #1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
Takashi Iwai812a2cc2009-05-16 10:00:49 +02002356 snprintf(spec->stream_name_digital,
2357 sizeof(spec->stream_name_digital),
2358 "%s Digital", codec->chip_name);
Takashi Iwaie08a0072006-09-07 17:52:14 +02002359 codec->num_pcms = 2;
Wu Fengguangb25c9da2009-02-06 15:02:27 +08002360 codec->slave_dig_outs = spec->multiout.slave_dig_outs;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002361 info = spec->pcm_rec + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 info->name = spec->stream_name_digital;
Takashi Iwai8c441982009-01-20 18:30:20 +01002363 if (spec->dig_out_type)
2364 info->pcm_type = spec->dig_out_type;
2365 else
2366 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002367 if (spec->multiout.dig_out_nid) {
2368 p = spec->stream_digital_playback;
2369 if (!p)
2370 p = &alc_pcm_digital_playback;
2371 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2373 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002374 if (spec->dig_in_nid) {
2375 p = spec->stream_digital_capture;
2376 if (!p)
2377 p = &alc_pcm_digital_capture;
2378 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2380 }
Takashi Iwai963f8032008-08-11 10:04:40 +02002381 /* FIXME: do we need this for all Realtek codec models? */
2382 codec->spdif_status_reset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 }
2384
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002385 if (spec->no_analog)
2386 return 0;
2387
Takashi Iwaie08a0072006-09-07 17:52:14 +02002388 /* If the use of more than one ADC is requested for the current
2389 * model, configure a second analog capture-only PCM.
2390 */
Takashi Iwai1fa17572011-11-02 21:30:51 +01002391 have_multi_adcs = (spec->num_adc_nids > 1) &&
2392 !spec->dyn_adc_switch && !spec->auto_mic &&
2393 (!spec->input_mux || spec->input_mux->num_items > 1);
Takashi Iwaie08a0072006-09-07 17:52:14 +02002394 /* Additional Analaog capture for index #2 */
Takashi Iwai1fa17572011-11-02 21:30:51 +01002395 if (spec->alt_dac_nid || have_multi_adcs) {
Takashi Iwaie08a0072006-09-07 17:52:14 +02002396 codec->num_pcms = 3;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002397 info = spec->pcm_rec + 2;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002398 info->name = spec->stream_name_analog;
Takashi Iwai63300792008-01-24 15:31:36 +01002399 if (spec->alt_dac_nid) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002400 p = spec->stream_analog_alt_playback;
2401 if (!p)
2402 p = &alc_pcm_analog_alt_playback;
2403 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Takashi Iwai63300792008-01-24 15:31:36 +01002404 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2405 spec->alt_dac_nid;
2406 } else {
2407 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2408 alc_pcm_null_stream;
2409 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2410 }
Takashi Iwai1fa17572011-11-02 21:30:51 +01002411 if (have_multi_adcs) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002412 p = spec->stream_analog_alt_capture;
2413 if (!p)
2414 p = &alc_pcm_analog_alt_capture;
2415 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Takashi Iwai63300792008-01-24 15:31:36 +01002416 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
2417 spec->adc_nids[1];
2418 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
2419 spec->num_adc_nids - 1;
2420 } else {
2421 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2422 alc_pcm_null_stream;
2423 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002424 }
2425 }
2426
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 return 0;
2428}
2429
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002430static inline void alc_shutup(struct hda_codec *codec)
2431{
Takashi Iwai1c7161532011-04-07 10:37:16 +02002432 struct alc_spec *spec = codec->spec;
2433
2434 if (spec && spec->shutup)
2435 spec->shutup(codec);
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002436 snd_hda_shutup_pins(codec);
2437}
2438
Takashi Iwai603c4012008-07-30 15:01:44 +02002439static void alc_free_kctls(struct hda_codec *codec)
2440{
2441 struct alc_spec *spec = codec->spec;
2442
2443 if (spec->kctls.list) {
2444 struct snd_kcontrol_new *kctl = spec->kctls.list;
2445 int i;
2446 for (i = 0; i < spec->kctls.used; i++)
2447 kfree(kctl[i].name);
2448 }
2449 snd_array_free(&spec->kctls);
2450}
2451
Takashi Iwai23c09b02011-08-19 09:05:35 +02002452static void alc_free_bind_ctls(struct hda_codec *codec)
2453{
2454 struct alc_spec *spec = codec->spec;
2455 if (spec->bind_ctls.list) {
2456 struct hda_bind_ctls **ctl = spec->bind_ctls.list;
2457 int i;
2458 for (i = 0; i < spec->bind_ctls.used; i++)
2459 kfree(ctl[i]);
2460 }
2461 snd_array_free(&spec->bind_ctls);
2462}
2463
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464static void alc_free(struct hda_codec *codec)
2465{
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002466 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002467
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002468 if (!spec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002469 return;
2470
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002471 alc_shutup(codec);
Takashi Iwai603c4012008-07-30 15:01:44 +02002472 alc_free_kctls(codec);
Takashi Iwai23c09b02011-08-19 09:05:35 +02002473 alc_free_bind_ctls(codec);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002474 kfree(spec);
Kusanagi Kouichi680cd532009-02-05 00:00:58 +09002475 snd_hda_detach_beep_device(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476}
2477
Hector Martinf5de24b2009-12-20 22:51:31 +01002478#ifdef CONFIG_SND_HDA_POWER_SAVE
Daniel T Chenc97259d2009-12-27 18:52:08 -05002479static void alc_power_eapd(struct hda_codec *codec)
2480{
Takashi Iwai691f1fc2011-04-07 10:31:43 +02002481 alc_auto_setup_eapd(codec, false);
Daniel T Chenc97259d2009-12-27 18:52:08 -05002482}
2483
Hector Martinf5de24b2009-12-20 22:51:31 +01002484static int alc_suspend(struct hda_codec *codec, pm_message_t state)
2485{
2486 struct alc_spec *spec = codec->spec;
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002487 alc_shutup(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +01002488 if (spec && spec->power_hook)
Daniel T Chenc97259d2009-12-27 18:52:08 -05002489 spec->power_hook(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +01002490 return 0;
2491}
2492#endif
2493
Takashi Iwai2a439522011-07-26 09:52:50 +02002494#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +01002495static int alc_resume(struct hda_codec *codec)
2496{
Takashi Iwai1c7161532011-04-07 10:37:16 +02002497 msleep(150); /* to avoid pop noise */
Takashi Iwaie044c392008-10-27 16:56:24 +01002498 codec->patch_ops.init(codec);
2499 snd_hda_codec_resume_amp(codec);
2500 snd_hda_codec_resume_cache(codec);
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002501 hda_call_check_power_status(codec, 0x01);
Takashi Iwaie044c392008-10-27 16:56:24 +01002502 return 0;
2503}
Takashi Iwaie044c392008-10-27 16:56:24 +01002504#endif
2505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506/*
2507 */
Takashi Iwaia9111322011-05-02 11:30:18 +02002508static const struct hda_codec_ops alc_patch_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 .build_controls = alc_build_controls,
2510 .build_pcms = alc_build_pcms,
2511 .init = alc_init,
2512 .free = alc_free,
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002513 .unsol_event = alc_unsol_event,
Takashi Iwai2a439522011-07-26 09:52:50 +02002514#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +01002515 .resume = alc_resume,
2516#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +02002517#ifdef CONFIG_SND_HDA_POWER_SAVE
Hector Martinf5de24b2009-12-20 22:51:31 +01002518 .suspend = alc_suspend,
Takashi Iwaicb53c622007-08-10 17:21:45 +02002519 .check_power_status = alc_check_power_status,
2520#endif
Daniel T Chenc97259d2009-12-27 18:52:08 -05002521 .reboot_notify = alc_shutup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522};
2523
Kailang Yangc027ddc2010-03-19 11:33:06 +01002524/* replace the codec chip_name with the given string */
2525static int alc_codec_rename(struct hda_codec *codec, const char *name)
2526{
2527 kfree(codec->chip_name);
2528 codec->chip_name = kstrdup(name, GFP_KERNEL);
2529 if (!codec->chip_name) {
2530 alc_free(codec);
2531 return -ENOMEM;
2532 }
2533 return 0;
2534}
2535
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002536/*
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002537 * Rename codecs appropriately from COEF value
2538 */
2539struct alc_codec_rename_table {
2540 unsigned int vendor_id;
2541 unsigned short coef_mask;
2542 unsigned short coef_bits;
2543 const char *name;
2544};
2545
2546static struct alc_codec_rename_table rename_tbl[] = {
2547 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
2548 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
2549 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
2550 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
2551 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
2552 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
2553 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
2554 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
2555 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
2556 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
2557 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
2558 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
2559 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
2560 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
2561 { } /* terminator */
2562};
2563
2564static int alc_codec_rename_from_preset(struct hda_codec *codec)
2565{
2566 const struct alc_codec_rename_table *p;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002567
2568 for (p = rename_tbl; p->vendor_id; p++) {
2569 if (p->vendor_id != codec->vendor_id)
2570 continue;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02002571 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002572 return alc_codec_rename(codec, p->name);
2573 }
2574 return 0;
2575}
2576
2577/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002578 * Automatic parse of I/O pins from the BIOS configuration
2579 */
2580
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002581enum {
2582 ALC_CTL_WIDGET_VOL,
2583 ALC_CTL_WIDGET_MUTE,
2584 ALC_CTL_BIND_MUTE,
Takashi Iwai23c09b02011-08-19 09:05:35 +02002585 ALC_CTL_BIND_VOL,
2586 ALC_CTL_BIND_SW,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002587};
Takashi Iwai1d045db2011-07-07 18:23:21 +02002588static const struct snd_kcontrol_new alc_control_templates[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002589 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2590 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Takashi Iwai985be542005-11-02 18:26:49 +01002591 HDA_BIND_MUTE(NULL, 0, 0, 0),
Takashi Iwai23c09b02011-08-19 09:05:35 +02002592 HDA_BIND_VOL(NULL, 0),
2593 HDA_BIND_SW(NULL, 0),
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002594};
2595
2596/* add dynamic controls */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002597static int add_control(struct alc_spec *spec, int type, const char *name,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002598 int cidx, unsigned long val)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002599{
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002600 struct snd_kcontrol_new *knew;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002601
Takashi Iwaice764ab2011-04-27 16:35:23 +02002602 knew = alc_kcontrol_new(spec);
Takashi Iwai603c4012008-07-30 15:01:44 +02002603 if (!knew)
2604 return -ENOMEM;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002605 *knew = alc_control_templates[type];
Paulo Marques543537b2005-06-23 00:09:02 -07002606 knew->name = kstrdup(name, GFP_KERNEL);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002607 if (!knew->name)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002608 return -ENOMEM;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002609 knew->index = cidx;
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002610 if (get_amp_nid_(val))
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002611 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002612 knew->private_value = val;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002613 return 0;
2614}
2615
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002616static int add_control_with_pfx(struct alc_spec *spec, int type,
2617 const char *pfx, const char *dir,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002618 const char *sfx, int cidx, unsigned long val)
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002619{
2620 char name[32];
2621 snprintf(name, sizeof(name), "%s %s %s", pfx, dir, sfx);
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002622 return add_control(spec, type, name, cidx, val);
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002623}
2624
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002625#define add_pb_vol_ctrl(spec, type, pfx, val) \
2626 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val)
2627#define add_pb_sw_ctrl(spec, type, pfx, val) \
2628 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val)
2629#define __add_pb_vol_ctrl(spec, type, pfx, cidx, val) \
2630 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val)
2631#define __add_pb_sw_ctrl(spec, type, pfx, cidx, val) \
2632 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val)
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002633
Takashi Iwai23c09b02011-08-19 09:05:35 +02002634static const char * const channel_name[4] = {
2635 "Front", "Surround", "CLFE", "Side"
2636};
2637
Takashi Iwai6843ca12011-06-24 11:03:58 +02002638static const char *alc_get_line_out_pfx(struct alc_spec *spec, int ch,
2639 bool can_be_master, int *index)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002640{
Takashi Iwaice764ab2011-04-27 16:35:23 +02002641 struct auto_pin_cfg *cfg = &spec->autocfg;
2642
Takashi Iwai6843ca12011-06-24 11:03:58 +02002643 *index = 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02002644 if (cfg->line_outs == 1 && !spec->multi_ios &&
2645 !cfg->hp_outs && !cfg->speaker_outs && can_be_master)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002646 return "Master";
2647
2648 switch (cfg->line_out_type) {
2649 case AUTO_PIN_SPEAKER_OUT:
David Henningssonebbeb3d2011-03-04 14:08:30 +01002650 if (cfg->line_outs == 1)
2651 return "Speaker";
Takashi Iwaifbabc242011-12-07 17:14:20 +01002652 if (cfg->line_outs == 2)
2653 return ch ? "Bass Speaker" : "Speaker";
David Henningssonebbeb3d2011-03-04 14:08:30 +01002654 break;
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002655 case AUTO_PIN_HP_OUT:
Takashi Iwai6843ca12011-06-24 11:03:58 +02002656 /* for multi-io case, only the primary out */
2657 if (ch && spec->multi_ios)
2658 break;
2659 *index = ch;
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002660 return "Headphone";
2661 default:
Takashi Iwaice764ab2011-04-27 16:35:23 +02002662 if (cfg->line_outs == 1 && !spec->multi_ios)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002663 return "PCM";
2664 break;
2665 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02002666 if (snd_BUG_ON(ch >= ARRAY_SIZE(channel_name)))
2667 return "PCM";
2668
2669 return channel_name[ch];
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002670}
2671
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002672/* create input playback/capture controls for the given pin */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002673static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002674 const char *ctlname, int ctlidx,
Kailang Yangdf694da2005-12-05 19:42:22 +01002675 int idx, hda_nid_t mix_nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002676{
Kailang Yangdf694da2005-12-05 19:42:22 +01002677 int err;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002678
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002679 err = __add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, ctlname, ctlidx,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002680 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2681 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002682 return err;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002683 err = __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, ctlidx,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002684 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2685 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002686 return err;
2687 return 0;
2688}
2689
Takashi Iwai05f5f472009-08-25 13:10:18 +02002690static int alc_is_input_pin(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002691{
Takashi Iwai05f5f472009-08-25 13:10:18 +02002692 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2693 return (pincap & AC_PINCAP_IN) != 0;
2694}
2695
Takashi Iwai1d045db2011-07-07 18:23:21 +02002696/* Parse the codec tree and retrieve ADCs and corresponding capsrc MUXs */
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002697static int alc_auto_fill_adc_caps(struct hda_codec *codec)
Takashi Iwaib7821702011-07-06 15:12:46 +02002698{
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002699 struct alc_spec *spec = codec->spec;
Takashi Iwaib7821702011-07-06 15:12:46 +02002700 hda_nid_t nid;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002701 hda_nid_t *adc_nids = spec->private_adc_nids;
2702 hda_nid_t *cap_nids = spec->private_capsrc_nids;
2703 int max_nums = ARRAY_SIZE(spec->private_adc_nids);
Takashi Iwaib7821702011-07-06 15:12:46 +02002704 int i, nums = 0;
2705
Takashi Iwai24de1832011-11-07 17:13:39 +01002706 if (spec->shared_mic_hp)
2707 max_nums = 1; /* no multi streams with the shared HP/mic */
2708
Takashi Iwaib7821702011-07-06 15:12:46 +02002709 nid = codec->start_nid;
2710 for (i = 0; i < codec->num_nodes; i++, nid++) {
2711 hda_nid_t src;
2712 const hda_nid_t *list;
2713 unsigned int caps = get_wcaps(codec, nid);
2714 int type = get_wcaps_type(caps);
2715
2716 if (type != AC_WID_AUD_IN || (caps & AC_WCAP_DIGITAL))
2717 continue;
2718 adc_nids[nums] = nid;
2719 cap_nids[nums] = nid;
2720 src = nid;
2721 for (;;) {
2722 int n;
2723 type = get_wcaps_type(get_wcaps(codec, src));
2724 if (type == AC_WID_PIN)
2725 break;
2726 if (type == AC_WID_AUD_SEL) {
2727 cap_nids[nums] = src;
2728 break;
2729 }
2730 n = snd_hda_get_conn_list(codec, src, &list);
2731 if (n > 1) {
2732 cap_nids[nums] = src;
2733 break;
2734 } else if (n != 1)
2735 break;
2736 src = *list;
2737 }
2738 if (++nums >= max_nums)
2739 break;
2740 }
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002741 spec->adc_nids = spec->private_adc_nids;
Takashi Iwai21268962011-07-07 15:01:13 +02002742 spec->capsrc_nids = spec->private_capsrc_nids;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002743 spec->num_adc_nids = nums;
Takashi Iwaib7821702011-07-06 15:12:46 +02002744 return nums;
2745}
2746
Takashi Iwai05f5f472009-08-25 13:10:18 +02002747/* create playback/capture controls for input pins */
Takashi Iwaib7821702011-07-06 15:12:46 +02002748static int alc_auto_create_input_ctls(struct hda_codec *codec)
Takashi Iwai05f5f472009-08-25 13:10:18 +02002749{
2750 struct alc_spec *spec = codec->spec;
Takashi Iwaib7821702011-07-06 15:12:46 +02002751 const struct auto_pin_cfg *cfg = &spec->autocfg;
2752 hda_nid_t mixer = spec->mixer_nid;
Herton Ronaldo Krzesinski61b9b9b2009-01-28 09:16:33 -02002753 struct hda_input_mux *imux = &spec->private_imux[0];
Takashi Iwaib7821702011-07-06 15:12:46 +02002754 int num_adcs;
Takashi Iwaib7821702011-07-06 15:12:46 +02002755 int i, c, err, idx, type_idx = 0;
David Henningsson5322bf22011-01-05 11:03:56 +01002756 const char *prev_label = NULL;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002757
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002758 num_adcs = alc_auto_fill_adc_caps(codec);
Takashi Iwaib7821702011-07-06 15:12:46 +02002759 if (num_adcs < 0)
2760 return 0;
2761
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002762 for (i = 0; i < cfg->num_inputs; i++) {
Takashi Iwai05f5f472009-08-25 13:10:18 +02002763 hda_nid_t pin;
Takashi Iwai10a20af2010-09-09 16:28:02 +02002764 const char *label;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002765
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002766 pin = cfg->inputs[i].pin;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002767 if (!alc_is_input_pin(codec, pin))
2768 continue;
2769
David Henningsson5322bf22011-01-05 11:03:56 +01002770 label = hda_get_autocfg_input_label(codec, cfg, i);
Takashi Iwai24de1832011-11-07 17:13:39 +01002771 if (spec->shared_mic_hp && !strcmp(label, "Misc"))
2772 label = "Headphone Mic";
David Henningsson5322bf22011-01-05 11:03:56 +01002773 if (prev_label && !strcmp(label, prev_label))
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002774 type_idx++;
2775 else
2776 type_idx = 0;
David Henningsson5322bf22011-01-05 11:03:56 +01002777 prev_label = label;
2778
Takashi Iwai05f5f472009-08-25 13:10:18 +02002779 if (mixer) {
2780 idx = get_connection_index(codec, mixer, pin);
2781 if (idx >= 0) {
2782 err = new_analog_input(spec, pin,
Takashi Iwai10a20af2010-09-09 16:28:02 +02002783 label, type_idx,
2784 idx, mixer);
Takashi Iwai05f5f472009-08-25 13:10:18 +02002785 if (err < 0)
2786 return err;
2787 }
2788 }
2789
Takashi Iwaib7821702011-07-06 15:12:46 +02002790 for (c = 0; c < num_adcs; c++) {
Takashi Iwai61071592011-11-23 07:52:15 +01002791 hda_nid_t cap = get_capsrc(spec, c);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002792 idx = get_connection_index(codec, cap, pin);
Takashi Iwaib7821702011-07-06 15:12:46 +02002793 if (idx >= 0) {
Takashi Iwai21268962011-07-07 15:01:13 +02002794 spec->imux_pins[imux->num_items] = pin;
Takashi Iwaib7821702011-07-06 15:12:46 +02002795 snd_hda_add_imux_item(imux, label, idx, NULL);
2796 break;
2797 }
2798 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002799 }
Takashi Iwai21268962011-07-07 15:01:13 +02002800
2801 spec->num_mux_defs = 1;
2802 spec->input_mux = imux;
2803
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002804 return 0;
2805}
2806
Takashi Iwai24de1832011-11-07 17:13:39 +01002807/* create a shared input with the headphone out */
2808static int alc_auto_create_shared_input(struct hda_codec *codec)
2809{
2810 struct alc_spec *spec = codec->spec;
2811 struct auto_pin_cfg *cfg = &spec->autocfg;
2812 unsigned int defcfg;
2813 hda_nid_t nid;
2814
2815 /* only one internal input pin? */
2816 if (cfg->num_inputs != 1)
2817 return 0;
2818 defcfg = snd_hda_codec_get_pincfg(codec, cfg->inputs[0].pin);
2819 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
2820 return 0;
2821
2822 if (cfg->hp_outs == 1 && cfg->line_out_type == AUTO_PIN_SPEAKER_OUT)
2823 nid = cfg->hp_pins[0]; /* OK, we have a single HP-out */
2824 else if (cfg->line_outs == 1 && cfg->line_out_type == AUTO_PIN_HP_OUT)
2825 nid = cfg->line_out_pins[0]; /* OK, we have a single line-out */
2826 else
2827 return 0; /* both not available */
2828
2829 if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_IN))
2830 return 0; /* no input */
2831
2832 cfg->inputs[1].pin = nid;
2833 cfg->inputs[1].type = AUTO_PIN_MIC;
2834 cfg->num_inputs = 2;
2835 spec->shared_mic_hp = 1;
2836 snd_printdd("realtek: Enable shared I/O jack on NID 0x%x\n", nid);
2837 return 0;
2838}
2839
Takashi Iwaif6c7e542008-02-12 18:32:23 +01002840static void alc_set_pin_output(struct hda_codec *codec, hda_nid_t nid,
2841 unsigned int pin_type)
2842{
2843 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2844 pin_type);
2845 /* unmute pin */
Takashi Iwai44c02402011-07-08 15:14:19 +02002846 if (nid_has_mute(codec, nid, HDA_OUTPUT))
2847 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaid260cdf2008-02-13 17:19:35 +01002848 AMP_OUT_UNMUTE);
Takashi Iwaif6c7e542008-02-12 18:32:23 +01002849}
2850
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02002851static int get_pin_type(int line_out_type)
2852{
2853 if (line_out_type == AUTO_PIN_HP_OUT)
2854 return PIN_HP;
2855 else
2856 return PIN_OUT;
2857}
2858
Takashi Iwai0a7f5322011-07-06 15:15:12 +02002859static void alc_auto_init_analog_input(struct hda_codec *codec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002860{
2861 struct alc_spec *spec = codec->spec;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002862 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002863 int i;
2864
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002865 for (i = 0; i < cfg->num_inputs; i++) {
2866 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002867 if (alc_is_input_pin(codec, nid)) {
Takashi Iwai30ea0982010-09-16 18:47:56 +02002868 alc_set_input_pin(codec, nid, cfg->inputs[i].type);
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002869 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002870 snd_hda_codec_write(codec, nid, 0,
2871 AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002872 AMP_OUT_MUTE);
2873 }
2874 }
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002875
2876 /* mute all loopback inputs */
2877 if (spec->mixer_nid) {
2878 int nums = snd_hda_get_conn_list(codec, spec->mixer_nid, NULL);
2879 for (i = 0; i < nums; i++)
2880 snd_hda_codec_write(codec, spec->mixer_nid, 0,
2881 AC_VERB_SET_AMP_GAIN_MUTE,
2882 AMP_IN_MUTE(i));
2883 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002884}
2885
Takashi Iwai7085ec12009-10-02 09:03:58 +02002886/* convert from MIX nid to DAC */
Takashi Iwai604401a2011-04-27 15:14:23 +02002887static hda_nid_t alc_auto_mix_to_dac(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002888{
Takashi Iwai604401a2011-04-27 15:14:23 +02002889 hda_nid_t list[5];
Takashi Iwai1304ac82011-04-06 15:16:21 +02002890 int i, num;
2891
Takashi Iwaiafcd5512011-07-08 11:07:59 +02002892 if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_AUD_OUT)
2893 return nid;
Takashi Iwai1304ac82011-04-06 15:16:21 +02002894 num = snd_hda_get_connections(codec, nid, list, ARRAY_SIZE(list));
2895 for (i = 0; i < num; i++) {
2896 if (get_wcaps_type(get_wcaps(codec, list[i])) == AC_WID_AUD_OUT)
2897 return list[i];
2898 }
2899 return 0;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002900}
2901
Takashi Iwai604401a2011-04-27 15:14:23 +02002902/* go down to the selector widget before the mixer */
2903static hda_nid_t alc_go_down_to_selector(struct hda_codec *codec, hda_nid_t pin)
2904{
2905 hda_nid_t srcs[5];
2906 int num = snd_hda_get_connections(codec, pin, srcs,
2907 ARRAY_SIZE(srcs));
2908 if (num != 1 ||
2909 get_wcaps_type(get_wcaps(codec, srcs[0])) != AC_WID_AUD_SEL)
2910 return pin;
2911 return srcs[0];
2912}
2913
Takashi Iwai7085ec12009-10-02 09:03:58 +02002914/* get MIX nid connected to the given pin targeted to DAC */
Takashi Iwai604401a2011-04-27 15:14:23 +02002915static hda_nid_t alc_auto_dac_to_mix(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai7085ec12009-10-02 09:03:58 +02002916 hda_nid_t dac)
2917{
David Henningssoncc1c4522010-11-24 14:17:47 +01002918 hda_nid_t mix[5];
Takashi Iwai7085ec12009-10-02 09:03:58 +02002919 int i, num;
2920
Takashi Iwai604401a2011-04-27 15:14:23 +02002921 pin = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002922 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2923 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02002924 if (alc_auto_mix_to_dac(codec, mix[i]) == dac)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002925 return mix[i];
2926 }
2927 return 0;
2928}
2929
Takashi Iwaice764ab2011-04-27 16:35:23 +02002930/* select the connection from pin to DAC if needed */
2931static int alc_auto_select_dac(struct hda_codec *codec, hda_nid_t pin,
2932 hda_nid_t dac)
2933{
2934 hda_nid_t mix[5];
2935 int i, num;
2936
2937 pin = alc_go_down_to_selector(codec, pin);
2938 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2939 if (num < 2)
2940 return 0;
2941 for (i = 0; i < num; i++) {
2942 if (alc_auto_mix_to_dac(codec, mix[i]) == dac) {
2943 snd_hda_codec_update_cache(codec, pin, 0,
2944 AC_VERB_SET_CONNECT_SEL, i);
2945 return 0;
2946 }
2947 }
2948 return 0;
2949}
2950
Takashi Iwai7085ec12009-10-02 09:03:58 +02002951/* look for an empty DAC slot */
Takashi Iwai604401a2011-04-27 15:14:23 +02002952static hda_nid_t alc_auto_look_for_dac(struct hda_codec *codec, hda_nid_t pin)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002953{
2954 struct alc_spec *spec = codec->spec;
2955 hda_nid_t srcs[5];
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002956 int i, num;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002957
Takashi Iwai604401a2011-04-27 15:14:23 +02002958 pin = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002959 num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs));
Takashi Iwai7085ec12009-10-02 09:03:58 +02002960 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02002961 hda_nid_t nid = alc_auto_mix_to_dac(codec, srcs[i]);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002962 if (!nid)
2963 continue;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002964 if (found_in_nid_list(nid, spec->multiout.dac_nids,
Takashi Iwai0a34b422011-12-07 17:20:30 +01002965 ARRAY_SIZE(spec->private_dac_nids)))
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002966 continue;
Takashi Iwaic2674682011-08-24 17:57:44 +02002967 if (found_in_nid_list(nid, spec->multiout.hp_out_nid,
2968 ARRAY_SIZE(spec->multiout.hp_out_nid)))
2969 continue;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002970 if (found_in_nid_list(nid, spec->multiout.extra_out_nid,
2971 ARRAY_SIZE(spec->multiout.extra_out_nid)))
2972 continue;
2973 return nid;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002974 }
2975 return 0;
2976}
2977
Takashi Iwai07b18f62011-11-10 15:42:54 +01002978/* check whether the DAC is reachable from the pin */
2979static bool alc_auto_is_dac_reachable(struct hda_codec *codec,
2980 hda_nid_t pin, hda_nid_t dac)
2981{
2982 hda_nid_t srcs[5];
2983 int i, num;
2984
2985 pin = alc_go_down_to_selector(codec, pin);
2986 num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs));
2987 for (i = 0; i < num; i++) {
2988 hda_nid_t nid = alc_auto_mix_to_dac(codec, srcs[i]);
2989 if (nid == dac)
2990 return true;
2991 }
2992 return false;
2993}
2994
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002995static hda_nid_t get_dac_if_single(struct hda_codec *codec, hda_nid_t pin)
2996{
2997 hda_nid_t sel = alc_go_down_to_selector(codec, pin);
2998 if (snd_hda_get_conn_list(codec, sel, NULL) == 1)
2999 return alc_auto_look_for_dac(codec, pin);
3000 return 0;
3001}
3002
Takashi Iwai0a34b422011-12-07 17:20:30 +01003003/* return 0 if no possible DAC is found, 1 if one or more found */
Takashi Iwaic2674682011-08-24 17:57:44 +02003004static int alc_auto_fill_extra_dacs(struct hda_codec *codec, int num_outs,
3005 const hda_nid_t *pins, hda_nid_t *dacs)
3006{
3007 int i;
3008
3009 if (num_outs && !dacs[0]) {
3010 dacs[0] = alc_auto_look_for_dac(codec, pins[0]);
3011 if (!dacs[0])
3012 return 0;
3013 }
3014
3015 for (i = 1; i < num_outs; i++)
3016 dacs[i] = get_dac_if_single(codec, pins[i]);
3017 for (i = 1; i < num_outs; i++) {
3018 if (!dacs[i])
3019 dacs[i] = alc_auto_look_for_dac(codec, pins[i]);
3020 }
Takashi Iwai0a34b422011-12-07 17:20:30 +01003021 return 1;
Takashi Iwaic2674682011-08-24 17:57:44 +02003022}
3023
3024static int alc_auto_fill_multi_ios(struct hda_codec *codec,
Takashi Iwai07b18f62011-11-10 15:42:54 +01003025 unsigned int location, int offset);
David Henningssonfde48a12011-12-09 18:27:42 +08003026static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
3027 hda_nid_t pin, hda_nid_t dac);
Takashi Iwaic2674682011-08-24 17:57:44 +02003028
Takashi Iwai7085ec12009-10-02 09:03:58 +02003029/* fill in the dac_nids table from the parsed pin configuration */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003030static int alc_auto_fill_dac_nids(struct hda_codec *codec)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003031{
3032 struct alc_spec *spec = codec->spec;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003033 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai07b18f62011-11-10 15:42:54 +01003034 unsigned int location, defcfg;
3035 int num_pins;
Takashi Iwai350434e2011-06-30 21:29:12 +02003036 bool redone = false;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003037 int i;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003038
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003039 again:
Takashi Iwai8f398ae2011-07-23 18:57:11 +02003040 /* set num_dacs once to full for alc_auto_look_for_dac() */
3041 spec->multiout.num_dacs = cfg->line_outs;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003042 spec->multiout.hp_out_nid[0] = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003043 spec->multiout.extra_out_nid[0] = 0;
3044 memset(spec->private_dac_nids, 0, sizeof(spec->private_dac_nids));
3045 spec->multiout.dac_nids = spec->private_dac_nids;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003046 spec->multi_ios = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003047
3048 /* fill hard-wired DACs first */
3049 if (!redone) {
3050 for (i = 0; i < cfg->line_outs; i++)
3051 spec->private_dac_nids[i] =
3052 get_dac_if_single(codec, cfg->line_out_pins[i]);
3053 if (cfg->hp_outs)
Takashi Iwaie23832a2011-08-23 18:16:56 +02003054 spec->multiout.hp_out_nid[0] =
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003055 get_dac_if_single(codec, cfg->hp_pins[0]);
3056 if (cfg->speaker_outs)
3057 spec->multiout.extra_out_nid[0] =
3058 get_dac_if_single(codec, cfg->speaker_pins[0]);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003059 }
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003060
3061 for (i = 0; i < cfg->line_outs; i++) {
3062 hda_nid_t pin = cfg->line_out_pins[i];
3063 if (spec->private_dac_nids[i])
3064 continue;
3065 spec->private_dac_nids[i] = alc_auto_look_for_dac(codec, pin);
3066 if (!spec->private_dac_nids[i] && !redone) {
3067 /* if we can't find primary DACs, re-probe without
3068 * checking the hard-wired DACs
3069 */
3070 redone = true;
3071 goto again;
3072 }
3073 }
3074
Takashi Iwai8f398ae2011-07-23 18:57:11 +02003075 /* re-count num_dacs and squash invalid entries */
3076 spec->multiout.num_dacs = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003077 for (i = 0; i < cfg->line_outs; i++) {
3078 if (spec->private_dac_nids[i])
3079 spec->multiout.num_dacs++;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003080 else {
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003081 memmove(spec->private_dac_nids + i,
3082 spec->private_dac_nids + i + 1,
3083 sizeof(hda_nid_t) * (cfg->line_outs - i - 1));
Takashi Iwai0a34b422011-12-07 17:20:30 +01003084 spec->private_dac_nids[cfg->line_outs - 1] = 0;
3085 }
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003086 }
3087
Takashi Iwaic2674682011-08-24 17:57:44 +02003088 if (cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3089 /* try to fill multi-io first */
Takashi Iwaic2674682011-08-24 17:57:44 +02003090 defcfg = snd_hda_codec_get_pincfg(codec, cfg->line_out_pins[0]);
3091 location = get_defcfg_location(defcfg);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003092
Takashi Iwai07b18f62011-11-10 15:42:54 +01003093 num_pins = alc_auto_fill_multi_ios(codec, location, 0);
Takashi Iwaic2674682011-08-24 17:57:44 +02003094 if (num_pins > 0) {
3095 spec->multi_ios = num_pins;
3096 spec->ext_channel_count = 2;
3097 spec->multiout.num_dacs = num_pins + 1;
3098 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003099 }
Takashi Iwaic2674682011-08-24 17:57:44 +02003100
Takashi Iwai716eef02011-10-21 15:07:42 +02003101 if (cfg->line_out_type != AUTO_PIN_HP_OUT)
3102 alc_auto_fill_extra_dacs(codec, cfg->hp_outs, cfg->hp_pins,
Takashi Iwaic2674682011-08-24 17:57:44 +02003103 spec->multiout.hp_out_nid);
Takashi Iwai0a34b422011-12-07 17:20:30 +01003104 if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3105 int err = alc_auto_fill_extra_dacs(codec, cfg->speaker_outs,
3106 cfg->speaker_pins,
3107 spec->multiout.extra_out_nid);
3108 /* if no speaker volume is assigned, try again as the primary
3109 * output
3110 */
3111 if (!err && cfg->speaker_outs > 0 &&
3112 cfg->line_out_type == AUTO_PIN_HP_OUT) {
3113 cfg->hp_outs = cfg->line_outs;
3114 memcpy(cfg->hp_pins, cfg->line_out_pins,
3115 sizeof(cfg->hp_pins));
3116 cfg->line_outs = cfg->speaker_outs;
3117 memcpy(cfg->line_out_pins, cfg->speaker_pins,
3118 sizeof(cfg->speaker_pins));
3119 cfg->speaker_outs = 0;
3120 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
3121 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
3122 redone = false;
3123 goto again;
3124 }
3125 }
Takashi Iwaic2674682011-08-24 17:57:44 +02003126
Takashi Iwai07b18f62011-11-10 15:42:54 +01003127 if (!spec->multi_ios &&
3128 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT &&
3129 cfg->hp_outs) {
3130 /* try multi-ios with HP + inputs */
3131 defcfg = snd_hda_codec_get_pincfg(codec, cfg->hp_pins[0]);
3132 location = get_defcfg_location(defcfg);
3133
3134 num_pins = alc_auto_fill_multi_ios(codec, location, 1);
3135 if (num_pins > 0) {
3136 spec->multi_ios = num_pins;
3137 spec->ext_channel_count = 2;
3138 spec->multiout.num_dacs = num_pins + 1;
3139 }
3140 }
3141
David Henningssonfde48a12011-12-09 18:27:42 +08003142 if (cfg->line_out_pins[0])
3143 spec->vmaster_nid =
3144 alc_look_for_out_vol_nid(codec, cfg->line_out_pins[0],
3145 spec->multiout.dac_nids[0]);
Takashi Iwai23c09b02011-08-19 09:05:35 +02003146 return 0;
3147}
3148
Takashi Iwai527e4d72011-10-27 16:33:27 +02003149static inline unsigned int get_ctl_pos(unsigned int data)
3150{
3151 hda_nid_t nid = get_amp_nid_(data);
3152 unsigned int dir = get_amp_direction_(data);
3153 return (nid << 1) | dir;
3154}
3155
3156#define is_ctl_used(bits, data) \
3157 test_bit(get_ctl_pos(data), bits)
3158#define mark_ctl_usage(bits, data) \
3159 set_bit(get_ctl_pos(data), bits)
3160
Takashi Iwai343a04b2011-07-06 14:28:39 +02003161static int alc_auto_add_vol_ctl(struct hda_codec *codec,
Takashi Iwai97aaab72011-07-06 14:02:55 +02003162 const char *pfx, int cidx,
3163 hda_nid_t nid, unsigned int chs)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003164{
Takashi Iwai527e4d72011-10-27 16:33:27 +02003165 struct alc_spec *spec = codec->spec;
3166 unsigned int val;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003167 if (!nid)
3168 return 0;
Takashi Iwai527e4d72011-10-27 16:33:27 +02003169 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
3170 if (is_ctl_used(spec->vol_ctls, val) && chs != 2) /* exclude LFE */
3171 return 0;
3172 mark_ctl_usage(spec->vol_ctls, val);
Takashi Iwai97aaab72011-07-06 14:02:55 +02003173 return __add_pb_vol_ctrl(codec->spec, ALC_CTL_WIDGET_VOL, pfx, cidx,
Takashi Iwai527e4d72011-10-27 16:33:27 +02003174 val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003175}
3176
Takashi Iwaie29d3772011-11-14 17:13:23 +01003177static int alc_auto_add_stereo_vol(struct hda_codec *codec,
3178 const char *pfx, int cidx,
3179 hda_nid_t nid)
3180{
3181 int chs = 1;
3182 if (get_wcaps(codec, nid) & AC_WCAP_STEREO)
3183 chs = 3;
3184 return alc_auto_add_vol_ctl(codec, pfx, cidx, nid, chs);
3185}
Takashi Iwai97aaab72011-07-06 14:02:55 +02003186
3187/* create a mute-switch for the given mixer widget;
3188 * if it has multiple sources (e.g. DAC and loopback), create a bind-mute
3189 */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003190static int alc_auto_add_sw_ctl(struct hda_codec *codec,
Takashi Iwai97aaab72011-07-06 14:02:55 +02003191 const char *pfx, int cidx,
3192 hda_nid_t nid, unsigned int chs)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003193{
Takashi Iwai527e4d72011-10-27 16:33:27 +02003194 struct alc_spec *spec = codec->spec;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003195 int wid_type;
Takashi Iwai97aaab72011-07-06 14:02:55 +02003196 int type;
3197 unsigned long val;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003198 if (!nid)
3199 return 0;
3200 wid_type = get_wcaps_type(get_wcaps(codec, nid));
3201 if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT) {
3202 type = ALC_CTL_WIDGET_MUTE;
3203 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
3204 } else if (snd_hda_get_conn_list(codec, nid, NULL) == 1) {
Takashi Iwai97aaab72011-07-06 14:02:55 +02003205 type = ALC_CTL_WIDGET_MUTE;
3206 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_INPUT);
3207 } else {
3208 type = ALC_CTL_BIND_MUTE;
3209 val = HDA_COMPOSE_AMP_VAL(nid, chs, 2, HDA_INPUT);
3210 }
Takashi Iwai527e4d72011-10-27 16:33:27 +02003211 if (is_ctl_used(spec->sw_ctls, val) && chs != 2) /* exclude LFE */
3212 return 0;
3213 mark_ctl_usage(spec->sw_ctls, val);
Takashi Iwai97aaab72011-07-06 14:02:55 +02003214 return __add_pb_sw_ctrl(codec->spec, type, pfx, cidx, val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003215}
3216
Takashi Iwaie29d3772011-11-14 17:13:23 +01003217static int alc_auto_add_stereo_sw(struct hda_codec *codec, const char *pfx,
3218 int cidx, hda_nid_t nid)
3219{
3220 int chs = 1;
3221 if (get_wcaps(codec, nid) & AC_WCAP_STEREO)
3222 chs = 3;
3223 return alc_auto_add_sw_ctl(codec, pfx, cidx, nid, chs);
3224}
Takashi Iwai7085ec12009-10-02 09:03:58 +02003225
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003226static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
3227 hda_nid_t pin, hda_nid_t dac)
3228{
3229 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3230 if (nid_has_mute(codec, pin, HDA_OUTPUT))
3231 return pin;
3232 else if (mix && nid_has_mute(codec, mix, HDA_INPUT))
3233 return mix;
3234 else if (nid_has_mute(codec, dac, HDA_OUTPUT))
3235 return dac;
3236 return 0;
3237}
3238
3239static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
3240 hda_nid_t pin, hda_nid_t dac)
3241{
3242 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3243 if (nid_has_volume(codec, dac, HDA_OUTPUT))
3244 return dac;
3245 else if (nid_has_volume(codec, mix, HDA_OUTPUT))
3246 return mix;
3247 else if (nid_has_volume(codec, pin, HDA_OUTPUT))
3248 return pin;
3249 return 0;
3250}
3251
Takashi Iwai7085ec12009-10-02 09:03:58 +02003252/* add playback controls from the parsed DAC table */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003253static int alc_auto_create_multi_out_ctls(struct hda_codec *codec,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003254 const struct auto_pin_cfg *cfg)
3255{
3256 struct alc_spec *spec = codec->spec;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003257 int i, err, noutputs;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003258
Takashi Iwaice764ab2011-04-27 16:35:23 +02003259 noutputs = cfg->line_outs;
Takashi Iwaib90bf1d2012-01-19 11:42:55 +01003260 if (spec->multi_ios > 0 && cfg->line_outs < 3)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003261 noutputs += spec->multi_ios;
3262
3263 for (i = 0; i < noutputs; i++) {
Takashi Iwai6843ca12011-06-24 11:03:58 +02003264 const char *name;
3265 int index;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003266 hda_nid_t dac, pin;
3267 hda_nid_t sw, vol;
3268
3269 dac = spec->multiout.dac_nids[i];
3270 if (!dac)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003271 continue;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003272 if (i >= cfg->line_outs)
3273 pin = spec->multi_io[i - 1].pin;
3274 else
3275 pin = cfg->line_out_pins[i];
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003276
3277 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3278 vol = alc_look_for_out_vol_nid(codec, pin, dac);
Takashi Iwai6843ca12011-06-24 11:03:58 +02003279 name = alc_get_line_out_pfx(spec, i, true, &index);
Takashi Iwai9c4e84d2011-08-24 17:27:52 +02003280 if (!name || !strcmp(name, "CLFE")) {
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003281 /* Center/LFE */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003282 err = alc_auto_add_vol_ctl(codec, "Center", 0, vol, 1);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003283 if (err < 0)
3284 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003285 err = alc_auto_add_vol_ctl(codec, "LFE", 0, vol, 2);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003286 if (err < 0)
3287 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003288 err = alc_auto_add_sw_ctl(codec, "Center", 0, sw, 1);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003289 if (err < 0)
3290 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003291 err = alc_auto_add_sw_ctl(codec, "LFE", 0, sw, 2);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003292 if (err < 0)
3293 return err;
3294 } else {
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003295 err = alc_auto_add_stereo_vol(codec, name, index, vol);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003296 if (err < 0)
3297 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003298 err = alc_auto_add_stereo_sw(codec, name, index, sw);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003299 if (err < 0)
3300 return err;
3301 }
3302 }
3303 return 0;
3304}
3305
Takashi Iwai343a04b2011-07-06 14:28:39 +02003306static int alc_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai766ddee2011-12-07 16:55:19 +01003307 hda_nid_t dac, const char *pfx,
3308 int cidx)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003309{
Takashi Iwai7085ec12009-10-02 09:03:58 +02003310 struct alc_spec *spec = codec->spec;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003311 hda_nid_t sw, vol;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003312 int err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003313
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003314 if (!dac) {
Takashi Iwai527e4d72011-10-27 16:33:27 +02003315 unsigned int val;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003316 /* the corresponding DAC is already occupied */
3317 if (!(get_wcaps(codec, pin) & AC_WCAP_OUT_AMP))
3318 return 0; /* no way */
3319 /* create a switch only */
Takashi Iwai527e4d72011-10-27 16:33:27 +02003320 val = HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT);
3321 if (is_ctl_used(spec->sw_ctls, val))
3322 return 0; /* already created */
3323 mark_ctl_usage(spec->sw_ctls, val);
Takashi Iwai766ddee2011-12-07 16:55:19 +01003324 return __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx, cidx, val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003325 }
3326
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003327 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3328 vol = alc_look_for_out_vol_nid(codec, pin, dac);
Takashi Iwai766ddee2011-12-07 16:55:19 +01003329 err = alc_auto_add_stereo_vol(codec, pfx, cidx, vol);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003330 if (err < 0)
Takashi Iwai24fb9172008-09-02 14:48:20 +02003331 return err;
Takashi Iwai766ddee2011-12-07 16:55:19 +01003332 err = alc_auto_add_stereo_sw(codec, pfx, cidx, sw);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003333 if (err < 0)
3334 return err;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003335 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003336}
3337
Takashi Iwai23c09b02011-08-19 09:05:35 +02003338static struct hda_bind_ctls *new_bind_ctl(struct hda_codec *codec,
3339 unsigned int nums,
3340 struct hda_ctl_ops *ops)
3341{
3342 struct alc_spec *spec = codec->spec;
3343 struct hda_bind_ctls **ctlp, *ctl;
3344 snd_array_init(&spec->bind_ctls, sizeof(ctl), 8);
3345 ctlp = snd_array_new(&spec->bind_ctls);
3346 if (!ctlp)
3347 return NULL;
3348 ctl = kzalloc(sizeof(*ctl) + sizeof(long) * (nums + 1), GFP_KERNEL);
3349 *ctlp = ctl;
3350 if (ctl)
3351 ctl->ops = ops;
3352 return ctl;
3353}
3354
3355/* add playback controls for speaker and HP outputs */
3356static int alc_auto_create_extra_outs(struct hda_codec *codec, int num_pins,
3357 const hda_nid_t *pins,
3358 const hda_nid_t *dacs,
3359 const char *pfx)
3360{
3361 struct alc_spec *spec = codec->spec;
3362 struct hda_bind_ctls *ctl;
3363 char name[32];
3364 int i, n, err;
3365
3366 if (!num_pins || !pins[0])
3367 return 0;
3368
Takashi Iwai527e4d72011-10-27 16:33:27 +02003369 if (num_pins == 1) {
3370 hda_nid_t dac = *dacs;
3371 if (!dac)
3372 dac = spec->multiout.dac_nids[0];
Takashi Iwai766ddee2011-12-07 16:55:19 +01003373 return alc_auto_create_extra_out(codec, *pins, dac, pfx, 0);
Takashi Iwai527e4d72011-10-27 16:33:27 +02003374 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003375
3376 if (dacs[num_pins - 1]) {
3377 /* OK, we have a multi-output system with individual volumes */
3378 for (i = 0; i < num_pins; i++) {
Takashi Iwai766ddee2011-12-07 16:55:19 +01003379 if (num_pins >= 3) {
3380 snprintf(name, sizeof(name), "%s %s",
3381 pfx, channel_name[i]);
3382 err = alc_auto_create_extra_out(codec, pins[i], dacs[i],
3383 name, 0);
3384 } else {
3385 err = alc_auto_create_extra_out(codec, pins[i], dacs[i],
3386 pfx, i);
3387 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003388 if (err < 0)
3389 return err;
3390 }
3391 return 0;
3392 }
3393
3394 /* Let's create a bind-controls */
3395 ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_sw);
3396 if (!ctl)
3397 return -ENOMEM;
3398 n = 0;
3399 for (i = 0; i < num_pins; i++) {
3400 if (get_wcaps(codec, pins[i]) & AC_WCAP_OUT_AMP)
3401 ctl->values[n++] =
3402 HDA_COMPOSE_AMP_VAL(pins[i], 3, 0, HDA_OUTPUT);
3403 }
3404 if (n) {
3405 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
3406 err = add_control(spec, ALC_CTL_BIND_SW, name, 0, (long)ctl);
3407 if (err < 0)
3408 return err;
3409 }
3410
3411 ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_vol);
3412 if (!ctl)
3413 return -ENOMEM;
3414 n = 0;
3415 for (i = 0; i < num_pins; i++) {
3416 hda_nid_t vol;
3417 if (!pins[i] || !dacs[i])
3418 continue;
3419 vol = alc_look_for_out_vol_nid(codec, pins[i], dacs[i]);
3420 if (vol)
3421 ctl->values[n++] =
3422 HDA_COMPOSE_AMP_VAL(vol, 3, 0, HDA_OUTPUT);
3423 }
3424 if (n) {
3425 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
3426 err = add_control(spec, ALC_CTL_BIND_VOL, name, 0, (long)ctl);
3427 if (err < 0)
3428 return err;
3429 }
3430 return 0;
3431}
3432
Takashi Iwai343a04b2011-07-06 14:28:39 +02003433static int alc_auto_create_hp_out(struct hda_codec *codec)
3434{
3435 struct alc_spec *spec = codec->spec;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003436 return alc_auto_create_extra_outs(codec, spec->autocfg.hp_outs,
3437 spec->autocfg.hp_pins,
3438 spec->multiout.hp_out_nid,
3439 "Headphone");
Takashi Iwai343a04b2011-07-06 14:28:39 +02003440}
3441
3442static int alc_auto_create_speaker_out(struct hda_codec *codec)
3443{
3444 struct alc_spec *spec = codec->spec;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003445 return alc_auto_create_extra_outs(codec, spec->autocfg.speaker_outs,
3446 spec->autocfg.speaker_pins,
3447 spec->multiout.extra_out_nid,
3448 "Speaker");
Takashi Iwai343a04b2011-07-06 14:28:39 +02003449}
3450
Takashi Iwai343a04b2011-07-06 14:28:39 +02003451static void alc_auto_set_output_and_unmute(struct hda_codec *codec,
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003452 hda_nid_t pin, int pin_type,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003453 hda_nid_t dac)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003454{
Takashi Iwai7085ec12009-10-02 09:03:58 +02003455 int i, num;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003456 hda_nid_t nid, mix = 0;
Takashi Iwaice503f32010-07-30 10:37:29 +02003457 hda_nid_t srcs[HDA_MAX_CONNECTIONS];
Takashi Iwai7085ec12009-10-02 09:03:58 +02003458
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003459 alc_set_pin_output(codec, pin, pin_type);
3460 nid = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003461 num = snd_hda_get_connections(codec, nid, srcs, ARRAY_SIZE(srcs));
Takashi Iwai7085ec12009-10-02 09:03:58 +02003462 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02003463 if (alc_auto_mix_to_dac(codec, srcs[i]) != dac)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003464 continue;
Takashi Iwaicd511552011-07-06 13:10:42 +02003465 mix = srcs[i];
3466 break;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003467 }
Takashi Iwaicd511552011-07-06 13:10:42 +02003468 if (!mix)
3469 return;
3470
3471 /* need the manual connection? */
3472 if (num > 1)
3473 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, i);
3474 /* unmute mixer widget inputs */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003475 if (nid_has_mute(codec, mix, HDA_INPUT)) {
3476 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaicd511552011-07-06 13:10:42 +02003477 AMP_IN_UNMUTE(0));
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003478 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaicd511552011-07-06 13:10:42 +02003479 AMP_IN_UNMUTE(1));
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003480 }
Takashi Iwaicd511552011-07-06 13:10:42 +02003481 /* initialize volume */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003482 nid = alc_look_for_out_vol_nid(codec, pin, dac);
3483 if (nid)
3484 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3485 AMP_OUT_ZERO);
Takashi Iwai43dea222011-11-06 11:25:34 +01003486
3487 /* unmute DAC if it's not assigned to a mixer */
3488 nid = alc_look_for_out_mute_nid(codec, pin, dac);
3489 if (nid == mix && nid_has_mute(codec, dac, HDA_OUTPUT))
3490 snd_hda_codec_write(codec, dac, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3491 AMP_OUT_ZERO);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003492}
3493
Takashi Iwai343a04b2011-07-06 14:28:39 +02003494static void alc_auto_init_multi_out(struct hda_codec *codec)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003495{
3496 struct alc_spec *spec = codec->spec;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003497 int pin_type = get_pin_type(spec->autocfg.line_out_type);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003498 int i;
3499
3500 for (i = 0; i <= HDA_SIDE; i++) {
3501 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3502 if (nid)
Takashi Iwai343a04b2011-07-06 14:28:39 +02003503 alc_auto_set_output_and_unmute(codec, nid, pin_type,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003504 spec->multiout.dac_nids[i]);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003505 }
3506}
3507
Takashi Iwai343a04b2011-07-06 14:28:39 +02003508static void alc_auto_init_extra_out(struct hda_codec *codec)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003509{
3510 struct alc_spec *spec = codec->spec;
Takashi Iwai8cd07752011-08-23 15:16:22 +02003511 int i;
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003512 hda_nid_t pin, dac;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003513
David Henningsson636030e2011-10-12 19:26:03 +02003514 for (i = 0; i < spec->autocfg.hp_outs; i++) {
Takashi Iwai716eef02011-10-21 15:07:42 +02003515 if (spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)
3516 break;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003517 pin = spec->autocfg.hp_pins[i];
3518 if (!pin)
3519 break;
3520 dac = spec->multiout.hp_out_nid[i];
3521 if (!dac) {
3522 if (i > 0 && spec->multiout.hp_out_nid[0])
3523 dac = spec->multiout.hp_out_nid[0];
3524 else
3525 dac = spec->multiout.dac_nids[0];
3526 }
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003527 alc_auto_set_output_and_unmute(codec, pin, PIN_HP, dac);
3528 }
Takashi Iwai8cd07752011-08-23 15:16:22 +02003529 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
Takashi Iwai716eef02011-10-21 15:07:42 +02003530 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
3531 break;
Takashi Iwai8cd07752011-08-23 15:16:22 +02003532 pin = spec->autocfg.speaker_pins[i];
3533 if (!pin)
3534 break;
3535 dac = spec->multiout.extra_out_nid[i];
3536 if (!dac) {
3537 if (i > 0 && spec->multiout.extra_out_nid[0])
3538 dac = spec->multiout.extra_out_nid[0];
3539 else
3540 dac = spec->multiout.dac_nids[0];
3541 }
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003542 alc_auto_set_output_and_unmute(codec, pin, PIN_OUT, dac);
3543 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003544}
3545
Takashi Iwaice764ab2011-04-27 16:35:23 +02003546/*
3547 * multi-io helper
3548 */
3549static int alc_auto_fill_multi_ios(struct hda_codec *codec,
Takashi Iwai07b18f62011-11-10 15:42:54 +01003550 unsigned int location,
3551 int offset)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003552{
3553 struct alc_spec *spec = codec->spec;
3554 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaic2674682011-08-24 17:57:44 +02003555 hda_nid_t prime_dac = spec->private_dac_nids[0];
Takashi Iwai07b18f62011-11-10 15:42:54 +01003556 int type, i, dacs, num_pins = 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003557
Takashi Iwai07b18f62011-11-10 15:42:54 +01003558 dacs = spec->multiout.num_dacs;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003559 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
3560 for (i = 0; i < cfg->num_inputs; i++) {
3561 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai07b18f62011-11-10 15:42:54 +01003562 hda_nid_t dac = 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003563 unsigned int defcfg, caps;
3564 if (cfg->inputs[i].type != type)
3565 continue;
3566 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3567 if (get_defcfg_connect(defcfg) != AC_JACK_PORT_COMPLEX)
3568 continue;
3569 if (location && get_defcfg_location(defcfg) != location)
3570 continue;
3571 caps = snd_hda_query_pin_caps(codec, nid);
3572 if (!(caps & AC_PINCAP_OUT))
3573 continue;
Takashi Iwai07b18f62011-11-10 15:42:54 +01003574 if (offset && offset + num_pins < dacs) {
3575 dac = spec->private_dac_nids[offset + num_pins];
3576 if (!alc_auto_is_dac_reachable(codec, nid, dac))
3577 dac = 0;
3578 }
3579 if (!dac)
3580 dac = alc_auto_look_for_dac(codec, nid);
Takashi Iwaice764ab2011-04-27 16:35:23 +02003581 if (!dac)
3582 continue;
3583 spec->multi_io[num_pins].pin = nid;
3584 spec->multi_io[num_pins].dac = dac;
3585 num_pins++;
Takashi Iwaidda14412011-05-02 11:29:30 +02003586 spec->private_dac_nids[spec->multiout.num_dacs++] = dac;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003587 }
3588 }
Takashi Iwai07b18f62011-11-10 15:42:54 +01003589 spec->multiout.num_dacs = dacs;
Takashi Iwaic2674682011-08-24 17:57:44 +02003590 if (num_pins < 2) {
3591 /* clear up again */
Takashi Iwai07b18f62011-11-10 15:42:54 +01003592 memset(spec->private_dac_nids + dacs, 0,
3593 sizeof(hda_nid_t) * (AUTO_CFG_MAX_OUTS - dacs));
Takashi Iwaic2674682011-08-24 17:57:44 +02003594 spec->private_dac_nids[0] = prime_dac;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003595 return 0;
Takashi Iwaic2674682011-08-24 17:57:44 +02003596 }
Takashi Iwaice764ab2011-04-27 16:35:23 +02003597 return num_pins;
3598}
3599
3600static int alc_auto_ch_mode_info(struct snd_kcontrol *kcontrol,
3601 struct snd_ctl_elem_info *uinfo)
3602{
3603 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3604 struct alc_spec *spec = codec->spec;
3605
3606 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3607 uinfo->count = 1;
3608 uinfo->value.enumerated.items = spec->multi_ios + 1;
3609 if (uinfo->value.enumerated.item > spec->multi_ios)
3610 uinfo->value.enumerated.item = spec->multi_ios;
3611 sprintf(uinfo->value.enumerated.name, "%dch",
3612 (uinfo->value.enumerated.item + 1) * 2);
3613 return 0;
3614}
3615
3616static int alc_auto_ch_mode_get(struct snd_kcontrol *kcontrol,
3617 struct snd_ctl_elem_value *ucontrol)
3618{
3619 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3620 struct alc_spec *spec = codec->spec;
3621 ucontrol->value.enumerated.item[0] = (spec->ext_channel_count - 1) / 2;
3622 return 0;
3623}
3624
3625static int alc_set_multi_io(struct hda_codec *codec, int idx, bool output)
3626{
3627 struct alc_spec *spec = codec->spec;
3628 hda_nid_t nid = spec->multi_io[idx].pin;
3629
3630 if (!spec->multi_io[idx].ctl_in)
3631 spec->multi_io[idx].ctl_in =
3632 snd_hda_codec_read(codec, nid, 0,
3633 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3634 if (output) {
3635 snd_hda_codec_update_cache(codec, nid, 0,
3636 AC_VERB_SET_PIN_WIDGET_CONTROL,
3637 PIN_OUT);
3638 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3639 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3640 HDA_AMP_MUTE, 0);
3641 alc_auto_select_dac(codec, nid, spec->multi_io[idx].dac);
3642 } else {
3643 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3644 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3645 HDA_AMP_MUTE, HDA_AMP_MUTE);
3646 snd_hda_codec_update_cache(codec, nid, 0,
3647 AC_VERB_SET_PIN_WIDGET_CONTROL,
3648 spec->multi_io[idx].ctl_in);
3649 }
3650 return 0;
3651}
3652
3653static int alc_auto_ch_mode_put(struct snd_kcontrol *kcontrol,
3654 struct snd_ctl_elem_value *ucontrol)
3655{
3656 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3657 struct alc_spec *spec = codec->spec;
3658 int i, ch;
3659
3660 ch = ucontrol->value.enumerated.item[0];
3661 if (ch < 0 || ch > spec->multi_ios)
3662 return -EINVAL;
3663 if (ch == (spec->ext_channel_count - 1) / 2)
3664 return 0;
3665 spec->ext_channel_count = (ch + 1) * 2;
3666 for (i = 0; i < spec->multi_ios; i++)
3667 alc_set_multi_io(codec, i, i < ch);
3668 spec->multiout.max_channels = spec->ext_channel_count;
Takashi Iwai7b1655f2011-07-14 15:31:21 +02003669 if (spec->need_dac_fix && !spec->const_channel_count)
3670 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003671 return 1;
3672}
3673
Takashi Iwaia9111322011-05-02 11:30:18 +02003674static const struct snd_kcontrol_new alc_auto_channel_mode_enum = {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003675 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3676 .name = "Channel Mode",
3677 .info = alc_auto_ch_mode_info,
3678 .get = alc_auto_ch_mode_get,
3679 .put = alc_auto_ch_mode_put,
3680};
3681
Takashi Iwai23c09b02011-08-19 09:05:35 +02003682static int alc_auto_add_multi_channel_mode(struct hda_codec *codec)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003683{
3684 struct alc_spec *spec = codec->spec;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003685
Takashi Iwaic2674682011-08-24 17:57:44 +02003686 if (spec->multi_ios > 0) {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003687 struct snd_kcontrol_new *knew;
3688
3689 knew = alc_kcontrol_new(spec);
3690 if (!knew)
3691 return -ENOMEM;
3692 *knew = alc_auto_channel_mode_enum;
3693 knew->name = kstrdup("Channel Mode", GFP_KERNEL);
3694 if (!knew->name)
3695 return -ENOMEM;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003696 }
3697 return 0;
3698}
3699
Takashi Iwai1d045db2011-07-07 18:23:21 +02003700/* filter out invalid adc_nids (and capsrc_nids) that don't give all
3701 * active input pins
3702 */
3703static void alc_remove_invalid_adc_nids(struct hda_codec *codec)
3704{
3705 struct alc_spec *spec = codec->spec;
3706 const struct hda_input_mux *imux;
3707 hda_nid_t adc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3708 hda_nid_t capsrc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3709 int i, n, nums;
3710
3711 imux = spec->input_mux;
3712 if (!imux)
3713 return;
3714 if (spec->dyn_adc_switch)
3715 return;
3716
3717 nums = 0;
3718 for (n = 0; n < spec->num_adc_nids; n++) {
3719 hda_nid_t cap = spec->private_capsrc_nids[n];
3720 int num_conns = snd_hda_get_conn_list(codec, cap, NULL);
3721 for (i = 0; i < imux->num_items; i++) {
3722 hda_nid_t pin = spec->imux_pins[i];
3723 if (pin) {
3724 if (get_connection_index(codec, cap, pin) < 0)
3725 break;
3726 } else if (num_conns <= imux->items[i].index)
3727 break;
3728 }
3729 if (i >= imux->num_items) {
3730 adc_nids[nums] = spec->private_adc_nids[n];
3731 capsrc_nids[nums++] = cap;
3732 }
3733 }
3734 if (!nums) {
3735 /* check whether ADC-switch is possible */
3736 if (!alc_check_dyn_adc_switch(codec)) {
3737 printk(KERN_WARNING "hda_codec: %s: no valid ADC found;"
3738 " using fallback 0x%x\n",
3739 codec->chip_name, spec->private_adc_nids[0]);
3740 spec->num_adc_nids = 1;
3741 spec->auto_mic = 0;
3742 return;
3743 }
3744 } else if (nums != spec->num_adc_nids) {
3745 memcpy(spec->private_adc_nids, adc_nids,
3746 nums * sizeof(hda_nid_t));
3747 memcpy(spec->private_capsrc_nids, capsrc_nids,
3748 nums * sizeof(hda_nid_t));
3749 spec->num_adc_nids = nums;
3750 }
3751
3752 if (spec->auto_mic)
3753 alc_auto_mic_check_imux(codec); /* check auto-mic setups */
3754 else if (spec->input_mux->num_items == 1)
3755 spec->num_adc_nids = 1; /* reduce to a single ADC */
3756}
3757
3758/*
3759 * initialize ADC paths
3760 */
3761static void alc_auto_init_adc(struct hda_codec *codec, int adc_idx)
3762{
3763 struct alc_spec *spec = codec->spec;
3764 hda_nid_t nid;
3765
3766 nid = spec->adc_nids[adc_idx];
3767 /* mute ADC */
Takashi Iwai44c02402011-07-08 15:14:19 +02003768 if (nid_has_mute(codec, nid, HDA_INPUT)) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003769 snd_hda_codec_write(codec, nid, 0,
3770 AC_VERB_SET_AMP_GAIN_MUTE,
3771 AMP_IN_MUTE(0));
3772 return;
3773 }
3774 if (!spec->capsrc_nids)
3775 return;
3776 nid = spec->capsrc_nids[adc_idx];
Takashi Iwai44c02402011-07-08 15:14:19 +02003777 if (nid_has_mute(codec, nid, HDA_OUTPUT))
Takashi Iwai1d045db2011-07-07 18:23:21 +02003778 snd_hda_codec_write(codec, nid, 0,
3779 AC_VERB_SET_AMP_GAIN_MUTE,
3780 AMP_OUT_MUTE);
3781}
3782
3783static void alc_auto_init_input_src(struct hda_codec *codec)
3784{
3785 struct alc_spec *spec = codec->spec;
3786 int c, nums;
3787
3788 for (c = 0; c < spec->num_adc_nids; c++)
3789 alc_auto_init_adc(codec, c);
3790 if (spec->dyn_adc_switch)
3791 nums = 1;
3792 else
3793 nums = spec->num_adc_nids;
3794 for (c = 0; c < nums; c++)
3795 alc_mux_select(codec, 0, spec->cur_mux[c], true);
3796}
3797
3798/* add mic boosts if needed */
3799static int alc_auto_add_mic_boost(struct hda_codec *codec)
3800{
3801 struct alc_spec *spec = codec->spec;
3802 struct auto_pin_cfg *cfg = &spec->autocfg;
3803 int i, err;
3804 int type_idx = 0;
3805 hda_nid_t nid;
3806 const char *prev_label = NULL;
3807
3808 for (i = 0; i < cfg->num_inputs; i++) {
3809 if (cfg->inputs[i].type > AUTO_PIN_MIC)
3810 break;
3811 nid = cfg->inputs[i].pin;
3812 if (get_wcaps(codec, nid) & AC_WCAP_IN_AMP) {
3813 const char *label;
3814 char boost_label[32];
3815
3816 label = hda_get_autocfg_input_label(codec, cfg, i);
Takashi Iwai24de1832011-11-07 17:13:39 +01003817 if (spec->shared_mic_hp && !strcmp(label, "Misc"))
3818 label = "Headphone Mic";
Takashi Iwai1d045db2011-07-07 18:23:21 +02003819 if (prev_label && !strcmp(label, prev_label))
3820 type_idx++;
3821 else
3822 type_idx = 0;
3823 prev_label = label;
3824
3825 snprintf(boost_label, sizeof(boost_label),
3826 "%s Boost Volume", label);
3827 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3828 boost_label, type_idx,
3829 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
3830 if (err < 0)
3831 return err;
3832 }
3833 }
3834 return 0;
3835}
3836
3837/* select or unmute the given capsrc route */
3838static void select_or_unmute_capsrc(struct hda_codec *codec, hda_nid_t cap,
3839 int idx)
3840{
3841 if (get_wcaps_type(get_wcaps(codec, cap)) == AC_WID_AUD_MIX) {
3842 snd_hda_codec_amp_stereo(codec, cap, HDA_INPUT, idx,
3843 HDA_AMP_MUTE, 0);
3844 } else if (snd_hda_get_conn_list(codec, cap, NULL) > 1) {
3845 snd_hda_codec_write_cache(codec, cap, 0,
3846 AC_VERB_SET_CONNECT_SEL, idx);
3847 }
3848}
3849
3850/* set the default connection to that pin */
3851static int init_capsrc_for_pin(struct hda_codec *codec, hda_nid_t pin)
3852{
3853 struct alc_spec *spec = codec->spec;
3854 int i;
3855
3856 if (!pin)
3857 return 0;
3858 for (i = 0; i < spec->num_adc_nids; i++) {
Takashi Iwai61071592011-11-23 07:52:15 +01003859 hda_nid_t cap = get_capsrc(spec, i);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003860 int idx;
3861
3862 idx = get_connection_index(codec, cap, pin);
3863 if (idx < 0)
3864 continue;
3865 select_or_unmute_capsrc(codec, cap, idx);
3866 return i; /* return the found index */
3867 }
3868 return -1; /* not found */
3869}
3870
3871/* initialize some special cases for input sources */
3872static void alc_init_special_input_src(struct hda_codec *codec)
3873{
3874 struct alc_spec *spec = codec->spec;
3875 int i;
3876
3877 for (i = 0; i < spec->autocfg.num_inputs; i++)
3878 init_capsrc_for_pin(codec, spec->autocfg.inputs[i].pin);
3879}
3880
3881/* assign appropriate capture mixers */
3882static void set_capture_mixer(struct hda_codec *codec)
3883{
3884 struct alc_spec *spec = codec->spec;
3885 static const struct snd_kcontrol_new *caps[2][3] = {
3886 { alc_capture_mixer_nosrc1,
3887 alc_capture_mixer_nosrc2,
3888 alc_capture_mixer_nosrc3 },
3889 { alc_capture_mixer1,
3890 alc_capture_mixer2,
3891 alc_capture_mixer3 },
3892 };
3893
3894 /* check whether either of ADC or MUX has a volume control */
Takashi Iwai44c02402011-07-08 15:14:19 +02003895 if (!nid_has_volume(codec, spec->adc_nids[0], HDA_INPUT)) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003896 if (!spec->capsrc_nids)
3897 return; /* no volume */
Takashi Iwai44c02402011-07-08 15:14:19 +02003898 if (!nid_has_volume(codec, spec->capsrc_nids[0], HDA_OUTPUT))
Takashi Iwai1d045db2011-07-07 18:23:21 +02003899 return; /* no volume in capsrc, too */
3900 spec->vol_in_capsrc = 1;
3901 }
3902
3903 if (spec->num_adc_nids > 0) {
3904 int mux = 0;
3905 int num_adcs = 0;
3906
3907 if (spec->input_mux && spec->input_mux->num_items > 1)
3908 mux = 1;
3909 if (spec->auto_mic) {
3910 num_adcs = 1;
3911 mux = 0;
3912 } else if (spec->dyn_adc_switch)
3913 num_adcs = 1;
3914 if (!num_adcs) {
3915 if (spec->num_adc_nids > 3)
3916 spec->num_adc_nids = 3;
3917 else if (!spec->num_adc_nids)
3918 return;
3919 num_adcs = spec->num_adc_nids;
3920 }
3921 spec->cap_mixer = caps[mux][num_adcs - 1];
3922 }
3923}
3924
3925/*
Takashi Iwaie4770622011-07-08 11:11:35 +02003926 * standard auto-parser initializations
3927 */
3928static void alc_auto_init_std(struct hda_codec *codec)
3929{
3930 struct alc_spec *spec = codec->spec;
3931 alc_auto_init_multi_out(codec);
3932 alc_auto_init_extra_out(codec);
3933 alc_auto_init_analog_input(codec);
3934 alc_auto_init_input_src(codec);
3935 alc_auto_init_digital(codec);
3936 if (spec->unsol_event)
3937 alc_inithook(codec);
3938}
3939
3940/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02003941 * Digital-beep handlers
3942 */
3943#ifdef CONFIG_SND_HDA_INPUT_BEEP
3944#define set_beep_amp(spec, nid, idx, dir) \
3945 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
3946
3947static const struct snd_pci_quirk beep_white_list[] = {
3948 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
3949 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
3950 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
3951 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
3952 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
3953 {}
3954};
3955
3956static inline int has_cdefine_beep(struct hda_codec *codec)
3957{
3958 struct alc_spec *spec = codec->spec;
3959 const struct snd_pci_quirk *q;
3960 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
3961 if (q)
3962 return q->value;
3963 return spec->cdefine.enable_pcbeep;
3964}
3965#else
3966#define set_beep_amp(spec, nid, idx, dir) /* NOP */
3967#define has_cdefine_beep(codec) 0
3968#endif
3969
3970/* parse the BIOS configuration and set up the alc_spec */
3971/* return 1 if successful, 0 if the proper config is not found,
3972 * or a negative error code
3973 */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003974static int alc_parse_auto_config(struct hda_codec *codec,
3975 const hda_nid_t *ignore_nids,
3976 const hda_nid_t *ssid_nids)
Takashi Iwai1d045db2011-07-07 18:23:21 +02003977{
3978 struct alc_spec *spec = codec->spec;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003979 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003980 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003981
Takashi Iwai53c334a2011-08-23 18:27:14 +02003982 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
3983 spec->parse_flags);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003984 if (err < 0)
3985 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003986 if (!cfg->line_outs) {
3987 if (cfg->dig_outs || cfg->dig_in_pin) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003988 spec->multiout.max_channels = 2;
3989 spec->no_analog = 1;
3990 goto dig_only;
3991 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02003992 return 0; /* can't find valid BIOS pin config */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003993 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003994
Takashi Iwai06503672011-10-06 08:27:19 +02003995 if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT &&
3996 cfg->line_outs <= cfg->hp_outs) {
Takashi Iwai23c09b02011-08-19 09:05:35 +02003997 /* use HP as primary out */
3998 cfg->speaker_outs = cfg->line_outs;
3999 memcpy(cfg->speaker_pins, cfg->line_out_pins,
4000 sizeof(cfg->speaker_pins));
4001 cfg->line_outs = cfg->hp_outs;
4002 memcpy(cfg->line_out_pins, cfg->hp_pins, sizeof(cfg->hp_pins));
4003 cfg->hp_outs = 0;
4004 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
4005 cfg->line_out_type = AUTO_PIN_HP_OUT;
4006 }
4007
Takashi Iwai1d045db2011-07-07 18:23:21 +02004008 err = alc_auto_fill_dac_nids(codec);
4009 if (err < 0)
4010 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004011 err = alc_auto_add_multi_channel_mode(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004012 if (err < 0)
4013 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004014 err = alc_auto_create_multi_out_ctls(codec, cfg);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004015 if (err < 0)
4016 return err;
4017 err = alc_auto_create_hp_out(codec);
4018 if (err < 0)
4019 return err;
4020 err = alc_auto_create_speaker_out(codec);
4021 if (err < 0)
4022 return err;
Takashi Iwai24de1832011-11-07 17:13:39 +01004023 err = alc_auto_create_shared_input(codec);
4024 if (err < 0)
4025 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004026 err = alc_auto_create_input_ctls(codec);
4027 if (err < 0)
4028 return err;
4029
4030 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
4031
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004032 dig_only:
Takashi Iwai1d045db2011-07-07 18:23:21 +02004033 alc_auto_parse_digital(codec);
4034
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004035 if (!spec->no_analog)
4036 alc_remove_invalid_adc_nids(codec);
4037
4038 if (ssid_nids)
4039 alc_ssid_check(codec, ssid_nids);
4040
4041 if (!spec->no_analog) {
4042 alc_auto_check_switches(codec);
4043 err = alc_auto_add_mic_boost(codec);
4044 if (err < 0)
4045 return err;
4046 }
4047
Takashi Iwai1d045db2011-07-07 18:23:21 +02004048 if (spec->kctls.list)
4049 add_mixer(spec, spec->kctls.list);
4050
Takashi Iwai1d045db2011-07-07 18:23:21 +02004051 return 1;
4052}
4053
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004054static int alc880_parse_auto_config(struct hda_codec *codec)
4055{
4056 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
4057 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4058 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
4059}
4060
Takashi Iwai1d045db2011-07-07 18:23:21 +02004061#ifdef CONFIG_SND_HDA_POWER_SAVE
4062static const struct hda_amp_list alc880_loopbacks[] = {
4063 { 0x0b, HDA_INPUT, 0 },
4064 { 0x0b, HDA_INPUT, 1 },
4065 { 0x0b, HDA_INPUT, 2 },
4066 { 0x0b, HDA_INPUT, 3 },
4067 { 0x0b, HDA_INPUT, 4 },
4068 { } /* end */
4069};
4070#endif
4071
4072/*
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004073 * ALC880 fix-ups
4074 */
4075enum {
4076 ALC880_FIXUP_GPIO2,
4077 ALC880_FIXUP_MEDION_RIM,
4078};
4079
4080static const struct alc_fixup alc880_fixups[] = {
4081 [ALC880_FIXUP_GPIO2] = {
4082 .type = ALC_FIXUP_VERBS,
4083 .v.verbs = alc_gpio2_init_verbs,
4084 },
4085 [ALC880_FIXUP_MEDION_RIM] = {
4086 .type = ALC_FIXUP_VERBS,
4087 .v.verbs = (const struct hda_verb[]) {
4088 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4089 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
4090 { }
4091 },
4092 .chained = true,
4093 .chain_id = ALC880_FIXUP_GPIO2,
4094 },
4095};
4096
4097static const struct snd_pci_quirk alc880_fixup_tbl[] = {
4098 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
4099 {}
4100};
4101
4102
4103/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02004104 * board setups
4105 */
4106#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4107#define alc_board_config \
4108 snd_hda_check_board_config
4109#define alc_board_codec_sid_config \
4110 snd_hda_check_board_codec_sid_config
4111#include "alc_quirks.c"
4112#else
4113#define alc_board_config(codec, nums, models, tbl) -1
4114#define alc_board_codec_sid_config(codec, nums, models, tbl) -1
4115#define setup_preset(codec, x) /* NOP */
4116#endif
4117
4118/*
4119 * OK, here we have finally the patch for ALC880
4120 */
4121#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4122#include "alc880_quirks.c"
4123#endif
4124
4125static int patch_alc880(struct hda_codec *codec)
4126{
4127 struct alc_spec *spec;
4128 int board_config;
4129 int err;
4130
4131 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4132 if (spec == NULL)
4133 return -ENOMEM;
4134
4135 codec->spec = spec;
4136
4137 spec->mixer_nid = 0x0b;
Takashi Iwai7b1655f2011-07-14 15:31:21 +02004138 spec->need_dac_fix = 1;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004139
4140 board_config = alc_board_config(codec, ALC880_MODEL_LAST,
4141 alc880_models, alc880_cfg_tbl);
4142 if (board_config < 0) {
4143 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4144 codec->chip_name);
4145 board_config = ALC_MODEL_AUTO;
4146 }
4147
4148 if (board_config == ALC_MODEL_AUTO) {
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004149 alc_pick_fixup(codec, NULL, alc880_fixup_tbl, alc880_fixups);
4150 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4151 }
4152
4153 if (board_config == ALC_MODEL_AUTO) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004154 /* automatic parse from the BIOS config */
4155 err = alc880_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004156 if (err < 0)
4157 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004158#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4159 else if (!err) {
4160 printk(KERN_INFO
4161 "hda_codec: Cannot set up configuration "
4162 "from BIOS. Using 3-stack mode...\n");
4163 board_config = ALC880_3ST;
4164 }
4165#endif
4166 }
4167
David Henningssonfde48a12011-12-09 18:27:42 +08004168 if (board_config != ALC_MODEL_AUTO) {
4169 spec->vmaster_nid = 0x0c;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004170 setup_preset(codec, &alc880_presets[board_config]);
David Henningssonfde48a12011-12-09 18:27:42 +08004171 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004172
Takashi Iwai60a6a842011-07-27 14:01:24 +02004173 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004174 alc_auto_fill_adc_caps(codec);
4175 alc_rebuild_imux_for_auto_mic(codec);
4176 alc_remove_invalid_adc_nids(codec);
4177 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004178
4179 if (!spec->no_analog && !spec->cap_mixer)
4180 set_capture_mixer(codec);
4181
4182 if (!spec->no_analog) {
4183 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004184 if (err < 0)
4185 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004186 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4187 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004188
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004189 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4190
Takashi Iwai1d045db2011-07-07 18:23:21 +02004191 codec->patch_ops = alc_patch_ops;
4192 if (board_config == ALC_MODEL_AUTO)
Takashi Iwaie4770622011-07-08 11:11:35 +02004193 spec->init_hook = alc_auto_init_std;
Takashi Iwaif21d78e2012-01-19 12:10:29 +01004194 else
4195 codec->patch_ops.build_controls = __alc_build_controls;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004196#ifdef CONFIG_SND_HDA_POWER_SAVE
4197 if (!spec->loopback.amplist)
4198 spec->loopback.amplist = alc880_loopbacks;
4199#endif
4200
4201 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004202
4203 error:
4204 alc_free(codec);
4205 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004206}
4207
4208
4209/*
4210 * ALC260 support
4211 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004212static int alc260_parse_auto_config(struct hda_codec *codec)
4213{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004214 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004215 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
4216 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004217}
4218
Takashi Iwai1d045db2011-07-07 18:23:21 +02004219#ifdef CONFIG_SND_HDA_POWER_SAVE
4220static const struct hda_amp_list alc260_loopbacks[] = {
4221 { 0x07, HDA_INPUT, 0 },
4222 { 0x07, HDA_INPUT, 1 },
4223 { 0x07, HDA_INPUT, 2 },
4224 { 0x07, HDA_INPUT, 3 },
4225 { 0x07, HDA_INPUT, 4 },
4226 { } /* end */
4227};
4228#endif
4229
4230/*
4231 * Pin config fixes
4232 */
4233enum {
4234 PINFIX_HP_DC5750,
4235};
4236
4237static const struct alc_fixup alc260_fixups[] = {
4238 [PINFIX_HP_DC5750] = {
4239 .type = ALC_FIXUP_PINS,
4240 .v.pins = (const struct alc_pincfg[]) {
4241 { 0x11, 0x90130110 }, /* speaker */
4242 { }
4243 }
4244 },
4245};
4246
4247static const struct snd_pci_quirk alc260_fixup_tbl[] = {
4248 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", PINFIX_HP_DC5750),
4249 {}
4250};
4251
4252/*
4253 */
4254#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4255#include "alc260_quirks.c"
4256#endif
4257
4258static int patch_alc260(struct hda_codec *codec)
4259{
4260 struct alc_spec *spec;
4261 int err, board_config;
4262
4263 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4264 if (spec == NULL)
4265 return -ENOMEM;
4266
4267 codec->spec = spec;
4268
4269 spec->mixer_nid = 0x07;
4270
4271 board_config = alc_board_config(codec, ALC260_MODEL_LAST,
4272 alc260_models, alc260_cfg_tbl);
4273 if (board_config < 0) {
4274 snd_printd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4275 codec->chip_name);
4276 board_config = ALC_MODEL_AUTO;
4277 }
4278
4279 if (board_config == ALC_MODEL_AUTO) {
4280 alc_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
4281 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4282 }
4283
4284 if (board_config == ALC_MODEL_AUTO) {
4285 /* automatic parse from the BIOS config */
4286 err = alc260_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004287 if (err < 0)
4288 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004289#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4290 else if (!err) {
4291 printk(KERN_INFO
4292 "hda_codec: Cannot set up configuration "
4293 "from BIOS. Using base mode...\n");
4294 board_config = ALC260_BASIC;
4295 }
4296#endif
4297 }
4298
David Henningssonfde48a12011-12-09 18:27:42 +08004299 if (board_config != ALC_MODEL_AUTO) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004300 setup_preset(codec, &alc260_presets[board_config]);
David Henningssonfde48a12011-12-09 18:27:42 +08004301 spec->vmaster_nid = 0x08;
4302 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004303
Takashi Iwai60a6a842011-07-27 14:01:24 +02004304 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004305 alc_auto_fill_adc_caps(codec);
4306 alc_rebuild_imux_for_auto_mic(codec);
4307 alc_remove_invalid_adc_nids(codec);
4308 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004309
4310 if (!spec->no_analog && !spec->cap_mixer)
4311 set_capture_mixer(codec);
4312
4313 if (!spec->no_analog) {
4314 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004315 if (err < 0)
4316 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004317 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
4318 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004319
4320 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4321
Takashi Iwai1d045db2011-07-07 18:23:21 +02004322 codec->patch_ops = alc_patch_ops;
4323 if (board_config == ALC_MODEL_AUTO)
Takashi Iwai8452a982011-07-08 16:19:48 +02004324 spec->init_hook = alc_auto_init_std;
Takashi Iwaif21d78e2012-01-19 12:10:29 +01004325 else
4326 codec->patch_ops.build_controls = __alc_build_controls;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004327 spec->shutup = alc_eapd_shutup;
4328#ifdef CONFIG_SND_HDA_POWER_SAVE
4329 if (!spec->loopback.amplist)
4330 spec->loopback.amplist = alc260_loopbacks;
4331#endif
4332
4333 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004334
4335 error:
4336 alc_free(codec);
4337 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004338}
4339
4340
4341/*
4342 * ALC882/883/885/888/889 support
4343 *
4344 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4345 * configuration. Each pin widget can choose any input DACs and a mixer.
4346 * Each ADC is connected from a mixer of all inputs. This makes possible
4347 * 6-channel independent captures.
4348 *
4349 * In addition, an independent DAC for the multi-playback (not used in this
4350 * driver yet).
4351 */
4352#ifdef CONFIG_SND_HDA_POWER_SAVE
4353#define alc882_loopbacks alc880_loopbacks
4354#endif
4355
4356/*
4357 * Pin config fixes
4358 */
4359enum {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004360 ALC882_FIXUP_ABIT_AW9D_MAX,
4361 ALC882_FIXUP_LENOVO_Y530,
4362 ALC882_FIXUP_PB_M5210,
4363 ALC882_FIXUP_ACER_ASPIRE_7736,
4364 ALC882_FIXUP_ASUS_W90V,
4365 ALC889_FIXUP_VAIO_TT,
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01004366 ALC888_FIXUP_EEE1601,
Takashi Iwai177943a32011-11-09 12:55:18 +01004367 ALC882_FIXUP_EAPD,
Takashi Iwai7a6069b2011-11-09 15:22:01 +01004368 ALC883_FIXUP_EAPD,
Takashi Iwai8812c4f2011-11-09 17:39:15 +01004369 ALC883_FIXUP_ACER_EAPD,
Takashi Iwaieb844d52011-11-09 18:03:07 +01004370 ALC882_FIXUP_GPIO3,
Takashi Iwai68ef0562011-11-09 18:24:44 +01004371 ALC889_FIXUP_COEF,
4372 ALC882_FIXUP_ASUS_W2JC,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01004373 ALC882_FIXUP_ACER_ASPIRE_4930G,
4374 ALC882_FIXUP_ACER_ASPIRE_8930G,
4375 ALC882_FIXUP_ASPIRE_8930G_VERBS,
Takashi Iwai56710872011-11-14 17:42:11 +01004376 ALC885_FIXUP_MACPRO_GPIO,
Takashi Iwai1d045db2011-07-07 18:23:21 +02004377};
4378
Takashi Iwai68ef0562011-11-09 18:24:44 +01004379static void alc889_fixup_coef(struct hda_codec *codec,
4380 const struct alc_fixup *fix, int action)
4381{
4382 if (action != ALC_FIXUP_ACT_INIT)
4383 return;
4384 alc889_coef_init(codec);
4385}
4386
Takashi Iwai56710872011-11-14 17:42:11 +01004387/* toggle speaker-output according to the hp-jack state */
4388static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
4389{
4390 unsigned int gpiostate, gpiomask, gpiodir;
4391
4392 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
4393 AC_VERB_GET_GPIO_DATA, 0);
4394
4395 if (!muted)
4396 gpiostate |= (1 << pin);
4397 else
4398 gpiostate &= ~(1 << pin);
4399
4400 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
4401 AC_VERB_GET_GPIO_MASK, 0);
4402 gpiomask |= (1 << pin);
4403
4404 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
4405 AC_VERB_GET_GPIO_DIRECTION, 0);
4406 gpiodir |= (1 << pin);
4407
4408
4409 snd_hda_codec_write(codec, codec->afg, 0,
4410 AC_VERB_SET_GPIO_MASK, gpiomask);
4411 snd_hda_codec_write(codec, codec->afg, 0,
4412 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
4413
4414 msleep(1);
4415
4416 snd_hda_codec_write(codec, codec->afg, 0,
4417 AC_VERB_SET_GPIO_DATA, gpiostate);
4418}
4419
4420/* set up GPIO at initialization */
4421static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
4422 const struct alc_fixup *fix, int action)
4423{
4424 if (action != ALC_FIXUP_ACT_INIT)
4425 return;
4426 alc882_gpio_mute(codec, 0, 0);
4427 alc882_gpio_mute(codec, 1, 0);
4428}
4429
Takashi Iwai1d045db2011-07-07 18:23:21 +02004430static const struct alc_fixup alc882_fixups[] = {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004431 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004432 .type = ALC_FIXUP_PINS,
4433 .v.pins = (const struct alc_pincfg[]) {
4434 { 0x15, 0x01080104 }, /* side */
4435 { 0x16, 0x01011012 }, /* rear */
4436 { 0x17, 0x01016011 }, /* clfe */
4437 { }
4438 }
4439 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004440 [ALC882_FIXUP_LENOVO_Y530] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004441 .type = ALC_FIXUP_PINS,
4442 .v.pins = (const struct alc_pincfg[]) {
4443 { 0x15, 0x99130112 }, /* rear int speakers */
4444 { 0x16, 0x99130111 }, /* subwoofer */
4445 { }
4446 }
4447 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004448 [ALC882_FIXUP_PB_M5210] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004449 .type = ALC_FIXUP_VERBS,
4450 .v.verbs = (const struct hda_verb[]) {
4451 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
4452 {}
4453 }
4454 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004455 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004456 .type = ALC_FIXUP_SKU,
4457 .v.sku = ALC_FIXUP_SKU_IGNORE,
4458 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004459 [ALC882_FIXUP_ASUS_W90V] = {
Takashi Iwai5cdf7452011-10-26 23:04:08 +02004460 .type = ALC_FIXUP_PINS,
4461 .v.pins = (const struct alc_pincfg[]) {
4462 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
4463 { }
4464 }
4465 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004466 [ALC889_FIXUP_VAIO_TT] = {
4467 .type = ALC_FIXUP_PINS,
4468 .v.pins = (const struct alc_pincfg[]) {
4469 { 0x17, 0x90170111 }, /* hidden surround speaker */
4470 { }
4471 }
4472 },
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01004473 [ALC888_FIXUP_EEE1601] = {
4474 .type = ALC_FIXUP_VERBS,
4475 .v.verbs = (const struct hda_verb[]) {
4476 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
4477 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
4478 { }
4479 }
Takashi Iwai177943a32011-11-09 12:55:18 +01004480 },
4481 [ALC882_FIXUP_EAPD] = {
4482 .type = ALC_FIXUP_VERBS,
4483 .v.verbs = (const struct hda_verb[]) {
4484 /* change to EAPD mode */
4485 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4486 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
4487 { }
4488 }
4489 },
Takashi Iwai7a6069b2011-11-09 15:22:01 +01004490 [ALC883_FIXUP_EAPD] = {
4491 .type = ALC_FIXUP_VERBS,
4492 .v.verbs = (const struct hda_verb[]) {
4493 /* change to EAPD mode */
4494 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4495 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
4496 { }
4497 }
4498 },
Takashi Iwai8812c4f2011-11-09 17:39:15 +01004499 [ALC883_FIXUP_ACER_EAPD] = {
4500 .type = ALC_FIXUP_VERBS,
4501 .v.verbs = (const struct hda_verb[]) {
4502 /* eanable EAPD on Acer laptops */
4503 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4504 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
4505 { }
4506 }
4507 },
Takashi Iwaieb844d52011-11-09 18:03:07 +01004508 [ALC882_FIXUP_GPIO3] = {
4509 .type = ALC_FIXUP_VERBS,
4510 .v.verbs = alc_gpio3_init_verbs,
4511 },
Takashi Iwai68ef0562011-11-09 18:24:44 +01004512 [ALC882_FIXUP_ASUS_W2JC] = {
4513 .type = ALC_FIXUP_VERBS,
4514 .v.verbs = alc_gpio1_init_verbs,
4515 .chained = true,
4516 .chain_id = ALC882_FIXUP_EAPD,
4517 },
4518 [ALC889_FIXUP_COEF] = {
4519 .type = ALC_FIXUP_FUNC,
4520 .v.func = alc889_fixup_coef,
4521 },
Takashi Iwaic3e837b2011-11-10 16:01:47 +01004522 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
4523 .type = ALC_FIXUP_PINS,
4524 .v.pins = (const struct alc_pincfg[]) {
4525 { 0x16, 0x99130111 }, /* CLFE speaker */
4526 { 0x17, 0x99130112 }, /* surround speaker */
4527 { }
4528 }
4529 },
4530 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
4531 .type = ALC_FIXUP_PINS,
4532 .v.pins = (const struct alc_pincfg[]) {
4533 { 0x16, 0x99130111 }, /* CLFE speaker */
4534 { 0x1b, 0x99130112 }, /* surround speaker */
4535 { }
4536 },
4537 .chained = true,
4538 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
4539 },
4540 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
4541 /* additional init verbs for Acer Aspire 8930G */
4542 .type = ALC_FIXUP_VERBS,
4543 .v.verbs = (const struct hda_verb[]) {
4544 /* Enable all DACs */
4545 /* DAC DISABLE/MUTE 1? */
4546 /* setting bits 1-5 disables DAC nids 0x02-0x06
4547 * apparently. Init=0x38 */
4548 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
4549 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
4550 /* DAC DISABLE/MUTE 2? */
4551 /* some bit here disables the other DACs.
4552 * Init=0x4900 */
4553 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
4554 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
4555 /* DMIC fix
4556 * This laptop has a stereo digital microphone.
4557 * The mics are only 1cm apart which makes the stereo
4558 * useless. However, either the mic or the ALC889
4559 * makes the signal become a difference/sum signal
4560 * instead of standard stereo, which is annoying.
4561 * So instead we flip this bit which makes the
4562 * codec replicate the sum signal to both channels,
4563 * turning it into a normal mono mic.
4564 */
4565 /* DMIC_CONTROL? Init value = 0x0001 */
4566 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
4567 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
4568 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4569 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
4570 { }
4571 }
4572 },
Takashi Iwai56710872011-11-14 17:42:11 +01004573 [ALC885_FIXUP_MACPRO_GPIO] = {
4574 .type = ALC_FIXUP_FUNC,
4575 .v.func = alc885_fixup_macpro_gpio,
4576 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02004577};
4578
4579static const struct snd_pci_quirk alc882_fixup_tbl[] = {
Takashi Iwai8812c4f2011-11-09 17:39:15 +01004580 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
4581 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
4582 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
4583 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
4584 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
4585 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
Takashi Iwaic3e837b2011-11-10 16:01:47 +01004586 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
4587 ALC882_FIXUP_ACER_ASPIRE_4930G),
4588 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
4589 ALC882_FIXUP_ACER_ASPIRE_4930G),
4590 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
4591 ALC882_FIXUP_ACER_ASPIRE_8930G),
4592 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
4593 ALC882_FIXUP_ACER_ASPIRE_8930G),
4594 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
4595 ALC882_FIXUP_ACER_ASPIRE_4930G),
4596 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
4597 ALC882_FIXUP_ACER_ASPIRE_4930G),
4598 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
4599 ALC882_FIXUP_ACER_ASPIRE_4930G),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004600 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01004601 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
Takashi Iwai177943a32011-11-09 12:55:18 +01004602 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004603 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
Takashi Iwai68ef0562011-11-09 18:24:44 +01004604 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01004605 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01004606 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
Takashi Iwai56710872011-11-14 17:42:11 +01004607
4608 /* All Apple entries are in codec SSIDs */
4609 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
4610 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
4611 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
4612 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
4613 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
4614
Takashi Iwai7a6069b2011-11-09 15:22:01 +01004615 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
Takashi Iwaieb844d52011-11-09 18:03:07 +01004616 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004617 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
Takashi Iwai7a6069b2011-11-09 15:22:01 +01004618 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
4619 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01004620 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
Takashi Iwai68ef0562011-11-09 18:24:44 +01004621 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004622 {}
4623};
4624
4625/*
4626 * BIOS auto configuration
4627 */
4628/* almost identical with ALC880 parser... */
4629static int alc882_parse_auto_config(struct hda_codec *codec)
4630{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004631 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004632 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4633 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004634}
4635
Takashi Iwai1d045db2011-07-07 18:23:21 +02004636/*
4637 */
4638#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4639#include "alc882_quirks.c"
4640#endif
4641
4642static int patch_alc882(struct hda_codec *codec)
4643{
4644 struct alc_spec *spec;
4645 int err, board_config;
4646
4647 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4648 if (spec == NULL)
4649 return -ENOMEM;
4650
4651 codec->spec = spec;
4652
4653 spec->mixer_nid = 0x0b;
4654
4655 switch (codec->vendor_id) {
4656 case 0x10ec0882:
4657 case 0x10ec0885:
4658 break;
4659 default:
4660 /* ALC883 and variants */
4661 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
4662 break;
4663 }
4664
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004665 err = alc_codec_rename_from_preset(codec);
4666 if (err < 0)
4667 goto error;
4668
Takashi Iwaib2539692011-11-14 17:32:17 +01004669 board_config = alc_board_config(codec, ALC882_MODEL_LAST,
4670 alc882_models, NULL);
4671 if (board_config < 0)
4672 board_config = alc_board_codec_sid_config(codec,
Takashi Iwai1d045db2011-07-07 18:23:21 +02004673 ALC882_MODEL_LAST, alc882_models, alc882_ssid_cfg_tbl);
4674
4675 if (board_config < 0) {
4676 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4677 codec->chip_name);
4678 board_config = ALC_MODEL_AUTO;
4679 }
4680
4681 if (board_config == ALC_MODEL_AUTO) {
4682 alc_pick_fixup(codec, NULL, alc882_fixup_tbl, alc882_fixups);
4683 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4684 }
4685
4686 alc_auto_parse_customize_define(codec);
4687
4688 if (board_config == ALC_MODEL_AUTO) {
4689 /* automatic parse from the BIOS config */
4690 err = alc882_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004691 if (err < 0)
4692 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004693 }
4694
David Henningssonfde48a12011-12-09 18:27:42 +08004695 if (board_config != ALC_MODEL_AUTO) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004696 setup_preset(codec, &alc882_presets[board_config]);
David Henningssonfde48a12011-12-09 18:27:42 +08004697 spec->vmaster_nid = 0x0c;
4698 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004699
Takashi Iwai60a6a842011-07-27 14:01:24 +02004700 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004701 alc_auto_fill_adc_caps(codec);
4702 alc_rebuild_imux_for_auto_mic(codec);
4703 alc_remove_invalid_adc_nids(codec);
4704 }
4705
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004706 if (!spec->no_analog && !spec->cap_mixer)
4707 set_capture_mixer(codec);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004708
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004709 if (!spec->no_analog && has_cdefine_beep(codec)) {
4710 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004711 if (err < 0)
4712 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004713 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004714 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004715
4716 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4717
Takashi Iwai1d045db2011-07-07 18:23:21 +02004718 codec->patch_ops = alc_patch_ops;
4719 if (board_config == ALC_MODEL_AUTO)
Takashi Iwaie4770622011-07-08 11:11:35 +02004720 spec->init_hook = alc_auto_init_std;
Takashi Iwaif21d78e2012-01-19 12:10:29 +01004721 else
4722 codec->patch_ops.build_controls = __alc_build_controls;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004723
Takashi Iwai1d045db2011-07-07 18:23:21 +02004724#ifdef CONFIG_SND_HDA_POWER_SAVE
4725 if (!spec->loopback.amplist)
4726 spec->loopback.amplist = alc882_loopbacks;
4727#endif
4728
4729 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004730
4731 error:
4732 alc_free(codec);
4733 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004734}
4735
4736
4737/*
4738 * ALC262 support
4739 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004740static int alc262_parse_auto_config(struct hda_codec *codec)
4741{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004742 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004743 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4744 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004745}
4746
4747/*
4748 * Pin config fixes
4749 */
4750enum {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01004751 ALC262_FIXUP_FSC_H270,
4752 ALC262_FIXUP_HP_Z200,
4753 ALC262_FIXUP_TYAN,
Takashi Iwaic4701502011-11-07 14:20:07 +01004754 ALC262_FIXUP_LENOVO_3000,
Takashi Iwaib42590b2011-11-07 14:41:01 +01004755 ALC262_FIXUP_BENQ,
4756 ALC262_FIXUP_BENQ_T31,
Takashi Iwai1d045db2011-07-07 18:23:21 +02004757};
4758
4759static const struct alc_fixup alc262_fixups[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01004760 [ALC262_FIXUP_FSC_H270] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004761 .type = ALC_FIXUP_PINS,
4762 .v.pins = (const struct alc_pincfg[]) {
4763 { 0x14, 0x99130110 }, /* speaker */
4764 { 0x15, 0x0221142f }, /* front HP */
4765 { 0x1b, 0x0121141f }, /* rear HP */
4766 { }
4767 }
4768 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01004769 [ALC262_FIXUP_HP_Z200] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004770 .type = ALC_FIXUP_PINS,
4771 .v.pins = (const struct alc_pincfg[]) {
4772 { 0x16, 0x99130120 }, /* internal speaker */
4773 { }
4774 }
4775 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01004776 [ALC262_FIXUP_TYAN] = {
4777 .type = ALC_FIXUP_PINS,
4778 .v.pins = (const struct alc_pincfg[]) {
4779 { 0x14, 0x1993e1f0 }, /* int AUX */
4780 { }
4781 }
4782 },
Takashi Iwaic4701502011-11-07 14:20:07 +01004783 [ALC262_FIXUP_LENOVO_3000] = {
4784 .type = ALC_FIXUP_VERBS,
4785 .v.verbs = (const struct hda_verb[]) {
4786 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01004787 {}
4788 },
4789 .chained = true,
4790 .chain_id = ALC262_FIXUP_BENQ,
4791 },
4792 [ALC262_FIXUP_BENQ] = {
4793 .type = ALC_FIXUP_VERBS,
4794 .v.verbs = (const struct hda_verb[]) {
Takashi Iwaic4701502011-11-07 14:20:07 +01004795 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4796 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
4797 {}
4798 }
4799 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01004800 [ALC262_FIXUP_BENQ_T31] = {
4801 .type = ALC_FIXUP_VERBS,
4802 .v.verbs = (const struct hda_verb[]) {
4803 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4804 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
4805 {}
4806 }
4807 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02004808};
4809
4810static const struct snd_pci_quirk alc262_fixup_tbl[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01004811 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
Takashi Iwai3dcd3be2011-11-07 14:59:40 +01004812 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FIXUP_BENQ),
4813 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01004814 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
4815 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
Takashi Iwaic4701502011-11-07 14:20:07 +01004816 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
Takashi Iwaib42590b2011-11-07 14:41:01 +01004817 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
4818 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004819 {}
4820};
4821
4822
4823#ifdef CONFIG_SND_HDA_POWER_SAVE
4824#define alc262_loopbacks alc880_loopbacks
4825#endif
4826
Takashi Iwai1d045db2011-07-07 18:23:21 +02004827/*
4828 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004829static int patch_alc262(struct hda_codec *codec)
4830{
4831 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004832 int err;
4833
4834 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4835 if (spec == NULL)
4836 return -ENOMEM;
4837
4838 codec->spec = spec;
4839
4840 spec->mixer_nid = 0x0b;
4841
4842#if 0
4843 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
4844 * under-run
4845 */
4846 {
4847 int tmp;
4848 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4849 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
4850 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4851 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
4852 }
4853#endif
4854 alc_auto_parse_customize_define(codec);
4855
4856 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
4857
Takashi Iwai42399f72011-11-07 17:18:44 +01004858 alc_pick_fixup(codec, NULL, alc262_fixup_tbl, alc262_fixups);
4859 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004860
Takashi Iwai42399f72011-11-07 17:18:44 +01004861 /* automatic parse from the BIOS config */
4862 err = alc262_parse_auto_config(codec);
4863 if (err < 0)
4864 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004865
Takashi Iwai60a6a842011-07-27 14:01:24 +02004866 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004867 alc_auto_fill_adc_caps(codec);
4868 alc_rebuild_imux_for_auto_mic(codec);
4869 alc_remove_invalid_adc_nids(codec);
4870 }
4871
4872 if (!spec->no_analog && !spec->cap_mixer)
4873 set_capture_mixer(codec);
4874
Takashi Iwai1d045db2011-07-07 18:23:21 +02004875 if (!spec->no_analog && has_cdefine_beep(codec)) {
4876 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004877 if (err < 0)
4878 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004879 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004880 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004881
4882 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4883
Takashi Iwai1d045db2011-07-07 18:23:21 +02004884 codec->patch_ops = alc_patch_ops;
Takashi Iwai42399f72011-11-07 17:18:44 +01004885 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004886 spec->shutup = alc_eapd_shutup;
4887
Takashi Iwai1d045db2011-07-07 18:23:21 +02004888#ifdef CONFIG_SND_HDA_POWER_SAVE
4889 if (!spec->loopback.amplist)
4890 spec->loopback.amplist = alc262_loopbacks;
4891#endif
4892
4893 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004894
4895 error:
4896 alc_free(codec);
4897 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004898}
4899
4900/*
4901 * ALC268
4902 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004903/* bind Beep switches of both NID 0x0f and 0x10 */
4904static const struct hda_bind_ctls alc268_bind_beep_sw = {
4905 .ops = &snd_hda_bind_sw,
4906 .values = {
4907 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
4908 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
4909 0
4910 },
4911};
4912
4913static const struct snd_kcontrol_new alc268_beep_mixer[] = {
4914 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
4915 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
4916 { }
4917};
4918
4919/* set PCBEEP vol = 0, mute connections */
4920static const struct hda_verb alc268_beep_init_verbs[] = {
4921 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4922 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4923 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4924 { }
4925};
4926
4927/*
4928 * BIOS auto configuration
4929 */
4930static int alc268_parse_auto_config(struct hda_codec *codec)
4931{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004932 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai1d045db2011-07-07 18:23:21 +02004933 struct alc_spec *spec = codec->spec;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004934 int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
4935 if (err > 0) {
4936 if (!spec->no_analog && spec->autocfg.speaker_pins[0] != 0x1d) {
4937 add_mixer(spec, alc268_beep_mixer);
4938 add_verb(spec, alc268_beep_init_verbs);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004939 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004940 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004941 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004942}
4943
Takashi Iwai1d045db2011-07-07 18:23:21 +02004944/*
4945 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004946static int patch_alc268(struct hda_codec *codec)
4947{
4948 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004949 int i, has_beep, err;
4950
4951 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4952 if (spec == NULL)
4953 return -ENOMEM;
4954
4955 codec->spec = spec;
4956
4957 /* ALC268 has no aa-loopback mixer */
4958
Takashi Iwai6ebb8052011-08-16 15:15:40 +02004959 /* automatic parse from the BIOS config */
4960 err = alc268_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004961 if (err < 0)
4962 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004963
Takashi Iwai1d045db2011-07-07 18:23:21 +02004964 has_beep = 0;
4965 for (i = 0; i < spec->num_mixers; i++) {
4966 if (spec->mixers[i] == alc268_beep_mixer) {
4967 has_beep = 1;
4968 break;
4969 }
4970 }
4971
4972 if (has_beep) {
4973 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004974 if (err < 0)
4975 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004976 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
4977 /* override the amp caps for beep generator */
4978 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
4979 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
4980 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
4981 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4982 (0 << AC_AMPCAP_MUTE_SHIFT));
4983 }
4984
Takashi Iwai60a6a842011-07-27 14:01:24 +02004985 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004986 alc_auto_fill_adc_caps(codec);
4987 alc_rebuild_imux_for_auto_mic(codec);
4988 alc_remove_invalid_adc_nids(codec);
4989 }
4990
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004991 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwai1d045db2011-07-07 18:23:21 +02004992 set_capture_mixer(codec);
4993
Takashi Iwai1d045db2011-07-07 18:23:21 +02004994 codec->patch_ops = alc_patch_ops;
Takashi Iwai6ebb8052011-08-16 15:15:40 +02004995 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004996 spec->shutup = alc_eapd_shutup;
4997
Takashi Iwai1d045db2011-07-07 18:23:21 +02004998 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004999
5000 error:
5001 alc_free(codec);
5002 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005003}
5004
5005/*
5006 * ALC269
5007 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005008#ifdef CONFIG_SND_HDA_POWER_SAVE
5009#define alc269_loopbacks alc880_loopbacks
5010#endif
5011
5012static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
5013 .substreams = 1,
5014 .channels_min = 2,
5015 .channels_max = 8,
5016 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
5017 /* NID is set in alc_build_pcms */
5018 .ops = {
5019 .open = alc_playback_pcm_open,
5020 .prepare = alc_playback_pcm_prepare,
5021 .cleanup = alc_playback_pcm_cleanup
5022 },
5023};
5024
5025static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
5026 .substreams = 1,
5027 .channels_min = 2,
5028 .channels_max = 2,
5029 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
5030 /* NID is set in alc_build_pcms */
5031};
5032
5033#ifdef CONFIG_SND_HDA_POWER_SAVE
5034static int alc269_mic2_for_mute_led(struct hda_codec *codec)
5035{
5036 switch (codec->subsystem_id) {
5037 case 0x103c1586:
5038 return 1;
5039 }
5040 return 0;
5041}
5042
5043static int alc269_mic2_mute_check_ps(struct hda_codec *codec, hda_nid_t nid)
5044{
5045 /* update mute-LED according to the speaker mute state */
5046 if (nid == 0x01 || nid == 0x14) {
5047 int pinval;
5048 if (snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0) &
5049 HDA_AMP_MUTE)
5050 pinval = 0x24;
5051 else
5052 pinval = 0x20;
5053 /* mic2 vref pin is used for mute LED control */
5054 snd_hda_codec_update_cache(codec, 0x19, 0,
5055 AC_VERB_SET_PIN_WIDGET_CONTROL,
5056 pinval);
5057 }
5058 return alc_check_power_status(codec, nid);
5059}
5060#endif /* CONFIG_SND_HDA_POWER_SAVE */
5061
5062/* different alc269-variants */
5063enum {
5064 ALC269_TYPE_ALC269VA,
5065 ALC269_TYPE_ALC269VB,
5066 ALC269_TYPE_ALC269VC,
5067};
5068
5069/*
5070 * BIOS auto configuration
5071 */
5072static int alc269_parse_auto_config(struct hda_codec *codec)
5073{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005074 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005075 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
5076 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5077 struct alc_spec *spec = codec->spec;
5078 const hda_nid_t *ssids = spec->codec_variant == ALC269_TYPE_ALC269VA ?
5079 alc269va_ssids : alc269_ssids;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005080
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005081 return alc_parse_auto_config(codec, alc269_ignore, ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005082}
5083
Takashi Iwai1d045db2011-07-07 18:23:21 +02005084static void alc269_toggle_power_output(struct hda_codec *codec, int power_up)
5085{
5086 int val = alc_read_coef_idx(codec, 0x04);
5087 if (power_up)
5088 val |= 1 << 11;
5089 else
5090 val &= ~(1 << 11);
5091 alc_write_coef_idx(codec, 0x04, val);
5092}
5093
5094static void alc269_shutup(struct hda_codec *codec)
5095{
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005096 if ((alc_get_coef0(codec) & 0x00ff) == 0x017)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005097 alc269_toggle_power_output(codec, 0);
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005098 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005099 alc269_toggle_power_output(codec, 0);
5100 msleep(150);
5101 }
5102}
5103
Takashi Iwai2a439522011-07-26 09:52:50 +02005104#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02005105static int alc269_resume(struct hda_codec *codec)
5106{
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005107 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005108 alc269_toggle_power_output(codec, 0);
5109 msleep(150);
5110 }
5111
5112 codec->patch_ops.init(codec);
5113
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005114 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005115 alc269_toggle_power_output(codec, 1);
5116 msleep(200);
5117 }
5118
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005119 if ((alc_get_coef0(codec) & 0x00ff) == 0x018)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005120 alc269_toggle_power_output(codec, 1);
5121
5122 snd_hda_codec_resume_amp(codec);
5123 snd_hda_codec_resume_cache(codec);
5124 hda_call_check_power_status(codec, 0x01);
5125 return 0;
5126}
Takashi Iwai2a439522011-07-26 09:52:50 +02005127#endif /* CONFIG_PM */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005128
5129static void alc269_fixup_hweq(struct hda_codec *codec,
5130 const struct alc_fixup *fix, int action)
5131{
5132 int coef;
5133
5134 if (action != ALC_FIXUP_ACT_INIT)
5135 return;
5136 coef = alc_read_coef_idx(codec, 0x1e);
5137 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
5138}
5139
5140static void alc271_fixup_dmic(struct hda_codec *codec,
5141 const struct alc_fixup *fix, int action)
5142{
5143 static const struct hda_verb verbs[] = {
5144 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
5145 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
5146 {}
5147 };
5148 unsigned int cfg;
5149
5150 if (strcmp(codec->chip_name, "ALC271X"))
5151 return;
5152 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
5153 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
5154 snd_hda_sequence_write(codec, verbs);
5155}
5156
Takashi Iwai017f2a12011-07-09 14:42:25 +02005157static void alc269_fixup_pcm_44k(struct hda_codec *codec,
5158 const struct alc_fixup *fix, int action)
5159{
5160 struct alc_spec *spec = codec->spec;
5161
5162 if (action != ALC_FIXUP_ACT_PROBE)
5163 return;
5164
5165 /* Due to a hardware problem on Lenovo Ideadpad, we need to
5166 * fix the sample rate of analog I/O to 44.1kHz
5167 */
5168 spec->stream_analog_playback = &alc269_44k_pcm_analog_playback;
5169 spec->stream_analog_capture = &alc269_44k_pcm_analog_capture;
5170}
5171
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02005172static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
5173 const struct alc_fixup *fix, int action)
5174{
5175 int coef;
5176
5177 if (action != ALC_FIXUP_ACT_INIT)
5178 return;
5179 /* The digital-mic unit sends PDM (differential signal) instead of
5180 * the standard PCM, thus you can't record a valid mono stream as is.
5181 * Below is a workaround specific to ALC269 to control the dmic
5182 * signal source as mono.
5183 */
5184 coef = alc_read_coef_idx(codec, 0x07);
5185 alc_write_coef_idx(codec, 0x07, coef | 0x80);
5186}
5187
Takashi Iwai24519912011-08-16 15:08:49 +02005188static void alc269_quanta_automute(struct hda_codec *codec)
5189{
David Henningsson42cf0d02011-09-20 12:04:56 +02005190 update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +02005191
5192 snd_hda_codec_write(codec, 0x20, 0,
5193 AC_VERB_SET_COEF_INDEX, 0x0c);
5194 snd_hda_codec_write(codec, 0x20, 0,
5195 AC_VERB_SET_PROC_COEF, 0x680);
5196
5197 snd_hda_codec_write(codec, 0x20, 0,
5198 AC_VERB_SET_COEF_INDEX, 0x0c);
5199 snd_hda_codec_write(codec, 0x20, 0,
5200 AC_VERB_SET_PROC_COEF, 0x480);
5201}
5202
5203static void alc269_fixup_quanta_mute(struct hda_codec *codec,
5204 const struct alc_fixup *fix, int action)
5205{
5206 struct alc_spec *spec = codec->spec;
5207 if (action != ALC_FIXUP_ACT_PROBE)
5208 return;
5209 spec->automute_hook = alc269_quanta_automute;
5210}
5211
Takashi Iwai1d045db2011-07-07 18:23:21 +02005212enum {
5213 ALC269_FIXUP_SONY_VAIO,
5214 ALC275_FIXUP_SONY_VAIO_GPIO2,
5215 ALC269_FIXUP_DELL_M101Z,
5216 ALC269_FIXUP_SKU_IGNORE,
5217 ALC269_FIXUP_ASUS_G73JW,
5218 ALC269_FIXUP_LENOVO_EAPD,
5219 ALC275_FIXUP_SONY_HWEQ,
5220 ALC271_FIXUP_DMIC,
Takashi Iwai017f2a12011-07-09 14:42:25 +02005221 ALC269_FIXUP_PCM_44K,
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02005222 ALC269_FIXUP_STEREO_DMIC,
Takashi Iwai24519912011-08-16 15:08:49 +02005223 ALC269_FIXUP_QUANTA_MUTE,
5224 ALC269_FIXUP_LIFEBOOK,
Takashi Iwaia4297b52011-08-23 18:40:12 +02005225 ALC269_FIXUP_AMIC,
5226 ALC269_FIXUP_DMIC,
5227 ALC269VB_FIXUP_AMIC,
5228 ALC269VB_FIXUP_DMIC,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005229};
5230
5231static const struct alc_fixup alc269_fixups[] = {
5232 [ALC269_FIXUP_SONY_VAIO] = {
5233 .type = ALC_FIXUP_VERBS,
5234 .v.verbs = (const struct hda_verb[]) {
5235 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
5236 {}
5237 }
5238 },
5239 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
5240 .type = ALC_FIXUP_VERBS,
5241 .v.verbs = (const struct hda_verb[]) {
5242 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
5243 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
5244 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
5245 { }
5246 },
5247 .chained = true,
5248 .chain_id = ALC269_FIXUP_SONY_VAIO
5249 },
5250 [ALC269_FIXUP_DELL_M101Z] = {
5251 .type = ALC_FIXUP_VERBS,
5252 .v.verbs = (const struct hda_verb[]) {
5253 /* Enables internal speaker */
5254 {0x20, AC_VERB_SET_COEF_INDEX, 13},
5255 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
5256 {}
5257 }
5258 },
5259 [ALC269_FIXUP_SKU_IGNORE] = {
5260 .type = ALC_FIXUP_SKU,
5261 .v.sku = ALC_FIXUP_SKU_IGNORE,
5262 },
5263 [ALC269_FIXUP_ASUS_G73JW] = {
5264 .type = ALC_FIXUP_PINS,
5265 .v.pins = (const struct alc_pincfg[]) {
5266 { 0x17, 0x99130111 }, /* subwoofer */
5267 { }
5268 }
5269 },
5270 [ALC269_FIXUP_LENOVO_EAPD] = {
5271 .type = ALC_FIXUP_VERBS,
5272 .v.verbs = (const struct hda_verb[]) {
5273 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5274 {}
5275 }
5276 },
5277 [ALC275_FIXUP_SONY_HWEQ] = {
5278 .type = ALC_FIXUP_FUNC,
5279 .v.func = alc269_fixup_hweq,
5280 .chained = true,
5281 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
5282 },
5283 [ALC271_FIXUP_DMIC] = {
5284 .type = ALC_FIXUP_FUNC,
5285 .v.func = alc271_fixup_dmic,
5286 },
Takashi Iwai017f2a12011-07-09 14:42:25 +02005287 [ALC269_FIXUP_PCM_44K] = {
5288 .type = ALC_FIXUP_FUNC,
5289 .v.func = alc269_fixup_pcm_44k,
5290 },
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02005291 [ALC269_FIXUP_STEREO_DMIC] = {
5292 .type = ALC_FIXUP_FUNC,
5293 .v.func = alc269_fixup_stereo_dmic,
5294 },
Takashi Iwai24519912011-08-16 15:08:49 +02005295 [ALC269_FIXUP_QUANTA_MUTE] = {
5296 .type = ALC_FIXUP_FUNC,
5297 .v.func = alc269_fixup_quanta_mute,
5298 },
5299 [ALC269_FIXUP_LIFEBOOK] = {
5300 .type = ALC_FIXUP_PINS,
5301 .v.pins = (const struct alc_pincfg[]) {
5302 { 0x1a, 0x2101103f }, /* dock line-out */
5303 { 0x1b, 0x23a11040 }, /* dock mic-in */
5304 { }
5305 },
5306 .chained = true,
5307 .chain_id = ALC269_FIXUP_QUANTA_MUTE
5308 },
Takashi Iwaia4297b52011-08-23 18:40:12 +02005309 [ALC269_FIXUP_AMIC] = {
5310 .type = ALC_FIXUP_PINS,
5311 .v.pins = (const struct alc_pincfg[]) {
5312 { 0x14, 0x99130110 }, /* speaker */
5313 { 0x15, 0x0121401f }, /* HP out */
5314 { 0x18, 0x01a19c20 }, /* mic */
5315 { 0x19, 0x99a3092f }, /* int-mic */
5316 { }
5317 },
5318 },
5319 [ALC269_FIXUP_DMIC] = {
5320 .type = ALC_FIXUP_PINS,
5321 .v.pins = (const struct alc_pincfg[]) {
5322 { 0x12, 0x99a3092f }, /* int-mic */
5323 { 0x14, 0x99130110 }, /* speaker */
5324 { 0x15, 0x0121401f }, /* HP out */
5325 { 0x18, 0x01a19c20 }, /* mic */
5326 { }
5327 },
5328 },
5329 [ALC269VB_FIXUP_AMIC] = {
5330 .type = ALC_FIXUP_PINS,
5331 .v.pins = (const struct alc_pincfg[]) {
5332 { 0x14, 0x99130110 }, /* speaker */
5333 { 0x18, 0x01a19c20 }, /* mic */
5334 { 0x19, 0x99a3092f }, /* int-mic */
5335 { 0x21, 0x0121401f }, /* HP out */
5336 { }
5337 },
5338 },
David Henningsson2267ea92012-01-03 08:45:56 +01005339 [ALC269VB_FIXUP_DMIC] = {
Takashi Iwaia4297b52011-08-23 18:40:12 +02005340 .type = ALC_FIXUP_PINS,
5341 .v.pins = (const struct alc_pincfg[]) {
5342 { 0x12, 0x99a3092f }, /* int-mic */
5343 { 0x14, 0x99130110 }, /* speaker */
5344 { 0x18, 0x01a19c20 }, /* mic */
5345 { 0x21, 0x0121401f }, /* HP out */
5346 { }
5347 },
5348 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005349};
5350
5351static const struct snd_pci_quirk alc269_fixup_tbl[] = {
Takashi Iwai017f2a12011-07-09 14:42:25 +02005352 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02005353 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
5354 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
5355 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
5356 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
5357 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005358 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
5359 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
5360 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
5361 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
5362 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
5363 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
Takashi Iwai24519912011-08-16 15:08:49 +02005364 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005365 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
5366 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
5367 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
5368 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
5369 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
Takashi Iwai24519912011-08-16 15:08:49 +02005370 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_QUANTA_MUTE),
Takashi Iwai017f2a12011-07-09 14:42:25 +02005371 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Lenovo Ideapd", ALC269_FIXUP_PCM_44K),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005372 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
Takashi Iwaia4297b52011-08-23 18:40:12 +02005373
5374#if 1
5375 /* Below is a quirk table taken from the old code.
5376 * Basically the device should work as is without the fixup table.
5377 * If BIOS doesn't give a proper info, enable the corresponding
5378 * fixup entry.
5379 */
5380 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
5381 ALC269_FIXUP_AMIC),
5382 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
Takashi Iwaia4297b52011-08-23 18:40:12 +02005383 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
5384 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
5385 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
5386 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
5387 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
5388 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
5389 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
5390 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
5391 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
5392 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
5393 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
5394 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
5395 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
5396 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
5397 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
5398 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
5399 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
5400 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
5401 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
5402 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
5403 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
5404 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
5405 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
5406 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
5407 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
5408 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
5409 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
5410 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
5411 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
5412 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
5413 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
5414 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
5415 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
5416 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
5417 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
5418 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
5419 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
5420 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
5421#endif
5422 {}
5423};
5424
5425static const struct alc_model_fixup alc269_fixup_models[] = {
5426 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
5427 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
Takashi Iwai1d045db2011-07-07 18:23:21 +02005428 {}
5429};
5430
5431
5432static int alc269_fill_coef(struct hda_codec *codec)
5433{
5434 int val;
5435
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005436 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005437 alc_write_coef_idx(codec, 0xf, 0x960b);
5438 alc_write_coef_idx(codec, 0xe, 0x8817);
5439 }
5440
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005441 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005442 alc_write_coef_idx(codec, 0xf, 0x960b);
5443 alc_write_coef_idx(codec, 0xe, 0x8814);
5444 }
5445
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005446 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005447 val = alc_read_coef_idx(codec, 0x04);
5448 /* Power up output pin */
5449 alc_write_coef_idx(codec, 0x04, val | (1<<11));
5450 }
5451
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005452 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005453 val = alc_read_coef_idx(codec, 0xd);
5454 if ((val & 0x0c00) >> 10 != 0x1) {
5455 /* Capless ramp up clock control */
5456 alc_write_coef_idx(codec, 0xd, val | (1<<10));
5457 }
5458 val = alc_read_coef_idx(codec, 0x17);
5459 if ((val & 0x01c0) >> 6 != 0x4) {
5460 /* Class D power on reset */
5461 alc_write_coef_idx(codec, 0x17, val | (1<<7));
5462 }
5463 }
5464
5465 val = alc_read_coef_idx(codec, 0xd); /* Class D */
5466 alc_write_coef_idx(codec, 0xd, val | (1<<14));
5467
5468 val = alc_read_coef_idx(codec, 0x4); /* HP */
5469 alc_write_coef_idx(codec, 0x4, val | (1<<11));
5470
5471 return 0;
5472}
5473
5474/*
5475 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005476static int patch_alc269(struct hda_codec *codec)
5477{
5478 struct alc_spec *spec;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005479 int err = 0;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005480
5481 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5482 if (spec == NULL)
5483 return -ENOMEM;
5484
5485 codec->spec = spec;
5486
5487 spec->mixer_nid = 0x0b;
5488
5489 alc_auto_parse_customize_define(codec);
5490
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005491 err = alc_codec_rename_from_preset(codec);
5492 if (err < 0)
5493 goto error;
5494
Takashi Iwai1d045db2011-07-07 18:23:21 +02005495 if (codec->vendor_id == 0x10ec0269) {
5496 spec->codec_variant = ALC269_TYPE_ALC269VA;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005497 switch (alc_get_coef0(codec) & 0x00f0) {
5498 case 0x0010:
Takashi Iwai1d045db2011-07-07 18:23:21 +02005499 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005500 spec->cdefine.platform_type == 1)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005501 err = alc_codec_rename(codec, "ALC271X");
Takashi Iwai1d045db2011-07-07 18:23:21 +02005502 spec->codec_variant = ALC269_TYPE_ALC269VB;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005503 break;
5504 case 0x0020:
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005505 if (codec->bus->pci->subsystem_vendor == 0x17aa &&
5506 codec->bus->pci->subsystem_device == 0x21f3)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005507 err = alc_codec_rename(codec, "ALC3202");
Takashi Iwai1d045db2011-07-07 18:23:21 +02005508 spec->codec_variant = ALC269_TYPE_ALC269VC;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005509 break;
5510 default:
Takashi Iwai1d045db2011-07-07 18:23:21 +02005511 alc_fix_pll_init(codec, 0x20, 0x04, 15);
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005512 }
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005513 if (err < 0)
5514 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005515 alc269_fill_coef(codec);
5516 }
5517
Takashi Iwaia4297b52011-08-23 18:40:12 +02005518 alc_pick_fixup(codec, alc269_fixup_models,
5519 alc269_fixup_tbl, alc269_fixups);
5520 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005521
Takashi Iwaia4297b52011-08-23 18:40:12 +02005522 /* automatic parse from the BIOS config */
5523 err = alc269_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005524 if (err < 0)
5525 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005526
Takashi Iwai60a6a842011-07-27 14:01:24 +02005527 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005528 alc_auto_fill_adc_caps(codec);
5529 alc_rebuild_imux_for_auto_mic(codec);
5530 alc_remove_invalid_adc_nids(codec);
5531 }
5532
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005533 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005534 set_capture_mixer(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005535
5536 if (!spec->no_analog && has_cdefine_beep(codec)) {
5537 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005538 if (err < 0)
5539 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005540 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005541 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005542
5543 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5544
Takashi Iwai1d045db2011-07-07 18:23:21 +02005545 codec->patch_ops = alc_patch_ops;
Takashi Iwai2a439522011-07-26 09:52:50 +02005546#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02005547 codec->patch_ops.resume = alc269_resume;
5548#endif
Takashi Iwaia4297b52011-08-23 18:40:12 +02005549 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005550 spec->shutup = alc269_shutup;
5551
Takashi Iwai1d045db2011-07-07 18:23:21 +02005552#ifdef CONFIG_SND_HDA_POWER_SAVE
5553 if (!spec->loopback.amplist)
5554 spec->loopback.amplist = alc269_loopbacks;
5555 if (alc269_mic2_for_mute_led(codec))
5556 codec->patch_ops.check_power_status = alc269_mic2_mute_check_ps;
5557#endif
5558
5559 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005560
5561 error:
5562 alc_free(codec);
5563 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005564}
5565
5566/*
5567 * ALC861
5568 */
5569
Takashi Iwai1d045db2011-07-07 18:23:21 +02005570static int alc861_parse_auto_config(struct hda_codec *codec)
5571{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005572 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005573 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
5574 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005575}
5576
Takashi Iwai1d045db2011-07-07 18:23:21 +02005577#ifdef CONFIG_SND_HDA_POWER_SAVE
5578static const struct hda_amp_list alc861_loopbacks[] = {
5579 { 0x15, HDA_INPUT, 0 },
5580 { 0x15, HDA_INPUT, 1 },
5581 { 0x15, HDA_INPUT, 2 },
5582 { 0x15, HDA_INPUT, 3 },
5583 { } /* end */
5584};
5585#endif
5586
5587
5588/* Pin config fixes */
5589enum {
5590 PINFIX_FSC_AMILO_PI1505,
Takashi Iwai3b25eb62012-01-25 09:55:46 +01005591 PINFIX_ASUS_A6RP,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005592};
5593
Takashi Iwai31150f22012-01-30 10:54:08 +01005594/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
5595static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
5596 const struct alc_fixup *fix, int action)
5597{
5598 struct alc_spec *spec = codec->spec;
5599 unsigned int val;
5600
5601 if (action != ALC_FIXUP_ACT_INIT)
5602 return;
5603 val = snd_hda_codec_read(codec, 0x0f, 0,
5604 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
5605 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
5606 val |= AC_PINCTL_IN_EN;
5607 val |= AC_PINCTL_VREF_50;
5608 snd_hda_codec_write(codec, 0x0f, 0,
5609 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
5610 spec->keep_vref_in_automute = 1;
5611}
5612
Takashi Iwai1d045db2011-07-07 18:23:21 +02005613static const struct alc_fixup alc861_fixups[] = {
5614 [PINFIX_FSC_AMILO_PI1505] = {
5615 .type = ALC_FIXUP_PINS,
5616 .v.pins = (const struct alc_pincfg[]) {
5617 { 0x0b, 0x0221101f }, /* HP */
5618 { 0x0f, 0x90170310 }, /* speaker */
5619 { }
5620 }
5621 },
Takashi Iwai3b25eb62012-01-25 09:55:46 +01005622 [PINFIX_ASUS_A6RP] = {
Takashi Iwai31150f22012-01-30 10:54:08 +01005623 .type = ALC_FIXUP_FUNC,
5624 .v.func = alc861_fixup_asus_amp_vref_0f,
Takashi Iwai3b25eb62012-01-25 09:55:46 +01005625 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005626};
5627
5628static const struct snd_pci_quirk alc861_fixup_tbl[] = {
Takashi Iwai31150f22012-01-30 10:54:08 +01005629 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", PINFIX_ASUS_A6RP),
Takashi Iwaib3a81522012-01-26 15:56:16 +01005630 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", PINFIX_ASUS_A6RP),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005631 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", PINFIX_FSC_AMILO_PI1505),
5632 {}
5633};
5634
5635/*
5636 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005637static int patch_alc861(struct hda_codec *codec)
5638{
5639 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005640 int err;
5641
5642 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5643 if (spec == NULL)
5644 return -ENOMEM;
5645
5646 codec->spec = spec;
5647
5648 spec->mixer_nid = 0x15;
5649
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005650 alc_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
5651 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005652
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005653 /* automatic parse from the BIOS config */
5654 err = alc861_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005655 if (err < 0)
5656 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005657
Takashi Iwai60a6a842011-07-27 14:01:24 +02005658 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005659 alc_auto_fill_adc_caps(codec);
5660 alc_rebuild_imux_for_auto_mic(codec);
5661 alc_remove_invalid_adc_nids(codec);
5662 }
5663
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005664 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005665 set_capture_mixer(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005666
5667 if (!spec->no_analog) {
5668 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005669 if (err < 0)
5670 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005671 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
5672 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005673
Takashi Iwai1d045db2011-07-07 18:23:21 +02005674 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5675
5676 codec->patch_ops = alc_patch_ops;
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005677 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005678#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005679 spec->power_hook = alc_power_eapd;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005680 if (!spec->loopback.amplist)
5681 spec->loopback.amplist = alc861_loopbacks;
5682#endif
5683
5684 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005685
5686 error:
5687 alc_free(codec);
5688 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005689}
5690
5691/*
5692 * ALC861-VD support
5693 *
5694 * Based on ALC882
5695 *
5696 * In addition, an independent DAC
5697 */
5698#ifdef CONFIG_SND_HDA_POWER_SAVE
5699#define alc861vd_loopbacks alc880_loopbacks
5700#endif
5701
Takashi Iwai1d045db2011-07-07 18:23:21 +02005702static int alc861vd_parse_auto_config(struct hda_codec *codec)
5703{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005704 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005705 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5706 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005707}
5708
Takashi Iwai1d045db2011-07-07 18:23:21 +02005709enum {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005710 ALC660VD_FIX_ASUS_GPIO1,
5711 ALC861VD_FIX_DALLAS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005712};
5713
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005714/* exclude VREF80 */
5715static void alc861vd_fixup_dallas(struct hda_codec *codec,
5716 const struct alc_fixup *fix, int action)
5717{
5718 if (action == ALC_FIXUP_ACT_PRE_PROBE) {
5719 snd_hda_override_pin_caps(codec, 0x18, 0x00001714);
5720 snd_hda_override_pin_caps(codec, 0x19, 0x0000171c);
5721 }
5722}
5723
Takashi Iwai1d045db2011-07-07 18:23:21 +02005724static const struct alc_fixup alc861vd_fixups[] = {
5725 [ALC660VD_FIX_ASUS_GPIO1] = {
5726 .type = ALC_FIXUP_VERBS,
5727 .v.verbs = (const struct hda_verb[]) {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005728 /* reset GPIO1 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005729 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5730 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
5731 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
5732 { }
5733 }
5734 },
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005735 [ALC861VD_FIX_DALLAS] = {
5736 .type = ALC_FIXUP_FUNC,
5737 .v.func = alc861vd_fixup_dallas,
5738 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005739};
5740
5741static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005742 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005743 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005744 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005745 {}
5746};
5747
5748static const struct hda_verb alc660vd_eapd_verbs[] = {
5749 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
5750 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
5751 { }
5752};
5753
5754/*
5755 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005756static int patch_alc861vd(struct hda_codec *codec)
5757{
5758 struct alc_spec *spec;
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005759 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005760
5761 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5762 if (spec == NULL)
5763 return -ENOMEM;
5764
5765 codec->spec = spec;
5766
5767 spec->mixer_nid = 0x0b;
5768
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005769 alc_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
5770 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005771
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005772 /* automatic parse from the BIOS config */
5773 err = alc861vd_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005774 if (err < 0)
5775 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005776
Takashi Iwai1d045db2011-07-07 18:23:21 +02005777 if (codec->vendor_id == 0x10ec0660) {
5778 /* always turn on EAPD */
5779 add_verb(spec, alc660vd_eapd_verbs);
5780 }
5781
Takashi Iwai60a6a842011-07-27 14:01:24 +02005782 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005783 alc_auto_fill_adc_caps(codec);
5784 alc_rebuild_imux_for_auto_mic(codec);
5785 alc_remove_invalid_adc_nids(codec);
5786 }
5787
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005788 if (!spec->no_analog && !spec->cap_mixer)
5789 set_capture_mixer(codec);
5790
5791 if (!spec->no_analog) {
5792 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005793 if (err < 0)
5794 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005795 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5796 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005797
Takashi Iwai1d045db2011-07-07 18:23:21 +02005798 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5799
5800 codec->patch_ops = alc_patch_ops;
5801
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005802 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005803 spec->shutup = alc_eapd_shutup;
5804#ifdef CONFIG_SND_HDA_POWER_SAVE
5805 if (!spec->loopback.amplist)
5806 spec->loopback.amplist = alc861vd_loopbacks;
5807#endif
5808
5809 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005810
5811 error:
5812 alc_free(codec);
5813 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005814}
5815
5816/*
5817 * ALC662 support
5818 *
5819 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
5820 * configuration. Each pin widget can choose any input DACs and a mixer.
5821 * Each ADC is connected from a mixer of all inputs. This makes possible
5822 * 6-channel independent captures.
5823 *
5824 * In addition, an independent DAC for the multi-playback (not used in this
5825 * driver yet).
5826 */
5827#ifdef CONFIG_SND_HDA_POWER_SAVE
5828#define alc662_loopbacks alc880_loopbacks
5829#endif
5830
5831/*
5832 * BIOS auto configuration
5833 */
5834
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005835static int alc662_parse_auto_config(struct hda_codec *codec)
5836{
Takashi Iwai4c6d72d2011-05-02 11:30:18 +02005837 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005838 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
5839 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5840 const hda_nid_t *ssids;
Takashi Iwaiee979a142008-09-02 15:42:20 +02005841
Kailang Yang6227cdc2010-02-25 08:36:52 +01005842 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
5843 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005844 ssids = alc663_ssids;
Kailang Yang6227cdc2010-02-25 08:36:52 +01005845 else
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005846 ssids = alc662_ssids;
5847 return alc_parse_auto_config(codec, alc662_ignore, ssids);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005848}
5849
Todd Broch6be79482010-12-07 16:51:05 -08005850static void alc272_fixup_mario(struct hda_codec *codec,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005851 const struct alc_fixup *fix, int action)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01005852{
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005853 if (action != ALC_FIXUP_ACT_PROBE)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01005854 return;
Todd Broch6be79482010-12-07 16:51:05 -08005855 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
5856 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
5857 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
5858 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5859 (0 << AC_AMPCAP_MUTE_SHIFT)))
5860 printk(KERN_WARNING
5861 "hda_codec: failed to override amp caps for NID 0x2\n");
5862}
5863
David Henningsson6cb3b702010-09-09 08:51:44 +02005864enum {
Daniel T Chen2df03512010-10-10 22:39:28 -04005865 ALC662_FIXUP_ASPIRE,
David Henningsson6cb3b702010-09-09 08:51:44 +02005866 ALC662_FIXUP_IDEAPAD,
Todd Broch6be79482010-12-07 16:51:05 -08005867 ALC272_FIXUP_MARIO,
Anisse Astierd2ebd472011-01-20 12:36:21 +01005868 ALC662_FIXUP_CZC_P10T,
David Henningsson94024cd2011-04-29 14:10:55 +02005869 ALC662_FIXUP_SKU_IGNORE,
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02005870 ALC662_FIXUP_HP_RP5800,
Takashi Iwai53c334a2011-08-23 18:27:14 +02005871 ALC662_FIXUP_ASUS_MODE1,
5872 ALC662_FIXUP_ASUS_MODE2,
5873 ALC662_FIXUP_ASUS_MODE3,
5874 ALC662_FIXUP_ASUS_MODE4,
5875 ALC662_FIXUP_ASUS_MODE5,
5876 ALC662_FIXUP_ASUS_MODE6,
5877 ALC662_FIXUP_ASUS_MODE7,
5878 ALC662_FIXUP_ASUS_MODE8,
David Henningsson6cb3b702010-09-09 08:51:44 +02005879};
5880
5881static const struct alc_fixup alc662_fixups[] = {
Daniel T Chen2df03512010-10-10 22:39:28 -04005882 [ALC662_FIXUP_ASPIRE] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005883 .type = ALC_FIXUP_PINS,
5884 .v.pins = (const struct alc_pincfg[]) {
Daniel T Chen2df03512010-10-10 22:39:28 -04005885 { 0x15, 0x99130112 }, /* subwoofer */
5886 { }
5887 }
5888 },
David Henningsson6cb3b702010-09-09 08:51:44 +02005889 [ALC662_FIXUP_IDEAPAD] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005890 .type = ALC_FIXUP_PINS,
5891 .v.pins = (const struct alc_pincfg[]) {
David Henningsson6cb3b702010-09-09 08:51:44 +02005892 { 0x17, 0x99130112 }, /* subwoofer */
5893 { }
5894 }
5895 },
Todd Broch6be79482010-12-07 16:51:05 -08005896 [ALC272_FIXUP_MARIO] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005897 .type = ALC_FIXUP_FUNC,
5898 .v.func = alc272_fixup_mario,
Anisse Astierd2ebd472011-01-20 12:36:21 +01005899 },
5900 [ALC662_FIXUP_CZC_P10T] = {
5901 .type = ALC_FIXUP_VERBS,
5902 .v.verbs = (const struct hda_verb[]) {
5903 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5904 {}
5905 }
5906 },
David Henningsson94024cd2011-04-29 14:10:55 +02005907 [ALC662_FIXUP_SKU_IGNORE] = {
5908 .type = ALC_FIXUP_SKU,
5909 .v.sku = ALC_FIXUP_SKU_IGNORE,
Takashi Iwaic6b35872011-03-28 12:05:31 +02005910 },
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02005911 [ALC662_FIXUP_HP_RP5800] = {
5912 .type = ALC_FIXUP_PINS,
5913 .v.pins = (const struct alc_pincfg[]) {
5914 { 0x14, 0x0221201f }, /* HP out */
5915 { }
5916 },
5917 .chained = true,
5918 .chain_id = ALC662_FIXUP_SKU_IGNORE
5919 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02005920 [ALC662_FIXUP_ASUS_MODE1] = {
5921 .type = ALC_FIXUP_PINS,
5922 .v.pins = (const struct alc_pincfg[]) {
5923 { 0x14, 0x99130110 }, /* speaker */
5924 { 0x18, 0x01a19c20 }, /* mic */
5925 { 0x19, 0x99a3092f }, /* int-mic */
5926 { 0x21, 0x0121401f }, /* HP out */
5927 { }
5928 },
5929 .chained = true,
5930 .chain_id = ALC662_FIXUP_SKU_IGNORE
5931 },
5932 [ALC662_FIXUP_ASUS_MODE2] = {
Takashi Iwai2996bdb2011-08-18 16:02:24 +02005933 .type = ALC_FIXUP_PINS,
5934 .v.pins = (const struct alc_pincfg[]) {
5935 { 0x14, 0x99130110 }, /* speaker */
5936 { 0x18, 0x01a19820 }, /* mic */
5937 { 0x19, 0x99a3092f }, /* int-mic */
5938 { 0x1b, 0x0121401f }, /* HP out */
5939 { }
5940 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02005941 .chained = true,
5942 .chain_id = ALC662_FIXUP_SKU_IGNORE
5943 },
5944 [ALC662_FIXUP_ASUS_MODE3] = {
5945 .type = ALC_FIXUP_PINS,
5946 .v.pins = (const struct alc_pincfg[]) {
5947 { 0x14, 0x99130110 }, /* speaker */
5948 { 0x15, 0x0121441f }, /* HP */
5949 { 0x18, 0x01a19840 }, /* mic */
5950 { 0x19, 0x99a3094f }, /* int-mic */
5951 { 0x21, 0x01211420 }, /* HP2 */
5952 { }
5953 },
5954 .chained = true,
5955 .chain_id = ALC662_FIXUP_SKU_IGNORE
5956 },
5957 [ALC662_FIXUP_ASUS_MODE4] = {
5958 .type = ALC_FIXUP_PINS,
5959 .v.pins = (const struct alc_pincfg[]) {
5960 { 0x14, 0x99130110 }, /* speaker */
5961 { 0x16, 0x99130111 }, /* speaker */
5962 { 0x18, 0x01a19840 }, /* mic */
5963 { 0x19, 0x99a3094f }, /* int-mic */
5964 { 0x21, 0x0121441f }, /* HP */
5965 { }
5966 },
5967 .chained = true,
5968 .chain_id = ALC662_FIXUP_SKU_IGNORE
5969 },
5970 [ALC662_FIXUP_ASUS_MODE5] = {
5971 .type = ALC_FIXUP_PINS,
5972 .v.pins = (const struct alc_pincfg[]) {
5973 { 0x14, 0x99130110 }, /* speaker */
5974 { 0x15, 0x0121441f }, /* HP */
5975 { 0x16, 0x99130111 }, /* speaker */
5976 { 0x18, 0x01a19840 }, /* mic */
5977 { 0x19, 0x99a3094f }, /* int-mic */
5978 { }
5979 },
5980 .chained = true,
5981 .chain_id = ALC662_FIXUP_SKU_IGNORE
5982 },
5983 [ALC662_FIXUP_ASUS_MODE6] = {
5984 .type = ALC_FIXUP_PINS,
5985 .v.pins = (const struct alc_pincfg[]) {
5986 { 0x14, 0x99130110 }, /* speaker */
5987 { 0x15, 0x01211420 }, /* HP2 */
5988 { 0x18, 0x01a19840 }, /* mic */
5989 { 0x19, 0x99a3094f }, /* int-mic */
5990 { 0x1b, 0x0121441f }, /* HP */
5991 { }
5992 },
5993 .chained = true,
5994 .chain_id = ALC662_FIXUP_SKU_IGNORE
5995 },
5996 [ALC662_FIXUP_ASUS_MODE7] = {
5997 .type = ALC_FIXUP_PINS,
5998 .v.pins = (const struct alc_pincfg[]) {
5999 { 0x14, 0x99130110 }, /* speaker */
6000 { 0x17, 0x99130111 }, /* speaker */
6001 { 0x18, 0x01a19840 }, /* mic */
6002 { 0x19, 0x99a3094f }, /* int-mic */
6003 { 0x1b, 0x01214020 }, /* HP */
6004 { 0x21, 0x0121401f }, /* HP */
6005 { }
6006 },
6007 .chained = true,
6008 .chain_id = ALC662_FIXUP_SKU_IGNORE
6009 },
6010 [ALC662_FIXUP_ASUS_MODE8] = {
6011 .type = ALC_FIXUP_PINS,
6012 .v.pins = (const struct alc_pincfg[]) {
6013 { 0x14, 0x99130110 }, /* speaker */
6014 { 0x12, 0x99a30970 }, /* int-mic */
6015 { 0x15, 0x01214020 }, /* HP */
6016 { 0x17, 0x99130111 }, /* speaker */
6017 { 0x18, 0x01a19840 }, /* mic */
6018 { 0x21, 0x0121401f }, /* HP */
6019 { }
6020 },
6021 .chained = true,
6022 .chain_id = ALC662_FIXUP_SKU_IGNORE
Takashi Iwai2996bdb2011-08-18 16:02:24 +02006023 },
David Henningsson6cb3b702010-09-09 08:51:44 +02006024};
6025
Takashi Iwaia9111322011-05-02 11:30:18 +02006026static const struct snd_pci_quirk alc662_fixup_tbl[] = {
Takashi Iwai53c334a2011-08-23 18:27:14 +02006027 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
David Henningssona6c47a82011-02-10 15:39:19 +01006028 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
David Henningsson94024cd2011-04-29 14:10:55 +02006029 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
Daniel T Chen2df03512010-10-10 22:39:28 -04006030 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02006031 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
Takashi Iwai53c334a2011-08-23 18:27:14 +02006032 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
Daniel T Chena0e90ac2010-11-20 10:20:35 -05006033 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
Valentine Sinitsynd4118582010-10-01 22:24:08 +06006034 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
David Henningsson6cb3b702010-09-09 08:51:44 +02006035 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
Anisse Astierd2ebd472011-01-20 12:36:21 +01006036 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
Takashi Iwai53c334a2011-08-23 18:27:14 +02006037
6038#if 0
6039 /* Below is a quirk table taken from the old code.
6040 * Basically the device should work as is without the fixup table.
6041 * If BIOS doesn't give a proper info, enable the corresponding
6042 * fixup entry.
6043 */
6044 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
6045 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
6046 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
6047 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
6048 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6049 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6050 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6051 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
6052 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
6053 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6054 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
6055 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
6056 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
6057 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
6058 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
6059 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6060 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
6061 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
6062 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6063 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6064 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6065 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6066 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
6067 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
6068 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
6069 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6070 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
6071 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6072 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6073 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
6074 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6075 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6076 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
6077 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
6078 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
6079 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
6080 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
6081 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
6082 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
6083 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6084 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
6085 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
6086 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6087 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
6088 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
6089 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
6090 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
6091 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
6092 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6093 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
6094#endif
David Henningsson6cb3b702010-09-09 08:51:44 +02006095 {}
6096};
6097
Todd Broch6be79482010-12-07 16:51:05 -08006098static const struct alc_model_fixup alc662_fixup_models[] = {
6099 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
Takashi Iwai53c334a2011-08-23 18:27:14 +02006100 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
6101 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
6102 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
6103 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
6104 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
6105 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
6106 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
6107 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
Todd Broch6be79482010-12-07 16:51:05 -08006108 {}
6109};
David Henningsson6cb3b702010-09-09 08:51:44 +02006110
6111
Takashi Iwai1d045db2011-07-07 18:23:21 +02006112/*
6113 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006114static int patch_alc662(struct hda_codec *codec)
6115{
6116 struct alc_spec *spec;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02006117 int err = 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006118
6119 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6120 if (!spec)
6121 return -ENOMEM;
6122
6123 codec->spec = spec;
6124
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02006125 spec->mixer_nid = 0x0b;
6126
Takashi Iwai53c334a2011-08-23 18:27:14 +02006127 /* handle multiple HPs as is */
6128 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
6129
Kailang Yangda00c242010-03-19 11:23:45 +01006130 alc_auto_parse_customize_define(codec);
6131
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02006132 alc_fix_pll_init(codec, 0x20, 0x04, 15);
6133
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006134 err = alc_codec_rename_from_preset(codec);
6135 if (err < 0)
6136 goto error;
6137
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006138 if ((alc_get_coef0(codec) & (1 << 14)) &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006139 codec->bus->pci->subsystem_vendor == 0x1025 &&
6140 spec->cdefine.platform_type == 1) {
6141 if (alc_codec_rename(codec, "ALC272X") < 0)
6142 goto error;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02006143 }
Kailang Yang274693f2009-12-03 10:07:50 +01006144
Takashi Iwaib9c51062011-08-24 18:08:07 +02006145 alc_pick_fixup(codec, alc662_fixup_models,
6146 alc662_fixup_tbl, alc662_fixups);
6147 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
6148 /* automatic parse from the BIOS config */
6149 err = alc662_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006150 if (err < 0)
6151 goto error;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006152
Takashi Iwai60a6a842011-07-27 14:01:24 +02006153 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02006154 alc_auto_fill_adc_caps(codec);
Takashi Iwai21268962011-07-07 15:01:13 +02006155 alc_rebuild_imux_for_auto_mic(codec);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02006156 alc_remove_invalid_adc_nids(codec);
Takashi Iwaidd704692009-08-11 08:45:11 +02006157 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006158
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006159 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwaib59bdf32009-08-11 09:47:30 +02006160 set_capture_mixer(codec);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01006161
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006162 if (!spec->no_analog && has_cdefine_beep(codec)) {
6163 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006164 if (err < 0)
6165 goto error;
Kailang Yangda00c242010-03-19 11:23:45 +01006166 switch (codec->vendor_id) {
6167 case 0x10ec0662:
6168 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
6169 break;
6170 case 0x10ec0272:
6171 case 0x10ec0663:
6172 case 0x10ec0665:
6173 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
6174 break;
6175 case 0x10ec0273:
6176 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
6177 break;
6178 }
Kailang Yangcec27c82010-02-04 14:18:18 +01006179 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01006180
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006181 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6182
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006183 codec->patch_ops = alc_patch_ops;
Takashi Iwaib9c51062011-08-24 18:08:07 +02006184 spec->init_hook = alc_auto_init_std;
Takashi Iwai1c7161532011-04-07 10:37:16 +02006185 spec->shutup = alc_eapd_shutup;
David Henningsson6cb3b702010-09-09 08:51:44 +02006186
Takashi Iwaicb53c622007-08-10 17:21:45 +02006187#ifdef CONFIG_SND_HDA_POWER_SAVE
6188 if (!spec->loopback.amplist)
6189 spec->loopback.amplist = alc662_loopbacks;
6190#endif
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006191
6192 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006193
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006194 error:
6195 alc_free(codec);
6196 return err;
Kailang Yangb478b992011-05-18 11:51:15 +02006197}
6198
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006199/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006200 * ALC680 support
6201 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006202
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006203static int alc680_parse_auto_config(struct hda_codec *codec)
6204{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006205 return alc_parse_auto_config(codec, NULL, NULL);
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006206}
6207
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006208/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006209 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006210static int patch_alc680(struct hda_codec *codec)
6211{
6212 struct alc_spec *spec;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006213 int err;
6214
6215 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6216 if (spec == NULL)
6217 return -ENOMEM;
6218
6219 codec->spec = spec;
6220
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02006221 /* ALC680 has no aa-loopback mixer */
6222
Takashi Iwai1ebec5f2011-08-15 13:21:48 +02006223 /* automatic parse from the BIOS config */
6224 err = alc680_parse_auto_config(codec);
6225 if (err < 0) {
6226 alc_free(codec);
6227 return err;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006228 }
6229
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006230 if (!spec->no_analog && !spec->cap_mixer)
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006231 set_capture_mixer(codec);
6232
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006233 codec->patch_ops = alc_patch_ops;
Takashi Iwai1ebec5f2011-08-15 13:21:48 +02006234 spec->init_hook = alc_auto_init_std;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006235
6236 return 0;
6237}
6238
6239/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240 * patch entries
6241 */
Takashi Iwaia9111322011-05-02 11:30:18 +02006242static const struct hda_codec_preset snd_hda_preset_realtek[] = {
Kailang Yang296f0332011-05-18 11:52:36 +02006243 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
Kailang Yangdf694da2005-12-05 19:42:22 +01006245 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
Kailang Yangf6a92242007-12-13 16:52:54 +01006246 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
Kailang Yanga361d842007-06-05 12:30:55 +02006247 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
Kailang Yangf6a92242007-12-13 16:52:54 +01006248 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01006249 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
Kailang Yang01afd412008-10-15 11:22:09 +02006250 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01006251 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
Kailang Yang296f0332011-05-18 11:52:36 +02006252 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01006253 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006254 .patch = patch_alc861 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01006255 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
6256 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
6257 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006258 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
Takashi Iwai4953550a2009-06-30 15:28:30 +02006259 .patch = patch_alc882 },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006260 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
6261 .patch = patch_alc662 },
David Henningssoncc667a72011-10-18 14:07:51 +02006262 { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
6263 .patch = patch_alc662 },
Kailang Yang6dda9f42008-05-27 12:05:31 +02006264 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
Kailang Yangcec27c82010-02-04 14:18:18 +01006265 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
Kailang Yang6227cdc2010-02-25 08:36:52 +01006266 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006267 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01006268 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02006270 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
Clive Messer669faba2008-09-30 15:49:13 +02006271 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02006272 .patch = patch_alc882 },
Takashi Iwaicb308f92008-04-16 14:13:29 +02006273 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02006274 .patch = patch_alc882 },
Kailang Yangdf694da2005-12-05 19:42:22 +01006275 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006276 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
Kailang Yang44426082008-10-15 11:18:05 +02006277 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
Takashi Iwai4953550a2009-06-30 15:28:30 +02006278 .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006279 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02006280 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
Kailang Yang274693f2009-12-03 10:07:50 +01006281 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006282 { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283 {} /* terminator */
6284};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01006285
6286MODULE_ALIAS("snd-hda-codec-id:10ec*");
6287
6288MODULE_LICENSE("GPL");
6289MODULE_DESCRIPTION("Realtek HD-audio codec");
6290
6291static struct hda_codec_preset_list realtek_list = {
6292 .preset = snd_hda_preset_realtek,
6293 .owner = THIS_MODULE,
6294};
6295
6296static int __init patch_realtek_init(void)
6297{
6298 return snd_hda_add_codec_preset(&realtek_list);
6299}
6300
6301static void __exit patch_realtek_exit(void)
6302{
6303 snd_hda_delete_codec_preset(&realtek_list);
6304}
6305
6306module_init(patch_realtek_init)
6307module_exit(patch_realtek_exit)