blob: 8a74c1e8eedb00da49aec145722185d61b2f8bc7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
Takashi Iwai1d045db2011-07-07 18:23:21 +02004 * HD audio interface patch for Realtek ALC codecs
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Kailang Yangdf694da2005-12-05 19:42:22 +01006 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7 * PeiSen Hou <pshou@realtek.com.tw>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Takashi Iwai <tiwai@suse.de>
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01009 * Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This driver is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This driver is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/delay.h>
28#include <linux/slab.h>
29#include <linux/pci.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040030#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <sound/core.h>
Kailang Yang9ad0e492010-09-14 23:22:00 +020032#include <sound/jack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "hda_codec.h"
34#include "hda_local.h"
Kusanagi Kouichi680cd532009-02-05 00:00:58 +090035#include "hda_beep.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Takashi Iwai1d045db2011-07-07 18:23:21 +020037/* unsol event tags */
38#define ALC_FRONT_EVENT 0x01
39#define ALC_DCVOL_EVENT 0x02
40#define ALC_HP_EVENT 0x04
41#define ALC_MIC_EVENT 0x08
Takashi Iwaid4a86d82010-06-23 17:51:26 +020042
Kailang Yangdf694da2005-12-05 19:42:22 +010043/* for GPIO Poll */
44#define GPIO_MASK 0x03
45
Takashi Iwai4a79ba32009-04-22 16:31:35 +020046/* extra amp-initialization sequence types */
47enum {
48 ALC_INIT_NONE,
49 ALC_INIT_DEFAULT,
50 ALC_INIT_GPIO1,
51 ALC_INIT_GPIO2,
52 ALC_INIT_GPIO3,
53};
54
Kailang Yangda00c242010-03-19 11:23:45 +010055struct alc_customize_define {
56 unsigned int sku_cfg;
57 unsigned char port_connectivity;
58 unsigned char check_sum;
59 unsigned char customization;
60 unsigned char external_amp;
61 unsigned int enable_pcbeep:1;
62 unsigned int platform_type:1;
63 unsigned int swap:1;
64 unsigned int override:1;
David Henningsson90622912010-10-14 14:50:18 +020065 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
Kailang Yangda00c242010-03-19 11:23:45 +010066};
67
Takashi Iwaib5bfbc62011-01-13 14:22:32 +010068struct alc_fixup;
69
Takashi Iwaice764ab2011-04-27 16:35:23 +020070struct alc_multi_io {
71 hda_nid_t pin; /* multi-io widget pin NID */
72 hda_nid_t dac; /* DAC to be connected */
73 unsigned int ctl_in; /* cached input-pin control value */
74};
75
Takashi Iwaid922b512011-04-28 12:18:53 +020076enum {
Takashi Iwai3b8510c2011-04-28 14:03:24 +020077 ALC_AUTOMUTE_PIN, /* change the pin control */
78 ALC_AUTOMUTE_AMP, /* mute/unmute the pin AMP */
79 ALC_AUTOMUTE_MIXER, /* mute/unmute mixer widget AMP */
Takashi Iwaid922b512011-04-28 12:18:53 +020080};
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082struct alc_spec {
83 /* codec parameterization */
Takashi Iwaia9111322011-05-02 11:30:18 +020084 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 unsigned int num_mixers;
Takashi Iwaia9111322011-05-02 11:30:18 +020086 const struct snd_kcontrol_new *cap_mixer; /* capture mixer */
Takashi Iwai45bdd1c2009-02-06 16:11:25 +010087 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Takashi Iwai2d9c6482009-10-13 08:06:55 +020089 const struct hda_verb *init_verbs[10]; /* initialization verbs
Takashi Iwai9c7f8522006-06-28 15:08:22 +020090 * don't forget NULL
91 * termination!
Takashi Iwaie9edcee2005-06-13 14:16:38 +020092 */
93 unsigned int num_init_verbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Takashi Iwaiaa563af2009-07-31 10:05:11 +020095 char stream_name_analog[32]; /* analog PCM stream */
Takashi Iwaia9111322011-05-02 11:30:18 +020096 const struct hda_pcm_stream *stream_analog_playback;
97 const struct hda_pcm_stream *stream_analog_capture;
98 const struct hda_pcm_stream *stream_analog_alt_playback;
99 const struct hda_pcm_stream *stream_analog_alt_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Takashi Iwaiaa563af2009-07-31 10:05:11 +0200101 char stream_name_digital[32]; /* digital PCM stream */
Takashi Iwaia9111322011-05-02 11:30:18 +0200102 const struct hda_pcm_stream *stream_digital_playback;
103 const struct hda_pcm_stream *stream_digital_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 /* playback */
Takashi Iwai16ded522005-06-10 19:58:24 +0200106 struct hda_multi_out multiout; /* playback set-up
107 * max_channels, dacs must be set
108 * dig_out_nid and hp_nid are optional
109 */
Takashi Iwai63300792008-01-24 15:31:36 +0100110 hda_nid_t alt_dac_nid;
Takashi Iwai6a05ac42009-02-13 11:19:09 +0100111 hda_nid_t slave_dig_outs[3]; /* optional - for auto-parsing */
Takashi Iwai8c441982009-01-20 18:30:20 +0100112 int dig_out_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 /* capture */
115 unsigned int num_adc_nids;
Takashi Iwai4c6d72d2011-05-02 11:30:18 +0200116 const hda_nid_t *adc_nids;
117 const hda_nid_t *capsrc_nids;
Takashi Iwai16ded522005-06-10 19:58:24 +0200118 hda_nid_t dig_in_nid; /* digital-in NID; optional */
Takashi Iwai1f0f4b82011-06-27 10:52:59 +0200119 hda_nid_t mixer_nid; /* analog-mixer NID */
Takashi Iwai527e4d72011-10-27 16:33:27 +0200120 DECLARE_BITMAP(vol_ctls, 0x20 << 1);
121 DECLARE_BITMAP(sw_ctls, 0x20 << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Takashi Iwai840b64c2010-07-13 22:49:01 +0200123 /* capture setup for dynamic dual-adc switch */
Takashi Iwai840b64c2010-07-13 22:49:01 +0200124 hda_nid_t cur_adc;
125 unsigned int cur_adc_stream_tag;
126 unsigned int cur_adc_format;
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /* capture source */
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200129 unsigned int num_mux_defs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 const struct hda_input_mux *input_mux;
131 unsigned int cur_mux[3];
Takashi Iwai21268962011-07-07 15:01:13 +0200132 hda_nid_t ext_mic_pin;
133 hda_nid_t dock_mic_pin;
134 hda_nid_t int_mic_pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 /* channel model */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100137 const struct hda_channel_mode *channel_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 int num_channel_mode;
Takashi Iwai4e195a72006-07-28 14:47:34 +0200139 int need_dac_fix;
Hector Martin3b315d72009-06-02 10:54:19 +0200140 int const_channel_count;
141 int ext_channel_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 /* PCM information */
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100144 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
Takashi Iwai41e41f12005-06-08 14:48:49 +0200145
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200146 /* dynamic controls, init_verbs and input_mux */
147 struct auto_pin_cfg autocfg;
Kailang Yangda00c242010-03-19 11:23:45 +0100148 struct alc_customize_define cdefine;
Takashi Iwai603c4012008-07-30 15:01:44 +0200149 struct snd_array kctls;
Herton Ronaldo Krzesinski61b9b9b2009-01-28 09:16:33 -0200150 struct hda_input_mux private_imux[3];
Takashi Iwai41923e42007-10-22 17:20:10 +0200151 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwai4953550a2009-06-30 15:28:30 +0200152 hda_nid_t private_adc_nids[AUTO_CFG_MAX_OUTS];
153 hda_nid_t private_capsrc_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwai21268962011-07-07 15:01:13 +0200154 hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS];
155 unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS];
156 int int_mic_idx, ext_mic_idx, dock_mic_idx; /* for auto-mic */
Takashi Iwai834be882006-03-01 14:16:17 +0100157
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100158 /* hooks */
159 void (*init_hook)(struct hda_codec *codec);
160 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
Hector Martinf5de24b2009-12-20 22:51:31 +0100161#ifdef CONFIG_SND_HDA_POWER_SAVE
Daniel T Chenc97259d2009-12-27 18:52:08 -0500162 void (*power_hook)(struct hda_codec *codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100163#endif
Takashi Iwai1c7161532011-04-07 10:37:16 +0200164 void (*shutup)(struct hda_codec *codec);
Takashi Iwai24519912011-08-16 15:08:49 +0200165 void (*automute_hook)(struct hda_codec *codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100166
Takashi Iwai834be882006-03-01 14:16:17 +0100167 /* for pin sensing */
David Henningsson42cf0d02011-09-20 12:04:56 +0200168 unsigned int hp_jack_present:1;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200169 unsigned int line_jack_present:1;
Takashi Iwaie9427962011-04-28 15:46:07 +0200170 unsigned int master_mute:1;
Takashi Iwai6c819492009-08-10 18:47:44 +0200171 unsigned int auto_mic:1;
Takashi Iwai21268962011-07-07 15:01:13 +0200172 unsigned int auto_mic_valid_imux:1; /* valid imux for auto-mic */
David Henningsson42cf0d02011-09-20 12:04:56 +0200173 unsigned int automute_speaker:1; /* automute speaker outputs */
174 unsigned int automute_lo:1; /* automute LO outputs */
175 unsigned int detect_hp:1; /* Headphone detection enabled */
176 unsigned int detect_lo:1; /* Line-out detection enabled */
177 unsigned int automute_speaker_possible:1; /* there are speakers and either LO or HP */
178 unsigned int automute_lo_possible:1; /* there are line outs and HP */
Takashi Iwaicb53c622007-08-10 17:21:45 +0200179
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100180 /* other flags */
181 unsigned int no_analog :1; /* digital I/O only */
Takashi Iwai21268962011-07-07 15:01:13 +0200182 unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */
Takashi Iwai584c0c42011-03-10 12:51:11 +0100183 unsigned int single_input_src:1;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +0200184 unsigned int vol_in_capsrc:1; /* use capsrc volume (ADC has no vol) */
Takashi Iwai53c334a2011-08-23 18:27:14 +0200185 unsigned int parse_flags; /* passed to snd_hda_parse_pin_defcfg() */
Takashi Iwai24de1832011-11-07 17:13:39 +0100186 unsigned int shared_mic_hp:1; /* HP/Mic-in sharing */
Takashi Iwaid922b512011-04-28 12:18:53 +0200187
188 /* auto-mute control */
189 int automute_mode;
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200190 hda_nid_t automute_mixer_nid[AUTO_CFG_MAX_OUTS];
Takashi Iwaid922b512011-04-28 12:18:53 +0200191
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200192 int init_amp;
Takashi Iwaid433a672010-09-20 15:11:54 +0200193 int codec_variant; /* flag for other variants */
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100194
Takashi Iwai2134ea42008-01-10 16:53:55 +0100195 /* for virtual master */
196 hda_nid_t vmaster_nid;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200197#ifdef CONFIG_SND_HDA_POWER_SAVE
198 struct hda_loopback_check loopback;
199#endif
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200200
201 /* for PLL fix */
202 hda_nid_t pll_nid;
203 unsigned int pll_coef_idx, pll_coef_bit;
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200204 unsigned int coef0;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +0100205
206 /* fix-up list */
207 int fixup_id;
208 const struct alc_fixup *fixup_list;
209 const char *fixup_name;
Takashi Iwaice764ab2011-04-27 16:35:23 +0200210
211 /* multi-io */
212 int multi_ios;
213 struct alc_multi_io multi_io[4];
Takashi Iwai23c09b02011-08-19 09:05:35 +0200214
215 /* bind volumes */
216 struct snd_array bind_ctls;
Kailang Yangdf694da2005-12-05 19:42:22 +0100217};
218
Takashi Iwai1d045db2011-07-07 18:23:21 +0200219#define ALC_MODEL_AUTO 0 /* common for all chips */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Takashi Iwai44c02402011-07-08 15:14:19 +0200221static bool check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
222 int dir, unsigned int bits)
223{
224 if (!nid)
225 return false;
226 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
227 if (query_amp_caps(codec, nid, dir) & bits)
228 return true;
229 return false;
230}
231
232#define nid_has_mute(codec, nid, dir) \
233 check_amp_caps(codec, nid, dir, AC_AMPCAP_MUTE)
234#define nid_has_volume(codec, nid, dir) \
235 check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS)
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237/*
238 * input MUX handling
239 */
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200240static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
241 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
244 struct alc_spec *spec = codec->spec;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200245 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
246 if (mux_idx >= spec->num_mux_defs)
247 mux_idx = 0;
Takashi Iwai53111142010-03-08 12:13:07 +0100248 if (!spec->input_mux[mux_idx].num_items && mux_idx > 0)
249 mux_idx = 0;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200250 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200253static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
254 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
257 struct alc_spec *spec = codec->spec;
258 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
259
260 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
261 return 0;
262}
263
Takashi Iwai21268962011-07-07 15:01:13 +0200264static bool alc_dyn_adc_pcm_resetup(struct hda_codec *codec, int cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Takashi Iwai21268962011-07-07 15:01:13 +0200266 struct alc_spec *spec = codec->spec;
267 hda_nid_t new_adc = spec->adc_nids[spec->dyn_adc_idx[cur]];
268
269 if (spec->cur_adc && spec->cur_adc != new_adc) {
270 /* stream is running, let's swap the current ADC */
271 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
272 spec->cur_adc = new_adc;
273 snd_hda_codec_setup_stream(codec, new_adc,
274 spec->cur_adc_stream_tag, 0,
275 spec->cur_adc_format);
276 return true;
277 }
278 return false;
279}
280
Takashi Iwai61071592011-11-23 07:52:15 +0100281static inline hda_nid_t get_capsrc(struct alc_spec *spec, int idx)
282{
283 return spec->capsrc_nids ?
284 spec->capsrc_nids[idx] : spec->adc_nids[idx];
285}
286
Takashi Iwai24de1832011-11-07 17:13:39 +0100287static void call_update_outputs(struct hda_codec *codec);
288
Takashi Iwai21268962011-07-07 15:01:13 +0200289/* select the given imux item; either unmute exclusively or select the route */
290static int alc_mux_select(struct hda_codec *codec, unsigned int adc_idx,
291 unsigned int idx, bool force)
292{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 struct alc_spec *spec = codec->spec;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100294 const struct hda_input_mux *imux;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100295 unsigned int mux_idx;
Takashi Iwaidccc1812011-11-08 07:52:19 +0100296 int i, type, num_conns;
Takashi Iwai21268962011-07-07 15:01:13 +0200297 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Takashi Iwaicd896c32008-11-18 12:36:33 +0100299 mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
300 imux = &spec->input_mux[mux_idx];
Takashi Iwai53111142010-03-08 12:13:07 +0100301 if (!imux->num_items && mux_idx > 0)
302 imux = &spec->input_mux[0];
Takashi Iwaicce4aa32011-12-02 15:29:12 +0100303 if (!imux->num_items)
304 return 0;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100305
Takashi Iwai21268962011-07-07 15:01:13 +0200306 if (idx >= imux->num_items)
307 idx = imux->num_items - 1;
308 if (spec->cur_mux[adc_idx] == idx && !force)
309 return 0;
310 spec->cur_mux[adc_idx] = idx;
311
Takashi Iwai24de1832011-11-07 17:13:39 +0100312 /* for shared I/O, change the pin-control accordingly */
313 if (spec->shared_mic_hp) {
314 /* NOTE: this assumes that there are only two inputs, the
315 * first is the real internal mic and the second is HP jack.
316 */
317 snd_hda_codec_write(codec, spec->autocfg.inputs[1].pin, 0,
318 AC_VERB_SET_PIN_WIDGET_CONTROL,
319 spec->cur_mux[adc_idx] ?
320 PIN_VREF80 : PIN_HP);
321 spec->automute_speaker = !spec->cur_mux[adc_idx];
322 call_update_outputs(codec);
323 }
324
Takashi Iwai21268962011-07-07 15:01:13 +0200325 if (spec->dyn_adc_switch) {
326 alc_dyn_adc_pcm_resetup(codec, idx);
327 adc_idx = spec->dyn_adc_idx[idx];
328 }
329
Takashi Iwai61071592011-11-23 07:52:15 +0100330 nid = get_capsrc(spec, adc_idx);
Takashi Iwai21268962011-07-07 15:01:13 +0200331
332 /* no selection? */
Takashi Iwaidccc1812011-11-08 07:52:19 +0100333 num_conns = snd_hda_get_conn_list(codec, nid, NULL);
334 if (num_conns <= 1)
Takashi Iwai21268962011-07-07 15:01:13 +0200335 return 1;
336
Takashi Iwaia22d5432009-07-27 12:54:26 +0200337 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwai0169b6b2009-06-22 10:50:19 +0200338 if (type == AC_WID_AUD_MIX) {
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100339 /* Matrix-mixer style (e.g. ALC882) */
Takashi Iwaidccc1812011-11-08 07:52:19 +0100340 int active = imux->items[idx].index;
341 for (i = 0; i < num_conns; i++) {
342 unsigned int v = (i == active) ? 0 : HDA_AMP_MUTE;
343 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, i,
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100344 HDA_AMP_MUTE, v);
345 }
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100346 } else {
347 /* MUX style (e.g. ALC880) */
Takashi Iwai21268962011-07-07 15:01:13 +0200348 snd_hda_codec_write_cache(codec, nid, 0,
349 AC_VERB_SET_CONNECT_SEL,
350 imux->items[idx].index);
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100351 }
Takashi Iwai21268962011-07-07 15:01:13 +0200352 return 1;
353}
354
355static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
356 struct snd_ctl_elem_value *ucontrol)
357{
358 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
359 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
360 return alc_mux_select(codec, adc_idx,
361 ucontrol->value.enumerated.item[0], false);
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100362}
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364/*
Takashi Iwai23f0c042009-02-26 13:03:58 +0100365 * set up the input pin config (depending on the given auto-pin type)
366 */
367static void alc_set_input_pin(struct hda_codec *codec, hda_nid_t nid,
368 int auto_pin_type)
369{
370 unsigned int val = PIN_IN;
371
Takashi Iwai86e29592010-09-09 14:50:17 +0200372 if (auto_pin_type == AUTO_PIN_MIC) {
Takashi Iwai23f0c042009-02-26 13:03:58 +0100373 unsigned int pincap;
Takashi Iwai954a29c2010-07-30 10:55:44 +0200374 unsigned int oldval;
375 oldval = snd_hda_codec_read(codec, nid, 0,
376 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
Takashi Iwai1327a322009-03-23 13:07:47 +0100377 pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwai23f0c042009-02-26 13:03:58 +0100378 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
Takashi Iwai954a29c2010-07-30 10:55:44 +0200379 /* if the default pin setup is vref50, we give it priority */
380 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
Takashi Iwai23f0c042009-02-26 13:03:58 +0100381 val = PIN_VREF80;
Takashi Iwai461c6c32009-05-25 08:06:02 +0200382 else if (pincap & AC_PINCAP_VREF_50)
383 val = PIN_VREF50;
384 else if (pincap & AC_PINCAP_VREF_100)
385 val = PIN_VREF100;
386 else if (pincap & AC_PINCAP_VREF_GRD)
387 val = PIN_VREFGRD;
Takashi Iwai23f0c042009-02-26 13:03:58 +0100388 }
389 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, val);
390}
391
392/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200393 * Append the given mixer and verb elements for the later use
394 * The mixer array is referred in build_controls(), and init_verbs are
395 * called in init().
Takashi Iwaid88897e2008-10-31 15:01:37 +0100396 */
Takashi Iwaia9111322011-05-02 11:30:18 +0200397static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
Takashi Iwaid88897e2008-10-31 15:01:37 +0100398{
399 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
400 return;
401 spec->mixers[spec->num_mixers++] = mix;
402}
403
404static void add_verb(struct alc_spec *spec, const struct hda_verb *verb)
405{
406 if (snd_BUG_ON(spec->num_init_verbs >= ARRAY_SIZE(spec->init_verbs)))
407 return;
408 spec->init_verbs[spec->num_init_verbs++] = verb;
409}
410
411/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200412 * GPIO setup tables, used in initialization
Kailang Yangdf694da2005-12-05 19:42:22 +0100413 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200414/* Enable GPIO mask and set output */
Takashi Iwaia9111322011-05-02 11:30:18 +0200415static const struct hda_verb alc_gpio1_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200416 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
417 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
418 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
419 { }
420};
421
Takashi Iwaia9111322011-05-02 11:30:18 +0200422static const struct hda_verb alc_gpio2_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200423 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
424 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
425 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
426 { }
427};
428
Takashi Iwaia9111322011-05-02 11:30:18 +0200429static const struct hda_verb alc_gpio3_init_verbs[] = {
Kailang Yangbdd148a2007-05-08 15:19:08 +0200430 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
431 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
432 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
433 { }
434};
435
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200436/*
437 * Fix hardware PLL issue
438 * On some codecs, the analog PLL gating control must be off while
439 * the default value is 1.
440 */
441static void alc_fix_pll(struct hda_codec *codec)
442{
443 struct alc_spec *spec = codec->spec;
444 unsigned int val;
445
446 if (!spec->pll_nid)
447 return;
448 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
449 spec->pll_coef_idx);
450 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
451 AC_VERB_GET_PROC_COEF, 0);
452 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
453 spec->pll_coef_idx);
454 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
455 val & ~(1 << spec->pll_coef_bit));
456}
457
458static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
459 unsigned int coef_idx, unsigned int coef_bit)
460{
461 struct alc_spec *spec = codec->spec;
462 spec->pll_nid = nid;
463 spec->pll_coef_idx = coef_idx;
464 spec->pll_coef_bit = coef_bit;
465 alc_fix_pll(codec);
466}
467
Takashi Iwai1d045db2011-07-07 18:23:21 +0200468/*
469 * Jack-reporting via input-jack layer
470 */
471
472/* initialization of jacks; currently checks only a few known pins */
Kailang Yang9ad0e492010-09-14 23:22:00 +0200473static int alc_init_jacks(struct hda_codec *codec)
474{
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100475#ifdef CONFIG_SND_HDA_INPUT_JACK
Kailang Yang9ad0e492010-09-14 23:22:00 +0200476 struct alc_spec *spec = codec->spec;
477 int err;
478 unsigned int hp_nid = spec->autocfg.hp_pins[0];
Takashi Iwai21268962011-07-07 15:01:13 +0200479 unsigned int mic_nid = spec->ext_mic_pin;
480 unsigned int dock_nid = spec->dock_mic_pin;
Kailang Yang9ad0e492010-09-14 23:22:00 +0200481
Takashi Iwai265a0242010-09-21 11:26:21 +0200482 if (hp_nid) {
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100483 err = snd_hda_input_jack_add(codec, hp_nid,
484 SND_JACK_HEADPHONE, NULL);
Takashi Iwai265a0242010-09-21 11:26:21 +0200485 if (err < 0)
486 return err;
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100487 snd_hda_input_jack_report(codec, hp_nid);
Takashi Iwai265a0242010-09-21 11:26:21 +0200488 }
Kailang Yang9ad0e492010-09-14 23:22:00 +0200489
Takashi Iwai265a0242010-09-21 11:26:21 +0200490 if (mic_nid) {
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100491 err = snd_hda_input_jack_add(codec, mic_nid,
492 SND_JACK_MICROPHONE, NULL);
Takashi Iwai265a0242010-09-21 11:26:21 +0200493 if (err < 0)
494 return err;
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100495 snd_hda_input_jack_report(codec, mic_nid);
Takashi Iwai265a0242010-09-21 11:26:21 +0200496 }
Takashi Iwai8ed99d92011-05-17 12:05:02 +0200497 if (dock_nid) {
498 err = snd_hda_input_jack_add(codec, dock_nid,
499 SND_JACK_MICROPHONE, NULL);
500 if (err < 0)
501 return err;
502 snd_hda_input_jack_report(codec, dock_nid);
503 }
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100504#endif /* CONFIG_SND_HDA_INPUT_JACK */
Kailang Yang9ad0e492010-09-14 23:22:00 +0200505 return 0;
506}
Kailang Yang9ad0e492010-09-14 23:22:00 +0200507
Takashi Iwai1d045db2011-07-07 18:23:21 +0200508/*
509 * Jack detections for HP auto-mute and mic-switch
510 */
511
512/* check each pin in the given array; returns true if any of them is plugged */
513static bool detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins)
Kailang Yangc9b58002007-10-16 14:30:01 +0200514{
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200515 int i, present = 0;
Kailang Yangc9b58002007-10-16 14:30:01 +0200516
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200517 for (i = 0; i < num_pins; i++) {
518 hda_nid_t nid = pins[i];
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200519 if (!nid)
520 break;
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100521 snd_hda_input_jack_report(codec, nid);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200522 present |= snd_hda_jack_detect(codec, nid);
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200523 }
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200524 return present;
525}
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200526
Takashi Iwai1d045db2011-07-07 18:23:21 +0200527/* standard HP/line-out auto-mute helper */
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200528static void do_automute(struct hda_codec *codec, int num_pins, hda_nid_t *pins,
Takashi Iwaie9427962011-04-28 15:46:07 +0200529 bool mute, bool hp_out)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200530{
531 struct alc_spec *spec = codec->spec;
532 unsigned int mute_bits = mute ? HDA_AMP_MUTE : 0;
Takashi Iwaie9427962011-04-28 15:46:07 +0200533 unsigned int pin_bits = mute ? 0 : (hp_out ? PIN_HP : PIN_OUT);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200534 int i;
535
536 for (i = 0; i < num_pins; i++) {
537 hda_nid_t nid = pins[i];
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200538 if (!nid)
539 break;
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200540 switch (spec->automute_mode) {
541 case ALC_AUTOMUTE_PIN:
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200542 snd_hda_codec_write(codec, nid, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200543 AC_VERB_SET_PIN_WIDGET_CONTROL,
544 pin_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200545 break;
546 case ALC_AUTOMUTE_AMP:
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200547 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200548 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200549 break;
550 case ALC_AUTOMUTE_MIXER:
551 nid = spec->automute_mixer_nid[i];
552 if (!nid)
553 break;
554 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200555 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200556 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 1,
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200557 HDA_AMP_MUTE, mute_bits);
Takashi Iwai3b8510c2011-04-28 14:03:24 +0200558 break;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200559 }
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200560 }
Kailang Yangc9b58002007-10-16 14:30:01 +0200561}
562
David Henningsson42cf0d02011-09-20 12:04:56 +0200563/* Toggle outputs muting */
564static void update_outputs(struct hda_codec *codec)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200565{
566 struct alc_spec *spec = codec->spec;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200567 int on;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200568
Takashi Iwaic0a20262011-06-10 15:28:15 +0200569 /* Control HP pins/amps depending on master_mute state;
570 * in general, HP pins/amps control should be enabled in all cases,
571 * but currently set only for master_mute, just to be safe
572 */
Takashi Iwai24de1832011-11-07 17:13:39 +0100573 if (!spec->shared_mic_hp) /* don't change HP-pin when shared with mic */
574 do_automute(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
Takashi Iwaic0a20262011-06-10 15:28:15 +0200575 spec->autocfg.hp_pins, spec->master_mute, true);
576
David Henningsson42cf0d02011-09-20 12:04:56 +0200577 if (!spec->automute_speaker)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200578 on = 0;
579 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200580 on = spec->hp_jack_present | spec->line_jack_present;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200581 on |= spec->master_mute;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200582 do_automute(codec, ARRAY_SIZE(spec->autocfg.speaker_pins),
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200583 spec->autocfg.speaker_pins, on, false);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200584
585 /* toggle line-out mutes if needed, too */
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200586 /* if LO is a copy of either HP or Speaker, don't need to handle it */
587 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0] ||
588 spec->autocfg.line_out_pins[0] == spec->autocfg.speaker_pins[0])
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200589 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200590 if (!spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200591 on = 0;
592 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200593 on = spec->hp_jack_present;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200594 on |= spec->master_mute;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200595 do_automute(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200596 spec->autocfg.line_out_pins, on, false);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200597}
598
David Henningsson42cf0d02011-09-20 12:04:56 +0200599static void call_update_outputs(struct hda_codec *codec)
Takashi Iwai24519912011-08-16 15:08:49 +0200600{
601 struct alc_spec *spec = codec->spec;
602 if (spec->automute_hook)
603 spec->automute_hook(codec);
604 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200605 update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +0200606}
607
Takashi Iwai1d045db2011-07-07 18:23:21 +0200608/* standard HP-automute helper */
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200609static void alc_hp_automute(struct hda_codec *codec)
610{
611 struct alc_spec *spec = codec->spec;
612
David Henningsson42cf0d02011-09-20 12:04:56 +0200613 spec->hp_jack_present =
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200614 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
615 spec->autocfg.hp_pins);
David Henningsson42cf0d02011-09-20 12:04:56 +0200616 if (!spec->detect_hp || (!spec->automute_speaker && !spec->automute_lo))
Takashi Iwai3c715a92011-08-23 12:41:09 +0200617 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200618 call_update_outputs(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200619}
620
Takashi Iwai1d045db2011-07-07 18:23:21 +0200621/* standard line-out-automute helper */
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200622static void alc_line_automute(struct hda_codec *codec)
623{
624 struct alc_spec *spec = codec->spec;
625
Takashi Iwaie0d32e32011-09-26 15:19:55 +0200626 /* check LO jack only when it's different from HP */
627 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0])
628 return;
629
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200630 spec->line_jack_present =
631 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
632 spec->autocfg.line_out_pins);
David Henningsson42cf0d02011-09-20 12:04:56 +0200633 if (!spec->automute_speaker || !spec->detect_lo)
Takashi Iwai3c715a92011-08-23 12:41:09 +0200634 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200635 call_update_outputs(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200636}
637
Takashi Iwai8d087c72011-06-28 12:45:47 +0200638#define get_connection_index(codec, mux, nid) \
639 snd_hda_get_conn_index(codec, mux, nid, 0)
Takashi Iwai6c819492009-08-10 18:47:44 +0200640
Takashi Iwai1d045db2011-07-07 18:23:21 +0200641/* standard mic auto-switch helper */
Kailang Yang7fb0d782008-10-15 11:12:35 +0200642static void alc_mic_automute(struct hda_codec *codec)
643{
644 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +0200645 hda_nid_t *pins = spec->imux_pins;
Kailang Yang7fb0d782008-10-15 11:12:35 +0200646
Takashi Iwai21268962011-07-07 15:01:13 +0200647 if (!spec->auto_mic || !spec->auto_mic_valid_imux)
Takashi Iwai6c819492009-08-10 18:47:44 +0200648 return;
649 if (snd_BUG_ON(!spec->adc_nids))
650 return;
Takashi Iwai21268962011-07-07 15:01:13 +0200651 if (snd_BUG_ON(spec->int_mic_idx < 0 || spec->ext_mic_idx < 0))
Takashi Iwai840b64c2010-07-13 22:49:01 +0200652 return;
Takashi Iwai840b64c2010-07-13 22:49:01 +0200653
Takashi Iwai21268962011-07-07 15:01:13 +0200654 if (snd_hda_jack_detect(codec, pins[spec->ext_mic_idx]))
655 alc_mux_select(codec, 0, spec->ext_mic_idx, false);
656 else if (spec->dock_mic_idx >= 0 &&
657 snd_hda_jack_detect(codec, pins[spec->dock_mic_idx]))
658 alc_mux_select(codec, 0, spec->dock_mic_idx, false);
659 else
660 alc_mux_select(codec, 0, spec->int_mic_idx, false);
Takashi Iwai6c819492009-08-10 18:47:44 +0200661
Takashi Iwai21268962011-07-07 15:01:13 +0200662 snd_hda_input_jack_report(codec, pins[spec->ext_mic_idx]);
663 if (spec->dock_mic_idx >= 0)
664 snd_hda_input_jack_report(codec, pins[spec->dock_mic_idx]);
Kailang Yang7fb0d782008-10-15 11:12:35 +0200665}
666
Kailang Yangc9b58002007-10-16 14:30:01 +0200667/* unsolicited event for HP jack sensing */
668static void alc_sku_unsol_event(struct hda_codec *codec, unsigned int res)
669{
670 if (codec->vendor_id == 0x10ec0880)
671 res >>= 28;
672 else
673 res >>= 26;
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200674 switch (res) {
Takashi Iwai1d045db2011-07-07 18:23:21 +0200675 case ALC_HP_EVENT:
Takashi Iwaid922b512011-04-28 12:18:53 +0200676 alc_hp_automute(codec);
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200677 break;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200678 case ALC_FRONT_EVENT:
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200679 alc_line_automute(codec);
680 break;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200681 case ALC_MIC_EVENT:
Kailang Yang7fb0d782008-10-15 11:12:35 +0200682 alc_mic_automute(codec);
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200683 break;
684 }
Kailang Yang7fb0d782008-10-15 11:12:35 +0200685}
686
Takashi Iwai1d045db2011-07-07 18:23:21 +0200687/* call init functions of standard auto-mute helpers */
Kailang Yang7fb0d782008-10-15 11:12:35 +0200688static void alc_inithook(struct hda_codec *codec)
689{
Takashi Iwaid922b512011-04-28 12:18:53 +0200690 alc_hp_automute(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200691 alc_line_automute(codec);
Kailang Yang7fb0d782008-10-15 11:12:35 +0200692 alc_mic_automute(codec);
Kailang Yangc9b58002007-10-16 14:30:01 +0200693}
694
Kailang Yangf9423e72008-05-27 12:32:25 +0200695/* additional initialization for ALC888 variants */
696static void alc888_coef_init(struct hda_codec *codec)
697{
698 unsigned int tmp;
699
700 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
701 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
702 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
Takashi Iwai37db6232009-03-05 09:40:16 +0100703 if ((tmp & 0xf0) == 0x20)
Kailang Yangf9423e72008-05-27 12:32:25 +0200704 /* alc888S-VC */
705 snd_hda_codec_read(codec, 0x20, 0,
706 AC_VERB_SET_PROC_COEF, 0x830);
707 else
708 /* alc888-VB */
709 snd_hda_codec_read(codec, 0x20, 0,
710 AC_VERB_SET_PROC_COEF, 0x3030);
711}
712
Takashi Iwai1d045db2011-07-07 18:23:21 +0200713/* additional initialization for ALC889 variants */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200714static void alc889_coef_init(struct hda_codec *codec)
715{
716 unsigned int tmp;
717
718 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
719 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
720 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
721 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
722}
723
Takashi Iwai3fb4a502010-01-19 15:46:37 +0100724/* turn on/off EAPD control (only if available) */
725static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
726{
727 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
728 return;
729 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
730 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
731 on ? 2 : 0);
732}
733
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200734/* turn on/off EAPD controls of the codec */
735static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
736{
737 /* We currently only handle front, HP */
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200738 static hda_nid_t pins[] = {
739 0x0f, 0x10, 0x14, 0x15, 0
740 };
741 hda_nid_t *p;
742 for (p = pins; *p; p++)
743 set_eapd(codec, *p, on);
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200744}
745
Takashi Iwai1c7161532011-04-07 10:37:16 +0200746/* generic shutup callback;
747 * just turning off EPAD and a little pause for avoiding pop-noise
748 */
749static void alc_eapd_shutup(struct hda_codec *codec)
750{
751 alc_auto_setup_eapd(codec, false);
752 msleep(200);
753}
754
Takashi Iwai1d045db2011-07-07 18:23:21 +0200755/* generic EAPD initialization */
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200756static void alc_auto_init_amp(struct hda_codec *codec, int type)
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200757{
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200758 unsigned int tmp;
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200759
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200760 alc_auto_setup_eapd(codec, true);
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200761 switch (type) {
762 case ALC_INIT_GPIO1:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200763 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
764 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200765 case ALC_INIT_GPIO2:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200766 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
767 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200768 case ALC_INIT_GPIO3:
Kailang Yangbdd148a2007-05-08 15:19:08 +0200769 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
770 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200771 case ALC_INIT_DEFAULT:
Kailang Yangc9b58002007-10-16 14:30:01 +0200772 switch (codec->vendor_id) {
773 case 0x10ec0260:
774 snd_hda_codec_write(codec, 0x1a, 0,
775 AC_VERB_SET_COEF_INDEX, 7);
776 tmp = snd_hda_codec_read(codec, 0x1a, 0,
777 AC_VERB_GET_PROC_COEF, 0);
778 snd_hda_codec_write(codec, 0x1a, 0,
779 AC_VERB_SET_COEF_INDEX, 7);
780 snd_hda_codec_write(codec, 0x1a, 0,
781 AC_VERB_SET_PROC_COEF,
782 tmp | 0x2010);
783 break;
784 case 0x10ec0262:
785 case 0x10ec0880:
786 case 0x10ec0882:
787 case 0x10ec0883:
788 case 0x10ec0885:
Takashi Iwai4a5a4c52009-02-06 12:46:59 +0100789 case 0x10ec0887:
Takashi Iwai20b67dd2011-03-23 22:54:32 +0100790 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200791 alc889_coef_init(codec);
Kailang Yangc9b58002007-10-16 14:30:01 +0200792 break;
Kailang Yangf9423e72008-05-27 12:32:25 +0200793 case 0x10ec0888:
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200794 alc888_coef_init(codec);
Kailang Yangf9423e72008-05-27 12:32:25 +0200795 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100796#if 0 /* XXX: This may cause the silent output on speaker on some machines */
Kailang Yangc9b58002007-10-16 14:30:01 +0200797 case 0x10ec0267:
798 case 0x10ec0268:
799 snd_hda_codec_write(codec, 0x20, 0,
800 AC_VERB_SET_COEF_INDEX, 7);
801 tmp = snd_hda_codec_read(codec, 0x20, 0,
802 AC_VERB_GET_PROC_COEF, 0);
803 snd_hda_codec_write(codec, 0x20, 0,
Kailang Yangea1fb292008-08-26 12:58:38 +0200804 AC_VERB_SET_COEF_INDEX, 7);
Kailang Yangc9b58002007-10-16 14:30:01 +0200805 snd_hda_codec_write(codec, 0x20, 0,
806 AC_VERB_SET_PROC_COEF,
807 tmp | 0x3000);
808 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100809#endif /* XXX */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200810 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200811 break;
812 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200813}
Kailang Yangea1fb292008-08-26 12:58:38 +0200814
Takashi Iwai1d045db2011-07-07 18:23:21 +0200815/*
816 * Auto-Mute mode mixer enum support
817 */
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200818static int alc_automute_mode_info(struct snd_kcontrol *kcontrol,
819 struct snd_ctl_elem_info *uinfo)
820{
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200821 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
822 struct alc_spec *spec = codec->spec;
823 static const char * const texts2[] = {
824 "Disabled", "Enabled"
825 };
826 static const char * const texts3[] = {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200827 "Disabled", "Speaker Only", "Line-Out+Speaker"
828 };
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200829 const char * const *texts;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200830
831 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
832 uinfo->count = 1;
David Henningsson42cf0d02011-09-20 12:04:56 +0200833 if (spec->automute_speaker_possible && spec->automute_lo_possible) {
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200834 uinfo->value.enumerated.items = 3;
835 texts = texts3;
836 } else {
837 uinfo->value.enumerated.items = 2;
838 texts = texts2;
839 }
840 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
841 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200842 strcpy(uinfo->value.enumerated.name,
843 texts[uinfo->value.enumerated.item]);
844 return 0;
845}
846
847static int alc_automute_mode_get(struct snd_kcontrol *kcontrol,
848 struct snd_ctl_elem_value *ucontrol)
849{
850 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
851 struct alc_spec *spec = codec->spec;
David Henningsson42cf0d02011-09-20 12:04:56 +0200852 unsigned int val = 0;
853 if (spec->automute_speaker)
854 val++;
855 if (spec->automute_lo)
856 val++;
857
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200858 ucontrol->value.enumerated.item[0] = val;
859 return 0;
860}
861
862static int alc_automute_mode_put(struct snd_kcontrol *kcontrol,
863 struct snd_ctl_elem_value *ucontrol)
864{
865 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
866 struct alc_spec *spec = codec->spec;
867
868 switch (ucontrol->value.enumerated.item[0]) {
869 case 0:
David Henningsson42cf0d02011-09-20 12:04:56 +0200870 if (!spec->automute_speaker && !spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200871 return 0;
David Henningsson42cf0d02011-09-20 12:04:56 +0200872 spec->automute_speaker = 0;
873 spec->automute_lo = 0;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200874 break;
875 case 1:
David Henningsson42cf0d02011-09-20 12:04:56 +0200876 if (spec->automute_speaker_possible) {
877 if (!spec->automute_lo && spec->automute_speaker)
878 return 0;
879 spec->automute_speaker = 1;
880 spec->automute_lo = 0;
881 } else if (spec->automute_lo_possible) {
882 if (spec->automute_lo)
883 return 0;
884 spec->automute_lo = 1;
885 } else
886 return -EINVAL;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200887 break;
888 case 2:
David Henningsson42cf0d02011-09-20 12:04:56 +0200889 if (!spec->automute_lo_possible || !spec->automute_speaker_possible)
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200890 return -EINVAL;
David Henningsson42cf0d02011-09-20 12:04:56 +0200891 if (spec->automute_speaker && spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200892 return 0;
David Henningsson42cf0d02011-09-20 12:04:56 +0200893 spec->automute_speaker = 1;
894 spec->automute_lo = 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200895 break;
896 default:
897 return -EINVAL;
898 }
David Henningsson42cf0d02011-09-20 12:04:56 +0200899 call_update_outputs(codec);
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200900 return 1;
901}
902
Takashi Iwaia9111322011-05-02 11:30:18 +0200903static const struct snd_kcontrol_new alc_automute_mode_enum = {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200904 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
905 .name = "Auto-Mute Mode",
906 .info = alc_automute_mode_info,
907 .get = alc_automute_mode_get,
908 .put = alc_automute_mode_put,
909};
910
Takashi Iwai1d045db2011-07-07 18:23:21 +0200911static struct snd_kcontrol_new *alc_kcontrol_new(struct alc_spec *spec)
912{
913 snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32);
914 return snd_array_new(&spec->kctls);
915}
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200916
917static int alc_add_automute_mode_enum(struct hda_codec *codec)
918{
919 struct alc_spec *spec = codec->spec;
920 struct snd_kcontrol_new *knew;
921
922 knew = alc_kcontrol_new(spec);
923 if (!knew)
924 return -ENOMEM;
925 *knew = alc_automute_mode_enum;
926 knew->name = kstrdup("Auto-Mute Mode", GFP_KERNEL);
927 if (!knew->name)
928 return -ENOMEM;
929 return 0;
930}
931
Takashi Iwai1d045db2011-07-07 18:23:21 +0200932/*
933 * Check the availability of HP/line-out auto-mute;
934 * Set up appropriately if really supported
935 */
David Henningsson42cf0d02011-09-20 12:04:56 +0200936static void alc_init_automute(struct hda_codec *codec)
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200937{
938 struct alc_spec *spec = codec->spec;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200939 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai1daf5f42011-04-28 17:57:46 +0200940 int present = 0;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200941 int i;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200942
Takashi Iwai1daf5f42011-04-28 17:57:46 +0200943 if (cfg->hp_pins[0])
944 present++;
945 if (cfg->line_out_pins[0])
946 present++;
947 if (cfg->speaker_pins[0])
948 present++;
949 if (present < 2) /* need two different output types */
950 return;
Kailang Yangc9b58002007-10-16 14:30:01 +0200951
Takashi Iwaic48a8fb2011-07-27 16:41:57 +0200952 if (!cfg->speaker_pins[0] &&
953 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200954 memcpy(cfg->speaker_pins, cfg->line_out_pins,
955 sizeof(cfg->speaker_pins));
956 cfg->speaker_outs = cfg->line_outs;
957 }
958
Takashi Iwaic48a8fb2011-07-27 16:41:57 +0200959 if (!cfg->hp_pins[0] &&
960 cfg->line_out_type == AUTO_PIN_HP_OUT) {
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200961 memcpy(cfg->hp_pins, cfg->line_out_pins,
962 sizeof(cfg->hp_pins));
963 cfg->hp_outs = cfg->line_outs;
964 }
965
David Henningsson42cf0d02011-09-20 12:04:56 +0200966 spec->automute_mode = ALC_AUTOMUTE_PIN;
967
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200968 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200969 hda_nid_t nid = cfg->hp_pins[i];
Takashi Iwai06dec222011-05-17 10:00:16 +0200970 if (!is_jack_detectable(codec, nid))
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200971 continue;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200972 snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n",
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200973 nid);
974 snd_hda_codec_write_cache(codec, nid, 0,
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200975 AC_VERB_SET_UNSOLICITED_ENABLE,
Takashi Iwai1d045db2011-07-07 18:23:21 +0200976 AC_USRSP_EN | ALC_HP_EVENT);
David Henningsson42cf0d02011-09-20 12:04:56 +0200977 spec->detect_hp = 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200978 }
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200979
David Henningsson42cf0d02011-09-20 12:04:56 +0200980 if (cfg->line_out_type == AUTO_PIN_LINE_OUT && cfg->line_outs) {
981 if (cfg->speaker_outs)
982 for (i = 0; i < cfg->line_outs; i++) {
983 hda_nid_t nid = cfg->line_out_pins[i];
984 if (!is_jack_detectable(codec, nid))
985 continue;
986 snd_printdd("realtek: Enable Line-Out "
987 "auto-muting on NID 0x%x\n", nid);
988 snd_hda_codec_write_cache(codec, nid, 0,
989 AC_VERB_SET_UNSOLICITED_ENABLE,
990 AC_USRSP_EN | ALC_FRONT_EVENT);
991 spec->detect_lo = 1;
992 }
993 spec->automute_lo_possible = spec->detect_hp;
994 }
995
996 spec->automute_speaker_possible = cfg->speaker_outs &&
997 (spec->detect_hp || spec->detect_lo);
998
999 spec->automute_lo = spec->automute_lo_possible;
1000 spec->automute_speaker = spec->automute_speaker_possible;
1001
1002 if (spec->automute_speaker_possible || spec->automute_lo_possible) {
Takashi Iwaiae8a60a2011-04-28 18:09:52 +02001003 /* create a control for automute mode */
1004 alc_add_automute_mode_enum(codec);
1005 spec->unsol_event = alc_sku_unsol_event;
1006 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001007}
1008
Takashi Iwai1d045db2011-07-07 18:23:21 +02001009/* return the position of NID in the list, or -1 if not found */
Takashi Iwai21268962011-07-07 15:01:13 +02001010static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
1011{
1012 int i;
1013 for (i = 0; i < nums; i++)
1014 if (list[i] == nid)
1015 return i;
1016 return -1;
1017}
1018
Takashi Iwai1d045db2011-07-07 18:23:21 +02001019/* check whether dynamic ADC-switching is available */
1020static bool alc_check_dyn_adc_switch(struct hda_codec *codec)
1021{
1022 struct alc_spec *spec = codec->spec;
1023 struct hda_input_mux *imux = &spec->private_imux[0];
1024 int i, n, idx;
1025 hda_nid_t cap, pin;
1026
1027 if (imux != spec->input_mux) /* no dynamic imux? */
1028 return false;
1029
1030 for (n = 0; n < spec->num_adc_nids; n++) {
1031 cap = spec->private_capsrc_nids[n];
1032 for (i = 0; i < imux->num_items; i++) {
1033 pin = spec->imux_pins[i];
1034 if (!pin)
1035 return false;
1036 if (get_connection_index(codec, cap, pin) < 0)
1037 break;
1038 }
1039 if (i >= imux->num_items)
Takashi Iwai268ff6f2011-07-08 14:37:35 +02001040 return true; /* no ADC-switch is needed */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001041 }
1042
1043 for (i = 0; i < imux->num_items; i++) {
1044 pin = spec->imux_pins[i];
1045 for (n = 0; n < spec->num_adc_nids; n++) {
1046 cap = spec->private_capsrc_nids[n];
1047 idx = get_connection_index(codec, cap, pin);
1048 if (idx >= 0) {
1049 imux->items[i].index = idx;
1050 spec->dyn_adc_idx[i] = n;
1051 break;
1052 }
1053 }
1054 }
1055
1056 snd_printdd("realtek: enabling ADC switching\n");
1057 spec->dyn_adc_switch = 1;
1058 return true;
1059}
Takashi Iwai21268962011-07-07 15:01:13 +02001060
1061/* rebuild imux for matching with the given auto-mic pins (if not yet) */
1062static bool alc_rebuild_imux_for_auto_mic(struct hda_codec *codec)
1063{
1064 struct alc_spec *spec = codec->spec;
1065 struct hda_input_mux *imux;
1066 static char * const texts[3] = {
1067 "Mic", "Internal Mic", "Dock Mic"
1068 };
1069 int i;
1070
1071 if (!spec->auto_mic)
1072 return false;
1073 imux = &spec->private_imux[0];
1074 if (spec->input_mux == imux)
1075 return true;
1076 spec->imux_pins[0] = spec->ext_mic_pin;
1077 spec->imux_pins[1] = spec->int_mic_pin;
1078 spec->imux_pins[2] = spec->dock_mic_pin;
1079 for (i = 0; i < 3; i++) {
1080 strcpy(imux->items[i].label, texts[i]);
Takashi Iwai6759dc32011-11-23 07:38:59 +01001081 if (spec->imux_pins[i]) {
1082 hda_nid_t pin = spec->imux_pins[i];
1083 int c;
1084 for (c = 0; c < spec->num_adc_nids; c++) {
Takashi Iwai61071592011-11-23 07:52:15 +01001085 hda_nid_t cap = get_capsrc(spec, c);
Takashi Iwai6759dc32011-11-23 07:38:59 +01001086 int idx = get_connection_index(codec, cap, pin);
1087 if (idx >= 0) {
1088 imux->items[i].index = idx;
1089 break;
1090 }
1091 }
Takashi Iwai21268962011-07-07 15:01:13 +02001092 imux->num_items = i + 1;
Takashi Iwai6759dc32011-11-23 07:38:59 +01001093 }
Takashi Iwai21268962011-07-07 15:01:13 +02001094 }
1095 spec->num_mux_defs = 1;
1096 spec->input_mux = imux;
1097 return true;
1098}
1099
1100/* check whether all auto-mic pins are valid; setup indices if OK */
1101static bool alc_auto_mic_check_imux(struct hda_codec *codec)
1102{
1103 struct alc_spec *spec = codec->spec;
1104 const struct hda_input_mux *imux;
1105
1106 if (!spec->auto_mic)
1107 return false;
1108 if (spec->auto_mic_valid_imux)
1109 return true; /* already checked */
1110
1111 /* fill up imux indices */
1112 if (!alc_check_dyn_adc_switch(codec)) {
1113 spec->auto_mic = 0;
1114 return false;
1115 }
1116
1117 imux = spec->input_mux;
1118 spec->ext_mic_idx = find_idx_in_nid_list(spec->ext_mic_pin,
1119 spec->imux_pins, imux->num_items);
1120 spec->int_mic_idx = find_idx_in_nid_list(spec->int_mic_pin,
1121 spec->imux_pins, imux->num_items);
1122 spec->dock_mic_idx = find_idx_in_nid_list(spec->dock_mic_pin,
1123 spec->imux_pins, imux->num_items);
1124 if (spec->ext_mic_idx < 0 || spec->int_mic_idx < 0) {
1125 spec->auto_mic = 0;
1126 return false; /* no corresponding imux */
1127 }
1128
1129 snd_hda_codec_write_cache(codec, spec->ext_mic_pin, 0,
1130 AC_VERB_SET_UNSOLICITED_ENABLE,
Takashi Iwai1d045db2011-07-07 18:23:21 +02001131 AC_USRSP_EN | ALC_MIC_EVENT);
Takashi Iwai21268962011-07-07 15:01:13 +02001132 if (spec->dock_mic_pin)
1133 snd_hda_codec_write_cache(codec, spec->dock_mic_pin, 0,
1134 AC_VERB_SET_UNSOLICITED_ENABLE,
Takashi Iwai1d045db2011-07-07 18:23:21 +02001135 AC_USRSP_EN | ALC_MIC_EVENT);
Takashi Iwai21268962011-07-07 15:01:13 +02001136
1137 spec->auto_mic_valid_imux = 1;
1138 spec->auto_mic = 1;
1139 return true;
1140}
1141
Takashi Iwai1d045db2011-07-07 18:23:21 +02001142/*
1143 * Check the availability of auto-mic switch;
1144 * Set up if really supported
1145 */
Takashi Iwai6c819492009-08-10 18:47:44 +02001146static void alc_init_auto_mic(struct hda_codec *codec)
1147{
1148 struct alc_spec *spec = codec->spec;
1149 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001150 hda_nid_t fixed, ext, dock;
Takashi Iwai6c819492009-08-10 18:47:44 +02001151 int i;
1152
Takashi Iwai24de1832011-11-07 17:13:39 +01001153 if (spec->shared_mic_hp)
1154 return; /* no auto-mic for the shared I/O */
1155
Takashi Iwai21268962011-07-07 15:01:13 +02001156 spec->ext_mic_idx = spec->int_mic_idx = spec->dock_mic_idx = -1;
1157
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001158 fixed = ext = dock = 0;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02001159 for (i = 0; i < cfg->num_inputs; i++) {
1160 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai6c819492009-08-10 18:47:44 +02001161 unsigned int defcfg;
Takashi Iwai6c819492009-08-10 18:47:44 +02001162 defcfg = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001163 switch (snd_hda_get_input_pin_attr(defcfg)) {
1164 case INPUT_PIN_ATTR_INT:
Takashi Iwai6c819492009-08-10 18:47:44 +02001165 if (fixed)
1166 return; /* already occupied */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001167 if (cfg->inputs[i].type != AUTO_PIN_MIC)
1168 return; /* invalid type */
Takashi Iwai6c819492009-08-10 18:47:44 +02001169 fixed = nid;
1170 break;
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001171 case INPUT_PIN_ATTR_UNUSED:
1172 return; /* invalid entry */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001173 case INPUT_PIN_ATTR_DOCK:
1174 if (dock)
1175 return; /* already occupied */
1176 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
1177 return; /* invalid type */
1178 dock = nid;
1179 break;
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001180 default:
Takashi Iwai6c819492009-08-10 18:47:44 +02001181 if (ext)
1182 return; /* already occupied */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001183 if (cfg->inputs[i].type != AUTO_PIN_MIC)
1184 return; /* invalid type */
Takashi Iwai6c819492009-08-10 18:47:44 +02001185 ext = nid;
1186 break;
Takashi Iwai6c819492009-08-10 18:47:44 +02001187 }
1188 }
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001189 if (!ext && dock) {
1190 ext = dock;
1191 dock = 0;
1192 }
Takashi Iwaieaa9b3a2010-01-17 13:09:33 +01001193 if (!ext || !fixed)
1194 return;
Takashi Iwaie35d9d62011-05-17 11:28:16 +02001195 if (!is_jack_detectable(codec, ext))
Takashi Iwai6c819492009-08-10 18:47:44 +02001196 return; /* no unsol support */
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001197 if (dock && !is_jack_detectable(codec, dock))
1198 return; /* no unsol support */
Takashi Iwai21268962011-07-07 15:01:13 +02001199
1200 /* check imux indices */
1201 spec->ext_mic_pin = ext;
1202 spec->int_mic_pin = fixed;
1203 spec->dock_mic_pin = dock;
1204
1205 spec->auto_mic = 1;
1206 if (!alc_auto_mic_check_imux(codec))
1207 return;
1208
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001209 snd_printdd("realtek: Enable auto-mic switch on NID 0x%x/0x%x/0x%x\n",
1210 ext, fixed, dock);
Takashi Iwai6c819492009-08-10 18:47:44 +02001211 spec->unsol_event = alc_sku_unsol_event;
1212}
1213
Takashi Iwai1d045db2011-07-07 18:23:21 +02001214/* check the availabilities of auto-mute and auto-mic switches */
1215static void alc_auto_check_switches(struct hda_codec *codec)
1216{
David Henningsson42cf0d02011-09-20 12:04:56 +02001217 alc_init_automute(codec);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001218 alc_init_auto_mic(codec);
1219}
1220
1221/*
1222 * Realtek SSID verification
1223 */
1224
David Henningsson90622912010-10-14 14:50:18 +02001225/* Could be any non-zero and even value. When used as fixup, tells
1226 * the driver to ignore any present sku defines.
1227 */
1228#define ALC_FIXUP_SKU_IGNORE (2)
1229
Kailang Yangda00c242010-03-19 11:23:45 +01001230static int alc_auto_parse_customize_define(struct hda_codec *codec)
1231{
1232 unsigned int ass, tmp, i;
Takashi Iwai7fb56222010-03-22 17:09:47 +01001233 unsigned nid = 0;
Kailang Yangda00c242010-03-19 11:23:45 +01001234 struct alc_spec *spec = codec->spec;
1235
Takashi Iwaib6cbe512010-07-28 17:43:36 +02001236 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
1237
David Henningsson90622912010-10-14 14:50:18 +02001238 if (spec->cdefine.fixup) {
1239 ass = spec->cdefine.sku_cfg;
1240 if (ass == ALC_FIXUP_SKU_IGNORE)
1241 return -1;
1242 goto do_sku;
1243 }
1244
Kailang Yangda00c242010-03-19 11:23:45 +01001245 ass = codec->subsystem_id & 0xffff;
Takashi Iwaib6cbe512010-07-28 17:43:36 +02001246 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
Kailang Yangda00c242010-03-19 11:23:45 +01001247 goto do_sku;
1248
1249 nid = 0x1d;
1250 if (codec->vendor_id == 0x10ec0260)
1251 nid = 0x17;
1252 ass = snd_hda_codec_get_pincfg(codec, nid);
1253
1254 if (!(ass & 1)) {
1255 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
1256 codec->chip_name, ass);
1257 return -1;
1258 }
1259
1260 /* check sum */
1261 tmp = 0;
1262 for (i = 1; i < 16; i++) {
1263 if ((ass >> i) & 1)
1264 tmp++;
1265 }
1266 if (((ass >> 16) & 0xf) != tmp)
1267 return -1;
1268
1269 spec->cdefine.port_connectivity = ass >> 30;
1270 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
1271 spec->cdefine.check_sum = (ass >> 16) & 0xf;
1272 spec->cdefine.customization = ass >> 8;
1273do_sku:
1274 spec->cdefine.sku_cfg = ass;
1275 spec->cdefine.external_amp = (ass & 0x38) >> 3;
1276 spec->cdefine.platform_type = (ass & 0x4) >> 2;
1277 spec->cdefine.swap = (ass & 0x2) >> 1;
1278 spec->cdefine.override = ass & 0x1;
1279
1280 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
1281 nid, spec->cdefine.sku_cfg);
1282 snd_printd("SKU: port_connectivity=0x%x\n",
1283 spec->cdefine.port_connectivity);
1284 snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
1285 snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
1286 snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
1287 snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
1288 snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
1289 snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
1290 snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
1291
1292 return 0;
1293}
1294
Takashi Iwai1d045db2011-07-07 18:23:21 +02001295/* return true if the given NID is found in the list */
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001296static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
1297{
Takashi Iwai21268962011-07-07 15:01:13 +02001298 return find_idx_in_nid_list(nid, list, nums) >= 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001299}
1300
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001301/* check subsystem ID and set up device-specific initialization;
1302 * return 1 if initialized, 0 if invalid SSID
1303 */
1304/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
1305 * 31 ~ 16 : Manufacture ID
1306 * 15 ~ 8 : SKU ID
1307 * 7 ~ 0 : Assembly ID
1308 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
1309 */
1310static int alc_subsystem_id(struct hda_codec *codec,
1311 hda_nid_t porta, hda_nid_t porte,
Kailang Yang6227cdc2010-02-25 08:36:52 +01001312 hda_nid_t portd, hda_nid_t porti)
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001313{
1314 unsigned int ass, tmp, i;
1315 unsigned nid;
1316 struct alc_spec *spec = codec->spec;
1317
David Henningsson90622912010-10-14 14:50:18 +02001318 if (spec->cdefine.fixup) {
1319 ass = spec->cdefine.sku_cfg;
1320 if (ass == ALC_FIXUP_SKU_IGNORE)
1321 return 0;
1322 goto do_sku;
1323 }
1324
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001325 ass = codec->subsystem_id & 0xffff;
1326 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
1327 goto do_sku;
1328
1329 /* invalid SSID, check the special NID pin defcfg instead */
1330 /*
Sasha Alexandrdef319f2009-06-16 16:00:15 -04001331 * 31~30 : port connectivity
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001332 * 29~21 : reserve
1333 * 20 : PCBEEP input
1334 * 19~16 : Check sum (15:1)
1335 * 15~1 : Custom
1336 * 0 : override
1337 */
1338 nid = 0x1d;
1339 if (codec->vendor_id == 0x10ec0260)
1340 nid = 0x17;
1341 ass = snd_hda_codec_get_pincfg(codec, nid);
1342 snd_printd("realtek: No valid SSID, "
1343 "checking pincfg 0x%08x for NID 0x%x\n",
Takashi Iwaicb6605c2009-04-28 13:03:19 +02001344 ass, nid);
Kailang Yang6227cdc2010-02-25 08:36:52 +01001345 if (!(ass & 1))
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001346 return 0;
1347 if ((ass >> 30) != 1) /* no physical connection */
1348 return 0;
1349
1350 /* check sum */
1351 tmp = 0;
1352 for (i = 1; i < 16; i++) {
1353 if ((ass >> i) & 1)
1354 tmp++;
1355 }
1356 if (((ass >> 16) & 0xf) != tmp)
1357 return 0;
1358do_sku:
1359 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
1360 ass & 0xffff, codec->vendor_id);
1361 /*
1362 * 0 : override
1363 * 1 : Swap Jack
1364 * 2 : 0 --> Desktop, 1 --> Laptop
1365 * 3~5 : External Amplifier control
1366 * 7~6 : Reserved
1367 */
1368 tmp = (ass & 0x38) >> 3; /* external Amp control */
1369 switch (tmp) {
1370 case 1:
1371 spec->init_amp = ALC_INIT_GPIO1;
1372 break;
1373 case 3:
1374 spec->init_amp = ALC_INIT_GPIO2;
1375 break;
1376 case 7:
1377 spec->init_amp = ALC_INIT_GPIO3;
1378 break;
1379 case 5:
Takashi Iwai5a8cfb42010-11-26 17:11:18 +01001380 default:
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001381 spec->init_amp = ALC_INIT_DEFAULT;
1382 break;
1383 }
1384
1385 /* is laptop or Desktop and enable the function "Mute internal speaker
1386 * when the external headphone out jack is plugged"
1387 */
1388 if (!(ass & 0x8000))
1389 return 1;
1390 /*
1391 * 10~8 : Jack location
1392 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1393 * 14~13: Resvered
1394 * 15 : 1 --> enable the function "Mute internal speaker
1395 * when the external headphone out jack is plugged"
1396 */
Takashi Iwai5fe6e012011-09-26 10:41:21 +02001397 if (!spec->autocfg.hp_pins[0] &&
1398 !(spec->autocfg.line_out_pins[0] &&
1399 spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
Takashi Iwai01d48252009-10-06 13:21:54 +02001400 hda_nid_t nid;
Kailang Yangc9b58002007-10-16 14:30:01 +02001401 tmp = (ass >> 11) & 0x3; /* HP to chassis */
1402 if (tmp == 0)
Takashi Iwai01d48252009-10-06 13:21:54 +02001403 nid = porta;
Kailang Yangc9b58002007-10-16 14:30:01 +02001404 else if (tmp == 1)
Takashi Iwai01d48252009-10-06 13:21:54 +02001405 nid = porte;
Kailang Yangc9b58002007-10-16 14:30:01 +02001406 else if (tmp == 2)
Takashi Iwai01d48252009-10-06 13:21:54 +02001407 nid = portd;
Kailang Yang6227cdc2010-02-25 08:36:52 +01001408 else if (tmp == 3)
1409 nid = porti;
Kailang Yangc9b58002007-10-16 14:30:01 +02001410 else
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001411 return 1;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001412 if (found_in_nid_list(nid, spec->autocfg.line_out_pins,
1413 spec->autocfg.line_outs))
1414 return 1;
Takashi Iwai01d48252009-10-06 13:21:54 +02001415 spec->autocfg.hp_pins[0] = nid;
Kailang Yangc9b58002007-10-16 14:30:01 +02001416 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001417 return 1;
1418}
Kailang Yangea1fb292008-08-26 12:58:38 +02001419
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001420/* Check the validity of ALC subsystem-id
1421 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
1422static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001423{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001424 if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001425 struct alc_spec *spec = codec->spec;
1426 snd_printd("realtek: "
1427 "Enable default setup for auto mode as fallback\n");
1428 spec->init_amp = ALC_INIT_DEFAULT;
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001429 }
Takashi Iwai21268962011-07-07 15:01:13 +02001430}
Takashi Iwai1a1455d2011-04-28 17:36:18 +02001431
Takashi Iwai41e41f12005-06-08 14:48:49 +02001432/*
Takashi Iwaif8f25ba2009-10-06 08:31:29 +02001433 * Fix-up pin default configurations and add default verbs
Takashi Iwaif95474e2007-07-10 00:47:43 +02001434 */
1435
1436struct alc_pincfg {
1437 hda_nid_t nid;
1438 u32 val;
1439};
1440
Todd Broche1eb5f12010-12-06 11:19:51 -08001441struct alc_model_fixup {
1442 const int id;
1443 const char *name;
1444};
1445
Takashi Iwaif8f25ba2009-10-06 08:31:29 +02001446struct alc_fixup {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001447 int type;
Takashi Iwai361fe6e2011-01-14 09:55:32 +01001448 bool chained;
1449 int chain_id;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001450 union {
1451 unsigned int sku;
1452 const struct alc_pincfg *pins;
1453 const struct hda_verb *verbs;
1454 void (*func)(struct hda_codec *codec,
1455 const struct alc_fixup *fix,
1456 int action);
1457 } v;
Takashi Iwaif8f25ba2009-10-06 08:31:29 +02001458};
1459
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001460enum {
1461 ALC_FIXUP_INVALID,
1462 ALC_FIXUP_SKU,
1463 ALC_FIXUP_PINS,
1464 ALC_FIXUP_VERBS,
1465 ALC_FIXUP_FUNC,
1466};
Takashi Iwaif95474e2007-07-10 00:47:43 +02001467
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001468enum {
1469 ALC_FIXUP_ACT_PRE_PROBE,
1470 ALC_FIXUP_ACT_PROBE,
Takashi Iwai58701122011-01-13 15:41:45 +01001471 ALC_FIXUP_ACT_INIT,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001472};
1473
1474static void alc_apply_fixup(struct hda_codec *codec, int action)
1475{
1476 struct alc_spec *spec = codec->spec;
1477 int id = spec->fixup_id;
Takashi Iwaiaa1d0c52011-01-19 17:27:58 +01001478#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001479 const char *modelname = spec->fixup_name;
Takashi Iwaiaa1d0c52011-01-19 17:27:58 +01001480#endif
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001481 int depth = 0;
1482
1483 if (!spec->fixup_list)
1484 return;
1485
1486 while (id >= 0) {
1487 const struct alc_fixup *fix = spec->fixup_list + id;
1488 const struct alc_pincfg *cfg;
1489
1490 switch (fix->type) {
1491 case ALC_FIXUP_SKU:
1492 if (action != ALC_FIXUP_ACT_PRE_PROBE || !fix->v.sku)
Jesper Juhle53de8f2011-11-13 23:11:50 +01001493 break;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001494 snd_printdd(KERN_INFO "hda_codec: %s: "
1495 "Apply sku override for %s\n",
1496 codec->chip_name, modelname);
1497 spec->cdefine.sku_cfg = fix->v.sku;
1498 spec->cdefine.fixup = 1;
1499 break;
1500 case ALC_FIXUP_PINS:
1501 cfg = fix->v.pins;
1502 if (action != ALC_FIXUP_ACT_PRE_PROBE || !cfg)
1503 break;
1504 snd_printdd(KERN_INFO "hda_codec: %s: "
1505 "Apply pincfg for %s\n",
1506 codec->chip_name, modelname);
1507 for (; cfg->nid; cfg++)
1508 snd_hda_codec_set_pincfg(codec, cfg->nid,
1509 cfg->val);
1510 break;
1511 case ALC_FIXUP_VERBS:
1512 if (action != ALC_FIXUP_ACT_PROBE || !fix->v.verbs)
1513 break;
1514 snd_printdd(KERN_INFO "hda_codec: %s: "
1515 "Apply fix-verbs for %s\n",
1516 codec->chip_name, modelname);
1517 add_verb(codec->spec, fix->v.verbs);
1518 break;
1519 case ALC_FIXUP_FUNC:
1520 if (!fix->v.func)
1521 break;
1522 snd_printdd(KERN_INFO "hda_codec: %s: "
1523 "Apply fix-func for %s\n",
1524 codec->chip_name, modelname);
1525 fix->v.func(codec, fix, action);
1526 break;
1527 default:
1528 snd_printk(KERN_ERR "hda_codec: %s: "
1529 "Invalid fixup type %d\n",
1530 codec->chip_name, fix->type);
1531 break;
1532 }
Takashi Iwai24af2b12011-05-02 13:55:36 +02001533 if (!fix->chained)
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001534 break;
1535 if (++depth > 10)
1536 break;
Takashi Iwai24af2b12011-05-02 13:55:36 +02001537 id = fix->chain_id;
Takashi Iwai9d578832010-11-22 13:29:19 +01001538 }
Takashi Iwaif95474e2007-07-10 00:47:43 +02001539}
1540
Todd Broche1eb5f12010-12-06 11:19:51 -08001541static void alc_pick_fixup(struct hda_codec *codec,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001542 const struct alc_model_fixup *models,
1543 const struct snd_pci_quirk *quirk,
1544 const struct alc_fixup *fixlist)
Todd Broche1eb5f12010-12-06 11:19:51 -08001545{
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001546 struct alc_spec *spec = codec->spec;
Takashi Iwai596830e2011-11-09 15:06:45 +01001547 const struct snd_pci_quirk *q;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001548 int id = -1;
1549 const char *name = NULL;
Todd Broche1eb5f12010-12-06 11:19:51 -08001550
Todd Broche1eb5f12010-12-06 11:19:51 -08001551 if (codec->modelname && models) {
1552 while (models->name) {
1553 if (!strcmp(codec->modelname, models->name)) {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001554 id = models->id;
1555 name = models->name;
Todd Broche1eb5f12010-12-06 11:19:51 -08001556 break;
1557 }
1558 models++;
1559 }
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001560 }
1561 if (id < 0) {
Takashi Iwai596830e2011-11-09 15:06:45 +01001562 q = snd_pci_quirk_lookup(codec->bus->pci, quirk);
1563 if (q) {
1564 id = q->value;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001565#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwai596830e2011-11-09 15:06:45 +01001566 name = q->name;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001567#endif
1568 }
1569 }
Takashi Iwai596830e2011-11-09 15:06:45 +01001570 if (id < 0) {
1571 for (q = quirk; q->subvendor; q++) {
1572 unsigned int vendorid =
1573 q->subdevice | (q->subvendor << 16);
1574 if (vendorid == codec->subsystem_id) {
1575 id = q->value;
1576#ifdef CONFIG_SND_DEBUG_VERBOSE
1577 name = q->name;
1578#endif
1579 break;
1580 }
1581 }
1582 }
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01001583
1584 spec->fixup_id = id;
1585 if (id >= 0) {
1586 spec->fixup_list = fixlist;
1587 spec->fixup_name = name;
Todd Broche1eb5f12010-12-06 11:19:51 -08001588 }
Takashi Iwaif95474e2007-07-10 00:47:43 +02001589}
1590
Takashi Iwai1d045db2011-07-07 18:23:21 +02001591/*
1592 * COEF access helper functions
1593 */
Kailang Yang274693f2009-12-03 10:07:50 +01001594static int alc_read_coef_idx(struct hda_codec *codec,
1595 unsigned int coef_idx)
1596{
1597 unsigned int val;
1598 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1599 coef_idx);
1600 val = snd_hda_codec_read(codec, 0x20, 0,
1601 AC_VERB_GET_PROC_COEF, 0);
1602 return val;
1603}
1604
Kailang Yang977ddd62010-09-15 10:02:29 +02001605static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
1606 unsigned int coef_val)
1607{
1608 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1609 coef_idx);
1610 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
1611 coef_val);
1612}
1613
Takashi Iwai1bb7e432011-10-17 16:50:59 +02001614/* a special bypass for COEF 0; read the cached value at the second time */
1615static unsigned int alc_get_coef0(struct hda_codec *codec)
1616{
1617 struct alc_spec *spec = codec->spec;
1618 if (!spec->coef0)
1619 spec->coef0 = alc_read_coef_idx(codec, 0);
1620 return spec->coef0;
1621}
1622
Takashi Iwai1d045db2011-07-07 18:23:21 +02001623/*
1624 * Digital I/O handling
1625 */
1626
Takashi Iwai757899a2010-07-30 10:48:14 +02001627/* set right pin controls for digital I/O */
1628static void alc_auto_init_digital(struct hda_codec *codec)
1629{
1630 struct alc_spec *spec = codec->spec;
1631 int i;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001632 hda_nid_t pin, dac;
Takashi Iwai757899a2010-07-30 10:48:14 +02001633
1634 for (i = 0; i < spec->autocfg.dig_outs; i++) {
1635 pin = spec->autocfg.dig_out_pins[i];
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001636 if (!pin)
1637 continue;
1638 snd_hda_codec_write(codec, pin, 0,
1639 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
1640 if (!i)
1641 dac = spec->multiout.dig_out_nid;
1642 else
1643 dac = spec->slave_dig_outs[i - 1];
1644 if (!dac || !(get_wcaps(codec, dac) & AC_WCAP_OUT_AMP))
1645 continue;
1646 snd_hda_codec_write(codec, dac, 0,
1647 AC_VERB_SET_AMP_GAIN_MUTE,
1648 AMP_OUT_UNMUTE);
Takashi Iwai757899a2010-07-30 10:48:14 +02001649 }
1650 pin = spec->autocfg.dig_in_pin;
1651 if (pin)
1652 snd_hda_codec_write(codec, pin, 0,
1653 AC_VERB_SET_PIN_WIDGET_CONTROL,
1654 PIN_IN);
1655}
1656
1657/* parse digital I/Os and set up NIDs in BIOS auto-parse mode */
1658static void alc_auto_parse_digital(struct hda_codec *codec)
1659{
1660 struct alc_spec *spec = codec->spec;
Takashi Iwai51e41522011-11-03 16:54:06 +01001661 int i, err, nums;
Takashi Iwai757899a2010-07-30 10:48:14 +02001662 hda_nid_t dig_nid;
1663
1664 /* support multiple SPDIFs; the secondary is set up as a slave */
Takashi Iwai51e41522011-11-03 16:54:06 +01001665 nums = 0;
Takashi Iwai757899a2010-07-30 10:48:14 +02001666 for (i = 0; i < spec->autocfg.dig_outs; i++) {
Takashi Iwaia9267572011-07-07 15:12:55 +02001667 hda_nid_t conn[4];
Takashi Iwai757899a2010-07-30 10:48:14 +02001668 err = snd_hda_get_connections(codec,
1669 spec->autocfg.dig_out_pins[i],
Takashi Iwaia9267572011-07-07 15:12:55 +02001670 conn, ARRAY_SIZE(conn));
Takashi Iwai51e41522011-11-03 16:54:06 +01001671 if (err <= 0)
Takashi Iwai757899a2010-07-30 10:48:14 +02001672 continue;
Takashi Iwaia9267572011-07-07 15:12:55 +02001673 dig_nid = conn[0]; /* assume the first element is audio-out */
Takashi Iwai51e41522011-11-03 16:54:06 +01001674 if (!nums) {
Takashi Iwai757899a2010-07-30 10:48:14 +02001675 spec->multiout.dig_out_nid = dig_nid;
1676 spec->dig_out_type = spec->autocfg.dig_out_type[0];
1677 } else {
1678 spec->multiout.slave_dig_outs = spec->slave_dig_outs;
Takashi Iwai51e41522011-11-03 16:54:06 +01001679 if (nums >= ARRAY_SIZE(spec->slave_dig_outs) - 1)
Takashi Iwai757899a2010-07-30 10:48:14 +02001680 break;
Takashi Iwai51e41522011-11-03 16:54:06 +01001681 spec->slave_dig_outs[nums - 1] = dig_nid;
Takashi Iwai757899a2010-07-30 10:48:14 +02001682 }
Takashi Iwai51e41522011-11-03 16:54:06 +01001683 nums++;
Takashi Iwai757899a2010-07-30 10:48:14 +02001684 }
1685
1686 if (spec->autocfg.dig_in_pin) {
Takashi Iwai01fdf182010-09-24 09:09:42 +02001687 dig_nid = codec->start_nid;
1688 for (i = 0; i < codec->num_nodes; i++, dig_nid++) {
1689 unsigned int wcaps = get_wcaps(codec, dig_nid);
1690 if (get_wcaps_type(wcaps) != AC_WID_AUD_IN)
1691 continue;
1692 if (!(wcaps & AC_WCAP_DIGITAL))
1693 continue;
1694 if (!(wcaps & AC_WCAP_CONN_LIST))
1695 continue;
1696 err = get_connection_index(codec, dig_nid,
1697 spec->autocfg.dig_in_pin);
1698 if (err >= 0) {
1699 spec->dig_in_nid = dig_nid;
1700 break;
1701 }
1702 }
Takashi Iwai757899a2010-07-30 10:48:14 +02001703 }
1704}
1705
Takashi Iwaif95474e2007-07-10 00:47:43 +02001706/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02001707 * capture mixer elements
Vincent Petryef8ef5f2008-11-23 11:31:41 +08001708 */
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001709static int alc_cap_vol_info(struct snd_kcontrol *kcontrol,
1710 struct snd_ctl_elem_info *uinfo)
1711{
1712 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1713 struct alc_spec *spec = codec->spec;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001714 unsigned long val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001715 int err;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001716
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001717 mutex_lock(&codec->control_mutex);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001718 if (spec->vol_in_capsrc)
1719 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1720 else
1721 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1722 kcontrol->private_value = val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001723 err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001724 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001725 return err;
1726}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001728static int alc_cap_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1729 unsigned int size, unsigned int __user *tlv)
1730{
1731 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1732 struct alc_spec *spec = codec->spec;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001733 unsigned long val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001734 int err;
1735
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001736 mutex_lock(&codec->control_mutex);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001737 if (spec->vol_in_capsrc)
1738 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1739 else
1740 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1741 kcontrol->private_value = val;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001742 err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001743 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001744 return err;
1745}
1746
1747typedef int (*getput_call_t)(struct snd_kcontrol *kcontrol,
1748 struct snd_ctl_elem_value *ucontrol);
1749
1750static int alc_cap_getput_caller(struct snd_kcontrol *kcontrol,
1751 struct snd_ctl_elem_value *ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001752 getput_call_t func, bool check_adc_switch)
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001753{
1754 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1755 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +02001756 int i, err = 0;
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001757
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001758 mutex_lock(&codec->control_mutex);
Takashi Iwai21268962011-07-07 15:01:13 +02001759 if (check_adc_switch && spec->dyn_adc_switch) {
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001760 for (i = 0; i < spec->num_adc_nids; i++) {
1761 kcontrol->private_value =
1762 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1763 3, 0, HDA_INPUT);
1764 err = func(kcontrol, ucontrol);
1765 if (err < 0)
1766 goto error;
1767 }
1768 } else {
1769 i = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02001770 if (spec->vol_in_capsrc)
1771 kcontrol->private_value =
1772 HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[i],
1773 3, 0, HDA_OUTPUT);
1774 else
1775 kcontrol->private_value =
Takashi Iwai21268962011-07-07 15:01:13 +02001776 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1777 3, 0, HDA_INPUT);
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001778 err = func(kcontrol, ucontrol);
1779 }
1780 error:
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001781 mutex_unlock(&codec->control_mutex);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001782 return err;
1783}
1784
1785static int alc_cap_vol_get(struct snd_kcontrol *kcontrol,
1786 struct snd_ctl_elem_value *ucontrol)
1787{
1788 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001789 snd_hda_mixer_amp_volume_get, false);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001790}
1791
1792static int alc_cap_vol_put(struct snd_kcontrol *kcontrol,
1793 struct snd_ctl_elem_value *ucontrol)
1794{
1795 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001796 snd_hda_mixer_amp_volume_put, true);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001797}
1798
1799/* capture mixer elements */
1800#define alc_cap_sw_info snd_ctl_boolean_stereo_info
1801
1802static int alc_cap_sw_get(struct snd_kcontrol *kcontrol,
1803 struct snd_ctl_elem_value *ucontrol)
1804{
1805 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001806 snd_hda_mixer_amp_switch_get, false);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001807}
1808
1809static int alc_cap_sw_put(struct snd_kcontrol *kcontrol,
1810 struct snd_ctl_elem_value *ucontrol)
1811{
1812 return alc_cap_getput_caller(kcontrol, ucontrol,
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001813 snd_hda_mixer_amp_switch_put, true);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001814}
1815
Takashi Iwaia23b6882009-03-23 15:21:36 +01001816#define _DEFINE_CAPMIX(num) \
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001817 { \
1818 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1819 .name = "Capture Switch", \
1820 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
1821 .count = num, \
1822 .info = alc_cap_sw_info, \
1823 .get = alc_cap_sw_get, \
1824 .put = alc_cap_sw_put, \
1825 }, \
1826 { \
1827 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1828 .name = "Capture Volume", \
1829 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | \
1830 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
1831 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK), \
1832 .count = num, \
1833 .info = alc_cap_vol_info, \
1834 .get = alc_cap_vol_get, \
1835 .put = alc_cap_vol_put, \
1836 .tlv = { .c = alc_cap_vol_tlv }, \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001837 }
1838
1839#define _DEFINE_CAPSRC(num) \
Takashi Iwai3c3e9892008-10-31 17:48:56 +01001840 { \
1841 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1842 /* .name = "Capture Source", */ \
1843 .name = "Input Source", \
1844 .count = num, \
1845 .info = alc_mux_enum_info, \
1846 .get = alc_mux_enum_get, \
1847 .put = alc_mux_enum_put, \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001848 }
1849
1850#define DEFINE_CAPMIX(num) \
Takashi Iwaia9111322011-05-02 11:30:18 +02001851static const struct snd_kcontrol_new alc_capture_mixer ## num[] = { \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001852 _DEFINE_CAPMIX(num), \
1853 _DEFINE_CAPSRC(num), \
1854 { } /* end */ \
1855}
1856
1857#define DEFINE_CAPMIX_NOSRC(num) \
Takashi Iwaia9111322011-05-02 11:30:18 +02001858static const struct snd_kcontrol_new alc_capture_mixer_nosrc ## num[] = { \
Takashi Iwaia23b6882009-03-23 15:21:36 +01001859 _DEFINE_CAPMIX(num), \
1860 { } /* end */ \
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001861}
1862
1863/* up to three ADCs */
1864DEFINE_CAPMIX(1);
1865DEFINE_CAPMIX(2);
1866DEFINE_CAPMIX(3);
Takashi Iwaia23b6882009-03-23 15:21:36 +01001867DEFINE_CAPMIX_NOSRC(1);
1868DEFINE_CAPMIX_NOSRC(2);
1869DEFINE_CAPMIX_NOSRC(3);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001870
1871/*
Takashi Iwai2134ea42008-01-10 16:53:55 +01001872 * virtual master controls
1873 */
1874
1875/*
1876 * slave controls for virtual master
1877 */
Takashi Iwaiea734962011-01-17 11:29:34 +01001878static const char * const alc_slave_vols[] = {
Takashi Iwai2134ea42008-01-10 16:53:55 +01001879 "Front Playback Volume",
1880 "Surround Playback Volume",
1881 "Center Playback Volume",
1882 "LFE Playback Volume",
1883 "Side Playback Volume",
1884 "Headphone Playback Volume",
1885 "Speaker Playback Volume",
1886 "Mono Playback Volume",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001887 "Line-Out Playback Volume",
Takashi Iwai3fe45ae2011-08-18 15:13:17 +02001888 "PCM Playback Volume",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001889 NULL,
1890};
1891
Takashi Iwaiea734962011-01-17 11:29:34 +01001892static const char * const alc_slave_sws[] = {
Takashi Iwai2134ea42008-01-10 16:53:55 +01001893 "Front Playback Switch",
1894 "Surround Playback Switch",
1895 "Center Playback Switch",
1896 "LFE Playback Switch",
1897 "Side Playback Switch",
1898 "Headphone Playback Switch",
1899 "Speaker Playback Switch",
1900 "Mono Playback Switch",
Takashi Iwaiedb54a52008-01-29 12:47:02 +01001901 "IEC958 Playback Switch",
Takashi Iwai23033b22009-12-08 12:36:52 +01001902 "Line-Out Playback Switch",
Takashi Iwai3fe45ae2011-08-18 15:13:17 +02001903 "PCM Playback Switch",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001904 NULL,
1905};
1906
1907/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001908 * build control elements
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 */
Takashi Iwai603c4012008-07-30 15:01:44 +02001910
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001911#define NID_MAPPING (-1)
1912
1913#define SUBDEV_SPEAKER_ (0 << 6)
1914#define SUBDEV_HP_ (1 << 6)
1915#define SUBDEV_LINE_ (2 << 6)
1916#define SUBDEV_SPEAKER(x) (SUBDEV_SPEAKER_ | ((x) & 0x3f))
1917#define SUBDEV_HP(x) (SUBDEV_HP_ | ((x) & 0x3f))
1918#define SUBDEV_LINE(x) (SUBDEV_LINE_ | ((x) & 0x3f))
1919
Takashi Iwai603c4012008-07-30 15:01:44 +02001920static void alc_free_kctls(struct hda_codec *codec);
1921
Takashi Iwai67d634c2009-11-16 15:35:59 +01001922#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001923/* additional beep mixers; the actual parameters are overwritten at build */
Takashi Iwaia9111322011-05-02 11:30:18 +02001924static const struct snd_kcontrol_new alc_beep_mixer[] = {
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001925 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
Jaroslav Kysela123c07a2009-10-21 14:48:23 +02001926 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001927 { } /* end */
1928};
Takashi Iwai67d634c2009-11-16 15:35:59 +01001929#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931static int alc_build_controls(struct hda_codec *codec)
1932{
1933 struct alc_spec *spec = codec->spec;
Takashi Iwai2f44f842010-06-22 11:12:32 +02001934 struct snd_kcontrol *kctl = NULL;
Takashi Iwaia9111322011-05-02 11:30:18 +02001935 const struct snd_kcontrol_new *knew;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001936 int i, j, err;
1937 unsigned int u;
1938 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
1940 for (i = 0; i < spec->num_mixers; i++) {
1941 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1942 if (err < 0)
1943 return err;
1944 }
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001945 if (spec->cap_mixer) {
1946 err = snd_hda_add_new_ctls(codec, spec->cap_mixer);
1947 if (err < 0)
1948 return err;
1949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 if (spec->multiout.dig_out_nid) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02001951 err = snd_hda_create_spdif_out_ctls(codec,
Stephen Warren74b654c2011-06-01 11:14:18 -06001952 spec->multiout.dig_out_nid,
Takashi Iwai9c7f8522006-06-28 15:08:22 +02001953 spec->multiout.dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 if (err < 0)
1955 return err;
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001956 if (!spec->no_analog) {
1957 err = snd_hda_create_spdif_share_sw(codec,
1958 &spec->multiout);
1959 if (err < 0)
1960 return err;
1961 spec->multiout.share_spdif = 1;
1962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 }
1964 if (spec->dig_in_nid) {
1965 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1966 if (err < 0)
1967 return err;
1968 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001969
Takashi Iwai67d634c2009-11-16 15:35:59 +01001970#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001971 /* create beep controls if needed */
1972 if (spec->beep_amp) {
Takashi Iwaia9111322011-05-02 11:30:18 +02001973 const struct snd_kcontrol_new *knew;
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001974 for (knew = alc_beep_mixer; knew->name; knew++) {
1975 struct snd_kcontrol *kctl;
1976 kctl = snd_ctl_new1(knew, codec);
1977 if (!kctl)
1978 return -ENOMEM;
1979 kctl->private_value = spec->beep_amp;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001980 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001981 if (err < 0)
1982 return err;
1983 }
1984 }
Takashi Iwai67d634c2009-11-16 15:35:59 +01001985#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001986
Takashi Iwai2134ea42008-01-10 16:53:55 +01001987 /* if we have no master control, let's create it */
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001988 if (!spec->no_analog &&
1989 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001990 unsigned int vmaster_tlv[4];
Takashi Iwai2134ea42008-01-10 16:53:55 +01001991 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001992 HDA_OUTPUT, vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001993 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001994 vmaster_tlv, alc_slave_vols);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001995 if (err < 0)
1996 return err;
1997 }
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001998 if (!spec->no_analog &&
1999 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
Takashi Iwai2134ea42008-01-10 16:53:55 +01002000 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
2001 NULL, alc_slave_sws);
2002 if (err < 0)
2003 return err;
2004 }
2005
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002006 /* assign Capture Source enums to NID */
Takashi Iwaifbe618f2010-06-11 11:24:58 +02002007 if (spec->capsrc_nids || spec->adc_nids) {
2008 kctl = snd_hda_find_mixer_ctl(codec, "Capture Source");
2009 if (!kctl)
2010 kctl = snd_hda_find_mixer_ctl(codec, "Input Source");
2011 for (i = 0; kctl && i < kctl->count; i++) {
Takashi Iwai61071592011-11-23 07:52:15 +01002012 err = snd_hda_add_nid(codec, kctl, i,
2013 get_capsrc(spec, i));
Takashi Iwaifbe618f2010-06-11 11:24:58 +02002014 if (err < 0)
2015 return err;
2016 }
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002017 }
Takashi Iwai60a6a842011-07-27 14:01:24 +02002018 if (spec->cap_mixer && spec->adc_nids) {
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002019 const char *kname = kctl ? kctl->id.name : NULL;
2020 for (knew = spec->cap_mixer; knew->name; knew++) {
2021 if (kname && strcmp(knew->name, kname) == 0)
2022 continue;
2023 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
2024 for (i = 0; kctl && i < kctl->count; i++) {
2025 err = snd_hda_add_nid(codec, kctl, i,
2026 spec->adc_nids[i]);
2027 if (err < 0)
2028 return err;
2029 }
2030 }
2031 }
2032
2033 /* other nid->control mapping */
2034 for (i = 0; i < spec->num_mixers; i++) {
2035 for (knew = spec->mixers[i]; knew->name; knew++) {
2036 if (knew->iface != NID_MAPPING)
2037 continue;
2038 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
2039 if (kctl == NULL)
2040 continue;
2041 u = knew->subdevice;
2042 for (j = 0; j < 4; j++, u >>= 8) {
2043 nid = u & 0x3f;
2044 if (nid == 0)
2045 continue;
2046 switch (u & 0xc0) {
2047 case SUBDEV_SPEAKER_:
2048 nid = spec->autocfg.speaker_pins[nid];
2049 break;
2050 case SUBDEV_LINE_:
2051 nid = spec->autocfg.line_out_pins[nid];
2052 break;
2053 case SUBDEV_HP_:
2054 nid = spec->autocfg.hp_pins[nid];
2055 break;
2056 default:
2057 continue;
2058 }
2059 err = snd_hda_add_nid(codec, kctl, 0, nid);
2060 if (err < 0)
2061 return err;
2062 }
2063 u = knew->private_value;
2064 for (j = 0; j < 4; j++, u >>= 8) {
2065 nid = u & 0xff;
2066 if (nid == 0)
2067 continue;
2068 err = snd_hda_add_nid(codec, kctl, 0, nid);
2069 if (err < 0)
2070 return err;
2071 }
2072 }
2073 }
Takashi Iwaibae84e72010-03-22 08:30:20 +01002074
2075 alc_free_kctls(codec); /* no longer needed */
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 return 0;
2078}
2079
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081/*
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002082 * Common callbacks
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002083 */
Takashi Iwai16ded522005-06-10 19:58:24 +02002084
Takashi Iwai584c0c42011-03-10 12:51:11 +01002085static void alc_init_special_input_src(struct hda_codec *codec);
2086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087static int alc_init(struct hda_codec *codec)
2088{
2089 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002090 unsigned int i;
2091
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02002092 alc_fix_pll(codec);
Takashi Iwai4a79ba32009-04-22 16:31:35 +02002093 alc_auto_init_amp(codec, spec->init_amp);
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02002094
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002095 for (i = 0; i < spec->num_init_verbs; i++)
2096 snd_hda_sequence_write(codec, spec->init_verbs[i]);
Takashi Iwai584c0c42011-03-10 12:51:11 +01002097 alc_init_special_input_src(codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002098
2099 if (spec->init_hook)
2100 spec->init_hook(codec);
2101
Takashi Iwai58701122011-01-13 15:41:45 +01002102 alc_apply_fixup(codec, ALC_FIXUP_ACT_INIT);
2103
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002104 hda_call_check_power_status(codec, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 return 0;
2106}
2107
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002108static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2109{
2110 struct alc_spec *spec = codec->spec;
2111
2112 if (spec->unsol_event)
2113 spec->unsol_event(codec, res);
2114}
2115
Takashi Iwaicb53c622007-08-10 17:21:45 +02002116#ifdef CONFIG_SND_HDA_POWER_SAVE
2117static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2118{
2119 struct alc_spec *spec = codec->spec;
2120 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2121}
2122#endif
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124/*
2125 * Analog playback callbacks
2126 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002127static int alc_playback_pcm_open(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002129 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
2131 struct alc_spec *spec = codec->spec;
Takashi Iwai9a081602008-02-12 18:37:26 +01002132 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2133 hinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134}
2135
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002136static int alc_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 struct hda_codec *codec,
2138 unsigned int stream_tag,
2139 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002140 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
2142 struct alc_spec *spec = codec->spec;
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002143 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2144 stream_tag, format, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145}
2146
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002147static int alc_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002149 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
2151 struct alc_spec *spec = codec->spec;
2152 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2153}
2154
2155/*
2156 * Digital out
2157 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002158static int alc_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002160 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
2162 struct alc_spec *spec = codec->spec;
2163 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2164}
2165
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002166static int alc_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002167 struct hda_codec *codec,
2168 unsigned int stream_tag,
2169 unsigned int format,
2170 struct snd_pcm_substream *substream)
2171{
2172 struct alc_spec *spec = codec->spec;
2173 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2174 stream_tag, format, substream);
2175}
2176
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002177static int alc_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
Takashi Iwai9b5f12e2009-02-13 11:47:37 +01002178 struct hda_codec *codec,
2179 struct snd_pcm_substream *substream)
2180{
2181 struct alc_spec *spec = codec->spec;
2182 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2183}
2184
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002185static int alc_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002187 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
2189 struct alc_spec *spec = codec->spec;
2190 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2191}
2192
2193/*
2194 * Analog capture
2195 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002196static int alc_alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 struct hda_codec *codec,
2198 unsigned int stream_tag,
2199 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002200 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201{
2202 struct alc_spec *spec = codec->spec;
2203
Takashi Iwai63300792008-01-24 15:31:36 +01002204 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 stream_tag, 0, format);
2206 return 0;
2207}
2208
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002209static int alc_alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002211 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212{
2213 struct alc_spec *spec = codec->spec;
2214
Takashi Iwai888afa12008-03-18 09:57:50 +01002215 snd_hda_codec_cleanup_stream(codec,
2216 spec->adc_nids[substream->number + 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 return 0;
2218}
2219
Takashi Iwai840b64c2010-07-13 22:49:01 +02002220/* analog capture with dynamic dual-adc changes */
Takashi Iwai21268962011-07-07 15:01:13 +02002221static int dyn_adc_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai840b64c2010-07-13 22:49:01 +02002222 struct hda_codec *codec,
2223 unsigned int stream_tag,
2224 unsigned int format,
2225 struct snd_pcm_substream *substream)
2226{
2227 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +02002228 spec->cur_adc = spec->adc_nids[spec->dyn_adc_idx[spec->cur_mux[0]]];
Takashi Iwai840b64c2010-07-13 22:49:01 +02002229 spec->cur_adc_stream_tag = stream_tag;
2230 spec->cur_adc_format = format;
2231 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
2232 return 0;
2233}
2234
Takashi Iwai21268962011-07-07 15:01:13 +02002235static int dyn_adc_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
Takashi Iwai840b64c2010-07-13 22:49:01 +02002236 struct hda_codec *codec,
2237 struct snd_pcm_substream *substream)
2238{
2239 struct alc_spec *spec = codec->spec;
2240 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
2241 spec->cur_adc = 0;
2242 return 0;
2243}
2244
Takashi Iwai21268962011-07-07 15:01:13 +02002245static const struct hda_pcm_stream dyn_adc_pcm_analog_capture = {
Takashi Iwai840b64c2010-07-13 22:49:01 +02002246 .substreams = 1,
2247 .channels_min = 2,
2248 .channels_max = 2,
2249 .nid = 0, /* fill later */
2250 .ops = {
Takashi Iwai21268962011-07-07 15:01:13 +02002251 .prepare = dyn_adc_capture_pcm_prepare,
2252 .cleanup = dyn_adc_capture_pcm_cleanup
Takashi Iwai840b64c2010-07-13 22:49:01 +02002253 },
2254};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
2256/*
2257 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002258static const struct hda_pcm_stream alc_pcm_analog_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 .substreams = 1,
2260 .channels_min = 2,
2261 .channels_max = 8,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002262 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002264 .open = alc_playback_pcm_open,
2265 .prepare = alc_playback_pcm_prepare,
2266 .cleanup = alc_playback_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 },
2268};
2269
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002270static const struct hda_pcm_stream alc_pcm_analog_capture = {
Takashi Iwai63300792008-01-24 15:31:36 +01002271 .substreams = 1,
2272 .channels_min = 2,
2273 .channels_max = 2,
2274 /* NID is set in alc_build_pcms */
2275};
2276
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002277static const struct hda_pcm_stream alc_pcm_analog_alt_playback = {
Takashi Iwai63300792008-01-24 15:31:36 +01002278 .substreams = 1,
2279 .channels_min = 2,
2280 .channels_max = 2,
2281 /* NID is set in alc_build_pcms */
2282};
2283
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002284static const struct hda_pcm_stream alc_pcm_analog_alt_capture = {
Takashi Iwai63300792008-01-24 15:31:36 +01002285 .substreams = 2, /* can be overridden */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 .channels_min = 2,
2287 .channels_max = 2,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002288 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002290 .prepare = alc_alt_capture_pcm_prepare,
2291 .cleanup = alc_alt_capture_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 },
2293};
2294
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002295static const struct hda_pcm_stream alc_pcm_digital_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 .substreams = 1,
2297 .channels_min = 2,
2298 .channels_max = 2,
2299 /* NID is set in alc_build_pcms */
2300 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002301 .open = alc_dig_playback_pcm_open,
2302 .close = alc_dig_playback_pcm_close,
2303 .prepare = alc_dig_playback_pcm_prepare,
2304 .cleanup = alc_dig_playback_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 },
2306};
2307
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002308static const struct hda_pcm_stream alc_pcm_digital_capture = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 .substreams = 1,
2310 .channels_min = 2,
2311 .channels_max = 2,
2312 /* NID is set in alc_build_pcms */
2313};
2314
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002315/* Used by alc_build_pcms to flag that a PCM has no playback stream */
Takashi Iwaia9111322011-05-02 11:30:18 +02002316static const struct hda_pcm_stream alc_pcm_null_stream = {
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002317 .substreams = 0,
2318 .channels_min = 0,
2319 .channels_max = 0,
2320};
2321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322static int alc_build_pcms(struct hda_codec *codec)
2323{
2324 struct alc_spec *spec = codec->spec;
2325 struct hda_pcm *info = spec->pcm_rec;
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002326 const struct hda_pcm_stream *p;
Takashi Iwai1fa17572011-11-02 21:30:51 +01002327 bool have_multi_adcs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 int i;
2329
2330 codec->num_pcms = 1;
2331 codec->pcm_info = info;
2332
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002333 if (spec->no_analog)
2334 goto skip_analog;
2335
Takashi Iwai812a2cc2009-05-16 10:00:49 +02002336 snprintf(spec->stream_name_analog, sizeof(spec->stream_name_analog),
2337 "%s Analog", codec->chip_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 info->name = spec->stream_name_analog;
Kailang Yang274693f2009-12-03 10:07:50 +01002339
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002340 if (spec->multiout.dac_nids > 0) {
2341 p = spec->stream_analog_playback;
2342 if (!p)
2343 p = &alc_pcm_analog_playback;
2344 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002345 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2346 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002347 if (spec->adc_nids) {
2348 p = spec->stream_analog_capture;
Takashi Iwai21268962011-07-07 15:01:13 +02002349 if (!p) {
2350 if (spec->dyn_adc_switch)
2351 p = &dyn_adc_pcm_analog_capture;
2352 else
2353 p = &alc_pcm_analog_capture;
2354 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002355 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002356 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Takashi Iwai4a471b72005-12-07 13:56:29 +01002359 if (spec->channel_mode) {
2360 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2361 for (i = 0; i < spec->num_channel_mode; i++) {
2362 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2363 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 }
2366 }
2367
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002368 skip_analog:
Takashi Iwaie08a0072006-09-07 17:52:14 +02002369 /* SPDIF for stream index #1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
Takashi Iwai812a2cc2009-05-16 10:00:49 +02002371 snprintf(spec->stream_name_digital,
2372 sizeof(spec->stream_name_digital),
2373 "%s Digital", codec->chip_name);
Takashi Iwaie08a0072006-09-07 17:52:14 +02002374 codec->num_pcms = 2;
Wu Fengguangb25c9da2009-02-06 15:02:27 +08002375 codec->slave_dig_outs = spec->multiout.slave_dig_outs;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002376 info = spec->pcm_rec + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 info->name = spec->stream_name_digital;
Takashi Iwai8c441982009-01-20 18:30:20 +01002378 if (spec->dig_out_type)
2379 info->pcm_type = spec->dig_out_type;
2380 else
2381 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002382 if (spec->multiout.dig_out_nid) {
2383 p = spec->stream_digital_playback;
2384 if (!p)
2385 p = &alc_pcm_digital_playback;
2386 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2388 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002389 if (spec->dig_in_nid) {
2390 p = spec->stream_digital_capture;
2391 if (!p)
2392 p = &alc_pcm_digital_capture;
2393 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2395 }
Takashi Iwai963f8032008-08-11 10:04:40 +02002396 /* FIXME: do we need this for all Realtek codec models? */
2397 codec->spdif_status_reset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 }
2399
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002400 if (spec->no_analog)
2401 return 0;
2402
Takashi Iwaie08a0072006-09-07 17:52:14 +02002403 /* If the use of more than one ADC is requested for the current
2404 * model, configure a second analog capture-only PCM.
2405 */
Takashi Iwai1fa17572011-11-02 21:30:51 +01002406 have_multi_adcs = (spec->num_adc_nids > 1) &&
2407 !spec->dyn_adc_switch && !spec->auto_mic &&
2408 (!spec->input_mux || spec->input_mux->num_items > 1);
Takashi Iwaie08a0072006-09-07 17:52:14 +02002409 /* Additional Analaog capture for index #2 */
Takashi Iwai1fa17572011-11-02 21:30:51 +01002410 if (spec->alt_dac_nid || have_multi_adcs) {
Takashi Iwaie08a0072006-09-07 17:52:14 +02002411 codec->num_pcms = 3;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002412 info = spec->pcm_rec + 2;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002413 info->name = spec->stream_name_analog;
Takashi Iwai63300792008-01-24 15:31:36 +01002414 if (spec->alt_dac_nid) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002415 p = spec->stream_analog_alt_playback;
2416 if (!p)
2417 p = &alc_pcm_analog_alt_playback;
2418 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Takashi Iwai63300792008-01-24 15:31:36 +01002419 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2420 spec->alt_dac_nid;
2421 } else {
2422 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2423 alc_pcm_null_stream;
2424 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2425 }
Takashi Iwai1fa17572011-11-02 21:30:51 +01002426 if (have_multi_adcs) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002427 p = spec->stream_analog_alt_capture;
2428 if (!p)
2429 p = &alc_pcm_analog_alt_capture;
2430 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Takashi Iwai63300792008-01-24 15:31:36 +01002431 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
2432 spec->adc_nids[1];
2433 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
2434 spec->num_adc_nids - 1;
2435 } else {
2436 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2437 alc_pcm_null_stream;
2438 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002439 }
2440 }
2441
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 return 0;
2443}
2444
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002445static inline void alc_shutup(struct hda_codec *codec)
2446{
Takashi Iwai1c7161532011-04-07 10:37:16 +02002447 struct alc_spec *spec = codec->spec;
2448
2449 if (spec && spec->shutup)
2450 spec->shutup(codec);
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002451 snd_hda_shutup_pins(codec);
2452}
2453
Takashi Iwai603c4012008-07-30 15:01:44 +02002454static void alc_free_kctls(struct hda_codec *codec)
2455{
2456 struct alc_spec *spec = codec->spec;
2457
2458 if (spec->kctls.list) {
2459 struct snd_kcontrol_new *kctl = spec->kctls.list;
2460 int i;
2461 for (i = 0; i < spec->kctls.used; i++)
2462 kfree(kctl[i].name);
2463 }
2464 snd_array_free(&spec->kctls);
2465}
2466
Takashi Iwai23c09b02011-08-19 09:05:35 +02002467static void alc_free_bind_ctls(struct hda_codec *codec)
2468{
2469 struct alc_spec *spec = codec->spec;
2470 if (spec->bind_ctls.list) {
2471 struct hda_bind_ctls **ctl = spec->bind_ctls.list;
2472 int i;
2473 for (i = 0; i < spec->bind_ctls.used; i++)
2474 kfree(ctl[i]);
2475 }
2476 snd_array_free(&spec->bind_ctls);
2477}
2478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479static void alc_free(struct hda_codec *codec)
2480{
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002481 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002482
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002483 if (!spec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002484 return;
2485
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002486 alc_shutup(codec);
Takashi Iwaicd372fb2011-03-03 14:40:14 +01002487 snd_hda_input_jack_free(codec);
Takashi Iwai603c4012008-07-30 15:01:44 +02002488 alc_free_kctls(codec);
Takashi Iwai23c09b02011-08-19 09:05:35 +02002489 alc_free_bind_ctls(codec);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002490 kfree(spec);
Kusanagi Kouichi680cd532009-02-05 00:00:58 +09002491 snd_hda_detach_beep_device(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492}
2493
Hector Martinf5de24b2009-12-20 22:51:31 +01002494#ifdef CONFIG_SND_HDA_POWER_SAVE
Daniel T Chenc97259d2009-12-27 18:52:08 -05002495static void alc_power_eapd(struct hda_codec *codec)
2496{
Takashi Iwai691f1fc2011-04-07 10:31:43 +02002497 alc_auto_setup_eapd(codec, false);
Daniel T Chenc97259d2009-12-27 18:52:08 -05002498}
2499
Hector Martinf5de24b2009-12-20 22:51:31 +01002500static int alc_suspend(struct hda_codec *codec, pm_message_t state)
2501{
2502 struct alc_spec *spec = codec->spec;
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002503 alc_shutup(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +01002504 if (spec && spec->power_hook)
Daniel T Chenc97259d2009-12-27 18:52:08 -05002505 spec->power_hook(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +01002506 return 0;
2507}
2508#endif
2509
Takashi Iwai2a439522011-07-26 09:52:50 +02002510#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +01002511static int alc_resume(struct hda_codec *codec)
2512{
Takashi Iwai1c7161532011-04-07 10:37:16 +02002513 msleep(150); /* to avoid pop noise */
Takashi Iwaie044c392008-10-27 16:56:24 +01002514 codec->patch_ops.init(codec);
2515 snd_hda_codec_resume_amp(codec);
2516 snd_hda_codec_resume_cache(codec);
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002517 hda_call_check_power_status(codec, 0x01);
Takashi Iwaie044c392008-10-27 16:56:24 +01002518 return 0;
2519}
Takashi Iwaie044c392008-10-27 16:56:24 +01002520#endif
2521
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522/*
2523 */
Takashi Iwaia9111322011-05-02 11:30:18 +02002524static const struct hda_codec_ops alc_patch_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 .build_controls = alc_build_controls,
2526 .build_pcms = alc_build_pcms,
2527 .init = alc_init,
2528 .free = alc_free,
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002529 .unsol_event = alc_unsol_event,
Takashi Iwai2a439522011-07-26 09:52:50 +02002530#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +01002531 .resume = alc_resume,
2532#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +02002533#ifdef CONFIG_SND_HDA_POWER_SAVE
Hector Martinf5de24b2009-12-20 22:51:31 +01002534 .suspend = alc_suspend,
Takashi Iwaicb53c622007-08-10 17:21:45 +02002535 .check_power_status = alc_check_power_status,
2536#endif
Daniel T Chenc97259d2009-12-27 18:52:08 -05002537 .reboot_notify = alc_shutup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538};
2539
Kailang Yangc027ddc2010-03-19 11:33:06 +01002540/* replace the codec chip_name with the given string */
2541static int alc_codec_rename(struct hda_codec *codec, const char *name)
2542{
2543 kfree(codec->chip_name);
2544 codec->chip_name = kstrdup(name, GFP_KERNEL);
2545 if (!codec->chip_name) {
2546 alc_free(codec);
2547 return -ENOMEM;
2548 }
2549 return 0;
2550}
2551
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002552/*
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002553 * Rename codecs appropriately from COEF value
2554 */
2555struct alc_codec_rename_table {
2556 unsigned int vendor_id;
2557 unsigned short coef_mask;
2558 unsigned short coef_bits;
2559 const char *name;
2560};
2561
2562static struct alc_codec_rename_table rename_tbl[] = {
2563 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
2564 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
2565 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
2566 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
2567 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
2568 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
2569 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
2570 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
2571 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
2572 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
2573 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
2574 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
2575 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
2576 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
2577 { } /* terminator */
2578};
2579
2580static int alc_codec_rename_from_preset(struct hda_codec *codec)
2581{
2582 const struct alc_codec_rename_table *p;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002583
2584 for (p = rename_tbl; p->vendor_id; p++) {
2585 if (p->vendor_id != codec->vendor_id)
2586 continue;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02002587 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002588 return alc_codec_rename(codec, p->name);
2589 }
2590 return 0;
2591}
2592
2593/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002594 * Automatic parse of I/O pins from the BIOS configuration
2595 */
2596
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002597enum {
2598 ALC_CTL_WIDGET_VOL,
2599 ALC_CTL_WIDGET_MUTE,
2600 ALC_CTL_BIND_MUTE,
Takashi Iwai23c09b02011-08-19 09:05:35 +02002601 ALC_CTL_BIND_VOL,
2602 ALC_CTL_BIND_SW,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002603};
Takashi Iwai1d045db2011-07-07 18:23:21 +02002604static const struct snd_kcontrol_new alc_control_templates[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002605 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2606 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Takashi Iwai985be542005-11-02 18:26:49 +01002607 HDA_BIND_MUTE(NULL, 0, 0, 0),
Takashi Iwai23c09b02011-08-19 09:05:35 +02002608 HDA_BIND_VOL(NULL, 0),
2609 HDA_BIND_SW(NULL, 0),
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002610};
2611
2612/* add dynamic controls */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002613static int add_control(struct alc_spec *spec, int type, const char *name,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002614 int cidx, unsigned long val)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002615{
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002616 struct snd_kcontrol_new *knew;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002617
Takashi Iwaice764ab2011-04-27 16:35:23 +02002618 knew = alc_kcontrol_new(spec);
Takashi Iwai603c4012008-07-30 15:01:44 +02002619 if (!knew)
2620 return -ENOMEM;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002621 *knew = alc_control_templates[type];
Paulo Marques543537b2005-06-23 00:09:02 -07002622 knew->name = kstrdup(name, GFP_KERNEL);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002623 if (!knew->name)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002624 return -ENOMEM;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002625 knew->index = cidx;
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002626 if (get_amp_nid_(val))
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002627 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002628 knew->private_value = val;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002629 return 0;
2630}
2631
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002632static int add_control_with_pfx(struct alc_spec *spec, int type,
2633 const char *pfx, const char *dir,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002634 const char *sfx, int cidx, unsigned long val)
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002635{
2636 char name[32];
2637 snprintf(name, sizeof(name), "%s %s %s", pfx, dir, sfx);
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002638 return add_control(spec, type, name, cidx, val);
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002639}
2640
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002641#define add_pb_vol_ctrl(spec, type, pfx, val) \
2642 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val)
2643#define add_pb_sw_ctrl(spec, type, pfx, val) \
2644 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val)
2645#define __add_pb_vol_ctrl(spec, type, pfx, cidx, val) \
2646 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val)
2647#define __add_pb_sw_ctrl(spec, type, pfx, cidx, val) \
2648 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val)
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002649
Takashi Iwai23c09b02011-08-19 09:05:35 +02002650static const char * const channel_name[4] = {
2651 "Front", "Surround", "CLFE", "Side"
2652};
2653
Takashi Iwai6843ca12011-06-24 11:03:58 +02002654static const char *alc_get_line_out_pfx(struct alc_spec *spec, int ch,
2655 bool can_be_master, int *index)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002656{
Takashi Iwaice764ab2011-04-27 16:35:23 +02002657 struct auto_pin_cfg *cfg = &spec->autocfg;
2658
Takashi Iwai6843ca12011-06-24 11:03:58 +02002659 *index = 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02002660 if (cfg->line_outs == 1 && !spec->multi_ios &&
2661 !cfg->hp_outs && !cfg->speaker_outs && can_be_master)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002662 return "Master";
2663
2664 switch (cfg->line_out_type) {
2665 case AUTO_PIN_SPEAKER_OUT:
David Henningssonebbeb3d2011-03-04 14:08:30 +01002666 if (cfg->line_outs == 1)
2667 return "Speaker";
Takashi Iwaifbabc242011-12-07 17:14:20 +01002668 if (cfg->line_outs == 2)
2669 return ch ? "Bass Speaker" : "Speaker";
David Henningssonebbeb3d2011-03-04 14:08:30 +01002670 break;
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002671 case AUTO_PIN_HP_OUT:
Takashi Iwai6843ca12011-06-24 11:03:58 +02002672 /* for multi-io case, only the primary out */
2673 if (ch && spec->multi_ios)
2674 break;
2675 *index = ch;
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002676 return "Headphone";
2677 default:
Takashi Iwaice764ab2011-04-27 16:35:23 +02002678 if (cfg->line_outs == 1 && !spec->multi_ios)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002679 return "PCM";
2680 break;
2681 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02002682 if (snd_BUG_ON(ch >= ARRAY_SIZE(channel_name)))
2683 return "PCM";
2684
2685 return channel_name[ch];
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002686}
2687
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002688/* create input playback/capture controls for the given pin */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002689static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002690 const char *ctlname, int ctlidx,
Kailang Yangdf694da2005-12-05 19:42:22 +01002691 int idx, hda_nid_t mix_nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002692{
Kailang Yangdf694da2005-12-05 19:42:22 +01002693 int err;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002694
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002695 err = __add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, ctlname, ctlidx,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002696 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2697 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002698 return err;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002699 err = __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, ctlidx,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002700 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2701 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002702 return err;
2703 return 0;
2704}
2705
Takashi Iwai05f5f472009-08-25 13:10:18 +02002706static int alc_is_input_pin(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002707{
Takashi Iwai05f5f472009-08-25 13:10:18 +02002708 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2709 return (pincap & AC_PINCAP_IN) != 0;
2710}
2711
Takashi Iwai1d045db2011-07-07 18:23:21 +02002712/* Parse the codec tree and retrieve ADCs and corresponding capsrc MUXs */
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002713static int alc_auto_fill_adc_caps(struct hda_codec *codec)
Takashi Iwaib7821702011-07-06 15:12:46 +02002714{
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002715 struct alc_spec *spec = codec->spec;
Takashi Iwaib7821702011-07-06 15:12:46 +02002716 hda_nid_t nid;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002717 hda_nid_t *adc_nids = spec->private_adc_nids;
2718 hda_nid_t *cap_nids = spec->private_capsrc_nids;
2719 int max_nums = ARRAY_SIZE(spec->private_adc_nids);
Takashi Iwaib7821702011-07-06 15:12:46 +02002720 int i, nums = 0;
2721
Takashi Iwai24de1832011-11-07 17:13:39 +01002722 if (spec->shared_mic_hp)
2723 max_nums = 1; /* no multi streams with the shared HP/mic */
2724
Takashi Iwaib7821702011-07-06 15:12:46 +02002725 nid = codec->start_nid;
2726 for (i = 0; i < codec->num_nodes; i++, nid++) {
2727 hda_nid_t src;
2728 const hda_nid_t *list;
2729 unsigned int caps = get_wcaps(codec, nid);
2730 int type = get_wcaps_type(caps);
2731
2732 if (type != AC_WID_AUD_IN || (caps & AC_WCAP_DIGITAL))
2733 continue;
2734 adc_nids[nums] = nid;
2735 cap_nids[nums] = nid;
2736 src = nid;
2737 for (;;) {
2738 int n;
2739 type = get_wcaps_type(get_wcaps(codec, src));
2740 if (type == AC_WID_PIN)
2741 break;
2742 if (type == AC_WID_AUD_SEL) {
2743 cap_nids[nums] = src;
2744 break;
2745 }
2746 n = snd_hda_get_conn_list(codec, src, &list);
2747 if (n > 1) {
2748 cap_nids[nums] = src;
2749 break;
2750 } else if (n != 1)
2751 break;
2752 src = *list;
2753 }
2754 if (++nums >= max_nums)
2755 break;
2756 }
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002757 spec->adc_nids = spec->private_adc_nids;
Takashi Iwai21268962011-07-07 15:01:13 +02002758 spec->capsrc_nids = spec->private_capsrc_nids;
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002759 spec->num_adc_nids = nums;
Takashi Iwaib7821702011-07-06 15:12:46 +02002760 return nums;
2761}
2762
Takashi Iwai05f5f472009-08-25 13:10:18 +02002763/* create playback/capture controls for input pins */
Takashi Iwaib7821702011-07-06 15:12:46 +02002764static int alc_auto_create_input_ctls(struct hda_codec *codec)
Takashi Iwai05f5f472009-08-25 13:10:18 +02002765{
2766 struct alc_spec *spec = codec->spec;
Takashi Iwaib7821702011-07-06 15:12:46 +02002767 const struct auto_pin_cfg *cfg = &spec->autocfg;
2768 hda_nid_t mixer = spec->mixer_nid;
Herton Ronaldo Krzesinski61b9b9b2009-01-28 09:16:33 -02002769 struct hda_input_mux *imux = &spec->private_imux[0];
Takashi Iwaib7821702011-07-06 15:12:46 +02002770 int num_adcs;
Takashi Iwaib7821702011-07-06 15:12:46 +02002771 int i, c, err, idx, type_idx = 0;
David Henningsson5322bf22011-01-05 11:03:56 +01002772 const char *prev_label = NULL;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002773
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002774 num_adcs = alc_auto_fill_adc_caps(codec);
Takashi Iwaib7821702011-07-06 15:12:46 +02002775 if (num_adcs < 0)
2776 return 0;
2777
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002778 for (i = 0; i < cfg->num_inputs; i++) {
Takashi Iwai05f5f472009-08-25 13:10:18 +02002779 hda_nid_t pin;
Takashi Iwai10a20af2010-09-09 16:28:02 +02002780 const char *label;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002781
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002782 pin = cfg->inputs[i].pin;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002783 if (!alc_is_input_pin(codec, pin))
2784 continue;
2785
David Henningsson5322bf22011-01-05 11:03:56 +01002786 label = hda_get_autocfg_input_label(codec, cfg, i);
Takashi Iwai24de1832011-11-07 17:13:39 +01002787 if (spec->shared_mic_hp && !strcmp(label, "Misc"))
2788 label = "Headphone Mic";
David Henningsson5322bf22011-01-05 11:03:56 +01002789 if (prev_label && !strcmp(label, prev_label))
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002790 type_idx++;
2791 else
2792 type_idx = 0;
David Henningsson5322bf22011-01-05 11:03:56 +01002793 prev_label = label;
2794
Takashi Iwai05f5f472009-08-25 13:10:18 +02002795 if (mixer) {
2796 idx = get_connection_index(codec, mixer, pin);
2797 if (idx >= 0) {
2798 err = new_analog_input(spec, pin,
Takashi Iwai10a20af2010-09-09 16:28:02 +02002799 label, type_idx,
2800 idx, mixer);
Takashi Iwai05f5f472009-08-25 13:10:18 +02002801 if (err < 0)
2802 return err;
2803 }
2804 }
2805
Takashi Iwaib7821702011-07-06 15:12:46 +02002806 for (c = 0; c < num_adcs; c++) {
Takashi Iwai61071592011-11-23 07:52:15 +01002807 hda_nid_t cap = get_capsrc(spec, c);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002808 idx = get_connection_index(codec, cap, pin);
Takashi Iwaib7821702011-07-06 15:12:46 +02002809 if (idx >= 0) {
Takashi Iwai21268962011-07-07 15:01:13 +02002810 spec->imux_pins[imux->num_items] = pin;
Takashi Iwaib7821702011-07-06 15:12:46 +02002811 snd_hda_add_imux_item(imux, label, idx, NULL);
2812 break;
2813 }
2814 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002815 }
Takashi Iwai21268962011-07-07 15:01:13 +02002816
2817 spec->num_mux_defs = 1;
2818 spec->input_mux = imux;
2819
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002820 return 0;
2821}
2822
Takashi Iwai24de1832011-11-07 17:13:39 +01002823/* create a shared input with the headphone out */
2824static int alc_auto_create_shared_input(struct hda_codec *codec)
2825{
2826 struct alc_spec *spec = codec->spec;
2827 struct auto_pin_cfg *cfg = &spec->autocfg;
2828 unsigned int defcfg;
2829 hda_nid_t nid;
2830
2831 /* only one internal input pin? */
2832 if (cfg->num_inputs != 1)
2833 return 0;
2834 defcfg = snd_hda_codec_get_pincfg(codec, cfg->inputs[0].pin);
2835 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
2836 return 0;
2837
2838 if (cfg->hp_outs == 1 && cfg->line_out_type == AUTO_PIN_SPEAKER_OUT)
2839 nid = cfg->hp_pins[0]; /* OK, we have a single HP-out */
2840 else if (cfg->line_outs == 1 && cfg->line_out_type == AUTO_PIN_HP_OUT)
2841 nid = cfg->line_out_pins[0]; /* OK, we have a single line-out */
2842 else
2843 return 0; /* both not available */
2844
2845 if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_IN))
2846 return 0; /* no input */
2847
2848 cfg->inputs[1].pin = nid;
2849 cfg->inputs[1].type = AUTO_PIN_MIC;
2850 cfg->num_inputs = 2;
2851 spec->shared_mic_hp = 1;
2852 snd_printdd("realtek: Enable shared I/O jack on NID 0x%x\n", nid);
2853 return 0;
2854}
2855
Takashi Iwaif6c7e542008-02-12 18:32:23 +01002856static void alc_set_pin_output(struct hda_codec *codec, hda_nid_t nid,
2857 unsigned int pin_type)
2858{
2859 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2860 pin_type);
2861 /* unmute pin */
Takashi Iwai44c02402011-07-08 15:14:19 +02002862 if (nid_has_mute(codec, nid, HDA_OUTPUT))
2863 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaid260cdf2008-02-13 17:19:35 +01002864 AMP_OUT_UNMUTE);
Takashi Iwaif6c7e542008-02-12 18:32:23 +01002865}
2866
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02002867static int get_pin_type(int line_out_type)
2868{
2869 if (line_out_type == AUTO_PIN_HP_OUT)
2870 return PIN_HP;
2871 else
2872 return PIN_OUT;
2873}
2874
Takashi Iwai0a7f5322011-07-06 15:15:12 +02002875static void alc_auto_init_analog_input(struct hda_codec *codec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002876{
2877 struct alc_spec *spec = codec->spec;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002878 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002879 int i;
2880
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002881 for (i = 0; i < cfg->num_inputs; i++) {
2882 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002883 if (alc_is_input_pin(codec, nid)) {
Takashi Iwai30ea0982010-09-16 18:47:56 +02002884 alc_set_input_pin(codec, nid, cfg->inputs[i].type);
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002885 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002886 snd_hda_codec_write(codec, nid, 0,
2887 AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002888 AMP_OUT_MUTE);
2889 }
2890 }
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002891
2892 /* mute all loopback inputs */
2893 if (spec->mixer_nid) {
2894 int nums = snd_hda_get_conn_list(codec, spec->mixer_nid, NULL);
2895 for (i = 0; i < nums; i++)
2896 snd_hda_codec_write(codec, spec->mixer_nid, 0,
2897 AC_VERB_SET_AMP_GAIN_MUTE,
2898 AMP_IN_MUTE(i));
2899 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002900}
2901
Takashi Iwai7085ec12009-10-02 09:03:58 +02002902/* convert from MIX nid to DAC */
Takashi Iwai604401a2011-04-27 15:14:23 +02002903static hda_nid_t alc_auto_mix_to_dac(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002904{
Takashi Iwai604401a2011-04-27 15:14:23 +02002905 hda_nid_t list[5];
Takashi Iwai1304ac82011-04-06 15:16:21 +02002906 int i, num;
2907
Takashi Iwaiafcd5512011-07-08 11:07:59 +02002908 if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_AUD_OUT)
2909 return nid;
Takashi Iwai1304ac82011-04-06 15:16:21 +02002910 num = snd_hda_get_connections(codec, nid, list, ARRAY_SIZE(list));
2911 for (i = 0; i < num; i++) {
2912 if (get_wcaps_type(get_wcaps(codec, list[i])) == AC_WID_AUD_OUT)
2913 return list[i];
2914 }
2915 return 0;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002916}
2917
Takashi Iwai604401a2011-04-27 15:14:23 +02002918/* go down to the selector widget before the mixer */
2919static hda_nid_t alc_go_down_to_selector(struct hda_codec *codec, hda_nid_t pin)
2920{
2921 hda_nid_t srcs[5];
2922 int num = snd_hda_get_connections(codec, pin, srcs,
2923 ARRAY_SIZE(srcs));
2924 if (num != 1 ||
2925 get_wcaps_type(get_wcaps(codec, srcs[0])) != AC_WID_AUD_SEL)
2926 return pin;
2927 return srcs[0];
2928}
2929
Takashi Iwai7085ec12009-10-02 09:03:58 +02002930/* get MIX nid connected to the given pin targeted to DAC */
Takashi Iwai604401a2011-04-27 15:14:23 +02002931static hda_nid_t alc_auto_dac_to_mix(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai7085ec12009-10-02 09:03:58 +02002932 hda_nid_t dac)
2933{
David Henningssoncc1c4522010-11-24 14:17:47 +01002934 hda_nid_t mix[5];
Takashi Iwai7085ec12009-10-02 09:03:58 +02002935 int i, num;
2936
Takashi Iwai604401a2011-04-27 15:14:23 +02002937 pin = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002938 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2939 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02002940 if (alc_auto_mix_to_dac(codec, mix[i]) == dac)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002941 return mix[i];
2942 }
2943 return 0;
2944}
2945
Takashi Iwaice764ab2011-04-27 16:35:23 +02002946/* select the connection from pin to DAC if needed */
2947static int alc_auto_select_dac(struct hda_codec *codec, hda_nid_t pin,
2948 hda_nid_t dac)
2949{
2950 hda_nid_t mix[5];
2951 int i, num;
2952
2953 pin = alc_go_down_to_selector(codec, pin);
2954 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2955 if (num < 2)
2956 return 0;
2957 for (i = 0; i < num; i++) {
2958 if (alc_auto_mix_to_dac(codec, mix[i]) == dac) {
2959 snd_hda_codec_update_cache(codec, pin, 0,
2960 AC_VERB_SET_CONNECT_SEL, i);
2961 return 0;
2962 }
2963 }
2964 return 0;
2965}
2966
Takashi Iwai7085ec12009-10-02 09:03:58 +02002967/* look for an empty DAC slot */
Takashi Iwai604401a2011-04-27 15:14:23 +02002968static hda_nid_t alc_auto_look_for_dac(struct hda_codec *codec, hda_nid_t pin)
Takashi Iwai7085ec12009-10-02 09:03:58 +02002969{
2970 struct alc_spec *spec = codec->spec;
2971 hda_nid_t srcs[5];
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002972 int i, num;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002973
Takashi Iwai604401a2011-04-27 15:14:23 +02002974 pin = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002975 num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs));
Takashi Iwai7085ec12009-10-02 09:03:58 +02002976 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02002977 hda_nid_t nid = alc_auto_mix_to_dac(codec, srcs[i]);
Takashi Iwai7085ec12009-10-02 09:03:58 +02002978 if (!nid)
2979 continue;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002980 if (found_in_nid_list(nid, spec->multiout.dac_nids,
Takashi Iwai0a34b422011-12-07 17:20:30 +01002981 ARRAY_SIZE(spec->private_dac_nids)))
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002982 continue;
Takashi Iwaic2674682011-08-24 17:57:44 +02002983 if (found_in_nid_list(nid, spec->multiout.hp_out_nid,
2984 ARRAY_SIZE(spec->multiout.hp_out_nid)))
2985 continue;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02002986 if (found_in_nid_list(nid, spec->multiout.extra_out_nid,
2987 ARRAY_SIZE(spec->multiout.extra_out_nid)))
2988 continue;
2989 return nid;
Takashi Iwai7085ec12009-10-02 09:03:58 +02002990 }
2991 return 0;
2992}
2993
Takashi Iwai07b18f62011-11-10 15:42:54 +01002994/* check whether the DAC is reachable from the pin */
2995static bool alc_auto_is_dac_reachable(struct hda_codec *codec,
2996 hda_nid_t pin, hda_nid_t dac)
2997{
2998 hda_nid_t srcs[5];
2999 int i, num;
3000
3001 pin = alc_go_down_to_selector(codec, pin);
3002 num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs));
3003 for (i = 0; i < num; i++) {
3004 hda_nid_t nid = alc_auto_mix_to_dac(codec, srcs[i]);
3005 if (nid == dac)
3006 return true;
3007 }
3008 return false;
3009}
3010
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003011static hda_nid_t get_dac_if_single(struct hda_codec *codec, hda_nid_t pin)
3012{
3013 hda_nid_t sel = alc_go_down_to_selector(codec, pin);
3014 if (snd_hda_get_conn_list(codec, sel, NULL) == 1)
3015 return alc_auto_look_for_dac(codec, pin);
3016 return 0;
3017}
3018
Takashi Iwai0a34b422011-12-07 17:20:30 +01003019/* return 0 if no possible DAC is found, 1 if one or more found */
Takashi Iwaic2674682011-08-24 17:57:44 +02003020static int alc_auto_fill_extra_dacs(struct hda_codec *codec, int num_outs,
3021 const hda_nid_t *pins, hda_nid_t *dacs)
3022{
3023 int i;
3024
3025 if (num_outs && !dacs[0]) {
3026 dacs[0] = alc_auto_look_for_dac(codec, pins[0]);
3027 if (!dacs[0])
3028 return 0;
3029 }
3030
3031 for (i = 1; i < num_outs; i++)
3032 dacs[i] = get_dac_if_single(codec, pins[i]);
3033 for (i = 1; i < num_outs; i++) {
3034 if (!dacs[i])
3035 dacs[i] = alc_auto_look_for_dac(codec, pins[i]);
3036 }
Takashi Iwai0a34b422011-12-07 17:20:30 +01003037 return 1;
Takashi Iwaic2674682011-08-24 17:57:44 +02003038}
3039
3040static int alc_auto_fill_multi_ios(struct hda_codec *codec,
Takashi Iwai07b18f62011-11-10 15:42:54 +01003041 unsigned int location, int offset);
Takashi Iwaic2674682011-08-24 17:57:44 +02003042
Takashi Iwai7085ec12009-10-02 09:03:58 +02003043/* fill in the dac_nids table from the parsed pin configuration */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003044static int alc_auto_fill_dac_nids(struct hda_codec *codec)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003045{
3046 struct alc_spec *spec = codec->spec;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003047 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai07b18f62011-11-10 15:42:54 +01003048 unsigned int location, defcfg;
3049 int num_pins;
Takashi Iwai350434e2011-06-30 21:29:12 +02003050 bool redone = false;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003051 int i;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003052
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003053 again:
Takashi Iwai8f398ae2011-07-23 18:57:11 +02003054 /* set num_dacs once to full for alc_auto_look_for_dac() */
3055 spec->multiout.num_dacs = cfg->line_outs;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003056 spec->multiout.hp_out_nid[0] = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003057 spec->multiout.extra_out_nid[0] = 0;
3058 memset(spec->private_dac_nids, 0, sizeof(spec->private_dac_nids));
3059 spec->multiout.dac_nids = spec->private_dac_nids;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003060 spec->multi_ios = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003061
3062 /* fill hard-wired DACs first */
3063 if (!redone) {
3064 for (i = 0; i < cfg->line_outs; i++)
3065 spec->private_dac_nids[i] =
3066 get_dac_if_single(codec, cfg->line_out_pins[i]);
3067 if (cfg->hp_outs)
Takashi Iwaie23832a2011-08-23 18:16:56 +02003068 spec->multiout.hp_out_nid[0] =
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003069 get_dac_if_single(codec, cfg->hp_pins[0]);
3070 if (cfg->speaker_outs)
3071 spec->multiout.extra_out_nid[0] =
3072 get_dac_if_single(codec, cfg->speaker_pins[0]);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003073 }
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003074
3075 for (i = 0; i < cfg->line_outs; i++) {
3076 hda_nid_t pin = cfg->line_out_pins[i];
3077 if (spec->private_dac_nids[i])
3078 continue;
3079 spec->private_dac_nids[i] = alc_auto_look_for_dac(codec, pin);
3080 if (!spec->private_dac_nids[i] && !redone) {
3081 /* if we can't find primary DACs, re-probe without
3082 * checking the hard-wired DACs
3083 */
3084 redone = true;
3085 goto again;
3086 }
3087 }
3088
Takashi Iwai8f398ae2011-07-23 18:57:11 +02003089 /* re-count num_dacs and squash invalid entries */
3090 spec->multiout.num_dacs = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003091 for (i = 0; i < cfg->line_outs; i++) {
3092 if (spec->private_dac_nids[i])
3093 spec->multiout.num_dacs++;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003094 else {
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003095 memmove(spec->private_dac_nids + i,
3096 spec->private_dac_nids + i + 1,
3097 sizeof(hda_nid_t) * (cfg->line_outs - i - 1));
Takashi Iwai0a34b422011-12-07 17:20:30 +01003098 spec->private_dac_nids[cfg->line_outs - 1] = 0;
3099 }
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003100 }
3101
Takashi Iwaic2674682011-08-24 17:57:44 +02003102 if (cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3103 /* try to fill multi-io first */
Takashi Iwaic2674682011-08-24 17:57:44 +02003104 defcfg = snd_hda_codec_get_pincfg(codec, cfg->line_out_pins[0]);
3105 location = get_defcfg_location(defcfg);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003106
Takashi Iwai07b18f62011-11-10 15:42:54 +01003107 num_pins = alc_auto_fill_multi_ios(codec, location, 0);
Takashi Iwaic2674682011-08-24 17:57:44 +02003108 if (num_pins > 0) {
3109 spec->multi_ios = num_pins;
3110 spec->ext_channel_count = 2;
3111 spec->multiout.num_dacs = num_pins + 1;
3112 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003113 }
Takashi Iwaic2674682011-08-24 17:57:44 +02003114
Takashi Iwai716eef02011-10-21 15:07:42 +02003115 if (cfg->line_out_type != AUTO_PIN_HP_OUT)
3116 alc_auto_fill_extra_dacs(codec, cfg->hp_outs, cfg->hp_pins,
Takashi Iwaic2674682011-08-24 17:57:44 +02003117 spec->multiout.hp_out_nid);
Takashi Iwai0a34b422011-12-07 17:20:30 +01003118 if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3119 int err = alc_auto_fill_extra_dacs(codec, cfg->speaker_outs,
3120 cfg->speaker_pins,
3121 spec->multiout.extra_out_nid);
3122 /* if no speaker volume is assigned, try again as the primary
3123 * output
3124 */
3125 if (!err && cfg->speaker_outs > 0 &&
3126 cfg->line_out_type == AUTO_PIN_HP_OUT) {
3127 cfg->hp_outs = cfg->line_outs;
3128 memcpy(cfg->hp_pins, cfg->line_out_pins,
3129 sizeof(cfg->hp_pins));
3130 cfg->line_outs = cfg->speaker_outs;
3131 memcpy(cfg->line_out_pins, cfg->speaker_pins,
3132 sizeof(cfg->speaker_pins));
3133 cfg->speaker_outs = 0;
3134 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
3135 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
3136 redone = false;
3137 goto again;
3138 }
3139 }
Takashi Iwaic2674682011-08-24 17:57:44 +02003140
Takashi Iwai07b18f62011-11-10 15:42:54 +01003141 if (!spec->multi_ios &&
3142 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT &&
3143 cfg->hp_outs) {
3144 /* try multi-ios with HP + inputs */
3145 defcfg = snd_hda_codec_get_pincfg(codec, cfg->hp_pins[0]);
3146 location = get_defcfg_location(defcfg);
3147
3148 num_pins = alc_auto_fill_multi_ios(codec, location, 1);
3149 if (num_pins > 0) {
3150 spec->multi_ios = num_pins;
3151 spec->ext_channel_count = 2;
3152 spec->multiout.num_dacs = num_pins + 1;
3153 }
3154 }
3155
Takashi Iwai23c09b02011-08-19 09:05:35 +02003156 return 0;
3157}
3158
Takashi Iwai527e4d72011-10-27 16:33:27 +02003159static inline unsigned int get_ctl_pos(unsigned int data)
3160{
3161 hda_nid_t nid = get_amp_nid_(data);
3162 unsigned int dir = get_amp_direction_(data);
3163 return (nid << 1) | dir;
3164}
3165
3166#define is_ctl_used(bits, data) \
3167 test_bit(get_ctl_pos(data), bits)
3168#define mark_ctl_usage(bits, data) \
3169 set_bit(get_ctl_pos(data), bits)
3170
Takashi Iwai343a04b2011-07-06 14:28:39 +02003171static int alc_auto_add_vol_ctl(struct hda_codec *codec,
Takashi Iwai97aaab72011-07-06 14:02:55 +02003172 const char *pfx, int cidx,
3173 hda_nid_t nid, unsigned int chs)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003174{
Takashi Iwai527e4d72011-10-27 16:33:27 +02003175 struct alc_spec *spec = codec->spec;
3176 unsigned int val;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003177 if (!nid)
3178 return 0;
Takashi Iwai527e4d72011-10-27 16:33:27 +02003179 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
3180 if (is_ctl_used(spec->vol_ctls, val) && chs != 2) /* exclude LFE */
3181 return 0;
3182 mark_ctl_usage(spec->vol_ctls, val);
Takashi Iwai97aaab72011-07-06 14:02:55 +02003183 return __add_pb_vol_ctrl(codec->spec, ALC_CTL_WIDGET_VOL, pfx, cidx,
Takashi Iwai527e4d72011-10-27 16:33:27 +02003184 val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003185}
3186
Takashi Iwaie29d3772011-11-14 17:13:23 +01003187static int alc_auto_add_stereo_vol(struct hda_codec *codec,
3188 const char *pfx, int cidx,
3189 hda_nid_t nid)
3190{
3191 int chs = 1;
3192 if (get_wcaps(codec, nid) & AC_WCAP_STEREO)
3193 chs = 3;
3194 return alc_auto_add_vol_ctl(codec, pfx, cidx, nid, chs);
3195}
Takashi Iwai97aaab72011-07-06 14:02:55 +02003196
3197/* create a mute-switch for the given mixer widget;
3198 * if it has multiple sources (e.g. DAC and loopback), create a bind-mute
3199 */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003200static int alc_auto_add_sw_ctl(struct hda_codec *codec,
Takashi Iwai97aaab72011-07-06 14:02:55 +02003201 const char *pfx, int cidx,
3202 hda_nid_t nid, unsigned int chs)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003203{
Takashi Iwai527e4d72011-10-27 16:33:27 +02003204 struct alc_spec *spec = codec->spec;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003205 int wid_type;
Takashi Iwai97aaab72011-07-06 14:02:55 +02003206 int type;
3207 unsigned long val;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003208 if (!nid)
3209 return 0;
3210 wid_type = get_wcaps_type(get_wcaps(codec, nid));
3211 if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT) {
3212 type = ALC_CTL_WIDGET_MUTE;
3213 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
3214 } else if (snd_hda_get_conn_list(codec, nid, NULL) == 1) {
Takashi Iwai97aaab72011-07-06 14:02:55 +02003215 type = ALC_CTL_WIDGET_MUTE;
3216 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_INPUT);
3217 } else {
3218 type = ALC_CTL_BIND_MUTE;
3219 val = HDA_COMPOSE_AMP_VAL(nid, chs, 2, HDA_INPUT);
3220 }
Takashi Iwai527e4d72011-10-27 16:33:27 +02003221 if (is_ctl_used(spec->sw_ctls, val) && chs != 2) /* exclude LFE */
3222 return 0;
3223 mark_ctl_usage(spec->sw_ctls, val);
Takashi Iwai97aaab72011-07-06 14:02:55 +02003224 return __add_pb_sw_ctrl(codec->spec, type, pfx, cidx, val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003225}
3226
Takashi Iwaie29d3772011-11-14 17:13:23 +01003227static int alc_auto_add_stereo_sw(struct hda_codec *codec, const char *pfx,
3228 int cidx, hda_nid_t nid)
3229{
3230 int chs = 1;
3231 if (get_wcaps(codec, nid) & AC_WCAP_STEREO)
3232 chs = 3;
3233 return alc_auto_add_sw_ctl(codec, pfx, cidx, nid, chs);
3234}
Takashi Iwai7085ec12009-10-02 09:03:58 +02003235
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003236static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
3237 hda_nid_t pin, hda_nid_t dac)
3238{
3239 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3240 if (nid_has_mute(codec, pin, HDA_OUTPUT))
3241 return pin;
3242 else if (mix && nid_has_mute(codec, mix, HDA_INPUT))
3243 return mix;
3244 else if (nid_has_mute(codec, dac, HDA_OUTPUT))
3245 return dac;
3246 return 0;
3247}
3248
3249static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
3250 hda_nid_t pin, hda_nid_t dac)
3251{
3252 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3253 if (nid_has_volume(codec, dac, HDA_OUTPUT))
3254 return dac;
3255 else if (nid_has_volume(codec, mix, HDA_OUTPUT))
3256 return mix;
3257 else if (nid_has_volume(codec, pin, HDA_OUTPUT))
3258 return pin;
3259 return 0;
3260}
3261
Takashi Iwai7085ec12009-10-02 09:03:58 +02003262/* add playback controls from the parsed DAC table */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003263static int alc_auto_create_multi_out_ctls(struct hda_codec *codec,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003264 const struct auto_pin_cfg *cfg)
3265{
3266 struct alc_spec *spec = codec->spec;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003267 int i, err, noutputs;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003268
Takashi Iwaice764ab2011-04-27 16:35:23 +02003269 noutputs = cfg->line_outs;
3270 if (spec->multi_ios > 0)
3271 noutputs += spec->multi_ios;
3272
3273 for (i = 0; i < noutputs; i++) {
Takashi Iwai6843ca12011-06-24 11:03:58 +02003274 const char *name;
3275 int index;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003276 hda_nid_t dac, pin;
3277 hda_nid_t sw, vol;
3278
3279 dac = spec->multiout.dac_nids[i];
3280 if (!dac)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003281 continue;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003282 if (i >= cfg->line_outs)
3283 pin = spec->multi_io[i - 1].pin;
3284 else
3285 pin = cfg->line_out_pins[i];
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003286
3287 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3288 vol = alc_look_for_out_vol_nid(codec, pin, dac);
Takashi Iwai6843ca12011-06-24 11:03:58 +02003289 name = alc_get_line_out_pfx(spec, i, true, &index);
Takashi Iwai9c4e84d2011-08-24 17:27:52 +02003290 if (!name || !strcmp(name, "CLFE")) {
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003291 /* Center/LFE */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003292 err = alc_auto_add_vol_ctl(codec, "Center", 0, vol, 1);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003293 if (err < 0)
3294 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003295 err = alc_auto_add_vol_ctl(codec, "LFE", 0, vol, 2);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003296 if (err < 0)
3297 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003298 err = alc_auto_add_sw_ctl(codec, "Center", 0, sw, 1);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003299 if (err < 0)
3300 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003301 err = alc_auto_add_sw_ctl(codec, "LFE", 0, sw, 2);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003302 if (err < 0)
3303 return err;
3304 } else {
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003305 err = alc_auto_add_stereo_vol(codec, name, index, vol);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003306 if (err < 0)
3307 return err;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003308 err = alc_auto_add_stereo_sw(codec, name, index, sw);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003309 if (err < 0)
3310 return err;
3311 }
3312 }
3313 return 0;
3314}
3315
Takashi Iwai343a04b2011-07-06 14:28:39 +02003316static int alc_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai766ddee2011-12-07 16:55:19 +01003317 hda_nid_t dac, const char *pfx,
3318 int cidx)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003319{
Takashi Iwai7085ec12009-10-02 09:03:58 +02003320 struct alc_spec *spec = codec->spec;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003321 hda_nid_t sw, vol;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003322 int err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003323
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003324 if (!dac) {
Takashi Iwai527e4d72011-10-27 16:33:27 +02003325 unsigned int val;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003326 /* the corresponding DAC is already occupied */
3327 if (!(get_wcaps(codec, pin) & AC_WCAP_OUT_AMP))
3328 return 0; /* no way */
3329 /* create a switch only */
Takashi Iwai527e4d72011-10-27 16:33:27 +02003330 val = HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT);
3331 if (is_ctl_used(spec->sw_ctls, val))
3332 return 0; /* already created */
3333 mark_ctl_usage(spec->sw_ctls, val);
Takashi Iwai766ddee2011-12-07 16:55:19 +01003334 return __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx, cidx, val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003335 }
3336
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003337 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3338 vol = alc_look_for_out_vol_nid(codec, pin, dac);
Takashi Iwai766ddee2011-12-07 16:55:19 +01003339 err = alc_auto_add_stereo_vol(codec, pfx, cidx, vol);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003340 if (err < 0)
Takashi Iwai24fb9172008-09-02 14:48:20 +02003341 return err;
Takashi Iwai766ddee2011-12-07 16:55:19 +01003342 err = alc_auto_add_stereo_sw(codec, pfx, cidx, sw);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003343 if (err < 0)
3344 return err;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003345 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003346}
3347
Takashi Iwai23c09b02011-08-19 09:05:35 +02003348static struct hda_bind_ctls *new_bind_ctl(struct hda_codec *codec,
3349 unsigned int nums,
3350 struct hda_ctl_ops *ops)
3351{
3352 struct alc_spec *spec = codec->spec;
3353 struct hda_bind_ctls **ctlp, *ctl;
3354 snd_array_init(&spec->bind_ctls, sizeof(ctl), 8);
3355 ctlp = snd_array_new(&spec->bind_ctls);
3356 if (!ctlp)
3357 return NULL;
3358 ctl = kzalloc(sizeof(*ctl) + sizeof(long) * (nums + 1), GFP_KERNEL);
3359 *ctlp = ctl;
3360 if (ctl)
3361 ctl->ops = ops;
3362 return ctl;
3363}
3364
3365/* add playback controls for speaker and HP outputs */
3366static int alc_auto_create_extra_outs(struct hda_codec *codec, int num_pins,
3367 const hda_nid_t *pins,
3368 const hda_nid_t *dacs,
3369 const char *pfx)
3370{
3371 struct alc_spec *spec = codec->spec;
3372 struct hda_bind_ctls *ctl;
3373 char name[32];
3374 int i, n, err;
3375
3376 if (!num_pins || !pins[0])
3377 return 0;
3378
Takashi Iwai527e4d72011-10-27 16:33:27 +02003379 if (num_pins == 1) {
3380 hda_nid_t dac = *dacs;
3381 if (!dac)
3382 dac = spec->multiout.dac_nids[0];
Takashi Iwai766ddee2011-12-07 16:55:19 +01003383 return alc_auto_create_extra_out(codec, *pins, dac, pfx, 0);
Takashi Iwai527e4d72011-10-27 16:33:27 +02003384 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003385
3386 if (dacs[num_pins - 1]) {
3387 /* OK, we have a multi-output system with individual volumes */
3388 for (i = 0; i < num_pins; i++) {
Takashi Iwai766ddee2011-12-07 16:55:19 +01003389 if (num_pins >= 3) {
3390 snprintf(name, sizeof(name), "%s %s",
3391 pfx, channel_name[i]);
3392 err = alc_auto_create_extra_out(codec, pins[i], dacs[i],
3393 name, 0);
3394 } else {
3395 err = alc_auto_create_extra_out(codec, pins[i], dacs[i],
3396 pfx, i);
3397 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003398 if (err < 0)
3399 return err;
3400 }
3401 return 0;
3402 }
3403
3404 /* Let's create a bind-controls */
3405 ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_sw);
3406 if (!ctl)
3407 return -ENOMEM;
3408 n = 0;
3409 for (i = 0; i < num_pins; i++) {
3410 if (get_wcaps(codec, pins[i]) & AC_WCAP_OUT_AMP)
3411 ctl->values[n++] =
3412 HDA_COMPOSE_AMP_VAL(pins[i], 3, 0, HDA_OUTPUT);
3413 }
3414 if (n) {
3415 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
3416 err = add_control(spec, ALC_CTL_BIND_SW, name, 0, (long)ctl);
3417 if (err < 0)
3418 return err;
3419 }
3420
3421 ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_vol);
3422 if (!ctl)
3423 return -ENOMEM;
3424 n = 0;
3425 for (i = 0; i < num_pins; i++) {
3426 hda_nid_t vol;
3427 if (!pins[i] || !dacs[i])
3428 continue;
3429 vol = alc_look_for_out_vol_nid(codec, pins[i], dacs[i]);
3430 if (vol)
3431 ctl->values[n++] =
3432 HDA_COMPOSE_AMP_VAL(vol, 3, 0, HDA_OUTPUT);
3433 }
3434 if (n) {
3435 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
3436 err = add_control(spec, ALC_CTL_BIND_VOL, name, 0, (long)ctl);
3437 if (err < 0)
3438 return err;
3439 }
3440 return 0;
3441}
3442
Takashi Iwai343a04b2011-07-06 14:28:39 +02003443static int alc_auto_create_hp_out(struct hda_codec *codec)
3444{
3445 struct alc_spec *spec = codec->spec;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003446 return alc_auto_create_extra_outs(codec, spec->autocfg.hp_outs,
3447 spec->autocfg.hp_pins,
3448 spec->multiout.hp_out_nid,
3449 "Headphone");
Takashi Iwai343a04b2011-07-06 14:28:39 +02003450}
3451
3452static int alc_auto_create_speaker_out(struct hda_codec *codec)
3453{
3454 struct alc_spec *spec = codec->spec;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003455 return alc_auto_create_extra_outs(codec, spec->autocfg.speaker_outs,
3456 spec->autocfg.speaker_pins,
3457 spec->multiout.extra_out_nid,
3458 "Speaker");
Takashi Iwai343a04b2011-07-06 14:28:39 +02003459}
3460
Takashi Iwai343a04b2011-07-06 14:28:39 +02003461static void alc_auto_set_output_and_unmute(struct hda_codec *codec,
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003462 hda_nid_t pin, int pin_type,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003463 hda_nid_t dac)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003464{
Takashi Iwai7085ec12009-10-02 09:03:58 +02003465 int i, num;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003466 hda_nid_t nid, mix = 0;
Takashi Iwaice503f32010-07-30 10:37:29 +02003467 hda_nid_t srcs[HDA_MAX_CONNECTIONS];
Takashi Iwai7085ec12009-10-02 09:03:58 +02003468
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003469 alc_set_pin_output(codec, pin, pin_type);
3470 nid = alc_go_down_to_selector(codec, pin);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003471 num = snd_hda_get_connections(codec, nid, srcs, ARRAY_SIZE(srcs));
Takashi Iwai7085ec12009-10-02 09:03:58 +02003472 for (i = 0; i < num; i++) {
Takashi Iwai604401a2011-04-27 15:14:23 +02003473 if (alc_auto_mix_to_dac(codec, srcs[i]) != dac)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003474 continue;
Takashi Iwaicd511552011-07-06 13:10:42 +02003475 mix = srcs[i];
3476 break;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003477 }
Takashi Iwaicd511552011-07-06 13:10:42 +02003478 if (!mix)
3479 return;
3480
3481 /* need the manual connection? */
3482 if (num > 1)
3483 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, i);
3484 /* unmute mixer widget inputs */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003485 if (nid_has_mute(codec, mix, HDA_INPUT)) {
3486 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaicd511552011-07-06 13:10:42 +02003487 AMP_IN_UNMUTE(0));
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003488 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaicd511552011-07-06 13:10:42 +02003489 AMP_IN_UNMUTE(1));
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003490 }
Takashi Iwaicd511552011-07-06 13:10:42 +02003491 /* initialize volume */
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003492 nid = alc_look_for_out_vol_nid(codec, pin, dac);
3493 if (nid)
3494 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3495 AMP_OUT_ZERO);
Takashi Iwai43dea222011-11-06 11:25:34 +01003496
3497 /* unmute DAC if it's not assigned to a mixer */
3498 nid = alc_look_for_out_mute_nid(codec, pin, dac);
3499 if (nid == mix && nid_has_mute(codec, dac, HDA_OUTPUT))
3500 snd_hda_codec_write(codec, dac, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3501 AMP_OUT_ZERO);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003502}
3503
Takashi Iwai343a04b2011-07-06 14:28:39 +02003504static void alc_auto_init_multi_out(struct hda_codec *codec)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003505{
3506 struct alc_spec *spec = codec->spec;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003507 int pin_type = get_pin_type(spec->autocfg.line_out_type);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003508 int i;
3509
3510 for (i = 0; i <= HDA_SIDE; i++) {
3511 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3512 if (nid)
Takashi Iwai343a04b2011-07-06 14:28:39 +02003513 alc_auto_set_output_and_unmute(codec, nid, pin_type,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003514 spec->multiout.dac_nids[i]);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003515 }
3516}
3517
Takashi Iwai343a04b2011-07-06 14:28:39 +02003518static void alc_auto_init_extra_out(struct hda_codec *codec)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003519{
3520 struct alc_spec *spec = codec->spec;
Takashi Iwai8cd07752011-08-23 15:16:22 +02003521 int i;
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003522 hda_nid_t pin, dac;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003523
David Henningsson636030e2011-10-12 19:26:03 +02003524 for (i = 0; i < spec->autocfg.hp_outs; i++) {
Takashi Iwai716eef02011-10-21 15:07:42 +02003525 if (spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)
3526 break;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003527 pin = spec->autocfg.hp_pins[i];
3528 if (!pin)
3529 break;
3530 dac = spec->multiout.hp_out_nid[i];
3531 if (!dac) {
3532 if (i > 0 && spec->multiout.hp_out_nid[0])
3533 dac = spec->multiout.hp_out_nid[0];
3534 else
3535 dac = spec->multiout.dac_nids[0];
3536 }
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003537 alc_auto_set_output_and_unmute(codec, pin, PIN_HP, dac);
3538 }
Takashi Iwai8cd07752011-08-23 15:16:22 +02003539 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
Takashi Iwai716eef02011-10-21 15:07:42 +02003540 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
3541 break;
Takashi Iwai8cd07752011-08-23 15:16:22 +02003542 pin = spec->autocfg.speaker_pins[i];
3543 if (!pin)
3544 break;
3545 dac = spec->multiout.extra_out_nid[i];
3546 if (!dac) {
3547 if (i > 0 && spec->multiout.extra_out_nid[0])
3548 dac = spec->multiout.extra_out_nid[0];
3549 else
3550 dac = spec->multiout.dac_nids[0];
3551 }
Takashi Iwai675c1aa2011-08-23 12:36:28 +02003552 alc_auto_set_output_and_unmute(codec, pin, PIN_OUT, dac);
3553 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003554}
3555
Takashi Iwaice764ab2011-04-27 16:35:23 +02003556/*
3557 * multi-io helper
3558 */
3559static int alc_auto_fill_multi_ios(struct hda_codec *codec,
Takashi Iwai07b18f62011-11-10 15:42:54 +01003560 unsigned int location,
3561 int offset)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003562{
3563 struct alc_spec *spec = codec->spec;
3564 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaic2674682011-08-24 17:57:44 +02003565 hda_nid_t prime_dac = spec->private_dac_nids[0];
Takashi Iwai07b18f62011-11-10 15:42:54 +01003566 int type, i, dacs, num_pins = 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003567
Takashi Iwai07b18f62011-11-10 15:42:54 +01003568 dacs = spec->multiout.num_dacs;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003569 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
3570 for (i = 0; i < cfg->num_inputs; i++) {
3571 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai07b18f62011-11-10 15:42:54 +01003572 hda_nid_t dac = 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003573 unsigned int defcfg, caps;
3574 if (cfg->inputs[i].type != type)
3575 continue;
3576 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3577 if (get_defcfg_connect(defcfg) != AC_JACK_PORT_COMPLEX)
3578 continue;
3579 if (location && get_defcfg_location(defcfg) != location)
3580 continue;
3581 caps = snd_hda_query_pin_caps(codec, nid);
3582 if (!(caps & AC_PINCAP_OUT))
3583 continue;
Takashi Iwai07b18f62011-11-10 15:42:54 +01003584 if (offset && offset + num_pins < dacs) {
3585 dac = spec->private_dac_nids[offset + num_pins];
3586 if (!alc_auto_is_dac_reachable(codec, nid, dac))
3587 dac = 0;
3588 }
3589 if (!dac)
3590 dac = alc_auto_look_for_dac(codec, nid);
Takashi Iwaice764ab2011-04-27 16:35:23 +02003591 if (!dac)
3592 continue;
3593 spec->multi_io[num_pins].pin = nid;
3594 spec->multi_io[num_pins].dac = dac;
3595 num_pins++;
Takashi Iwaidda14412011-05-02 11:29:30 +02003596 spec->private_dac_nids[spec->multiout.num_dacs++] = dac;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003597 }
3598 }
Takashi Iwai07b18f62011-11-10 15:42:54 +01003599 spec->multiout.num_dacs = dacs;
Takashi Iwaic2674682011-08-24 17:57:44 +02003600 if (num_pins < 2) {
3601 /* clear up again */
Takashi Iwai07b18f62011-11-10 15:42:54 +01003602 memset(spec->private_dac_nids + dacs, 0,
3603 sizeof(hda_nid_t) * (AUTO_CFG_MAX_OUTS - dacs));
Takashi Iwaic2674682011-08-24 17:57:44 +02003604 spec->private_dac_nids[0] = prime_dac;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003605 return 0;
Takashi Iwaic2674682011-08-24 17:57:44 +02003606 }
Takashi Iwaice764ab2011-04-27 16:35:23 +02003607 return num_pins;
3608}
3609
3610static int alc_auto_ch_mode_info(struct snd_kcontrol *kcontrol,
3611 struct snd_ctl_elem_info *uinfo)
3612{
3613 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3614 struct alc_spec *spec = codec->spec;
3615
3616 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3617 uinfo->count = 1;
3618 uinfo->value.enumerated.items = spec->multi_ios + 1;
3619 if (uinfo->value.enumerated.item > spec->multi_ios)
3620 uinfo->value.enumerated.item = spec->multi_ios;
3621 sprintf(uinfo->value.enumerated.name, "%dch",
3622 (uinfo->value.enumerated.item + 1) * 2);
3623 return 0;
3624}
3625
3626static int alc_auto_ch_mode_get(struct snd_kcontrol *kcontrol,
3627 struct snd_ctl_elem_value *ucontrol)
3628{
3629 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3630 struct alc_spec *spec = codec->spec;
3631 ucontrol->value.enumerated.item[0] = (spec->ext_channel_count - 1) / 2;
3632 return 0;
3633}
3634
3635static int alc_set_multi_io(struct hda_codec *codec, int idx, bool output)
3636{
3637 struct alc_spec *spec = codec->spec;
3638 hda_nid_t nid = spec->multi_io[idx].pin;
3639
3640 if (!spec->multi_io[idx].ctl_in)
3641 spec->multi_io[idx].ctl_in =
3642 snd_hda_codec_read(codec, nid, 0,
3643 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3644 if (output) {
3645 snd_hda_codec_update_cache(codec, nid, 0,
3646 AC_VERB_SET_PIN_WIDGET_CONTROL,
3647 PIN_OUT);
3648 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3649 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3650 HDA_AMP_MUTE, 0);
3651 alc_auto_select_dac(codec, nid, spec->multi_io[idx].dac);
3652 } else {
3653 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3654 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3655 HDA_AMP_MUTE, HDA_AMP_MUTE);
3656 snd_hda_codec_update_cache(codec, nid, 0,
3657 AC_VERB_SET_PIN_WIDGET_CONTROL,
3658 spec->multi_io[idx].ctl_in);
3659 }
3660 return 0;
3661}
3662
3663static int alc_auto_ch_mode_put(struct snd_kcontrol *kcontrol,
3664 struct snd_ctl_elem_value *ucontrol)
3665{
3666 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3667 struct alc_spec *spec = codec->spec;
3668 int i, ch;
3669
3670 ch = ucontrol->value.enumerated.item[0];
3671 if (ch < 0 || ch > spec->multi_ios)
3672 return -EINVAL;
3673 if (ch == (spec->ext_channel_count - 1) / 2)
3674 return 0;
3675 spec->ext_channel_count = (ch + 1) * 2;
3676 for (i = 0; i < spec->multi_ios; i++)
3677 alc_set_multi_io(codec, i, i < ch);
3678 spec->multiout.max_channels = spec->ext_channel_count;
Takashi Iwai7b1655f2011-07-14 15:31:21 +02003679 if (spec->need_dac_fix && !spec->const_channel_count)
3680 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003681 return 1;
3682}
3683
Takashi Iwaia9111322011-05-02 11:30:18 +02003684static const struct snd_kcontrol_new alc_auto_channel_mode_enum = {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003685 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3686 .name = "Channel Mode",
3687 .info = alc_auto_ch_mode_info,
3688 .get = alc_auto_ch_mode_get,
3689 .put = alc_auto_ch_mode_put,
3690};
3691
Takashi Iwai23c09b02011-08-19 09:05:35 +02003692static int alc_auto_add_multi_channel_mode(struct hda_codec *codec)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003693{
3694 struct alc_spec *spec = codec->spec;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003695
Takashi Iwaic2674682011-08-24 17:57:44 +02003696 if (spec->multi_ios > 0) {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003697 struct snd_kcontrol_new *knew;
3698
3699 knew = alc_kcontrol_new(spec);
3700 if (!knew)
3701 return -ENOMEM;
3702 *knew = alc_auto_channel_mode_enum;
3703 knew->name = kstrdup("Channel Mode", GFP_KERNEL);
3704 if (!knew->name)
3705 return -ENOMEM;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003706 }
3707 return 0;
3708}
3709
Takashi Iwai1d045db2011-07-07 18:23:21 +02003710/* filter out invalid adc_nids (and capsrc_nids) that don't give all
3711 * active input pins
3712 */
3713static void alc_remove_invalid_adc_nids(struct hda_codec *codec)
3714{
3715 struct alc_spec *spec = codec->spec;
3716 const struct hda_input_mux *imux;
3717 hda_nid_t adc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3718 hda_nid_t capsrc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3719 int i, n, nums;
3720
3721 imux = spec->input_mux;
3722 if (!imux)
3723 return;
3724 if (spec->dyn_adc_switch)
3725 return;
3726
3727 nums = 0;
3728 for (n = 0; n < spec->num_adc_nids; n++) {
3729 hda_nid_t cap = spec->private_capsrc_nids[n];
3730 int num_conns = snd_hda_get_conn_list(codec, cap, NULL);
3731 for (i = 0; i < imux->num_items; i++) {
3732 hda_nid_t pin = spec->imux_pins[i];
3733 if (pin) {
3734 if (get_connection_index(codec, cap, pin) < 0)
3735 break;
3736 } else if (num_conns <= imux->items[i].index)
3737 break;
3738 }
3739 if (i >= imux->num_items) {
3740 adc_nids[nums] = spec->private_adc_nids[n];
3741 capsrc_nids[nums++] = cap;
3742 }
3743 }
3744 if (!nums) {
3745 /* check whether ADC-switch is possible */
3746 if (!alc_check_dyn_adc_switch(codec)) {
3747 printk(KERN_WARNING "hda_codec: %s: no valid ADC found;"
3748 " using fallback 0x%x\n",
3749 codec->chip_name, spec->private_adc_nids[0]);
3750 spec->num_adc_nids = 1;
3751 spec->auto_mic = 0;
3752 return;
3753 }
3754 } else if (nums != spec->num_adc_nids) {
3755 memcpy(spec->private_adc_nids, adc_nids,
3756 nums * sizeof(hda_nid_t));
3757 memcpy(spec->private_capsrc_nids, capsrc_nids,
3758 nums * sizeof(hda_nid_t));
3759 spec->num_adc_nids = nums;
3760 }
3761
3762 if (spec->auto_mic)
3763 alc_auto_mic_check_imux(codec); /* check auto-mic setups */
3764 else if (spec->input_mux->num_items == 1)
3765 spec->num_adc_nids = 1; /* reduce to a single ADC */
3766}
3767
3768/*
3769 * initialize ADC paths
3770 */
3771static void alc_auto_init_adc(struct hda_codec *codec, int adc_idx)
3772{
3773 struct alc_spec *spec = codec->spec;
3774 hda_nid_t nid;
3775
3776 nid = spec->adc_nids[adc_idx];
3777 /* mute ADC */
Takashi Iwai44c02402011-07-08 15:14:19 +02003778 if (nid_has_mute(codec, nid, HDA_INPUT)) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003779 snd_hda_codec_write(codec, nid, 0,
3780 AC_VERB_SET_AMP_GAIN_MUTE,
3781 AMP_IN_MUTE(0));
3782 return;
3783 }
3784 if (!spec->capsrc_nids)
3785 return;
3786 nid = spec->capsrc_nids[adc_idx];
Takashi Iwai44c02402011-07-08 15:14:19 +02003787 if (nid_has_mute(codec, nid, HDA_OUTPUT))
Takashi Iwai1d045db2011-07-07 18:23:21 +02003788 snd_hda_codec_write(codec, nid, 0,
3789 AC_VERB_SET_AMP_GAIN_MUTE,
3790 AMP_OUT_MUTE);
3791}
3792
3793static void alc_auto_init_input_src(struct hda_codec *codec)
3794{
3795 struct alc_spec *spec = codec->spec;
3796 int c, nums;
3797
3798 for (c = 0; c < spec->num_adc_nids; c++)
3799 alc_auto_init_adc(codec, c);
3800 if (spec->dyn_adc_switch)
3801 nums = 1;
3802 else
3803 nums = spec->num_adc_nids;
3804 for (c = 0; c < nums; c++)
3805 alc_mux_select(codec, 0, spec->cur_mux[c], true);
3806}
3807
3808/* add mic boosts if needed */
3809static int alc_auto_add_mic_boost(struct hda_codec *codec)
3810{
3811 struct alc_spec *spec = codec->spec;
3812 struct auto_pin_cfg *cfg = &spec->autocfg;
3813 int i, err;
3814 int type_idx = 0;
3815 hda_nid_t nid;
3816 const char *prev_label = NULL;
3817
3818 for (i = 0; i < cfg->num_inputs; i++) {
3819 if (cfg->inputs[i].type > AUTO_PIN_MIC)
3820 break;
3821 nid = cfg->inputs[i].pin;
3822 if (get_wcaps(codec, nid) & AC_WCAP_IN_AMP) {
3823 const char *label;
3824 char boost_label[32];
3825
3826 label = hda_get_autocfg_input_label(codec, cfg, i);
Takashi Iwai24de1832011-11-07 17:13:39 +01003827 if (spec->shared_mic_hp && !strcmp(label, "Misc"))
3828 label = "Headphone Mic";
Takashi Iwai1d045db2011-07-07 18:23:21 +02003829 if (prev_label && !strcmp(label, prev_label))
3830 type_idx++;
3831 else
3832 type_idx = 0;
3833 prev_label = label;
3834
3835 snprintf(boost_label, sizeof(boost_label),
3836 "%s Boost Volume", label);
3837 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3838 boost_label, type_idx,
3839 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
3840 if (err < 0)
3841 return err;
3842 }
3843 }
3844 return 0;
3845}
3846
3847/* select or unmute the given capsrc route */
3848static void select_or_unmute_capsrc(struct hda_codec *codec, hda_nid_t cap,
3849 int idx)
3850{
3851 if (get_wcaps_type(get_wcaps(codec, cap)) == AC_WID_AUD_MIX) {
3852 snd_hda_codec_amp_stereo(codec, cap, HDA_INPUT, idx,
3853 HDA_AMP_MUTE, 0);
3854 } else if (snd_hda_get_conn_list(codec, cap, NULL) > 1) {
3855 snd_hda_codec_write_cache(codec, cap, 0,
3856 AC_VERB_SET_CONNECT_SEL, idx);
3857 }
3858}
3859
3860/* set the default connection to that pin */
3861static int init_capsrc_for_pin(struct hda_codec *codec, hda_nid_t pin)
3862{
3863 struct alc_spec *spec = codec->spec;
3864 int i;
3865
3866 if (!pin)
3867 return 0;
3868 for (i = 0; i < spec->num_adc_nids; i++) {
Takashi Iwai61071592011-11-23 07:52:15 +01003869 hda_nid_t cap = get_capsrc(spec, i);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003870 int idx;
3871
3872 idx = get_connection_index(codec, cap, pin);
3873 if (idx < 0)
3874 continue;
3875 select_or_unmute_capsrc(codec, cap, idx);
3876 return i; /* return the found index */
3877 }
3878 return -1; /* not found */
3879}
3880
3881/* initialize some special cases for input sources */
3882static void alc_init_special_input_src(struct hda_codec *codec)
3883{
3884 struct alc_spec *spec = codec->spec;
3885 int i;
3886
3887 for (i = 0; i < spec->autocfg.num_inputs; i++)
3888 init_capsrc_for_pin(codec, spec->autocfg.inputs[i].pin);
3889}
3890
3891/* assign appropriate capture mixers */
3892static void set_capture_mixer(struct hda_codec *codec)
3893{
3894 struct alc_spec *spec = codec->spec;
3895 static const struct snd_kcontrol_new *caps[2][3] = {
3896 { alc_capture_mixer_nosrc1,
3897 alc_capture_mixer_nosrc2,
3898 alc_capture_mixer_nosrc3 },
3899 { alc_capture_mixer1,
3900 alc_capture_mixer2,
3901 alc_capture_mixer3 },
3902 };
3903
3904 /* check whether either of ADC or MUX has a volume control */
Takashi Iwai44c02402011-07-08 15:14:19 +02003905 if (!nid_has_volume(codec, spec->adc_nids[0], HDA_INPUT)) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003906 if (!spec->capsrc_nids)
3907 return; /* no volume */
Takashi Iwai44c02402011-07-08 15:14:19 +02003908 if (!nid_has_volume(codec, spec->capsrc_nids[0], HDA_OUTPUT))
Takashi Iwai1d045db2011-07-07 18:23:21 +02003909 return; /* no volume in capsrc, too */
3910 spec->vol_in_capsrc = 1;
3911 }
3912
3913 if (spec->num_adc_nids > 0) {
3914 int mux = 0;
3915 int num_adcs = 0;
3916
3917 if (spec->input_mux && spec->input_mux->num_items > 1)
3918 mux = 1;
3919 if (spec->auto_mic) {
3920 num_adcs = 1;
3921 mux = 0;
3922 } else if (spec->dyn_adc_switch)
3923 num_adcs = 1;
3924 if (!num_adcs) {
3925 if (spec->num_adc_nids > 3)
3926 spec->num_adc_nids = 3;
3927 else if (!spec->num_adc_nids)
3928 return;
3929 num_adcs = spec->num_adc_nids;
3930 }
3931 spec->cap_mixer = caps[mux][num_adcs - 1];
3932 }
3933}
3934
3935/*
Takashi Iwaie4770622011-07-08 11:11:35 +02003936 * standard auto-parser initializations
3937 */
3938static void alc_auto_init_std(struct hda_codec *codec)
3939{
3940 struct alc_spec *spec = codec->spec;
3941 alc_auto_init_multi_out(codec);
3942 alc_auto_init_extra_out(codec);
3943 alc_auto_init_analog_input(codec);
3944 alc_auto_init_input_src(codec);
3945 alc_auto_init_digital(codec);
3946 if (spec->unsol_event)
3947 alc_inithook(codec);
3948}
3949
3950/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02003951 * Digital-beep handlers
3952 */
3953#ifdef CONFIG_SND_HDA_INPUT_BEEP
3954#define set_beep_amp(spec, nid, idx, dir) \
3955 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
3956
3957static const struct snd_pci_quirk beep_white_list[] = {
3958 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
3959 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
3960 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
3961 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
3962 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
3963 {}
3964};
3965
3966static inline int has_cdefine_beep(struct hda_codec *codec)
3967{
3968 struct alc_spec *spec = codec->spec;
3969 const struct snd_pci_quirk *q;
3970 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
3971 if (q)
3972 return q->value;
3973 return spec->cdefine.enable_pcbeep;
3974}
3975#else
3976#define set_beep_amp(spec, nid, idx, dir) /* NOP */
3977#define has_cdefine_beep(codec) 0
3978#endif
3979
3980/* parse the BIOS configuration and set up the alc_spec */
3981/* return 1 if successful, 0 if the proper config is not found,
3982 * or a negative error code
3983 */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003984static int alc_parse_auto_config(struct hda_codec *codec,
3985 const hda_nid_t *ignore_nids,
3986 const hda_nid_t *ssid_nids)
Takashi Iwai1d045db2011-07-07 18:23:21 +02003987{
3988 struct alc_spec *spec = codec->spec;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003989 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003990 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003991
Takashi Iwai53c334a2011-08-23 18:27:14 +02003992 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
3993 spec->parse_flags);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003994 if (err < 0)
3995 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003996 if (!cfg->line_outs) {
3997 if (cfg->dig_outs || cfg->dig_in_pin) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003998 spec->multiout.max_channels = 2;
3999 spec->no_analog = 1;
4000 goto dig_only;
4001 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004002 return 0; /* can't find valid BIOS pin config */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004003 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02004004
Takashi Iwai06503672011-10-06 08:27:19 +02004005 if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT &&
4006 cfg->line_outs <= cfg->hp_outs) {
Takashi Iwai23c09b02011-08-19 09:05:35 +02004007 /* use HP as primary out */
4008 cfg->speaker_outs = cfg->line_outs;
4009 memcpy(cfg->speaker_pins, cfg->line_out_pins,
4010 sizeof(cfg->speaker_pins));
4011 cfg->line_outs = cfg->hp_outs;
4012 memcpy(cfg->line_out_pins, cfg->hp_pins, sizeof(cfg->hp_pins));
4013 cfg->hp_outs = 0;
4014 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
4015 cfg->line_out_type = AUTO_PIN_HP_OUT;
4016 }
4017
Takashi Iwai1d045db2011-07-07 18:23:21 +02004018 err = alc_auto_fill_dac_nids(codec);
4019 if (err < 0)
4020 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004021 err = alc_auto_add_multi_channel_mode(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004022 if (err < 0)
4023 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004024 err = alc_auto_create_multi_out_ctls(codec, cfg);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004025 if (err < 0)
4026 return err;
4027 err = alc_auto_create_hp_out(codec);
4028 if (err < 0)
4029 return err;
4030 err = alc_auto_create_speaker_out(codec);
4031 if (err < 0)
4032 return err;
Takashi Iwai24de1832011-11-07 17:13:39 +01004033 err = alc_auto_create_shared_input(codec);
4034 if (err < 0)
4035 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004036 err = alc_auto_create_input_ctls(codec);
4037 if (err < 0)
4038 return err;
4039
4040 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
4041
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004042 dig_only:
Takashi Iwai1d045db2011-07-07 18:23:21 +02004043 alc_auto_parse_digital(codec);
4044
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004045 if (!spec->no_analog)
4046 alc_remove_invalid_adc_nids(codec);
4047
4048 if (ssid_nids)
4049 alc_ssid_check(codec, ssid_nids);
4050
4051 if (!spec->no_analog) {
4052 alc_auto_check_switches(codec);
4053 err = alc_auto_add_mic_boost(codec);
4054 if (err < 0)
4055 return err;
4056 }
4057
Takashi Iwai1d045db2011-07-07 18:23:21 +02004058 if (spec->kctls.list)
4059 add_mixer(spec, spec->kctls.list);
4060
Takashi Iwai1d045db2011-07-07 18:23:21 +02004061 return 1;
4062}
4063
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004064static int alc880_parse_auto_config(struct hda_codec *codec)
4065{
4066 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
4067 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4068 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
4069}
4070
Takashi Iwai1d045db2011-07-07 18:23:21 +02004071#ifdef CONFIG_SND_HDA_POWER_SAVE
4072static const struct hda_amp_list alc880_loopbacks[] = {
4073 { 0x0b, HDA_INPUT, 0 },
4074 { 0x0b, HDA_INPUT, 1 },
4075 { 0x0b, HDA_INPUT, 2 },
4076 { 0x0b, HDA_INPUT, 3 },
4077 { 0x0b, HDA_INPUT, 4 },
4078 { } /* end */
4079};
4080#endif
4081
4082/*
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004083 * ALC880 fix-ups
4084 */
4085enum {
4086 ALC880_FIXUP_GPIO2,
4087 ALC880_FIXUP_MEDION_RIM,
4088};
4089
4090static const struct alc_fixup alc880_fixups[] = {
4091 [ALC880_FIXUP_GPIO2] = {
4092 .type = ALC_FIXUP_VERBS,
4093 .v.verbs = alc_gpio2_init_verbs,
4094 },
4095 [ALC880_FIXUP_MEDION_RIM] = {
4096 .type = ALC_FIXUP_VERBS,
4097 .v.verbs = (const struct hda_verb[]) {
4098 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4099 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
4100 { }
4101 },
4102 .chained = true,
4103 .chain_id = ALC880_FIXUP_GPIO2,
4104 },
4105};
4106
4107static const struct snd_pci_quirk alc880_fixup_tbl[] = {
4108 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
4109 {}
4110};
4111
4112
4113/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02004114 * board setups
4115 */
4116#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4117#define alc_board_config \
4118 snd_hda_check_board_config
4119#define alc_board_codec_sid_config \
4120 snd_hda_check_board_codec_sid_config
4121#include "alc_quirks.c"
4122#else
4123#define alc_board_config(codec, nums, models, tbl) -1
4124#define alc_board_codec_sid_config(codec, nums, models, tbl) -1
4125#define setup_preset(codec, x) /* NOP */
4126#endif
4127
4128/*
4129 * OK, here we have finally the patch for ALC880
4130 */
4131#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4132#include "alc880_quirks.c"
4133#endif
4134
4135static int patch_alc880(struct hda_codec *codec)
4136{
4137 struct alc_spec *spec;
4138 int board_config;
4139 int err;
4140
4141 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4142 if (spec == NULL)
4143 return -ENOMEM;
4144
4145 codec->spec = spec;
4146
4147 spec->mixer_nid = 0x0b;
Takashi Iwai7b1655f2011-07-14 15:31:21 +02004148 spec->need_dac_fix = 1;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004149
4150 board_config = alc_board_config(codec, ALC880_MODEL_LAST,
4151 alc880_models, alc880_cfg_tbl);
4152 if (board_config < 0) {
4153 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4154 codec->chip_name);
4155 board_config = ALC_MODEL_AUTO;
4156 }
4157
4158 if (board_config == ALC_MODEL_AUTO) {
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004159 alc_pick_fixup(codec, NULL, alc880_fixup_tbl, alc880_fixups);
4160 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4161 }
4162
4163 if (board_config == ALC_MODEL_AUTO) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004164 /* automatic parse from the BIOS config */
4165 err = alc880_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004166 if (err < 0)
4167 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004168#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4169 else if (!err) {
4170 printk(KERN_INFO
4171 "hda_codec: Cannot set up configuration "
4172 "from BIOS. Using 3-stack mode...\n");
4173 board_config = ALC880_3ST;
4174 }
4175#endif
4176 }
4177
Takashi Iwai1d045db2011-07-07 18:23:21 +02004178 if (board_config != ALC_MODEL_AUTO)
4179 setup_preset(codec, &alc880_presets[board_config]);
4180
Takashi Iwai60a6a842011-07-27 14:01:24 +02004181 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004182 alc_auto_fill_adc_caps(codec);
4183 alc_rebuild_imux_for_auto_mic(codec);
4184 alc_remove_invalid_adc_nids(codec);
4185 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004186
4187 if (!spec->no_analog && !spec->cap_mixer)
4188 set_capture_mixer(codec);
4189
4190 if (!spec->no_analog) {
4191 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004192 if (err < 0)
4193 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004194 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4195 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004196
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004197 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4198
Takashi Iwai1d045db2011-07-07 18:23:21 +02004199 spec->vmaster_nid = 0x0c;
4200
4201 codec->patch_ops = alc_patch_ops;
4202 if (board_config == ALC_MODEL_AUTO)
Takashi Iwaie4770622011-07-08 11:11:35 +02004203 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004204#ifdef CONFIG_SND_HDA_POWER_SAVE
4205 if (!spec->loopback.amplist)
4206 spec->loopback.amplist = alc880_loopbacks;
4207#endif
4208
4209 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004210
4211 error:
4212 alc_free(codec);
4213 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004214}
4215
4216
4217/*
4218 * ALC260 support
4219 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004220static int alc260_parse_auto_config(struct hda_codec *codec)
4221{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004222 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004223 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
4224 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004225}
4226
Takashi Iwai1d045db2011-07-07 18:23:21 +02004227#ifdef CONFIG_SND_HDA_POWER_SAVE
4228static const struct hda_amp_list alc260_loopbacks[] = {
4229 { 0x07, HDA_INPUT, 0 },
4230 { 0x07, HDA_INPUT, 1 },
4231 { 0x07, HDA_INPUT, 2 },
4232 { 0x07, HDA_INPUT, 3 },
4233 { 0x07, HDA_INPUT, 4 },
4234 { } /* end */
4235};
4236#endif
4237
4238/*
4239 * Pin config fixes
4240 */
4241enum {
4242 PINFIX_HP_DC5750,
4243};
4244
4245static const struct alc_fixup alc260_fixups[] = {
4246 [PINFIX_HP_DC5750] = {
4247 .type = ALC_FIXUP_PINS,
4248 .v.pins = (const struct alc_pincfg[]) {
4249 { 0x11, 0x90130110 }, /* speaker */
4250 { }
4251 }
4252 },
4253};
4254
4255static const struct snd_pci_quirk alc260_fixup_tbl[] = {
4256 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", PINFIX_HP_DC5750),
4257 {}
4258};
4259
4260/*
4261 */
4262#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4263#include "alc260_quirks.c"
4264#endif
4265
4266static int patch_alc260(struct hda_codec *codec)
4267{
4268 struct alc_spec *spec;
4269 int err, board_config;
4270
4271 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4272 if (spec == NULL)
4273 return -ENOMEM;
4274
4275 codec->spec = spec;
4276
4277 spec->mixer_nid = 0x07;
4278
4279 board_config = alc_board_config(codec, ALC260_MODEL_LAST,
4280 alc260_models, alc260_cfg_tbl);
4281 if (board_config < 0) {
4282 snd_printd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4283 codec->chip_name);
4284 board_config = ALC_MODEL_AUTO;
4285 }
4286
4287 if (board_config == ALC_MODEL_AUTO) {
4288 alc_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
4289 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4290 }
4291
4292 if (board_config == ALC_MODEL_AUTO) {
4293 /* automatic parse from the BIOS config */
4294 err = alc260_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004295 if (err < 0)
4296 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004297#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4298 else if (!err) {
4299 printk(KERN_INFO
4300 "hda_codec: Cannot set up configuration "
4301 "from BIOS. Using base mode...\n");
4302 board_config = ALC260_BASIC;
4303 }
4304#endif
4305 }
4306
Takashi Iwai1d045db2011-07-07 18:23:21 +02004307 if (board_config != ALC_MODEL_AUTO)
4308 setup_preset(codec, &alc260_presets[board_config]);
4309
Takashi Iwai60a6a842011-07-27 14:01:24 +02004310 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004311 alc_auto_fill_adc_caps(codec);
4312 alc_rebuild_imux_for_auto_mic(codec);
4313 alc_remove_invalid_adc_nids(codec);
4314 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004315
4316 if (!spec->no_analog && !spec->cap_mixer)
4317 set_capture_mixer(codec);
4318
4319 if (!spec->no_analog) {
4320 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004321 if (err < 0)
4322 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004323 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
4324 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004325
4326 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4327
4328 spec->vmaster_nid = 0x08;
4329
4330 codec->patch_ops = alc_patch_ops;
4331 if (board_config == ALC_MODEL_AUTO)
Takashi Iwai8452a982011-07-08 16:19:48 +02004332 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004333 spec->shutup = alc_eapd_shutup;
4334#ifdef CONFIG_SND_HDA_POWER_SAVE
4335 if (!spec->loopback.amplist)
4336 spec->loopback.amplist = alc260_loopbacks;
4337#endif
4338
4339 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004340
4341 error:
4342 alc_free(codec);
4343 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004344}
4345
4346
4347/*
4348 * ALC882/883/885/888/889 support
4349 *
4350 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4351 * configuration. Each pin widget can choose any input DACs and a mixer.
4352 * Each ADC is connected from a mixer of all inputs. This makes possible
4353 * 6-channel independent captures.
4354 *
4355 * In addition, an independent DAC for the multi-playback (not used in this
4356 * driver yet).
4357 */
4358#ifdef CONFIG_SND_HDA_POWER_SAVE
4359#define alc882_loopbacks alc880_loopbacks
4360#endif
4361
4362/*
4363 * Pin config fixes
4364 */
4365enum {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004366 ALC882_FIXUP_ABIT_AW9D_MAX,
4367 ALC882_FIXUP_LENOVO_Y530,
4368 ALC882_FIXUP_PB_M5210,
4369 ALC882_FIXUP_ACER_ASPIRE_7736,
4370 ALC882_FIXUP_ASUS_W90V,
4371 ALC889_FIXUP_VAIO_TT,
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01004372 ALC888_FIXUP_EEE1601,
Takashi Iwai177943a2011-11-09 12:55:18 +01004373 ALC882_FIXUP_EAPD,
Takashi Iwai7a6069b2011-11-09 15:22:01 +01004374 ALC883_FIXUP_EAPD,
Takashi Iwai8812c4f2011-11-09 17:39:15 +01004375 ALC883_FIXUP_ACER_EAPD,
Takashi Iwaieb844d52011-11-09 18:03:07 +01004376 ALC882_FIXUP_GPIO3,
Takashi Iwai68ef0562011-11-09 18:24:44 +01004377 ALC889_FIXUP_COEF,
4378 ALC882_FIXUP_ASUS_W2JC,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01004379 ALC882_FIXUP_ACER_ASPIRE_4930G,
4380 ALC882_FIXUP_ACER_ASPIRE_8930G,
4381 ALC882_FIXUP_ASPIRE_8930G_VERBS,
Takashi Iwai56710872011-11-14 17:42:11 +01004382 ALC885_FIXUP_MACPRO_GPIO,
Takashi Iwai1d045db2011-07-07 18:23:21 +02004383};
4384
Takashi Iwai68ef0562011-11-09 18:24:44 +01004385static void alc889_fixup_coef(struct hda_codec *codec,
4386 const struct alc_fixup *fix, int action)
4387{
4388 if (action != ALC_FIXUP_ACT_INIT)
4389 return;
4390 alc889_coef_init(codec);
4391}
4392
Takashi Iwai56710872011-11-14 17:42:11 +01004393/* toggle speaker-output according to the hp-jack state */
4394static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
4395{
4396 unsigned int gpiostate, gpiomask, gpiodir;
4397
4398 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
4399 AC_VERB_GET_GPIO_DATA, 0);
4400
4401 if (!muted)
4402 gpiostate |= (1 << pin);
4403 else
4404 gpiostate &= ~(1 << pin);
4405
4406 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
4407 AC_VERB_GET_GPIO_MASK, 0);
4408 gpiomask |= (1 << pin);
4409
4410 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
4411 AC_VERB_GET_GPIO_DIRECTION, 0);
4412 gpiodir |= (1 << pin);
4413
4414
4415 snd_hda_codec_write(codec, codec->afg, 0,
4416 AC_VERB_SET_GPIO_MASK, gpiomask);
4417 snd_hda_codec_write(codec, codec->afg, 0,
4418 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
4419
4420 msleep(1);
4421
4422 snd_hda_codec_write(codec, codec->afg, 0,
4423 AC_VERB_SET_GPIO_DATA, gpiostate);
4424}
4425
4426/* set up GPIO at initialization */
4427static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
4428 const struct alc_fixup *fix, int action)
4429{
4430 if (action != ALC_FIXUP_ACT_INIT)
4431 return;
4432 alc882_gpio_mute(codec, 0, 0);
4433 alc882_gpio_mute(codec, 1, 0);
4434}
4435
Takashi Iwai1d045db2011-07-07 18:23:21 +02004436static const struct alc_fixup alc882_fixups[] = {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004437 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004438 .type = ALC_FIXUP_PINS,
4439 .v.pins = (const struct alc_pincfg[]) {
4440 { 0x15, 0x01080104 }, /* side */
4441 { 0x16, 0x01011012 }, /* rear */
4442 { 0x17, 0x01016011 }, /* clfe */
4443 { }
4444 }
4445 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004446 [ALC882_FIXUP_LENOVO_Y530] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004447 .type = ALC_FIXUP_PINS,
4448 .v.pins = (const struct alc_pincfg[]) {
4449 { 0x15, 0x99130112 }, /* rear int speakers */
4450 { 0x16, 0x99130111 }, /* subwoofer */
4451 { }
4452 }
4453 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004454 [ALC882_FIXUP_PB_M5210] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004455 .type = ALC_FIXUP_VERBS,
4456 .v.verbs = (const struct hda_verb[]) {
4457 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
4458 {}
4459 }
4460 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004461 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004462 .type = ALC_FIXUP_SKU,
4463 .v.sku = ALC_FIXUP_SKU_IGNORE,
4464 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004465 [ALC882_FIXUP_ASUS_W90V] = {
Takashi Iwai5cdf7452011-10-26 23:04:08 +02004466 .type = ALC_FIXUP_PINS,
4467 .v.pins = (const struct alc_pincfg[]) {
4468 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
4469 { }
4470 }
4471 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004472 [ALC889_FIXUP_VAIO_TT] = {
4473 .type = ALC_FIXUP_PINS,
4474 .v.pins = (const struct alc_pincfg[]) {
4475 { 0x17, 0x90170111 }, /* hidden surround speaker */
4476 { }
4477 }
4478 },
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01004479 [ALC888_FIXUP_EEE1601] = {
4480 .type = ALC_FIXUP_VERBS,
4481 .v.verbs = (const struct hda_verb[]) {
4482 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
4483 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
4484 { }
4485 }
Takashi Iwai177943a2011-11-09 12:55:18 +01004486 },
4487 [ALC882_FIXUP_EAPD] = {
4488 .type = ALC_FIXUP_VERBS,
4489 .v.verbs = (const struct hda_verb[]) {
4490 /* change to EAPD mode */
4491 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4492 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
4493 { }
4494 }
4495 },
Takashi Iwai7a6069b2011-11-09 15:22:01 +01004496 [ALC883_FIXUP_EAPD] = {
4497 .type = ALC_FIXUP_VERBS,
4498 .v.verbs = (const struct hda_verb[]) {
4499 /* change to EAPD mode */
4500 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4501 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
4502 { }
4503 }
4504 },
Takashi Iwai8812c4f2011-11-09 17:39:15 +01004505 [ALC883_FIXUP_ACER_EAPD] = {
4506 .type = ALC_FIXUP_VERBS,
4507 .v.verbs = (const struct hda_verb[]) {
4508 /* eanable EAPD on Acer laptops */
4509 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4510 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
4511 { }
4512 }
4513 },
Takashi Iwaieb844d52011-11-09 18:03:07 +01004514 [ALC882_FIXUP_GPIO3] = {
4515 .type = ALC_FIXUP_VERBS,
4516 .v.verbs = alc_gpio3_init_verbs,
4517 },
Takashi Iwai68ef0562011-11-09 18:24:44 +01004518 [ALC882_FIXUP_ASUS_W2JC] = {
4519 .type = ALC_FIXUP_VERBS,
4520 .v.verbs = alc_gpio1_init_verbs,
4521 .chained = true,
4522 .chain_id = ALC882_FIXUP_EAPD,
4523 },
4524 [ALC889_FIXUP_COEF] = {
4525 .type = ALC_FIXUP_FUNC,
4526 .v.func = alc889_fixup_coef,
4527 },
Takashi Iwaic3e837b2011-11-10 16:01:47 +01004528 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
4529 .type = ALC_FIXUP_PINS,
4530 .v.pins = (const struct alc_pincfg[]) {
4531 { 0x16, 0x99130111 }, /* CLFE speaker */
4532 { 0x17, 0x99130112 }, /* surround speaker */
4533 { }
4534 }
4535 },
4536 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
4537 .type = ALC_FIXUP_PINS,
4538 .v.pins = (const struct alc_pincfg[]) {
4539 { 0x16, 0x99130111 }, /* CLFE speaker */
4540 { 0x1b, 0x99130112 }, /* surround speaker */
4541 { }
4542 },
4543 .chained = true,
4544 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
4545 },
4546 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
4547 /* additional init verbs for Acer Aspire 8930G */
4548 .type = ALC_FIXUP_VERBS,
4549 .v.verbs = (const struct hda_verb[]) {
4550 /* Enable all DACs */
4551 /* DAC DISABLE/MUTE 1? */
4552 /* setting bits 1-5 disables DAC nids 0x02-0x06
4553 * apparently. Init=0x38 */
4554 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
4555 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
4556 /* DAC DISABLE/MUTE 2? */
4557 /* some bit here disables the other DACs.
4558 * Init=0x4900 */
4559 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
4560 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
4561 /* DMIC fix
4562 * This laptop has a stereo digital microphone.
4563 * The mics are only 1cm apart which makes the stereo
4564 * useless. However, either the mic or the ALC889
4565 * makes the signal become a difference/sum signal
4566 * instead of standard stereo, which is annoying.
4567 * So instead we flip this bit which makes the
4568 * codec replicate the sum signal to both channels,
4569 * turning it into a normal mono mic.
4570 */
4571 /* DMIC_CONTROL? Init value = 0x0001 */
4572 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
4573 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
4574 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4575 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
4576 { }
4577 }
4578 },
Takashi Iwai56710872011-11-14 17:42:11 +01004579 [ALC885_FIXUP_MACPRO_GPIO] = {
4580 .type = ALC_FIXUP_FUNC,
4581 .v.func = alc885_fixup_macpro_gpio,
4582 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02004583};
4584
4585static const struct snd_pci_quirk alc882_fixup_tbl[] = {
Takashi Iwai8812c4f2011-11-09 17:39:15 +01004586 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
4587 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
4588 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
4589 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
4590 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
4591 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
Takashi Iwaic3e837b2011-11-10 16:01:47 +01004592 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
4593 ALC882_FIXUP_ACER_ASPIRE_4930G),
4594 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
4595 ALC882_FIXUP_ACER_ASPIRE_4930G),
4596 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
4597 ALC882_FIXUP_ACER_ASPIRE_8930G),
4598 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
4599 ALC882_FIXUP_ACER_ASPIRE_8930G),
4600 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
4601 ALC882_FIXUP_ACER_ASPIRE_4930G),
4602 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
4603 ALC882_FIXUP_ACER_ASPIRE_4930G),
4604 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
4605 ALC882_FIXUP_ACER_ASPIRE_4930G),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004606 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01004607 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
Takashi Iwai177943a2011-11-09 12:55:18 +01004608 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004609 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
Takashi Iwai68ef0562011-11-09 18:24:44 +01004610 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01004611 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01004612 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
Takashi Iwai56710872011-11-14 17:42:11 +01004613
4614 /* All Apple entries are in codec SSIDs */
4615 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
4616 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
4617 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
4618 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
4619 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
4620
Takashi Iwai7a6069b2011-11-09 15:22:01 +01004621 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
Takashi Iwaieb844d52011-11-09 18:03:07 +01004622 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01004623 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
Takashi Iwai7a6069b2011-11-09 15:22:01 +01004624 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
4625 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01004626 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
Takashi Iwai68ef0562011-11-09 18:24:44 +01004627 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004628 {}
4629};
4630
4631/*
4632 * BIOS auto configuration
4633 */
4634/* almost identical with ALC880 parser... */
4635static int alc882_parse_auto_config(struct hda_codec *codec)
4636{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004637 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004638 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4639 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004640}
4641
Takashi Iwai1d045db2011-07-07 18:23:21 +02004642/*
4643 */
4644#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4645#include "alc882_quirks.c"
4646#endif
4647
4648static int patch_alc882(struct hda_codec *codec)
4649{
4650 struct alc_spec *spec;
4651 int err, board_config;
4652
4653 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4654 if (spec == NULL)
4655 return -ENOMEM;
4656
4657 codec->spec = spec;
4658
4659 spec->mixer_nid = 0x0b;
4660
4661 switch (codec->vendor_id) {
4662 case 0x10ec0882:
4663 case 0x10ec0885:
4664 break;
4665 default:
4666 /* ALC883 and variants */
4667 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
4668 break;
4669 }
4670
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004671 err = alc_codec_rename_from_preset(codec);
4672 if (err < 0)
4673 goto error;
4674
Takashi Iwaib2539692011-11-14 17:32:17 +01004675 board_config = alc_board_config(codec, ALC882_MODEL_LAST,
4676 alc882_models, NULL);
4677 if (board_config < 0)
4678 board_config = alc_board_codec_sid_config(codec,
Takashi Iwai1d045db2011-07-07 18:23:21 +02004679 ALC882_MODEL_LAST, alc882_models, alc882_ssid_cfg_tbl);
4680
4681 if (board_config < 0) {
4682 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4683 codec->chip_name);
4684 board_config = ALC_MODEL_AUTO;
4685 }
4686
4687 if (board_config == ALC_MODEL_AUTO) {
4688 alc_pick_fixup(codec, NULL, alc882_fixup_tbl, alc882_fixups);
4689 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4690 }
4691
4692 alc_auto_parse_customize_define(codec);
4693
4694 if (board_config == ALC_MODEL_AUTO) {
4695 /* automatic parse from the BIOS config */
4696 err = alc882_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004697 if (err < 0)
4698 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004699 }
4700
Takashi Iwai1d045db2011-07-07 18:23:21 +02004701 if (board_config != ALC_MODEL_AUTO)
4702 setup_preset(codec, &alc882_presets[board_config]);
4703
Takashi Iwai60a6a842011-07-27 14:01:24 +02004704 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004705 alc_auto_fill_adc_caps(codec);
4706 alc_rebuild_imux_for_auto_mic(codec);
4707 alc_remove_invalid_adc_nids(codec);
4708 }
4709
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004710 if (!spec->no_analog && !spec->cap_mixer)
4711 set_capture_mixer(codec);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004712
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004713 if (!spec->no_analog && has_cdefine_beep(codec)) {
4714 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004715 if (err < 0)
4716 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004717 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004718 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004719
4720 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4721
4722 spec->vmaster_nid = 0x0c;
4723
4724 codec->patch_ops = alc_patch_ops;
4725 if (board_config == ALC_MODEL_AUTO)
Takashi Iwaie4770622011-07-08 11:11:35 +02004726 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004727
4728 alc_init_jacks(codec);
4729#ifdef CONFIG_SND_HDA_POWER_SAVE
4730 if (!spec->loopback.amplist)
4731 spec->loopback.amplist = alc882_loopbacks;
4732#endif
4733
4734 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004735
4736 error:
4737 alc_free(codec);
4738 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004739}
4740
4741
4742/*
4743 * ALC262 support
4744 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004745static int alc262_parse_auto_config(struct hda_codec *codec)
4746{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004747 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004748 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4749 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004750}
4751
4752/*
4753 * Pin config fixes
4754 */
4755enum {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01004756 ALC262_FIXUP_FSC_H270,
4757 ALC262_FIXUP_HP_Z200,
4758 ALC262_FIXUP_TYAN,
Takashi Iwai12837c92011-11-07 12:45:24 +01004759 ALC262_FIXUP_TOSHIBA_RX1,
Takashi Iwaic4701502011-11-07 14:20:07 +01004760 ALC262_FIXUP_LENOVO_3000,
Takashi Iwaib42590b2011-11-07 14:41:01 +01004761 ALC262_FIXUP_BENQ,
4762 ALC262_FIXUP_BENQ_T31,
Takashi Iwai1d045db2011-07-07 18:23:21 +02004763};
4764
4765static const struct alc_fixup alc262_fixups[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01004766 [ALC262_FIXUP_FSC_H270] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004767 .type = ALC_FIXUP_PINS,
4768 .v.pins = (const struct alc_pincfg[]) {
4769 { 0x14, 0x99130110 }, /* speaker */
4770 { 0x15, 0x0221142f }, /* front HP */
4771 { 0x1b, 0x0121141f }, /* rear HP */
4772 { }
4773 }
4774 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01004775 [ALC262_FIXUP_HP_Z200] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004776 .type = ALC_FIXUP_PINS,
4777 .v.pins = (const struct alc_pincfg[]) {
4778 { 0x16, 0x99130120 }, /* internal speaker */
4779 { }
4780 }
4781 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01004782 [ALC262_FIXUP_TYAN] = {
4783 .type = ALC_FIXUP_PINS,
4784 .v.pins = (const struct alc_pincfg[]) {
4785 { 0x14, 0x1993e1f0 }, /* int AUX */
4786 { }
4787 }
4788 },
Takashi Iwai12837c92011-11-07 12:45:24 +01004789 [ALC262_FIXUP_TOSHIBA_RX1] = {
4790 .type = ALC_FIXUP_PINS,
4791 .v.pins = (const struct alc_pincfg[]) {
4792 { 0x14, 0x90170110 }, /* speaker */
4793 { 0x15, 0x0421101f }, /* HP */
4794 { 0x1a, 0x40f000f0 }, /* N/A */
4795 { 0x1b, 0x40f000f0 }, /* N/A */
4796 { 0x1e, 0x40f000f0 }, /* N/A */
4797 }
4798 },
Takashi Iwaic4701502011-11-07 14:20:07 +01004799 [ALC262_FIXUP_LENOVO_3000] = {
4800 .type = ALC_FIXUP_VERBS,
4801 .v.verbs = (const struct hda_verb[]) {
4802 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01004803 {}
4804 },
4805 .chained = true,
4806 .chain_id = ALC262_FIXUP_BENQ,
4807 },
4808 [ALC262_FIXUP_BENQ] = {
4809 .type = ALC_FIXUP_VERBS,
4810 .v.verbs = (const struct hda_verb[]) {
Takashi Iwaic4701502011-11-07 14:20:07 +01004811 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4812 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
4813 {}
4814 }
4815 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01004816 [ALC262_FIXUP_BENQ_T31] = {
4817 .type = ALC_FIXUP_VERBS,
4818 .v.verbs = (const struct hda_verb[]) {
4819 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4820 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
4821 {}
4822 }
4823 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02004824};
4825
4826static const struct snd_pci_quirk alc262_fixup_tbl[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01004827 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
Takashi Iwai3dcd3be2011-11-07 14:59:40 +01004828 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FIXUP_BENQ),
4829 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01004830 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
Takashi Iwai12837c92011-11-07 12:45:24 +01004831 SND_PCI_QUIRK(0x1179, 0x0001, "Toshiba dynabook SS RX1",
4832 ALC262_FIXUP_TOSHIBA_RX1),
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01004833 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
Takashi Iwaic4701502011-11-07 14:20:07 +01004834 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
Takashi Iwaib42590b2011-11-07 14:41:01 +01004835 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
4836 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004837 {}
4838};
4839
4840
4841#ifdef CONFIG_SND_HDA_POWER_SAVE
4842#define alc262_loopbacks alc880_loopbacks
4843#endif
4844
Takashi Iwai1d045db2011-07-07 18:23:21 +02004845/*
4846 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004847static int patch_alc262(struct hda_codec *codec)
4848{
4849 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004850 int err;
4851
4852 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4853 if (spec == NULL)
4854 return -ENOMEM;
4855
4856 codec->spec = spec;
4857
4858 spec->mixer_nid = 0x0b;
4859
4860#if 0
4861 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
4862 * under-run
4863 */
4864 {
4865 int tmp;
4866 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4867 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
4868 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4869 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
4870 }
4871#endif
4872 alc_auto_parse_customize_define(codec);
4873
4874 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
4875
Takashi Iwai42399f72011-11-07 17:18:44 +01004876 alc_pick_fixup(codec, NULL, alc262_fixup_tbl, alc262_fixups);
4877 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004878
Takashi Iwai42399f72011-11-07 17:18:44 +01004879 /* automatic parse from the BIOS config */
4880 err = alc262_parse_auto_config(codec);
4881 if (err < 0)
4882 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004883
Takashi Iwai60a6a842011-07-27 14:01:24 +02004884 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004885 alc_auto_fill_adc_caps(codec);
4886 alc_rebuild_imux_for_auto_mic(codec);
4887 alc_remove_invalid_adc_nids(codec);
4888 }
4889
4890 if (!spec->no_analog && !spec->cap_mixer)
4891 set_capture_mixer(codec);
4892
Takashi Iwai1d045db2011-07-07 18:23:21 +02004893 if (!spec->no_analog && has_cdefine_beep(codec)) {
4894 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004895 if (err < 0)
4896 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004897 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004898 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004899
4900 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4901
4902 spec->vmaster_nid = 0x0c;
4903
4904 codec->patch_ops = alc_patch_ops;
Takashi Iwai42399f72011-11-07 17:18:44 +01004905 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004906 spec->shutup = alc_eapd_shutup;
4907
4908 alc_init_jacks(codec);
4909#ifdef CONFIG_SND_HDA_POWER_SAVE
4910 if (!spec->loopback.amplist)
4911 spec->loopback.amplist = alc262_loopbacks;
4912#endif
4913
4914 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004915
4916 error:
4917 alc_free(codec);
4918 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004919}
4920
4921/*
4922 * ALC268
4923 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004924/* bind Beep switches of both NID 0x0f and 0x10 */
4925static const struct hda_bind_ctls alc268_bind_beep_sw = {
4926 .ops = &snd_hda_bind_sw,
4927 .values = {
4928 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
4929 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
4930 0
4931 },
4932};
4933
4934static const struct snd_kcontrol_new alc268_beep_mixer[] = {
4935 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
4936 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
4937 { }
4938};
4939
4940/* set PCBEEP vol = 0, mute connections */
4941static const struct hda_verb alc268_beep_init_verbs[] = {
4942 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4943 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4944 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4945 { }
4946};
4947
4948/*
4949 * BIOS auto configuration
4950 */
4951static int alc268_parse_auto_config(struct hda_codec *codec)
4952{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004953 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai1d045db2011-07-07 18:23:21 +02004954 struct alc_spec *spec = codec->spec;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004955 int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
4956 if (err > 0) {
4957 if (!spec->no_analog && spec->autocfg.speaker_pins[0] != 0x1d) {
4958 add_mixer(spec, alc268_beep_mixer);
4959 add_verb(spec, alc268_beep_init_verbs);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004960 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004961 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004962 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004963}
4964
Takashi Iwai1d045db2011-07-07 18:23:21 +02004965/*
4966 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004967static int patch_alc268(struct hda_codec *codec)
4968{
4969 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004970 int i, has_beep, err;
4971
4972 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4973 if (spec == NULL)
4974 return -ENOMEM;
4975
4976 codec->spec = spec;
4977
4978 /* ALC268 has no aa-loopback mixer */
4979
Takashi Iwai6ebb8052011-08-16 15:15:40 +02004980 /* automatic parse from the BIOS config */
4981 err = alc268_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004982 if (err < 0)
4983 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004984
Takashi Iwai1d045db2011-07-07 18:23:21 +02004985 has_beep = 0;
4986 for (i = 0; i < spec->num_mixers; i++) {
4987 if (spec->mixers[i] == alc268_beep_mixer) {
4988 has_beep = 1;
4989 break;
4990 }
4991 }
4992
4993 if (has_beep) {
4994 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004995 if (err < 0)
4996 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004997 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
4998 /* override the amp caps for beep generator */
4999 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
5000 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
5001 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
5002 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5003 (0 << AC_AMPCAP_MUTE_SHIFT));
5004 }
5005
Takashi Iwai60a6a842011-07-27 14:01:24 +02005006 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005007 alc_auto_fill_adc_caps(codec);
5008 alc_rebuild_imux_for_auto_mic(codec);
5009 alc_remove_invalid_adc_nids(codec);
5010 }
5011
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005012 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005013 set_capture_mixer(codec);
5014
5015 spec->vmaster_nid = 0x02;
5016
5017 codec->patch_ops = alc_patch_ops;
Takashi Iwai6ebb8052011-08-16 15:15:40 +02005018 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005019 spec->shutup = alc_eapd_shutup;
5020
5021 alc_init_jacks(codec);
5022
5023 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005024
5025 error:
5026 alc_free(codec);
5027 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005028}
5029
5030/*
5031 * ALC269
5032 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005033#ifdef CONFIG_SND_HDA_POWER_SAVE
5034#define alc269_loopbacks alc880_loopbacks
5035#endif
5036
5037static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
5038 .substreams = 1,
5039 .channels_min = 2,
5040 .channels_max = 8,
5041 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
5042 /* NID is set in alc_build_pcms */
5043 .ops = {
5044 .open = alc_playback_pcm_open,
5045 .prepare = alc_playback_pcm_prepare,
5046 .cleanup = alc_playback_pcm_cleanup
5047 },
5048};
5049
5050static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
5051 .substreams = 1,
5052 .channels_min = 2,
5053 .channels_max = 2,
5054 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
5055 /* NID is set in alc_build_pcms */
5056};
5057
5058#ifdef CONFIG_SND_HDA_POWER_SAVE
5059static int alc269_mic2_for_mute_led(struct hda_codec *codec)
5060{
5061 switch (codec->subsystem_id) {
5062 case 0x103c1586:
5063 return 1;
5064 }
5065 return 0;
5066}
5067
5068static int alc269_mic2_mute_check_ps(struct hda_codec *codec, hda_nid_t nid)
5069{
5070 /* update mute-LED according to the speaker mute state */
5071 if (nid == 0x01 || nid == 0x14) {
5072 int pinval;
5073 if (snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0) &
5074 HDA_AMP_MUTE)
5075 pinval = 0x24;
5076 else
5077 pinval = 0x20;
5078 /* mic2 vref pin is used for mute LED control */
5079 snd_hda_codec_update_cache(codec, 0x19, 0,
5080 AC_VERB_SET_PIN_WIDGET_CONTROL,
5081 pinval);
5082 }
5083 return alc_check_power_status(codec, nid);
5084}
5085#endif /* CONFIG_SND_HDA_POWER_SAVE */
5086
5087/* different alc269-variants */
5088enum {
5089 ALC269_TYPE_ALC269VA,
5090 ALC269_TYPE_ALC269VB,
5091 ALC269_TYPE_ALC269VC,
5092};
5093
5094/*
5095 * BIOS auto configuration
5096 */
5097static int alc269_parse_auto_config(struct hda_codec *codec)
5098{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005099 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005100 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
5101 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5102 struct alc_spec *spec = codec->spec;
5103 const hda_nid_t *ssids = spec->codec_variant == ALC269_TYPE_ALC269VA ?
5104 alc269va_ssids : alc269_ssids;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005105
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005106 return alc_parse_auto_config(codec, alc269_ignore, ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005107}
5108
Takashi Iwai1d045db2011-07-07 18:23:21 +02005109static void alc269_toggle_power_output(struct hda_codec *codec, int power_up)
5110{
5111 int val = alc_read_coef_idx(codec, 0x04);
5112 if (power_up)
5113 val |= 1 << 11;
5114 else
5115 val &= ~(1 << 11);
5116 alc_write_coef_idx(codec, 0x04, val);
5117}
5118
5119static void alc269_shutup(struct hda_codec *codec)
5120{
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005121 if ((alc_get_coef0(codec) & 0x00ff) == 0x017)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005122 alc269_toggle_power_output(codec, 0);
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005123 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005124 alc269_toggle_power_output(codec, 0);
5125 msleep(150);
5126 }
5127}
5128
Takashi Iwai2a439522011-07-26 09:52:50 +02005129#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02005130static int alc269_resume(struct hda_codec *codec)
5131{
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005132 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005133 alc269_toggle_power_output(codec, 0);
5134 msleep(150);
5135 }
5136
5137 codec->patch_ops.init(codec);
5138
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005139 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005140 alc269_toggle_power_output(codec, 1);
5141 msleep(200);
5142 }
5143
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005144 if ((alc_get_coef0(codec) & 0x00ff) == 0x018)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005145 alc269_toggle_power_output(codec, 1);
5146
5147 snd_hda_codec_resume_amp(codec);
5148 snd_hda_codec_resume_cache(codec);
5149 hda_call_check_power_status(codec, 0x01);
5150 return 0;
5151}
Takashi Iwai2a439522011-07-26 09:52:50 +02005152#endif /* CONFIG_PM */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005153
5154static void alc269_fixup_hweq(struct hda_codec *codec,
5155 const struct alc_fixup *fix, int action)
5156{
5157 int coef;
5158
5159 if (action != ALC_FIXUP_ACT_INIT)
5160 return;
5161 coef = alc_read_coef_idx(codec, 0x1e);
5162 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
5163}
5164
5165static void alc271_fixup_dmic(struct hda_codec *codec,
5166 const struct alc_fixup *fix, int action)
5167{
5168 static const struct hda_verb verbs[] = {
5169 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
5170 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
5171 {}
5172 };
5173 unsigned int cfg;
5174
5175 if (strcmp(codec->chip_name, "ALC271X"))
5176 return;
5177 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
5178 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
5179 snd_hda_sequence_write(codec, verbs);
5180}
5181
Takashi Iwai017f2a12011-07-09 14:42:25 +02005182static void alc269_fixup_pcm_44k(struct hda_codec *codec,
5183 const struct alc_fixup *fix, int action)
5184{
5185 struct alc_spec *spec = codec->spec;
5186
5187 if (action != ALC_FIXUP_ACT_PROBE)
5188 return;
5189
5190 /* Due to a hardware problem on Lenovo Ideadpad, we need to
5191 * fix the sample rate of analog I/O to 44.1kHz
5192 */
5193 spec->stream_analog_playback = &alc269_44k_pcm_analog_playback;
5194 spec->stream_analog_capture = &alc269_44k_pcm_analog_capture;
5195}
5196
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02005197static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
5198 const struct alc_fixup *fix, int action)
5199{
5200 int coef;
5201
5202 if (action != ALC_FIXUP_ACT_INIT)
5203 return;
5204 /* The digital-mic unit sends PDM (differential signal) instead of
5205 * the standard PCM, thus you can't record a valid mono stream as is.
5206 * Below is a workaround specific to ALC269 to control the dmic
5207 * signal source as mono.
5208 */
5209 coef = alc_read_coef_idx(codec, 0x07);
5210 alc_write_coef_idx(codec, 0x07, coef | 0x80);
5211}
5212
Takashi Iwai24519912011-08-16 15:08:49 +02005213static void alc269_quanta_automute(struct hda_codec *codec)
5214{
David Henningsson42cf0d02011-09-20 12:04:56 +02005215 update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +02005216
5217 snd_hda_codec_write(codec, 0x20, 0,
5218 AC_VERB_SET_COEF_INDEX, 0x0c);
5219 snd_hda_codec_write(codec, 0x20, 0,
5220 AC_VERB_SET_PROC_COEF, 0x680);
5221
5222 snd_hda_codec_write(codec, 0x20, 0,
5223 AC_VERB_SET_COEF_INDEX, 0x0c);
5224 snd_hda_codec_write(codec, 0x20, 0,
5225 AC_VERB_SET_PROC_COEF, 0x480);
5226}
5227
5228static void alc269_fixup_quanta_mute(struct hda_codec *codec,
5229 const struct alc_fixup *fix, int action)
5230{
5231 struct alc_spec *spec = codec->spec;
5232 if (action != ALC_FIXUP_ACT_PROBE)
5233 return;
5234 spec->automute_hook = alc269_quanta_automute;
5235}
5236
Takashi Iwai1d045db2011-07-07 18:23:21 +02005237enum {
5238 ALC269_FIXUP_SONY_VAIO,
5239 ALC275_FIXUP_SONY_VAIO_GPIO2,
5240 ALC269_FIXUP_DELL_M101Z,
5241 ALC269_FIXUP_SKU_IGNORE,
5242 ALC269_FIXUP_ASUS_G73JW,
5243 ALC269_FIXUP_LENOVO_EAPD,
5244 ALC275_FIXUP_SONY_HWEQ,
5245 ALC271_FIXUP_DMIC,
Takashi Iwai017f2a12011-07-09 14:42:25 +02005246 ALC269_FIXUP_PCM_44K,
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02005247 ALC269_FIXUP_STEREO_DMIC,
Takashi Iwai24519912011-08-16 15:08:49 +02005248 ALC269_FIXUP_QUANTA_MUTE,
5249 ALC269_FIXUP_LIFEBOOK,
Takashi Iwaia4297b52011-08-23 18:40:12 +02005250 ALC269_FIXUP_AMIC,
5251 ALC269_FIXUP_DMIC,
5252 ALC269VB_FIXUP_AMIC,
5253 ALC269VB_FIXUP_DMIC,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005254};
5255
5256static const struct alc_fixup alc269_fixups[] = {
5257 [ALC269_FIXUP_SONY_VAIO] = {
5258 .type = ALC_FIXUP_VERBS,
5259 .v.verbs = (const struct hda_verb[]) {
5260 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
5261 {}
5262 }
5263 },
5264 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
5265 .type = ALC_FIXUP_VERBS,
5266 .v.verbs = (const struct hda_verb[]) {
5267 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
5268 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
5269 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
5270 { }
5271 },
5272 .chained = true,
5273 .chain_id = ALC269_FIXUP_SONY_VAIO
5274 },
5275 [ALC269_FIXUP_DELL_M101Z] = {
5276 .type = ALC_FIXUP_VERBS,
5277 .v.verbs = (const struct hda_verb[]) {
5278 /* Enables internal speaker */
5279 {0x20, AC_VERB_SET_COEF_INDEX, 13},
5280 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
5281 {}
5282 }
5283 },
5284 [ALC269_FIXUP_SKU_IGNORE] = {
5285 .type = ALC_FIXUP_SKU,
5286 .v.sku = ALC_FIXUP_SKU_IGNORE,
5287 },
5288 [ALC269_FIXUP_ASUS_G73JW] = {
5289 .type = ALC_FIXUP_PINS,
5290 .v.pins = (const struct alc_pincfg[]) {
5291 { 0x17, 0x99130111 }, /* subwoofer */
5292 { }
5293 }
5294 },
5295 [ALC269_FIXUP_LENOVO_EAPD] = {
5296 .type = ALC_FIXUP_VERBS,
5297 .v.verbs = (const struct hda_verb[]) {
5298 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5299 {}
5300 }
5301 },
5302 [ALC275_FIXUP_SONY_HWEQ] = {
5303 .type = ALC_FIXUP_FUNC,
5304 .v.func = alc269_fixup_hweq,
5305 .chained = true,
5306 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
5307 },
5308 [ALC271_FIXUP_DMIC] = {
5309 .type = ALC_FIXUP_FUNC,
5310 .v.func = alc271_fixup_dmic,
5311 },
Takashi Iwai017f2a12011-07-09 14:42:25 +02005312 [ALC269_FIXUP_PCM_44K] = {
5313 .type = ALC_FIXUP_FUNC,
5314 .v.func = alc269_fixup_pcm_44k,
5315 },
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02005316 [ALC269_FIXUP_STEREO_DMIC] = {
5317 .type = ALC_FIXUP_FUNC,
5318 .v.func = alc269_fixup_stereo_dmic,
5319 },
Takashi Iwai24519912011-08-16 15:08:49 +02005320 [ALC269_FIXUP_QUANTA_MUTE] = {
5321 .type = ALC_FIXUP_FUNC,
5322 .v.func = alc269_fixup_quanta_mute,
5323 },
5324 [ALC269_FIXUP_LIFEBOOK] = {
5325 .type = ALC_FIXUP_PINS,
5326 .v.pins = (const struct alc_pincfg[]) {
5327 { 0x1a, 0x2101103f }, /* dock line-out */
5328 { 0x1b, 0x23a11040 }, /* dock mic-in */
5329 { }
5330 },
5331 .chained = true,
5332 .chain_id = ALC269_FIXUP_QUANTA_MUTE
5333 },
Takashi Iwaia4297b52011-08-23 18:40:12 +02005334 [ALC269_FIXUP_AMIC] = {
5335 .type = ALC_FIXUP_PINS,
5336 .v.pins = (const struct alc_pincfg[]) {
5337 { 0x14, 0x99130110 }, /* speaker */
5338 { 0x15, 0x0121401f }, /* HP out */
5339 { 0x18, 0x01a19c20 }, /* mic */
5340 { 0x19, 0x99a3092f }, /* int-mic */
5341 { }
5342 },
5343 },
5344 [ALC269_FIXUP_DMIC] = {
5345 .type = ALC_FIXUP_PINS,
5346 .v.pins = (const struct alc_pincfg[]) {
5347 { 0x12, 0x99a3092f }, /* int-mic */
5348 { 0x14, 0x99130110 }, /* speaker */
5349 { 0x15, 0x0121401f }, /* HP out */
5350 { 0x18, 0x01a19c20 }, /* mic */
5351 { }
5352 },
5353 },
5354 [ALC269VB_FIXUP_AMIC] = {
5355 .type = ALC_FIXUP_PINS,
5356 .v.pins = (const struct alc_pincfg[]) {
5357 { 0x14, 0x99130110 }, /* speaker */
5358 { 0x18, 0x01a19c20 }, /* mic */
5359 { 0x19, 0x99a3092f }, /* int-mic */
5360 { 0x21, 0x0121401f }, /* HP out */
5361 { }
5362 },
5363 },
5364 [ALC269_FIXUP_DMIC] = {
5365 .type = ALC_FIXUP_PINS,
5366 .v.pins = (const struct alc_pincfg[]) {
5367 { 0x12, 0x99a3092f }, /* int-mic */
5368 { 0x14, 0x99130110 }, /* speaker */
5369 { 0x18, 0x01a19c20 }, /* mic */
5370 { 0x21, 0x0121401f }, /* HP out */
5371 { }
5372 },
5373 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005374};
5375
5376static const struct snd_pci_quirk alc269_fixup_tbl[] = {
Takashi Iwai017f2a12011-07-09 14:42:25 +02005377 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02005378 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
5379 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
5380 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
5381 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
5382 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005383 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
5384 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
5385 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
5386 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
5387 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
5388 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
Takashi Iwai24519912011-08-16 15:08:49 +02005389 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005390 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
5391 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
5392 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
5393 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
5394 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
Takashi Iwai24519912011-08-16 15:08:49 +02005395 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_QUANTA_MUTE),
Takashi Iwai017f2a12011-07-09 14:42:25 +02005396 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Lenovo Ideapd", ALC269_FIXUP_PCM_44K),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005397 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
Takashi Iwaia4297b52011-08-23 18:40:12 +02005398
5399#if 1
5400 /* Below is a quirk table taken from the old code.
5401 * Basically the device should work as is without the fixup table.
5402 * If BIOS doesn't give a proper info, enable the corresponding
5403 * fixup entry.
5404 */
5405 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
5406 ALC269_FIXUP_AMIC),
5407 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
5408 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS N63Jn", ALC269_FIXUP_AMIC),
5409 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
5410 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
5411 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
5412 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
5413 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
5414 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
5415 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
5416 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
5417 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
5418 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
5419 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
5420 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
5421 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
5422 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
5423 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
5424 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
5425 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
5426 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
5427 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
5428 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
5429 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
5430 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
5431 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
5432 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
5433 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
5434 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
5435 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
5436 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
5437 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
5438 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
5439 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
5440 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
5441 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
5442 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
5443 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
5444 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
5445 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
5446 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
5447#endif
5448 {}
5449};
5450
5451static const struct alc_model_fixup alc269_fixup_models[] = {
5452 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
5453 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
Takashi Iwai1d045db2011-07-07 18:23:21 +02005454 {}
5455};
5456
5457
5458static int alc269_fill_coef(struct hda_codec *codec)
5459{
5460 int val;
5461
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005462 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005463 alc_write_coef_idx(codec, 0xf, 0x960b);
5464 alc_write_coef_idx(codec, 0xe, 0x8817);
5465 }
5466
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005467 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005468 alc_write_coef_idx(codec, 0xf, 0x960b);
5469 alc_write_coef_idx(codec, 0xe, 0x8814);
5470 }
5471
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005472 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005473 val = alc_read_coef_idx(codec, 0x04);
5474 /* Power up output pin */
5475 alc_write_coef_idx(codec, 0x04, val | (1<<11));
5476 }
5477
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005478 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005479 val = alc_read_coef_idx(codec, 0xd);
5480 if ((val & 0x0c00) >> 10 != 0x1) {
5481 /* Capless ramp up clock control */
5482 alc_write_coef_idx(codec, 0xd, val | (1<<10));
5483 }
5484 val = alc_read_coef_idx(codec, 0x17);
5485 if ((val & 0x01c0) >> 6 != 0x4) {
5486 /* Class D power on reset */
5487 alc_write_coef_idx(codec, 0x17, val | (1<<7));
5488 }
5489 }
5490
5491 val = alc_read_coef_idx(codec, 0xd); /* Class D */
5492 alc_write_coef_idx(codec, 0xd, val | (1<<14));
5493
5494 val = alc_read_coef_idx(codec, 0x4); /* HP */
5495 alc_write_coef_idx(codec, 0x4, val | (1<<11));
5496
5497 return 0;
5498}
5499
5500/*
5501 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005502static int patch_alc269(struct hda_codec *codec)
5503{
5504 struct alc_spec *spec;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005505 int err = 0;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005506
5507 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5508 if (spec == NULL)
5509 return -ENOMEM;
5510
5511 codec->spec = spec;
5512
5513 spec->mixer_nid = 0x0b;
5514
5515 alc_auto_parse_customize_define(codec);
5516
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005517 err = alc_codec_rename_from_preset(codec);
5518 if (err < 0)
5519 goto error;
5520
Takashi Iwai1d045db2011-07-07 18:23:21 +02005521 if (codec->vendor_id == 0x10ec0269) {
5522 spec->codec_variant = ALC269_TYPE_ALC269VA;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005523 switch (alc_get_coef0(codec) & 0x00f0) {
5524 case 0x0010:
Takashi Iwai1d045db2011-07-07 18:23:21 +02005525 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005526 spec->cdefine.platform_type == 1)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005527 err = alc_codec_rename(codec, "ALC271X");
Takashi Iwai1d045db2011-07-07 18:23:21 +02005528 spec->codec_variant = ALC269_TYPE_ALC269VB;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005529 break;
5530 case 0x0020:
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005531 if (codec->bus->pci->subsystem_vendor == 0x17aa &&
5532 codec->bus->pci->subsystem_device == 0x21f3)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005533 err = alc_codec_rename(codec, "ALC3202");
Takashi Iwai1d045db2011-07-07 18:23:21 +02005534 spec->codec_variant = ALC269_TYPE_ALC269VC;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005535 break;
5536 default:
Takashi Iwai1d045db2011-07-07 18:23:21 +02005537 alc_fix_pll_init(codec, 0x20, 0x04, 15);
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005538 }
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005539 if (err < 0)
5540 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005541 alc269_fill_coef(codec);
5542 }
5543
Takashi Iwaia4297b52011-08-23 18:40:12 +02005544 alc_pick_fixup(codec, alc269_fixup_models,
5545 alc269_fixup_tbl, alc269_fixups);
5546 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005547
Takashi Iwaia4297b52011-08-23 18:40:12 +02005548 /* automatic parse from the BIOS config */
5549 err = alc269_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005550 if (err < 0)
5551 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005552
Takashi Iwai60a6a842011-07-27 14:01:24 +02005553 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005554 alc_auto_fill_adc_caps(codec);
5555 alc_rebuild_imux_for_auto_mic(codec);
5556 alc_remove_invalid_adc_nids(codec);
5557 }
5558
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005559 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005560 set_capture_mixer(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005561
5562 if (!spec->no_analog && has_cdefine_beep(codec)) {
5563 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005564 if (err < 0)
5565 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005566 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005567 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005568
5569 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5570
5571 spec->vmaster_nid = 0x02;
5572
5573 codec->patch_ops = alc_patch_ops;
Takashi Iwai2a439522011-07-26 09:52:50 +02005574#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02005575 codec->patch_ops.resume = alc269_resume;
5576#endif
Takashi Iwaia4297b52011-08-23 18:40:12 +02005577 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005578 spec->shutup = alc269_shutup;
5579
5580 alc_init_jacks(codec);
5581#ifdef CONFIG_SND_HDA_POWER_SAVE
5582 if (!spec->loopback.amplist)
5583 spec->loopback.amplist = alc269_loopbacks;
5584 if (alc269_mic2_for_mute_led(codec))
5585 codec->patch_ops.check_power_status = alc269_mic2_mute_check_ps;
5586#endif
5587
5588 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005589
5590 error:
5591 alc_free(codec);
5592 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005593}
5594
5595/*
5596 * ALC861
5597 */
5598
Takashi Iwai1d045db2011-07-07 18:23:21 +02005599static int alc861_parse_auto_config(struct hda_codec *codec)
5600{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005601 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005602 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
5603 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005604}
5605
Takashi Iwai1d045db2011-07-07 18:23:21 +02005606#ifdef CONFIG_SND_HDA_POWER_SAVE
5607static const struct hda_amp_list alc861_loopbacks[] = {
5608 { 0x15, HDA_INPUT, 0 },
5609 { 0x15, HDA_INPUT, 1 },
5610 { 0x15, HDA_INPUT, 2 },
5611 { 0x15, HDA_INPUT, 3 },
5612 { } /* end */
5613};
5614#endif
5615
5616
5617/* Pin config fixes */
5618enum {
5619 PINFIX_FSC_AMILO_PI1505,
5620};
5621
5622static const struct alc_fixup alc861_fixups[] = {
5623 [PINFIX_FSC_AMILO_PI1505] = {
5624 .type = ALC_FIXUP_PINS,
5625 .v.pins = (const struct alc_pincfg[]) {
5626 { 0x0b, 0x0221101f }, /* HP */
5627 { 0x0f, 0x90170310 }, /* speaker */
5628 { }
5629 }
5630 },
5631};
5632
5633static const struct snd_pci_quirk alc861_fixup_tbl[] = {
5634 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", PINFIX_FSC_AMILO_PI1505),
5635 {}
5636};
5637
5638/*
5639 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005640static int patch_alc861(struct hda_codec *codec)
5641{
5642 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005643 int err;
5644
5645 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5646 if (spec == NULL)
5647 return -ENOMEM;
5648
5649 codec->spec = spec;
5650
5651 spec->mixer_nid = 0x15;
5652
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005653 alc_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
5654 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005655
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005656 /* automatic parse from the BIOS config */
5657 err = alc861_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005658 if (err < 0)
5659 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005660
Takashi Iwai60a6a842011-07-27 14:01:24 +02005661 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005662 alc_auto_fill_adc_caps(codec);
5663 alc_rebuild_imux_for_auto_mic(codec);
5664 alc_remove_invalid_adc_nids(codec);
5665 }
5666
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005667 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwai1d045db2011-07-07 18:23:21 +02005668 set_capture_mixer(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005669
5670 if (!spec->no_analog) {
5671 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005672 if (err < 0)
5673 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005674 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
5675 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005676
5677 spec->vmaster_nid = 0x03;
5678
5679 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5680
5681 codec->patch_ops = alc_patch_ops;
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005682 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005683#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005684 spec->power_hook = alc_power_eapd;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005685 if (!spec->loopback.amplist)
5686 spec->loopback.amplist = alc861_loopbacks;
5687#endif
5688
5689 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005690
5691 error:
5692 alc_free(codec);
5693 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005694}
5695
5696/*
5697 * ALC861-VD support
5698 *
5699 * Based on ALC882
5700 *
5701 * In addition, an independent DAC
5702 */
5703#ifdef CONFIG_SND_HDA_POWER_SAVE
5704#define alc861vd_loopbacks alc880_loopbacks
5705#endif
5706
Takashi Iwai1d045db2011-07-07 18:23:21 +02005707static int alc861vd_parse_auto_config(struct hda_codec *codec)
5708{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005709 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005710 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5711 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005712}
5713
Takashi Iwai1d045db2011-07-07 18:23:21 +02005714enum {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005715 ALC660VD_FIX_ASUS_GPIO1,
5716 ALC861VD_FIX_DALLAS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005717};
5718
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005719/* exclude VREF80 */
5720static void alc861vd_fixup_dallas(struct hda_codec *codec,
5721 const struct alc_fixup *fix, int action)
5722{
5723 if (action == ALC_FIXUP_ACT_PRE_PROBE) {
5724 snd_hda_override_pin_caps(codec, 0x18, 0x00001714);
5725 snd_hda_override_pin_caps(codec, 0x19, 0x0000171c);
5726 }
5727}
5728
Takashi Iwai1d045db2011-07-07 18:23:21 +02005729static const struct alc_fixup alc861vd_fixups[] = {
5730 [ALC660VD_FIX_ASUS_GPIO1] = {
5731 .type = ALC_FIXUP_VERBS,
5732 .v.verbs = (const struct hda_verb[]) {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005733 /* reset GPIO1 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005734 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5735 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
5736 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
5737 { }
5738 }
5739 },
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005740 [ALC861VD_FIX_DALLAS] = {
5741 .type = ALC_FIXUP_FUNC,
5742 .v.func = alc861vd_fixup_dallas,
5743 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005744};
5745
5746static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005747 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005748 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02005749 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005750 {}
5751};
5752
5753static const struct hda_verb alc660vd_eapd_verbs[] = {
5754 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
5755 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
5756 { }
5757};
5758
5759/*
5760 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005761static int patch_alc861vd(struct hda_codec *codec)
5762{
5763 struct alc_spec *spec;
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005764 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005765
5766 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5767 if (spec == NULL)
5768 return -ENOMEM;
5769
5770 codec->spec = spec;
5771
5772 spec->mixer_nid = 0x0b;
5773
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005774 alc_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
5775 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005776
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005777 /* automatic parse from the BIOS config */
5778 err = alc861vd_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005779 if (err < 0)
5780 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005781
Takashi Iwai1d045db2011-07-07 18:23:21 +02005782 if (codec->vendor_id == 0x10ec0660) {
5783 /* always turn on EAPD */
5784 add_verb(spec, alc660vd_eapd_verbs);
5785 }
5786
Takashi Iwai60a6a842011-07-27 14:01:24 +02005787 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005788 alc_auto_fill_adc_caps(codec);
5789 alc_rebuild_imux_for_auto_mic(codec);
5790 alc_remove_invalid_adc_nids(codec);
5791 }
5792
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005793 if (!spec->no_analog && !spec->cap_mixer)
5794 set_capture_mixer(codec);
5795
5796 if (!spec->no_analog) {
5797 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005798 if (err < 0)
5799 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005800 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5801 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005802
5803 spec->vmaster_nid = 0x02;
5804
5805 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5806
5807 codec->patch_ops = alc_patch_ops;
5808
Takashi Iwaicb4e4822011-08-23 17:34:25 +02005809 spec->init_hook = alc_auto_init_std;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005810 spec->shutup = alc_eapd_shutup;
5811#ifdef CONFIG_SND_HDA_POWER_SAVE
5812 if (!spec->loopback.amplist)
5813 spec->loopback.amplist = alc861vd_loopbacks;
5814#endif
5815
5816 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005817
5818 error:
5819 alc_free(codec);
5820 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005821}
5822
5823/*
5824 * ALC662 support
5825 *
5826 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
5827 * configuration. Each pin widget can choose any input DACs and a mixer.
5828 * Each ADC is connected from a mixer of all inputs. This makes possible
5829 * 6-channel independent captures.
5830 *
5831 * In addition, an independent DAC for the multi-playback (not used in this
5832 * driver yet).
5833 */
5834#ifdef CONFIG_SND_HDA_POWER_SAVE
5835#define alc662_loopbacks alc880_loopbacks
5836#endif
5837
5838/*
5839 * BIOS auto configuration
5840 */
5841
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005842static int alc662_parse_auto_config(struct hda_codec *codec)
5843{
Takashi Iwai4c6d72d2011-05-02 11:30:18 +02005844 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005845 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
5846 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5847 const hda_nid_t *ssids;
Takashi Iwaiee979a142008-09-02 15:42:20 +02005848
Kailang Yang6227cdc2010-02-25 08:36:52 +01005849 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
5850 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005851 ssids = alc663_ssids;
Kailang Yang6227cdc2010-02-25 08:36:52 +01005852 else
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005853 ssids = alc662_ssids;
5854 return alc_parse_auto_config(codec, alc662_ignore, ssids);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005855}
5856
Todd Broch6be79482010-12-07 16:51:05 -08005857static void alc272_fixup_mario(struct hda_codec *codec,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005858 const struct alc_fixup *fix, int action)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01005859{
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005860 if (action != ALC_FIXUP_ACT_PROBE)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01005861 return;
Todd Broch6be79482010-12-07 16:51:05 -08005862 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
5863 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
5864 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
5865 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5866 (0 << AC_AMPCAP_MUTE_SHIFT)))
5867 printk(KERN_WARNING
5868 "hda_codec: failed to override amp caps for NID 0x2\n");
5869}
5870
David Henningsson6cb3b702010-09-09 08:51:44 +02005871enum {
Daniel T Chen2df03512010-10-10 22:39:28 -04005872 ALC662_FIXUP_ASPIRE,
David Henningsson6cb3b702010-09-09 08:51:44 +02005873 ALC662_FIXUP_IDEAPAD,
Todd Broch6be79482010-12-07 16:51:05 -08005874 ALC272_FIXUP_MARIO,
Anisse Astierd2ebd472011-01-20 12:36:21 +01005875 ALC662_FIXUP_CZC_P10T,
David Henningsson94024cd2011-04-29 14:10:55 +02005876 ALC662_FIXUP_SKU_IGNORE,
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02005877 ALC662_FIXUP_HP_RP5800,
Takashi Iwai53c334a2011-08-23 18:27:14 +02005878 ALC662_FIXUP_ASUS_MODE1,
5879 ALC662_FIXUP_ASUS_MODE2,
5880 ALC662_FIXUP_ASUS_MODE3,
5881 ALC662_FIXUP_ASUS_MODE4,
5882 ALC662_FIXUP_ASUS_MODE5,
5883 ALC662_FIXUP_ASUS_MODE6,
5884 ALC662_FIXUP_ASUS_MODE7,
5885 ALC662_FIXUP_ASUS_MODE8,
David Henningsson6cb3b702010-09-09 08:51:44 +02005886};
5887
5888static const struct alc_fixup alc662_fixups[] = {
Daniel T Chen2df03512010-10-10 22:39:28 -04005889 [ALC662_FIXUP_ASPIRE] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005890 .type = ALC_FIXUP_PINS,
5891 .v.pins = (const struct alc_pincfg[]) {
Daniel T Chen2df03512010-10-10 22:39:28 -04005892 { 0x15, 0x99130112 }, /* subwoofer */
5893 { }
5894 }
5895 },
David Henningsson6cb3b702010-09-09 08:51:44 +02005896 [ALC662_FIXUP_IDEAPAD] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005897 .type = ALC_FIXUP_PINS,
5898 .v.pins = (const struct alc_pincfg[]) {
David Henningsson6cb3b702010-09-09 08:51:44 +02005899 { 0x17, 0x99130112 }, /* subwoofer */
5900 { }
5901 }
5902 },
Todd Broch6be79482010-12-07 16:51:05 -08005903 [ALC272_FIXUP_MARIO] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01005904 .type = ALC_FIXUP_FUNC,
5905 .v.func = alc272_fixup_mario,
Anisse Astierd2ebd472011-01-20 12:36:21 +01005906 },
5907 [ALC662_FIXUP_CZC_P10T] = {
5908 .type = ALC_FIXUP_VERBS,
5909 .v.verbs = (const struct hda_verb[]) {
5910 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5911 {}
5912 }
5913 },
David Henningsson94024cd2011-04-29 14:10:55 +02005914 [ALC662_FIXUP_SKU_IGNORE] = {
5915 .type = ALC_FIXUP_SKU,
5916 .v.sku = ALC_FIXUP_SKU_IGNORE,
Takashi Iwaic6b35872011-03-28 12:05:31 +02005917 },
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02005918 [ALC662_FIXUP_HP_RP5800] = {
5919 .type = ALC_FIXUP_PINS,
5920 .v.pins = (const struct alc_pincfg[]) {
5921 { 0x14, 0x0221201f }, /* HP out */
5922 { }
5923 },
5924 .chained = true,
5925 .chain_id = ALC662_FIXUP_SKU_IGNORE
5926 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02005927 [ALC662_FIXUP_ASUS_MODE1] = {
5928 .type = ALC_FIXUP_PINS,
5929 .v.pins = (const struct alc_pincfg[]) {
5930 { 0x14, 0x99130110 }, /* speaker */
5931 { 0x18, 0x01a19c20 }, /* mic */
5932 { 0x19, 0x99a3092f }, /* int-mic */
5933 { 0x21, 0x0121401f }, /* HP out */
5934 { }
5935 },
5936 .chained = true,
5937 .chain_id = ALC662_FIXUP_SKU_IGNORE
5938 },
5939 [ALC662_FIXUP_ASUS_MODE2] = {
Takashi Iwai2996bdb2011-08-18 16:02:24 +02005940 .type = ALC_FIXUP_PINS,
5941 .v.pins = (const struct alc_pincfg[]) {
5942 { 0x14, 0x99130110 }, /* speaker */
5943 { 0x18, 0x01a19820 }, /* mic */
5944 { 0x19, 0x99a3092f }, /* int-mic */
5945 { 0x1b, 0x0121401f }, /* HP out */
5946 { }
5947 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02005948 .chained = true,
5949 .chain_id = ALC662_FIXUP_SKU_IGNORE
5950 },
5951 [ALC662_FIXUP_ASUS_MODE3] = {
5952 .type = ALC_FIXUP_PINS,
5953 .v.pins = (const struct alc_pincfg[]) {
5954 { 0x14, 0x99130110 }, /* speaker */
5955 { 0x15, 0x0121441f }, /* HP */
5956 { 0x18, 0x01a19840 }, /* mic */
5957 { 0x19, 0x99a3094f }, /* int-mic */
5958 { 0x21, 0x01211420 }, /* HP2 */
5959 { }
5960 },
5961 .chained = true,
5962 .chain_id = ALC662_FIXUP_SKU_IGNORE
5963 },
5964 [ALC662_FIXUP_ASUS_MODE4] = {
5965 .type = ALC_FIXUP_PINS,
5966 .v.pins = (const struct alc_pincfg[]) {
5967 { 0x14, 0x99130110 }, /* speaker */
5968 { 0x16, 0x99130111 }, /* speaker */
5969 { 0x18, 0x01a19840 }, /* mic */
5970 { 0x19, 0x99a3094f }, /* int-mic */
5971 { 0x21, 0x0121441f }, /* HP */
5972 { }
5973 },
5974 .chained = true,
5975 .chain_id = ALC662_FIXUP_SKU_IGNORE
5976 },
5977 [ALC662_FIXUP_ASUS_MODE5] = {
5978 .type = ALC_FIXUP_PINS,
5979 .v.pins = (const struct alc_pincfg[]) {
5980 { 0x14, 0x99130110 }, /* speaker */
5981 { 0x15, 0x0121441f }, /* HP */
5982 { 0x16, 0x99130111 }, /* speaker */
5983 { 0x18, 0x01a19840 }, /* mic */
5984 { 0x19, 0x99a3094f }, /* int-mic */
5985 { }
5986 },
5987 .chained = true,
5988 .chain_id = ALC662_FIXUP_SKU_IGNORE
5989 },
5990 [ALC662_FIXUP_ASUS_MODE6] = {
5991 .type = ALC_FIXUP_PINS,
5992 .v.pins = (const struct alc_pincfg[]) {
5993 { 0x14, 0x99130110 }, /* speaker */
5994 { 0x15, 0x01211420 }, /* HP2 */
5995 { 0x18, 0x01a19840 }, /* mic */
5996 { 0x19, 0x99a3094f }, /* int-mic */
5997 { 0x1b, 0x0121441f }, /* HP */
5998 { }
5999 },
6000 .chained = true,
6001 .chain_id = ALC662_FIXUP_SKU_IGNORE
6002 },
6003 [ALC662_FIXUP_ASUS_MODE7] = {
6004 .type = ALC_FIXUP_PINS,
6005 .v.pins = (const struct alc_pincfg[]) {
6006 { 0x14, 0x99130110 }, /* speaker */
6007 { 0x17, 0x99130111 }, /* speaker */
6008 { 0x18, 0x01a19840 }, /* mic */
6009 { 0x19, 0x99a3094f }, /* int-mic */
6010 { 0x1b, 0x01214020 }, /* HP */
6011 { 0x21, 0x0121401f }, /* HP */
6012 { }
6013 },
6014 .chained = true,
6015 .chain_id = ALC662_FIXUP_SKU_IGNORE
6016 },
6017 [ALC662_FIXUP_ASUS_MODE8] = {
6018 .type = ALC_FIXUP_PINS,
6019 .v.pins = (const struct alc_pincfg[]) {
6020 { 0x14, 0x99130110 }, /* speaker */
6021 { 0x12, 0x99a30970 }, /* int-mic */
6022 { 0x15, 0x01214020 }, /* HP */
6023 { 0x17, 0x99130111 }, /* speaker */
6024 { 0x18, 0x01a19840 }, /* mic */
6025 { 0x21, 0x0121401f }, /* HP */
6026 { }
6027 },
6028 .chained = true,
6029 .chain_id = ALC662_FIXUP_SKU_IGNORE
Takashi Iwai2996bdb2011-08-18 16:02:24 +02006030 },
David Henningsson6cb3b702010-09-09 08:51:44 +02006031};
6032
Takashi Iwaia9111322011-05-02 11:30:18 +02006033static const struct snd_pci_quirk alc662_fixup_tbl[] = {
Takashi Iwai53c334a2011-08-23 18:27:14 +02006034 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
David Henningssona6c47a82011-02-10 15:39:19 +01006035 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
David Henningsson94024cd2011-04-29 14:10:55 +02006036 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
Daniel T Chen2df03512010-10-10 22:39:28 -04006037 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02006038 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
Takashi Iwai53c334a2011-08-23 18:27:14 +02006039 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
Daniel T Chena0e90ac2010-11-20 10:20:35 -05006040 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
Valentine Sinitsynd4118582010-10-01 22:24:08 +06006041 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
David Henningsson6cb3b702010-09-09 08:51:44 +02006042 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
Anisse Astierd2ebd472011-01-20 12:36:21 +01006043 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
Takashi Iwai53c334a2011-08-23 18:27:14 +02006044
6045#if 0
6046 /* Below is a quirk table taken from the old code.
6047 * Basically the device should work as is without the fixup table.
6048 * If BIOS doesn't give a proper info, enable the corresponding
6049 * fixup entry.
6050 */
6051 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
6052 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
6053 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
6054 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
6055 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6056 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6057 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6058 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
6059 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
6060 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6061 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
6062 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
6063 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
6064 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
6065 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
6066 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6067 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
6068 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
6069 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6070 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6071 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6072 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6073 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
6074 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
6075 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
6076 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6077 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
6078 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6079 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6080 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
6081 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6082 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6083 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
6084 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
6085 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
6086 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
6087 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
6088 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
6089 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
6090 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6091 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
6092 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
6093 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6094 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
6095 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
6096 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
6097 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
6098 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
6099 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6100 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
6101#endif
David Henningsson6cb3b702010-09-09 08:51:44 +02006102 {}
6103};
6104
Todd Broch6be79482010-12-07 16:51:05 -08006105static const struct alc_model_fixup alc662_fixup_models[] = {
6106 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
Takashi Iwai53c334a2011-08-23 18:27:14 +02006107 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
6108 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
6109 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
6110 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
6111 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
6112 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
6113 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
6114 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
Todd Broch6be79482010-12-07 16:51:05 -08006115 {}
6116};
David Henningsson6cb3b702010-09-09 08:51:44 +02006117
6118
Takashi Iwai1d045db2011-07-07 18:23:21 +02006119/*
6120 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006121static int patch_alc662(struct hda_codec *codec)
6122{
6123 struct alc_spec *spec;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02006124 int err = 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006125
6126 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6127 if (!spec)
6128 return -ENOMEM;
6129
6130 codec->spec = spec;
6131
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02006132 spec->mixer_nid = 0x0b;
6133
Takashi Iwai53c334a2011-08-23 18:27:14 +02006134 /* handle multiple HPs as is */
6135 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
6136
Kailang Yangda00c242010-03-19 11:23:45 +01006137 alc_auto_parse_customize_define(codec);
6138
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02006139 alc_fix_pll_init(codec, 0x20, 0x04, 15);
6140
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006141 err = alc_codec_rename_from_preset(codec);
6142 if (err < 0)
6143 goto error;
6144
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006145 if ((alc_get_coef0(codec) & (1 << 14)) &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006146 codec->bus->pci->subsystem_vendor == 0x1025 &&
6147 spec->cdefine.platform_type == 1) {
6148 if (alc_codec_rename(codec, "ALC272X") < 0)
6149 goto error;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02006150 }
Kailang Yang274693f2009-12-03 10:07:50 +01006151
Takashi Iwaib9c51062011-08-24 18:08:07 +02006152 alc_pick_fixup(codec, alc662_fixup_models,
6153 alc662_fixup_tbl, alc662_fixups);
6154 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
6155 /* automatic parse from the BIOS config */
6156 err = alc662_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006157 if (err < 0)
6158 goto error;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006159
Takashi Iwai60a6a842011-07-27 14:01:24 +02006160 if (!spec->no_analog && !spec->adc_nids) {
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02006161 alc_auto_fill_adc_caps(codec);
Takashi Iwai21268962011-07-07 15:01:13 +02006162 alc_rebuild_imux_for_auto_mic(codec);
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02006163 alc_remove_invalid_adc_nids(codec);
Takashi Iwaidd704692009-08-11 08:45:11 +02006164 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006165
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006166 if (!spec->no_analog && !spec->cap_mixer)
Takashi Iwaib59bdf32009-08-11 09:47:30 +02006167 set_capture_mixer(codec);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01006168
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006169 if (!spec->no_analog && has_cdefine_beep(codec)) {
6170 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006171 if (err < 0)
6172 goto error;
Kailang Yangda00c242010-03-19 11:23:45 +01006173 switch (codec->vendor_id) {
6174 case 0x10ec0662:
6175 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
6176 break;
6177 case 0x10ec0272:
6178 case 0x10ec0663:
6179 case 0x10ec0665:
6180 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
6181 break;
6182 case 0x10ec0273:
6183 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
6184 break;
6185 }
Kailang Yangcec27c82010-02-04 14:18:18 +01006186 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01006187 spec->vmaster_nid = 0x02;
6188
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006189 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6190
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006191 codec->patch_ops = alc_patch_ops;
Takashi Iwaib9c51062011-08-24 18:08:07 +02006192 spec->init_hook = alc_auto_init_std;
Takashi Iwai1c7161532011-04-07 10:37:16 +02006193 spec->shutup = alc_eapd_shutup;
David Henningsson6cb3b702010-09-09 08:51:44 +02006194
Kailang Yangbf1b0222010-10-21 08:49:56 +02006195 alc_init_jacks(codec);
6196
Takashi Iwaicb53c622007-08-10 17:21:45 +02006197#ifdef CONFIG_SND_HDA_POWER_SAVE
6198 if (!spec->loopback.amplist)
6199 spec->loopback.amplist = alc662_loopbacks;
6200#endif
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006201
6202 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006203
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006204 error:
6205 alc_free(codec);
6206 return err;
Kailang Yangb478b992011-05-18 11:51:15 +02006207}
6208
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006209/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006210 * ALC680 support
6211 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006212
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006213static int alc680_parse_auto_config(struct hda_codec *codec)
6214{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006215 return alc_parse_auto_config(codec, NULL, NULL);
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006216}
6217
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006218/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006219 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006220static int patch_alc680(struct hda_codec *codec)
6221{
6222 struct alc_spec *spec;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006223 int err;
6224
6225 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6226 if (spec == NULL)
6227 return -ENOMEM;
6228
6229 codec->spec = spec;
6230
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02006231 /* ALC680 has no aa-loopback mixer */
6232
Takashi Iwai1ebec5f2011-08-15 13:21:48 +02006233 /* automatic parse from the BIOS config */
6234 err = alc680_parse_auto_config(codec);
6235 if (err < 0) {
6236 alc_free(codec);
6237 return err;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006238 }
6239
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006240 if (!spec->no_analog && !spec->cap_mixer)
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006241 set_capture_mixer(codec);
6242
6243 spec->vmaster_nid = 0x02;
6244
6245 codec->patch_ops = alc_patch_ops;
Takashi Iwai1ebec5f2011-08-15 13:21:48 +02006246 spec->init_hook = alc_auto_init_std;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006247
6248 return 0;
6249}
6250
6251/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252 * patch entries
6253 */
Takashi Iwaia9111322011-05-02 11:30:18 +02006254static const struct hda_codec_preset snd_hda_preset_realtek[] = {
Kailang Yang296f0332011-05-18 11:52:36 +02006255 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
Kailang Yangdf694da2005-12-05 19:42:22 +01006257 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
Kailang Yangf6a92242007-12-13 16:52:54 +01006258 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
Kailang Yanga361d842007-06-05 12:30:55 +02006259 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
Kailang Yangf6a92242007-12-13 16:52:54 +01006260 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01006261 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
Kailang Yang01afd412008-10-15 11:22:09 +02006262 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01006263 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
Kailang Yang296f0332011-05-18 11:52:36 +02006264 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01006265 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006266 .patch = patch_alc861 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01006267 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
6268 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
6269 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006270 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
Takashi Iwai4953550a2009-06-30 15:28:30 +02006271 .patch = patch_alc882 },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006272 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
6273 .patch = patch_alc662 },
David Henningssoncc667a72011-10-18 14:07:51 +02006274 { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
6275 .patch = patch_alc662 },
Kailang Yang6dda9f42008-05-27 12:05:31 +02006276 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
Kailang Yangcec27c82010-02-04 14:18:18 +01006277 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
Kailang Yang6227cdc2010-02-25 08:36:52 +01006278 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
Kailang Yangd1eb57f2010-06-23 16:25:26 +02006279 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01006280 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02006282 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
Clive Messer669faba2008-09-30 15:49:13 +02006283 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02006284 .patch = patch_alc882 },
Takashi Iwaicb308f92008-04-16 14:13:29 +02006285 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02006286 .patch = patch_alc882 },
Kailang Yangdf694da2005-12-05 19:42:22 +01006287 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006288 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
Kailang Yang44426082008-10-15 11:18:05 +02006289 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
Takashi Iwai4953550a2009-06-30 15:28:30 +02006290 .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006291 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02006292 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
Kailang Yang274693f2009-12-03 10:07:50 +01006293 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006294 { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295 {} /* terminator */
6296};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01006297
6298MODULE_ALIAS("snd-hda-codec-id:10ec*");
6299
6300MODULE_LICENSE("GPL");
6301MODULE_DESCRIPTION("Realtek HD-audio codec");
6302
6303static struct hda_codec_preset_list realtek_list = {
6304 .preset = snd_hda_preset_realtek,
6305 .owner = THIS_MODULE,
6306};
6307
6308static int __init patch_realtek_init(void)
6309{
6310 return snd_hda_add_codec_preset(&realtek_list);
6311}
6312
6313static void __exit patch_realtek_exit(void)
6314{
6315 snd_hda_delete_codec_preset(&realtek_list);
6316}
6317
6318module_init(patch_realtek_init)
6319module_exit(patch_realtek_exit)