blob: 4fab23f4740272052db96529413595bff0d0f657 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
Takashi Iwai1d045db2011-07-07 18:23:21 +02004 * HD audio interface patch for Realtek ALC codecs
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Kailang Yangdf694da2005-12-05 19:42:22 +01006 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7 * PeiSen Hou <pshou@realtek.com.tw>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Takashi Iwai <tiwai@suse.de>
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01009 * Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This driver is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This driver is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/delay.h>
28#include <linux/slab.h>
29#include <linux/pci.h>
30#include <sound/core.h>
Kailang Yang9ad0e492010-09-14 23:22:00 +020031#include <sound/jack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "hda_codec.h"
33#include "hda_local.h"
Kusanagi Kouichi680cd532009-02-05 00:00:58 +090034#include "hda_beep.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Takashi Iwai1d045db2011-07-07 18:23:21 +020036/* unsol event tags */
37#define ALC_FRONT_EVENT 0x01
38#define ALC_DCVOL_EVENT 0x02
39#define ALC_HP_EVENT 0x04
40#define ALC_MIC_EVENT 0x08
Takashi Iwaid4a86d82010-06-23 17:51:26 +020041
Kailang Yangdf694da2005-12-05 19:42:22 +010042/* for GPIO Poll */
43#define GPIO_MASK 0x03
44
Takashi Iwai4a79ba32009-04-22 16:31:35 +020045/* extra amp-initialization sequence types */
46enum {
47 ALC_INIT_NONE,
48 ALC_INIT_DEFAULT,
49 ALC_INIT_GPIO1,
50 ALC_INIT_GPIO2,
51 ALC_INIT_GPIO3,
52};
53
Kailang Yangda00c242010-03-19 11:23:45 +010054struct alc_customize_define {
55 unsigned int sku_cfg;
56 unsigned char port_connectivity;
57 unsigned char check_sum;
58 unsigned char customization;
59 unsigned char external_amp;
60 unsigned int enable_pcbeep:1;
61 unsigned int platform_type:1;
62 unsigned int swap:1;
63 unsigned int override:1;
David Henningsson90622912010-10-14 14:50:18 +020064 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
Kailang Yangda00c242010-03-19 11:23:45 +010065};
66
Takashi Iwaib5bfbc62011-01-13 14:22:32 +010067struct alc_fixup;
68
Takashi Iwaice764ab2011-04-27 16:35:23 +020069struct alc_multi_io {
70 hda_nid_t pin; /* multi-io widget pin NID */
71 hda_nid_t dac; /* DAC to be connected */
72 unsigned int ctl_in; /* cached input-pin control value */
73};
74
Takashi Iwaid922b512011-04-28 12:18:53 +020075enum {
Takashi Iwai3b8510c2011-04-28 14:03:24 +020076 ALC_AUTOMUTE_PIN, /* change the pin control */
77 ALC_AUTOMUTE_AMP, /* mute/unmute the pin AMP */
78 ALC_AUTOMUTE_MIXER, /* mute/unmute mixer widget AMP */
Takashi Iwaid922b512011-04-28 12:18:53 +020079};
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081struct alc_spec {
82 /* codec parameterization */
Takashi Iwaia9111322011-05-02 11:30:18 +020083 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 unsigned int num_mixers;
Takashi Iwaia9111322011-05-02 11:30:18 +020085 const struct snd_kcontrol_new *cap_mixer; /* capture mixer */
Takashi Iwai45bdd1c2009-02-06 16:11:25 +010086 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Takashi Iwai2d9c6482009-10-13 08:06:55 +020088 const struct hda_verb *init_verbs[10]; /* initialization verbs
Takashi Iwai9c7f8522006-06-28 15:08:22 +020089 * don't forget NULL
90 * termination!
Takashi Iwaie9edcee2005-06-13 14:16:38 +020091 */
92 unsigned int num_init_verbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Takashi Iwaiaa563af2009-07-31 10:05:11 +020094 char stream_name_analog[32]; /* analog PCM stream */
Takashi Iwaia9111322011-05-02 11:30:18 +020095 const struct hda_pcm_stream *stream_analog_playback;
96 const struct hda_pcm_stream *stream_analog_capture;
97 const struct hda_pcm_stream *stream_analog_alt_playback;
98 const struct hda_pcm_stream *stream_analog_alt_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Takashi Iwaiaa563af2009-07-31 10:05:11 +0200100 char stream_name_digital[32]; /* digital PCM stream */
Takashi Iwaia9111322011-05-02 11:30:18 +0200101 const struct hda_pcm_stream *stream_digital_playback;
102 const struct hda_pcm_stream *stream_digital_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 /* playback */
Takashi Iwai16ded522005-06-10 19:58:24 +0200105 struct hda_multi_out multiout; /* playback set-up
106 * max_channels, dacs must be set
107 * dig_out_nid and hp_nid are optional
108 */
Takashi Iwai63300792008-01-24 15:31:36 +0100109 hda_nid_t alt_dac_nid;
Takashi Iwai6a05ac42009-02-13 11:19:09 +0100110 hda_nid_t slave_dig_outs[3]; /* optional - for auto-parsing */
Takashi Iwai8c441982009-01-20 18:30:20 +0100111 int dig_out_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 /* capture */
114 unsigned int num_adc_nids;
Takashi Iwai4c6d72d2011-05-02 11:30:18 +0200115 const hda_nid_t *adc_nids;
116 const hda_nid_t *capsrc_nids;
Takashi Iwai16ded522005-06-10 19:58:24 +0200117 hda_nid_t dig_in_nid; /* digital-in NID; optional */
Takashi Iwai1f0f4b82011-06-27 10:52:59 +0200118 hda_nid_t mixer_nid; /* analog-mixer NID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Takashi Iwai840b64c2010-07-13 22:49:01 +0200120 /* capture setup for dynamic dual-adc switch */
Takashi Iwai840b64c2010-07-13 22:49:01 +0200121 hda_nid_t cur_adc;
122 unsigned int cur_adc_stream_tag;
123 unsigned int cur_adc_format;
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 /* capture source */
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200126 unsigned int num_mux_defs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 const struct hda_input_mux *input_mux;
128 unsigned int cur_mux[3];
Takashi Iwai21268962011-07-07 15:01:13 +0200129 hda_nid_t ext_mic_pin;
130 hda_nid_t dock_mic_pin;
131 hda_nid_t int_mic_pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 /* channel model */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100134 const struct hda_channel_mode *channel_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 int num_channel_mode;
Takashi Iwai4e195a72006-07-28 14:47:34 +0200136 int need_dac_fix;
Hector Martin3b315d72009-06-02 10:54:19 +0200137 int const_channel_count;
138 int ext_channel_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 /* PCM information */
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100141 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
Takashi Iwai41e41f12005-06-08 14:48:49 +0200142
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200143 /* dynamic controls, init_verbs and input_mux */
144 struct auto_pin_cfg autocfg;
Kailang Yangda00c242010-03-19 11:23:45 +0100145 struct alc_customize_define cdefine;
Takashi Iwai603c4012008-07-30 15:01:44 +0200146 struct snd_array kctls;
Herton Ronaldo Krzesinski61b9b9b2009-01-28 09:16:33 -0200147 struct hda_input_mux private_imux[3];
Takashi Iwai41923e42007-10-22 17:20:10 +0200148 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwai49535502009-06-30 15:28:30 +0200149 hda_nid_t private_adc_nids[AUTO_CFG_MAX_OUTS];
150 hda_nid_t private_capsrc_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwai21268962011-07-07 15:01:13 +0200151 hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS];
152 unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS];
153 int int_mic_idx, ext_mic_idx, dock_mic_idx; /* for auto-mic */
Takashi Iwai834be882006-03-01 14:16:17 +0100154
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100155 /* hooks */
156 void (*init_hook)(struct hda_codec *codec);
157 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
Hector Martinf5de24b2009-12-20 22:51:31 +0100158#ifdef CONFIG_SND_HDA_POWER_SAVE
Daniel T Chenc97259d2009-12-27 18:52:08 -0500159 void (*power_hook)(struct hda_codec *codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100160#endif
Takashi Iwai1c716152011-04-07 10:37:16 +0200161 void (*shutup)(struct hda_codec *codec);
Takashi Iwai24519912011-08-16 15:08:49 +0200162 void (*automute_hook)(struct hda_codec *codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100163
Takashi Iwai834be882006-03-01 14:16:17 +0100164 /* for pin sensing */
David Henningsson42cf0d02011-09-20 12:04:56 +0200165 unsigned int hp_jack_present:1;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200166 unsigned int line_jack_present:1;
Takashi Iwaie9427962011-04-28 15:46:07 +0200167 unsigned int master_mute:1;
Takashi Iwai6c819492009-08-10 18:47:44 +0200168 unsigned int auto_mic:1;
Takashi Iwai21268962011-07-07 15:01:13 +0200169 unsigned int auto_mic_valid_imux:1; /* valid imux for auto-mic */
David Henningsson42cf0d02011-09-20 12:04:56 +0200170 unsigned int automute_speaker:1; /* automute speaker outputs */
171 unsigned int automute_lo:1; /* automute LO outputs */
172 unsigned int detect_hp:1; /* Headphone detection enabled */
173 unsigned int detect_lo:1; /* Line-out detection enabled */
174 unsigned int automute_speaker_possible:1; /* there are speakers and either LO or HP */
175 unsigned int automute_lo_possible:1; /* there are line outs and HP */
Takashi Iwaicb53c622007-08-10 17:21:45 +0200176
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100177 /* other flags */
178 unsigned int no_analog :1; /* digital I/O only */
Takashi Iwai21268962011-07-07 15:01:13 +0200179 unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */
Takashi Iwai584c0c42011-03-10 12:51:11 +0100180 unsigned int single_input_src:1;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +0200181 unsigned int vol_in_capsrc:1; /* use capsrc volume (ADC has no vol) */
Takashi Iwai53c334a2011-08-23 18:27:14 +0200182 unsigned int parse_flags; /* passed to snd_hda_parse_pin_defcfg() */
Takashi Iwaid922b512011-04-28 12:18:53 +0200183
184 /* auto-mute control */
185 int automute_mode;
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200186 hda_nid_t automute_mixer_nid[AUTO_CFG_MAX_OUTS];
Takashi Iwaid922b512011-04-28 12:18:53 +0200187
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200188 int init_amp;
Takashi Iwaid433a672010-09-20 15:11:54 +0200189 int codec_variant; /* flag for other variants */
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100190
Takashi Iwai2134ea42008-01-10 16:53:55 +0100191 /* for virtual master */
192 hda_nid_t vmaster_nid;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200193#ifdef CONFIG_SND_HDA_POWER_SAVE
194 struct hda_loopback_check loopback;
195#endif
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200196
197 /* for PLL fix */
198 hda_nid_t pll_nid;
199 unsigned int pll_coef_idx, pll_coef_bit;
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200200 unsigned int coef0;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +0100201
202 /* fix-up list */
203 int fixup_id;
204 const struct alc_fixup *fixup_list;
205 const char *fixup_name;
Takashi Iwaice764ab2011-04-27 16:35:23 +0200206
207 /* multi-io */
208 int multi_ios;
209 struct alc_multi_io multi_io[4];
Takashi Iwai23c09b02011-08-19 09:05:35 +0200210
211 /* bind volumes */
212 struct snd_array bind_ctls;
Kailang Yangdf694da2005-12-05 19:42:22 +0100213};
214
Takashi Iwai1d045db2011-07-07 18:23:21 +0200215#define ALC_MODEL_AUTO 0 /* common for all chips */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Takashi Iwai44c02402011-07-08 15:14:19 +0200217static bool check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
218 int dir, unsigned int bits)
219{
220 if (!nid)
221 return false;
222 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
223 if (query_amp_caps(codec, nid, dir) & bits)
224 return true;
225 return false;
226}
227
228#define nid_has_mute(codec, nid, dir) \
229 check_amp_caps(codec, nid, dir, AC_AMPCAP_MUTE)
230#define nid_has_volume(codec, nid, dir) \
231 check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS)
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233/*
234 * input MUX handling
235 */
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200236static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
237 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
240 struct alc_spec *spec = codec->spec;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200241 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
242 if (mux_idx >= spec->num_mux_defs)
243 mux_idx = 0;
Takashi Iwai53111142010-03-08 12:13:07 +0100244 if (!spec->input_mux[mux_idx].num_items && mux_idx > 0)
245 mux_idx = 0;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200246 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200249static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
250 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
252 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
253 struct alc_spec *spec = codec->spec;
254 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
255
256 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
257 return 0;
258}
259
Takashi Iwai21268962011-07-07 15:01:13 +0200260static bool alc_dyn_adc_pcm_resetup(struct hda_codec *codec, int cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Takashi Iwai21268962011-07-07 15:01:13 +0200262 struct alc_spec *spec = codec->spec;
263 hda_nid_t new_adc = spec->adc_nids[spec->dyn_adc_idx[cur]];
264
265 if (spec->cur_adc && spec->cur_adc != new_adc) {
266 /* stream is running, let's swap the current ADC */
267 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
268 spec->cur_adc = new_adc;
269 snd_hda_codec_setup_stream(codec, new_adc,
270 spec->cur_adc_stream_tag, 0,
271 spec->cur_adc_format);
272 return true;
273 }
274 return false;
275}
276
277/* select the given imux item; either unmute exclusively or select the route */
278static int alc_mux_select(struct hda_codec *codec, unsigned int adc_idx,
279 unsigned int idx, bool force)
280{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 struct alc_spec *spec = codec->spec;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100282 const struct hda_input_mux *imux;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100283 unsigned int mux_idx;
Takashi Iwai21268962011-07-07 15:01:13 +0200284 int i, type;
285 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Takashi Iwaicd896c32008-11-18 12:36:33 +0100287 mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
288 imux = &spec->input_mux[mux_idx];
Takashi Iwai53111142010-03-08 12:13:07 +0100289 if (!imux->num_items && mux_idx > 0)
290 imux = &spec->input_mux[0];
Takashi Iwaicd896c32008-11-18 12:36:33 +0100291
Takashi Iwai21268962011-07-07 15:01:13 +0200292 if (idx >= imux->num_items)
293 idx = imux->num_items - 1;
294 if (spec->cur_mux[adc_idx] == idx && !force)
295 return 0;
296 spec->cur_mux[adc_idx] = idx;
297
298 if (spec->dyn_adc_switch) {
299 alc_dyn_adc_pcm_resetup(codec, idx);
300 adc_idx = spec->dyn_adc_idx[idx];
301 }
302
303 nid = spec->capsrc_nids ?
304 spec->capsrc_nids[adc_idx] : spec->adc_nids[adc_idx];
305
306 /* no selection? */
307 if (snd_hda_get_conn_list(codec, nid, NULL) <= 1)
308 return 1;
309
Takashi Iwaia22d5432009-07-27 12:54:26 +0200310 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwai0169b6b2009-06-22 10:50:19 +0200311 if (type == AC_WID_AUD_MIX) {
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100312 /* Matrix-mixer style (e.g. ALC882) */
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100313 for (i = 0; i < imux->num_items; i++) {
314 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
315 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
316 imux->items[i].index,
317 HDA_AMP_MUTE, v);
318 }
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100319 } else {
320 /* MUX style (e.g. ALC880) */
Takashi Iwai21268962011-07-07 15:01:13 +0200321 snd_hda_codec_write_cache(codec, nid, 0,
322 AC_VERB_SET_CONNECT_SEL,
323 imux->items[idx].index);
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100324 }
Takashi Iwai21268962011-07-07 15:01:13 +0200325 return 1;
326}
327
328static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
329 struct snd_ctl_elem_value *ucontrol)
330{
331 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
332 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
333 return alc_mux_select(codec, adc_idx,
334 ucontrol->value.enumerated.item[0], false);
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100335}
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337/*
Takashi Iwai23f0c042009-02-26 13:03:58 +0100338 * set up the input pin config (depending on the given auto-pin type)
339 */
340static void alc_set_input_pin(struct hda_codec *codec, hda_nid_t nid,
341 int auto_pin_type)
342{
343 unsigned int val = PIN_IN;
344
Takashi Iwai86e29592010-09-09 14:50:17 +0200345 if (auto_pin_type == AUTO_PIN_MIC) {
Takashi Iwai23f0c042009-02-26 13:03:58 +0100346 unsigned int pincap;
Takashi Iwai954a29c2010-07-30 10:55:44 +0200347 unsigned int oldval;
348 oldval = snd_hda_codec_read(codec, nid, 0,
349 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
Takashi Iwai1327a322009-03-23 13:07:47 +0100350 pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwai23f0c042009-02-26 13:03:58 +0100351 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
Takashi Iwai954a29c2010-07-30 10:55:44 +0200352 /* if the default pin setup is vref50, we give it priority */
353 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
Takashi Iwai23f0c042009-02-26 13:03:58 +0100354 val = PIN_VREF80;
Takashi Iwai461c6c32009-05-25 08:06:02 +0200355 else if (pincap & AC_PINCAP_VREF_50)
356 val = PIN_VREF50;
357 else if (pincap & AC_PINCAP_VREF_100)
358 val = PIN_VREF100;
359 else if (pincap & AC_PINCAP_VREF_GRD)
360 val = PIN_VREFGRD;
Takashi Iwai23f0c042009-02-26 13:03:58 +0100361 }
362 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, val);
363}
364
365/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200366 * Append the given mixer and verb elements for the later use
367 * The mixer array is referred in build_controls(), and init_verbs are
368 * called in init().
Takashi Iwaid88897e2008-10-31 15:01:37 +0100369 */
Takashi Iwaia9111322011-05-02 11:30:18 +0200370static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
Takashi Iwaid88897e2008-10-31 15:01:37 +0100371{
372 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
373 return;
374 spec->mixers[spec->num_mixers++] = mix;
375}
376
377static void add_verb(struct alc_spec *spec, const struct hda_verb *verb)
378{
379 if (snd_BUG_ON(spec->num_init_verbs >= ARRAY_SIZE(spec->init_verbs)))
380 return;
381 spec->init_verbs[spec->num_init_verbs++] = verb;
382}
383
384/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200385 * GPIO setup tables, used in initialization
Kailang Yangdf694da2005-12-05 19:42:22 +0100386 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200387/* Enable GPIO mask and set output */
Takashi Iwaia9111322011-05-02 11:30:18 +0200388static const struct hda_verb alc_gpio1_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200389 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
390 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
391 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
392 { }
393};
394
Takashi Iwaia9111322011-05-02 11:30:18 +0200395static const struct hda_verb alc_gpio2_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200396 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
397 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
398 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
399 { }
400};
401
Takashi Iwaia9111322011-05-02 11:30:18 +0200402static const struct hda_verb alc_gpio3_init_verbs[] = {
Kailang Yangbdd148a2007-05-08 15:19:08 +0200403 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
404 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
405 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
406 { }
407};
408
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200409/*
410 * Fix hardware PLL issue
411 * On some codecs, the analog PLL gating control must be off while
412 * the default value is 1.
413 */
414static void alc_fix_pll(struct hda_codec *codec)
415{
416 struct alc_spec *spec = codec->spec;
417 unsigned int val;
418
419 if (!spec->pll_nid)
420 return;
421 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
422 spec->pll_coef_idx);
423 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
424 AC_VERB_GET_PROC_COEF, 0);
425 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
426 spec->pll_coef_idx);
427 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
428 val & ~(1 << spec->pll_coef_bit));
429}
430
431static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
432 unsigned int coef_idx, unsigned int coef_bit)
433{
434 struct alc_spec *spec = codec->spec;
435 spec->pll_nid = nid;
436 spec->pll_coef_idx = coef_idx;
437 spec->pll_coef_bit = coef_bit;
438 alc_fix_pll(codec);
439}
440
Takashi Iwai1d045db2011-07-07 18:23:21 +0200441/*
442 * Jack-reporting via input-jack layer
443 */
444
445/* initialization of jacks; currently checks only a few known pins */
Kailang Yang9ad0e492010-09-14 23:22:00 +0200446static int alc_init_jacks(struct hda_codec *codec)
447{
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100448#ifdef CONFIG_SND_HDA_INPUT_JACK
Kailang Yang9ad0e492010-09-14 23:22:00 +0200449 struct alc_spec *spec = codec->spec;
450 int err;
451 unsigned int hp_nid = spec->autocfg.hp_pins[0];
Takashi Iwai21268962011-07-07 15:01:13 +0200452 unsigned int mic_nid = spec->ext_mic_pin;
453 unsigned int dock_nid = spec->dock_mic_pin;
Kailang Yang9ad0e492010-09-14 23:22:00 +0200454
Takashi Iwai265a0242010-09-21 11:26:21 +0200455 if (hp_nid) {
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100456 err = snd_hda_input_jack_add(codec, hp_nid,
457 SND_JACK_HEADPHONE, NULL);
Takashi Iwai265a0242010-09-21 11:26:21 +0200458 if (err < 0)
459 return err;
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100460 snd_hda_input_jack_report(codec, hp_nid);
Takashi Iwai265a0242010-09-21 11:26:21 +0200461 }
Kailang Yang9ad0e492010-09-14 23:22:00 +0200462
Takashi Iwai265a0242010-09-21 11:26:21 +0200463 if (mic_nid) {
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100464 err = snd_hda_input_jack_add(codec, mic_nid,
465 SND_JACK_MICROPHONE, NULL);
Takashi Iwai265a0242010-09-21 11:26:21 +0200466 if (err < 0)
467 return err;
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100468 snd_hda_input_jack_report(codec, mic_nid);
Takashi Iwai265a0242010-09-21 11:26:21 +0200469 }
Takashi Iwai8ed99d92011-05-17 12:05:02 +0200470 if (dock_nid) {
471 err = snd_hda_input_jack_add(codec, dock_nid,
472 SND_JACK_MICROPHONE, NULL);
473 if (err < 0)
474 return err;
475 snd_hda_input_jack_report(codec, dock_nid);
476 }
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100477#endif /* CONFIG_SND_HDA_INPUT_JACK */
Kailang Yang9ad0e492010-09-14 23:22:00 +0200478 return 0;
479}
Kailang Yang9ad0e492010-09-14 23:22:00 +0200480
Takashi Iwai1d045db2011-07-07 18:23:21 +0200481/*
482 * Jack detections for HP auto-mute and mic-switch
483 */
484
485/* check each pin in the given array; returns true if any of them is plugged */
486static bool detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins)
Kailang Yangc9b58002007-10-16 14:30:01 +0200487{
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200488 int i, present = 0;
Kailang Yangc9b58002007-10-16 14:30:01 +0200489
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200490 for (i = 0; i < num_pins; i++) {
491 hda_nid_t nid = pins[i];
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200492 if (!nid)
493 break;
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100494 snd_hda_input_jack_report(codec, nid);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200495 present |= snd_hda_jack_detect(codec, nid);
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200496 }
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200497 return present;
498}
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200499
Takashi Iwai1d045db2011-07-07 18:23:21 +0200500/* standard HP/line-out auto-mute helper */
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200501static void do_automute(struct hda_codec *codec, int num_pins, hda_nid_t *pins,
Takashi Iwaie9427962011-04-28 15:46:07 +0200502 bool mute, bool hp_out)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200503{
504 struct alc_spec *spec = codec->spec;
505 unsigned int mute_bits = mute ? HDA_AMP_MUTE : 0;
Takashi Iwaie9427962011-04-28 15:46:07 +0200506 unsigned int pin_bits = mute ? 0 : (hp_out ? PIN_HP : PIN_OUT);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200507 int i;
508
509 for (i = 0; i < num_pins; i++) {
510 hda_nid_t nid = pins[i];
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200511 if (!nid)
512 break;
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200513 switch (spec->automute_mode) {
514 case ALC_AUTOMUTE_PIN:
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200515 snd_hda_codec_write(codec, nid, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200516 AC_VERB_SET_PIN_WIDGET_CONTROL,
517 pin_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200518 break;
519 case ALC_AUTOMUTE_AMP:
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200520 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200521 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200522 break;
523 case ALC_AUTOMUTE_MIXER:
524 nid = spec->automute_mixer_nid[i];
525 if (!nid)
526 break;
527 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200528 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200529 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 1,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200530 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200531 break;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200532 }
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200533 }
Kailang Yangc9b58002007-10-16 14:30:01 +0200534}
535
David Henningsson42cf0d02011-09-20 12:04:56 +0200536/* Toggle outputs muting */
537static void update_outputs(struct hda_codec *codec)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200538{
539 struct alc_spec *spec = codec->spec;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200540 int on;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200541
Takashi Iwaic0a20262011-06-10 15:28:15 +0200542 /* Control HP pins/amps depending on master_mute state;
543 * in general, HP pins/amps control should be enabled in all cases,
544 * but currently set only for master_mute, just to be safe
545 */
546 do_automute(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
547 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);
Takashi Iwai6c819492009-08-10 18:47:44 +0200633
Takashi Iwai21268962011-07-07 15:01:13 +0200634 snd_hda_input_jack_report(codec, pins[spec->ext_mic_idx]);
635 if (spec->dock_mic_idx >= 0)
636 snd_hda_input_jack_report(codec, pins[spec->dock_mic_idx]);
Kailang Yang7fb0d782008-10-15 11:12:35 +0200637}
638
Kailang Yangc9b58002007-10-16 14:30:01 +0200639/* unsolicited event for HP jack sensing */
640static void alc_sku_unsol_event(struct hda_codec *codec, unsigned int res)
641{
642 if (codec->vendor_id == 0x10ec0880)
643 res >>= 28;
644 else
645 res >>= 26;
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200646 switch (res) {
Takashi Iwai1d045db2011-07-07 18:23:21 +0200647 case ALC_HP_EVENT:
Takashi Iwaid922b512011-04-28 12:18:53 +0200648 alc_hp_automute(codec);
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200649 break;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200650 case ALC_FRONT_EVENT:
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200651 alc_line_automute(codec);
652 break;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200653 case ALC_MIC_EVENT:
Kailang Yang7fb0d782008-10-15 11:12:35 +0200654 alc_mic_automute(codec);
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200655 break;
656 }
Kailang Yang7fb0d782008-10-15 11:12:35 +0200657}
658
Takashi Iwai1d045db2011-07-07 18:23:21 +0200659/* call init functions of standard auto-mute helpers */
Kailang Yang7fb0d782008-10-15 11:12:35 +0200660static void alc_inithook(struct hda_codec *codec)
661{
Takashi Iwaid922b512011-04-28 12:18:53 +0200662 alc_hp_automute(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200663 alc_line_automute(codec);
Kailang Yang7fb0d782008-10-15 11:12:35 +0200664 alc_mic_automute(codec);
Kailang Yangc9b58002007-10-16 14:30:01 +0200665}
666
Kailang Yangf9423e72008-05-27 12:32:25 +0200667/* additional initialization for ALC888 variants */
668static void alc888_coef_init(struct hda_codec *codec)
669{
670 unsigned int tmp;
671
672 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
673 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
674 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
Takashi Iwai37db6232009-03-05 09:40:16 +0100675 if ((tmp & 0xf0) == 0x20)
Kailang Yangf9423e72008-05-27 12:32:25 +0200676 /* alc888S-VC */
677 snd_hda_codec_read(codec, 0x20, 0,
678 AC_VERB_SET_PROC_COEF, 0x830);
679 else
680 /* alc888-VB */
681 snd_hda_codec_read(codec, 0x20, 0,
682 AC_VERB_SET_PROC_COEF, 0x3030);
683}
684
Takashi Iwai1d045db2011-07-07 18:23:21 +0200685/* additional initialization for ALC889 variants */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200686static void alc889_coef_init(struct hda_codec *codec)
687{
688 unsigned int tmp;
689
690 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
691 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
692 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
693 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
694}
695
Takashi Iwai3fb4a502010-01-19 15:46:37 +0100696/* turn on/off EAPD control (only if available) */
697static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
698{
699 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
700 return;
701 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
702 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
703 on ? 2 : 0);
704}
705
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200706/* turn on/off EAPD controls of the codec */
707static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
708{
709 /* We currently only handle front, HP */
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200710 static hda_nid_t pins[] = {
711 0x0f, 0x10, 0x14, 0x15, 0
712 };
713 hda_nid_t *p;
714 for (p = pins; *p; p++)
715 set_eapd(codec, *p, on);
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200716}
717
Takashi Iwai1c716152011-04-07 10:37:16 +0200718/* generic shutup callback;
719 * just turning off EPAD and a little pause for avoiding pop-noise
720 */
721static void alc_eapd_shutup(struct hda_codec *codec)
722{
723 alc_auto_setup_eapd(codec, false);
724 msleep(200);
725}
726
Takashi Iwai1d045db2011-07-07 18:23:21 +0200727/* generic EAPD initialization */
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200728static void alc_auto_init_amp(struct hda_codec *codec, int type)
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200729{
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200730 unsigned int tmp;
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200731
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200732 alc_auto_setup_eapd(codec, true);
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200733 switch (type) {
734 case ALC_INIT_GPIO1:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200735 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
736 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200737 case ALC_INIT_GPIO2:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200738 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
739 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200740 case ALC_INIT_GPIO3:
Kailang Yangbdd148a2007-05-08 15:19:08 +0200741 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
742 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200743 case ALC_INIT_DEFAULT:
Kailang Yangc9b58002007-10-16 14:30:01 +0200744 switch (codec->vendor_id) {
745 case 0x10ec0260:
746 snd_hda_codec_write(codec, 0x1a, 0,
747 AC_VERB_SET_COEF_INDEX, 7);
748 tmp = snd_hda_codec_read(codec, 0x1a, 0,
749 AC_VERB_GET_PROC_COEF, 0);
750 snd_hda_codec_write(codec, 0x1a, 0,
751 AC_VERB_SET_COEF_INDEX, 7);
752 snd_hda_codec_write(codec, 0x1a, 0,
753 AC_VERB_SET_PROC_COEF,
754 tmp | 0x2010);
755 break;
756 case 0x10ec0262:
757 case 0x10ec0880:
758 case 0x10ec0882:
759 case 0x10ec0883:
760 case 0x10ec0885:
Takashi Iwai4a5a4c52009-02-06 12:46:59 +0100761 case 0x10ec0887:
Takashi Iwai20b67dd2011-03-23 22:54:32 +0100762 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200763 alc889_coef_init(codec);
Kailang Yangc9b58002007-10-16 14:30:01 +0200764 break;
Kailang Yangf9423e72008-05-27 12:32:25 +0200765 case 0x10ec0888:
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200766 alc888_coef_init(codec);
Kailang Yangf9423e72008-05-27 12:32:25 +0200767 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100768#if 0 /* XXX: This may cause the silent output on speaker on some machines */
Kailang Yangc9b58002007-10-16 14:30:01 +0200769 case 0x10ec0267:
770 case 0x10ec0268:
771 snd_hda_codec_write(codec, 0x20, 0,
772 AC_VERB_SET_COEF_INDEX, 7);
773 tmp = snd_hda_codec_read(codec, 0x20, 0,
774 AC_VERB_GET_PROC_COEF, 0);
775 snd_hda_codec_write(codec, 0x20, 0,
Kailang Yangea1fb292008-08-26 12:58:38 +0200776 AC_VERB_SET_COEF_INDEX, 7);
Kailang Yangc9b58002007-10-16 14:30:01 +0200777 snd_hda_codec_write(codec, 0x20, 0,
778 AC_VERB_SET_PROC_COEF,
779 tmp | 0x3000);
780 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100781#endif /* XXX */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200782 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200783 break;
784 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200785}
Kailang Yangea1fb292008-08-26 12:58:38 +0200786
Takashi Iwai1d045db2011-07-07 18:23:21 +0200787/*
788 * Auto-Mute mode mixer enum support
789 */
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200790static int alc_automute_mode_info(struct snd_kcontrol *kcontrol,
791 struct snd_ctl_elem_info *uinfo)
792{
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200793 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
794 struct alc_spec *spec = codec->spec;
795 static const char * const texts2[] = {
796 "Disabled", "Enabled"
797 };
798 static const char * const texts3[] = {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200799 "Disabled", "Speaker Only", "Line-Out+Speaker"
800 };
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200801 const char * const *texts;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200802
803 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
804 uinfo->count = 1;
David Henningsson42cf0d02011-09-20 12:04:56 +0200805 if (spec->automute_speaker_possible && spec->automute_lo_possible) {
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200806 uinfo->value.enumerated.items = 3;
807 texts = texts3;
808 } else {
809 uinfo->value.enumerated.items = 2;
810 texts = texts2;
811 }
812 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
813 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200814 strcpy(uinfo->value.enumerated.name,
815 texts[uinfo->value.enumerated.item]);
816 return 0;
817}
818
819static int alc_automute_mode_get(struct snd_kcontrol *kcontrol,
820 struct snd_ctl_elem_value *ucontrol)
821{
822 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
823 struct alc_spec *spec = codec->spec;
David Henningsson42cf0d02011-09-20 12:04:56 +0200824 unsigned int val = 0;
825 if (spec->automute_speaker)
826 val++;
827 if (spec->automute_lo)
828 val++;
829
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200830 ucontrol->value.enumerated.item[0] = val;
831 return 0;
832}
833
834static int alc_automute_mode_put(struct snd_kcontrol *kcontrol,
835 struct snd_ctl_elem_value *ucontrol)
836{
837 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
838 struct alc_spec *spec = codec->spec;
839
840 switch (ucontrol->value.enumerated.item[0]) {
841 case 0:
David Henningsson42cf0d02011-09-20 12:04:56 +0200842 if (!spec->automute_speaker && !spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200843 return 0;
David Henningsson42cf0d02011-09-20 12:04:56 +0200844 spec->automute_speaker = 0;
845 spec->automute_lo = 0;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200846 break;
847 case 1:
David Henningsson42cf0d02011-09-20 12:04:56 +0200848 if (spec->automute_speaker_possible) {
849 if (!spec->automute_lo && spec->automute_speaker)
850 return 0;
851 spec->automute_speaker = 1;
852 spec->automute_lo = 0;
853 } else if (spec->automute_lo_possible) {
854 if (spec->automute_lo)
855 return 0;
856 spec->automute_lo = 1;
857 } else
858 return -EINVAL;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200859 break;
860 case 2:
David Henningsson42cf0d02011-09-20 12:04:56 +0200861 if (!spec->automute_lo_possible || !spec->automute_speaker_possible)
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200862 return -EINVAL;
David Henningsson42cf0d02011-09-20 12:04:56 +0200863 if (spec->automute_speaker && spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200864 return 0;
David Henningsson42cf0d02011-09-20 12:04:56 +0200865 spec->automute_speaker = 1;
866 spec->automute_lo = 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200867 break;
868 default:
869 return -EINVAL;
870 }
David Henningsson42cf0d02011-09-20 12:04:56 +0200871 call_update_outputs(codec);
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200872 return 1;
873}
874
Takashi Iwaia9111322011-05-02 11:30:18 +0200875static const struct snd_kcontrol_new alc_automute_mode_enum = {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200876 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
877 .name = "Auto-Mute Mode",
878 .info = alc_automute_mode_info,
879 .get = alc_automute_mode_get,
880 .put = alc_automute_mode_put,
881};
882
Takashi Iwai1d045db2011-07-07 18:23:21 +0200883static struct snd_kcontrol_new *alc_kcontrol_new(struct alc_spec *spec)
884{
885 snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32);
886 return snd_array_new(&spec->kctls);
887}
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200888
889static int alc_add_automute_mode_enum(struct hda_codec *codec)
890{
891 struct alc_spec *spec = codec->spec;
892 struct snd_kcontrol_new *knew;
893
894 knew = alc_kcontrol_new(spec);
895 if (!knew)
896 return -ENOMEM;
897 *knew = alc_automute_mode_enum;
898 knew->name = kstrdup("Auto-Mute Mode", GFP_KERNEL);
899 if (!knew->name)
900 return -ENOMEM;
901 return 0;
902}
903
Takashi Iwai1d045db2011-07-07 18:23:21 +0200904/*
905 * Check the availability of HP/line-out auto-mute;
906 * Set up appropriately if really supported
907 */
David Henningsson42cf0d02011-09-20 12:04:56 +0200908static void alc_init_automute(struct hda_codec *codec)
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200909{
910 struct alc_spec *spec = codec->spec;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200911 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai1daf5f42011-04-28 17:57:46 +0200912 int present = 0;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200913 int i;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200914
Takashi Iwai1daf5f42011-04-28 17:57:46 +0200915 if (cfg->hp_pins[0])
916 present++;
917 if (cfg->line_out_pins[0])
918 present++;
919 if (cfg->speaker_pins[0])
920 present++;
921 if (present < 2) /* need two different output types */
922 return;
Kailang Yangc9b58002007-10-16 14:30:01 +0200923
Takashi Iwaic48a8fb2011-07-27 16:41:57 +0200924 if (!cfg->speaker_pins[0] &&
925 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200926 memcpy(cfg->speaker_pins, cfg->line_out_pins,
927 sizeof(cfg->speaker_pins));
928 cfg->speaker_outs = cfg->line_outs;
929 }
930
Takashi Iwaic48a8fb2011-07-27 16:41:57 +0200931 if (!cfg->hp_pins[0] &&
932 cfg->line_out_type == AUTO_PIN_HP_OUT) {
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200933 memcpy(cfg->hp_pins, cfg->line_out_pins,
934 sizeof(cfg->hp_pins));
935 cfg->hp_outs = cfg->line_outs;
936 }
937
David Henningsson42cf0d02011-09-20 12:04:56 +0200938 spec->automute_mode = ALC_AUTOMUTE_PIN;
939
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200940 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200941 hda_nid_t nid = cfg->hp_pins[i];
Takashi Iwai06dec222011-05-17 10:00:16 +0200942 if (!is_jack_detectable(codec, nid))
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200943 continue;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200944 snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n",
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200945 nid);
946 snd_hda_codec_write_cache(codec, nid, 0,
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200947 AC_VERB_SET_UNSOLICITED_ENABLE,
Takashi Iwai1d045db2011-07-07 18:23:21 +0200948 AC_USRSP_EN | ALC_HP_EVENT);
David Henningsson42cf0d02011-09-20 12:04:56 +0200949 spec->detect_hp = 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200950 }
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200951
David Henningsson42cf0d02011-09-20 12:04:56 +0200952 if (cfg->line_out_type == AUTO_PIN_LINE_OUT && cfg->line_outs) {
953 if (cfg->speaker_outs)
954 for (i = 0; i < cfg->line_outs; i++) {
955 hda_nid_t nid = cfg->line_out_pins[i];
956 if (!is_jack_detectable(codec, nid))
957 continue;
958 snd_printdd("realtek: Enable Line-Out "
959 "auto-muting on NID 0x%x\n", nid);
960 snd_hda_codec_write_cache(codec, nid, 0,
961 AC_VERB_SET_UNSOLICITED_ENABLE,
962 AC_USRSP_EN | ALC_FRONT_EVENT);
963 spec->detect_lo = 1;
964 }
965 spec->automute_lo_possible = spec->detect_hp;
966 }
967
968 spec->automute_speaker_possible = cfg->speaker_outs &&
969 (spec->detect_hp || spec->detect_lo);
970
971 spec->automute_lo = spec->automute_lo_possible;
972 spec->automute_speaker = spec->automute_speaker_possible;
973
974 if (spec->automute_speaker_possible || spec->automute_lo_possible) {
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200975 /* create a control for automute mode */
976 alc_add_automute_mode_enum(codec);
977 spec->unsol_event = alc_sku_unsol_event;
978 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200979}
980
Takashi Iwai1d045db2011-07-07 18:23:21 +0200981/* return the position of NID in the list, or -1 if not found */
Takashi Iwai21268962011-07-07 15:01:13 +0200982static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
983{
984 int i;
985 for (i = 0; i < nums; i++)
986 if (list[i] == nid)
987 return i;
988 return -1;
989}
990
Takashi Iwai1d045db2011-07-07 18:23:21 +0200991/* check whether dynamic ADC-switching is available */
992static bool alc_check_dyn_adc_switch(struct hda_codec *codec)
993{
994 struct alc_spec *spec = codec->spec;
995 struct hda_input_mux *imux = &spec->private_imux[0];
996 int i, n, idx;
997 hda_nid_t cap, pin;
998
999 if (imux != spec->input_mux) /* no dynamic imux? */
1000 return false;
1001
1002 for (n = 0; n < spec->num_adc_nids; n++) {
1003 cap = spec->private_capsrc_nids[n];
1004 for (i = 0; i < imux->num_items; i++) {
1005 pin = spec->imux_pins[i];
1006 if (!pin)
1007 return false;
1008 if (get_connection_index(codec, cap, pin) < 0)
1009 break;
1010 }
1011 if (i >= imux->num_items)
Takashi Iwai268ff6f2011-07-08 14:37:35 +02001012 return true; /* no ADC-switch is needed */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001013 }
1014
1015 for (i = 0; i < imux->num_items; i++) {
1016 pin = spec->imux_pins[i];
1017 for (n = 0; n < spec->num_adc_nids; n++) {
1018 cap = spec->private_capsrc_nids[n];
1019 idx = get_connection_index(codec, cap, pin);
1020 if (idx >= 0) {
1021 imux->items[i].index = idx;
1022 spec->dyn_adc_idx[i] = n;
1023 break;
1024 }
1025 }
1026 }
1027
1028 snd_printdd("realtek: enabling ADC switching\n");
1029 spec->dyn_adc_switch = 1;
1030 return true;
1031}
Takashi Iwai21268962011-07-07 15:01:13 +02001032
1033/* rebuild imux for matching with the given auto-mic pins (if not yet) */
1034static bool alc_rebuild_imux_for_auto_mic(struct hda_codec *codec)
1035{
1036 struct alc_spec *spec = codec->spec;
1037 struct hda_input_mux *imux;
1038 static char * const texts[3] = {
1039 "Mic", "Internal Mic", "Dock Mic"
1040 };
1041 int i;
1042
1043 if (!spec->auto_mic)
1044 return false;
1045 imux = &spec->private_imux[0];
1046 if (spec->input_mux == imux)
1047 return true;
1048 spec->imux_pins[0] = spec->ext_mic_pin;
1049 spec->imux_pins[1] = spec->int_mic_pin;
1050 spec->imux_pins[2] = spec->dock_mic_pin;
1051 for (i = 0; i < 3; i++) {
1052 strcpy(imux->items[i].label, texts[i]);
1053 if (spec->imux_pins[i])
1054 imux->num_items = i + 1;
1055 }
1056 spec->num_mux_defs = 1;
1057 spec->input_mux = imux;
1058 return true;
1059}
1060
1061/* check whether all auto-mic pins are valid; setup indices if OK */
1062static bool alc_auto_mic_check_imux(struct hda_codec *codec)
1063{
1064 struct alc_spec *spec = codec->spec;
1065 const struct hda_input_mux *imux;
1066
1067 if (!spec->auto_mic)
1068 return false;
1069 if (spec->auto_mic_valid_imux)
1070 return true; /* already checked */
1071
1072 /* fill up imux indices */
1073 if (!alc_check_dyn_adc_switch(codec)) {
1074 spec->auto_mic = 0;
1075 return false;
1076 }
1077
1078 imux = spec->input_mux;
1079 spec->ext_mic_idx = find_idx_in_nid_list(spec->ext_mic_pin,
1080 spec->imux_pins, imux->num_items);
1081 spec->int_mic_idx = find_idx_in_nid_list(spec->int_mic_pin,
1082 spec->imux_pins, imux->num_items);
1083 spec->dock_mic_idx = find_idx_in_nid_list(spec->dock_mic_pin,
1084 spec->imux_pins, imux->num_items);
1085 if (spec->ext_mic_idx < 0 || spec->int_mic_idx < 0) {
1086 spec->auto_mic = 0;
1087 return false; /* no corresponding imux */
1088 }
1089
1090 snd_hda_codec_write_cache(codec, spec->ext_mic_pin, 0,
1091 AC_VERB_SET_UNSOLICITED_ENABLE,
Takashi Iwai1d045db2011-07-07 18:23:21 +02001092 AC_USRSP_EN | ALC_MIC_EVENT);
Takashi Iwai21268962011-07-07 15:01:13 +02001093 if (spec->dock_mic_pin)
1094 snd_hda_codec_write_cache(codec, spec->dock_mic_pin, 0,
1095 AC_VERB_SET_UNSOLICITED_ENABLE,
Takashi Iwai1d045db2011-07-07 18:23:21 +02001096 AC_USRSP_EN | ALC_MIC_EVENT);
Takashi Iwai21268962011-07-07 15:01:13 +02001097
1098 spec->auto_mic_valid_imux = 1;
1099 spec->auto_mic = 1;
1100 return true;
1101}
1102
Takashi Iwai1d045db2011-07-07 18:23:21 +02001103/*
1104 * Check the availability of auto-mic switch;
1105 * Set up if really supported
1106 */
Takashi Iwai6c819492009-08-10 18:47:44 +02001107static void alc_init_auto_mic(struct hda_codec *codec)
1108{
1109 struct alc_spec *spec = codec->spec;
1110 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001111 hda_nid_t fixed, ext, dock;
Takashi Iwai6c819492009-08-10 18:47:44 +02001112 int i;
1113
Takashi Iwai21268962011-07-07 15:01:13 +02001114 spec->ext_mic_idx = spec->int_mic_idx = spec->dock_mic_idx = -1;
1115
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001116 fixed = ext = dock = 0;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02001117 for (i = 0; i < cfg->num_inputs; i++) {
1118 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai6c819492009-08-10 18:47:44 +02001119 unsigned int defcfg;
Takashi Iwai6c819492009-08-10 18:47:44 +02001120 defcfg = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001121 switch (snd_hda_get_input_pin_attr(defcfg)) {
1122 case INPUT_PIN_ATTR_INT:
Takashi Iwai6c819492009-08-10 18:47:44 +02001123 if (fixed)
1124 return; /* already occupied */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001125 if (cfg->inputs[i].type != AUTO_PIN_MIC)
1126 return; /* invalid type */
Takashi Iwai6c819492009-08-10 18:47:44 +02001127 fixed = nid;
1128 break;
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001129 case INPUT_PIN_ATTR_UNUSED:
1130 return; /* invalid entry */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001131 case INPUT_PIN_ATTR_DOCK:
1132 if (dock)
1133 return; /* already occupied */
1134 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
1135 return; /* invalid type */
1136 dock = nid;
1137 break;
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001138 default:
Takashi Iwai6c819492009-08-10 18:47:44 +02001139 if (ext)
1140 return; /* already occupied */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001141 if (cfg->inputs[i].type != AUTO_PIN_MIC)
1142 return; /* invalid type */
Takashi Iwai6c819492009-08-10 18:47:44 +02001143 ext = nid;
1144 break;
Takashi Iwai6c819492009-08-10 18:47:44 +02001145 }
1146 }
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001147 if (!ext && dock) {
1148 ext = dock;
1149 dock = 0;
1150 }
Takashi Iwaieaa9b3a2010-01-17 13:09:33 +01001151 if (!ext || !fixed)
1152 return;
Takashi Iwaie35d9d62011-05-17 11:28:16 +02001153 if (!is_jack_detectable(codec, ext))
Takashi Iwai6c819492009-08-10 18:47:44 +02001154 return; /* no unsol support */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001155 if (dock && !is_jack_detectable(codec, dock))
1156 return; /* no unsol support */
Takashi Iwai21268962011-07-07 15:01:13 +02001157
1158 /* check imux indices */
1159 spec->ext_mic_pin = ext;
1160 spec->int_mic_pin = fixed;
1161 spec->dock_mic_pin = dock;
1162
1163 spec->auto_mic = 1;
1164 if (!alc_auto_mic_check_imux(codec))
1165 return;
1166
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001167 snd_printdd("realtek: Enable auto-mic switch on NID 0x%x/0x%x/0x%x\n",
1168 ext, fixed, dock);
Takashi Iwai6c819492009-08-10 18:47:44 +02001169 spec->unsol_event = alc_sku_unsol_event;
1170}
1171
Takashi Iwai1d045db2011-07-07 18:23:21 +02001172/* check the availabilities of auto-mute and auto-mic switches */
1173static void alc_auto_check_switches(struct hda_codec *codec)
1174{
David Henningsson42cf0d02011-09-20 12:04:56 +02001175 alc_init_automute(codec);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001176 alc_init_auto_mic(codec);
1177}
1178
1179/*
1180 * Realtek SSID verification
1181 */
1182
David Henningsson90622912010-10-14 14:50:18 +02001183/* Could be any non-zero and even value. When used as fixup, tells
1184 * the driver to ignore any present sku defines.
1185 */
1186#define ALC_FIXUP_SKU_IGNORE (2)
1187
Kailang Yangda00c242010-03-19 11:23:45 +01001188static int alc_auto_parse_customize_define(struct hda_codec *codec)
1189{
1190 unsigned int ass, tmp, i;
Takashi Iwai7fb56222010-03-22 17:09:47 +01001191 unsigned nid = 0;
Kailang Yangda00c242010-03-19 11:23:45 +01001192 struct alc_spec *spec = codec->spec;
1193
Takashi Iwaib6cbe512010-07-28 17:43:36 +02001194 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
1195
David Henningsson90622912010-10-14 14:50:18 +02001196 if (spec->cdefine.fixup) {
1197 ass = spec->cdefine.sku_cfg;
1198 if (ass == ALC_FIXUP_SKU_IGNORE)
1199 return -1;
1200 goto do_sku;
1201 }
1202
Kailang Yangda00c242010-03-19 11:23:45 +01001203 ass = codec->subsystem_id & 0xffff;
Takashi Iwaib6cbe512010-07-28 17:43:36 +02001204 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
Kailang Yangda00c242010-03-19 11:23:45 +01001205 goto do_sku;
1206
1207 nid = 0x1d;
1208 if (codec->vendor_id == 0x10ec0260)
1209 nid = 0x17;
1210 ass = snd_hda_codec_get_pincfg(codec, nid);
1211
1212 if (!(ass & 1)) {
1213 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
1214 codec->chip_name, ass);
1215 return -1;
1216 }
1217
1218 /* check sum */
1219 tmp = 0;
1220 for (i = 1; i < 16; i++) {
1221 if ((ass >> i) & 1)
1222 tmp++;
1223 }
1224 if (((ass >> 16) & 0xf) != tmp)
1225 return -1;
1226
1227 spec->cdefine.port_connectivity = ass >> 30;
1228 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
1229 spec->cdefine.check_sum = (ass >> 16) & 0xf;
1230 spec->cdefine.customization = ass >> 8;
1231do_sku:
1232 spec->cdefine.sku_cfg = ass;
1233 spec->cdefine.external_amp = (ass & 0x38) >> 3;
1234 spec->cdefine.platform_type = (ass & 0x4) >> 2;
1235 spec->cdefine.swap = (ass & 0x2) >> 1;
1236 spec->cdefine.override = ass & 0x1;
1237
1238 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
1239 nid, spec->cdefine.sku_cfg);
1240 snd_printd("SKU: port_connectivity=0x%x\n",
1241 spec->cdefine.port_connectivity);
1242 snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
1243 snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
1244 snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
1245 snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
1246 snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
1247 snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
1248 snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
1249
1250 return 0;
1251}
1252
Takashi Iwai1d045db2011-07-07 18:23:21 +02001253/* return true if the given NID is found in the list */
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001254static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
1255{
Takashi Iwai21268962011-07-07 15:01:13 +02001256 return find_idx_in_nid_list(nid, list, nums) >= 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001257}
1258
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001259/* check subsystem ID and set up device-specific initialization;
1260 * return 1 if initialized, 0 if invalid SSID
1261 */
1262/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
1263 * 31 ~ 16 : Manufacture ID
1264 * 15 ~ 8 : SKU ID
1265 * 7 ~ 0 : Assembly ID
1266 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
1267 */
1268static int alc_subsystem_id(struct hda_codec *codec,
1269 hda_nid_t porta, hda_nid_t porte,
Kailang Yang6227cdc2010-02-25 08:36:52 +01001270 hda_nid_t portd, hda_nid_t porti)
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001271{
1272 unsigned int ass, tmp, i;
1273 unsigned nid;
1274 struct alc_spec *spec = codec->spec;
1275
David Henningsson90622912010-10-14 14:50:18 +02001276 if (spec->cdefine.fixup) {
1277 ass = spec->cdefine.sku_cfg;
1278 if (ass == ALC_FIXUP_SKU_IGNORE)
1279 return 0;
1280 goto do_sku;
1281 }
1282
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001283 ass = codec->subsystem_id & 0xffff;
1284 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
1285 goto do_sku;
1286
1287 /* invalid SSID, check the special NID pin defcfg instead */
1288 /*
Sasha Alexandrdef319f2009-06-16 16:00:15 -04001289 * 31~30 : port connectivity
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001290 * 29~21 : reserve
1291 * 20 : PCBEEP input
1292 * 19~16 : Check sum (15:1)
1293 * 15~1 : Custom
1294 * 0 : override
1295 */
1296 nid = 0x1d;
1297 if (codec->vendor_id == 0x10ec0260)
1298 nid = 0x17;
1299 ass = snd_hda_codec_get_pincfg(codec, nid);
1300 snd_printd("realtek: No valid SSID, "
1301 "checking pincfg 0x%08x for NID 0x%x\n",
Takashi Iwaicb6605c2009-04-28 13:03:19 +02001302 ass, nid);
Kailang Yang6227cdc2010-02-25 08:36:52 +01001303 if (!(ass & 1))
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001304 return 0;
1305 if ((ass >> 30) != 1) /* no physical connection */
1306 return 0;
1307
1308 /* check sum */
1309 tmp = 0;
1310 for (i = 1; i < 16; i++) {
1311 if ((ass >> i) & 1)
1312 tmp++;
1313 }
1314 if (((ass >> 16) & 0xf) != tmp)
1315 return 0;
1316do_sku:
1317 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
1318 ass & 0xffff, codec->vendor_id);
1319 /*
1320 * 0 : override
1321 * 1 : Swap Jack
1322 * 2 : 0 --> Desktop, 1 --> Laptop
1323 * 3~5 : External Amplifier control
1324 * 7~6 : Reserved
1325 */
1326 tmp = (ass & 0x38) >> 3; /* external Amp control */
1327 switch (tmp) {
1328 case 1:
1329 spec->init_amp = ALC_INIT_GPIO1;
1330 break;
1331 case 3:
1332 spec->init_amp = ALC_INIT_GPIO2;
1333 break;
1334 case 7:
1335 spec->init_amp = ALC_INIT_GPIO3;
1336 break;
1337 case 5:
Takashi Iwai5a8cfb42010-11-26 17:11:18 +01001338 default:
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001339 spec->init_amp = ALC_INIT_DEFAULT;
1340 break;
1341 }
1342
1343 /* is laptop or Desktop and enable the function "Mute internal speaker
1344 * when the external headphone out jack is plugged"
1345 */
1346 if (!(ass & 0x8000))
1347 return 1;
1348 /*
1349 * 10~8 : Jack location
1350 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1351 * 14~13: Resvered
1352 * 15 : 1 --> enable the function "Mute internal speaker
1353 * when the external headphone out jack is plugged"
1354 */
Takashi Iwai5fe6e012011-09-26 10:41:21 +02001355 if (!spec->autocfg.hp_pins[0] &&
1356 !(spec->autocfg.line_out_pins[0] &&
1357 spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
Takashi Iwai01d48252009-10-06 13:21:54 +02001358 hda_nid_t nid;
Kailang Yangc9b58002007-10-16 14:30:01 +02001359 tmp = (ass >> 11) & 0x3; /* HP to chassis */
1360 if (tmp == 0)
Takashi Iwai01d48252009-10-06 13:21:54 +02001361 nid = porta;
Kailang Yangc9b58002007-10-16 14:30:01 +02001362 else if (tmp == 1)
Takashi Iwai01d48252009-10-06 13:21:54 +02001363 nid = porte;
Kailang Yangc9b58002007-10-16 14:30:01 +02001364 else if (tmp == 2)
Takashi Iwai01d48252009-10-06 13:21:54 +02001365 nid = portd;
Kailang Yang6227cdc2010-02-25 08:36:52 +01001366 else if (tmp == 3)
1367 nid = porti;
Kailang Yangc9b58002007-10-16 14:30:01 +02001368 else
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001369 return 1;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001370 if (found_in_nid_list(nid, spec->autocfg.line_out_pins,
1371 spec->autocfg.line_outs))
1372 return 1;
Takashi Iwai01d48252009-10-06 13:21:54 +02001373 spec->autocfg.hp_pins[0] = nid;
Kailang Yangc9b58002007-10-16 14:30:01 +02001374 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001375 return 1;
1376}
Kailang Yangea1fb292008-08-26 12:58:38 +02001377
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001378/* Check the validity of ALC subsystem-id
1379 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
1380static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001381{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001382 if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001383 struct alc_spec *spec = codec->spec;
1384 snd_printd("realtek: "
1385 "Enable default setup for auto mode as fallback\n");
1386 spec->init_amp = ALC_INIT_DEFAULT;
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001387 }
Takashi Iwai21268962011-07-07 15:01:13 +02001388}
Takashi Iwai1a1455d2011-04-28 17:36:18 +02001389
Takashi Iwai41e41f12005-06-08 14:48:49 +02001390/*
Takashi Iwaif8f25ba2009-10-06 08:31:29 +02001391 * Fix-up pin default configurations and add default verbs
Takashi Iwaif95474e2007-07-10 00:47:43 +02001392 */
1393
1394struct alc_pincfg {
1395 hda_nid_t nid;
1396 u32 val;
1397};
1398
Todd Broche1eb5f12010-12-06 11:19:51 -08001399struct alc_model_fixup {
1400 const int id;
1401 const char *name;
1402};
1403
Takashi Iwaif8f25ba2009-10-06 08:31:29 +02001404struct alc_fixup {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001405 int type;
Takashi Iwai361fe6e2011-01-14 09:55:32 +01001406 bool chained;
1407 int chain_id;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001408 union {
1409 unsigned int sku;
1410 const struct alc_pincfg *pins;
1411 const struct hda_verb *verbs;
1412 void (*func)(struct hda_codec *codec,
1413 const struct alc_fixup *fix,
1414 int action);
1415 } v;
Takashi Iwaif8f25ba2009-10-06 08:31:29 +02001416};
1417
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001418enum {
1419 ALC_FIXUP_INVALID,
1420 ALC_FIXUP_SKU,
1421 ALC_FIXUP_PINS,
1422 ALC_FIXUP_VERBS,
1423 ALC_FIXUP_FUNC,
1424};
Takashi Iwaif95474e2007-07-10 00:47:43 +02001425
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001426enum {
1427 ALC_FIXUP_ACT_PRE_PROBE,
1428 ALC_FIXUP_ACT_PROBE,
Takashi Iwai58701122011-01-13 15:41:45 +01001429 ALC_FIXUP_ACT_INIT,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001430};
1431
1432static void alc_apply_fixup(struct hda_codec *codec, int action)
1433{
1434 struct alc_spec *spec = codec->spec;
1435 int id = spec->fixup_id;
Takashi Iwaiaa1d0c52011-01-19 17:27:58 +01001436#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001437 const char *modelname = spec->fixup_name;
Takashi Iwaiaa1d0c52011-01-19 17:27:58 +01001438#endif
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001439 int depth = 0;
1440
1441 if (!spec->fixup_list)
1442 return;
1443
1444 while (id >= 0) {
1445 const struct alc_fixup *fix = spec->fixup_list + id;
1446 const struct alc_pincfg *cfg;
1447
1448 switch (fix->type) {
1449 case ALC_FIXUP_SKU:
1450 if (action != ALC_FIXUP_ACT_PRE_PROBE || !fix->v.sku)
1451 break;;
1452 snd_printdd(KERN_INFO "hda_codec: %s: "
1453 "Apply sku override for %s\n",
1454 codec->chip_name, modelname);
1455 spec->cdefine.sku_cfg = fix->v.sku;
1456 spec->cdefine.fixup = 1;
1457 break;
1458 case ALC_FIXUP_PINS:
1459 cfg = fix->v.pins;
1460 if (action != ALC_FIXUP_ACT_PRE_PROBE || !cfg)
1461 break;
1462 snd_printdd(KERN_INFO "hda_codec: %s: "
1463 "Apply pincfg for %s\n",
1464 codec->chip_name, modelname);
1465 for (; cfg->nid; cfg++)
1466 snd_hda_codec_set_pincfg(codec, cfg->nid,
1467 cfg->val);
1468 break;
1469 case ALC_FIXUP_VERBS:
1470 if (action != ALC_FIXUP_ACT_PROBE || !fix->v.verbs)
1471 break;
1472 snd_printdd(KERN_INFO "hda_codec: %s: "
1473 "Apply fix-verbs for %s\n",
1474 codec->chip_name, modelname);
1475 add_verb(codec->spec, fix->v.verbs);
1476 break;
1477 case ALC_FIXUP_FUNC:
1478 if (!fix->v.func)
1479 break;
1480 snd_printdd(KERN_INFO "hda_codec: %s: "
1481 "Apply fix-func for %s\n",
1482 codec->chip_name, modelname);
1483 fix->v.func(codec, fix, action);
1484 break;
1485 default:
1486 snd_printk(KERN_ERR "hda_codec: %s: "
1487 "Invalid fixup type %d\n",
1488 codec->chip_name, fix->type);
1489 break;
1490 }
Takashi Iwai24af2b12011-05-02 13:55:36 +02001491 if (!fix->chained)
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001492 break;
1493 if (++depth > 10)
1494 break;
Takashi Iwai24af2b12011-05-02 13:55:36 +02001495 id = fix->chain_id;
Takashi Iwai9d578832010-11-22 13:29:19 +01001496 }
Takashi Iwaif95474e2007-07-10 00:47:43 +02001497}
1498
Todd Broche1eb5f12010-12-06 11:19:51 -08001499static void alc_pick_fixup(struct hda_codec *codec,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001500 const struct alc_model_fixup *models,
1501 const struct snd_pci_quirk *quirk,
1502 const struct alc_fixup *fixlist)
Todd Broche1eb5f12010-12-06 11:19:51 -08001503{
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001504 struct alc_spec *spec = codec->spec;
1505 int id = -1;
1506 const char *name = NULL;
Todd Broche1eb5f12010-12-06 11:19:51 -08001507
Todd Broche1eb5f12010-12-06 11:19:51 -08001508 if (codec->modelname && models) {
1509 while (models->name) {
1510 if (!strcmp(codec->modelname, models->name)) {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001511 id = models->id;
1512 name = models->name;
Todd Broche1eb5f12010-12-06 11:19:51 -08001513 break;
1514 }
1515 models++;
1516 }
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001517 }
1518 if (id < 0) {
1519 quirk = snd_pci_quirk_lookup(codec->bus->pci, quirk);
1520 if (quirk) {
1521 id = quirk->value;
1522#ifdef CONFIG_SND_DEBUG_VERBOSE
1523 name = quirk->name;
1524#endif
1525 }
1526 }
1527
1528 spec->fixup_id = id;
1529 if (id >= 0) {
1530 spec->fixup_list = fixlist;
1531 spec->fixup_name = name;
Todd Broche1eb5f12010-12-06 11:19:51 -08001532 }
Takashi Iwaif95474e2007-07-10 00:47:43 +02001533}
1534
Takashi Iwai1d045db2011-07-07 18:23:21 +02001535/*
1536 * COEF access helper functions
1537 */
Kailang Yang274693f2009-12-03 10:07:50 +01001538static int alc_read_coef_idx(struct hda_codec *codec,
1539 unsigned int coef_idx)
1540{
1541 unsigned int val;
1542 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1543 coef_idx);
1544 val = snd_hda_codec_read(codec, 0x20, 0,
1545 AC_VERB_GET_PROC_COEF, 0);
1546 return val;
1547}
1548
Kailang Yang977ddd62010-09-15 10:02:29 +02001549static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
1550 unsigned int coef_val)
1551{
1552 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1553 coef_idx);
1554 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
1555 coef_val);
1556}
1557
Takashi Iwai1bb7e432011-10-17 16:50:59 +02001558/* a special bypass for COEF 0; read the cached value at the second time */
1559static unsigned int alc_get_coef0(struct hda_codec *codec)
1560{
1561 struct alc_spec *spec = codec->spec;
1562 if (!spec->coef0)
1563 spec->coef0 = alc_read_coef_idx(codec, 0);
1564 return spec->coef0;
1565}
1566
Takashi Iwai1d045db2011-07-07 18:23:21 +02001567/*
1568 * Digital I/O handling
1569 */
1570
Takashi Iwai757899a2010-07-30 10:48:14 +02001571/* set right pin controls for digital I/O */
1572static void alc_auto_init_digital(struct hda_codec *codec)
1573{
1574 struct alc_spec *spec = codec->spec;
1575 int i;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001576 hda_nid_t pin, dac;
Takashi Iwai757899a2010-07-30 10:48:14 +02001577
1578 for (i = 0; i < spec->autocfg.dig_outs; i++) {
1579 pin = spec->autocfg.dig_out_pins[i];
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001580 if (!pin)
1581 continue;
1582 snd_hda_codec_write(codec, pin, 0,
1583 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
1584 if (!i)
1585 dac = spec->multiout.dig_out_nid;
1586 else
1587 dac = spec->slave_dig_outs[i - 1];
1588 if (!dac || !(get_wcaps(codec, dac) & AC_WCAP_OUT_AMP))
1589 continue;
1590 snd_hda_codec_write(codec, dac, 0,
1591 AC_VERB_SET_AMP_GAIN_MUTE,
1592 AMP_OUT_UNMUTE);
Takashi Iwai757899a2010-07-30 10:48:14 +02001593 }
1594 pin = spec->autocfg.dig_in_pin;
1595 if (pin)
1596 snd_hda_codec_write(codec, pin, 0,
1597 AC_VERB_SET_PIN_WIDGET_CONTROL,
1598 PIN_IN);
1599}
1600
1601/* parse digital I/Os and set up NIDs in BIOS auto-parse mode */
1602static void alc_auto_parse_digital(struct hda_codec *codec)
1603{
1604 struct alc_spec *spec = codec->spec;
1605 int i, err;
1606 hda_nid_t dig_nid;
1607
1608 /* support multiple SPDIFs; the secondary is set up as a slave */
1609 for (i = 0; i < spec->autocfg.dig_outs; i++) {
Takashi Iwaia9267572011-07-07 15:12:55 +02001610 hda_nid_t conn[4];
Takashi Iwai757899a2010-07-30 10:48:14 +02001611 err = snd_hda_get_connections(codec,
1612 spec->autocfg.dig_out_pins[i],
Takashi Iwaia9267572011-07-07 15:12:55 +02001613 conn, ARRAY_SIZE(conn));
Takashi Iwai757899a2010-07-30 10:48:14 +02001614 if (err < 0)
1615 continue;
Takashi Iwaia9267572011-07-07 15:12:55 +02001616 dig_nid = conn[0]; /* assume the first element is audio-out */
Takashi Iwai757899a2010-07-30 10:48:14 +02001617 if (!i) {
1618 spec->multiout.dig_out_nid = dig_nid;
1619 spec->dig_out_type = spec->autocfg.dig_out_type[0];
1620 } else {
1621 spec->multiout.slave_dig_outs = spec->slave_dig_outs;
1622 if (i >= ARRAY_SIZE(spec->slave_dig_outs) - 1)
1623 break;
1624 spec->slave_dig_outs[i - 1] = dig_nid;
1625 }
1626 }
1627
1628 if (spec->autocfg.dig_in_pin) {
Takashi Iwai01fdf182010-09-24 09:09:42 +02001629 dig_nid = codec->start_nid;
1630 for (i = 0; i < codec->num_nodes; i++, dig_nid++) {
1631 unsigned int wcaps = get_wcaps(codec, dig_nid);
1632 if (get_wcaps_type(wcaps) != AC_WID_AUD_IN)
1633 continue;
1634 if (!(wcaps & AC_WCAP_DIGITAL))
1635 continue;
1636 if (!(wcaps & AC_WCAP_CONN_LIST))
1637 continue;
1638 err = get_connection_index(codec, dig_nid,
1639 spec->autocfg.dig_in_pin);
1640 if (err >= 0) {
1641 spec->dig_in_nid = dig_nid;
1642 break;
1643 }
1644 }
Takashi Iwai757899a2010-07-30 10:48:14 +02001645 }
1646}
1647
Takashi Iwaif95474e2007-07-10 00:47:43 +02001648/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02001649 * capture mixer elements
Vincent Petryef8ef5f2008-11-23 11:31:41 +08001650 */
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001651static int alc_cap_vol_info(struct snd_kcontrol *kcontrol,
1652 struct snd_ctl_elem_info *uinfo)
1653{
1654 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1655 struct alc_spec *spec = codec->spec;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001656 unsigned long val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001657 int err;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001658
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001659 mutex_lock(&codec->control_mutex);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001660 if (spec->vol_in_capsrc)
1661 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1662 else
1663 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1664 kcontrol->private_value = val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001665 err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001666 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001667 return err;
1668}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001670static int alc_cap_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1671 unsigned int size, unsigned int __user *tlv)
1672{
1673 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1674 struct alc_spec *spec = codec->spec;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001675 unsigned long val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001676 int err;
1677
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001678 mutex_lock(&codec->control_mutex);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001679 if (spec->vol_in_capsrc)
1680 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1681 else
1682 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1683 kcontrol->private_value = val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001684 err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001685 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001686 return err;
1687}
1688
1689typedef int (*getput_call_t)(struct snd_kcontrol *kcontrol,
1690 struct snd_ctl_elem_value *ucontrol);
1691
1692static int alc_cap_getput_caller(struct snd_kcontrol *kcontrol,
1693 struct snd_ctl_elem_value *ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001694 getput_call_t func, bool check_adc_switch)
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001695{
1696 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1697 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +02001698 int i, err = 0;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001699
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001700 mutex_lock(&codec->control_mutex);
Takashi Iwai21268962011-07-07 15:01:13 +02001701 if (check_adc_switch && spec->dyn_adc_switch) {
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001702 for (i = 0; i < spec->num_adc_nids; i++) {
1703 kcontrol->private_value =
1704 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1705 3, 0, HDA_INPUT);
1706 err = func(kcontrol, ucontrol);
1707 if (err < 0)
1708 goto error;
1709 }
1710 } else {
1711 i = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001712 if (spec->vol_in_capsrc)
1713 kcontrol->private_value =
1714 HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[i],
1715 3, 0, HDA_OUTPUT);
1716 else
1717 kcontrol->private_value =
Takashi Iwai21268962011-07-07 15:01:13 +02001718 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1719 3, 0, HDA_INPUT);
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001720 err = func(kcontrol, ucontrol);
1721 }
1722 error:
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001723 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001724 return err;
1725}
1726
1727static int alc_cap_vol_get(struct snd_kcontrol *kcontrol,
1728 struct snd_ctl_elem_value *ucontrol)
1729{
1730 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001731 snd_hda_mixer_amp_volume_get, false);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001732}
1733
1734static int alc_cap_vol_put(struct snd_kcontrol *kcontrol,
1735 struct snd_ctl_elem_value *ucontrol)
1736{
1737 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001738 snd_hda_mixer_amp_volume_put, true);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001739}
1740
1741/* capture mixer elements */
1742#define alc_cap_sw_info snd_ctl_boolean_stereo_info
1743
1744static int alc_cap_sw_get(struct snd_kcontrol *kcontrol,
1745 struct snd_ctl_elem_value *ucontrol)
1746{
1747 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001748 snd_hda_mixer_amp_switch_get, false);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001749}
1750
1751static int alc_cap_sw_put(struct snd_kcontrol *kcontrol,
1752 struct snd_ctl_elem_value *ucontrol)
1753{
1754 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001755 snd_hda_mixer_amp_switch_put, true);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001756}
1757
Takashi Iwaia23b6882009-03-23 15:21:36 +01001758#define _DEFINE_CAPMIX(num) \
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001759 { \
1760 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1761 .name = "Capture Switch", \
1762 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
1763 .count = num, \
1764 .info = alc_cap_sw_info, \
1765 .get = alc_cap_sw_get, \
1766 .put = alc_cap_sw_put, \
1767 }, \
1768 { \
1769 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1770 .name = "Capture Volume", \
1771 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | \
1772 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
1773 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK), \
1774 .count = num, \
1775 .info = alc_cap_vol_info, \
1776 .get = alc_cap_vol_get, \
1777 .put = alc_cap_vol_put, \
1778 .tlv = { .c = alc_cap_vol_tlv }, \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001779 }
1780
1781#define _DEFINE_CAPSRC(num) \
Takashi Iwai3c3e9892008-10-31 17:48:56 +01001782 { \
1783 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1784 /* .name = "Capture Source", */ \
1785 .name = "Input Source", \
1786 .count = num, \
1787 .info = alc_mux_enum_info, \
1788 .get = alc_mux_enum_get, \
1789 .put = alc_mux_enum_put, \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001790 }
1791
1792#define DEFINE_CAPMIX(num) \
Takashi Iwaia9111322011-05-02 11:30:18 +02001793static const struct snd_kcontrol_new alc_capture_mixer ## num[] = { \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001794 _DEFINE_CAPMIX(num), \
1795 _DEFINE_CAPSRC(num), \
1796 { } /* end */ \
1797}
1798
1799#define DEFINE_CAPMIX_NOSRC(num) \
Takashi Iwaia9111322011-05-02 11:30:18 +02001800static const struct snd_kcontrol_new alc_capture_mixer_nosrc ## num[] = { \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001801 _DEFINE_CAPMIX(num), \
1802 { } /* end */ \
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001803}
1804
1805/* up to three ADCs */
1806DEFINE_CAPMIX(1);
1807DEFINE_CAPMIX(2);
1808DEFINE_CAPMIX(3);
Takashi Iwaia23b6882009-03-23 15:21:36 +01001809DEFINE_CAPMIX_NOSRC(1);
1810DEFINE_CAPMIX_NOSRC(2);
1811DEFINE_CAPMIX_NOSRC(3);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001812
1813/*
Takashi Iwai2134ea42008-01-10 16:53:55 +01001814 * virtual master controls
1815 */
1816
1817/*
1818 * slave controls for virtual master
1819 */
Takashi Iwaiea734962011-01-17 11:29:34 +01001820static const char * const alc_slave_vols[] = {
Takashi Iwai2134ea42008-01-10 16:53:55 +01001821 "Front Playback Volume",
1822 "Surround Playback Volume",
1823 "Center Playback Volume",
1824 "LFE Playback Volume",
1825 "Side Playback Volume",
1826 "Headphone Playback Volume",
1827 "Speaker Playback Volume",
1828 "Mono Playback Volume",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001829 "Line-Out Playback Volume",
Takashi Iwai3fe45ae2011-08-18 15:13:17 +02001830 "PCM Playback Volume",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001831 NULL,
1832};
1833
Takashi Iwaiea734962011-01-17 11:29:34 +01001834static const char * const alc_slave_sws[] = {
Takashi Iwai2134ea42008-01-10 16:53:55 +01001835 "Front Playback Switch",
1836 "Surround Playback Switch",
1837 "Center Playback Switch",
1838 "LFE Playback Switch",
1839 "Side Playback Switch",
1840 "Headphone Playback Switch",
1841 "Speaker Playback Switch",
1842 "Mono Playback Switch",
Takashi Iwaiedb54a52008-01-29 12:47:02 +01001843 "IEC958 Playback Switch",
Takashi Iwai23033b22009-12-08 12:36:52 +01001844 "Line-Out Playback Switch",
Takashi Iwai3fe45ae2011-08-18 15:13:17 +02001845 "PCM Playback Switch",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001846 NULL,
1847};
1848
1849/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001850 * build control elements
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 */
Takashi Iwai603c4012008-07-30 15:01:44 +02001852
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001853#define NID_MAPPING (-1)
1854
1855#define SUBDEV_SPEAKER_ (0 << 6)
1856#define SUBDEV_HP_ (1 << 6)
1857#define SUBDEV_LINE_ (2 << 6)
1858#define SUBDEV_SPEAKER(x) (SUBDEV_SPEAKER_ | ((x) & 0x3f))
1859#define SUBDEV_HP(x) (SUBDEV_HP_ | ((x) & 0x3f))
1860#define SUBDEV_LINE(x) (SUBDEV_LINE_ | ((x) & 0x3f))
1861
Takashi Iwai603c4012008-07-30 15:01:44 +02001862static void alc_free_kctls(struct hda_codec *codec);
1863
Takashi Iwai67d634c2009-11-16 15:35:59 +01001864#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001865/* additional beep mixers; the actual parameters are overwritten at build */
Takashi Iwaia9111322011-05-02 11:30:18 +02001866static const struct snd_kcontrol_new alc_beep_mixer[] = {
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001867 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
Jaroslav Kysela123c07a2009-10-21 14:48:23 +02001868 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001869 { } /* end */
1870};
Takashi Iwai67d634c2009-11-16 15:35:59 +01001871#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001872
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873static int alc_build_controls(struct hda_codec *codec)
1874{
1875 struct alc_spec *spec = codec->spec;
Takashi Iwai2f44f842010-06-22 11:12:32 +02001876 struct snd_kcontrol *kctl = NULL;
Takashi Iwaia9111322011-05-02 11:30:18 +02001877 const struct snd_kcontrol_new *knew;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001878 int i, j, err;
1879 unsigned int u;
1880 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
1882 for (i = 0; i < spec->num_mixers; i++) {
1883 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1884 if (err < 0)
1885 return err;
1886 }
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001887 if (spec->cap_mixer) {
1888 err = snd_hda_add_new_ctls(codec, spec->cap_mixer);
1889 if (err < 0)
1890 return err;
1891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 if (spec->multiout.dig_out_nid) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02001893 err = snd_hda_create_spdif_out_ctls(codec,
Stephen Warren74b654c2011-06-01 11:14:18 -06001894 spec->multiout.dig_out_nid,
Takashi Iwai9c7f8522006-06-28 15:08:22 +02001895 spec->multiout.dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 if (err < 0)
1897 return err;
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001898 if (!spec->no_analog) {
1899 err = snd_hda_create_spdif_share_sw(codec,
1900 &spec->multiout);
1901 if (err < 0)
1902 return err;
1903 spec->multiout.share_spdif = 1;
1904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 }
1906 if (spec->dig_in_nid) {
1907 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1908 if (err < 0)
1909 return err;
1910 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001911
Takashi Iwai67d634c2009-11-16 15:35:59 +01001912#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001913 /* create beep controls if needed */
1914 if (spec->beep_amp) {
Takashi Iwaia9111322011-05-02 11:30:18 +02001915 const struct snd_kcontrol_new *knew;
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001916 for (knew = alc_beep_mixer; knew->name; knew++) {
1917 struct snd_kcontrol *kctl;
1918 kctl = snd_ctl_new1(knew, codec);
1919 if (!kctl)
1920 return -ENOMEM;
1921 kctl->private_value = spec->beep_amp;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001922 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001923 if (err < 0)
1924 return err;
1925 }
1926 }
Takashi Iwai67d634c2009-11-16 15:35:59 +01001927#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001928
Takashi Iwai2134ea42008-01-10 16:53:55 +01001929 /* if we have no master control, let's create it */
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001930 if (!spec->no_analog &&
1931 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001932 unsigned int vmaster_tlv[4];
Takashi Iwai2134ea42008-01-10 16:53:55 +01001933 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001934 HDA_OUTPUT, vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001935 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001936 vmaster_tlv, alc_slave_vols);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001937 if (err < 0)
1938 return err;
1939 }
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001940 if (!spec->no_analog &&
1941 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
Takashi Iwai2134ea42008-01-10 16:53:55 +01001942 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1943 NULL, alc_slave_sws);
1944 if (err < 0)
1945 return err;
1946 }
1947
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001948 /* assign Capture Source enums to NID */
Takashi Iwaifbe618f2010-06-11 11:24:58 +02001949 if (spec->capsrc_nids || spec->adc_nids) {
1950 kctl = snd_hda_find_mixer_ctl(codec, "Capture Source");
1951 if (!kctl)
1952 kctl = snd_hda_find_mixer_ctl(codec, "Input Source");
1953 for (i = 0; kctl && i < kctl->count; i++) {
Takashi Iwai4c6d72d2011-05-02 11:30:18 +02001954 const hda_nid_t *nids = spec->capsrc_nids;
Takashi Iwaifbe618f2010-06-11 11:24:58 +02001955 if (!nids)
1956 nids = spec->adc_nids;
1957 err = snd_hda_add_nid(codec, kctl, i, nids[i]);
1958 if (err < 0)
1959 return err;
1960 }
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001961 }
Takashi Iwai60a6a842011-07-27 14:01:24 +02001962 if (spec->cap_mixer && spec->adc_nids) {
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001963 const char *kname = kctl ? kctl->id.name : NULL;
1964 for (knew = spec->cap_mixer; knew->name; knew++) {
1965 if (kname && strcmp(knew->name, kname) == 0)
1966 continue;
1967 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1968 for (i = 0; kctl && i < kctl->count; i++) {
1969 err = snd_hda_add_nid(codec, kctl, i,
1970 spec->adc_nids[i]);
1971 if (err < 0)
1972 return err;
1973 }
1974 }
1975 }
1976
1977 /* other nid->control mapping */
1978 for (i = 0; i < spec->num_mixers; i++) {
1979 for (knew = spec->mixers[i]; knew->name; knew++) {
1980 if (knew->iface != NID_MAPPING)
1981 continue;
1982 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1983 if (kctl == NULL)
1984 continue;
1985 u = knew->subdevice;
1986 for (j = 0; j < 4; j++, u >>= 8) {
1987 nid = u & 0x3f;
1988 if (nid == 0)
1989 continue;
1990 switch (u & 0xc0) {
1991 case SUBDEV_SPEAKER_:
1992 nid = spec->autocfg.speaker_pins[nid];
1993 break;
1994 case SUBDEV_LINE_:
1995 nid = spec->autocfg.line_out_pins[nid];
1996 break;
1997 case SUBDEV_HP_:
1998 nid = spec->autocfg.hp_pins[nid];
1999 break;
2000 default:
2001 continue;
2002 }
2003 err = snd_hda_add_nid(codec, kctl, 0, nid);
2004 if (err < 0)
2005 return err;
2006 }
2007 u = knew->private_value;
2008 for (j = 0; j < 4; j++, u >>= 8) {
2009 nid = u & 0xff;
2010 if (nid == 0)
2011 continue;
2012 err = snd_hda_add_nid(codec, kctl, 0, nid);
2013 if (err < 0)
2014 return err;
2015 }
2016 }
2017 }
Takashi Iwaibae84e72010-03-22 08:30:20 +01002018
2019 alc_free_kctls(codec); /* no longer needed */
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 return 0;
2022}
2023
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025/*
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002026 * Common callbacks
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002027 */
Takashi Iwai16ded522005-06-10 19:58:24 +02002028
Takashi Iwai584c0c42011-03-10 12:51:11 +01002029static void alc_init_special_input_src(struct hda_codec *codec);
2030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031static int alc_init(struct hda_codec *codec)
2032{
2033 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002034 unsigned int i;
2035
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02002036 alc_fix_pll(codec);
Takashi Iwai4a79ba32009-04-22 16:31:35 +02002037 alc_auto_init_amp(codec, spec->init_amp);
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02002038
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002039 for (i = 0; i < spec->num_init_verbs; i++)
2040 snd_hda_sequence_write(codec, spec->init_verbs[i]);
Takashi Iwai584c0c42011-03-10 12:51:11 +01002041 alc_init_special_input_src(codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002042
2043 if (spec->init_hook)
2044 spec->init_hook(codec);
2045
Takashi Iwai58701122011-01-13 15:41:45 +01002046 alc_apply_fixup(codec, ALC_FIXUP_ACT_INIT);
2047
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002048 hda_call_check_power_status(codec, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 return 0;
2050}
2051
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002052static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2053{
2054 struct alc_spec *spec = codec->spec;
2055
2056 if (spec->unsol_event)
2057 spec->unsol_event(codec, res);
2058}
2059
Takashi Iwaicb53c622007-08-10 17:21:45 +02002060#ifdef CONFIG_SND_HDA_POWER_SAVE
2061static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2062{
2063 struct alc_spec *spec = codec->spec;
2064 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2065}
2066#endif
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068/*
2069 * Analog playback callbacks
2070 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002071static int alc_playback_pcm_open(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002073 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074{
2075 struct alc_spec *spec = codec->spec;
Takashi Iwai9a081602008-02-12 18:37:26 +01002076 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2077 hinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078}
2079
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002080static int alc_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 struct hda_codec *codec,
2082 unsigned int stream_tag,
2083 unsigned int format,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002084 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085{
2086 struct alc_spec *spec = codec->spec;
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002087 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2088 stream_tag, format, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089}
2090
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002091static int alc_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002093 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
2095 struct alc_spec *spec = codec->spec;
2096 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2097}
2098
2099/*
2100 * Digital out
2101 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002102static int alc_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002104 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
2106 struct alc_spec *spec = codec->spec;
2107 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2108}
2109
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002110static int alc_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002111 struct hda_codec *codec,
2112 unsigned int stream_tag,
2113 unsigned int format,
2114 struct snd_pcm_substream *substream)
2115{
2116 struct alc_spec *spec = codec->spec;
2117 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2118 stream_tag, format, substream);
2119}
2120
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002121static int alc_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
Takashi Iwai9b5f12e2009-02-13 11:47:37 +01002122 struct hda_codec *codec,
2123 struct snd_pcm_substream *substream)
2124{
2125 struct alc_spec *spec = codec->spec;
2126 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2127}
2128
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002129static int alc_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002131 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
2133 struct alc_spec *spec = codec->spec;
2134 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2135}
2136
2137/*
2138 * Analog capture
2139 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002140static int alc_alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 struct hda_codec *codec,
2142 unsigned int stream_tag,
2143 unsigned int format,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002144 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145{
2146 struct alc_spec *spec = codec->spec;
2147
Takashi Iwai63300792008-01-24 15:31:36 +01002148 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 stream_tag, 0, format);
2150 return 0;
2151}
2152
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002153static int alc_alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002155 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
2157 struct alc_spec *spec = codec->spec;
2158
Takashi Iwai888afa12008-03-18 09:57:50 +01002159 snd_hda_codec_cleanup_stream(codec,
2160 spec->adc_nids[substream->number + 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 return 0;
2162}
2163
Takashi Iwai840b64c2010-07-13 22:49:01 +02002164/* analog capture with dynamic dual-adc changes */
Takashi Iwai21268962011-07-07 15:01:13 +02002165static int dyn_adc_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai840b64c2010-07-13 22:49:01 +02002166 struct hda_codec *codec,
2167 unsigned int stream_tag,
2168 unsigned int format,
2169 struct snd_pcm_substream *substream)
2170{
2171 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +02002172 spec->cur_adc = spec->adc_nids[spec->dyn_adc_idx[spec->cur_mux[0]]];
Takashi Iwai840b64c2010-07-13 22:49:01 +02002173 spec->cur_adc_stream_tag = stream_tag;
2174 spec->cur_adc_format = format;
2175 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
2176 return 0;
2177}
2178
Takashi Iwai21268962011-07-07 15:01:13 +02002179static int dyn_adc_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
Takashi Iwai840b64c2010-07-13 22:49:01 +02002180 struct hda_codec *codec,
2181 struct snd_pcm_substream *substream)
2182{
2183 struct alc_spec *spec = codec->spec;
2184 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
2185 spec->cur_adc = 0;
2186 return 0;
2187}
2188
Takashi Iwai21268962011-07-07 15:01:13 +02002189static const struct hda_pcm_stream dyn_adc_pcm_analog_capture = {
Takashi Iwai840b64c2010-07-13 22:49:01 +02002190 .substreams = 1,
2191 .channels_min = 2,
2192 .channels_max = 2,
2193 .nid = 0, /* fill later */
2194 .ops = {
Takashi Iwai21268962011-07-07 15:01:13 +02002195 .prepare = dyn_adc_capture_pcm_prepare,
2196 .cleanup = dyn_adc_capture_pcm_cleanup
Takashi Iwai840b64c2010-07-13 22:49:01 +02002197 },
2198};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
2200/*
2201 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002202static const struct hda_pcm_stream alc_pcm_analog_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 .substreams = 1,
2204 .channels_min = 2,
2205 .channels_max = 8,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002206 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002208 .open = alc_playback_pcm_open,
2209 .prepare = alc_playback_pcm_prepare,
2210 .cleanup = alc_playback_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 },
2212};
2213
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002214static const struct hda_pcm_stream alc_pcm_analog_capture = {
Takashi Iwai63300792008-01-24 15:31:36 +01002215 .substreams = 1,
2216 .channels_min = 2,
2217 .channels_max = 2,
2218 /* NID is set in alc_build_pcms */
2219};
2220
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002221static const struct hda_pcm_stream alc_pcm_analog_alt_playback = {
Takashi Iwai63300792008-01-24 15:31:36 +01002222 .substreams = 1,
2223 .channels_min = 2,
2224 .channels_max = 2,
2225 /* NID is set in alc_build_pcms */
2226};
2227
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002228static const struct hda_pcm_stream alc_pcm_analog_alt_capture = {
Takashi Iwai63300792008-01-24 15:31:36 +01002229 .substreams = 2, /* can be overridden */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 .channels_min = 2,
2231 .channels_max = 2,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002232 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002234 .prepare = alc_alt_capture_pcm_prepare,
2235 .cleanup = alc_alt_capture_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 },
2237};
2238
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002239static const struct hda_pcm_stream alc_pcm_digital_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 .substreams = 1,
2241 .channels_min = 2,
2242 .channels_max = 2,
2243 /* NID is set in alc_build_pcms */
2244 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002245 .open = alc_dig_playback_pcm_open,
2246 .close = alc_dig_playback_pcm_close,
2247 .prepare = alc_dig_playback_pcm_prepare,
2248 .cleanup = alc_dig_playback_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 },
2250};
2251
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002252static const struct hda_pcm_stream alc_pcm_digital_capture = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 .substreams = 1,
2254 .channels_min = 2,
2255 .channels_max = 2,
2256 /* NID is set in alc_build_pcms */
2257};
2258
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002259/* Used by alc_build_pcms to flag that a PCM has no playback stream */
Takashi Iwaia9111322011-05-02 11:30:18 +02002260static const struct hda_pcm_stream alc_pcm_null_stream = {
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002261 .substreams = 0,
2262 .channels_min = 0,
2263 .channels_max = 0,
2264};
2265
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266static int alc_build_pcms(struct hda_codec *codec)
2267{
2268 struct alc_spec *spec = codec->spec;
2269 struct hda_pcm *info = spec->pcm_rec;
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002270 const struct hda_pcm_stream *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 int i;
2272
2273 codec->num_pcms = 1;
2274 codec->pcm_info = info;
2275
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002276 if (spec->no_analog)
2277 goto skip_analog;
2278
Takashi Iwai812a2cc2009-05-16 10:00:49 +02002279 snprintf(spec->stream_name_analog, sizeof(spec->stream_name_analog),
2280 "%s Analog", codec->chip_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 info->name = spec->stream_name_analog;
Kailang Yang274693f2009-12-03 10:07:50 +01002282
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002283 if (spec->multiout.dac_nids > 0) {
2284 p = spec->stream_analog_playback;
2285 if (!p)
2286 p = &alc_pcm_analog_playback;
2287 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002288 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2289 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002290 if (spec->adc_nids) {
2291 p = spec->stream_analog_capture;
Takashi Iwai21268962011-07-07 15:01:13 +02002292 if (!p) {
2293 if (spec->dyn_adc_switch)
2294 p = &dyn_adc_pcm_analog_capture;
2295 else
2296 p = &alc_pcm_analog_capture;
2297 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002298 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002299 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Takashi Iwai4a471b72005-12-07 13:56:29 +01002302 if (spec->channel_mode) {
2303 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2304 for (i = 0; i < spec->num_channel_mode; i++) {
2305 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2306 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 }
2309 }
2310
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002311 skip_analog:
Takashi Iwaie08a0072006-09-07 17:52:14 +02002312 /* SPDIF for stream index #1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
Takashi Iwai812a2cc2009-05-16 10:00:49 +02002314 snprintf(spec->stream_name_digital,
2315 sizeof(spec->stream_name_digital),
2316 "%s Digital", codec->chip_name);
Takashi Iwaie08a0072006-09-07 17:52:14 +02002317 codec->num_pcms = 2;
Wu Fengguangb25c9da2009-02-06 15:02:27 +08002318 codec->slave_dig_outs = spec->multiout.slave_dig_outs;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002319 info = spec->pcm_rec + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 info->name = spec->stream_name_digital;
Takashi Iwai8c441982009-01-20 18:30:20 +01002321 if (spec->dig_out_type)
2322 info->pcm_type = spec->dig_out_type;
2323 else
2324 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002325 if (spec->multiout.dig_out_nid) {
2326 p = spec->stream_digital_playback;
2327 if (!p)
2328 p = &alc_pcm_digital_playback;
2329 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2331 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002332 if (spec->dig_in_nid) {
2333 p = spec->stream_digital_capture;
2334 if (!p)
2335 p = &alc_pcm_digital_capture;
2336 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2338 }
Takashi Iwai963f8032008-08-11 10:04:40 +02002339 /* FIXME: do we need this for all Realtek codec models? */
2340 codec->spdif_status_reset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 }
2342
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002343 if (spec->no_analog)
2344 return 0;
2345
Takashi Iwaie08a0072006-09-07 17:52:14 +02002346 /* If the use of more than one ADC is requested for the current
2347 * model, configure a second analog capture-only PCM.
2348 */
2349 /* Additional Analaog capture for index #2 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002350 if (spec->alt_dac_nid || spec->num_adc_nids > 1) {
Takashi Iwaie08a0072006-09-07 17:52:14 +02002351 codec->num_pcms = 3;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002352 info = spec->pcm_rec + 2;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002353 info->name = spec->stream_name_analog;
Takashi Iwai63300792008-01-24 15:31:36 +01002354 if (spec->alt_dac_nid) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002355 p = spec->stream_analog_alt_playback;
2356 if (!p)
2357 p = &alc_pcm_analog_alt_playback;
2358 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Takashi Iwai63300792008-01-24 15:31:36 +01002359 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2360 spec->alt_dac_nid;
2361 } else {
2362 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2363 alc_pcm_null_stream;
2364 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2365 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002366 if (spec->num_adc_nids > 1) {
2367 p = spec->stream_analog_alt_capture;
2368 if (!p)
2369 p = &alc_pcm_analog_alt_capture;
2370 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Takashi Iwai63300792008-01-24 15:31:36 +01002371 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
2372 spec->adc_nids[1];
2373 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
2374 spec->num_adc_nids - 1;
2375 } else {
2376 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2377 alc_pcm_null_stream;
2378 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002379 }
2380 }
2381
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 return 0;
2383}
2384
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002385static inline void alc_shutup(struct hda_codec *codec)
2386{
Takashi Iwai1c716152011-04-07 10:37:16 +02002387 struct alc_spec *spec = codec->spec;
2388
2389 if (spec && spec->shutup)
2390 spec->shutup(codec);
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002391 snd_hda_shutup_pins(codec);
2392}
2393
Takashi Iwai603c4012008-07-30 15:01:44 +02002394static void alc_free_kctls(struct hda_codec *codec)
2395{
2396 struct alc_spec *spec = codec->spec;
2397
2398 if (spec->kctls.list) {
2399 struct snd_kcontrol_new *kctl = spec->kctls.list;
2400 int i;
2401 for (i = 0; i < spec->kctls.used; i++)
2402 kfree(kctl[i].name);
2403 }
2404 snd_array_free(&spec->kctls);
2405}
2406
Takashi Iwai23c09b02011-08-19 09:05:35 +02002407static void alc_free_bind_ctls(struct hda_codec *codec)
2408{
2409 struct alc_spec *spec = codec->spec;
2410 if (spec->bind_ctls.list) {
2411 struct hda_bind_ctls **ctl = spec->bind_ctls.list;
2412 int i;
2413 for (i = 0; i < spec->bind_ctls.used; i++)
2414 kfree(ctl[i]);
2415 }
2416 snd_array_free(&spec->bind_ctls);
2417}
2418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419static void alc_free(struct hda_codec *codec)
2420{
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002421 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002422
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002423 if (!spec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002424 return;
2425
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002426 alc_shutup(codec);
Takashi Iwaicd372fb2011-03-03 14:40:14 +01002427 snd_hda_input_jack_free(codec);
Takashi Iwai603c4012008-07-30 15:01:44 +02002428 alc_free_kctls(codec);
Takashi Iwai23c09b02011-08-19 09:05:35 +02002429 alc_free_bind_ctls(codec);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002430 kfree(spec);
Kusanagi Kouichi680cd532009-02-05 00:00:58 +09002431 snd_hda_detach_beep_device(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432}
2433
Hector Martinf5de24b2009-12-20 22:51:31 +01002434#ifdef CONFIG_SND_HDA_POWER_SAVE
Daniel T Chenc97259d2009-12-27 18:52:08 -05002435static void alc_power_eapd(struct hda_codec *codec)
2436{
Takashi Iwai691f1fc2011-04-07 10:31:43 +02002437 alc_auto_setup_eapd(codec, false);
Daniel T Chenc97259d2009-12-27 18:52:08 -05002438}
2439
Hector Martinf5de24b2009-12-20 22:51:31 +01002440static int alc_suspend(struct hda_codec *codec, pm_message_t state)
2441{
2442 struct alc_spec *spec = codec->spec;
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002443 alc_shutup(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +01002444 if (spec && spec->power_hook)
Daniel T Chenc97259d2009-12-27 18:52:08 -05002445 spec->power_hook(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +01002446 return 0;
2447}
2448#endif
2449
Takashi Iwai2a439522011-07-26 09:52:50 +02002450#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +01002451static int alc_resume(struct hda_codec *codec)
2452{
Takashi Iwai1c716152011-04-07 10:37:16 +02002453 msleep(150); /* to avoid pop noise */
Takashi Iwaie044c392008-10-27 16:56:24 +01002454 codec->patch_ops.init(codec);
2455 snd_hda_codec_resume_amp(codec);
2456 snd_hda_codec_resume_cache(codec);
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002457 hda_call_check_power_status(codec, 0x01);
Takashi Iwaie044c392008-10-27 16:56:24 +01002458 return 0;
2459}
Takashi Iwaie044c392008-10-27 16:56:24 +01002460#endif
2461
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462/*
2463 */
Takashi Iwaia9111322011-05-02 11:30:18 +02002464static const struct hda_codec_ops alc_patch_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 .build_controls = alc_build_controls,
2466 .build_pcms = alc_build_pcms,
2467 .init = alc_init,
2468 .free = alc_free,
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002469 .unsol_event = alc_unsol_event,
Takashi Iwai2a439522011-07-26 09:52:50 +02002470#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +01002471 .resume = alc_resume,
2472#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +02002473#ifdef CONFIG_SND_HDA_POWER_SAVE
Hector Martinf5de24b2009-12-20 22:51:31 +01002474 .suspend = alc_suspend,
Takashi Iwaicb53c622007-08-10 17:21:45 +02002475 .check_power_status = alc_check_power_status,
2476#endif
Daniel T Chenc97259d2009-12-27 18:52:08 -05002477 .reboot_notify = alc_shutup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478};
2479
Kailang Yangc027ddc2010-03-19 11:33:06 +01002480/* replace the codec chip_name with the given string */
2481static int alc_codec_rename(struct hda_codec *codec, const char *name)
2482{
2483 kfree(codec->chip_name);
2484 codec->chip_name = kstrdup(name, GFP_KERNEL);
2485 if (!codec->chip_name) {
2486 alc_free(codec);
2487 return -ENOMEM;
2488 }
2489 return 0;
2490}
2491
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002492/*
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002493 * Rename codecs appropriately from COEF value
2494 */
2495struct alc_codec_rename_table {
2496 unsigned int vendor_id;
2497 unsigned short coef_mask;
2498 unsigned short coef_bits;
2499 const char *name;
2500};
2501
2502static struct alc_codec_rename_table rename_tbl[] = {
2503 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
2504 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
2505 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
2506 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
2507 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
2508 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
2509 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
2510 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
2511 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
2512 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
2513 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
2514 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
2515 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
2516 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
2517 { } /* terminator */
2518};
2519
2520static int alc_codec_rename_from_preset(struct hda_codec *codec)
2521{
2522 const struct alc_codec_rename_table *p;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002523
2524 for (p = rename_tbl; p->vendor_id; p++) {
2525 if (p->vendor_id != codec->vendor_id)
2526 continue;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02002527 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002528 return alc_codec_rename(codec, p->name);
2529 }
2530 return 0;
2531}
2532
2533/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002534 * Automatic parse of I/O pins from the BIOS configuration
2535 */
2536
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002537enum {
2538 ALC_CTL_WIDGET_VOL,
2539 ALC_CTL_WIDGET_MUTE,
2540 ALC_CTL_BIND_MUTE,
Takashi Iwai23c09b02011-08-19 09:05:35 +02002541 ALC_CTL_BIND_VOL,
2542 ALC_CTL_BIND_SW,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002543};
Takashi Iwai1d045db2011-07-07 18:23:21 +02002544static const struct snd_kcontrol_new alc_control_templates[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002545 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2546 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Takashi Iwai985be542005-11-02 18:26:49 +01002547 HDA_BIND_MUTE(NULL, 0, 0, 0),
Takashi Iwai23c09b02011-08-19 09:05:35 +02002548 HDA_BIND_VOL(NULL, 0),
2549 HDA_BIND_SW(NULL, 0),
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002550};
2551
2552/* add dynamic controls */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002553static int add_control(struct alc_spec *spec, int type, const char *name,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002554 int cidx, unsigned long val)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002555{
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002556 struct snd_kcontrol_new *knew;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002557
Takashi Iwaice764ab2011-04-27 16:35:23 +02002558 knew = alc_kcontrol_new(spec);
Takashi Iwai603c4012008-07-30 15:01:44 +02002559 if (!knew)
2560 return -ENOMEM;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002561 *knew = alc_control_templates[type];
Paulo Marques543537b2005-06-23 00:09:02 -07002562 knew->name = kstrdup(name, GFP_KERNEL);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002563 if (!knew->name)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002564 return -ENOMEM;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002565 knew->index = cidx;
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002566 if (get_amp_nid_(val))
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002567 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002568 knew->private_value = val;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002569 return 0;
2570}
2571
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002572static int add_control_with_pfx(struct alc_spec *spec, int type,
2573 const char *pfx, const char *dir,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002574 const char *sfx, int cidx, unsigned long val)
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002575{
2576 char name[32];
2577 snprintf(name, sizeof(name), "%s %s %s", pfx, dir, sfx);
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002578 return add_control(spec, type, name, cidx, val);
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002579}
2580
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002581#define add_pb_vol_ctrl(spec, type, pfx, val) \
2582 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val)
2583#define add_pb_sw_ctrl(spec, type, pfx, val) \
2584 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val)
2585#define __add_pb_vol_ctrl(spec, type, pfx, cidx, val) \
2586 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val)
2587#define __add_pb_sw_ctrl(spec, type, pfx, cidx, val) \
2588 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val)
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002589
Takashi Iwai23c09b02011-08-19 09:05:35 +02002590static const char * const channel_name[4] = {
2591 "Front", "Surround", "CLFE", "Side"
2592};
2593
Takashi Iwai6843ca12011-06-24 11:03:58 +02002594static const char *alc_get_line_out_pfx(struct alc_spec *spec, int ch,
2595 bool can_be_master, int *index)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002596{
Takashi Iwaice764ab2011-04-27 16:35:23 +02002597 struct auto_pin_cfg *cfg = &spec->autocfg;
2598
Takashi Iwai6843ca12011-06-24 11:03:58 +02002599 *index = 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02002600 if (cfg->line_outs == 1 && !spec->multi_ios &&
2601 !cfg->hp_outs && !cfg->speaker_outs && can_be_master)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002602 return "Master";
2603
2604 switch (cfg->line_out_type) {
2605 case AUTO_PIN_SPEAKER_OUT:
David Henningssonebbeb3d2011-03-04 14:08:30 +01002606 if (cfg->line_outs == 1)
2607 return "Speaker";
2608 break;
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002609 case AUTO_PIN_HP_OUT:
Takashi Iwai6843ca12011-06-24 11:03:58 +02002610 /* for multi-io case, only the primary out */
2611 if (ch && spec->multi_ios)
2612 break;
2613 *index = ch;
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002614 return "Headphone";
2615 default:
Takashi Iwaice764ab2011-04-27 16:35:23 +02002616 if (cfg->line_outs == 1 && !spec->multi_ios)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002617 return "PCM";
2618 break;
2619 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02002620 if (snd_BUG_ON(ch >= ARRAY_SIZE(channel_name)))
2621 return "PCM";
2622
2623 return channel_name[ch];
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002624}
2625
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002626/* create input playback/capture controls for the given pin */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002627static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002628 const char *ctlname, int ctlidx,
Kailang Yangdf694da2005-12-05 19:42:22 +01002629 int idx, hda_nid_t mix_nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002630{
Kailang Yangdf694da2005-12-05 19:42:22 +01002631 int err;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002632
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002633 err = __add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, ctlname, ctlidx,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002634 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2635 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002636 return err;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002637 err = __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, ctlidx,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002638 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2639 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002640 return err;
2641 return 0;
2642}
2643
Takashi Iwai05f5f472009-08-25 13:10:18 +02002644static int alc_is_input_pin(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002645{
Takashi Iwai05f5f472009-08-25 13:10:18 +02002646 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2647 return (pincap & AC_PINCAP_IN) != 0;
2648}
2649
Takashi Iwai1d045db2011-07-07 18:23:21 +02002650/* Parse the codec tree and retrieve ADCs and corresponding capsrc MUXs */
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002651static int alc_auto_fill_adc_caps(struct hda_codec *codec)
Takashi Iwaib7821702011-07-06 15:12:46 +02002652{
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002653 struct alc_spec *spec = codec->spec;
Takashi Iwaib7821702011-07-06 15:12:46 +02002654 hda_nid_t nid;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002655 hda_nid_t *adc_nids = spec->private_adc_nids;
2656 hda_nid_t *cap_nids = spec->private_capsrc_nids;
2657 int max_nums = ARRAY_SIZE(spec->private_adc_nids);
2658 bool indep_capsrc = false;
Takashi Iwaib7821702011-07-06 15:12:46 +02002659 int i, nums = 0;
2660
2661 nid = codec->start_nid;
2662 for (i = 0; i < codec->num_nodes; i++, nid++) {
2663 hda_nid_t src;
2664 const hda_nid_t *list;
2665 unsigned int caps = get_wcaps(codec, nid);
2666 int type = get_wcaps_type(caps);
2667
2668 if (type != AC_WID_AUD_IN || (caps & AC_WCAP_DIGITAL))
2669 continue;
2670 adc_nids[nums] = nid;
2671 cap_nids[nums] = nid;
2672 src = nid;
2673 for (;;) {
2674 int n;
2675 type = get_wcaps_type(get_wcaps(codec, src));
2676 if (type == AC_WID_PIN)
2677 break;
2678 if (type == AC_WID_AUD_SEL) {
2679 cap_nids[nums] = src;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002680 indep_capsrc = true;
Takashi Iwaib7821702011-07-06 15:12:46 +02002681 break;
2682 }
2683 n = snd_hda_get_conn_list(codec, src, &list);
2684 if (n > 1) {
2685 cap_nids[nums] = src;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002686 indep_capsrc = true;
Takashi Iwaib7821702011-07-06 15:12:46 +02002687 break;
2688 } else if (n != 1)
2689 break;
2690 src = *list;
2691 }
2692 if (++nums >= max_nums)
2693 break;
2694 }
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002695 spec->adc_nids = spec->private_adc_nids;
Takashi Iwai21268962011-07-07 15:01:13 +02002696 spec->capsrc_nids = spec->private_capsrc_nids;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002697 spec->num_adc_nids = nums;
Takashi Iwaib7821702011-07-06 15:12:46 +02002698 return nums;
2699}
2700
Takashi Iwai05f5f472009-08-25 13:10:18 +02002701/* create playback/capture controls for input pins */
Takashi Iwaib7821702011-07-06 15:12:46 +02002702static int alc_auto_create_input_ctls(struct hda_codec *codec)
Takashi Iwai05f5f472009-08-25 13:10:18 +02002703{
2704 struct alc_spec *spec = codec->spec;
Takashi Iwaib7821702011-07-06 15:12:46 +02002705 const struct auto_pin_cfg *cfg = &spec->autocfg;
2706 hda_nid_t mixer = spec->mixer_nid;
Herton Ronaldo Krzesinski61b9b9b2009-01-28 09:16:33 -02002707 struct hda_input_mux *imux = &spec->private_imux[0];
Takashi Iwaib7821702011-07-06 15:12:46 +02002708 int num_adcs;
Takashi Iwaib7821702011-07-06 15:12:46 +02002709 int i, c, err, idx, type_idx = 0;
David Henningsson5322bf22011-01-05 11:03:56 +01002710 const char *prev_label = NULL;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002711
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002712 num_adcs = alc_auto_fill_adc_caps(codec);
Takashi Iwaib7821702011-07-06 15:12:46 +02002713 if (num_adcs < 0)
2714 return 0;
2715
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002716 for (i = 0; i < cfg->num_inputs; i++) {
Takashi Iwai05f5f472009-08-25 13:10:18 +02002717 hda_nid_t pin;
Takashi Iwai10a20af2010-09-09 16:28:02 +02002718 const char *label;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002719
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002720 pin = cfg->inputs[i].pin;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002721 if (!alc_is_input_pin(codec, pin))
2722 continue;
2723
David Henningsson5322bf22011-01-05 11:03:56 +01002724 label = hda_get_autocfg_input_label(codec, cfg, i);
2725 if (prev_label && !strcmp(label, prev_label))
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002726 type_idx++;
2727 else
2728 type_idx = 0;
David Henningsson5322bf22011-01-05 11:03:56 +01002729 prev_label = label;
2730
Takashi Iwai05f5f472009-08-25 13:10:18 +02002731 if (mixer) {
2732 idx = get_connection_index(codec, mixer, pin);
2733 if (idx >= 0) {
2734 err = new_analog_input(spec, pin,
Takashi Iwai10a20af2010-09-09 16:28:02 +02002735 label, type_idx,
2736 idx, mixer);
Takashi Iwai05f5f472009-08-25 13:10:18 +02002737 if (err < 0)
2738 return err;
2739 }
2740 }
2741
Takashi Iwaib7821702011-07-06 15:12:46 +02002742 for (c = 0; c < num_adcs; c++) {
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002743 hda_nid_t cap = spec->capsrc_nids ?
2744 spec->capsrc_nids[c] : spec->adc_nids[c];
2745 idx = get_connection_index(codec, cap, pin);
Takashi Iwaib7821702011-07-06 15:12:46 +02002746 if (idx >= 0) {
Takashi Iwai21268962011-07-07 15:01:13 +02002747 spec->imux_pins[imux->num_items] = pin;
Takashi Iwaib7821702011-07-06 15:12:46 +02002748 snd_hda_add_imux_item(imux, label, idx, NULL);
2749 break;
2750 }
2751 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002752 }
Takashi Iwai21268962011-07-07 15:01:13 +02002753
2754 spec->num_mux_defs = 1;
2755 spec->input_mux = imux;
2756
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002757 return 0;
2758}
2759
Takashi Iwaif6c7e542008-02-12 18:32:23 +01002760static void alc_set_pin_output(struct hda_codec *codec, hda_nid_t nid,
2761 unsigned int pin_type)
2762{
2763 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2764 pin_type);
2765 /* unmute pin */
Takashi Iwai44c02402011-07-08 15:14:19 +02002766 if (nid_has_mute(codec, nid, HDA_OUTPUT))
2767 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaid260cdf2008-02-13 17:19:35 +01002768 AMP_OUT_UNMUTE);
Takashi Iwaif6c7e542008-02-12 18:32:23 +01002769}
2770
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02002771static int get_pin_type(int line_out_type)
2772{
2773 if (line_out_type == AUTO_PIN_HP_OUT)
2774 return PIN_HP;
2775 else
2776 return PIN_OUT;
2777}
2778
Takashi Iwai0a7f5322011-07-06 15:15:12 +02002779static void alc_auto_init_analog_input(struct hda_codec *codec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002780{
2781 struct alc_spec *spec = codec->spec;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002782 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002783 int i;
2784
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002785 for (i = 0; i < cfg->num_inputs; i++) {
2786 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002787 if (alc_is_input_pin(codec, nid)) {
Takashi Iwai30ea0982010-09-16 18:47:56 +02002788 alc_set_input_pin(codec, nid, cfg->inputs[i].type);
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002789 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002790 snd_hda_codec_write(codec, nid, 0,
2791 AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002792 AMP_OUT_MUTE);
2793 }
2794 }
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002795
2796 /* mute all loopback inputs */
2797 if (spec->mixer_nid) {
2798 int nums = snd_hda_get_conn_list(codec, spec->mixer_nid, NULL);
2799 for (i = 0; i < nums; i++)
2800 snd_hda_codec_write(codec, spec->mixer_nid, 0,
2801 AC_VERB_SET_AMP_GAIN_MUTE,
2802 AMP_IN_MUTE(i));
2803 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002804}
2805
Takashi Iwai7085ec12009-10-02 09:03:58 +02002806/* convert from MIX nid to DAC */
Takashi Iwai604401a2011-04-27 15:14:23 +02002807static hda_nid_t alc_auto_mix_to_dac(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002808{
Takashi Iwai604401a2011-04-27 15:14:23 +02002809 hda_nid_t list[5];
Takashi Iwai1304ac82011-04-06 15:16:21 +02002810 int i, num;
2811
Takashi Iwaiafcd5512011-07-08 11:07:59 +02002812 if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_AUD_OUT)
2813 return nid;
Takashi Iwai1304ac82011-04-06 15:16:21 +02002814 num = snd_hda_get_connections(codec, nid, list, ARRAY_SIZE(list));
2815 for (i = 0; i < num; i++) {
2816 if (get_wcaps_type(get_wcaps(codec, list[i])) == AC_WID_AUD_OUT)
2817 return list[i];
2818 }
2819 return 0;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002820}
2821
Takashi Iwai604401a2011-04-27 15:14:23 +02002822/* go down to the selector widget before the mixer */
2823static hda_nid_t alc_go_down_to_selector(struct hda_codec *codec, hda_nid_t pin)
2824{
2825 hda_nid_t srcs[5];
2826 int num = snd_hda_get_connections(codec, pin, srcs,
2827 ARRAY_SIZE(srcs));
2828 if (num != 1 ||
2829 get_wcaps_type(get_wcaps(codec, srcs[0])) != AC_WID_AUD_SEL)
2830 return pin;
2831 return srcs[0];
2832}
2833
Takashi Iwai7085ec12009-10-02 09:03:58 +02002834/* get MIX nid connected to the given pin targeted to DAC */
Takashi Iwai604401a2011-04-27 15:14:23 +02002835static hda_nid_t alc_auto_dac_to_mix(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai7085ec12009-10-02 09:03:58 +02002836 hda_nid_t dac)
2837{
David Henningssoncc1c4522010-11-24 14:17:47 +01002838 hda_nid_t mix[5];
Takashi Iwai7085ec12009-10-02 09:03:58 +02002839 int i, num;
2840
Takashi Iwai604401a2011-04-27 15:14:23 +02002841 pin = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002842 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2843 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02002844 if (alc_auto_mix_to_dac(codec, mix[i]) == dac)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002845 return mix[i];
2846 }
2847 return 0;
2848}
2849
Takashi Iwaice764ab2011-04-27 16:35:23 +02002850/* select the connection from pin to DAC if needed */
2851static int alc_auto_select_dac(struct hda_codec *codec, hda_nid_t pin,
2852 hda_nid_t dac)
2853{
2854 hda_nid_t mix[5];
2855 int i, num;
2856
2857 pin = alc_go_down_to_selector(codec, pin);
2858 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2859 if (num < 2)
2860 return 0;
2861 for (i = 0; i < num; i++) {
2862 if (alc_auto_mix_to_dac(codec, mix[i]) == dac) {
2863 snd_hda_codec_update_cache(codec, pin, 0,
2864 AC_VERB_SET_CONNECT_SEL, i);
2865 return 0;
2866 }
2867 }
2868 return 0;
2869}
2870
Takashi Iwai7085ec12009-10-02 09:03:58 +02002871/* look for an empty DAC slot */
Takashi Iwai604401a2011-04-27 15:14:23 +02002872static hda_nid_t alc_auto_look_for_dac(struct hda_codec *codec, hda_nid_t pin)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002873{
2874 struct alc_spec *spec = codec->spec;
2875 hda_nid_t srcs[5];
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002876 int i, num;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002877
Takashi Iwai604401a2011-04-27 15:14:23 +02002878 pin = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002879 num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs));
Takashi Iwai7085ec12009-10-02 09:03:58 +02002880 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02002881 hda_nid_t nid = alc_auto_mix_to_dac(codec, srcs[i]);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002882 if (!nid)
2883 continue;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002884 if (found_in_nid_list(nid, spec->multiout.dac_nids,
2885 spec->multiout.num_dacs))
2886 continue;
Takashi Iwaic2674682011-08-24 17:57:44 +02002887 if (found_in_nid_list(nid, spec->multiout.hp_out_nid,
2888 ARRAY_SIZE(spec->multiout.hp_out_nid)))
2889 continue;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002890 if (found_in_nid_list(nid, spec->multiout.extra_out_nid,
2891 ARRAY_SIZE(spec->multiout.extra_out_nid)))
2892 continue;
2893 return nid;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002894 }
2895 return 0;
2896}
2897
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002898static hda_nid_t get_dac_if_single(struct hda_codec *codec, hda_nid_t pin)
2899{
2900 hda_nid_t sel = alc_go_down_to_selector(codec, pin);
2901 if (snd_hda_get_conn_list(codec, sel, NULL) == 1)
2902 return alc_auto_look_for_dac(codec, pin);
2903 return 0;
2904}
2905
Takashi Iwaic2674682011-08-24 17:57:44 +02002906static int alc_auto_fill_extra_dacs(struct hda_codec *codec, int num_outs,
2907 const hda_nid_t *pins, hda_nid_t *dacs)
2908{
2909 int i;
2910
2911 if (num_outs && !dacs[0]) {
2912 dacs[0] = alc_auto_look_for_dac(codec, pins[0]);
2913 if (!dacs[0])
2914 return 0;
2915 }
2916
2917 for (i = 1; i < num_outs; i++)
2918 dacs[i] = get_dac_if_single(codec, pins[i]);
2919 for (i = 1; i < num_outs; i++) {
2920 if (!dacs[i])
2921 dacs[i] = alc_auto_look_for_dac(codec, pins[i]);
2922 }
2923 return 0;
2924}
2925
2926static int alc_auto_fill_multi_ios(struct hda_codec *codec,
2927 unsigned int location);
2928
Takashi Iwai7085ec12009-10-02 09:03:58 +02002929/* fill in the dac_nids table from the parsed pin configuration */
Takashi Iwai343a04b2011-07-06 14:28:39 +02002930static int alc_auto_fill_dac_nids(struct hda_codec *codec)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002931{
2932 struct alc_spec *spec = codec->spec;
Takashi Iwaicb053a82011-06-27 11:32:07 +02002933 const struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai350434e2011-06-30 21:29:12 +02002934 bool redone = false;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002935 int i;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002936
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002937 again:
Takashi Iwai8f398ae2011-07-23 18:57:11 +02002938 /* set num_dacs once to full for alc_auto_look_for_dac() */
2939 spec->multiout.num_dacs = cfg->line_outs;
Takashi Iwaie23832a2011-08-23 18:16:56 +02002940 spec->multiout.hp_out_nid[0] = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002941 spec->multiout.extra_out_nid[0] = 0;
2942 memset(spec->private_dac_nids, 0, sizeof(spec->private_dac_nids));
2943 spec->multiout.dac_nids = spec->private_dac_nids;
2944
2945 /* fill hard-wired DACs first */
2946 if (!redone) {
2947 for (i = 0; i < cfg->line_outs; i++)
2948 spec->private_dac_nids[i] =
2949 get_dac_if_single(codec, cfg->line_out_pins[i]);
2950 if (cfg->hp_outs)
Takashi Iwaie23832a2011-08-23 18:16:56 +02002951 spec->multiout.hp_out_nid[0] =
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002952 get_dac_if_single(codec, cfg->hp_pins[0]);
2953 if (cfg->speaker_outs)
2954 spec->multiout.extra_out_nid[0] =
2955 get_dac_if_single(codec, cfg->speaker_pins[0]);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002956 }
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002957
2958 for (i = 0; i < cfg->line_outs; i++) {
2959 hda_nid_t pin = cfg->line_out_pins[i];
2960 if (spec->private_dac_nids[i])
2961 continue;
2962 spec->private_dac_nids[i] = alc_auto_look_for_dac(codec, pin);
2963 if (!spec->private_dac_nids[i] && !redone) {
2964 /* if we can't find primary DACs, re-probe without
2965 * checking the hard-wired DACs
2966 */
2967 redone = true;
2968 goto again;
2969 }
2970 }
2971
Takashi Iwai8f398ae2011-07-23 18:57:11 +02002972 /* re-count num_dacs and squash invalid entries */
2973 spec->multiout.num_dacs = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002974 for (i = 0; i < cfg->line_outs; i++) {
2975 if (spec->private_dac_nids[i])
2976 spec->multiout.num_dacs++;
2977 else
2978 memmove(spec->private_dac_nids + i,
2979 spec->private_dac_nids + i + 1,
2980 sizeof(hda_nid_t) * (cfg->line_outs - i - 1));
2981 }
2982
Takashi Iwaic2674682011-08-24 17:57:44 +02002983 if (cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
2984 /* try to fill multi-io first */
2985 unsigned int location, defcfg;
2986 int num_pins;
Takashi Iwaibb8bf4d2011-07-06 13:07:54 +02002987
Takashi Iwaic2674682011-08-24 17:57:44 +02002988 defcfg = snd_hda_codec_get_pincfg(codec, cfg->line_out_pins[0]);
2989 location = get_defcfg_location(defcfg);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002990
Takashi Iwaic2674682011-08-24 17:57:44 +02002991 num_pins = alc_auto_fill_multi_ios(codec, location);
2992 if (num_pins > 0) {
2993 spec->multi_ios = num_pins;
2994 spec->ext_channel_count = 2;
2995 spec->multiout.num_dacs = num_pins + 1;
2996 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02002997 }
Takashi Iwaic2674682011-08-24 17:57:44 +02002998
Takashi Iwai716eef02011-10-21 15:07:42 +02002999 if (cfg->line_out_type != AUTO_PIN_HP_OUT)
3000 alc_auto_fill_extra_dacs(codec, cfg->hp_outs, cfg->hp_pins,
Takashi Iwaic2674682011-08-24 17:57:44 +02003001 spec->multiout.hp_out_nid);
Takashi Iwai716eef02011-10-21 15:07:42 +02003002 if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT)
3003 alc_auto_fill_extra_dacs(codec, cfg->speaker_outs, cfg->speaker_pins,
Takashi Iwaic2674682011-08-24 17:57:44 +02003004 spec->multiout.extra_out_nid);
3005
Takashi Iwai23c09b02011-08-19 09:05:35 +02003006 return 0;
3007}
3008
Takashi Iwai343a04b2011-07-06 14:28:39 +02003009static int alc_auto_add_vol_ctl(struct hda_codec *codec,
Takashi Iwai97aaab72011-07-06 14:02:55 +02003010 const char *pfx, int cidx,
3011 hda_nid_t nid, unsigned int chs)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003012{
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003013 if (!nid)
3014 return 0;
Takashi Iwai97aaab72011-07-06 14:02:55 +02003015 return __add_pb_vol_ctrl(codec->spec, ALC_CTL_WIDGET_VOL, pfx, cidx,
3016 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
Takashi Iwai7085ec12009-10-02 09:03:58 +02003017}
3018
Takashi Iwai343a04b2011-07-06 14:28:39 +02003019#define alc_auto_add_stereo_vol(codec, pfx, cidx, nid) \
3020 alc_auto_add_vol_ctl(codec, pfx, cidx, nid, 3)
Takashi Iwai97aaab72011-07-06 14:02:55 +02003021
3022/* create a mute-switch for the given mixer widget;
3023 * if it has multiple sources (e.g. DAC and loopback), create a bind-mute
3024 */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003025static int alc_auto_add_sw_ctl(struct hda_codec *codec,
Takashi Iwai97aaab72011-07-06 14:02:55 +02003026 const char *pfx, int cidx,
3027 hda_nid_t nid, unsigned int chs)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003028{
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003029 int wid_type;
Takashi Iwai97aaab72011-07-06 14:02:55 +02003030 int type;
3031 unsigned long val;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003032 if (!nid)
3033 return 0;
3034 wid_type = get_wcaps_type(get_wcaps(codec, nid));
3035 if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT) {
3036 type = ALC_CTL_WIDGET_MUTE;
3037 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
3038 } else if (snd_hda_get_conn_list(codec, nid, NULL) == 1) {
Takashi Iwai97aaab72011-07-06 14:02:55 +02003039 type = ALC_CTL_WIDGET_MUTE;
3040 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_INPUT);
3041 } else {
3042 type = ALC_CTL_BIND_MUTE;
3043 val = HDA_COMPOSE_AMP_VAL(nid, chs, 2, HDA_INPUT);
3044 }
3045 return __add_pb_sw_ctrl(codec->spec, type, pfx, cidx, val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003046}
3047
Takashi Iwai343a04b2011-07-06 14:28:39 +02003048#define alc_auto_add_stereo_sw(codec, pfx, cidx, nid) \
3049 alc_auto_add_sw_ctl(codec, pfx, cidx, nid, 3)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003050
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003051static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
3052 hda_nid_t pin, hda_nid_t dac)
3053{
3054 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3055 if (nid_has_mute(codec, pin, HDA_OUTPUT))
3056 return pin;
3057 else if (mix && nid_has_mute(codec, mix, HDA_INPUT))
3058 return mix;
3059 else if (nid_has_mute(codec, dac, HDA_OUTPUT))
3060 return dac;
3061 return 0;
3062}
3063
3064static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
3065 hda_nid_t pin, hda_nid_t dac)
3066{
3067 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3068 if (nid_has_volume(codec, dac, HDA_OUTPUT))
3069 return dac;
3070 else if (nid_has_volume(codec, mix, HDA_OUTPUT))
3071 return mix;
3072 else if (nid_has_volume(codec, pin, HDA_OUTPUT))
3073 return pin;
3074 return 0;
3075}
3076
Takashi Iwai7085ec12009-10-02 09:03:58 +02003077/* add playback controls from the parsed DAC table */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003078static int alc_auto_create_multi_out_ctls(struct hda_codec *codec,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003079 const struct auto_pin_cfg *cfg)
3080{
3081 struct alc_spec *spec = codec->spec;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003082 int i, err, noutputs;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003083
Takashi Iwaice764ab2011-04-27 16:35:23 +02003084 noutputs = cfg->line_outs;
3085 if (spec->multi_ios > 0)
3086 noutputs += spec->multi_ios;
3087
3088 for (i = 0; i < noutputs; i++) {
Takashi Iwai6843ca12011-06-24 11:03:58 +02003089 const char *name;
3090 int index;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003091 hda_nid_t dac, pin;
3092 hda_nid_t sw, vol;
3093
3094 dac = spec->multiout.dac_nids[i];
3095 if (!dac)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003096 continue;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003097 if (i >= cfg->line_outs)
3098 pin = spec->multi_io[i - 1].pin;
3099 else
3100 pin = cfg->line_out_pins[i];
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003101
3102 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3103 vol = alc_look_for_out_vol_nid(codec, pin, dac);
Takashi Iwai6843ca12011-06-24 11:03:58 +02003104 name = alc_get_line_out_pfx(spec, i, true, &index);
Takashi Iwai9c4e84d2011-08-24 17:27:52 +02003105 if (!name || !strcmp(name, "CLFE")) {
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003106 /* Center/LFE */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003107 err = alc_auto_add_vol_ctl(codec, "Center", 0, vol, 1);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003108 if (err < 0)
3109 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003110 err = alc_auto_add_vol_ctl(codec, "LFE", 0, vol, 2);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003111 if (err < 0)
3112 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003113 err = alc_auto_add_sw_ctl(codec, "Center", 0, sw, 1);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003114 if (err < 0)
3115 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003116 err = alc_auto_add_sw_ctl(codec, "LFE", 0, sw, 2);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003117 if (err < 0)
3118 return err;
3119 } else {
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003120 err = alc_auto_add_stereo_vol(codec, name, index, vol);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003121 if (err < 0)
3122 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003123 err = alc_auto_add_stereo_sw(codec, name, index, sw);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003124 if (err < 0)
3125 return err;
3126 }
3127 }
3128 return 0;
3129}
3130
Takashi Iwai343a04b2011-07-06 14:28:39 +02003131static int alc_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai23c09b02011-08-19 09:05:35 +02003132 hda_nid_t dac, const char *pfx)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003133{
Takashi Iwai7085ec12009-10-02 09:03:58 +02003134 struct alc_spec *spec = codec->spec;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003135 hda_nid_t sw, vol;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003136 int err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003137
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003138 if (!dac) {
Takashi Iwai7085ec12009-10-02 09:03:58 +02003139 /* the corresponding DAC is already occupied */
3140 if (!(get_wcaps(codec, pin) & AC_WCAP_OUT_AMP))
3141 return 0; /* no way */
3142 /* create a switch only */
Takashi Iwai0afe5f82009-10-02 09:20:00 +02003143 return add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003144 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3145 }
3146
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003147 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3148 vol = alc_look_for_out_vol_nid(codec, pin, dac);
3149 err = alc_auto_add_stereo_vol(codec, pfx, 0, vol);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003150 if (err < 0)
Takashi Iwai24fb9172008-09-02 14:48:20 +02003151 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003152 err = alc_auto_add_stereo_sw(codec, pfx, 0, sw);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003153 if (err < 0)
3154 return err;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003155 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003156}
3157
Takashi Iwai23c09b02011-08-19 09:05:35 +02003158static struct hda_bind_ctls *new_bind_ctl(struct hda_codec *codec,
3159 unsigned int nums,
3160 struct hda_ctl_ops *ops)
3161{
3162 struct alc_spec *spec = codec->spec;
3163 struct hda_bind_ctls **ctlp, *ctl;
3164 snd_array_init(&spec->bind_ctls, sizeof(ctl), 8);
3165 ctlp = snd_array_new(&spec->bind_ctls);
3166 if (!ctlp)
3167 return NULL;
3168 ctl = kzalloc(sizeof(*ctl) + sizeof(long) * (nums + 1), GFP_KERNEL);
3169 *ctlp = ctl;
3170 if (ctl)
3171 ctl->ops = ops;
3172 return ctl;
3173}
3174
3175/* add playback controls for speaker and HP outputs */
3176static int alc_auto_create_extra_outs(struct hda_codec *codec, int num_pins,
3177 const hda_nid_t *pins,
3178 const hda_nid_t *dacs,
3179 const char *pfx)
3180{
3181 struct alc_spec *spec = codec->spec;
3182 struct hda_bind_ctls *ctl;
3183 char name[32];
3184 int i, n, err;
3185
3186 if (!num_pins || !pins[0])
3187 return 0;
3188
3189 if (num_pins == 1)
3190 return alc_auto_create_extra_out(codec, *pins, *dacs, pfx);
3191
3192 if (dacs[num_pins - 1]) {
3193 /* OK, we have a multi-output system with individual volumes */
3194 for (i = 0; i < num_pins; i++) {
3195 snprintf(name, sizeof(name), "%s %s",
3196 pfx, channel_name[i]);
3197 err = alc_auto_create_extra_out(codec, pins[i], dacs[i],
3198 name);
3199 if (err < 0)
3200 return err;
3201 }
3202 return 0;
3203 }
3204
3205 /* Let's create a bind-controls */
3206 ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_sw);
3207 if (!ctl)
3208 return -ENOMEM;
3209 n = 0;
3210 for (i = 0; i < num_pins; i++) {
3211 if (get_wcaps(codec, pins[i]) & AC_WCAP_OUT_AMP)
3212 ctl->values[n++] =
3213 HDA_COMPOSE_AMP_VAL(pins[i], 3, 0, HDA_OUTPUT);
3214 }
3215 if (n) {
3216 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
3217 err = add_control(spec, ALC_CTL_BIND_SW, name, 0, (long)ctl);
3218 if (err < 0)
3219 return err;
3220 }
3221
3222 ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_vol);
3223 if (!ctl)
3224 return -ENOMEM;
3225 n = 0;
3226 for (i = 0; i < num_pins; i++) {
3227 hda_nid_t vol;
3228 if (!pins[i] || !dacs[i])
3229 continue;
3230 vol = alc_look_for_out_vol_nid(codec, pins[i], dacs[i]);
3231 if (vol)
3232 ctl->values[n++] =
3233 HDA_COMPOSE_AMP_VAL(vol, 3, 0, HDA_OUTPUT);
3234 }
3235 if (n) {
3236 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
3237 err = add_control(spec, ALC_CTL_BIND_VOL, name, 0, (long)ctl);
3238 if (err < 0)
3239 return err;
3240 }
3241 return 0;
3242}
3243
Takashi Iwai343a04b2011-07-06 14:28:39 +02003244static int alc_auto_create_hp_out(struct hda_codec *codec)
3245{
3246 struct alc_spec *spec = codec->spec;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003247 return alc_auto_create_extra_outs(codec, spec->autocfg.hp_outs,
3248 spec->autocfg.hp_pins,
3249 spec->multiout.hp_out_nid,
3250 "Headphone");
Takashi Iwai343a04b2011-07-06 14:28:39 +02003251}
3252
3253static int alc_auto_create_speaker_out(struct hda_codec *codec)
3254{
3255 struct alc_spec *spec = codec->spec;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003256 return alc_auto_create_extra_outs(codec, spec->autocfg.speaker_outs,
3257 spec->autocfg.speaker_pins,
3258 spec->multiout.extra_out_nid,
3259 "Speaker");
Takashi Iwai343a04b2011-07-06 14:28:39 +02003260}
3261
Takashi Iwai343a04b2011-07-06 14:28:39 +02003262static void alc_auto_set_output_and_unmute(struct hda_codec *codec,
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003263 hda_nid_t pin, int pin_type,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003264 hda_nid_t dac)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003265{
Takashi Iwai7085ec12009-10-02 09:03:58 +02003266 int i, num;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003267 hda_nid_t nid, mix = 0;
Takashi Iwaice503f32010-07-30 10:37:29 +02003268 hda_nid_t srcs[HDA_MAX_CONNECTIONS];
Takashi Iwai7085ec12009-10-02 09:03:58 +02003269
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003270 alc_set_pin_output(codec, pin, pin_type);
3271 nid = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003272 num = snd_hda_get_connections(codec, nid, srcs, ARRAY_SIZE(srcs));
Takashi Iwai7085ec12009-10-02 09:03:58 +02003273 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02003274 if (alc_auto_mix_to_dac(codec, srcs[i]) != dac)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003275 continue;
Takashi Iwaicd511552011-07-06 13:10:42 +02003276 mix = srcs[i];
3277 break;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003278 }
Takashi Iwaicd511552011-07-06 13:10:42 +02003279 if (!mix)
3280 return;
3281
3282 /* need the manual connection? */
3283 if (num > 1)
3284 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, i);
3285 /* unmute mixer widget inputs */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003286 if (nid_has_mute(codec, mix, HDA_INPUT)) {
3287 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaicd511552011-07-06 13:10:42 +02003288 AMP_IN_UNMUTE(0));
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003289 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaicd511552011-07-06 13:10:42 +02003290 AMP_IN_UNMUTE(1));
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003291 }
Takashi Iwaicd511552011-07-06 13:10:42 +02003292 /* initialize volume */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003293 nid = alc_look_for_out_vol_nid(codec, pin, dac);
3294 if (nid)
3295 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3296 AMP_OUT_ZERO);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003297}
3298
Takashi Iwai343a04b2011-07-06 14:28:39 +02003299static void alc_auto_init_multi_out(struct hda_codec *codec)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003300{
3301 struct alc_spec *spec = codec->spec;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003302 int pin_type = get_pin_type(spec->autocfg.line_out_type);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003303 int i;
3304
3305 for (i = 0; i <= HDA_SIDE; i++) {
3306 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3307 if (nid)
Takashi Iwai343a04b2011-07-06 14:28:39 +02003308 alc_auto_set_output_and_unmute(codec, nid, pin_type,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003309 spec->multiout.dac_nids[i]);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003310 }
3311}
3312
Takashi Iwai343a04b2011-07-06 14:28:39 +02003313static void alc_auto_init_extra_out(struct hda_codec *codec)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003314{
3315 struct alc_spec *spec = codec->spec;
Takashi Iwai8cd07752011-08-23 15:16:22 +02003316 int i;
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003317 hda_nid_t pin, dac;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003318
David Henningsson636030e2011-10-12 19:26:03 +02003319 for (i = 0; i < spec->autocfg.hp_outs; i++) {
Takashi Iwai716eef02011-10-21 15:07:42 +02003320 if (spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)
3321 break;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003322 pin = spec->autocfg.hp_pins[i];
3323 if (!pin)
3324 break;
3325 dac = spec->multiout.hp_out_nid[i];
3326 if (!dac) {
3327 if (i > 0 && spec->multiout.hp_out_nid[0])
3328 dac = spec->multiout.hp_out_nid[0];
3329 else
3330 dac = spec->multiout.dac_nids[0];
3331 }
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003332 alc_auto_set_output_and_unmute(codec, pin, PIN_HP, dac);
3333 }
Takashi Iwai8cd07752011-08-23 15:16:22 +02003334 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
Takashi Iwai716eef02011-10-21 15:07:42 +02003335 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
3336 break;
Takashi Iwai8cd07752011-08-23 15:16:22 +02003337 pin = spec->autocfg.speaker_pins[i];
3338 if (!pin)
3339 break;
3340 dac = spec->multiout.extra_out_nid[i];
3341 if (!dac) {
3342 if (i > 0 && spec->multiout.extra_out_nid[0])
3343 dac = spec->multiout.extra_out_nid[0];
3344 else
3345 dac = spec->multiout.dac_nids[0];
3346 }
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003347 alc_auto_set_output_and_unmute(codec, pin, PIN_OUT, dac);
3348 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003349}
3350
Takashi Iwaice764ab2011-04-27 16:35:23 +02003351/*
3352 * multi-io helper
3353 */
3354static int alc_auto_fill_multi_ios(struct hda_codec *codec,
3355 unsigned int location)
3356{
3357 struct alc_spec *spec = codec->spec;
3358 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaic2674682011-08-24 17:57:44 +02003359 hda_nid_t prime_dac = spec->private_dac_nids[0];
Takashi Iwaice764ab2011-04-27 16:35:23 +02003360 int type, i, num_pins = 0;
3361
3362 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
3363 for (i = 0; i < cfg->num_inputs; i++) {
3364 hda_nid_t nid = cfg->inputs[i].pin;
3365 hda_nid_t dac;
3366 unsigned int defcfg, caps;
3367 if (cfg->inputs[i].type != type)
3368 continue;
3369 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3370 if (get_defcfg_connect(defcfg) != AC_JACK_PORT_COMPLEX)
3371 continue;
3372 if (location && get_defcfg_location(defcfg) != location)
3373 continue;
3374 caps = snd_hda_query_pin_caps(codec, nid);
3375 if (!(caps & AC_PINCAP_OUT))
3376 continue;
3377 dac = alc_auto_look_for_dac(codec, nid);
3378 if (!dac)
3379 continue;
3380 spec->multi_io[num_pins].pin = nid;
3381 spec->multi_io[num_pins].dac = dac;
3382 num_pins++;
Takashi Iwaidda14412011-05-02 11:29:30 +02003383 spec->private_dac_nids[spec->multiout.num_dacs++] = dac;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003384 }
3385 }
3386 spec->multiout.num_dacs = 1;
Takashi Iwaic2674682011-08-24 17:57:44 +02003387 if (num_pins < 2) {
3388 /* clear up again */
3389 memset(spec->private_dac_nids, 0,
3390 sizeof(spec->private_dac_nids));
3391 spec->private_dac_nids[0] = prime_dac;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003392 return 0;
Takashi Iwaic2674682011-08-24 17:57:44 +02003393 }
Takashi Iwaice764ab2011-04-27 16:35:23 +02003394 return num_pins;
3395}
3396
3397static int alc_auto_ch_mode_info(struct snd_kcontrol *kcontrol,
3398 struct snd_ctl_elem_info *uinfo)
3399{
3400 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3401 struct alc_spec *spec = codec->spec;
3402
3403 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3404 uinfo->count = 1;
3405 uinfo->value.enumerated.items = spec->multi_ios + 1;
3406 if (uinfo->value.enumerated.item > spec->multi_ios)
3407 uinfo->value.enumerated.item = spec->multi_ios;
3408 sprintf(uinfo->value.enumerated.name, "%dch",
3409 (uinfo->value.enumerated.item + 1) * 2);
3410 return 0;
3411}
3412
3413static int alc_auto_ch_mode_get(struct snd_kcontrol *kcontrol,
3414 struct snd_ctl_elem_value *ucontrol)
3415{
3416 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3417 struct alc_spec *spec = codec->spec;
3418 ucontrol->value.enumerated.item[0] = (spec->ext_channel_count - 1) / 2;
3419 return 0;
3420}
3421
3422static int alc_set_multi_io(struct hda_codec *codec, int idx, bool output)
3423{
3424 struct alc_spec *spec = codec->spec;
3425 hda_nid_t nid = spec->multi_io[idx].pin;
3426
3427 if (!spec->multi_io[idx].ctl_in)
3428 spec->multi_io[idx].ctl_in =
3429 snd_hda_codec_read(codec, nid, 0,
3430 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3431 if (output) {
3432 snd_hda_codec_update_cache(codec, nid, 0,
3433 AC_VERB_SET_PIN_WIDGET_CONTROL,
3434 PIN_OUT);
3435 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3436 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3437 HDA_AMP_MUTE, 0);
3438 alc_auto_select_dac(codec, nid, spec->multi_io[idx].dac);
3439 } else {
3440 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3441 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3442 HDA_AMP_MUTE, HDA_AMP_MUTE);
3443 snd_hda_codec_update_cache(codec, nid, 0,
3444 AC_VERB_SET_PIN_WIDGET_CONTROL,
3445 spec->multi_io[idx].ctl_in);
3446 }
3447 return 0;
3448}
3449
3450static int alc_auto_ch_mode_put(struct snd_kcontrol *kcontrol,
3451 struct snd_ctl_elem_value *ucontrol)
3452{
3453 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3454 struct alc_spec *spec = codec->spec;
3455 int i, ch;
3456
3457 ch = ucontrol->value.enumerated.item[0];
3458 if (ch < 0 || ch > spec->multi_ios)
3459 return -EINVAL;
3460 if (ch == (spec->ext_channel_count - 1) / 2)
3461 return 0;
3462 spec->ext_channel_count = (ch + 1) * 2;
3463 for (i = 0; i < spec->multi_ios; i++)
3464 alc_set_multi_io(codec, i, i < ch);
3465 spec->multiout.max_channels = spec->ext_channel_count;
Takashi Iwai7b1655f2011-07-14 15:31:21 +02003466 if (spec->need_dac_fix && !spec->const_channel_count)
3467 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003468 return 1;
3469}
3470
Takashi Iwaia9111322011-05-02 11:30:18 +02003471static const struct snd_kcontrol_new alc_auto_channel_mode_enum = {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003472 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3473 .name = "Channel Mode",
3474 .info = alc_auto_ch_mode_info,
3475 .get = alc_auto_ch_mode_get,
3476 .put = alc_auto_ch_mode_put,
3477};
3478
Takashi Iwai23c09b02011-08-19 09:05:35 +02003479static int alc_auto_add_multi_channel_mode(struct hda_codec *codec)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003480{
3481 struct alc_spec *spec = codec->spec;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003482
Takashi Iwaic2674682011-08-24 17:57:44 +02003483 if (spec->multi_ios > 0) {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003484 struct snd_kcontrol_new *knew;
3485
3486 knew = alc_kcontrol_new(spec);
3487 if (!knew)
3488 return -ENOMEM;
3489 *knew = alc_auto_channel_mode_enum;
3490 knew->name = kstrdup("Channel Mode", GFP_KERNEL);
3491 if (!knew->name)
3492 return -ENOMEM;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003493 }
3494 return 0;
3495}
3496
Takashi Iwai1d045db2011-07-07 18:23:21 +02003497/* filter out invalid adc_nids (and capsrc_nids) that don't give all
3498 * active input pins
3499 */
3500static void alc_remove_invalid_adc_nids(struct hda_codec *codec)
3501{
3502 struct alc_spec *spec = codec->spec;
3503 const struct hda_input_mux *imux;
3504 hda_nid_t adc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3505 hda_nid_t capsrc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3506 int i, n, nums;
3507
3508 imux = spec->input_mux;
3509 if (!imux)
3510 return;
3511 if (spec->dyn_adc_switch)
3512 return;
3513
3514 nums = 0;
3515 for (n = 0; n < spec->num_adc_nids; n++) {
3516 hda_nid_t cap = spec->private_capsrc_nids[n];
3517 int num_conns = snd_hda_get_conn_list(codec, cap, NULL);
3518 for (i = 0; i < imux->num_items; i++) {
3519 hda_nid_t pin = spec->imux_pins[i];
3520 if (pin) {
3521 if (get_connection_index(codec, cap, pin) < 0)
3522 break;
3523 } else if (num_conns <= imux->items[i].index)
3524 break;
3525 }
3526 if (i >= imux->num_items) {
3527 adc_nids[nums] = spec->private_adc_nids[n];
3528 capsrc_nids[nums++] = cap;
3529 }
3530 }
3531 if (!nums) {
3532 /* check whether ADC-switch is possible */
3533 if (!alc_check_dyn_adc_switch(codec)) {
3534 printk(KERN_WARNING "hda_codec: %s: no valid ADC found;"
3535 " using fallback 0x%x\n",
3536 codec->chip_name, spec->private_adc_nids[0]);
3537 spec->num_adc_nids = 1;
3538 spec->auto_mic = 0;
3539 return;
3540 }
3541 } else if (nums != spec->num_adc_nids) {
3542 memcpy(spec->private_adc_nids, adc_nids,
3543 nums * sizeof(hda_nid_t));
3544 memcpy(spec->private_capsrc_nids, capsrc_nids,
3545 nums * sizeof(hda_nid_t));
3546 spec->num_adc_nids = nums;
3547 }
3548
3549 if (spec->auto_mic)
3550 alc_auto_mic_check_imux(codec); /* check auto-mic setups */
3551 else if (spec->input_mux->num_items == 1)
3552 spec->num_adc_nids = 1; /* reduce to a single ADC */
3553}
3554
3555/*
3556 * initialize ADC paths
3557 */
3558static void alc_auto_init_adc(struct hda_codec *codec, int adc_idx)
3559{
3560 struct alc_spec *spec = codec->spec;
3561 hda_nid_t nid;
3562
3563 nid = spec->adc_nids[adc_idx];
3564 /* mute ADC */
Takashi Iwai44c02402011-07-08 15:14:19 +02003565 if (nid_has_mute(codec, nid, HDA_INPUT)) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003566 snd_hda_codec_write(codec, nid, 0,
3567 AC_VERB_SET_AMP_GAIN_MUTE,
3568 AMP_IN_MUTE(0));
3569 return;
3570 }
3571 if (!spec->capsrc_nids)
3572 return;
3573 nid = spec->capsrc_nids[adc_idx];
Takashi Iwai44c02402011-07-08 15:14:19 +02003574 if (nid_has_mute(codec, nid, HDA_OUTPUT))
Takashi Iwai1d045db2011-07-07 18:23:21 +02003575 snd_hda_codec_write(codec, nid, 0,
3576 AC_VERB_SET_AMP_GAIN_MUTE,
3577 AMP_OUT_MUTE);
3578}
3579
3580static void alc_auto_init_input_src(struct hda_codec *codec)
3581{
3582 struct alc_spec *spec = codec->spec;
3583 int c, nums;
3584
3585 for (c = 0; c < spec->num_adc_nids; c++)
3586 alc_auto_init_adc(codec, c);
3587 if (spec->dyn_adc_switch)
3588 nums = 1;
3589 else
3590 nums = spec->num_adc_nids;
3591 for (c = 0; c < nums; c++)
3592 alc_mux_select(codec, 0, spec->cur_mux[c], true);
3593}
3594
3595/* add mic boosts if needed */
3596static int alc_auto_add_mic_boost(struct hda_codec *codec)
3597{
3598 struct alc_spec *spec = codec->spec;
3599 struct auto_pin_cfg *cfg = &spec->autocfg;
3600 int i, err;
3601 int type_idx = 0;
3602 hda_nid_t nid;
3603 const char *prev_label = NULL;
3604
3605 for (i = 0; i < cfg->num_inputs; i++) {
3606 if (cfg->inputs[i].type > AUTO_PIN_MIC)
3607 break;
3608 nid = cfg->inputs[i].pin;
3609 if (get_wcaps(codec, nid) & AC_WCAP_IN_AMP) {
3610 const char *label;
3611 char boost_label[32];
3612
3613 label = hda_get_autocfg_input_label(codec, cfg, i);
3614 if (prev_label && !strcmp(label, prev_label))
3615 type_idx++;
3616 else
3617 type_idx = 0;
3618 prev_label = label;
3619
3620 snprintf(boost_label, sizeof(boost_label),
3621 "%s Boost Volume", label);
3622 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3623 boost_label, type_idx,
3624 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
3625 if (err < 0)
3626 return err;
3627 }
3628 }
3629 return 0;
3630}
3631
3632/* select or unmute the given capsrc route */
3633static void select_or_unmute_capsrc(struct hda_codec *codec, hda_nid_t cap,
3634 int idx)
3635{
3636 if (get_wcaps_type(get_wcaps(codec, cap)) == AC_WID_AUD_MIX) {
3637 snd_hda_codec_amp_stereo(codec, cap, HDA_INPUT, idx,
3638 HDA_AMP_MUTE, 0);
3639 } else if (snd_hda_get_conn_list(codec, cap, NULL) > 1) {
3640 snd_hda_codec_write_cache(codec, cap, 0,
3641 AC_VERB_SET_CONNECT_SEL, idx);
3642 }
3643}
3644
3645/* set the default connection to that pin */
3646static int init_capsrc_for_pin(struct hda_codec *codec, hda_nid_t pin)
3647{
3648 struct alc_spec *spec = codec->spec;
3649 int i;
3650
3651 if (!pin)
3652 return 0;
3653 for (i = 0; i < spec->num_adc_nids; i++) {
3654 hda_nid_t cap = spec->capsrc_nids ?
3655 spec->capsrc_nids[i] : spec->adc_nids[i];
3656 int idx;
3657
3658 idx = get_connection_index(codec, cap, pin);
3659 if (idx < 0)
3660 continue;
3661 select_or_unmute_capsrc(codec, cap, idx);
3662 return i; /* return the found index */
3663 }
3664 return -1; /* not found */
3665}
3666
3667/* initialize some special cases for input sources */
3668static void alc_init_special_input_src(struct hda_codec *codec)
3669{
3670 struct alc_spec *spec = codec->spec;
3671 int i;
3672
3673 for (i = 0; i < spec->autocfg.num_inputs; i++)
3674 init_capsrc_for_pin(codec, spec->autocfg.inputs[i].pin);
3675}
3676
3677/* assign appropriate capture mixers */
3678static void set_capture_mixer(struct hda_codec *codec)
3679{
3680 struct alc_spec *spec = codec->spec;
3681 static const struct snd_kcontrol_new *caps[2][3] = {
3682 { alc_capture_mixer_nosrc1,
3683 alc_capture_mixer_nosrc2,
3684 alc_capture_mixer_nosrc3 },
3685 { alc_capture_mixer1,
3686 alc_capture_mixer2,
3687 alc_capture_mixer3 },
3688 };
3689
3690 /* check whether either of ADC or MUX has a volume control */
Takashi Iwai44c02402011-07-08 15:14:19 +02003691 if (!nid_has_volume(codec, spec->adc_nids[0], HDA_INPUT)) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003692 if (!spec->capsrc_nids)
3693 return; /* no volume */
Takashi Iwai44c02402011-07-08 15:14:19 +02003694 if (!nid_has_volume(codec, spec->capsrc_nids[0], HDA_OUTPUT))
Takashi Iwai1d045db2011-07-07 18:23:21 +02003695 return; /* no volume in capsrc, too */
3696 spec->vol_in_capsrc = 1;
3697 }
3698
3699 if (spec->num_adc_nids > 0) {
3700 int mux = 0;
3701 int num_adcs = 0;
3702
3703 if (spec->input_mux && spec->input_mux->num_items > 1)
3704 mux = 1;
3705 if (spec->auto_mic) {
3706 num_adcs = 1;
3707 mux = 0;
3708 } else if (spec->dyn_adc_switch)
3709 num_adcs = 1;
3710 if (!num_adcs) {
3711 if (spec->num_adc_nids > 3)
3712 spec->num_adc_nids = 3;
3713 else if (!spec->num_adc_nids)
3714 return;
3715 num_adcs = spec->num_adc_nids;
3716 }
3717 spec->cap_mixer = caps[mux][num_adcs - 1];
3718 }
3719}
3720
3721/*
Takashi Iwaie4770622011-07-08 11:11:35 +02003722 * standard auto-parser initializations
3723 */
3724static void alc_auto_init_std(struct hda_codec *codec)
3725{
3726 struct alc_spec *spec = codec->spec;
3727 alc_auto_init_multi_out(codec);
3728 alc_auto_init_extra_out(codec);
3729 alc_auto_init_analog_input(codec);
3730 alc_auto_init_input_src(codec);
3731 alc_auto_init_digital(codec);
3732 if (spec->unsol_event)
3733 alc_inithook(codec);
3734}
3735
3736/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02003737 * Digital-beep handlers
3738 */
3739#ifdef CONFIG_SND_HDA_INPUT_BEEP
3740#define set_beep_amp(spec, nid, idx, dir) \
3741 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
3742
3743static const struct snd_pci_quirk beep_white_list[] = {
3744 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
3745 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
3746 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
3747 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
3748 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
3749 {}
3750};
3751
3752static inline int has_cdefine_beep(struct hda_codec *codec)
3753{
3754 struct alc_spec *spec = codec->spec;
3755 const struct snd_pci_quirk *q;
3756 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
3757 if (q)
3758 return q->value;
3759 return spec->cdefine.enable_pcbeep;
3760}
3761#else
3762#define set_beep_amp(spec, nid, idx, dir) /* NOP */
3763#define has_cdefine_beep(codec) 0
3764#endif
3765
3766/* parse the BIOS configuration and set up the alc_spec */
3767/* return 1 if successful, 0 if the proper config is not found,
3768 * or a negative error code
3769 */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003770static int alc_parse_auto_config(struct hda_codec *codec,
3771 const hda_nid_t *ignore_nids,
3772 const hda_nid_t *ssid_nids)
Takashi Iwai1d045db2011-07-07 18:23:21 +02003773{
3774 struct alc_spec *spec = codec->spec;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003775 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003776 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003777
Takashi Iwai53c334a2011-08-23 18:27:14 +02003778 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
3779 spec->parse_flags);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003780 if (err < 0)
3781 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003782 if (!cfg->line_outs) {
3783 if (cfg->dig_outs || cfg->dig_in_pin) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003784 spec->multiout.max_channels = 2;
3785 spec->no_analog = 1;
3786 goto dig_only;
3787 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02003788 return 0; /* can't find valid BIOS pin config */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003789 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003790
Takashi Iwai06503672011-10-06 08:27:19 +02003791 if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT &&
3792 cfg->line_outs <= cfg->hp_outs) {
Takashi Iwai23c09b02011-08-19 09:05:35 +02003793 /* use HP as primary out */
3794 cfg->speaker_outs = cfg->line_outs;
3795 memcpy(cfg->speaker_pins, cfg->line_out_pins,
3796 sizeof(cfg->speaker_pins));
3797 cfg->line_outs = cfg->hp_outs;
3798 memcpy(cfg->line_out_pins, cfg->hp_pins, sizeof(cfg->hp_pins));
3799 cfg->hp_outs = 0;
3800 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3801 cfg->line_out_type = AUTO_PIN_HP_OUT;
3802 }
3803
Takashi Iwai1d045db2011-07-07 18:23:21 +02003804 err = alc_auto_fill_dac_nids(codec);
3805 if (err < 0)
3806 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003807 err = alc_auto_add_multi_channel_mode(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003808 if (err < 0)
3809 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003810 err = alc_auto_create_multi_out_ctls(codec, cfg);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003811 if (err < 0)
3812 return err;
3813 err = alc_auto_create_hp_out(codec);
3814 if (err < 0)
3815 return err;
3816 err = alc_auto_create_speaker_out(codec);
3817 if (err < 0)
3818 return err;
3819 err = alc_auto_create_input_ctls(codec);
3820 if (err < 0)
3821 return err;
3822
3823 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3824
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003825 dig_only:
Takashi Iwai1d045db2011-07-07 18:23:21 +02003826 alc_auto_parse_digital(codec);
3827
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003828 if (!spec->no_analog)
3829 alc_remove_invalid_adc_nids(codec);
3830
3831 if (ssid_nids)
3832 alc_ssid_check(codec, ssid_nids);
3833
3834 if (!spec->no_analog) {
3835 alc_auto_check_switches(codec);
3836 err = alc_auto_add_mic_boost(codec);
3837 if (err < 0)
3838 return err;
3839 }
3840
Takashi Iwai1d045db2011-07-07 18:23:21 +02003841 if (spec->kctls.list)
3842 add_mixer(spec, spec->kctls.list);
3843
Takashi Iwai1d045db2011-07-07 18:23:21 +02003844 return 1;
3845}
3846
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003847static int alc880_parse_auto_config(struct hda_codec *codec)
3848{
3849 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3850 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3851 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
3852}
3853
Takashi Iwai1d045db2011-07-07 18:23:21 +02003854#ifdef CONFIG_SND_HDA_POWER_SAVE
3855static const struct hda_amp_list alc880_loopbacks[] = {
3856 { 0x0b, HDA_INPUT, 0 },
3857 { 0x0b, HDA_INPUT, 1 },
3858 { 0x0b, HDA_INPUT, 2 },
3859 { 0x0b, HDA_INPUT, 3 },
3860 { 0x0b, HDA_INPUT, 4 },
3861 { } /* end */
3862};
3863#endif
3864
3865/*
3866 * board setups
3867 */
3868#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3869#define alc_board_config \
3870 snd_hda_check_board_config
3871#define alc_board_codec_sid_config \
3872 snd_hda_check_board_codec_sid_config
3873#include "alc_quirks.c"
3874#else
3875#define alc_board_config(codec, nums, models, tbl) -1
3876#define alc_board_codec_sid_config(codec, nums, models, tbl) -1
3877#define setup_preset(codec, x) /* NOP */
3878#endif
3879
3880/*
3881 * OK, here we have finally the patch for ALC880
3882 */
3883#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3884#include "alc880_quirks.c"
3885#endif
3886
3887static int patch_alc880(struct hda_codec *codec)
3888{
3889 struct alc_spec *spec;
3890 int board_config;
3891 int err;
3892
3893 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3894 if (spec == NULL)
3895 return -ENOMEM;
3896
3897 codec->spec = spec;
3898
3899 spec->mixer_nid = 0x0b;
Takashi Iwai7b1655f2011-07-14 15:31:21 +02003900 spec->need_dac_fix = 1;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003901
3902 board_config = alc_board_config(codec, ALC880_MODEL_LAST,
3903 alc880_models, alc880_cfg_tbl);
3904 if (board_config < 0) {
3905 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
3906 codec->chip_name);
3907 board_config = ALC_MODEL_AUTO;
3908 }
3909
3910 if (board_config == ALC_MODEL_AUTO) {
3911 /* automatic parse from the BIOS config */
3912 err = alc880_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003913 if (err < 0)
3914 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003915#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3916 else if (!err) {
3917 printk(KERN_INFO
3918 "hda_codec: Cannot set up configuration "
3919 "from BIOS. Using 3-stack mode...\n");
3920 board_config = ALC880_3ST;
3921 }
3922#endif
3923 }
3924
Takashi Iwai1d045db2011-07-07 18:23:21 +02003925 if (board_config != ALC_MODEL_AUTO)
3926 setup_preset(codec, &alc880_presets[board_config]);
3927
Takashi Iwai60a6a842011-07-27 14:01:24 +02003928 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003929 alc_auto_fill_adc_caps(codec);
3930 alc_rebuild_imux_for_auto_mic(codec);
3931 alc_remove_invalid_adc_nids(codec);
3932 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003933
3934 if (!spec->no_analog && !spec->cap_mixer)
3935 set_capture_mixer(codec);
3936
3937 if (!spec->no_analog) {
3938 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003939 if (err < 0)
3940 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003941 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3942 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02003943
3944 spec->vmaster_nid = 0x0c;
3945
3946 codec->patch_ops = alc_patch_ops;
3947 if (board_config == ALC_MODEL_AUTO)
Takashi Iwaie4770622011-07-08 11:11:35 +02003948 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003949#ifdef CONFIG_SND_HDA_POWER_SAVE
3950 if (!spec->loopback.amplist)
3951 spec->loopback.amplist = alc880_loopbacks;
3952#endif
3953
3954 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003955
3956 error:
3957 alc_free(codec);
3958 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003959}
3960
3961
3962/*
3963 * ALC260 support
3964 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02003965static int alc260_parse_auto_config(struct hda_codec *codec)
3966{
Takashi Iwai1d045db2011-07-07 18:23:21 +02003967 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003968 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
3969 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003970}
3971
Takashi Iwai1d045db2011-07-07 18:23:21 +02003972#ifdef CONFIG_SND_HDA_POWER_SAVE
3973static const struct hda_amp_list alc260_loopbacks[] = {
3974 { 0x07, HDA_INPUT, 0 },
3975 { 0x07, HDA_INPUT, 1 },
3976 { 0x07, HDA_INPUT, 2 },
3977 { 0x07, HDA_INPUT, 3 },
3978 { 0x07, HDA_INPUT, 4 },
3979 { } /* end */
3980};
3981#endif
3982
3983/*
3984 * Pin config fixes
3985 */
3986enum {
3987 PINFIX_HP_DC5750,
3988};
3989
3990static const struct alc_fixup alc260_fixups[] = {
3991 [PINFIX_HP_DC5750] = {
3992 .type = ALC_FIXUP_PINS,
3993 .v.pins = (const struct alc_pincfg[]) {
3994 { 0x11, 0x90130110 }, /* speaker */
3995 { }
3996 }
3997 },
3998};
3999
4000static const struct snd_pci_quirk alc260_fixup_tbl[] = {
4001 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", PINFIX_HP_DC5750),
4002 {}
4003};
4004
4005/*
4006 */
4007#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4008#include "alc260_quirks.c"
4009#endif
4010
4011static int patch_alc260(struct hda_codec *codec)
4012{
4013 struct alc_spec *spec;
4014 int err, board_config;
4015
4016 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4017 if (spec == NULL)
4018 return -ENOMEM;
4019
4020 codec->spec = spec;
4021
4022 spec->mixer_nid = 0x07;
4023
4024 board_config = alc_board_config(codec, ALC260_MODEL_LAST,
4025 alc260_models, alc260_cfg_tbl);
4026 if (board_config < 0) {
4027 snd_printd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4028 codec->chip_name);
4029 board_config = ALC_MODEL_AUTO;
4030 }
4031
4032 if (board_config == ALC_MODEL_AUTO) {
4033 alc_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
4034 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4035 }
4036
4037 if (board_config == ALC_MODEL_AUTO) {
4038 /* automatic parse from the BIOS config */
4039 err = alc260_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004040 if (err < 0)
4041 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004042#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4043 else if (!err) {
4044 printk(KERN_INFO
4045 "hda_codec: Cannot set up configuration "
4046 "from BIOS. Using base mode...\n");
4047 board_config = ALC260_BASIC;
4048 }
4049#endif
4050 }
4051
Takashi Iwai1d045db2011-07-07 18:23:21 +02004052 if (board_config != ALC_MODEL_AUTO)
4053 setup_preset(codec, &alc260_presets[board_config]);
4054
Takashi Iwai60a6a842011-07-27 14:01:24 +02004055 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004056 alc_auto_fill_adc_caps(codec);
4057 alc_rebuild_imux_for_auto_mic(codec);
4058 alc_remove_invalid_adc_nids(codec);
4059 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004060
4061 if (!spec->no_analog && !spec->cap_mixer)
4062 set_capture_mixer(codec);
4063
4064 if (!spec->no_analog) {
4065 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004066 if (err < 0)
4067 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004068 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
4069 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004070
4071 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4072
4073 spec->vmaster_nid = 0x08;
4074
4075 codec->patch_ops = alc_patch_ops;
4076 if (board_config == ALC_MODEL_AUTO)
Takashi Iwai8452a982011-07-08 16:19:48 +02004077 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004078 spec->shutup = alc_eapd_shutup;
4079#ifdef CONFIG_SND_HDA_POWER_SAVE
4080 if (!spec->loopback.amplist)
4081 spec->loopback.amplist = alc260_loopbacks;
4082#endif
4083
4084 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004085
4086 error:
4087 alc_free(codec);
4088 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004089}
4090
4091
4092/*
4093 * ALC882/883/885/888/889 support
4094 *
4095 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4096 * configuration. Each pin widget can choose any input DACs and a mixer.
4097 * Each ADC is connected from a mixer of all inputs. This makes possible
4098 * 6-channel independent captures.
4099 *
4100 * In addition, an independent DAC for the multi-playback (not used in this
4101 * driver yet).
4102 */
4103#ifdef CONFIG_SND_HDA_POWER_SAVE
4104#define alc882_loopbacks alc880_loopbacks
4105#endif
4106
4107/*
4108 * Pin config fixes
4109 */
4110enum {
4111 PINFIX_ABIT_AW9D_MAX,
4112 PINFIX_LENOVO_Y530,
4113 PINFIX_PB_M5210,
4114 PINFIX_ACER_ASPIRE_7736,
4115};
4116
4117static const struct alc_fixup alc882_fixups[] = {
4118 [PINFIX_ABIT_AW9D_MAX] = {
4119 .type = ALC_FIXUP_PINS,
4120 .v.pins = (const struct alc_pincfg[]) {
4121 { 0x15, 0x01080104 }, /* side */
4122 { 0x16, 0x01011012 }, /* rear */
4123 { 0x17, 0x01016011 }, /* clfe */
4124 { }
4125 }
4126 },
4127 [PINFIX_LENOVO_Y530] = {
4128 .type = ALC_FIXUP_PINS,
4129 .v.pins = (const struct alc_pincfg[]) {
4130 { 0x15, 0x99130112 }, /* rear int speakers */
4131 { 0x16, 0x99130111 }, /* subwoofer */
4132 { }
4133 }
4134 },
4135 [PINFIX_PB_M5210] = {
4136 .type = ALC_FIXUP_VERBS,
4137 .v.verbs = (const struct hda_verb[]) {
4138 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
4139 {}
4140 }
4141 },
4142 [PINFIX_ACER_ASPIRE_7736] = {
4143 .type = ALC_FIXUP_SKU,
4144 .v.sku = ALC_FIXUP_SKU_IGNORE,
4145 },
4146};
4147
4148static const struct snd_pci_quirk alc882_fixup_tbl[] = {
4149 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", PINFIX_PB_M5210),
4150 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", PINFIX_LENOVO_Y530),
4151 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX),
4152 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", PINFIX_ACER_ASPIRE_7736),
4153 {}
4154};
4155
4156/*
4157 * BIOS auto configuration
4158 */
4159/* almost identical with ALC880 parser... */
4160static int alc882_parse_auto_config(struct hda_codec *codec)
4161{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004162 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004163 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4164 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004165}
4166
Takashi Iwai1d045db2011-07-07 18:23:21 +02004167/*
4168 */
4169#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4170#include "alc882_quirks.c"
4171#endif
4172
4173static int patch_alc882(struct hda_codec *codec)
4174{
4175 struct alc_spec *spec;
4176 int err, board_config;
4177
4178 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4179 if (spec == NULL)
4180 return -ENOMEM;
4181
4182 codec->spec = spec;
4183
4184 spec->mixer_nid = 0x0b;
4185
4186 switch (codec->vendor_id) {
4187 case 0x10ec0882:
4188 case 0x10ec0885:
4189 break;
4190 default:
4191 /* ALC883 and variants */
4192 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
4193 break;
4194 }
4195
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004196 err = alc_codec_rename_from_preset(codec);
4197 if (err < 0)
4198 goto error;
4199
Takashi Iwai1d045db2011-07-07 18:23:21 +02004200 board_config = alc_board_config(codec, ALC882_MODEL_LAST,
4201 alc882_models, alc882_cfg_tbl);
4202
4203 if (board_config < 0)
4204 board_config = alc_board_codec_sid_config(codec,
4205 ALC882_MODEL_LAST, alc882_models, alc882_ssid_cfg_tbl);
4206
4207 if (board_config < 0) {
4208 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4209 codec->chip_name);
4210 board_config = ALC_MODEL_AUTO;
4211 }
4212
4213 if (board_config == ALC_MODEL_AUTO) {
4214 alc_pick_fixup(codec, NULL, alc882_fixup_tbl, alc882_fixups);
4215 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4216 }
4217
4218 alc_auto_parse_customize_define(codec);
4219
4220 if (board_config == ALC_MODEL_AUTO) {
4221 /* automatic parse from the BIOS config */
4222 err = alc882_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004223 if (err < 0)
4224 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004225#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4226 else if (!err) {
4227 printk(KERN_INFO
4228 "hda_codec: Cannot set up configuration "
4229 "from BIOS. Using base mode...\n");
4230 board_config = ALC882_3ST_DIG;
4231 }
4232#endif
4233 }
4234
Takashi Iwai1d045db2011-07-07 18:23:21 +02004235 if (board_config != ALC_MODEL_AUTO)
4236 setup_preset(codec, &alc882_presets[board_config]);
4237
Takashi Iwai60a6a842011-07-27 14:01:24 +02004238 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004239 alc_auto_fill_adc_caps(codec);
4240 alc_rebuild_imux_for_auto_mic(codec);
4241 alc_remove_invalid_adc_nids(codec);
4242 }
4243
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004244 if (!spec->no_analog && !spec->cap_mixer)
4245 set_capture_mixer(codec);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004246
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004247 if (!spec->no_analog && has_cdefine_beep(codec)) {
4248 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004249 if (err < 0)
4250 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004251 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004252 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004253
4254 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4255
4256 spec->vmaster_nid = 0x0c;
4257
4258 codec->patch_ops = alc_patch_ops;
4259 if (board_config == ALC_MODEL_AUTO)
Takashi Iwaie4770622011-07-08 11:11:35 +02004260 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004261
4262 alc_init_jacks(codec);
4263#ifdef CONFIG_SND_HDA_POWER_SAVE
4264 if (!spec->loopback.amplist)
4265 spec->loopback.amplist = alc882_loopbacks;
4266#endif
4267
4268 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004269
4270 error:
4271 alc_free(codec);
4272 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004273}
4274
4275
4276/*
4277 * ALC262 support
4278 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004279static int alc262_parse_auto_config(struct hda_codec *codec)
4280{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004281 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004282 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4283 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004284}
4285
4286/*
4287 * Pin config fixes
4288 */
4289enum {
4290 PINFIX_FSC_H270,
4291 PINFIX_HP_Z200,
4292};
4293
4294static const struct alc_fixup alc262_fixups[] = {
4295 [PINFIX_FSC_H270] = {
4296 .type = ALC_FIXUP_PINS,
4297 .v.pins = (const struct alc_pincfg[]) {
4298 { 0x14, 0x99130110 }, /* speaker */
4299 { 0x15, 0x0221142f }, /* front HP */
4300 { 0x1b, 0x0121141f }, /* rear HP */
4301 { }
4302 }
4303 },
4304 [PINFIX_HP_Z200] = {
4305 .type = ALC_FIXUP_PINS,
4306 .v.pins = (const struct alc_pincfg[]) {
4307 { 0x16, 0x99130120 }, /* internal speaker */
4308 { }
4309 }
4310 },
4311};
4312
4313static const struct snd_pci_quirk alc262_fixup_tbl[] = {
4314 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", PINFIX_HP_Z200),
4315 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", PINFIX_FSC_H270),
4316 {}
4317};
4318
4319
4320#ifdef CONFIG_SND_HDA_POWER_SAVE
4321#define alc262_loopbacks alc880_loopbacks
4322#endif
4323
Takashi Iwai1d045db2011-07-07 18:23:21 +02004324/*
4325 */
4326#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4327#include "alc262_quirks.c"
4328#endif
4329
4330static int patch_alc262(struct hda_codec *codec)
4331{
4332 struct alc_spec *spec;
4333 int board_config;
4334 int err;
4335
4336 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4337 if (spec == NULL)
4338 return -ENOMEM;
4339
4340 codec->spec = spec;
4341
4342 spec->mixer_nid = 0x0b;
4343
4344#if 0
4345 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
4346 * under-run
4347 */
4348 {
4349 int tmp;
4350 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4351 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
4352 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4353 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
4354 }
4355#endif
4356 alc_auto_parse_customize_define(codec);
4357
4358 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
4359
4360 board_config = alc_board_config(codec, ALC262_MODEL_LAST,
4361 alc262_models, alc262_cfg_tbl);
4362
4363 if (board_config < 0) {
4364 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4365 codec->chip_name);
4366 board_config = ALC_MODEL_AUTO;
4367 }
4368
4369 if (board_config == ALC_MODEL_AUTO) {
4370 alc_pick_fixup(codec, NULL, alc262_fixup_tbl, alc262_fixups);
4371 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4372 }
4373
4374 if (board_config == ALC_MODEL_AUTO) {
4375 /* automatic parse from the BIOS config */
4376 err = alc262_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004377 if (err < 0)
4378 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004379#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4380 else if (!err) {
4381 printk(KERN_INFO
4382 "hda_codec: Cannot set up configuration "
4383 "from BIOS. Using base mode...\n");
4384 board_config = ALC262_BASIC;
4385 }
4386#endif
4387 }
4388
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004389 if (board_config != ALC_MODEL_AUTO)
4390 setup_preset(codec, &alc262_presets[board_config]);
4391
Takashi Iwai60a6a842011-07-27 14:01:24 +02004392 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004393 alc_auto_fill_adc_caps(codec);
4394 alc_rebuild_imux_for_auto_mic(codec);
4395 alc_remove_invalid_adc_nids(codec);
4396 }
4397
4398 if (!spec->no_analog && !spec->cap_mixer)
4399 set_capture_mixer(codec);
4400
Takashi Iwai1d045db2011-07-07 18:23:21 +02004401 if (!spec->no_analog && has_cdefine_beep(codec)) {
4402 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004403 if (err < 0)
4404 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004405 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004406 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004407
4408 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4409
4410 spec->vmaster_nid = 0x0c;
4411
4412 codec->patch_ops = alc_patch_ops;
4413 if (board_config == ALC_MODEL_AUTO)
Takashi Iwaie4770622011-07-08 11:11:35 +02004414 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004415 spec->shutup = alc_eapd_shutup;
4416
4417 alc_init_jacks(codec);
4418#ifdef CONFIG_SND_HDA_POWER_SAVE
4419 if (!spec->loopback.amplist)
4420 spec->loopback.amplist = alc262_loopbacks;
4421#endif
4422
4423 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004424
4425 error:
4426 alc_free(codec);
4427 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004428}
4429
4430/*
4431 * ALC268
4432 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004433/* bind Beep switches of both NID 0x0f and 0x10 */
4434static const struct hda_bind_ctls alc268_bind_beep_sw = {
4435 .ops = &snd_hda_bind_sw,
4436 .values = {
4437 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
4438 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
4439 0
4440 },
4441};
4442
4443static const struct snd_kcontrol_new alc268_beep_mixer[] = {
4444 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
4445 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
4446 { }
4447};
4448
4449/* set PCBEEP vol = 0, mute connections */
4450static const struct hda_verb alc268_beep_init_verbs[] = {
4451 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4452 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4453 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4454 { }
4455};
4456
4457/*
4458 * BIOS auto configuration
4459 */
4460static int alc268_parse_auto_config(struct hda_codec *codec)
4461{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004462 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai1d045db2011-07-07 18:23:21 +02004463 struct alc_spec *spec = codec->spec;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004464 int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
4465 if (err > 0) {
4466 if (!spec->no_analog && spec->autocfg.speaker_pins[0] != 0x1d) {
4467 add_mixer(spec, alc268_beep_mixer);
4468 add_verb(spec, alc268_beep_init_verbs);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004469 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004470 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004471 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004472}
4473
Takashi Iwai1d045db2011-07-07 18:23:21 +02004474/*
4475 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004476static int patch_alc268(struct hda_codec *codec)
4477{
4478 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004479 int i, has_beep, err;
4480
4481 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4482 if (spec == NULL)
4483 return -ENOMEM;
4484
4485 codec->spec = spec;
4486
4487 /* ALC268 has no aa-loopback mixer */
4488
Takashi Iwai6ebb8052011-08-16 15:15:40 +02004489 /* automatic parse from the BIOS config */
4490 err = alc268_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004491 if (err < 0)
4492 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004493
Takashi Iwai1d045db2011-07-07 18:23:21 +02004494 has_beep = 0;
4495 for (i = 0; i < spec->num_mixers; i++) {
4496 if (spec->mixers[i] == alc268_beep_mixer) {
4497 has_beep = 1;
4498 break;
4499 }
4500 }
4501
4502 if (has_beep) {
4503 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004504 if (err < 0)
4505 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004506 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
4507 /* override the amp caps for beep generator */
4508 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
4509 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
4510 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
4511 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4512 (0 << AC_AMPCAP_MUTE_SHIFT));
4513 }
4514
Takashi Iwai60a6a842011-07-27 14:01:24 +02004515 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004516 alc_auto_fill_adc_caps(codec);
4517 alc_rebuild_imux_for_auto_mic(codec);
4518 alc_remove_invalid_adc_nids(codec);
4519 }
4520
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004521 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwai1d045db2011-07-07 18:23:21 +02004522 set_capture_mixer(codec);
4523
4524 spec->vmaster_nid = 0x02;
4525
4526 codec->patch_ops = alc_patch_ops;
Takashi Iwai6ebb8052011-08-16 15:15:40 +02004527 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004528 spec->shutup = alc_eapd_shutup;
4529
4530 alc_init_jacks(codec);
4531
4532 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004533
4534 error:
4535 alc_free(codec);
4536 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004537}
4538
4539/*
4540 * ALC269
4541 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004542#ifdef CONFIG_SND_HDA_POWER_SAVE
4543#define alc269_loopbacks alc880_loopbacks
4544#endif
4545
4546static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
4547 .substreams = 1,
4548 .channels_min = 2,
4549 .channels_max = 8,
4550 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
4551 /* NID is set in alc_build_pcms */
4552 .ops = {
4553 .open = alc_playback_pcm_open,
4554 .prepare = alc_playback_pcm_prepare,
4555 .cleanup = alc_playback_pcm_cleanup
4556 },
4557};
4558
4559static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
4560 .substreams = 1,
4561 .channels_min = 2,
4562 .channels_max = 2,
4563 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
4564 /* NID is set in alc_build_pcms */
4565};
4566
4567#ifdef CONFIG_SND_HDA_POWER_SAVE
4568static int alc269_mic2_for_mute_led(struct hda_codec *codec)
4569{
4570 switch (codec->subsystem_id) {
4571 case 0x103c1586:
4572 return 1;
4573 }
4574 return 0;
4575}
4576
4577static int alc269_mic2_mute_check_ps(struct hda_codec *codec, hda_nid_t nid)
4578{
4579 /* update mute-LED according to the speaker mute state */
4580 if (nid == 0x01 || nid == 0x14) {
4581 int pinval;
4582 if (snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0) &
4583 HDA_AMP_MUTE)
4584 pinval = 0x24;
4585 else
4586 pinval = 0x20;
4587 /* mic2 vref pin is used for mute LED control */
4588 snd_hda_codec_update_cache(codec, 0x19, 0,
4589 AC_VERB_SET_PIN_WIDGET_CONTROL,
4590 pinval);
4591 }
4592 return alc_check_power_status(codec, nid);
4593}
4594#endif /* CONFIG_SND_HDA_POWER_SAVE */
4595
4596/* different alc269-variants */
4597enum {
4598 ALC269_TYPE_ALC269VA,
4599 ALC269_TYPE_ALC269VB,
4600 ALC269_TYPE_ALC269VC,
4601};
4602
4603/*
4604 * BIOS auto configuration
4605 */
4606static int alc269_parse_auto_config(struct hda_codec *codec)
4607{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004608 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004609 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
4610 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4611 struct alc_spec *spec = codec->spec;
4612 const hda_nid_t *ssids = spec->codec_variant == ALC269_TYPE_ALC269VA ?
4613 alc269va_ssids : alc269_ssids;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004614
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004615 return alc_parse_auto_config(codec, alc269_ignore, ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004616}
4617
Takashi Iwai1d045db2011-07-07 18:23:21 +02004618static void alc269_toggle_power_output(struct hda_codec *codec, int power_up)
4619{
4620 int val = alc_read_coef_idx(codec, 0x04);
4621 if (power_up)
4622 val |= 1 << 11;
4623 else
4624 val &= ~(1 << 11);
4625 alc_write_coef_idx(codec, 0x04, val);
4626}
4627
4628static void alc269_shutup(struct hda_codec *codec)
4629{
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004630 if ((alc_get_coef0(codec) & 0x00ff) == 0x017)
Takashi Iwai1d045db2011-07-07 18:23:21 +02004631 alc269_toggle_power_output(codec, 0);
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004632 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004633 alc269_toggle_power_output(codec, 0);
4634 msleep(150);
4635 }
4636}
4637
Takashi Iwai2a439522011-07-26 09:52:50 +02004638#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02004639static int alc269_resume(struct hda_codec *codec)
4640{
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004641 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004642 alc269_toggle_power_output(codec, 0);
4643 msleep(150);
4644 }
4645
4646 codec->patch_ops.init(codec);
4647
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004648 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004649 alc269_toggle_power_output(codec, 1);
4650 msleep(200);
4651 }
4652
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004653 if ((alc_get_coef0(codec) & 0x00ff) == 0x018)
Takashi Iwai1d045db2011-07-07 18:23:21 +02004654 alc269_toggle_power_output(codec, 1);
4655
4656 snd_hda_codec_resume_amp(codec);
4657 snd_hda_codec_resume_cache(codec);
4658 hda_call_check_power_status(codec, 0x01);
4659 return 0;
4660}
Takashi Iwai2a439522011-07-26 09:52:50 +02004661#endif /* CONFIG_PM */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004662
4663static void alc269_fixup_hweq(struct hda_codec *codec,
4664 const struct alc_fixup *fix, int action)
4665{
4666 int coef;
4667
4668 if (action != ALC_FIXUP_ACT_INIT)
4669 return;
4670 coef = alc_read_coef_idx(codec, 0x1e);
4671 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
4672}
4673
4674static void alc271_fixup_dmic(struct hda_codec *codec,
4675 const struct alc_fixup *fix, int action)
4676{
4677 static const struct hda_verb verbs[] = {
4678 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
4679 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
4680 {}
4681 };
4682 unsigned int cfg;
4683
4684 if (strcmp(codec->chip_name, "ALC271X"))
4685 return;
4686 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
4687 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
4688 snd_hda_sequence_write(codec, verbs);
4689}
4690
Takashi Iwai017f2a12011-07-09 14:42:25 +02004691static void alc269_fixup_pcm_44k(struct hda_codec *codec,
4692 const struct alc_fixup *fix, int action)
4693{
4694 struct alc_spec *spec = codec->spec;
4695
4696 if (action != ALC_FIXUP_ACT_PROBE)
4697 return;
4698
4699 /* Due to a hardware problem on Lenovo Ideadpad, we need to
4700 * fix the sample rate of analog I/O to 44.1kHz
4701 */
4702 spec->stream_analog_playback = &alc269_44k_pcm_analog_playback;
4703 spec->stream_analog_capture = &alc269_44k_pcm_analog_capture;
4704}
4705
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02004706static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
4707 const struct alc_fixup *fix, int action)
4708{
4709 int coef;
4710
4711 if (action != ALC_FIXUP_ACT_INIT)
4712 return;
4713 /* The digital-mic unit sends PDM (differential signal) instead of
4714 * the standard PCM, thus you can't record a valid mono stream as is.
4715 * Below is a workaround specific to ALC269 to control the dmic
4716 * signal source as mono.
4717 */
4718 coef = alc_read_coef_idx(codec, 0x07);
4719 alc_write_coef_idx(codec, 0x07, coef | 0x80);
4720}
4721
Takashi Iwai24519912011-08-16 15:08:49 +02004722static void alc269_quanta_automute(struct hda_codec *codec)
4723{
David Henningsson42cf0d02011-09-20 12:04:56 +02004724 update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +02004725
4726 snd_hda_codec_write(codec, 0x20, 0,
4727 AC_VERB_SET_COEF_INDEX, 0x0c);
4728 snd_hda_codec_write(codec, 0x20, 0,
4729 AC_VERB_SET_PROC_COEF, 0x680);
4730
4731 snd_hda_codec_write(codec, 0x20, 0,
4732 AC_VERB_SET_COEF_INDEX, 0x0c);
4733 snd_hda_codec_write(codec, 0x20, 0,
4734 AC_VERB_SET_PROC_COEF, 0x480);
4735}
4736
4737static void alc269_fixup_quanta_mute(struct hda_codec *codec,
4738 const struct alc_fixup *fix, int action)
4739{
4740 struct alc_spec *spec = codec->spec;
4741 if (action != ALC_FIXUP_ACT_PROBE)
4742 return;
4743 spec->automute_hook = alc269_quanta_automute;
4744}
4745
Takashi Iwai1d045db2011-07-07 18:23:21 +02004746enum {
4747 ALC269_FIXUP_SONY_VAIO,
4748 ALC275_FIXUP_SONY_VAIO_GPIO2,
4749 ALC269_FIXUP_DELL_M101Z,
4750 ALC269_FIXUP_SKU_IGNORE,
4751 ALC269_FIXUP_ASUS_G73JW,
4752 ALC269_FIXUP_LENOVO_EAPD,
4753 ALC275_FIXUP_SONY_HWEQ,
4754 ALC271_FIXUP_DMIC,
Takashi Iwai017f2a12011-07-09 14:42:25 +02004755 ALC269_FIXUP_PCM_44K,
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02004756 ALC269_FIXUP_STEREO_DMIC,
Takashi Iwai24519912011-08-16 15:08:49 +02004757 ALC269_FIXUP_QUANTA_MUTE,
4758 ALC269_FIXUP_LIFEBOOK,
Takashi Iwaia4297b52011-08-23 18:40:12 +02004759 ALC269_FIXUP_AMIC,
4760 ALC269_FIXUP_DMIC,
4761 ALC269VB_FIXUP_AMIC,
4762 ALC269VB_FIXUP_DMIC,
Takashi Iwai1d045db2011-07-07 18:23:21 +02004763};
4764
4765static const struct alc_fixup alc269_fixups[] = {
4766 [ALC269_FIXUP_SONY_VAIO] = {
4767 .type = ALC_FIXUP_VERBS,
4768 .v.verbs = (const struct hda_verb[]) {
4769 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
4770 {}
4771 }
4772 },
4773 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
4774 .type = ALC_FIXUP_VERBS,
4775 .v.verbs = (const struct hda_verb[]) {
4776 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
4777 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
4778 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4779 { }
4780 },
4781 .chained = true,
4782 .chain_id = ALC269_FIXUP_SONY_VAIO
4783 },
4784 [ALC269_FIXUP_DELL_M101Z] = {
4785 .type = ALC_FIXUP_VERBS,
4786 .v.verbs = (const struct hda_verb[]) {
4787 /* Enables internal speaker */
4788 {0x20, AC_VERB_SET_COEF_INDEX, 13},
4789 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
4790 {}
4791 }
4792 },
4793 [ALC269_FIXUP_SKU_IGNORE] = {
4794 .type = ALC_FIXUP_SKU,
4795 .v.sku = ALC_FIXUP_SKU_IGNORE,
4796 },
4797 [ALC269_FIXUP_ASUS_G73JW] = {
4798 .type = ALC_FIXUP_PINS,
4799 .v.pins = (const struct alc_pincfg[]) {
4800 { 0x17, 0x99130111 }, /* subwoofer */
4801 { }
4802 }
4803 },
4804 [ALC269_FIXUP_LENOVO_EAPD] = {
4805 .type = ALC_FIXUP_VERBS,
4806 .v.verbs = (const struct hda_verb[]) {
4807 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
4808 {}
4809 }
4810 },
4811 [ALC275_FIXUP_SONY_HWEQ] = {
4812 .type = ALC_FIXUP_FUNC,
4813 .v.func = alc269_fixup_hweq,
4814 .chained = true,
4815 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
4816 },
4817 [ALC271_FIXUP_DMIC] = {
4818 .type = ALC_FIXUP_FUNC,
4819 .v.func = alc271_fixup_dmic,
4820 },
Takashi Iwai017f2a12011-07-09 14:42:25 +02004821 [ALC269_FIXUP_PCM_44K] = {
4822 .type = ALC_FIXUP_FUNC,
4823 .v.func = alc269_fixup_pcm_44k,
4824 },
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02004825 [ALC269_FIXUP_STEREO_DMIC] = {
4826 .type = ALC_FIXUP_FUNC,
4827 .v.func = alc269_fixup_stereo_dmic,
4828 },
Takashi Iwai24519912011-08-16 15:08:49 +02004829 [ALC269_FIXUP_QUANTA_MUTE] = {
4830 .type = ALC_FIXUP_FUNC,
4831 .v.func = alc269_fixup_quanta_mute,
4832 },
4833 [ALC269_FIXUP_LIFEBOOK] = {
4834 .type = ALC_FIXUP_PINS,
4835 .v.pins = (const struct alc_pincfg[]) {
4836 { 0x1a, 0x2101103f }, /* dock line-out */
4837 { 0x1b, 0x23a11040 }, /* dock mic-in */
4838 { }
4839 },
4840 .chained = true,
4841 .chain_id = ALC269_FIXUP_QUANTA_MUTE
4842 },
Takashi Iwaia4297b52011-08-23 18:40:12 +02004843 [ALC269_FIXUP_AMIC] = {
4844 .type = ALC_FIXUP_PINS,
4845 .v.pins = (const struct alc_pincfg[]) {
4846 { 0x14, 0x99130110 }, /* speaker */
4847 { 0x15, 0x0121401f }, /* HP out */
4848 { 0x18, 0x01a19c20 }, /* mic */
4849 { 0x19, 0x99a3092f }, /* int-mic */
4850 { }
4851 },
4852 },
4853 [ALC269_FIXUP_DMIC] = {
4854 .type = ALC_FIXUP_PINS,
4855 .v.pins = (const struct alc_pincfg[]) {
4856 { 0x12, 0x99a3092f }, /* int-mic */
4857 { 0x14, 0x99130110 }, /* speaker */
4858 { 0x15, 0x0121401f }, /* HP out */
4859 { 0x18, 0x01a19c20 }, /* mic */
4860 { }
4861 },
4862 },
4863 [ALC269VB_FIXUP_AMIC] = {
4864 .type = ALC_FIXUP_PINS,
4865 .v.pins = (const struct alc_pincfg[]) {
4866 { 0x14, 0x99130110 }, /* speaker */
4867 { 0x18, 0x01a19c20 }, /* mic */
4868 { 0x19, 0x99a3092f }, /* int-mic */
4869 { 0x21, 0x0121401f }, /* HP out */
4870 { }
4871 },
4872 },
4873 [ALC269_FIXUP_DMIC] = {
4874 .type = ALC_FIXUP_PINS,
4875 .v.pins = (const struct alc_pincfg[]) {
4876 { 0x12, 0x99a3092f }, /* int-mic */
4877 { 0x14, 0x99130110 }, /* speaker */
4878 { 0x18, 0x01a19c20 }, /* mic */
4879 { 0x21, 0x0121401f }, /* HP out */
4880 { }
4881 },
4882 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02004883};
4884
4885static const struct snd_pci_quirk alc269_fixup_tbl[] = {
Takashi Iwai017f2a12011-07-09 14:42:25 +02004886 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02004887 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
4888 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
4889 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
4890 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
4891 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004892 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
4893 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4894 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4895 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
4896 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
4897 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
Takashi Iwai24519912011-08-16 15:08:49 +02004898 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004899 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
4900 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
4901 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
4902 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
4903 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
Takashi Iwai24519912011-08-16 15:08:49 +02004904 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_QUANTA_MUTE),
Takashi Iwai017f2a12011-07-09 14:42:25 +02004905 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Lenovo Ideapd", ALC269_FIXUP_PCM_44K),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004906 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
Takashi Iwaia4297b52011-08-23 18:40:12 +02004907
4908#if 1
4909 /* Below is a quirk table taken from the old code.
4910 * Basically the device should work as is without the fixup table.
4911 * If BIOS doesn't give a proper info, enable the corresponding
4912 * fixup entry.
4913 */
4914 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
4915 ALC269_FIXUP_AMIC),
4916 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
4917 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS N63Jn", ALC269_FIXUP_AMIC),
4918 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
4919 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
4920 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
4921 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
4922 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
4923 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
4924 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
4925 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
4926 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
4927 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
4928 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
4929 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
4930 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
4931 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
4932 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
4933 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
4934 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
4935 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
4936 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
4937 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
4938 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
4939 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
4940 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
4941 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
4942 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
4943 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
4944 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
4945 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
4946 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
4947 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
4948 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
4949 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
4950 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
4951 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
4952 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
4953 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
4954 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
4955 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
4956#endif
4957 {}
4958};
4959
4960static const struct alc_model_fixup alc269_fixup_models[] = {
4961 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
4962 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
Takashi Iwai1d045db2011-07-07 18:23:21 +02004963 {}
4964};
4965
4966
4967static int alc269_fill_coef(struct hda_codec *codec)
4968{
4969 int val;
4970
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004971 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004972 alc_write_coef_idx(codec, 0xf, 0x960b);
4973 alc_write_coef_idx(codec, 0xe, 0x8817);
4974 }
4975
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004976 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004977 alc_write_coef_idx(codec, 0xf, 0x960b);
4978 alc_write_coef_idx(codec, 0xe, 0x8814);
4979 }
4980
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004981 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004982 val = alc_read_coef_idx(codec, 0x04);
4983 /* Power up output pin */
4984 alc_write_coef_idx(codec, 0x04, val | (1<<11));
4985 }
4986
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004987 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004988 val = alc_read_coef_idx(codec, 0xd);
4989 if ((val & 0x0c00) >> 10 != 0x1) {
4990 /* Capless ramp up clock control */
4991 alc_write_coef_idx(codec, 0xd, val | (1<<10));
4992 }
4993 val = alc_read_coef_idx(codec, 0x17);
4994 if ((val & 0x01c0) >> 6 != 0x4) {
4995 /* Class D power on reset */
4996 alc_write_coef_idx(codec, 0x17, val | (1<<7));
4997 }
4998 }
4999
5000 val = alc_read_coef_idx(codec, 0xd); /* Class D */
5001 alc_write_coef_idx(codec, 0xd, val | (1<<14));
5002
5003 val = alc_read_coef_idx(codec, 0x4); /* HP */
5004 alc_write_coef_idx(codec, 0x4, val | (1<<11));
5005
5006 return 0;
5007}
5008
5009/*
5010 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005011static int patch_alc269(struct hda_codec *codec)
5012{
5013 struct alc_spec *spec;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005014 int err = 0;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005015
5016 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5017 if (spec == NULL)
5018 return -ENOMEM;
5019
5020 codec->spec = spec;
5021
5022 spec->mixer_nid = 0x0b;
5023
5024 alc_auto_parse_customize_define(codec);
5025
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005026 err = alc_codec_rename_from_preset(codec);
5027 if (err < 0)
5028 goto error;
5029
Takashi Iwai1d045db2011-07-07 18:23:21 +02005030 if (codec->vendor_id == 0x10ec0269) {
5031 spec->codec_variant = ALC269_TYPE_ALC269VA;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005032 switch (alc_get_coef0(codec) & 0x00f0) {
5033 case 0x0010:
Takashi Iwai1d045db2011-07-07 18:23:21 +02005034 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005035 spec->cdefine.platform_type == 1)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005036 err = alc_codec_rename(codec, "ALC271X");
Takashi Iwai1d045db2011-07-07 18:23:21 +02005037 spec->codec_variant = ALC269_TYPE_ALC269VB;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005038 break;
5039 case 0x0020:
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005040 if (codec->bus->pci->subsystem_vendor == 0x17aa &&
5041 codec->bus->pci->subsystem_device == 0x21f3)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005042 err = alc_codec_rename(codec, "ALC3202");
Takashi Iwai1d045db2011-07-07 18:23:21 +02005043 spec->codec_variant = ALC269_TYPE_ALC269VC;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005044 break;
5045 default:
Takashi Iwai1d045db2011-07-07 18:23:21 +02005046 alc_fix_pll_init(codec, 0x20, 0x04, 15);
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005047 }
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005048 if (err < 0)
5049 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005050 alc269_fill_coef(codec);
5051 }
5052
Takashi Iwaia4297b52011-08-23 18:40:12 +02005053 alc_pick_fixup(codec, alc269_fixup_models,
5054 alc269_fixup_tbl, alc269_fixups);
5055 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005056
Takashi Iwaia4297b52011-08-23 18:40:12 +02005057 /* automatic parse from the BIOS config */
5058 err = alc269_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005059 if (err < 0)
5060 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005061
Takashi Iwai60a6a842011-07-27 14:01:24 +02005062 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005063 alc_auto_fill_adc_caps(codec);
5064 alc_rebuild_imux_for_auto_mic(codec);
5065 alc_remove_invalid_adc_nids(codec);
5066 }
5067
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005068 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005069 set_capture_mixer(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005070
5071 if (!spec->no_analog && has_cdefine_beep(codec)) {
5072 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005073 if (err < 0)
5074 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005075 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005076 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005077
5078 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5079
5080 spec->vmaster_nid = 0x02;
5081
5082 codec->patch_ops = alc_patch_ops;
Takashi Iwai2a439522011-07-26 09:52:50 +02005083#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02005084 codec->patch_ops.resume = alc269_resume;
5085#endif
Takashi Iwaia4297b52011-08-23 18:40:12 +02005086 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005087 spec->shutup = alc269_shutup;
5088
5089 alc_init_jacks(codec);
5090#ifdef CONFIG_SND_HDA_POWER_SAVE
5091 if (!spec->loopback.amplist)
5092 spec->loopback.amplist = alc269_loopbacks;
5093 if (alc269_mic2_for_mute_led(codec))
5094 codec->patch_ops.check_power_status = alc269_mic2_mute_check_ps;
5095#endif
5096
5097 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005098
5099 error:
5100 alc_free(codec);
5101 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005102}
5103
5104/*
5105 * ALC861
5106 */
5107
Takashi Iwai1d045db2011-07-07 18:23:21 +02005108static int alc861_parse_auto_config(struct hda_codec *codec)
5109{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005110 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005111 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
5112 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005113}
5114
Takashi Iwai1d045db2011-07-07 18:23:21 +02005115#ifdef CONFIG_SND_HDA_POWER_SAVE
5116static const struct hda_amp_list alc861_loopbacks[] = {
5117 { 0x15, HDA_INPUT, 0 },
5118 { 0x15, HDA_INPUT, 1 },
5119 { 0x15, HDA_INPUT, 2 },
5120 { 0x15, HDA_INPUT, 3 },
5121 { } /* end */
5122};
5123#endif
5124
5125
5126/* Pin config fixes */
5127enum {
5128 PINFIX_FSC_AMILO_PI1505,
5129};
5130
5131static const struct alc_fixup alc861_fixups[] = {
5132 [PINFIX_FSC_AMILO_PI1505] = {
5133 .type = ALC_FIXUP_PINS,
5134 .v.pins = (const struct alc_pincfg[]) {
5135 { 0x0b, 0x0221101f }, /* HP */
5136 { 0x0f, 0x90170310 }, /* speaker */
5137 { }
5138 }
5139 },
5140};
5141
5142static const struct snd_pci_quirk alc861_fixup_tbl[] = {
5143 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", PINFIX_FSC_AMILO_PI1505),
5144 {}
5145};
5146
5147/*
5148 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005149static int patch_alc861(struct hda_codec *codec)
5150{
5151 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005152 int err;
5153
5154 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5155 if (spec == NULL)
5156 return -ENOMEM;
5157
5158 codec->spec = spec;
5159
5160 spec->mixer_nid = 0x15;
5161
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005162 alc_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
5163 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005164
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005165 /* automatic parse from the BIOS config */
5166 err = alc861_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005167 if (err < 0)
5168 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005169
Takashi Iwai60a6a842011-07-27 14:01:24 +02005170 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005171 alc_auto_fill_adc_caps(codec);
5172 alc_rebuild_imux_for_auto_mic(codec);
5173 alc_remove_invalid_adc_nids(codec);
5174 }
5175
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005176 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005177 set_capture_mixer(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005178
5179 if (!spec->no_analog) {
5180 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005181 if (err < 0)
5182 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005183 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
5184 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005185
5186 spec->vmaster_nid = 0x03;
5187
5188 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5189
5190 codec->patch_ops = alc_patch_ops;
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005191 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005192#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005193 spec->power_hook = alc_power_eapd;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005194 if (!spec->loopback.amplist)
5195 spec->loopback.amplist = alc861_loopbacks;
5196#endif
5197
5198 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005199
5200 error:
5201 alc_free(codec);
5202 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005203}
5204
5205/*
5206 * ALC861-VD support
5207 *
5208 * Based on ALC882
5209 *
5210 * In addition, an independent DAC
5211 */
5212#ifdef CONFIG_SND_HDA_POWER_SAVE
5213#define alc861vd_loopbacks alc880_loopbacks
5214#endif
5215
Takashi Iwai1d045db2011-07-07 18:23:21 +02005216static int alc861vd_parse_auto_config(struct hda_codec *codec)
5217{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005218 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005219 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5220 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005221}
5222
Takashi Iwai1d045db2011-07-07 18:23:21 +02005223enum {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005224 ALC660VD_FIX_ASUS_GPIO1,
5225 ALC861VD_FIX_DALLAS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005226};
5227
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005228/* exclude VREF80 */
5229static void alc861vd_fixup_dallas(struct hda_codec *codec,
5230 const struct alc_fixup *fix, int action)
5231{
5232 if (action == ALC_FIXUP_ACT_PRE_PROBE) {
5233 snd_hda_override_pin_caps(codec, 0x18, 0x00001714);
5234 snd_hda_override_pin_caps(codec, 0x19, 0x0000171c);
5235 }
5236}
5237
Takashi Iwai1d045db2011-07-07 18:23:21 +02005238static const struct alc_fixup alc861vd_fixups[] = {
5239 [ALC660VD_FIX_ASUS_GPIO1] = {
5240 .type = ALC_FIXUP_VERBS,
5241 .v.verbs = (const struct hda_verb[]) {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005242 /* reset GPIO1 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005243 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5244 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
5245 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
5246 { }
5247 }
5248 },
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005249 [ALC861VD_FIX_DALLAS] = {
5250 .type = ALC_FIXUP_FUNC,
5251 .v.func = alc861vd_fixup_dallas,
5252 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005253};
5254
5255static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005256 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005257 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005258 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005259 {}
5260};
5261
5262static const struct hda_verb alc660vd_eapd_verbs[] = {
5263 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
5264 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
5265 { }
5266};
5267
5268/*
5269 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005270static int patch_alc861vd(struct hda_codec *codec)
5271{
5272 struct alc_spec *spec;
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005273 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005274
5275 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5276 if (spec == NULL)
5277 return -ENOMEM;
5278
5279 codec->spec = spec;
5280
5281 spec->mixer_nid = 0x0b;
5282
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005283 alc_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
5284 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005285
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005286 /* automatic parse from the BIOS config */
5287 err = alc861vd_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005288 if (err < 0)
5289 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005290
Takashi Iwai1d045db2011-07-07 18:23:21 +02005291 if (codec->vendor_id == 0x10ec0660) {
5292 /* always turn on EAPD */
5293 add_verb(spec, alc660vd_eapd_verbs);
5294 }
5295
Takashi Iwai60a6a842011-07-27 14:01:24 +02005296 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005297 alc_auto_fill_adc_caps(codec);
5298 alc_rebuild_imux_for_auto_mic(codec);
5299 alc_remove_invalid_adc_nids(codec);
5300 }
5301
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005302 if (!spec->no_analog && !spec->cap_mixer)
5303 set_capture_mixer(codec);
5304
5305 if (!spec->no_analog) {
5306 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005307 if (err < 0)
5308 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005309 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5310 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005311
5312 spec->vmaster_nid = 0x02;
5313
5314 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5315
5316 codec->patch_ops = alc_patch_ops;
5317
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005318 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005319 spec->shutup = alc_eapd_shutup;
5320#ifdef CONFIG_SND_HDA_POWER_SAVE
5321 if (!spec->loopback.amplist)
5322 spec->loopback.amplist = alc861vd_loopbacks;
5323#endif
5324
5325 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005326
5327 error:
5328 alc_free(codec);
5329 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005330}
5331
5332/*
5333 * ALC662 support
5334 *
5335 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
5336 * configuration. Each pin widget can choose any input DACs and a mixer.
5337 * Each ADC is connected from a mixer of all inputs. This makes possible
5338 * 6-channel independent captures.
5339 *
5340 * In addition, an independent DAC for the multi-playback (not used in this
5341 * driver yet).
5342 */
5343#ifdef CONFIG_SND_HDA_POWER_SAVE
5344#define alc662_loopbacks alc880_loopbacks
5345#endif
5346
5347/*
5348 * BIOS auto configuration
5349 */
5350
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005351static int alc662_parse_auto_config(struct hda_codec *codec)
5352{
Takashi Iwai4c6d72d2011-05-02 11:30:18 +02005353 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005354 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
5355 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5356 const hda_nid_t *ssids;
Takashi Iwaiee979a142008-09-02 15:42:20 +02005357
Kailang Yang6227cdc2010-02-25 08:36:52 +01005358 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
5359 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005360 ssids = alc663_ssids;
Kailang Yang6227cdc2010-02-25 08:36:52 +01005361 else
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005362 ssids = alc662_ssids;
5363 return alc_parse_auto_config(codec, alc662_ignore, ssids);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005364}
5365
Todd Broch6be79482010-12-07 16:51:05 -08005366static void alc272_fixup_mario(struct hda_codec *codec,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005367 const struct alc_fixup *fix, int action)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01005368{
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005369 if (action != ALC_FIXUP_ACT_PROBE)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01005370 return;
Todd Broch6be79482010-12-07 16:51:05 -08005371 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
5372 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
5373 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
5374 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5375 (0 << AC_AMPCAP_MUTE_SHIFT)))
5376 printk(KERN_WARNING
5377 "hda_codec: failed to override amp caps for NID 0x2\n");
5378}
5379
David Henningsson6cb3b702010-09-09 08:51:44 +02005380enum {
Daniel T Chen2df03512010-10-10 22:39:28 -04005381 ALC662_FIXUP_ASPIRE,
David Henningsson6cb3b702010-09-09 08:51:44 +02005382 ALC662_FIXUP_IDEAPAD,
Todd Broch6be79482010-12-07 16:51:05 -08005383 ALC272_FIXUP_MARIO,
Anisse Astierd2ebd472011-01-20 12:36:21 +01005384 ALC662_FIXUP_CZC_P10T,
David Henningsson94024cd2011-04-29 14:10:55 +02005385 ALC662_FIXUP_SKU_IGNORE,
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02005386 ALC662_FIXUP_HP_RP5800,
Takashi Iwai53c334a2011-08-23 18:27:14 +02005387 ALC662_FIXUP_ASUS_MODE1,
5388 ALC662_FIXUP_ASUS_MODE2,
5389 ALC662_FIXUP_ASUS_MODE3,
5390 ALC662_FIXUP_ASUS_MODE4,
5391 ALC662_FIXUP_ASUS_MODE5,
5392 ALC662_FIXUP_ASUS_MODE6,
5393 ALC662_FIXUP_ASUS_MODE7,
5394 ALC662_FIXUP_ASUS_MODE8,
David Henningsson6cb3b702010-09-09 08:51:44 +02005395};
5396
5397static const struct alc_fixup alc662_fixups[] = {
Daniel T Chen2df03512010-10-10 22:39:28 -04005398 [ALC662_FIXUP_ASPIRE] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005399 .type = ALC_FIXUP_PINS,
5400 .v.pins = (const struct alc_pincfg[]) {
Daniel T Chen2df03512010-10-10 22:39:28 -04005401 { 0x15, 0x99130112 }, /* subwoofer */
5402 { }
5403 }
5404 },
David Henningsson6cb3b702010-09-09 08:51:44 +02005405 [ALC662_FIXUP_IDEAPAD] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005406 .type = ALC_FIXUP_PINS,
5407 .v.pins = (const struct alc_pincfg[]) {
David Henningsson6cb3b702010-09-09 08:51:44 +02005408 { 0x17, 0x99130112 }, /* subwoofer */
5409 { }
5410 }
5411 },
Todd Broch6be79482010-12-07 16:51:05 -08005412 [ALC272_FIXUP_MARIO] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005413 .type = ALC_FIXUP_FUNC,
5414 .v.func = alc272_fixup_mario,
Anisse Astierd2ebd472011-01-20 12:36:21 +01005415 },
5416 [ALC662_FIXUP_CZC_P10T] = {
5417 .type = ALC_FIXUP_VERBS,
5418 .v.verbs = (const struct hda_verb[]) {
5419 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5420 {}
5421 }
5422 },
David Henningsson94024cd2011-04-29 14:10:55 +02005423 [ALC662_FIXUP_SKU_IGNORE] = {
5424 .type = ALC_FIXUP_SKU,
5425 .v.sku = ALC_FIXUP_SKU_IGNORE,
Takashi Iwaic6b35872011-03-28 12:05:31 +02005426 },
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02005427 [ALC662_FIXUP_HP_RP5800] = {
5428 .type = ALC_FIXUP_PINS,
5429 .v.pins = (const struct alc_pincfg[]) {
5430 { 0x14, 0x0221201f }, /* HP out */
5431 { }
5432 },
5433 .chained = true,
5434 .chain_id = ALC662_FIXUP_SKU_IGNORE
5435 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02005436 [ALC662_FIXUP_ASUS_MODE1] = {
5437 .type = ALC_FIXUP_PINS,
5438 .v.pins = (const struct alc_pincfg[]) {
5439 { 0x14, 0x99130110 }, /* speaker */
5440 { 0x18, 0x01a19c20 }, /* mic */
5441 { 0x19, 0x99a3092f }, /* int-mic */
5442 { 0x21, 0x0121401f }, /* HP out */
5443 { }
5444 },
5445 .chained = true,
5446 .chain_id = ALC662_FIXUP_SKU_IGNORE
5447 },
5448 [ALC662_FIXUP_ASUS_MODE2] = {
Takashi Iwai2996bdb2011-08-18 16:02:24 +02005449 .type = ALC_FIXUP_PINS,
5450 .v.pins = (const struct alc_pincfg[]) {
5451 { 0x14, 0x99130110 }, /* speaker */
5452 { 0x18, 0x01a19820 }, /* mic */
5453 { 0x19, 0x99a3092f }, /* int-mic */
5454 { 0x1b, 0x0121401f }, /* HP out */
5455 { }
5456 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02005457 .chained = true,
5458 .chain_id = ALC662_FIXUP_SKU_IGNORE
5459 },
5460 [ALC662_FIXUP_ASUS_MODE3] = {
5461 .type = ALC_FIXUP_PINS,
5462 .v.pins = (const struct alc_pincfg[]) {
5463 { 0x14, 0x99130110 }, /* speaker */
5464 { 0x15, 0x0121441f }, /* HP */
5465 { 0x18, 0x01a19840 }, /* mic */
5466 { 0x19, 0x99a3094f }, /* int-mic */
5467 { 0x21, 0x01211420 }, /* HP2 */
5468 { }
5469 },
5470 .chained = true,
5471 .chain_id = ALC662_FIXUP_SKU_IGNORE
5472 },
5473 [ALC662_FIXUP_ASUS_MODE4] = {
5474 .type = ALC_FIXUP_PINS,
5475 .v.pins = (const struct alc_pincfg[]) {
5476 { 0x14, 0x99130110 }, /* speaker */
5477 { 0x16, 0x99130111 }, /* speaker */
5478 { 0x18, 0x01a19840 }, /* mic */
5479 { 0x19, 0x99a3094f }, /* int-mic */
5480 { 0x21, 0x0121441f }, /* HP */
5481 { }
5482 },
5483 .chained = true,
5484 .chain_id = ALC662_FIXUP_SKU_IGNORE
5485 },
5486 [ALC662_FIXUP_ASUS_MODE5] = {
5487 .type = ALC_FIXUP_PINS,
5488 .v.pins = (const struct alc_pincfg[]) {
5489 { 0x14, 0x99130110 }, /* speaker */
5490 { 0x15, 0x0121441f }, /* HP */
5491 { 0x16, 0x99130111 }, /* speaker */
5492 { 0x18, 0x01a19840 }, /* mic */
5493 { 0x19, 0x99a3094f }, /* int-mic */
5494 { }
5495 },
5496 .chained = true,
5497 .chain_id = ALC662_FIXUP_SKU_IGNORE
5498 },
5499 [ALC662_FIXUP_ASUS_MODE6] = {
5500 .type = ALC_FIXUP_PINS,
5501 .v.pins = (const struct alc_pincfg[]) {
5502 { 0x14, 0x99130110 }, /* speaker */
5503 { 0x15, 0x01211420 }, /* HP2 */
5504 { 0x18, 0x01a19840 }, /* mic */
5505 { 0x19, 0x99a3094f }, /* int-mic */
5506 { 0x1b, 0x0121441f }, /* HP */
5507 { }
5508 },
5509 .chained = true,
5510 .chain_id = ALC662_FIXUP_SKU_IGNORE
5511 },
5512 [ALC662_FIXUP_ASUS_MODE7] = {
5513 .type = ALC_FIXUP_PINS,
5514 .v.pins = (const struct alc_pincfg[]) {
5515 { 0x14, 0x99130110 }, /* speaker */
5516 { 0x17, 0x99130111 }, /* speaker */
5517 { 0x18, 0x01a19840 }, /* mic */
5518 { 0x19, 0x99a3094f }, /* int-mic */
5519 { 0x1b, 0x01214020 }, /* HP */
5520 { 0x21, 0x0121401f }, /* HP */
5521 { }
5522 },
5523 .chained = true,
5524 .chain_id = ALC662_FIXUP_SKU_IGNORE
5525 },
5526 [ALC662_FIXUP_ASUS_MODE8] = {
5527 .type = ALC_FIXUP_PINS,
5528 .v.pins = (const struct alc_pincfg[]) {
5529 { 0x14, 0x99130110 }, /* speaker */
5530 { 0x12, 0x99a30970 }, /* int-mic */
5531 { 0x15, 0x01214020 }, /* HP */
5532 { 0x17, 0x99130111 }, /* speaker */
5533 { 0x18, 0x01a19840 }, /* mic */
5534 { 0x21, 0x0121401f }, /* HP */
5535 { }
5536 },
5537 .chained = true,
5538 .chain_id = ALC662_FIXUP_SKU_IGNORE
Takashi Iwai2996bdb2011-08-18 16:02:24 +02005539 },
David Henningsson6cb3b702010-09-09 08:51:44 +02005540};
5541
Takashi Iwaia9111322011-05-02 11:30:18 +02005542static const struct snd_pci_quirk alc662_fixup_tbl[] = {
Takashi Iwai53c334a2011-08-23 18:27:14 +02005543 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
David Henningssona6c47a82011-02-10 15:39:19 +01005544 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
David Henningsson94024cd2011-04-29 14:10:55 +02005545 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
Daniel T Chen2df03512010-10-10 22:39:28 -04005546 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02005547 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
Takashi Iwai53c334a2011-08-23 18:27:14 +02005548 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
Daniel T Chena0e90ac2010-11-20 10:20:35 -05005549 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
Valentine Sinitsynd4118582010-10-01 22:24:08 +06005550 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
David Henningsson6cb3b702010-09-09 08:51:44 +02005551 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
Anisse Astierd2ebd472011-01-20 12:36:21 +01005552 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
Takashi Iwai53c334a2011-08-23 18:27:14 +02005553
5554#if 0
5555 /* Below is a quirk table taken from the old code.
5556 * Basically the device should work as is without the fixup table.
5557 * If BIOS doesn't give a proper info, enable the corresponding
5558 * fixup entry.
5559 */
5560 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
5561 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
5562 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
5563 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
5564 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5565 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5566 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5567 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
5568 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
5569 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5570 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
5571 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
5572 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
5573 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
5574 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
5575 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5576 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
5577 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
5578 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5579 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5580 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5581 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5582 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
5583 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
5584 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
5585 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5586 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
5587 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5588 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5589 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
5590 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5591 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5592 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
5593 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
5594 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
5595 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
5596 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
5597 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
5598 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
5599 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5600 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
5601 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
5602 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5603 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
5604 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
5605 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
5606 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
5607 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
5608 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5609 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
5610#endif
David Henningsson6cb3b702010-09-09 08:51:44 +02005611 {}
5612};
5613
Todd Broch6be79482010-12-07 16:51:05 -08005614static const struct alc_model_fixup alc662_fixup_models[] = {
5615 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
Takashi Iwai53c334a2011-08-23 18:27:14 +02005616 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
5617 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
5618 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
5619 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
5620 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
5621 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
5622 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
5623 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
Todd Broch6be79482010-12-07 16:51:05 -08005624 {}
5625};
David Henningsson6cb3b702010-09-09 08:51:44 +02005626
5627
Takashi Iwai1d045db2011-07-07 18:23:21 +02005628/*
5629 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005630static int patch_alc662(struct hda_codec *codec)
5631{
5632 struct alc_spec *spec;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005633 int err = 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005634
5635 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5636 if (!spec)
5637 return -ENOMEM;
5638
5639 codec->spec = spec;
5640
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02005641 spec->mixer_nid = 0x0b;
5642
Takashi Iwai53c334a2011-08-23 18:27:14 +02005643 /* handle multiple HPs as is */
5644 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5645
Kailang Yangda00c242010-03-19 11:23:45 +01005646 alc_auto_parse_customize_define(codec);
5647
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02005648 alc_fix_pll_init(codec, 0x20, 0x04, 15);
5649
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005650 err = alc_codec_rename_from_preset(codec);
5651 if (err < 0)
5652 goto error;
5653
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005654 if ((alc_get_coef0(codec) & (1 << 14)) &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005655 codec->bus->pci->subsystem_vendor == 0x1025 &&
5656 spec->cdefine.platform_type == 1) {
5657 if (alc_codec_rename(codec, "ALC272X") < 0)
5658 goto error;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005659 }
Kailang Yang274693f2009-12-03 10:07:50 +01005660
Takashi Iwaib9c51062011-08-24 18:08:07 +02005661 alc_pick_fixup(codec, alc662_fixup_models,
5662 alc662_fixup_tbl, alc662_fixups);
5663 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5664 /* automatic parse from the BIOS config */
5665 err = alc662_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005666 if (err < 0)
5667 goto error;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005668
Takashi Iwai60a6a842011-07-27 14:01:24 +02005669 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02005670 alc_auto_fill_adc_caps(codec);
Takashi Iwai21268962011-07-07 15:01:13 +02005671 alc_rebuild_imux_for_auto_mic(codec);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02005672 alc_remove_invalid_adc_nids(codec);
Takashi Iwaidd704692009-08-11 08:45:11 +02005673 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005674
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005675 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwaib59bdf32009-08-11 09:47:30 +02005676 set_capture_mixer(codec);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01005677
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005678 if (!spec->no_analog && has_cdefine_beep(codec)) {
5679 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005680 if (err < 0)
5681 goto error;
Kailang Yangda00c242010-03-19 11:23:45 +01005682 switch (codec->vendor_id) {
5683 case 0x10ec0662:
5684 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5685 break;
5686 case 0x10ec0272:
5687 case 0x10ec0663:
5688 case 0x10ec0665:
5689 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
5690 break;
5691 case 0x10ec0273:
5692 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
5693 break;
5694 }
Kailang Yangcec27c82010-02-04 14:18:18 +01005695 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01005696 spec->vmaster_nid = 0x02;
5697
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005698 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5699
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005700 codec->patch_ops = alc_patch_ops;
Takashi Iwaib9c51062011-08-24 18:08:07 +02005701 spec->init_hook = alc_auto_init_std;
Takashi Iwai1c716152011-04-07 10:37:16 +02005702 spec->shutup = alc_eapd_shutup;
David Henningsson6cb3b702010-09-09 08:51:44 +02005703
Kailang Yangbf1b0222010-10-21 08:49:56 +02005704 alc_init_jacks(codec);
5705
Takashi Iwaicb53c622007-08-10 17:21:45 +02005706#ifdef CONFIG_SND_HDA_POWER_SAVE
5707 if (!spec->loopback.amplist)
5708 spec->loopback.amplist = alc662_loopbacks;
5709#endif
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005710
5711 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005712
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005713 error:
5714 alc_free(codec);
5715 return err;
Kailang Yangb478b992011-05-18 11:51:15 +02005716}
5717
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005718/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005719 * ALC680 support
5720 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005721
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005722static int alc680_parse_auto_config(struct hda_codec *codec)
5723{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005724 return alc_parse_auto_config(codec, NULL, NULL);
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005725}
5726
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005727/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005728 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005729static int patch_alc680(struct hda_codec *codec)
5730{
5731 struct alc_spec *spec;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005732 int err;
5733
5734 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5735 if (spec == NULL)
5736 return -ENOMEM;
5737
5738 codec->spec = spec;
5739
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02005740 /* ALC680 has no aa-loopback mixer */
5741
Takashi Iwai1ebec5f2011-08-15 13:21:48 +02005742 /* automatic parse from the BIOS config */
5743 err = alc680_parse_auto_config(codec);
5744 if (err < 0) {
5745 alc_free(codec);
5746 return err;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005747 }
5748
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005749 if (!spec->no_analog && !spec->cap_mixer)
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005750 set_capture_mixer(codec);
5751
5752 spec->vmaster_nid = 0x02;
5753
5754 codec->patch_ops = alc_patch_ops;
Takashi Iwai1ebec5f2011-08-15 13:21:48 +02005755 spec->init_hook = alc_auto_init_std;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005756
5757 return 0;
5758}
5759
5760/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005761 * patch entries
5762 */
Takashi Iwaia9111322011-05-02 11:30:18 +02005763static const struct hda_codec_preset snd_hda_preset_realtek[] = {
Kailang Yang296f0332011-05-18 11:52:36 +02005764 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
Kailang Yangdf694da2005-12-05 19:42:22 +01005766 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
Kailang Yangf6a92242007-12-13 16:52:54 +01005767 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
Kailang Yanga361d842007-06-05 12:30:55 +02005768 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
Kailang Yangf6a92242007-12-13 16:52:54 +01005769 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01005770 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
Kailang Yang01afd412008-10-15 11:22:09 +02005771 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01005772 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
Kailang Yang296f0332011-05-18 11:52:36 +02005773 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01005774 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005775 .patch = patch_alc861 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01005776 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
5777 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
5778 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005779 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
Takashi Iwai49535502009-06-30 15:28:30 +02005780 .patch = patch_alc882 },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005781 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
5782 .patch = patch_alc662 },
David Henningssoncc667a72011-10-18 14:07:51 +02005783 { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
5784 .patch = patch_alc662 },
Kailang Yang6dda9f42008-05-27 12:05:31 +02005785 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
Kailang Yangcec27c82010-02-04 14:18:18 +01005786 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
Kailang Yang6227cdc2010-02-25 08:36:52 +01005787 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005788 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01005789 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
Takashi Iwai49535502009-06-30 15:28:30 +02005791 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
Clive Messer669faba2008-09-30 15:49:13 +02005792 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
Takashi Iwai49535502009-06-30 15:28:30 +02005793 .patch = patch_alc882 },
Takashi Iwaicb308f92008-04-16 14:13:29 +02005794 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
Takashi Iwai49535502009-06-30 15:28:30 +02005795 .patch = patch_alc882 },
Kailang Yangdf694da2005-12-05 19:42:22 +01005796 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005797 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
Kailang Yang44426082008-10-15 11:18:05 +02005798 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
Takashi Iwai49535502009-06-30 15:28:30 +02005799 .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005800 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
Takashi Iwai49535502009-06-30 15:28:30 +02005801 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
Kailang Yang274693f2009-12-03 10:07:50 +01005802 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005803 { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804 {} /* terminator */
5805};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005806
5807MODULE_ALIAS("snd-hda-codec-id:10ec*");
5808
5809MODULE_LICENSE("GPL");
5810MODULE_DESCRIPTION("Realtek HD-audio codec");
5811
5812static struct hda_codec_preset_list realtek_list = {
5813 .preset = snd_hda_preset_realtek,
5814 .owner = THIS_MODULE,
5815};
5816
5817static int __init patch_realtek_init(void)
5818{
5819 return snd_hda_add_codec_preset(&realtek_list);
5820}
5821
5822static void __exit patch_realtek_exit(void)
5823{
5824 snd_hda_delete_codec_preset(&realtek_list);
5825}
5826
5827module_init(patch_realtek_init)
5828module_exit(patch_realtek_exit)