blob: f210ca7575b25df9d090eeb607a762454bb4d88f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
Takashi Iwai1d045db2011-07-07 18:23:21 +02004 * HD audio interface patch for Realtek ALC codecs
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Kailang Yangdf694da2005-12-05 19:42:22 +01006 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7 * PeiSen Hou <pshou@realtek.com.tw>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Takashi Iwai <tiwai@suse.de>
Jonathan Woithe409a3e92012-03-27 13:01:01 +10309 * Jonathan Woithe <jwoithe@just42.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This driver is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This driver is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/delay.h>
28#include <linux/slab.h>
29#include <linux/pci.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040030#include <linux/module.h>
Takashi Iwaiab16c6d2012-11-29 09:56:50 +010031#include <linux/sort.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <sound/core.h>
Kailang Yang9ad0e492010-09-14 23:22:00 +020033#include <sound/jack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "hda_codec.h"
35#include "hda_local.h"
Takashi Iwai23d30f22012-05-07 17:17:32 +020036#include "hda_auto_parser.h"
Kusanagi Kouichi680cd532009-02-05 00:00:58 +090037#include "hda_beep.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020038#include "hda_jack.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Takashi Iwai1d045db2011-07-07 18:23:21 +020040/* unsol event tags */
41#define ALC_FRONT_EVENT 0x01
42#define ALC_DCVOL_EVENT 0x02
43#define ALC_HP_EVENT 0x04
44#define ALC_MIC_EVENT 0x08
Takashi Iwaid4a86d82010-06-23 17:51:26 +020045
Kailang Yangdf694da2005-12-05 19:42:22 +010046/* for GPIO Poll */
47#define GPIO_MASK 0x03
48
Takashi Iwai4a79ba32009-04-22 16:31:35 +020049/* extra amp-initialization sequence types */
50enum {
51 ALC_INIT_NONE,
52 ALC_INIT_DEFAULT,
53 ALC_INIT_GPIO1,
54 ALC_INIT_GPIO2,
55 ALC_INIT_GPIO3,
56};
57
Kailang Yangda00c242010-03-19 11:23:45 +010058struct alc_customize_define {
59 unsigned int sku_cfg;
60 unsigned char port_connectivity;
61 unsigned char check_sum;
62 unsigned char customization;
63 unsigned char external_amp;
64 unsigned int enable_pcbeep:1;
65 unsigned int platform_type:1;
66 unsigned int swap:1;
67 unsigned int override:1;
David Henningsson90622912010-10-14 14:50:18 +020068 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
Kailang Yangda00c242010-03-19 11:23:45 +010069};
70
Takashi Iwaice764ab2011-04-27 16:35:23 +020071struct alc_multi_io {
72 hda_nid_t pin; /* multi-io widget pin NID */
73 hda_nid_t dac; /* DAC to be connected */
74 unsigned int ctl_in; /* cached input-pin control value */
75};
76
Takashi Iwai23d30f22012-05-07 17:17:32 +020077/* make compatible with old code */
78#define alc_apply_pincfgs snd_hda_apply_pincfgs
79#define alc_apply_fixup snd_hda_apply_fixup
80#define alc_pick_fixup snd_hda_pick_fixup
81#define alc_fixup hda_fixup
82#define alc_pincfg hda_pintbl
83#define alc_model_fixup hda_model_fixup
84
85#define ALC_FIXUP_PINS HDA_FIXUP_PINS
86#define ALC_FIXUP_VERBS HDA_FIXUP_VERBS
87#define ALC_FIXUP_FUNC HDA_FIXUP_FUNC
88
89#define ALC_FIXUP_ACT_PRE_PROBE HDA_FIXUP_ACT_PRE_PROBE
90#define ALC_FIXUP_ACT_PROBE HDA_FIXUP_ACT_PROBE
91#define ALC_FIXUP_ACT_INIT HDA_FIXUP_ACT_INIT
92#define ALC_FIXUP_ACT_BUILD HDA_FIXUP_ACT_BUILD
93
Takashi Iwaiab16c6d2012-11-29 09:56:50 +010094#define MAX_AUTO_MIC_PINS 3
95
96struct alc_automic_entry {
97 hda_nid_t pin; /* pin */
98 int idx; /* imux index, -1 = invalid */
99 unsigned int attr; /* pin attribute (INPUT_PIN_ATTR_*) */
100};
Takashi Iwai23d30f22012-05-07 17:17:32 +0200101
Takashi Iwai30dcd3b2012-12-06 15:45:38 +0100102#define MAX_NID_PATH_DEPTH 5
103
Takashi Iwai8dd48672012-12-14 18:19:04 +0100104enum {
105 NID_PATH_VOL_CTL,
106 NID_PATH_MUTE_CTL,
107 NID_PATH_BOOST_CTL,
108 NID_PATH_NUM_CTLS
109};
110
Takashi Iwai36f0fd52012-12-12 17:25:00 +0100111/* Widget connection path
112 *
113 * For output, stored in the order of DAC -> ... -> pin,
114 * for input, pin -> ... -> ADC.
115 *
Takashi Iwai95e960c2012-12-10 17:27:57 +0100116 * idx[i] contains the source index number to select on of the widget path[i];
117 * e.g. idx[1] is the index of the DAC (path[0]) selected by path[1] widget
Takashi Iwai30dcd3b2012-12-06 15:45:38 +0100118 * multi[] indicates whether it's a selector widget with multi-connectors
119 * (i.e. the connection selection is mandatory)
120 * vol_ctl and mute_ctl contains the NIDs for the assigned mixers
121 */
122struct nid_path {
123 int depth;
124 hda_nid_t path[MAX_NID_PATH_DEPTH];
125 unsigned char idx[MAX_NID_PATH_DEPTH];
126 unsigned char multi[MAX_NID_PATH_DEPTH];
Takashi Iwai8dd48672012-12-14 18:19:04 +0100127 unsigned int ctls[NID_PATH_NUM_CTLS]; /* NID_PATH_XXX_CTL */
Takashi Iwai130e5f02012-12-14 16:09:29 +0100128 bool active;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +0100129};
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131struct alc_spec {
132 /* codec parameterization */
Takashi Iwaia9111322011-05-02 11:30:18 +0200133 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 unsigned int num_mixers;
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100135 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Takashi Iwaiaa563af2009-07-31 10:05:11 +0200137 char stream_name_analog[32]; /* analog PCM stream */
Takashi Iwaia9111322011-05-02 11:30:18 +0200138 const struct hda_pcm_stream *stream_analog_playback;
139 const struct hda_pcm_stream *stream_analog_capture;
140 const struct hda_pcm_stream *stream_analog_alt_playback;
141 const struct hda_pcm_stream *stream_analog_alt_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Takashi Iwaiaa563af2009-07-31 10:05:11 +0200143 char stream_name_digital[32]; /* digital PCM stream */
Takashi Iwaia9111322011-05-02 11:30:18 +0200144 const struct hda_pcm_stream *stream_digital_playback;
145 const struct hda_pcm_stream *stream_digital_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 /* playback */
Takashi Iwai16ded522005-06-10 19:58:24 +0200148 struct hda_multi_out multiout; /* playback set-up
149 * max_channels, dacs must be set
150 * dig_out_nid and hp_nid are optional
151 */
Takashi Iwai63300792008-01-24 15:31:36 +0100152 hda_nid_t alt_dac_nid;
Takashi Iwai6a05ac42009-02-13 11:19:09 +0100153 hda_nid_t slave_dig_outs[3]; /* optional - for auto-parsing */
Takashi Iwai8c441982009-01-20 18:30:20 +0100154 int dig_out_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 /* capture */
157 unsigned int num_adc_nids;
Takashi Iwai27d31532012-12-18 08:57:05 +0100158 hda_nid_t adc_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwai16ded522005-06-10 19:58:24 +0200159 hda_nid_t dig_in_nid; /* digital-in NID; optional */
Takashi Iwai1f0f4b82011-06-27 10:52:59 +0200160 hda_nid_t mixer_nid; /* analog-mixer NID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Takashi Iwai840b64c2010-07-13 22:49:01 +0200162 /* capture setup for dynamic dual-adc switch */
Takashi Iwai840b64c2010-07-13 22:49:01 +0200163 hda_nid_t cur_adc;
164 unsigned int cur_adc_stream_tag;
165 unsigned int cur_adc_format;
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 /* capture source */
Takashi Iwai27d31532012-12-18 08:57:05 +0100168 struct hda_input_mux input_mux;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 unsigned int cur_mux[3];
170
171 /* channel model */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100172 const struct hda_channel_mode *channel_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 int num_channel_mode;
Takashi Iwaib6adb572012-12-03 10:30:58 +0100174 int const_channel_count; /* min. channel count (for speakers) */
175 int ext_channel_count; /* current channel count for multi-io */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 /* PCM information */
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100178 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
Takashi Iwai41e41f12005-06-08 14:48:49 +0200179
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200180 /* dynamic controls, init_verbs and input_mux */
181 struct auto_pin_cfg autocfg;
Kailang Yangda00c242010-03-19 11:23:45 +0100182 struct alc_customize_define cdefine;
Takashi Iwai603c4012008-07-30 15:01:44 +0200183 struct snd_array kctls;
Takashi Iwai41923e42007-10-22 17:20:10 +0200184 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwai21268962011-07-07 15:01:13 +0200185 hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS];
186 unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS];
Takashi Iwai125821a2012-06-22 14:30:29 +0200187 hda_nid_t inv_dmic_pin;
Takashi Iwai37c04202012-12-18 14:22:45 +0100188 hda_nid_t shared_mic_vref_pin;
Takashi Iwai834be882006-03-01 14:16:17 +0100189
Takashi Iwai463419d2012-12-05 14:17:37 +0100190 /* DAC list */
191 int num_all_dacs;
192 hda_nid_t all_dacs[16];
193
Takashi Iwaic9967f12012-12-14 16:39:22 +0100194 /* path list */
195 struct snd_array paths;
Takashi Iwaic2fd19c2012-12-12 18:02:41 +0100196
Takashi Iwaiab16c6d2012-11-29 09:56:50 +0100197 /* auto-mic stuff */
198 int am_num_entries;
199 struct alc_automic_entry am_entry[MAX_AUTO_MIC_PINS];
200
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100201 /* hooks */
202 void (*init_hook)(struct hda_codec *codec);
Takashi Iwai83012a72012-08-24 18:38:08 +0200203#ifdef CONFIG_PM
Daniel T Chenc97259d2009-12-27 18:52:08 -0500204 void (*power_hook)(struct hda_codec *codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100205#endif
Takashi Iwai1c716152011-04-07 10:37:16 +0200206 void (*shutup)(struct hda_codec *codec);
Takashi Iwai24519912011-08-16 15:08:49 +0200207 void (*automute_hook)(struct hda_codec *codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100208
Takashi Iwai834be882006-03-01 14:16:17 +0100209 /* for pin sensing */
David Henningsson42cf0d02011-09-20 12:04:56 +0200210 unsigned int hp_jack_present:1;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200211 unsigned int line_jack_present:1;
Takashi Iwaie9427962011-04-28 15:46:07 +0200212 unsigned int master_mute:1;
Takashi Iwai6c819492009-08-10 18:47:44 +0200213 unsigned int auto_mic:1;
David Henningsson42cf0d02011-09-20 12:04:56 +0200214 unsigned int automute_speaker:1; /* automute speaker outputs */
215 unsigned int automute_lo:1; /* automute LO outputs */
216 unsigned int detect_hp:1; /* Headphone detection enabled */
217 unsigned int detect_lo:1; /* Line-out detection enabled */
218 unsigned int automute_speaker_possible:1; /* there are speakers and either LO or HP */
219 unsigned int automute_lo_possible:1; /* there are line outs and HP */
Takashi Iwai31150f22012-01-30 10:54:08 +0100220 unsigned int keep_vref_in_automute:1; /* Don't clear VREF in automute */
Takashi Iwaiab16c6d2012-11-29 09:56:50 +0100221 unsigned int line_in_auto_switch:1; /* allow line-in auto switch */
Takashi Iwaicb53c622007-08-10 17:21:45 +0200222
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100223 /* other flags */
Takashi Iwai20c18f52012-12-18 14:33:21 +0100224 unsigned int need_dac_fix:1; /* need to limit DACs for multi channels */
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100225 unsigned int no_analog :1; /* digital I/O only */
Takashi Iwai21268962011-07-07 15:01:13 +0200226 unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */
Takashi Iwai24de1832011-11-07 17:13:39 +0100227 unsigned int shared_mic_hp:1; /* HP/Mic-in sharing */
Takashi Iwai125821a2012-06-22 14:30:29 +0200228 unsigned int inv_dmic_fixup:1; /* has inverted digital-mic workaround */
229 unsigned int inv_dmic_muted:1; /* R-ch of inv d-mic is muted? */
Takashi Iwaie427c232012-07-29 10:04:08 +0200230 unsigned int no_primary_hp:1; /* Don't prefer HP pins to speaker pins */
Takashi Iwai9bf387b2012-12-18 17:18:21 +0100231 unsigned int multi_cap_vol:1; /* allow multiple capture xxx volumes */
Takashi Iwai81fede82012-12-18 17:24:25 +0100232 unsigned int inv_dmic_split:1; /* inverted dmic w/a for conexant */
Takashi Iwaid922b512011-04-28 12:18:53 +0200233
Takashi Iwai20c18f52012-12-18 14:33:21 +0100234 unsigned int parse_flags; /* passed to snd_hda_parse_pin_defcfg() */
Takashi Iwaid922b512011-04-28 12:18:53 +0200235
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200236 int init_amp;
Takashi Iwaid433a672010-09-20 15:11:54 +0200237 int codec_variant; /* flag for other variants */
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100238
Takashi Iwai2134ea42008-01-10 16:53:55 +0100239 /* for virtual master */
240 hda_nid_t vmaster_nid;
Takashi Iwaid2f344b2012-03-12 16:59:58 +0100241 struct hda_vmaster_mute_hook vmaster_mute;
Takashi Iwai83012a72012-08-24 18:38:08 +0200242#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +0200243 struct hda_loopback_check loopback;
Takashi Iwai164f73e2012-02-21 11:27:09 +0100244 int num_loopbacks;
245 struct hda_amp_list loopback_list[8];
Takashi Iwaicb53c622007-08-10 17:21:45 +0200246#endif
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200247
248 /* for PLL fix */
249 hda_nid_t pll_nid;
250 unsigned int pll_coef_idx, pll_coef_bit;
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200251 unsigned int coef0;
Takashi Iwaib5bfbc62011-01-13 14:22:32 +0100252
Takashi Iwaice764ab2011-04-27 16:35:23 +0200253 /* multi-io */
254 int multi_ios;
255 struct alc_multi_io multi_io[4];
Takashi Iwai23c09b02011-08-19 09:05:35 +0200256
257 /* bind volumes */
258 struct snd_array bind_ctls;
Kailang Yangdf694da2005-12-05 19:42:22 +0100259};
260
Takashi Iwai44c02402011-07-08 15:14:19 +0200261static bool check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
262 int dir, unsigned int bits)
263{
264 if (!nid)
265 return false;
266 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
267 if (query_amp_caps(codec, nid, dir) & bits)
268 return true;
269 return false;
270}
271
272#define nid_has_mute(codec, nid, dir) \
273 check_amp_caps(codec, nid, dir, AC_AMPCAP_MUTE)
274#define nid_has_volume(codec, nid, dir) \
275 check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS)
276
Takashi Iwai666a70d2012-12-17 20:29:29 +0100277static struct nid_path *
278get_nid_path(struct hda_codec *codec, hda_nid_t from_nid, hda_nid_t to_nid);
279static void activate_path(struct hda_codec *codec, struct nid_path *path,
280 bool enable, bool add_aamix);
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282/*
283 * input MUX handling
284 */
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200285static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
286 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
289 struct alc_spec *spec = codec->spec;
Takashi Iwai27d31532012-12-18 08:57:05 +0100290 return snd_hda_input_mux_info(&spec->input_mux, uinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200293static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
294 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
297 struct alc_spec *spec = codec->spec;
298 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
299
300 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
301 return 0;
302}
303
Takashi Iwai666a70d2012-12-17 20:29:29 +0100304static hda_nid_t get_adc_nid(struct hda_codec *codec, int adc_idx, int imux_idx)
305{
306 struct alc_spec *spec = codec->spec;
307 if (spec->dyn_adc_switch)
308 adc_idx = spec->dyn_adc_idx[imux_idx];
309 return spec->adc_nids[adc_idx];
310}
311
Takashi Iwai21268962011-07-07 15:01:13 +0200312static bool alc_dyn_adc_pcm_resetup(struct hda_codec *codec, int cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Takashi Iwai21268962011-07-07 15:01:13 +0200314 struct alc_spec *spec = codec->spec;
315 hda_nid_t new_adc = spec->adc_nids[spec->dyn_adc_idx[cur]];
316
317 if (spec->cur_adc && spec->cur_adc != new_adc) {
318 /* stream is running, let's swap the current ADC */
319 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
320 spec->cur_adc = new_adc;
321 snd_hda_codec_setup_stream(codec, new_adc,
322 spec->cur_adc_stream_tag, 0,
323 spec->cur_adc_format);
324 return true;
325 }
326 return false;
327}
328
Takashi Iwai24de1832011-11-07 17:13:39 +0100329static void call_update_outputs(struct hda_codec *codec);
Takashi Iwai125821a2012-06-22 14:30:29 +0200330static void alc_inv_dmic_sync(struct hda_codec *codec, bool force);
Takashi Iwai666a70d2012-12-17 20:29:29 +0100331static void alc_inv_dmic_sync_adc(struct hda_codec *codec, int adc_idx);
Takashi Iwai24de1832011-11-07 17:13:39 +0100332
David Henningsson00227f12012-06-27 18:45:44 +0200333/* for shared I/O, change the pin-control accordingly */
334static void update_shared_mic_hp(struct hda_codec *codec, bool set_as_mic)
335{
336 struct alc_spec *spec = codec->spec;
337 unsigned int val;
338 hda_nid_t pin = spec->autocfg.inputs[1].pin;
339 /* NOTE: this assumes that there are only two inputs, the
340 * first is the real internal mic and the second is HP/mic jack.
341 */
342
343 val = snd_hda_get_default_vref(codec, pin);
344
345 /* This pin does not have vref caps - let's enable vref on pin 0x18
346 instead, as suggested by Realtek */
Takashi Iwai37c04202012-12-18 14:22:45 +0100347 if (val == AC_PINCTL_VREF_HIZ && spec->shared_mic_vref_pin) {
348 const hda_nid_t vref_pin = spec->shared_mic_vref_pin;
349 unsigned int vref_val = snd_hda_get_default_vref(codec, vref_pin);
350 if (vref_val != AC_PINCTL_VREF_HIZ)
351 snd_hda_set_pin_ctl(codec, vref_pin, PIN_IN | (set_as_mic ? vref_val : 0));
David Henningsson00227f12012-06-27 18:45:44 +0200352 }
353
354 val = set_as_mic ? val | PIN_IN : PIN_HP;
355 snd_hda_set_pin_ctl(codec, pin, val);
356
357 spec->automute_speaker = !set_as_mic;
358 call_update_outputs(codec);
359}
Takashi Iwai21268962011-07-07 15:01:13 +0200360
361/* select the given imux item; either unmute exclusively or select the route */
362static int alc_mux_select(struct hda_codec *codec, unsigned int adc_idx,
363 unsigned int idx, bool force)
364{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 struct alc_spec *spec = codec->spec;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100366 const struct hda_input_mux *imux;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100367 struct nid_path *path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Takashi Iwai27d31532012-12-18 08:57:05 +0100369 imux = &spec->input_mux;
370 if (!imux->num_items)
Takashi Iwaicce4aa32011-12-02 15:29:12 +0100371 return 0;
Takashi Iwaicd896c32008-11-18 12:36:33 +0100372
Takashi Iwai21268962011-07-07 15:01:13 +0200373 if (idx >= imux->num_items)
374 idx = imux->num_items - 1;
375 if (spec->cur_mux[adc_idx] == idx && !force)
376 return 0;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100377
378 path = get_nid_path(codec, spec->imux_pins[spec->cur_mux[adc_idx]],
379 spec->adc_nids[adc_idx]);
380 if (!path)
381 return 0;
382 if (path->active)
383 activate_path(codec, path, false, false);
384
Takashi Iwai21268962011-07-07 15:01:13 +0200385 spec->cur_mux[adc_idx] = idx;
386
David Henningsson00227f12012-06-27 18:45:44 +0200387 if (spec->shared_mic_hp)
388 update_shared_mic_hp(codec, spec->cur_mux[adc_idx]);
Takashi Iwai24de1832011-11-07 17:13:39 +0100389
Takashi Iwai666a70d2012-12-17 20:29:29 +0100390 if (spec->dyn_adc_switch)
Takashi Iwai21268962011-07-07 15:01:13 +0200391 alc_dyn_adc_pcm_resetup(codec, idx);
Takashi Iwai21268962011-07-07 15:01:13 +0200392
Takashi Iwai666a70d2012-12-17 20:29:29 +0100393 path = get_nid_path(codec, spec->imux_pins[idx],
394 get_adc_nid(codec, adc_idx, idx));
395 if (!path)
396 return 0;
397 if (path->active)
398 return 0;
399 activate_path(codec, path, true, false);
Takashi Iwai125821a2012-06-22 14:30:29 +0200400 alc_inv_dmic_sync(codec, true);
Takashi Iwai21268962011-07-07 15:01:13 +0200401 return 1;
402}
403
404static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
405 struct snd_ctl_elem_value *ucontrol)
406{
407 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
408 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
409 return alc_mux_select(codec, adc_idx,
410 ucontrol->value.enumerated.item[0], false);
Takashi Iwai54cbc9a2008-10-31 15:24:04 +0100411}
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413/*
Takashi Iwai23f0c042009-02-26 13:03:58 +0100414 * set up the input pin config (depending on the given auto-pin type)
415 */
416static void alc_set_input_pin(struct hda_codec *codec, hda_nid_t nid,
417 int auto_pin_type)
418{
419 unsigned int val = PIN_IN;
Takashi Iwai47408602012-04-20 13:06:53 +0200420 if (auto_pin_type == AUTO_PIN_MIC)
421 val |= snd_hda_get_default_vref(codec, nid);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +0200422 snd_hda_set_pin_ctl(codec, nid, val);
Takashi Iwai23f0c042009-02-26 13:03:58 +0100423}
424
425/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200426 * Append the given mixer and verb elements for the later use
427 * The mixer array is referred in build_controls(), and init_verbs are
428 * called in init().
Takashi Iwaid88897e2008-10-31 15:01:37 +0100429 */
Takashi Iwaia9111322011-05-02 11:30:18 +0200430static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
Takashi Iwaid88897e2008-10-31 15:01:37 +0100431{
432 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
433 return;
434 spec->mixers[spec->num_mixers++] = mix;
435}
436
Takashi Iwaid88897e2008-10-31 15:01:37 +0100437/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200438 * GPIO setup tables, used in initialization
Kailang Yangdf694da2005-12-05 19:42:22 +0100439 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200440/* Enable GPIO mask and set output */
Takashi Iwaia9111322011-05-02 11:30:18 +0200441static const struct hda_verb alc_gpio1_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200442 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
443 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
444 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
445 { }
446};
447
Takashi Iwaia9111322011-05-02 11:30:18 +0200448static const struct hda_verb alc_gpio2_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200449 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
450 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
451 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
452 { }
453};
454
Takashi Iwaia9111322011-05-02 11:30:18 +0200455static const struct hda_verb alc_gpio3_init_verbs[] = {
Kailang Yangbdd148a2007-05-08 15:19:08 +0200456 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
457 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
458 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
459 { }
460};
461
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200462/*
463 * Fix hardware PLL issue
464 * On some codecs, the analog PLL gating control must be off while
465 * the default value is 1.
466 */
467static void alc_fix_pll(struct hda_codec *codec)
468{
469 struct alc_spec *spec = codec->spec;
470 unsigned int val;
471
472 if (!spec->pll_nid)
473 return;
474 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
475 spec->pll_coef_idx);
476 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
477 AC_VERB_GET_PROC_COEF, 0);
478 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
479 spec->pll_coef_idx);
480 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
481 val & ~(1 << spec->pll_coef_bit));
482}
483
484static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
485 unsigned int coef_idx, unsigned int coef_bit)
486{
487 struct alc_spec *spec = codec->spec;
488 spec->pll_nid = nid;
489 spec->pll_coef_idx = coef_idx;
490 spec->pll_coef_bit = coef_bit;
491 alc_fix_pll(codec);
492}
493
Takashi Iwai1d045db2011-07-07 18:23:21 +0200494/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200495 * Jack detections for HP auto-mute and mic-switch
496 */
497
498/* check each pin in the given array; returns true if any of them is plugged */
499static bool detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins)
Kailang Yangc9b58002007-10-16 14:30:01 +0200500{
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200501 int i, present = 0;
Kailang Yangc9b58002007-10-16 14:30:01 +0200502
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200503 for (i = 0; i < num_pins; i++) {
504 hda_nid_t nid = pins[i];
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200505 if (!nid)
506 break;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200507 present |= snd_hda_jack_detect(codec, nid);
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200508 }
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200509 return present;
510}
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200511
Takashi Iwai1d045db2011-07-07 18:23:21 +0200512/* standard HP/line-out auto-mute helper */
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200513static void do_automute(struct hda_codec *codec, int num_pins, hda_nid_t *pins,
Takashi Iwaie9427962011-04-28 15:46:07 +0200514 bool mute, bool hp_out)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200515{
516 struct alc_spec *spec = codec->spec;
Takashi Iwaie9427962011-04-28 15:46:07 +0200517 unsigned int pin_bits = mute ? 0 : (hp_out ? PIN_HP : PIN_OUT);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200518 int i;
519
520 for (i = 0; i < num_pins; i++) {
521 hda_nid_t nid = pins[i];
Takashi Iwai31150f22012-01-30 10:54:08 +0100522 unsigned int val;
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200523 if (!nid)
524 break;
Takashi Iwaib8a47c72012-12-14 14:20:34 +0100525 /* don't reset VREF value in case it's controlling
526 * the amp (see alc861_fixup_asus_amp_vref_0f())
527 */
528 if (spec->keep_vref_in_automute) {
529 val = snd_hda_codec_read(codec, nid, 0,
Takashi Iwai31150f22012-01-30 10:54:08 +0100530 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
Takashi Iwaib8a47c72012-12-14 14:20:34 +0100531 val &= ~PIN_HP;
532 } else
533 val = 0;
534 val |= pin_bits;
535 snd_hda_set_pin_ctl(codec, nid, val);
Takashi Iwaia9fd4f32009-05-08 15:57:59 +0200536 }
Kailang Yangc9b58002007-10-16 14:30:01 +0200537}
538
David Henningsson42cf0d02011-09-20 12:04:56 +0200539/* Toggle outputs muting */
540static void update_outputs(struct hda_codec *codec)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200541{
542 struct alc_spec *spec = codec->spec;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200543 int on;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200544
Takashi Iwaic0a20262011-06-10 15:28:15 +0200545 /* Control HP pins/amps depending on master_mute state;
546 * in general, HP pins/amps control should be enabled in all cases,
547 * but currently set only for master_mute, just to be safe
548 */
Takashi Iwai24de1832011-11-07 17:13:39 +0100549 if (!spec->shared_mic_hp) /* don't change HP-pin when shared with mic */
550 do_automute(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
Takashi Iwaic0a20262011-06-10 15:28:15 +0200551 spec->autocfg.hp_pins, spec->master_mute, true);
552
David Henningsson42cf0d02011-09-20 12:04:56 +0200553 if (!spec->automute_speaker)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200554 on = 0;
555 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200556 on = spec->hp_jack_present | spec->line_jack_present;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200557 on |= spec->master_mute;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200558 do_automute(codec, ARRAY_SIZE(spec->autocfg.speaker_pins),
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200559 spec->autocfg.speaker_pins, on, false);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200560
561 /* toggle line-out mutes if needed, too */
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200562 /* if LO is a copy of either HP or Speaker, don't need to handle it */
563 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0] ||
564 spec->autocfg.line_out_pins[0] == spec->autocfg.speaker_pins[0])
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200565 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200566 if (!spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200567 on = 0;
568 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200569 on = spec->hp_jack_present;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200570 on |= spec->master_mute;
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200571 do_automute(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200572 spec->autocfg.line_out_pins, on, false);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200573}
574
David Henningsson42cf0d02011-09-20 12:04:56 +0200575static void call_update_outputs(struct hda_codec *codec)
Takashi Iwai24519912011-08-16 15:08:49 +0200576{
577 struct alc_spec *spec = codec->spec;
578 if (spec->automute_hook)
579 spec->automute_hook(codec);
580 else
David Henningsson42cf0d02011-09-20 12:04:56 +0200581 update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +0200582}
583
Takashi Iwai1d045db2011-07-07 18:23:21 +0200584/* standard HP-automute helper */
David Henningsson29adc4b2012-09-25 11:31:00 +0200585static void alc_hp_automute(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200586{
587 struct alc_spec *spec = codec->spec;
588
David Henningsson42cf0d02011-09-20 12:04:56 +0200589 spec->hp_jack_present =
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200590 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
591 spec->autocfg.hp_pins);
David Henningsson42cf0d02011-09-20 12:04:56 +0200592 if (!spec->detect_hp || (!spec->automute_speaker && !spec->automute_lo))
Takashi Iwai3c715a92011-08-23 12:41:09 +0200593 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200594 call_update_outputs(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200595}
596
Takashi Iwai1d045db2011-07-07 18:23:21 +0200597/* standard line-out-automute helper */
David Henningsson29adc4b2012-09-25 11:31:00 +0200598static void alc_line_automute(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200599{
600 struct alc_spec *spec = codec->spec;
601
David Henningssonf7f4b2322012-10-10 16:32:09 +0200602 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
603 return;
Takashi Iwaie0d32e32011-09-26 15:19:55 +0200604 /* check LO jack only when it's different from HP */
605 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0])
606 return;
607
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200608 spec->line_jack_present =
609 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
610 spec->autocfg.line_out_pins);
David Henningsson42cf0d02011-09-20 12:04:56 +0200611 if (!spec->automute_speaker || !spec->detect_lo)
Takashi Iwai3c715a92011-08-23 12:41:09 +0200612 return;
David Henningsson42cf0d02011-09-20 12:04:56 +0200613 call_update_outputs(codec);
Takashi Iwaie6a5e1b2011-04-28 14:41:52 +0200614}
615
Takashi Iwai1d045db2011-07-07 18:23:21 +0200616/* standard mic auto-switch helper */
David Henningsson29adc4b2012-09-25 11:31:00 +0200617static void alc_mic_automute(struct hda_codec *codec, struct hda_jack_tbl *jack)
Kailang Yang7fb0d782008-10-15 11:12:35 +0200618{
619 struct alc_spec *spec = codec->spec;
Takashi Iwaiab16c6d2012-11-29 09:56:50 +0100620 int i;
Kailang Yang7fb0d782008-10-15 11:12:35 +0200621
Takashi Iwai480967d2012-12-18 14:29:52 +0100622 if (!spec->auto_mic)
Takashi Iwai6c819492009-08-10 18:47:44 +0200623 return;
Takashi Iwai840b64c2010-07-13 22:49:01 +0200624
Takashi Iwaiab16c6d2012-11-29 09:56:50 +0100625 for (i = spec->am_num_entries - 1; i > 0; i--) {
626 if (snd_hda_jack_detect(codec, spec->am_entry[i].pin)) {
627 alc_mux_select(codec, 0, spec->am_entry[i].idx, false);
628 return;
629 }
630 }
631 alc_mux_select(codec, 0, spec->am_entry[0].idx, false);
Kailang Yang7fb0d782008-10-15 11:12:35 +0200632}
633
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100634/* update the master volume per volume-knob's unsol event */
David Henningsson29adc4b2012-09-25 11:31:00 +0200635static void alc_update_knob_master(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100636{
637 unsigned int val;
638 struct snd_kcontrol *kctl;
639 struct snd_ctl_elem_value *uctl;
640
641 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
642 if (!kctl)
643 return;
644 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
645 if (!uctl)
646 return;
David Henningsson29adc4b2012-09-25 11:31:00 +0200647 val = snd_hda_codec_read(codec, jack->nid, 0,
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100648 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
649 val &= HDA_AMP_VOLMASK;
650 uctl->value.integer.value[0] = val;
651 uctl->value.integer.value[1] = val;
652 kctl->put(kctl, uctl);
653 kfree(uctl);
654}
655
David Henningsson29adc4b2012-09-25 11:31:00 +0200656static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100657{
David Henningsson29adc4b2012-09-25 11:31:00 +0200658 /* For some reason, the res given from ALC880 is broken.
659 Here we adjust it properly. */
660 snd_hda_jack_unsol_event(codec, res >> 2);
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100661}
662
Kailang Yangf9423e72008-05-27 12:32:25 +0200663/* additional initialization for ALC888 variants */
664static void alc888_coef_init(struct hda_codec *codec)
665{
666 unsigned int tmp;
667
668 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
669 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
670 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
Takashi Iwai37db6232009-03-05 09:40:16 +0100671 if ((tmp & 0xf0) == 0x20)
Kailang Yangf9423e72008-05-27 12:32:25 +0200672 /* alc888S-VC */
673 snd_hda_codec_read(codec, 0x20, 0,
674 AC_VERB_SET_PROC_COEF, 0x830);
675 else
676 /* alc888-VB */
677 snd_hda_codec_read(codec, 0x20, 0,
678 AC_VERB_SET_PROC_COEF, 0x3030);
679}
680
Takashi Iwai1d045db2011-07-07 18:23:21 +0200681/* additional initialization for ALC889 variants */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200682static void alc889_coef_init(struct hda_codec *codec)
683{
684 unsigned int tmp;
685
686 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
687 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
688 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
689 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
690}
691
Takashi Iwai3fb4a502010-01-19 15:46:37 +0100692/* turn on/off EAPD control (only if available) */
693static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
694{
695 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
696 return;
697 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
698 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
699 on ? 2 : 0);
700}
701
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200702/* turn on/off EAPD controls of the codec */
703static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
704{
705 /* We currently only handle front, HP */
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200706 static hda_nid_t pins[] = {
707 0x0f, 0x10, 0x14, 0x15, 0
708 };
709 hda_nid_t *p;
710 for (p = pins; *p; p++)
711 set_eapd(codec, *p, on);
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200712}
713
Takashi Iwai1c716152011-04-07 10:37:16 +0200714/* generic shutup callback;
715 * just turning off EPAD and a little pause for avoiding pop-noise
716 */
717static void alc_eapd_shutup(struct hda_codec *codec)
718{
719 alc_auto_setup_eapd(codec, false);
720 msleep(200);
721}
722
Takashi Iwai1d045db2011-07-07 18:23:21 +0200723/* generic EAPD initialization */
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200724static void alc_auto_init_amp(struct hda_codec *codec, int type)
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200725{
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200726 unsigned int tmp;
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200727
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200728 alc_auto_setup_eapd(codec, true);
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200729 switch (type) {
730 case ALC_INIT_GPIO1:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200731 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
732 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200733 case ALC_INIT_GPIO2:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200734 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
735 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200736 case ALC_INIT_GPIO3:
Kailang Yangbdd148a2007-05-08 15:19:08 +0200737 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
738 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200739 case ALC_INIT_DEFAULT:
Kailang Yangc9b58002007-10-16 14:30:01 +0200740 switch (codec->vendor_id) {
741 case 0x10ec0260:
742 snd_hda_codec_write(codec, 0x1a, 0,
743 AC_VERB_SET_COEF_INDEX, 7);
744 tmp = snd_hda_codec_read(codec, 0x1a, 0,
745 AC_VERB_GET_PROC_COEF, 0);
746 snd_hda_codec_write(codec, 0x1a, 0,
747 AC_VERB_SET_COEF_INDEX, 7);
748 snd_hda_codec_write(codec, 0x1a, 0,
749 AC_VERB_SET_PROC_COEF,
750 tmp | 0x2010);
751 break;
752 case 0x10ec0262:
753 case 0x10ec0880:
754 case 0x10ec0882:
755 case 0x10ec0883:
756 case 0x10ec0885:
Takashi Iwai4a5a4c52009-02-06 12:46:59 +0100757 case 0x10ec0887:
Takashi Iwai20b67dd2011-03-23 22:54:32 +0100758 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200759 alc889_coef_init(codec);
Kailang Yangc9b58002007-10-16 14:30:01 +0200760 break;
Kailang Yangf9423e72008-05-27 12:32:25 +0200761 case 0x10ec0888:
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200762 alc888_coef_init(codec);
Kailang Yangf9423e72008-05-27 12:32:25 +0200763 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100764#if 0 /* XXX: This may cause the silent output on speaker on some machines */
Kailang Yangc9b58002007-10-16 14:30:01 +0200765 case 0x10ec0267:
766 case 0x10ec0268:
767 snd_hda_codec_write(codec, 0x20, 0,
768 AC_VERB_SET_COEF_INDEX, 7);
769 tmp = snd_hda_codec_read(codec, 0x20, 0,
770 AC_VERB_GET_PROC_COEF, 0);
771 snd_hda_codec_write(codec, 0x20, 0,
Kailang Yangea1fb292008-08-26 12:58:38 +0200772 AC_VERB_SET_COEF_INDEX, 7);
Kailang Yangc9b58002007-10-16 14:30:01 +0200773 snd_hda_codec_write(codec, 0x20, 0,
774 AC_VERB_SET_PROC_COEF,
775 tmp | 0x3000);
776 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100777#endif /* XXX */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200778 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200779 break;
780 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200781}
Kailang Yangea1fb292008-08-26 12:58:38 +0200782
Takashi Iwai1d045db2011-07-07 18:23:21 +0200783/*
784 * Auto-Mute mode mixer enum support
785 */
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200786static int alc_automute_mode_info(struct snd_kcontrol *kcontrol,
787 struct snd_ctl_elem_info *uinfo)
788{
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200789 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
790 struct alc_spec *spec = codec->spec;
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200791 static const char * const texts3[] = {
Takashi Iwaie49a3432012-03-01 18:14:41 +0100792 "Disabled", "Speaker Only", "Line Out+Speaker"
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200793 };
794
Takashi Iwaidda415d2012-11-30 18:34:38 +0100795 if (spec->automute_speaker_possible && spec->automute_lo_possible)
796 return snd_hda_enum_helper_info(kcontrol, uinfo, 3, texts3);
797 return snd_hda_enum_bool_helper_info(kcontrol, uinfo);
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200798}
799
800static int alc_automute_mode_get(struct snd_kcontrol *kcontrol,
801 struct snd_ctl_elem_value *ucontrol)
802{
803 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
804 struct alc_spec *spec = codec->spec;
David Henningsson42cf0d02011-09-20 12:04:56 +0200805 unsigned int val = 0;
806 if (spec->automute_speaker)
807 val++;
808 if (spec->automute_lo)
809 val++;
810
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200811 ucontrol->value.enumerated.item[0] = val;
812 return 0;
813}
814
815static int alc_automute_mode_put(struct snd_kcontrol *kcontrol,
816 struct snd_ctl_elem_value *ucontrol)
817{
818 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
819 struct alc_spec *spec = codec->spec;
820
821 switch (ucontrol->value.enumerated.item[0]) {
822 case 0:
David Henningsson42cf0d02011-09-20 12:04:56 +0200823 if (!spec->automute_speaker && !spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200824 return 0;
David Henningsson42cf0d02011-09-20 12:04:56 +0200825 spec->automute_speaker = 0;
826 spec->automute_lo = 0;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200827 break;
828 case 1:
David Henningsson42cf0d02011-09-20 12:04:56 +0200829 if (spec->automute_speaker_possible) {
830 if (!spec->automute_lo && spec->automute_speaker)
831 return 0;
832 spec->automute_speaker = 1;
833 spec->automute_lo = 0;
834 } else if (spec->automute_lo_possible) {
835 if (spec->automute_lo)
836 return 0;
837 spec->automute_lo = 1;
838 } else
839 return -EINVAL;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200840 break;
841 case 2:
David Henningsson42cf0d02011-09-20 12:04:56 +0200842 if (!spec->automute_lo_possible || !spec->automute_speaker_possible)
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200843 return -EINVAL;
David Henningsson42cf0d02011-09-20 12:04:56 +0200844 if (spec->automute_speaker && spec->automute_lo)
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200845 return 0;
David Henningsson42cf0d02011-09-20 12:04:56 +0200846 spec->automute_speaker = 1;
847 spec->automute_lo = 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200848 break;
849 default:
850 return -EINVAL;
851 }
David Henningsson42cf0d02011-09-20 12:04:56 +0200852 call_update_outputs(codec);
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200853 return 1;
854}
855
Takashi Iwaia9111322011-05-02 11:30:18 +0200856static const struct snd_kcontrol_new alc_automute_mode_enum = {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200857 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
858 .name = "Auto-Mute Mode",
859 .info = alc_automute_mode_info,
860 .get = alc_automute_mode_get,
861 .put = alc_automute_mode_put,
862};
863
Takashi Iwai668d1e92012-11-29 14:10:17 +0100864static struct snd_kcontrol_new *
865alc_kcontrol_new(struct alc_spec *spec, const char *name,
866 const struct snd_kcontrol_new *temp)
Takashi Iwai1d045db2011-07-07 18:23:21 +0200867{
Takashi Iwai668d1e92012-11-29 14:10:17 +0100868 struct snd_kcontrol_new *knew = snd_array_new(&spec->kctls);
869 if (!knew)
870 return NULL;
871 *knew = *temp;
Takashi Iwaibc549762012-12-18 15:35:11 +0100872 if (name)
873 knew->name = kstrdup(name, GFP_KERNEL);
874 else if (knew->name)
875 knew->name = kstrdup(knew->name, GFP_KERNEL);
Takashi Iwai668d1e92012-11-29 14:10:17 +0100876 if (!knew->name)
877 return NULL;
878 return knew;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200879}
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200880
881static int alc_add_automute_mode_enum(struct hda_codec *codec)
882{
883 struct alc_spec *spec = codec->spec;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200884
Takashi Iwaibc549762012-12-18 15:35:11 +0100885 if (!alc_kcontrol_new(spec, NULL, &alc_automute_mode_enum))
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200886 return -ENOMEM;
887 return 0;
888}
889
Takashi Iwai1d045db2011-07-07 18:23:21 +0200890/*
891 * Check the availability of HP/line-out auto-mute;
892 * Set up appropriately if really supported
893 */
Takashi Iwai475c3d22012-11-30 08:31:30 +0100894static int alc_init_automute(struct hda_codec *codec)
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200895{
896 struct alc_spec *spec = codec->spec;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200897 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai1daf5f42011-04-28 17:57:46 +0200898 int present = 0;
Takashi Iwai475c3d22012-11-30 08:31:30 +0100899 int i, err;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200900
Takashi Iwai1daf5f42011-04-28 17:57:46 +0200901 if (cfg->hp_pins[0])
902 present++;
903 if (cfg->line_out_pins[0])
904 present++;
905 if (cfg->speaker_pins[0])
906 present++;
907 if (present < 2) /* need two different output types */
Takashi Iwai475c3d22012-11-30 08:31:30 +0100908 return 0;
Kailang Yangc9b58002007-10-16 14:30:01 +0200909
Takashi Iwaic48a8fb2011-07-27 16:41:57 +0200910 if (!cfg->speaker_pins[0] &&
911 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200912 memcpy(cfg->speaker_pins, cfg->line_out_pins,
913 sizeof(cfg->speaker_pins));
914 cfg->speaker_outs = cfg->line_outs;
915 }
916
Takashi Iwaic48a8fb2011-07-27 16:41:57 +0200917 if (!cfg->hp_pins[0] &&
918 cfg->line_out_type == AUTO_PIN_HP_OUT) {
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200919 memcpy(cfg->hp_pins, cfg->line_out_pins,
920 sizeof(cfg->hp_pins));
921 cfg->hp_outs = cfg->line_outs;
922 }
923
924 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200925 hda_nid_t nid = cfg->hp_pins[i];
Takashi Iwai06dec222011-05-17 10:00:16 +0200926 if (!is_jack_detectable(codec, nid))
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200927 continue;
Takashi Iwaibb35feb2010-09-08 15:30:49 +0200928 snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n",
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200929 nid);
David Henningsson29adc4b2012-09-25 11:31:00 +0200930 snd_hda_jack_detect_enable_callback(codec, nid, ALC_HP_EVENT,
931 alc_hp_automute);
David Henningsson42cf0d02011-09-20 12:04:56 +0200932 spec->detect_hp = 1;
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200933 }
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200934
David Henningsson42cf0d02011-09-20 12:04:56 +0200935 if (cfg->line_out_type == AUTO_PIN_LINE_OUT && cfg->line_outs) {
936 if (cfg->speaker_outs)
937 for (i = 0; i < cfg->line_outs; i++) {
938 hda_nid_t nid = cfg->line_out_pins[i];
939 if (!is_jack_detectable(codec, nid))
940 continue;
941 snd_printdd("realtek: Enable Line-Out "
942 "auto-muting on NID 0x%x\n", nid);
David Henningsson29adc4b2012-09-25 11:31:00 +0200943 snd_hda_jack_detect_enable_callback(codec, nid, ALC_FRONT_EVENT,
944 alc_line_automute);
David Henningsson42cf0d02011-09-20 12:04:56 +0200945 spec->detect_lo = 1;
David Henningsson29adc4b2012-09-25 11:31:00 +0200946 }
David Henningsson42cf0d02011-09-20 12:04:56 +0200947 spec->automute_lo_possible = spec->detect_hp;
948 }
949
950 spec->automute_speaker_possible = cfg->speaker_outs &&
951 (spec->detect_hp || spec->detect_lo);
952
953 spec->automute_lo = spec->automute_lo_possible;
954 spec->automute_speaker = spec->automute_speaker_possible;
955
Takashi Iwai475c3d22012-11-30 08:31:30 +0100956 if (spec->automute_speaker_possible || spec->automute_lo_possible) {
Takashi Iwaiae8a60a2011-04-28 18:09:52 +0200957 /* create a control for automute mode */
Takashi Iwai475c3d22012-11-30 08:31:30 +0100958 err = alc_add_automute_mode_enum(codec);
959 if (err < 0)
960 return err;
961 }
962 return 0;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200963}
964
Takashi Iwai1d045db2011-07-07 18:23:21 +0200965/* return the position of NID in the list, or -1 if not found */
Takashi Iwai21268962011-07-07 15:01:13 +0200966static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
967{
968 int i;
969 for (i = 0; i < nums; i++)
970 if (list[i] == nid)
971 return i;
972 return -1;
973}
974
Takashi Iwai21268962011-07-07 15:01:13 +0200975/* check whether all auto-mic pins are valid; setup indices if OK */
976static bool alc_auto_mic_check_imux(struct hda_codec *codec)
977{
978 struct alc_spec *spec = codec->spec;
979 const struct hda_input_mux *imux;
Takashi Iwaiab16c6d2012-11-29 09:56:50 +0100980 int i;
Takashi Iwai21268962011-07-07 15:01:13 +0200981
Takashi Iwai27d31532012-12-18 08:57:05 +0100982 imux = &spec->input_mux;
Takashi Iwaiab16c6d2012-11-29 09:56:50 +0100983 for (i = 0; i < spec->am_num_entries; i++) {
984 spec->am_entry[i].idx =
985 find_idx_in_nid_list(spec->am_entry[i].pin,
986 spec->imux_pins, imux->num_items);
987 if (spec->am_entry[i].idx < 0)
988 return false; /* no corresponding imux */
989 }
Takashi Iwai21268962011-07-07 15:01:13 +0200990
Takashi Iwaiab16c6d2012-11-29 09:56:50 +0100991 /* we don't need the jack detection for the first pin */
992 for (i = 1; i < spec->am_num_entries; i++)
993 snd_hda_jack_detect_enable_callback(codec,
994 spec->am_entry[i].pin,
David Henningsson29adc4b2012-09-25 11:31:00 +0200995 ALC_MIC_EVENT,
996 alc_mic_automute);
Takashi Iwai21268962011-07-07 15:01:13 +0200997 return true;
998}
999
Takashi Iwaiab16c6d2012-11-29 09:56:50 +01001000static int compare_attr(const void *ap, const void *bp)
1001{
1002 const struct alc_automic_entry *a = ap;
1003 const struct alc_automic_entry *b = bp;
1004 return (int)(a->attr - b->attr);
1005}
1006
Takashi Iwai1d045db2011-07-07 18:23:21 +02001007/*
1008 * Check the availability of auto-mic switch;
1009 * Set up if really supported
1010 */
Takashi Iwai475c3d22012-11-30 08:31:30 +01001011static int alc_init_auto_mic(struct hda_codec *codec)
Takashi Iwai6c819492009-08-10 18:47:44 +02001012{
1013 struct alc_spec *spec = codec->spec;
1014 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaiab16c6d2012-11-29 09:56:50 +01001015 unsigned int types;
1016 int i, num_pins;
Takashi Iwai6c819492009-08-10 18:47:44 +02001017
Takashi Iwaiab16c6d2012-11-29 09:56:50 +01001018 types = 0;
1019 num_pins = 0;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02001020 for (i = 0; i < cfg->num_inputs; i++) {
1021 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwaiab16c6d2012-11-29 09:56:50 +01001022 unsigned int attr;
1023 attr = snd_hda_codec_get_pincfg(codec, nid);
1024 attr = snd_hda_get_input_pin_attr(attr);
1025 if (types & (1 << attr))
1026 return 0; /* already occupied */
1027 switch (attr) {
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001028 case INPUT_PIN_ATTR_INT:
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001029 if (cfg->inputs[i].type != AUTO_PIN_MIC)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001030 return 0; /* invalid type */
Takashi Iwai6c819492009-08-10 18:47:44 +02001031 break;
Takashi Iwai99ae28b2010-09-17 14:42:34 +02001032 case INPUT_PIN_ATTR_UNUSED:
Takashi Iwai475c3d22012-11-30 08:31:30 +01001033 return 0; /* invalid entry */
Takashi Iwaiab16c6d2012-11-29 09:56:50 +01001034 default:
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001035 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
Takashi Iwai475c3d22012-11-30 08:31:30 +01001036 return 0; /* invalid type */
Takashi Iwaiab16c6d2012-11-29 09:56:50 +01001037 if (!spec->line_in_auto_switch &&
1038 cfg->inputs[i].type != AUTO_PIN_MIC)
1039 return 0; /* only mic is allowed */
1040 if (!is_jack_detectable(codec, nid))
1041 return 0; /* no unsol support */
Takashi Iwai6c819492009-08-10 18:47:44 +02001042 break;
Takashi Iwai6c819492009-08-10 18:47:44 +02001043 }
Takashi Iwaiab16c6d2012-11-29 09:56:50 +01001044 if (num_pins >= MAX_AUTO_MIC_PINS)
1045 return 0;
1046 types |= (1 << attr);
1047 spec->am_entry[num_pins].pin = nid;
1048 spec->am_entry[num_pins].attr = attr;
1049 num_pins++;
Takashi Iwai6c819492009-08-10 18:47:44 +02001050 }
Takashi Iwai21268962011-07-07 15:01:13 +02001051
Takashi Iwaiab16c6d2012-11-29 09:56:50 +01001052 if (num_pins < 2)
1053 return 0;
1054
1055 spec->am_num_entries = num_pins;
1056 /* sort the am_entry in the order of attr so that the pin with a
1057 * higher attr will be selected when the jack is plugged.
1058 */
1059 sort(spec->am_entry, num_pins, sizeof(spec->am_entry[0]),
1060 compare_attr, NULL);
Takashi Iwai21268962011-07-07 15:01:13 +02001061
Takashi Iwai21268962011-07-07 15:01:13 +02001062 if (!alc_auto_mic_check_imux(codec))
Takashi Iwai475c3d22012-11-30 08:31:30 +01001063 return 0;
Takashi Iwai21268962011-07-07 15:01:13 +02001064
Takashi Iwai666a70d2012-12-17 20:29:29 +01001065 spec->auto_mic = 1;
1066 spec->num_adc_nids = 1;
Takashi Iwaiab16c6d2012-11-29 09:56:50 +01001067 spec->cur_mux[0] = spec->am_entry[0].idx;
Takashi Iwai8ed99d92011-05-17 12:05:02 +02001068 snd_printdd("realtek: Enable auto-mic switch on NID 0x%x/0x%x/0x%x\n",
Takashi Iwaiab16c6d2012-11-29 09:56:50 +01001069 spec->am_entry[0].pin,
1070 spec->am_entry[1].pin,
1071 spec->am_entry[2].pin);
Takashi Iwai475c3d22012-11-30 08:31:30 +01001072
1073 return 0;
Takashi Iwai6c819492009-08-10 18:47:44 +02001074}
1075
Takashi Iwai1d045db2011-07-07 18:23:21 +02001076/*
1077 * Realtek SSID verification
1078 */
1079
David Henningsson90622912010-10-14 14:50:18 +02001080/* Could be any non-zero and even value. When used as fixup, tells
1081 * the driver to ignore any present sku defines.
1082 */
1083#define ALC_FIXUP_SKU_IGNORE (2)
1084
Takashi Iwai23d30f22012-05-07 17:17:32 +02001085static void alc_fixup_sku_ignore(struct hda_codec *codec,
1086 const struct hda_fixup *fix, int action)
1087{
1088 struct alc_spec *spec = codec->spec;
1089 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1090 spec->cdefine.fixup = 1;
1091 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
1092 }
1093}
1094
Kailang Yangda00c242010-03-19 11:23:45 +01001095static int alc_auto_parse_customize_define(struct hda_codec *codec)
1096{
1097 unsigned int ass, tmp, i;
Takashi Iwai7fb56222010-03-22 17:09:47 +01001098 unsigned nid = 0;
Kailang Yangda00c242010-03-19 11:23:45 +01001099 struct alc_spec *spec = codec->spec;
1100
Takashi Iwaib6cbe512010-07-28 17:43:36 +02001101 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
1102
David Henningsson90622912010-10-14 14:50:18 +02001103 if (spec->cdefine.fixup) {
1104 ass = spec->cdefine.sku_cfg;
1105 if (ass == ALC_FIXUP_SKU_IGNORE)
1106 return -1;
1107 goto do_sku;
1108 }
1109
Kailang Yangda00c242010-03-19 11:23:45 +01001110 ass = codec->subsystem_id & 0xffff;
Takashi Iwaib6cbe512010-07-28 17:43:36 +02001111 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
Kailang Yangda00c242010-03-19 11:23:45 +01001112 goto do_sku;
1113
1114 nid = 0x1d;
1115 if (codec->vendor_id == 0x10ec0260)
1116 nid = 0x17;
1117 ass = snd_hda_codec_get_pincfg(codec, nid);
1118
1119 if (!(ass & 1)) {
1120 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
1121 codec->chip_name, ass);
1122 return -1;
1123 }
1124
1125 /* check sum */
1126 tmp = 0;
1127 for (i = 1; i < 16; i++) {
1128 if ((ass >> i) & 1)
1129 tmp++;
1130 }
1131 if (((ass >> 16) & 0xf) != tmp)
1132 return -1;
1133
1134 spec->cdefine.port_connectivity = ass >> 30;
1135 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
1136 spec->cdefine.check_sum = (ass >> 16) & 0xf;
1137 spec->cdefine.customization = ass >> 8;
1138do_sku:
1139 spec->cdefine.sku_cfg = ass;
1140 spec->cdefine.external_amp = (ass & 0x38) >> 3;
1141 spec->cdefine.platform_type = (ass & 0x4) >> 2;
1142 spec->cdefine.swap = (ass & 0x2) >> 1;
1143 spec->cdefine.override = ass & 0x1;
1144
1145 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
1146 nid, spec->cdefine.sku_cfg);
1147 snd_printd("SKU: port_connectivity=0x%x\n",
1148 spec->cdefine.port_connectivity);
1149 snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
1150 snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
1151 snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
1152 snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
1153 snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
1154 snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
1155 snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
1156
1157 return 0;
1158}
1159
Takashi Iwai1d045db2011-07-07 18:23:21 +02001160/* return true if the given NID is found in the list */
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001161static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
1162{
Takashi Iwai21268962011-07-07 15:01:13 +02001163 return find_idx_in_nid_list(nid, list, nums) >= 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001164}
1165
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001166/* check subsystem ID and set up device-specific initialization;
1167 * return 1 if initialized, 0 if invalid SSID
1168 */
1169/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
1170 * 31 ~ 16 : Manufacture ID
1171 * 15 ~ 8 : SKU ID
1172 * 7 ~ 0 : Assembly ID
1173 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
1174 */
1175static int alc_subsystem_id(struct hda_codec *codec,
1176 hda_nid_t porta, hda_nid_t porte,
Kailang Yang6227cdc2010-02-25 08:36:52 +01001177 hda_nid_t portd, hda_nid_t porti)
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001178{
1179 unsigned int ass, tmp, i;
1180 unsigned nid;
1181 struct alc_spec *spec = codec->spec;
1182
David Henningsson90622912010-10-14 14:50:18 +02001183 if (spec->cdefine.fixup) {
1184 ass = spec->cdefine.sku_cfg;
1185 if (ass == ALC_FIXUP_SKU_IGNORE)
1186 return 0;
1187 goto do_sku;
1188 }
1189
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001190 ass = codec->subsystem_id & 0xffff;
1191 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
1192 goto do_sku;
1193
1194 /* invalid SSID, check the special NID pin defcfg instead */
1195 /*
Sasha Alexandrdef319f2009-06-16 16:00:15 -04001196 * 31~30 : port connectivity
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001197 * 29~21 : reserve
1198 * 20 : PCBEEP input
1199 * 19~16 : Check sum (15:1)
1200 * 15~1 : Custom
1201 * 0 : override
1202 */
1203 nid = 0x1d;
1204 if (codec->vendor_id == 0x10ec0260)
1205 nid = 0x17;
1206 ass = snd_hda_codec_get_pincfg(codec, nid);
1207 snd_printd("realtek: No valid SSID, "
1208 "checking pincfg 0x%08x for NID 0x%x\n",
Takashi Iwaicb6605c2009-04-28 13:03:19 +02001209 ass, nid);
Kailang Yang6227cdc2010-02-25 08:36:52 +01001210 if (!(ass & 1))
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001211 return 0;
1212 if ((ass >> 30) != 1) /* no physical connection */
1213 return 0;
1214
1215 /* check sum */
1216 tmp = 0;
1217 for (i = 1; i < 16; i++) {
1218 if ((ass >> i) & 1)
1219 tmp++;
1220 }
1221 if (((ass >> 16) & 0xf) != tmp)
1222 return 0;
1223do_sku:
1224 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
1225 ass & 0xffff, codec->vendor_id);
1226 /*
1227 * 0 : override
1228 * 1 : Swap Jack
1229 * 2 : 0 --> Desktop, 1 --> Laptop
1230 * 3~5 : External Amplifier control
1231 * 7~6 : Reserved
1232 */
1233 tmp = (ass & 0x38) >> 3; /* external Amp control */
1234 switch (tmp) {
1235 case 1:
1236 spec->init_amp = ALC_INIT_GPIO1;
1237 break;
1238 case 3:
1239 spec->init_amp = ALC_INIT_GPIO2;
1240 break;
1241 case 7:
1242 spec->init_amp = ALC_INIT_GPIO3;
1243 break;
1244 case 5:
Takashi Iwai5a8cfb42010-11-26 17:11:18 +01001245 default:
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001246 spec->init_amp = ALC_INIT_DEFAULT;
1247 break;
1248 }
1249
1250 /* is laptop or Desktop and enable the function "Mute internal speaker
1251 * when the external headphone out jack is plugged"
1252 */
1253 if (!(ass & 0x8000))
1254 return 1;
1255 /*
1256 * 10~8 : Jack location
1257 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1258 * 14~13: Resvered
1259 * 15 : 1 --> enable the function "Mute internal speaker
1260 * when the external headphone out jack is plugged"
1261 */
Takashi Iwai5fe6e012011-09-26 10:41:21 +02001262 if (!spec->autocfg.hp_pins[0] &&
1263 !(spec->autocfg.line_out_pins[0] &&
1264 spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
Takashi Iwai01d48252009-10-06 13:21:54 +02001265 hda_nid_t nid;
Kailang Yangc9b58002007-10-16 14:30:01 +02001266 tmp = (ass >> 11) & 0x3; /* HP to chassis */
1267 if (tmp == 0)
Takashi Iwai01d48252009-10-06 13:21:54 +02001268 nid = porta;
Kailang Yangc9b58002007-10-16 14:30:01 +02001269 else if (tmp == 1)
Takashi Iwai01d48252009-10-06 13:21:54 +02001270 nid = porte;
Kailang Yangc9b58002007-10-16 14:30:01 +02001271 else if (tmp == 2)
Takashi Iwai01d48252009-10-06 13:21:54 +02001272 nid = portd;
Kailang Yang6227cdc2010-02-25 08:36:52 +01001273 else if (tmp == 3)
1274 nid = porti;
Kailang Yangc9b58002007-10-16 14:30:01 +02001275 else
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001276 return 1;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02001277 if (found_in_nid_list(nid, spec->autocfg.line_out_pins,
1278 spec->autocfg.line_outs))
1279 return 1;
Takashi Iwai01d48252009-10-06 13:21:54 +02001280 spec->autocfg.hp_pins[0] = nid;
Kailang Yangc9b58002007-10-16 14:30:01 +02001281 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001282 return 1;
1283}
Kailang Yangea1fb292008-08-26 12:58:38 +02001284
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001285/* Check the validity of ALC subsystem-id
1286 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
1287static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001288{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001289 if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001290 struct alc_spec *spec = codec->spec;
1291 snd_printd("realtek: "
1292 "Enable default setup for auto mode as fallback\n");
1293 spec->init_amp = ALC_INIT_DEFAULT;
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001294 }
Takashi Iwai21268962011-07-07 15:01:13 +02001295}
Takashi Iwai1a1455d2011-04-28 17:36:18 +02001296
Takashi Iwai41e41f12005-06-08 14:48:49 +02001297/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02001298 * COEF access helper functions
1299 */
Kailang Yang274693f2009-12-03 10:07:50 +01001300static int alc_read_coef_idx(struct hda_codec *codec,
1301 unsigned int coef_idx)
1302{
1303 unsigned int val;
1304 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1305 coef_idx);
1306 val = snd_hda_codec_read(codec, 0x20, 0,
1307 AC_VERB_GET_PROC_COEF, 0);
1308 return val;
1309}
1310
Kailang Yang977ddd62010-09-15 10:02:29 +02001311static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
1312 unsigned int coef_val)
1313{
1314 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1315 coef_idx);
1316 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
1317 coef_val);
1318}
1319
Takashi Iwai1bb7e432011-10-17 16:50:59 +02001320/* a special bypass for COEF 0; read the cached value at the second time */
1321static unsigned int alc_get_coef0(struct hda_codec *codec)
1322{
1323 struct alc_spec *spec = codec->spec;
1324 if (!spec->coef0)
1325 spec->coef0 = alc_read_coef_idx(codec, 0);
1326 return spec->coef0;
1327}
1328
Takashi Iwaifef7fbb2012-12-14 16:54:44 +01001329static void alc_auto_set_output_and_unmute(struct hda_codec *codec,
1330 hda_nid_t pin, int pin_type,
1331 hda_nid_t dac);
1332static hda_nid_t alc_auto_look_for_dac(struct hda_codec *codec, hda_nid_t pin,
1333 bool is_digital);
Takashi Iwai965cceb2012-12-18 11:46:37 +01001334static bool parse_nid_path(struct hda_codec *codec, hda_nid_t from_nid,
1335 hda_nid_t to_nid, int with_aa_mix,
1336 struct nid_path *path);
1337static struct nid_path *add_new_nid_path(struct hda_codec *codec,
1338 hda_nid_t from_nid, hda_nid_t to_nid,
1339 int with_aa_mix);
Takashi Iwaifef7fbb2012-12-14 16:54:44 +01001340
Takashi Iwai1d045db2011-07-07 18:23:21 +02001341/*
1342 * Digital I/O handling
1343 */
1344
Takashi Iwai757899a2010-07-30 10:48:14 +02001345/* set right pin controls for digital I/O */
1346static void alc_auto_init_digital(struct hda_codec *codec)
1347{
1348 struct alc_spec *spec = codec->spec;
1349 int i;
Takashi Iwaifef7fbb2012-12-14 16:54:44 +01001350 hda_nid_t pin;
Takashi Iwai757899a2010-07-30 10:48:14 +02001351
1352 for (i = 0; i < spec->autocfg.dig_outs; i++) {
1353 pin = spec->autocfg.dig_out_pins[i];
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02001354 if (!pin)
1355 continue;
Takashi Iwaifef7fbb2012-12-14 16:54:44 +01001356 alc_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
Takashi Iwai757899a2010-07-30 10:48:14 +02001357 }
1358 pin = spec->autocfg.dig_in_pin;
1359 if (pin)
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001360 snd_hda_set_pin_ctl(codec, pin, PIN_IN);
Takashi Iwai757899a2010-07-30 10:48:14 +02001361}
1362
1363/* parse digital I/Os and set up NIDs in BIOS auto-parse mode */
1364static void alc_auto_parse_digital(struct hda_codec *codec)
1365{
1366 struct alc_spec *spec = codec->spec;
Takashi Iwai965cceb2012-12-18 11:46:37 +01001367 int i, nums;
Takashi Iwai757899a2010-07-30 10:48:14 +02001368 hda_nid_t dig_nid;
1369
1370 /* support multiple SPDIFs; the secondary is set up as a slave */
Takashi Iwai51e41522011-11-03 16:54:06 +01001371 nums = 0;
Takashi Iwai757899a2010-07-30 10:48:14 +02001372 for (i = 0; i < spec->autocfg.dig_outs; i++) {
Takashi Iwaifef7fbb2012-12-14 16:54:44 +01001373 hda_nid_t pin = spec->autocfg.dig_out_pins[i];
1374 dig_nid = alc_auto_look_for_dac(codec, pin, true);
1375 if (!dig_nid)
Takashi Iwai757899a2010-07-30 10:48:14 +02001376 continue;
Takashi Iwai965cceb2012-12-18 11:46:37 +01001377 if (!add_new_nid_path(codec, dig_nid, pin, 2))
1378 continue;
Takashi Iwai51e41522011-11-03 16:54:06 +01001379 if (!nums) {
Takashi Iwai757899a2010-07-30 10:48:14 +02001380 spec->multiout.dig_out_nid = dig_nid;
1381 spec->dig_out_type = spec->autocfg.dig_out_type[0];
1382 } else {
1383 spec->multiout.slave_dig_outs = spec->slave_dig_outs;
Takashi Iwai51e41522011-11-03 16:54:06 +01001384 if (nums >= ARRAY_SIZE(spec->slave_dig_outs) - 1)
Takashi Iwai757899a2010-07-30 10:48:14 +02001385 break;
Takashi Iwai51e41522011-11-03 16:54:06 +01001386 spec->slave_dig_outs[nums - 1] = dig_nid;
Takashi Iwai757899a2010-07-30 10:48:14 +02001387 }
Takashi Iwai51e41522011-11-03 16:54:06 +01001388 nums++;
Takashi Iwai757899a2010-07-30 10:48:14 +02001389 }
1390
1391 if (spec->autocfg.dig_in_pin) {
Takashi Iwai01fdf182010-09-24 09:09:42 +02001392 dig_nid = codec->start_nid;
1393 for (i = 0; i < codec->num_nodes; i++, dig_nid++) {
Takashi Iwaidf1d1fb2012-12-18 11:55:53 +01001394 struct nid_path *path;
Takashi Iwai01fdf182010-09-24 09:09:42 +02001395 unsigned int wcaps = get_wcaps(codec, dig_nid);
1396 if (get_wcaps_type(wcaps) != AC_WID_AUD_IN)
1397 continue;
1398 if (!(wcaps & AC_WCAP_DIGITAL))
1399 continue;
Takashi Iwaidf1d1fb2012-12-18 11:55:53 +01001400 path = add_new_nid_path(codec, spec->autocfg.dig_in_pin,
1401 dig_nid, 2);
1402 if (path) {
1403 path->active = true;
Takashi Iwai01fdf182010-09-24 09:09:42 +02001404 spec->dig_in_nid = dig_nid;
1405 break;
1406 }
1407 }
Takashi Iwai757899a2010-07-30 10:48:14 +02001408 }
1409}
1410
Takashi Iwaif95474e2007-07-10 00:47:43 +02001411/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02001412 * capture mixer elements
Vincent Petryef8ef5f2008-11-23 11:31:41 +08001413 */
Takashi Iwai666a70d2012-12-17 20:29:29 +01001414#define alc_cap_vol_info snd_hda_mixer_amp_volume_info
1415#define alc_cap_vol_get snd_hda_mixer_amp_volume_get
1416#define alc_cap_vol_tlv snd_hda_mixer_amp_tlv
1417
1418typedef int (*put_call_t)(struct snd_kcontrol *kcontrol,
1419 struct snd_ctl_elem_value *ucontrol);
1420
1421static int alc_cap_put_caller(struct snd_kcontrol *kcontrol,
1422 struct snd_ctl_elem_value *ucontrol,
1423 put_call_t func, int type)
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001424{
1425 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1426 struct alc_spec *spec = codec->spec;
Takashi Iwai666a70d2012-12-17 20:29:29 +01001427 const struct hda_input_mux *imux;
1428 struct nid_path *path;
1429 int i, adc_idx, err = 0;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001430
Takashi Iwai27d31532012-12-18 08:57:05 +01001431 imux = &spec->input_mux;
Takashi Iwai666a70d2012-12-17 20:29:29 +01001432 adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001433 mutex_lock(&codec->control_mutex);
Takashi Iwai666a70d2012-12-17 20:29:29 +01001434 codec->cached_write = 1;
1435 for (i = 0; i < imux->num_items; i++) {
1436 path = get_nid_path(codec, spec->imux_pins[i],
1437 get_adc_nid(codec, adc_idx, i));
1438 if (!path->ctls[type])
1439 continue;
1440 kcontrol->private_value = path->ctls[type];
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001441 err = func(kcontrol, ucontrol);
Takashi Iwai666a70d2012-12-17 20:29:29 +01001442 if (err < 0)
1443 goto error;
Takashi Iwai9c7a0832011-07-07 09:25:54 +02001444 }
1445 error:
Takashi Iwai666a70d2012-12-17 20:29:29 +01001446 codec->cached_write = 0;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001447 mutex_unlock(&codec->control_mutex);
Takashi Iwai666a70d2012-12-17 20:29:29 +01001448 snd_hda_codec_resume_amp(codec);
1449 if (err >= 0 && type == NID_PATH_MUTE_CTL &&
1450 spec->inv_dmic_fixup && spec->inv_dmic_muted)
1451 alc_inv_dmic_sync_adc(codec, adc_idx);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001452 return err;
1453}
1454
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001455static int alc_cap_vol_put(struct snd_kcontrol *kcontrol,
1456 struct snd_ctl_elem_value *ucontrol)
1457{
Takashi Iwai666a70d2012-12-17 20:29:29 +01001458 return alc_cap_put_caller(kcontrol, ucontrol,
1459 snd_hda_mixer_amp_volume_put,
1460 NID_PATH_VOL_CTL);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001461}
1462
1463/* capture mixer elements */
1464#define alc_cap_sw_info snd_ctl_boolean_stereo_info
Takashi Iwai666a70d2012-12-17 20:29:29 +01001465#define alc_cap_sw_get snd_hda_mixer_amp_switch_get
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001466
1467static int alc_cap_sw_put(struct snd_kcontrol *kcontrol,
1468 struct snd_ctl_elem_value *ucontrol)
1469{
Takashi Iwai666a70d2012-12-17 20:29:29 +01001470 return alc_cap_put_caller(kcontrol, ucontrol,
1471 snd_hda_mixer_amp_switch_put,
1472 NID_PATH_MUTE_CTL);
Takashi Iwaif9e336f2008-10-31 16:37:07 +01001473}
1474
Takashi Iwai666a70d2012-12-17 20:29:29 +01001475static void alc_inv_dmic_sync_adc(struct hda_codec *codec, int adc_idx)
1476{
1477 struct alc_spec *spec = codec->spec;
Takashi Iwai27d31532012-12-18 08:57:05 +01001478 struct hda_input_mux *imux = &spec->input_mux;
Takashi Iwai666a70d2012-12-17 20:29:29 +01001479 struct nid_path *path;
1480 hda_nid_t nid;
1481 int i, dir, parm;
1482 unsigned int val;
1483
1484 for (i = 0; i < imux->num_items; i++) {
1485 if (spec->imux_pins[i] == spec->inv_dmic_pin)
1486 break;
Takashi Iwaia23b6882009-03-23 15:21:36 +01001487 }
Takashi Iwai666a70d2012-12-17 20:29:29 +01001488 if (i >= imux->num_items)
1489 return;
Takashi Iwaia23b6882009-03-23 15:21:36 +01001490
Takashi Iwai666a70d2012-12-17 20:29:29 +01001491 path = get_nid_path(codec, spec->inv_dmic_pin,
1492 get_adc_nid(codec, adc_idx, i));
1493 val = path->ctls[NID_PATH_MUTE_CTL];
1494 if (!val)
1495 return;
1496 nid = get_amp_nid_(val);
1497 dir = get_amp_direction_(val);
1498 parm = AC_AMP_SET_RIGHT |
1499 (dir == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT);
Takashi Iwaia23b6882009-03-23 15:21:36 +01001500
Takashi Iwai666a70d2012-12-17 20:29:29 +01001501 /* we care only right channel */
1502 val = snd_hda_codec_amp_read(codec, nid, 1, dir, 0);
1503 if (val & 0x80) /* if already muted, we don't need to touch */
1504 return;
1505 val |= 0x80;
1506 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1507 parm | val);
Takashi Iwaia23b6882009-03-23 15:21:36 +01001508}
1509
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001510/*
Takashi Iwai125821a2012-06-22 14:30:29 +02001511 * Inverted digital-mic handling
1512 *
1513 * First off, it's a bit tricky. The "Inverted Internal Mic Capture Switch"
1514 * gives the additional mute only to the right channel of the digital mic
1515 * capture stream. This is a workaround for avoiding the almost silence
1516 * by summing the stereo stream from some (known to be ForteMedia)
1517 * digital mic unit.
1518 *
1519 * The logic is to call alc_inv_dmic_sync() after each action (possibly)
1520 * modifying ADC amp. When the mute flag is set, it mutes the R-channel
1521 * without caching so that the cache can still keep the original value.
1522 * The cached value is then restored when the flag is set off or any other
1523 * than d-mic is used as the current input source.
1524 */
1525static void alc_inv_dmic_sync(struct hda_codec *codec, bool force)
1526{
1527 struct alc_spec *spec = codec->spec;
Takashi Iwai666a70d2012-12-17 20:29:29 +01001528 int src, nums;
Takashi Iwai125821a2012-06-22 14:30:29 +02001529
1530 if (!spec->inv_dmic_fixup)
1531 return;
1532 if (!spec->inv_dmic_muted && !force)
1533 return;
Takashi Iwai666a70d2012-12-17 20:29:29 +01001534 nums = spec->dyn_adc_switch ? 1 : spec->num_adc_nids;
1535 for (src = 0; src < nums; src++) {
Takashi Iwai125821a2012-06-22 14:30:29 +02001536 bool dmic_fixup = false;
Takashi Iwai125821a2012-06-22 14:30:29 +02001537
1538 if (spec->inv_dmic_muted &&
1539 spec->imux_pins[spec->cur_mux[src]] == spec->inv_dmic_pin)
1540 dmic_fixup = true;
1541 if (!dmic_fixup && !force)
1542 continue;
Takashi Iwai666a70d2012-12-17 20:29:29 +01001543 alc_inv_dmic_sync_adc(codec, src);
Takashi Iwai125821a2012-06-22 14:30:29 +02001544 }
1545}
1546
1547static int alc_inv_dmic_sw_get(struct snd_kcontrol *kcontrol,
1548 struct snd_ctl_elem_value *ucontrol)
1549{
1550 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1551 struct alc_spec *spec = codec->spec;
1552
1553 ucontrol->value.integer.value[0] = !spec->inv_dmic_muted;
1554 return 0;
1555}
1556
1557static int alc_inv_dmic_sw_put(struct snd_kcontrol *kcontrol,
1558 struct snd_ctl_elem_value *ucontrol)
1559{
1560 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1561 struct alc_spec *spec = codec->spec;
1562 unsigned int val = !ucontrol->value.integer.value[0];
1563
1564 if (val == spec->inv_dmic_muted)
1565 return 0;
1566 spec->inv_dmic_muted = val;
1567 alc_inv_dmic_sync(codec, true);
1568 return 0;
1569}
1570
1571static const struct snd_kcontrol_new alc_inv_dmic_sw = {
1572 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Takashi Iwaibc549762012-12-18 15:35:11 +01001573 .name = "Inverted Internal Mic Capture Switch",
Takashi Iwai125821a2012-06-22 14:30:29 +02001574 .info = snd_ctl_boolean_mono_info,
1575 .get = alc_inv_dmic_sw_get,
1576 .put = alc_inv_dmic_sw_put,
1577};
1578
1579static int alc_add_inv_dmic_mixer(struct hda_codec *codec, hda_nid_t nid)
1580{
1581 struct alc_spec *spec = codec->spec;
Takashi Iwai668d1e92012-11-29 14:10:17 +01001582
Takashi Iwaibc549762012-12-18 15:35:11 +01001583 if (!alc_kcontrol_new(spec, NULL, &alc_inv_dmic_sw))
Takashi Iwai125821a2012-06-22 14:30:29 +02001584 return -ENOMEM;
1585 spec->inv_dmic_fixup = 1;
1586 spec->inv_dmic_muted = 0;
1587 spec->inv_dmic_pin = nid;
1588 return 0;
1589}
1590
Takashi Iwai6e72aa52012-06-25 10:52:25 +02001591/* typically the digital mic is put at node 0x12 */
1592static void alc_fixup_inv_dmic_0x12(struct hda_codec *codec,
1593 const struct alc_fixup *fix, int action)
1594{
1595 if (action == ALC_FIXUP_ACT_PROBE)
1596 alc_add_inv_dmic_mixer(codec, 0x12);
1597}
1598
Takashi Iwai125821a2012-06-22 14:30:29 +02001599/*
Takashi Iwai2134ea42008-01-10 16:53:55 +01001600 * virtual master controls
1601 */
1602
1603/*
1604 * slave controls for virtual master
1605 */
Takashi Iwai9322ca52012-02-03 14:28:01 +01001606static const char * const alc_slave_pfxs[] = {
1607 "Front", "Surround", "Center", "LFE", "Side",
Takashi Iwai7c589752012-03-02 09:00:33 +01001608 "Headphone", "Speaker", "Mono", "Line Out",
Takashi Iwai9322ca52012-02-03 14:28:01 +01001609 "CLFE", "Bass Speaker", "PCM",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001610 NULL,
1611};
1612
1613/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001614 * build control elements
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 */
Takashi Iwai603c4012008-07-30 15:01:44 +02001616
1617static void alc_free_kctls(struct hda_codec *codec);
1618
Takashi Iwai67d634c2009-11-16 15:35:59 +01001619#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001620/* additional beep mixers; the actual parameters are overwritten at build */
Takashi Iwaia9111322011-05-02 11:30:18 +02001621static const struct snd_kcontrol_new alc_beep_mixer[] = {
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001622 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
Jaroslav Kysela123c07a2009-10-21 14:48:23 +02001623 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001624 { } /* end */
1625};
Takashi Iwai67d634c2009-11-16 15:35:59 +01001626#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001627
Takashi Iwai2eab6942012-12-18 15:30:41 +01001628static int alc_build_controls(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629{
1630 struct alc_spec *spec = codec->spec;
Takashi Iwai666a70d2012-12-17 20:29:29 +01001631 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 for (i = 0; i < spec->num_mixers; i++) {
1634 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1635 if (err < 0)
1636 return err;
1637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 if (spec->multiout.dig_out_nid) {
Takashi Iwaidcda5802012-10-12 17:24:51 +02001639 err = snd_hda_create_dig_out_ctls(codec,
1640 spec->multiout.dig_out_nid,
1641 spec->multiout.dig_out_nid,
1642 spec->pcm_rec[1].pcm_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 if (err < 0)
1644 return err;
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001645 if (!spec->no_analog) {
1646 err = snd_hda_create_spdif_share_sw(codec,
1647 &spec->multiout);
1648 if (err < 0)
1649 return err;
1650 spec->multiout.share_spdif = 1;
1651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 }
1653 if (spec->dig_in_nid) {
1654 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1655 if (err < 0)
1656 return err;
1657 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001658
Takashi Iwai67d634c2009-11-16 15:35:59 +01001659#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001660 /* create beep controls if needed */
1661 if (spec->beep_amp) {
Takashi Iwaia9111322011-05-02 11:30:18 +02001662 const struct snd_kcontrol_new *knew;
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001663 for (knew = alc_beep_mixer; knew->name; knew++) {
1664 struct snd_kcontrol *kctl;
1665 kctl = snd_ctl_new1(knew, codec);
1666 if (!kctl)
1667 return -ENOMEM;
1668 kctl->private_value = spec->beep_amp;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001669 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001670 if (err < 0)
1671 return err;
1672 }
1673 }
Takashi Iwai67d634c2009-11-16 15:35:59 +01001674#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +01001675
Takashi Iwai2134ea42008-01-10 16:53:55 +01001676 /* if we have no master control, let's create it */
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001677 if (!spec->no_analog &&
1678 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001679 unsigned int vmaster_tlv[4];
Takashi Iwai2134ea42008-01-10 16:53:55 +01001680 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001681 HDA_OUTPUT, vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001682 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
Takashi Iwai9322ca52012-02-03 14:28:01 +01001683 vmaster_tlv, alc_slave_pfxs,
1684 "Playback Volume");
Takashi Iwai2134ea42008-01-10 16:53:55 +01001685 if (err < 0)
1686 return err;
1687 }
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001688 if (!spec->no_analog &&
1689 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
Takashi Iwai420b0fe2012-03-12 12:35:27 +01001690 err = __snd_hda_add_vmaster(codec, "Master Playback Switch",
1691 NULL, alc_slave_pfxs,
1692 "Playback Switch",
Takashi Iwaid2f344b2012-03-12 16:59:58 +01001693 true, &spec->vmaster_mute.sw_kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001694 if (err < 0)
1695 return err;
Takashi Iwai3bd7b642012-12-18 14:57:09 +01001696 if (spec->vmaster_mute.hook)
1697 snd_hda_add_vmaster_hook(codec, &spec->vmaster_mute, true);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001698 }
1699
Takashi Iwaibae84e72010-03-22 08:30:20 +01001700 alc_free_kctls(codec); /* no longer needed */
1701
David Henningsson5780b622012-06-27 18:45:45 +02001702 if (spec->shared_mic_hp) {
1703 int err;
1704 int nid = spec->autocfg.inputs[1].pin;
1705 err = snd_hda_jack_add_kctl(codec, nid, "Headphone Mic", 0);
1706 if (err < 0)
1707 return err;
1708 err = snd_hda_jack_detect_enable(codec, nid, 0);
1709 if (err < 0)
1710 return err;
1711 }
1712
Takashi Iwai2eab6942012-12-18 15:30:41 +01001713 err = snd_hda_jack_add_kctls(codec, &spec->autocfg);
Takashi Iwai01a61e12011-10-28 00:03:22 +02001714 if (err < 0)
1715 return err;
David Henningsson5780b622012-06-27 18:45:45 +02001716
Takashi Iwai420b0fe2012-03-12 12:35:27 +01001717 alc_apply_fixup(codec, ALC_FIXUP_ACT_BUILD);
1718 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719}
1720
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722/*
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001723 * Common callbacks
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001724 */
Takashi Iwai16ded522005-06-10 19:58:24 +02001725
Takashi Iwai070cff42012-02-21 12:54:17 +01001726static void alc_auto_init_std(struct hda_codec *codec);
Takashi Iwai584c0c42011-03-10 12:51:11 +01001727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728static int alc_init(struct hda_codec *codec)
1729{
1730 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001731
Takashi Iwai546bb672012-03-07 08:37:19 +01001732 if (spec->init_hook)
1733 spec->init_hook(codec);
Kailang Yang526af6e2012-03-07 08:25:20 +01001734
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02001735 alc_fix_pll(codec);
Takashi Iwai4a79ba32009-04-22 16:31:35 +02001736 alc_auto_init_amp(codec, spec->init_amp);
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02001737
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01001738 snd_hda_apply_verbs(codec);
Takashi Iwai070cff42012-02-21 12:54:17 +01001739 alc_auto_init_std(codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001740
Takashi Iwai3bd7b642012-12-18 14:57:09 +01001741 if (spec->vmaster_mute.sw_kctl && spec->vmaster_mute.hook)
1742 snd_hda_sync_vmaster_hook(&spec->vmaster_mute);
1743
Takashi Iwai58701122011-01-13 15:41:45 +01001744 alc_apply_fixup(codec, ALC_FIXUP_ACT_INIT);
1745
Takashi Iwai9e5341b2010-09-21 09:57:06 +02001746 hda_call_check_power_status(codec, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 return 0;
1748}
1749
Takashi Iwai83012a72012-08-24 18:38:08 +02001750#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +02001751static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
1752{
1753 struct alc_spec *spec = codec->spec;
1754 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
1755}
1756#endif
1757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758/*
1759 * Analog playback callbacks
1760 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001761static int alc_playback_pcm_open(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001763 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764{
1765 struct alc_spec *spec = codec->spec;
Takashi Iwai9a081602008-02-12 18:37:26 +01001766 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
1767 hinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768}
1769
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001770static int alc_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 struct hda_codec *codec,
1772 unsigned int stream_tag,
1773 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001774 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
1776 struct alc_spec *spec = codec->spec;
Takashi Iwai9c7f8522006-06-28 15:08:22 +02001777 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
1778 stream_tag, format, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779}
1780
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001781static int alc_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001783 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
1785 struct alc_spec *spec = codec->spec;
1786 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
1787}
1788
1789/*
1790 * Digital out
1791 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001792static int alc_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001794 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
1796 struct alc_spec *spec = codec->spec;
1797 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
1798}
1799
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001800static int alc_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai6b97eb42007-04-05 14:51:48 +02001801 struct hda_codec *codec,
1802 unsigned int stream_tag,
1803 unsigned int format,
1804 struct snd_pcm_substream *substream)
1805{
1806 struct alc_spec *spec = codec->spec;
1807 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
1808 stream_tag, format, substream);
1809}
1810
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001811static int alc_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
Takashi Iwai9b5f12e2009-02-13 11:47:37 +01001812 struct hda_codec *codec,
1813 struct snd_pcm_substream *substream)
1814{
1815 struct alc_spec *spec = codec->spec;
1816 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
1817}
1818
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001819static int alc_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001821 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
1823 struct alc_spec *spec = codec->spec;
1824 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
1825}
1826
1827/*
1828 * Analog capture
1829 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001830static int alc_alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 struct hda_codec *codec,
1832 unsigned int stream_tag,
1833 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001834 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
1836 struct alc_spec *spec = codec->spec;
1837
Takashi Iwai63300792008-01-24 15:31:36 +01001838 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 stream_tag, 0, format);
1840 return 0;
1841}
1842
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001843static int alc_alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001845 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
1847 struct alc_spec *spec = codec->spec;
1848
Takashi Iwai888afa12008-03-18 09:57:50 +01001849 snd_hda_codec_cleanup_stream(codec,
1850 spec->adc_nids[substream->number + 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 return 0;
1852}
1853
Takashi Iwai840b64c2010-07-13 22:49:01 +02001854/* analog capture with dynamic dual-adc changes */
Takashi Iwai21268962011-07-07 15:01:13 +02001855static int dyn_adc_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai840b64c2010-07-13 22:49:01 +02001856 struct hda_codec *codec,
1857 unsigned int stream_tag,
1858 unsigned int format,
1859 struct snd_pcm_substream *substream)
1860{
1861 struct alc_spec *spec = codec->spec;
Takashi Iwai21268962011-07-07 15:01:13 +02001862 spec->cur_adc = spec->adc_nids[spec->dyn_adc_idx[spec->cur_mux[0]]];
Takashi Iwai840b64c2010-07-13 22:49:01 +02001863 spec->cur_adc_stream_tag = stream_tag;
1864 spec->cur_adc_format = format;
1865 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
1866 return 0;
1867}
1868
Takashi Iwai21268962011-07-07 15:01:13 +02001869static int dyn_adc_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
Takashi Iwai840b64c2010-07-13 22:49:01 +02001870 struct hda_codec *codec,
1871 struct snd_pcm_substream *substream)
1872{
1873 struct alc_spec *spec = codec->spec;
1874 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
1875 spec->cur_adc = 0;
1876 return 0;
1877}
1878
Takashi Iwai21268962011-07-07 15:01:13 +02001879static const struct hda_pcm_stream dyn_adc_pcm_analog_capture = {
Takashi Iwai840b64c2010-07-13 22:49:01 +02001880 .substreams = 1,
1881 .channels_min = 2,
1882 .channels_max = 2,
1883 .nid = 0, /* fill later */
1884 .ops = {
Takashi Iwai21268962011-07-07 15:01:13 +02001885 .prepare = dyn_adc_capture_pcm_prepare,
1886 .cleanup = dyn_adc_capture_pcm_cleanup
Takashi Iwai840b64c2010-07-13 22:49:01 +02001887 },
1888};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890/*
1891 */
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001892static const struct hda_pcm_stream alc_pcm_analog_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 .substreams = 1,
1894 .channels_min = 2,
1895 .channels_max = 8,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001896 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001898 .open = alc_playback_pcm_open,
1899 .prepare = alc_playback_pcm_prepare,
1900 .cleanup = alc_playback_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 },
1902};
1903
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001904static const struct hda_pcm_stream alc_pcm_analog_capture = {
Takashi Iwai63300792008-01-24 15:31:36 +01001905 .substreams = 1,
1906 .channels_min = 2,
1907 .channels_max = 2,
1908 /* NID is set in alc_build_pcms */
1909};
1910
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001911static const struct hda_pcm_stream alc_pcm_analog_alt_playback = {
Takashi Iwai63300792008-01-24 15:31:36 +01001912 .substreams = 1,
1913 .channels_min = 2,
1914 .channels_max = 2,
1915 /* NID is set in alc_build_pcms */
1916};
1917
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001918static const struct hda_pcm_stream alc_pcm_analog_alt_capture = {
Takashi Iwai63300792008-01-24 15:31:36 +01001919 .substreams = 2, /* can be overridden */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 .channels_min = 2,
1921 .channels_max = 2,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001922 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001924 .prepare = alc_alt_capture_pcm_prepare,
1925 .cleanup = alc_alt_capture_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 },
1927};
1928
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001929static const struct hda_pcm_stream alc_pcm_digital_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 .substreams = 1,
1931 .channels_min = 2,
1932 .channels_max = 2,
1933 /* NID is set in alc_build_pcms */
1934 .ops = {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001935 .open = alc_dig_playback_pcm_open,
1936 .close = alc_dig_playback_pcm_close,
1937 .prepare = alc_dig_playback_pcm_prepare,
1938 .cleanup = alc_dig_playback_pcm_cleanup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 },
1940};
1941
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001942static const struct hda_pcm_stream alc_pcm_digital_capture = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 .substreams = 1,
1944 .channels_min = 2,
1945 .channels_max = 2,
1946 /* NID is set in alc_build_pcms */
1947};
1948
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01001949/* Used by alc_build_pcms to flag that a PCM has no playback stream */
Takashi Iwaia9111322011-05-02 11:30:18 +02001950static const struct hda_pcm_stream alc_pcm_null_stream = {
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01001951 .substreams = 0,
1952 .channels_min = 0,
1953 .channels_max = 0,
1954};
1955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956static int alc_build_pcms(struct hda_codec *codec)
1957{
1958 struct alc_spec *spec = codec->spec;
1959 struct hda_pcm *info = spec->pcm_rec;
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001960 const struct hda_pcm_stream *p;
Takashi Iwai1fa17572011-11-02 21:30:51 +01001961 bool have_multi_adcs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 int i;
1963
1964 codec->num_pcms = 1;
1965 codec->pcm_info = info;
1966
Takashi Iwaie64f14f2009-01-20 18:32:55 +01001967 if (spec->no_analog)
1968 goto skip_analog;
1969
Takashi Iwai812a2cc2009-05-16 10:00:49 +02001970 snprintf(spec->stream_name_analog, sizeof(spec->stream_name_analog),
1971 "%s Analog", codec->chip_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 info->name = spec->stream_name_analog;
Kailang Yang274693f2009-12-03 10:07:50 +01001973
Takashi Iwaieedec3d2012-02-06 10:24:04 +01001974 if (spec->multiout.num_dacs > 0) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001975 p = spec->stream_analog_playback;
1976 if (!p)
1977 p = &alc_pcm_analog_playback;
1978 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Takashi Iwai4a471b72005-12-07 13:56:29 +01001979 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
Takashi Iwai9c9a5172012-07-31 11:35:35 +02001980 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
1981 spec->multiout.max_channels;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01001982 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT &&
1983 spec->autocfg.line_outs == 2)
1984 info->stream[SNDRV_PCM_STREAM_PLAYBACK].chmap =
1985 snd_pcm_2_1_chmaps;
Takashi Iwai4a471b72005-12-07 13:56:29 +01001986 }
Takashi Iwai27d31532012-12-18 08:57:05 +01001987 if (spec->num_adc_nids) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001988 p = spec->stream_analog_capture;
Takashi Iwai21268962011-07-07 15:01:13 +02001989 if (!p) {
1990 if (spec->dyn_adc_switch)
1991 p = &dyn_adc_pcm_analog_capture;
1992 else
1993 p = &alc_pcm_analog_capture;
1994 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02001995 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Takashi Iwai4a471b72005-12-07 13:56:29 +01001996 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
1997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Takashi Iwai4a471b72005-12-07 13:56:29 +01001999 if (spec->channel_mode) {
2000 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2001 for (i = 0; i < spec->num_channel_mode; i++) {
2002 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2003 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 }
2006 }
2007
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002008 skip_analog:
Takashi Iwaie08a0072006-09-07 17:52:14 +02002009 /* SPDIF for stream index #1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
Takashi Iwai812a2cc2009-05-16 10:00:49 +02002011 snprintf(spec->stream_name_digital,
2012 sizeof(spec->stream_name_digital),
2013 "%s Digital", codec->chip_name);
Takashi Iwaie08a0072006-09-07 17:52:14 +02002014 codec->num_pcms = 2;
Wu Fengguangb25c9da2009-02-06 15:02:27 +08002015 codec->slave_dig_outs = spec->multiout.slave_dig_outs;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002016 info = spec->pcm_rec + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 info->name = spec->stream_name_digital;
Takashi Iwai8c441982009-01-20 18:30:20 +01002018 if (spec->dig_out_type)
2019 info->pcm_type = spec->dig_out_type;
2020 else
2021 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002022 if (spec->multiout.dig_out_nid) {
2023 p = spec->stream_digital_playback;
2024 if (!p)
2025 p = &alc_pcm_digital_playback;
2026 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2028 }
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002029 if (spec->dig_in_nid) {
2030 p = spec->stream_digital_capture;
2031 if (!p)
2032 p = &alc_pcm_digital_capture;
2033 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2035 }
Takashi Iwai963f8032008-08-11 10:04:40 +02002036 /* FIXME: do we need this for all Realtek codec models? */
2037 codec->spdif_status_reset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 }
2039
Takashi Iwaie64f14f2009-01-20 18:32:55 +01002040 if (spec->no_analog)
2041 return 0;
2042
Takashi Iwaie08a0072006-09-07 17:52:14 +02002043 /* If the use of more than one ADC is requested for the current
2044 * model, configure a second analog capture-only PCM.
2045 */
Takashi Iwai1fa17572011-11-02 21:30:51 +01002046 have_multi_adcs = (spec->num_adc_nids > 1) &&
Takashi Iwai27d31532012-12-18 08:57:05 +01002047 !spec->dyn_adc_switch && !spec->auto_mic;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002048 /* Additional Analaog capture for index #2 */
Takashi Iwai1fa17572011-11-02 21:30:51 +01002049 if (spec->alt_dac_nid || have_multi_adcs) {
Takashi Iwaie08a0072006-09-07 17:52:14 +02002050 codec->num_pcms = 3;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002051 info = spec->pcm_rec + 2;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002052 info->name = spec->stream_name_analog;
Takashi Iwai63300792008-01-24 15:31:36 +01002053 if (spec->alt_dac_nid) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002054 p = spec->stream_analog_alt_playback;
2055 if (!p)
2056 p = &alc_pcm_analog_alt_playback;
2057 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
Takashi Iwai63300792008-01-24 15:31:36 +01002058 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2059 spec->alt_dac_nid;
2060 } else {
2061 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2062 alc_pcm_null_stream;
2063 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2064 }
Takashi Iwai1fa17572011-11-02 21:30:51 +01002065 if (have_multi_adcs) {
Takashi Iwaic2d986b2011-07-06 18:30:08 +02002066 p = spec->stream_analog_alt_capture;
2067 if (!p)
2068 p = &alc_pcm_analog_alt_capture;
2069 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
Takashi Iwai63300792008-01-24 15:31:36 +01002070 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
2071 spec->adc_nids[1];
2072 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
2073 spec->num_adc_nids - 1;
2074 } else {
2075 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2076 alc_pcm_null_stream;
2077 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002078 }
2079 }
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 return 0;
2082}
2083
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002084static inline void alc_shutup(struct hda_codec *codec)
2085{
Takashi Iwai1c716152011-04-07 10:37:16 +02002086 struct alc_spec *spec = codec->spec;
2087
2088 if (spec && spec->shutup)
2089 spec->shutup(codec);
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002090 snd_hda_shutup_pins(codec);
2091}
2092
Takashi Iwai603c4012008-07-30 15:01:44 +02002093static void alc_free_kctls(struct hda_codec *codec)
2094{
2095 struct alc_spec *spec = codec->spec;
2096
2097 if (spec->kctls.list) {
2098 struct snd_kcontrol_new *kctl = spec->kctls.list;
2099 int i;
2100 for (i = 0; i < spec->kctls.used; i++)
2101 kfree(kctl[i].name);
2102 }
2103 snd_array_free(&spec->kctls);
2104}
2105
Takashi Iwai23c09b02011-08-19 09:05:35 +02002106static void alc_free_bind_ctls(struct hda_codec *codec)
2107{
2108 struct alc_spec *spec = codec->spec;
2109 if (spec->bind_ctls.list) {
2110 struct hda_bind_ctls **ctl = spec->bind_ctls.list;
2111 int i;
2112 for (i = 0; i < spec->bind_ctls.used; i++)
2113 kfree(ctl[i]);
2114 }
2115 snd_array_free(&spec->bind_ctls);
2116}
2117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118static void alc_free(struct hda_codec *codec)
2119{
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002120 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002121
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002122 if (!spec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002123 return;
2124
Takashi Iwai603c4012008-07-30 15:01:44 +02002125 alc_free_kctls(codec);
Takashi Iwai23c09b02011-08-19 09:05:35 +02002126 alc_free_bind_ctls(codec);
Takashi Iwaic9967f12012-12-14 16:39:22 +01002127 snd_array_free(&spec->paths);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002128 kfree(spec);
Kusanagi Kouichi680cd532009-02-05 00:00:58 +09002129 snd_hda_detach_beep_device(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130}
2131
Takashi Iwai83012a72012-08-24 18:38:08 +02002132#ifdef CONFIG_PM
Daniel T Chenc97259d2009-12-27 18:52:08 -05002133static void alc_power_eapd(struct hda_codec *codec)
2134{
Takashi Iwai691f1fc2011-04-07 10:31:43 +02002135 alc_auto_setup_eapd(codec, false);
Daniel T Chenc97259d2009-12-27 18:52:08 -05002136}
2137
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002138static int alc_suspend(struct hda_codec *codec)
Hector Martinf5de24b2009-12-20 22:51:31 +01002139{
2140 struct alc_spec *spec = codec->spec;
Takashi Iwaia4e09aa2009-12-27 11:22:24 +01002141 alc_shutup(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +01002142 if (spec && spec->power_hook)
Daniel T Chenc97259d2009-12-27 18:52:08 -05002143 spec->power_hook(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +01002144 return 0;
2145}
2146#endif
2147
Takashi Iwai2a439522011-07-26 09:52:50 +02002148#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +01002149static int alc_resume(struct hda_codec *codec)
2150{
Takashi Iwai1c716152011-04-07 10:37:16 +02002151 msleep(150); /* to avoid pop noise */
Takashi Iwaie044c392008-10-27 16:56:24 +01002152 codec->patch_ops.init(codec);
2153 snd_hda_codec_resume_amp(codec);
2154 snd_hda_codec_resume_cache(codec);
Takashi Iwai125821a2012-06-22 14:30:29 +02002155 alc_inv_dmic_sync(codec, true);
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002156 hda_call_check_power_status(codec, 0x01);
Takashi Iwaie044c392008-10-27 16:56:24 +01002157 return 0;
2158}
Takashi Iwaie044c392008-10-27 16:56:24 +01002159#endif
2160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161/*
2162 */
Takashi Iwaia9111322011-05-02 11:30:18 +02002163static const struct hda_codec_ops alc_patch_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 .build_controls = alc_build_controls,
2165 .build_pcms = alc_build_pcms,
2166 .init = alc_init,
2167 .free = alc_free,
David Henningsson29adc4b2012-09-25 11:31:00 +02002168 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwai2a439522011-07-26 09:52:50 +02002169#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +01002170 .resume = alc_resume,
2171#endif
Takashi Iwai83012a72012-08-24 18:38:08 +02002172#ifdef CONFIG_PM
Hector Martinf5de24b2009-12-20 22:51:31 +01002173 .suspend = alc_suspend,
Takashi Iwaicb53c622007-08-10 17:21:45 +02002174 .check_power_status = alc_check_power_status,
2175#endif
Daniel T Chenc97259d2009-12-27 18:52:08 -05002176 .reboot_notify = alc_shutup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177};
2178
David Henningsson29adc4b2012-09-25 11:31:00 +02002179
Kailang Yangc027ddc2010-03-19 11:33:06 +01002180/* replace the codec chip_name with the given string */
2181static int alc_codec_rename(struct hda_codec *codec, const char *name)
2182{
2183 kfree(codec->chip_name);
2184 codec->chip_name = kstrdup(name, GFP_KERNEL);
2185 if (!codec->chip_name) {
2186 alc_free(codec);
2187 return -ENOMEM;
2188 }
2189 return 0;
2190}
2191
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002192/*
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002193 * Rename codecs appropriately from COEF value
2194 */
2195struct alc_codec_rename_table {
2196 unsigned int vendor_id;
2197 unsigned short coef_mask;
2198 unsigned short coef_bits;
2199 const char *name;
2200};
2201
2202static struct alc_codec_rename_table rename_tbl[] = {
2203 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
2204 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
2205 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
2206 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
2207 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
2208 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
2209 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
Kailang Yangadcc70b2012-05-25 08:08:38 +02002210 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002211 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
2212 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
2213 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
2214 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
2215 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
2216 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
2217 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
2218 { } /* terminator */
2219};
2220
2221static int alc_codec_rename_from_preset(struct hda_codec *codec)
2222{
2223 const struct alc_codec_rename_table *p;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002224
2225 for (p = rename_tbl; p->vendor_id; p++) {
2226 if (p->vendor_id != codec->vendor_id)
2227 continue;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02002228 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002229 return alc_codec_rename(codec, p->name);
2230 }
2231 return 0;
2232}
2233
2234/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002235 * Automatic parse of I/O pins from the BIOS configuration
2236 */
2237
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002238enum {
2239 ALC_CTL_WIDGET_VOL,
2240 ALC_CTL_WIDGET_MUTE,
2241 ALC_CTL_BIND_MUTE,
Takashi Iwai23c09b02011-08-19 09:05:35 +02002242 ALC_CTL_BIND_VOL,
2243 ALC_CTL_BIND_SW,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002244};
Takashi Iwai1d045db2011-07-07 18:23:21 +02002245static const struct snd_kcontrol_new alc_control_templates[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002246 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2247 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Takashi Iwai985be542005-11-02 18:26:49 +01002248 HDA_BIND_MUTE(NULL, 0, 0, 0),
Takashi Iwai23c09b02011-08-19 09:05:35 +02002249 HDA_BIND_VOL(NULL, 0),
2250 HDA_BIND_SW(NULL, 0),
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002251};
2252
2253/* add dynamic controls */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002254static int add_control(struct alc_spec *spec, int type, const char *name,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002255 int cidx, unsigned long val)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002256{
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002257 struct snd_kcontrol_new *knew;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002258
Takashi Iwai668d1e92012-11-29 14:10:17 +01002259 knew = alc_kcontrol_new(spec, name, &alc_control_templates[type]);
Takashi Iwai603c4012008-07-30 15:01:44 +02002260 if (!knew)
2261 return -ENOMEM;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002262 knew->index = cidx;
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002263 if (get_amp_nid_(val))
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002264 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002265 knew->private_value = val;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002266 return 0;
2267}
2268
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002269static int add_control_with_pfx(struct alc_spec *spec, int type,
2270 const char *pfx, const char *dir,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002271 const char *sfx, int cidx, unsigned long val)
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002272{
2273 char name[32];
2274 snprintf(name, sizeof(name), "%s %s %s", pfx, dir, sfx);
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002275 return add_control(spec, type, name, cidx, val);
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002276}
2277
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002278#define add_pb_vol_ctrl(spec, type, pfx, val) \
2279 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val)
2280#define add_pb_sw_ctrl(spec, type, pfx, val) \
2281 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val)
2282#define __add_pb_vol_ctrl(spec, type, pfx, cidx, val) \
2283 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val)
2284#define __add_pb_sw_ctrl(spec, type, pfx, cidx, val) \
2285 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val)
Takashi Iwai0afe5f82009-10-02 09:20:00 +02002286
Takashi Iwai23c09b02011-08-19 09:05:35 +02002287static const char * const channel_name[4] = {
2288 "Front", "Surround", "CLFE", "Side"
2289};
2290
Takashi Iwai6843ca12011-06-24 11:03:58 +02002291static const char *alc_get_line_out_pfx(struct alc_spec *spec, int ch,
2292 bool can_be_master, int *index)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002293{
Takashi Iwaice764ab2011-04-27 16:35:23 +02002294 struct auto_pin_cfg *cfg = &spec->autocfg;
2295
Takashi Iwai6843ca12011-06-24 11:03:58 +02002296 *index = 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02002297 if (cfg->line_outs == 1 && !spec->multi_ios &&
2298 !cfg->hp_outs && !cfg->speaker_outs && can_be_master)
Takashi Iwai52a8efa2012-12-18 17:33:04 +01002299 return spec->vmaster_mute.hook ? "PCM" : "Master";
2300
2301 /* if there is really a single DAC used in the whole output paths,
2302 * use it master (or "PCM" if a vmaster hook is present)
2303 */
2304 if (spec->multiout.num_dacs == 1 && !spec->mixer_nid &&
2305 !spec->multiout.hp_out_nid[0] && !spec->multiout.extra_out_nid[0])
2306 return spec->vmaster_mute.hook ? "PCM" : "Master";
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002307
2308 switch (cfg->line_out_type) {
2309 case AUTO_PIN_SPEAKER_OUT:
David Henningssonebbeb3d2011-03-04 14:08:30 +01002310 if (cfg->line_outs == 1)
2311 return "Speaker";
Takashi Iwaifbabc242011-12-07 17:14:20 +01002312 if (cfg->line_outs == 2)
2313 return ch ? "Bass Speaker" : "Speaker";
David Henningssonebbeb3d2011-03-04 14:08:30 +01002314 break;
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002315 case AUTO_PIN_HP_OUT:
Takashi Iwai6843ca12011-06-24 11:03:58 +02002316 /* for multi-io case, only the primary out */
2317 if (ch && spec->multi_ios)
2318 break;
2319 *index = ch;
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002320 return "Headphone";
2321 default:
Takashi Iwaice764ab2011-04-27 16:35:23 +02002322 if (cfg->line_outs == 1 && !spec->multi_ios)
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002323 return "PCM";
2324 break;
2325 }
David Henningsson71aa5eb2012-10-17 12:43:44 +02002326 if (ch >= ARRAY_SIZE(channel_name)) {
2327 snd_BUG();
Takashi Iwai23c09b02011-08-19 09:05:35 +02002328 return "PCM";
David Henningsson71aa5eb2012-10-17 12:43:44 +02002329 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02002330
2331 return channel_name[ch];
Takashi Iwaibcb2f0f2011-01-10 15:45:23 +01002332}
2333
Takashi Iwai83012a72012-08-24 18:38:08 +02002334#ifdef CONFIG_PM
Takashi Iwai164f73e2012-02-21 11:27:09 +01002335/* add the powersave loopback-list entry */
2336static void add_loopback_list(struct alc_spec *spec, hda_nid_t mix, int idx)
2337{
2338 struct hda_amp_list *list;
2339
2340 if (spec->num_loopbacks >= ARRAY_SIZE(spec->loopback_list) - 1)
2341 return;
2342 list = spec->loopback_list + spec->num_loopbacks;
2343 list->nid = mix;
2344 list->dir = HDA_INPUT;
2345 list->idx = idx;
2346 spec->num_loopbacks++;
2347 spec->loopback.amplist = spec->loopback_list;
2348}
2349#else
2350#define add_loopback_list(spec, mix, idx) /* NOP */
2351#endif
2352
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002353/* create input playback/capture controls for the given pin */
Takashi Iwaic2fd19c2012-12-12 18:02:41 +01002354static int new_analog_input(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002355 const char *ctlname, int ctlidx,
Takashi Iwaic2fd19c2012-12-12 18:02:41 +01002356 hda_nid_t mix_nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002357{
Takashi Iwaic2fd19c2012-12-12 18:02:41 +01002358 struct alc_spec *spec = codec->spec;
2359 struct nid_path *path;
Takashi Iwai829f69e2012-12-14 18:26:02 +01002360 unsigned int val;
Takashi Iwaic2fd19c2012-12-12 18:02:41 +01002361 int err, idx;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002362
Takashi Iwaibd32f782012-12-12 18:08:52 +01002363 if (!nid_has_volume(codec, mix_nid, HDA_INPUT) &&
2364 !nid_has_mute(codec, mix_nid, HDA_INPUT))
2365 return 0; /* no need for analog loopback */
2366
Takashi Iwai965cceb2012-12-18 11:46:37 +01002367 path = add_new_nid_path(codec, pin, mix_nid, 2);
Takashi Iwaic2fd19c2012-12-12 18:02:41 +01002368 if (!path)
Takashi Iwaic2fd19c2012-12-12 18:02:41 +01002369 return -EINVAL;
2370
2371 idx = path->idx[path->depth - 1];
Takashi Iwaibd32f782012-12-12 18:08:52 +01002372 if (nid_has_volume(codec, mix_nid, HDA_INPUT)) {
Takashi Iwai829f69e2012-12-14 18:26:02 +01002373 val = HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT);
2374 err = __add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, ctlname, ctlidx, val);
Takashi Iwaibd32f782012-12-12 18:08:52 +01002375 if (err < 0)
2376 return err;
Takashi Iwai829f69e2012-12-14 18:26:02 +01002377 path->ctls[NID_PATH_VOL_CTL] = val;
Takashi Iwaibd32f782012-12-12 18:08:52 +01002378 }
2379
2380 if (nid_has_mute(codec, mix_nid, HDA_INPUT)) {
Takashi Iwai829f69e2012-12-14 18:26:02 +01002381 val = HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT);
2382 err = __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, ctlidx, val);
Takashi Iwaibd32f782012-12-12 18:08:52 +01002383 if (err < 0)
2384 return err;
Takashi Iwai829f69e2012-12-14 18:26:02 +01002385 path->ctls[NID_PATH_MUTE_CTL] = val;
Takashi Iwaibd32f782012-12-12 18:08:52 +01002386 }
2387
Takashi Iwai829f69e2012-12-14 18:26:02 +01002388 path->active = true;
Takashi Iwai164f73e2012-02-21 11:27:09 +01002389 add_loopback_list(spec, mix_nid, idx);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002390 return 0;
2391}
2392
Takashi Iwai05f5f472009-08-25 13:10:18 +02002393static int alc_is_input_pin(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002394{
Takashi Iwai05f5f472009-08-25 13:10:18 +02002395 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2396 return (pincap & AC_PINCAP_IN) != 0;
2397}
2398
Takashi Iwaic2fd19c2012-12-12 18:02:41 +01002399/* check whether the given two widgets can be connected */
2400static bool is_reachable_path(struct hda_codec *codec,
2401 hda_nid_t from_nid, hda_nid_t to_nid)
2402{
2403 if (!from_nid || !to_nid)
2404 return false;
2405 return snd_hda_get_conn_index(codec, to_nid, from_nid, true) >= 0;
2406}
2407
Takashi Iwai666a70d2012-12-17 20:29:29 +01002408/* Parse the codec tree and retrieve ADCs */
2409static int alc_auto_fill_adc_nids(struct hda_codec *codec)
Takashi Iwaib7821702011-07-06 15:12:46 +02002410{
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002411 struct alc_spec *spec = codec->spec;
Takashi Iwaib7821702011-07-06 15:12:46 +02002412 hda_nid_t nid;
Takashi Iwai27d31532012-12-18 08:57:05 +01002413 hda_nid_t *adc_nids = spec->adc_nids;
2414 int max_nums = ARRAY_SIZE(spec->adc_nids);
Takashi Iwaib7821702011-07-06 15:12:46 +02002415 int i, nums = 0;
2416
2417 nid = codec->start_nid;
2418 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwaib7821702011-07-06 15:12:46 +02002419 unsigned int caps = get_wcaps(codec, nid);
2420 int type = get_wcaps_type(caps);
2421
2422 if (type != AC_WID_AUD_IN || (caps & AC_WCAP_DIGITAL))
2423 continue;
2424 adc_nids[nums] = nid;
Takashi Iwaib7821702011-07-06 15:12:46 +02002425 if (++nums >= max_nums)
2426 break;
2427 }
Takashi Iwaid6cc9fab2011-07-06 16:38:42 +02002428 spec->num_adc_nids = nums;
Takashi Iwaib7821702011-07-06 15:12:46 +02002429 return nums;
2430}
2431
Takashi Iwai666a70d2012-12-17 20:29:29 +01002432/* filter out invalid adc_nids that don't give all active input pins;
2433 * if needed, check whether dynamic ADC-switching is available
2434 */
2435static int check_dyn_adc_switch(struct hda_codec *codec)
2436{
2437 struct alc_spec *spec = codec->spec;
Takashi Iwai27d31532012-12-18 08:57:05 +01002438 struct hda_input_mux *imux = &spec->input_mux;
2439 hda_nid_t adc_nids[ARRAY_SIZE(spec->adc_nids)];
Takashi Iwai666a70d2012-12-17 20:29:29 +01002440 int i, n, nums;
2441 hda_nid_t pin, adc;
2442
2443 again:
2444 nums = 0;
2445 for (n = 0; n < spec->num_adc_nids; n++) {
2446 adc = spec->adc_nids[n];
2447 for (i = 0; i < imux->num_items; i++) {
2448 pin = spec->imux_pins[i];
2449 if (!is_reachable_path(codec, pin, adc))
2450 break;
2451 }
2452 if (i >= imux->num_items)
2453 adc_nids[nums++] = adc;
2454 }
2455
2456 if (!nums) {
2457 if (spec->shared_mic_hp) {
2458 spec->shared_mic_hp = 0;
Takashi Iwai27d31532012-12-18 08:57:05 +01002459 imux->num_items = 1;
Takashi Iwai666a70d2012-12-17 20:29:29 +01002460 goto again;
2461 }
2462
2463 /* check whether ADC-switch is possible */
2464 for (i = 0; i < imux->num_items; i++) {
2465 pin = spec->imux_pins[i];
2466 for (n = 0; n < spec->num_adc_nids; n++) {
2467 adc = spec->adc_nids[n];
2468 if (is_reachable_path(codec, pin, adc)) {
2469 spec->dyn_adc_idx[i] = n;
2470 break;
2471 }
2472 }
2473 }
2474
2475 snd_printdd("realtek: enabling ADC switching\n");
2476 spec->dyn_adc_switch = 1;
2477 } else if (nums != spec->num_adc_nids) {
Takashi Iwai27d31532012-12-18 08:57:05 +01002478 memcpy(spec->adc_nids, adc_nids, nums * sizeof(hda_nid_t));
Takashi Iwai666a70d2012-12-17 20:29:29 +01002479 spec->num_adc_nids = nums;
2480 }
2481
Takashi Iwai27d31532012-12-18 08:57:05 +01002482 if (imux->num_items == 1 || spec->shared_mic_hp) {
Takashi Iwai666a70d2012-12-17 20:29:29 +01002483 snd_printdd("realtek: reducing to a single ADC\n");
2484 spec->num_adc_nids = 1; /* reduce to a single ADC */
2485 }
2486
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002487 /* single index for individual volumes ctls */
2488 if (!spec->dyn_adc_switch && spec->multi_cap_vol)
2489 spec->num_adc_nids = 1;
2490
Takashi Iwai666a70d2012-12-17 20:29:29 +01002491 return 0;
2492}
2493
2494/* templates for capture controls */
2495static const struct snd_kcontrol_new cap_src_temp = {
2496 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2497 .name = "Input Source",
2498 .info = alc_mux_enum_info,
2499 .get = alc_mux_enum_get,
2500 .put = alc_mux_enum_put,
2501};
2502
2503static const struct snd_kcontrol_new cap_vol_temp = {
2504 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2505 .name = "Capture Volume",
2506 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE |
2507 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
2508 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK),
2509 .info = alc_cap_vol_info,
2510 .get = alc_cap_vol_get,
2511 .put = alc_cap_vol_put,
2512 .tlv = { .c = alc_cap_vol_tlv },
2513};
2514
2515static const struct snd_kcontrol_new cap_sw_temp = {
2516 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2517 .name = "Capture Switch",
2518 .info = alc_cap_sw_info,
2519 .get = alc_cap_sw_get,
2520 .put = alc_cap_sw_put,
2521};
2522
2523static int parse_capvol_in_path(struct hda_codec *codec, struct nid_path *path)
2524{
2525 hda_nid_t nid;
2526 int i, depth;
2527
2528 path->ctls[NID_PATH_VOL_CTL] = path->ctls[NID_PATH_MUTE_CTL] = 0;
2529 for (depth = 0; depth < 3; depth++) {
2530 if (depth >= path->depth)
2531 return -EINVAL;
2532 i = path->depth - depth - 1;
2533 nid = path->path[i];
2534 if (!path->ctls[NID_PATH_VOL_CTL]) {
2535 if (nid_has_volume(codec, nid, HDA_OUTPUT))
2536 path->ctls[NID_PATH_VOL_CTL] =
2537 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
2538 else if (nid_has_volume(codec, nid, HDA_INPUT)) {
2539 int idx = path->idx[i];
2540 if (!depth && codec->single_adc_amp)
2541 idx = 0;
2542 path->ctls[NID_PATH_VOL_CTL] =
2543 HDA_COMPOSE_AMP_VAL(nid, 3, idx, HDA_INPUT);
2544 }
2545 }
2546 if (!path->ctls[NID_PATH_MUTE_CTL]) {
2547 if (nid_has_mute(codec, nid, HDA_OUTPUT))
2548 path->ctls[NID_PATH_MUTE_CTL] =
2549 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
2550 else if (nid_has_mute(codec, nid, HDA_INPUT)) {
2551 int idx = path->idx[i];
2552 if (!depth && codec->single_adc_amp)
2553 idx = 0;
2554 path->ctls[NID_PATH_MUTE_CTL] =
2555 HDA_COMPOSE_AMP_VAL(nid, 3, idx, HDA_INPUT);
2556 }
2557 }
2558 }
2559 return 0;
2560}
2561
Takashi Iwai81fede82012-12-18 17:24:25 +01002562static unsigned int amp_val_replace_channels(unsigned int val, unsigned int chs);
2563
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002564static int add_single_cap_ctl(struct hda_codec *codec, const char *label,
Takashi Iwai7e35dd32012-12-19 11:39:00 +01002565 int idx, bool is_switch, unsigned int ctl,
2566 bool inv_dmic)
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002567{
2568 struct alc_spec *spec = codec->spec;
2569 char tmpname[44];
2570 int type = is_switch ? ALC_CTL_WIDGET_MUTE : ALC_CTL_WIDGET_VOL;
2571 const char *sfx = is_switch ? "Switch" : "Volume";
Takashi Iwai7e35dd32012-12-19 11:39:00 +01002572 unsigned int chs = inv_dmic ? 1 : 3;
Takashi Iwai81fede82012-12-18 17:24:25 +01002573 int err;
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002574
2575 if (!ctl)
2576 return 0;
2577
2578 if (label)
2579 snprintf(tmpname, sizeof(tmpname),
2580 "%s Capture %s", label, sfx);
2581 else
2582 snprintf(tmpname, sizeof(tmpname),
2583 "Capture %s", sfx);
Takashi Iwai81fede82012-12-18 17:24:25 +01002584 err = add_control(spec, type, tmpname, idx,
2585 amp_val_replace_channels(ctl, chs));
2586 if (err < 0 || chs == 3)
2587 return err;
2588
2589 /* Make independent right kcontrol */
2590 if (label)
2591 snprintf(tmpname, sizeof(tmpname),
2592 "Inverted %s Capture %s", label, sfx);
2593 else
2594 snprintf(tmpname, sizeof(tmpname),
2595 "Inverted Capture %s", sfx);
2596 return add_control(spec, type, tmpname, idx,
2597 amp_val_replace_channels(ctl, 2));
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002598}
2599
Takashi Iwai7e35dd32012-12-19 11:39:00 +01002600static bool is_inv_dmic_pin(struct hda_codec *codec, hda_nid_t nid)
2601{
2602 struct alc_spec *spec = codec->spec;
2603 struct auto_pin_cfg *cfg = &spec->autocfg;
2604 unsigned int val;
2605 int i;
2606
2607 if (!spec->inv_dmic_split)
2608 return false;
2609 for (i = 0; i < cfg->num_inputs; i++) {
2610 if (cfg->inputs[i].pin != nid)
2611 continue;
2612 if (cfg->inputs[i].type != AUTO_PIN_MIC)
2613 return false;
2614 val = snd_hda_codec_get_pincfg(codec, nid);
2615 return snd_hda_get_input_pin_attr(val) == INPUT_PIN_ATTR_INT;
2616 }
2617 return false;
2618}
2619
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002620/* create single (and simple) capture volume and switch controls */
2621static int create_single_cap_vol_ctl(struct hda_codec *codec, int idx,
Takashi Iwai7e35dd32012-12-19 11:39:00 +01002622 unsigned int vol_ctl, unsigned int sw_ctl,
2623 bool inv_dmic)
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002624{
2625 int err;
Takashi Iwai7e35dd32012-12-19 11:39:00 +01002626 err = add_single_cap_ctl(codec, NULL, idx, false, vol_ctl, inv_dmic);
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002627 if (err < 0)
2628 return err;
Takashi Iwai7e35dd32012-12-19 11:39:00 +01002629 err = add_single_cap_ctl(codec, NULL, idx, true, sw_ctl, inv_dmic);
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002630 if (err < 0)
2631 return err;
2632 return 0;
2633}
2634
2635/* create bound capture volume and switch controls */
2636static int create_bind_cap_vol_ctl(struct hda_codec *codec, int idx,
2637 unsigned int vol_ctl, unsigned int sw_ctl)
2638{
2639 struct alc_spec *spec = codec->spec;
2640 struct snd_kcontrol_new *knew;
2641
2642 if (vol_ctl) {
2643 knew = alc_kcontrol_new(spec, NULL, &cap_vol_temp);
2644 if (!knew)
2645 return -ENOMEM;
2646 knew->index = idx;
2647 knew->private_value = vol_ctl;
2648 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
2649 }
2650 if (sw_ctl) {
2651 knew = alc_kcontrol_new(spec, NULL, &cap_sw_temp);
2652 if (!knew)
2653 return -ENOMEM;
2654 knew->index = idx;
2655 knew->private_value = sw_ctl;
2656 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
2657 }
2658 return 0;
2659}
2660
2661/* return the vol ctl when used first in the imux list */
2662static unsigned int get_first_cap_ctl(struct hda_codec *codec, int idx, int type)
2663{
2664 struct alc_spec *spec = codec->spec;
2665 struct nid_path *path;
2666 unsigned int ctl;
2667 int i;
2668
2669 path = get_nid_path(codec, spec->imux_pins[idx],
2670 get_adc_nid(codec, 0, idx));
2671 if (!path)
2672 return 0;
2673 ctl = path->ctls[type];
2674 if (!ctl)
2675 return 0;
2676 for (i = 0; i < idx - 1; i++) {
2677 path = get_nid_path(codec, spec->imux_pins[i],
2678 get_adc_nid(codec, 0, i));
2679 if (path && path->ctls[type] == ctl)
2680 return 0;
2681 }
2682 return ctl;
2683}
2684
2685/* create individual capture volume and switch controls per input */
2686static int create_multi_cap_vol_ctl(struct hda_codec *codec)
2687{
2688 struct alc_spec *spec = codec->spec;
2689 struct hda_input_mux *imux = &spec->input_mux;
2690 int i, err, type, type_idx = 0;
2691 const char *prev_label = NULL;
2692
2693 for (i = 0; i < imux->num_items; i++) {
2694 const char *label;
Takashi Iwai7e35dd32012-12-19 11:39:00 +01002695 bool inv_dmic;
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002696 label = hda_get_autocfg_input_label(codec, &spec->autocfg, i);
2697 if (prev_label && !strcmp(label, prev_label))
2698 type_idx++;
2699 else
2700 type_idx = 0;
2701 prev_label = label;
Takashi Iwai7e35dd32012-12-19 11:39:00 +01002702 inv_dmic = is_inv_dmic_pin(codec, spec->imux_pins[i]);
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002703
2704 for (type = 0; type < 2; type++) {
2705 err = add_single_cap_ctl(codec, label, type_idx, type,
Takashi Iwai7e35dd32012-12-19 11:39:00 +01002706 get_first_cap_ctl(codec, i, type),
2707 inv_dmic);
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002708 if (err < 0)
2709 return err;
2710 }
2711 }
2712 return 0;
2713}
2714
Takashi Iwai666a70d2012-12-17 20:29:29 +01002715static int create_capture_mixers(struct hda_codec *codec)
2716{
2717 struct alc_spec *spec = codec->spec;
Takashi Iwai27d31532012-12-18 08:57:05 +01002718 struct hda_input_mux *imux = &spec->input_mux;
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002719 int i, n, nums, err;
Takashi Iwai666a70d2012-12-17 20:29:29 +01002720
2721 if (spec->dyn_adc_switch)
2722 nums = 1;
2723 else
2724 nums = spec->num_adc_nids;
2725
2726 if (!spec->auto_mic && imux->num_items > 1) {
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002727 struct snd_kcontrol_new *knew;
Takashi Iwaibc549762012-12-18 15:35:11 +01002728 knew = alc_kcontrol_new(spec, NULL, &cap_src_temp);
Takashi Iwai666a70d2012-12-17 20:29:29 +01002729 if (!knew)
2730 return -ENOMEM;
2731 knew->count = nums;
2732 }
2733
2734 for (n = 0; n < nums; n++) {
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002735 bool multi = false;
Takashi Iwai7e35dd32012-12-19 11:39:00 +01002736 bool inv_dmic = false;
Takashi Iwai666a70d2012-12-17 20:29:29 +01002737 int vol, sw;
2738
2739 vol = sw = 0;
2740 for (i = 0; i < imux->num_items; i++) {
2741 struct nid_path *path;
2742 path = get_nid_path(codec, spec->imux_pins[i],
2743 get_adc_nid(codec, n, i));
2744 if (!path)
2745 continue;
2746 parse_capvol_in_path(codec, path);
2747 if (!vol)
2748 vol = path->ctls[NID_PATH_VOL_CTL];
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002749 else if (vol != path->ctls[NID_PATH_VOL_CTL])
2750 multi = true;
Takashi Iwai666a70d2012-12-17 20:29:29 +01002751 if (!sw)
2752 sw = path->ctls[NID_PATH_MUTE_CTL];
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002753 else if (sw != path->ctls[NID_PATH_MUTE_CTL])
2754 multi = true;
Takashi Iwai7e35dd32012-12-19 11:39:00 +01002755 if (is_inv_dmic_pin(codec, spec->imux_pins[i]))
2756 inv_dmic = true;
Takashi Iwai666a70d2012-12-17 20:29:29 +01002757 }
2758
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002759 if (!multi)
Takashi Iwai7e35dd32012-12-19 11:39:00 +01002760 err = create_single_cap_vol_ctl(codec, n, vol, sw,
2761 inv_dmic);
Takashi Iwai9bf387b2012-12-18 17:18:21 +01002762 else if (!spec->multi_cap_vol)
2763 err = create_bind_cap_vol_ctl(codec, n, vol, sw);
2764 else
2765 err = create_multi_cap_vol_ctl(codec);
2766 if (err < 0)
2767 return err;
Takashi Iwai666a70d2012-12-17 20:29:29 +01002768 }
2769
2770 return 0;
2771}
2772
Takashi Iwai05f5f472009-08-25 13:10:18 +02002773/* create playback/capture controls for input pins */
Takashi Iwaib7821702011-07-06 15:12:46 +02002774static int alc_auto_create_input_ctls(struct hda_codec *codec)
Takashi Iwai05f5f472009-08-25 13:10:18 +02002775{
2776 struct alc_spec *spec = codec->spec;
Takashi Iwaib7821702011-07-06 15:12:46 +02002777 const struct auto_pin_cfg *cfg = &spec->autocfg;
2778 hda_nid_t mixer = spec->mixer_nid;
Takashi Iwai27d31532012-12-18 08:57:05 +01002779 struct hda_input_mux *imux = &spec->input_mux;
Takashi Iwaib7821702011-07-06 15:12:46 +02002780 int num_adcs;
Takashi Iwai666a70d2012-12-17 20:29:29 +01002781 int i, c, err, type_idx = 0;
David Henningsson5322bf22011-01-05 11:03:56 +01002782 const char *prev_label = NULL;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002783
Takashi Iwai666a70d2012-12-17 20:29:29 +01002784 num_adcs = alc_auto_fill_adc_nids(codec);
Takashi Iwaib7821702011-07-06 15:12:46 +02002785 if (num_adcs < 0)
2786 return 0;
2787
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002788 for (i = 0; i < cfg->num_inputs; i++) {
Takashi Iwai05f5f472009-08-25 13:10:18 +02002789 hda_nid_t pin;
Takashi Iwai10a20af2010-09-09 16:28:02 +02002790 const char *label;
Takashi Iwai666a70d2012-12-17 20:29:29 +01002791 bool imux_added;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002792
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002793 pin = cfg->inputs[i].pin;
Takashi Iwai05f5f472009-08-25 13:10:18 +02002794 if (!alc_is_input_pin(codec, pin))
2795 continue;
2796
David Henningsson5322bf22011-01-05 11:03:56 +01002797 label = hda_get_autocfg_input_label(codec, cfg, i);
Takashi Iwai24de1832011-11-07 17:13:39 +01002798 if (spec->shared_mic_hp && !strcmp(label, "Misc"))
2799 label = "Headphone Mic";
David Henningsson5322bf22011-01-05 11:03:56 +01002800 if (prev_label && !strcmp(label, prev_label))
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002801 type_idx++;
2802 else
2803 type_idx = 0;
David Henningsson5322bf22011-01-05 11:03:56 +01002804 prev_label = label;
2805
Takashi Iwai05f5f472009-08-25 13:10:18 +02002806 if (mixer) {
Takashi Iwaic2fd19c2012-12-12 18:02:41 +01002807 if (is_reachable_path(codec, pin, mixer)) {
2808 err = new_analog_input(codec, pin,
2809 label, type_idx, mixer);
Takashi Iwai05f5f472009-08-25 13:10:18 +02002810 if (err < 0)
2811 return err;
2812 }
2813 }
2814
Takashi Iwai666a70d2012-12-17 20:29:29 +01002815 imux_added = false;
Takashi Iwaib7821702011-07-06 15:12:46 +02002816 for (c = 0; c < num_adcs; c++) {
Takashi Iwai666a70d2012-12-17 20:29:29 +01002817 struct nid_path *path;
2818 hda_nid_t adc = spec->adc_nids[c];
2819
2820 if (!is_reachable_path(codec, pin, adc))
2821 continue;
2822 path = snd_array_new(&spec->paths);
2823 if (!path)
2824 return -ENOMEM;
2825 memset(path, 0, sizeof(*path));
2826 if (!parse_nid_path(codec, pin, adc, 2, path)) {
2827 snd_printd(KERN_ERR
2828 "invalid input path 0x%x -> 0x%x\n",
2829 pin, adc);
2830 spec->paths.used--;
2831 continue;
2832 }
2833
2834 if (!imux_added) {
2835 spec->imux_pins[imux->num_items] = pin;
2836 snd_hda_add_imux_item(imux, label,
2837 imux->num_items, NULL);
2838 imux_added = true;
Takashi Iwaib7821702011-07-06 15:12:46 +02002839 }
2840 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002841 }
Takashi Iwai21268962011-07-07 15:01:13 +02002842
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002843 return 0;
2844}
2845
Takashi Iwai24de1832011-11-07 17:13:39 +01002846/* create a shared input with the headphone out */
2847static int alc_auto_create_shared_input(struct hda_codec *codec)
2848{
2849 struct alc_spec *spec = codec->spec;
2850 struct auto_pin_cfg *cfg = &spec->autocfg;
2851 unsigned int defcfg;
2852 hda_nid_t nid;
2853
2854 /* only one internal input pin? */
2855 if (cfg->num_inputs != 1)
2856 return 0;
2857 defcfg = snd_hda_codec_get_pincfg(codec, cfg->inputs[0].pin);
2858 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
2859 return 0;
2860
2861 if (cfg->hp_outs == 1 && cfg->line_out_type == AUTO_PIN_SPEAKER_OUT)
2862 nid = cfg->hp_pins[0]; /* OK, we have a single HP-out */
2863 else if (cfg->line_outs == 1 && cfg->line_out_type == AUTO_PIN_HP_OUT)
2864 nid = cfg->line_out_pins[0]; /* OK, we have a single line-out */
2865 else
2866 return 0; /* both not available */
2867
2868 if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_IN))
2869 return 0; /* no input */
2870
2871 cfg->inputs[1].pin = nid;
2872 cfg->inputs[1].type = AUTO_PIN_MIC;
2873 cfg->num_inputs = 2;
2874 spec->shared_mic_hp = 1;
2875 snd_printdd("realtek: Enable shared I/O jack on NID 0x%x\n", nid);
2876 return 0;
2877}
2878
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02002879static int get_pin_type(int line_out_type)
2880{
2881 if (line_out_type == AUTO_PIN_HP_OUT)
2882 return PIN_HP;
2883 else
2884 return PIN_OUT;
2885}
2886
Takashi Iwai0a7f5322011-07-06 15:15:12 +02002887static void alc_auto_init_analog_input(struct hda_codec *codec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002888{
2889 struct alc_spec *spec = codec->spec;
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002890 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002891 int i;
2892
Takashi Iwai66ceeb62010-08-30 13:05:52 +02002893 for (i = 0; i < cfg->num_inputs; i++) {
2894 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai62343992012-12-18 09:06:01 +01002895 if (alc_is_input_pin(codec, nid))
Takashi Iwai30ea0982010-09-16 18:47:56 +02002896 alc_set_input_pin(codec, nid, cfg->inputs[i].type);
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002897
Takashi Iwai829f69e2012-12-14 18:26:02 +01002898 /* mute loopback inputs */
2899 if (spec->mixer_nid) {
2900 struct nid_path *path;
2901 path = get_nid_path(codec, nid, spec->mixer_nid);
2902 if (path)
Takashi Iwai666a70d2012-12-17 20:29:29 +01002903 activate_path(codec, path, path->active, false);
Takashi Iwai829f69e2012-12-14 18:26:02 +01002904 }
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02002905 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002906}
2907
Takashi Iwai185d99f2012-02-16 18:39:45 +01002908static bool alc_is_dac_already_used(struct hda_codec *codec, hda_nid_t nid)
2909{
2910 struct alc_spec *spec = codec->spec;
Takashi Iwai276dd702012-02-17 16:17:03 +01002911 int i;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002912
Takashi Iwaic9967f12012-12-14 16:39:22 +01002913 for (i = 0; i < spec->paths.used; i++) {
2914 struct nid_path *path = snd_array_elem(&spec->paths, i);
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002915 if (path->path[0] == nid)
Takashi Iwai276dd702012-02-17 16:17:03 +01002916 return true;
2917 }
Takashi Iwai185d99f2012-02-16 18:39:45 +01002918 return false;
2919}
2920
Takashi Iwai463419d2012-12-05 14:17:37 +01002921/* look for an empty DAC slot */
Takashi Iwaifef7fbb2012-12-14 16:54:44 +01002922static hda_nid_t alc_auto_look_for_dac(struct hda_codec *codec, hda_nid_t pin,
2923 bool is_digital)
Takashi Iwai463419d2012-12-05 14:17:37 +01002924{
2925 struct alc_spec *spec = codec->spec;
Takashi Iwaifef7fbb2012-12-14 16:54:44 +01002926 bool cap_digital;
Takashi Iwai463419d2012-12-05 14:17:37 +01002927 int i;
2928
2929 for (i = 0; i < spec->num_all_dacs; i++) {
2930 hda_nid_t nid = spec->all_dacs[i];
2931 if (!nid || alc_is_dac_already_used(codec, nid))
2932 continue;
Takashi Iwaifef7fbb2012-12-14 16:54:44 +01002933 cap_digital = !!(get_wcaps(codec, nid) & AC_WCAP_DIGITAL);
2934 if (is_digital != cap_digital)
2935 continue;
Takashi Iwai9c640762012-12-14 16:15:56 +01002936 if (is_reachable_path(codec, nid, pin))
Takashi Iwai463419d2012-12-05 14:17:37 +01002937 return nid;
2938 }
2939 return 0;
2940}
2941
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002942/* called recursively */
Takashi Iwai36f0fd52012-12-12 17:25:00 +01002943static bool __parse_nid_path(struct hda_codec *codec,
2944 hda_nid_t from_nid, hda_nid_t to_nid,
2945 int with_aa_mix, struct nid_path *path, int depth)
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002946{
2947 struct alc_spec *spec = codec->spec;
Takashi Iwai36f0fd52012-12-12 17:25:00 +01002948 hda_nid_t conn[16];
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002949 int i, nums;
2950
Takashi Iwai36f0fd52012-12-12 17:25:00 +01002951 if (to_nid == spec->mixer_nid) {
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002952 if (!with_aa_mix)
2953 return false;
2954 with_aa_mix = 2; /* mark aa-mix is included */
2955 }
2956
Takashi Iwai36f0fd52012-12-12 17:25:00 +01002957 nums = snd_hda_get_connections(codec, to_nid, conn, ARRAY_SIZE(conn));
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002958 for (i = 0; i < nums; i++) {
Takashi Iwai36f0fd52012-12-12 17:25:00 +01002959 if (conn[i] != from_nid) {
2960 /* special case: when from_nid is 0,
2961 * try to find an empty DAC
2962 */
2963 if (from_nid ||
2964 get_wcaps_type(get_wcaps(codec, conn[i])) != AC_WID_AUD_OUT ||
2965 alc_is_dac_already_used(codec, conn[i]))
2966 continue;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002967 }
Takashi Iwai36f0fd52012-12-12 17:25:00 +01002968 /* aa-mix is requested but not included? */
2969 if (!(spec->mixer_nid && with_aa_mix == 1))
2970 goto found;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002971 }
2972 if (depth >= MAX_NID_PATH_DEPTH)
2973 return false;
2974 for (i = 0; i < nums; i++) {
2975 unsigned int type;
2976 type = get_wcaps_type(get_wcaps(codec, conn[i]));
Takashi Iwai36f0fd52012-12-12 17:25:00 +01002977 if (type == AC_WID_AUD_OUT || type == AC_WID_AUD_IN ||
2978 type == AC_WID_PIN)
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002979 continue;
Takashi Iwai36f0fd52012-12-12 17:25:00 +01002980 if (__parse_nid_path(codec, from_nid, conn[i],
2981 with_aa_mix, path, depth + 1))
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002982 goto found;
2983 }
2984 return false;
2985
2986 found:
2987 path->path[path->depth] = conn[i];
Takashi Iwai95e960c2012-12-10 17:27:57 +01002988 path->idx[path->depth + 1] = i;
Takashi Iwai36f0fd52012-12-12 17:25:00 +01002989 if (nums > 1 && get_wcaps_type(get_wcaps(codec, to_nid)) != AC_WID_AUD_MIX)
Takashi Iwai95e960c2012-12-10 17:27:57 +01002990 path->multi[path->depth + 1] = 1;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01002991 path->depth++;
2992 return true;
2993}
2994
Takashi Iwai36f0fd52012-12-12 17:25:00 +01002995/* parse the widget path from the given nid to the target nid;
2996 * when @from_nid is 0, try to find an empty DAC;
2997 * when @with_aa_mix is 0, paths with spec->mixer_nid are excluded.
2998 * when @with_aa_mix is 1, paths without spec->mixer_nid are excluded.
2999 * when @with_aa_mix is 2, no special handling about spec->mixer_nid.
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003000 */
Takashi Iwai36f0fd52012-12-12 17:25:00 +01003001static bool parse_nid_path(struct hda_codec *codec, hda_nid_t from_nid,
3002 hda_nid_t to_nid, int with_aa_mix,
3003 struct nid_path *path)
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003004{
Takashi Iwai36f0fd52012-12-12 17:25:00 +01003005 if (__parse_nid_path(codec, from_nid, to_nid, with_aa_mix, path, 1)) {
3006 path->path[path->depth] = to_nid;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003007 path->depth++;
3008#if 0
Takashi Iwai36f0fd52012-12-12 17:25:00 +01003009 snd_printdd("path: depth=%d, %02x/%02x/%02x/%02x/%02x\n",
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003010 path->depth, path->path[0], path->path[1],
3011 path->path[2], path->path[3], path->path[4]);
3012#endif
3013 return true;
3014 }
3015 return false;
3016}
3017
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003018static hda_nid_t get_dac_if_single(struct hda_codec *codec, hda_nid_t pin)
3019{
Takashi Iwai140547e2012-02-16 17:23:46 +01003020 struct alc_spec *spec = codec->spec;
Takashi Iwai463419d2012-12-05 14:17:37 +01003021 int i;
3022 hda_nid_t nid_found = 0;
3023
3024 for (i = 0; i < spec->num_all_dacs; i++) {
3025 hda_nid_t nid = spec->all_dacs[i];
3026 if (!nid || alc_is_dac_already_used(codec, nid))
Takashi Iwai185d99f2012-02-16 18:39:45 +01003027 continue;
Takashi Iwai9c640762012-12-14 16:15:56 +01003028 if (is_reachable_path(codec, nid, pin)) {
Takashi Iwai185d99f2012-02-16 18:39:45 +01003029 if (nid_found)
3030 return 0;
3031 nid_found = nid;
3032 }
3033 }
3034 return nid_found;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003035}
3036
Takashi Iwaiba8111272012-12-06 18:06:23 +01003037static bool is_ctl_used(struct hda_codec *codec, unsigned int val, int type)
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003038{
Takashi Iwaiba8111272012-12-06 18:06:23 +01003039 struct alc_spec *spec = codec->spec;
3040 int i;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003041
Takashi Iwaic9967f12012-12-14 16:39:22 +01003042 for (i = 0; i < spec->paths.used; i++) {
3043 struct nid_path *path = snd_array_elem(&spec->paths, i);
Takashi Iwaiba8111272012-12-06 18:06:23 +01003044 if (path->ctls[type] == val)
3045 return true;
3046 }
3047 return false;
3048}
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003049
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003050/* badness definition */
3051enum {
3052 /* No primary DAC is found for the main output */
3053 BAD_NO_PRIMARY_DAC = 0x10000,
3054 /* No DAC is found for the extra output */
3055 BAD_NO_DAC = 0x4000,
Takashi Iwai276dd702012-02-17 16:17:03 +01003056 /* No possible multi-ios */
3057 BAD_MULTI_IO = 0x103,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003058 /* No individual DAC for extra output */
Takashi Iwai276dd702012-02-17 16:17:03 +01003059 BAD_NO_EXTRA_DAC = 0x102,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003060 /* No individual DAC for extra surrounds */
Takashi Iwai276dd702012-02-17 16:17:03 +01003061 BAD_NO_EXTRA_SURR_DAC = 0x101,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003062 /* Primary DAC shared with main surrounds */
3063 BAD_SHARED_SURROUND = 0x100,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003064 /* Primary DAC shared with main CLFE */
3065 BAD_SHARED_CLFE = 0x10,
3066 /* Primary DAC shared with extra surrounds */
3067 BAD_SHARED_EXTRA_SURROUND = 0x10,
Takashi Iwai276dd702012-02-17 16:17:03 +01003068 /* Volume widget is shared */
3069 BAD_SHARED_VOL = 0x10,
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003070};
3071
3072static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
Takashi Iwaiba8111272012-12-06 18:06:23 +01003073 struct nid_path *path);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003074static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
Takashi Iwaiba8111272012-12-06 18:06:23 +01003075 struct nid_path *path);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003076
Takashi Iwai965cceb2012-12-18 11:46:37 +01003077static struct nid_path *add_new_nid_path(struct hda_codec *codec,
3078 hda_nid_t from_nid, hda_nid_t to_nid,
3079 int with_aa_mix)
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003080{
3081 struct alc_spec *spec = codec->spec;
3082 struct nid_path *path;
3083
Takashi Iwai965cceb2012-12-18 11:46:37 +01003084 if (from_nid && to_nid && !is_reachable_path(codec, from_nid, to_nid))
3085 return NULL;
3086
Takashi Iwaic9967f12012-12-14 16:39:22 +01003087 path = snd_array_new(&spec->paths);
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003088 if (!path)
Takashi Iwai965cceb2012-12-18 11:46:37 +01003089 return NULL;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003090 memset(path, 0, sizeof(*path));
Takashi Iwai965cceb2012-12-18 11:46:37 +01003091 if (parse_nid_path(codec, from_nid, to_nid, with_aa_mix, path))
3092 return path;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003093 /* push back */
Takashi Iwaic9967f12012-12-14 16:39:22 +01003094 spec->paths.used--;
Takashi Iwai965cceb2012-12-18 11:46:37 +01003095 return NULL;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003096}
3097
Takashi Iwai6518f7a2012-12-14 17:34:51 +01003098/* get the path between the given NIDs;
Takashi Iwaiba8111272012-12-06 18:06:23 +01003099 * passing 0 to either @pin or @dac behaves as a wildcard
3100 */
Takashi Iwai6518f7a2012-12-14 17:34:51 +01003101static struct nid_path *
3102get_nid_path(struct hda_codec *codec, hda_nid_t from_nid, hda_nid_t to_nid)
Takashi Iwaiba8111272012-12-06 18:06:23 +01003103{
3104 struct alc_spec *spec = codec->spec;
3105 int i;
3106
Takashi Iwaic9967f12012-12-14 16:39:22 +01003107 for (i = 0; i < spec->paths.used; i++) {
3108 struct nid_path *path = snd_array_elem(&spec->paths, i);
Takashi Iwaiba8111272012-12-06 18:06:23 +01003109 if (path->depth <= 0)
3110 continue;
Takashi Iwai6518f7a2012-12-14 17:34:51 +01003111 if ((!from_nid || path->path[0] == from_nid) &&
3112 (!to_nid || path->path[path->depth - 1] == to_nid))
Takashi Iwaiba8111272012-12-06 18:06:23 +01003113 return path;
3114 }
3115 return NULL;
3116}
3117
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003118/* look for widgets in the path between the given NIDs appropriate for
3119 * volume and mute controls, and assign the values to ctls[].
3120 *
3121 * When no appropriate widget is found in the path, the badness value
3122 * is incremented depending on the situation. The function returns the
3123 * total badness for both volume and mute controls.
3124 */
3125static int assign_out_path_ctls(struct hda_codec *codec, hda_nid_t pin,
3126 hda_nid_t dac)
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003127{
Takashi Iwai6518f7a2012-12-14 17:34:51 +01003128 struct nid_path *path = get_nid_path(codec, dac, pin);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003129 hda_nid_t nid;
3130 unsigned int val;
3131 int badness = 0;
3132
Takashi Iwaiba8111272012-12-06 18:06:23 +01003133 if (!path)
3134 return BAD_SHARED_VOL * 2;
3135 nid = alc_look_for_out_vol_nid(codec, path);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003136 if (nid) {
3137 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
Takashi Iwaiba8111272012-12-06 18:06:23 +01003138 if (is_ctl_used(codec, val, NID_PATH_VOL_CTL))
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003139 badness += BAD_SHARED_VOL;
3140 else
Takashi Iwaiba8111272012-12-06 18:06:23 +01003141 path->ctls[NID_PATH_VOL_CTL] = val;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003142 } else
3143 badness += BAD_SHARED_VOL;
Takashi Iwaiba8111272012-12-06 18:06:23 +01003144 nid = alc_look_for_out_mute_nid(codec, path);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003145 if (nid) {
3146 unsigned int wid_type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003147 if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT ||
3148 nid_has_mute(codec, nid, HDA_OUTPUT))
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003149 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3150 else
3151 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT);
Takashi Iwaiba8111272012-12-06 18:06:23 +01003152 if (is_ctl_used(codec, val, NID_PATH_MUTE_CTL))
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003153 badness += BAD_SHARED_VOL;
3154 else
Takashi Iwaiba8111272012-12-06 18:06:23 +01003155 path->ctls[NID_PATH_MUTE_CTL] = val;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003156 } else
3157 badness += BAD_SHARED_VOL;
3158 return badness;
3159}
3160
Takashi Iwaidc31b582012-02-17 17:27:53 +01003161struct badness_table {
3162 int no_primary_dac; /* no primary DAC */
3163 int no_dac; /* no secondary DACs */
3164 int shared_primary; /* primary DAC is shared with main output */
3165 int shared_surr; /* secondary DAC shared with main or primary */
3166 int shared_clfe; /* third DAC shared with main or primary */
3167 int shared_surr_main; /* secondary DAC sahred with main/DAC0 */
3168};
3169
3170static struct badness_table main_out_badness = {
3171 .no_primary_dac = BAD_NO_PRIMARY_DAC,
3172 .no_dac = BAD_NO_DAC,
3173 .shared_primary = BAD_NO_PRIMARY_DAC,
3174 .shared_surr = BAD_SHARED_SURROUND,
3175 .shared_clfe = BAD_SHARED_CLFE,
3176 .shared_surr_main = BAD_SHARED_SURROUND,
3177};
3178
3179static struct badness_table extra_out_badness = {
3180 .no_primary_dac = BAD_NO_DAC,
3181 .no_dac = BAD_NO_DAC,
3182 .shared_primary = BAD_NO_EXTRA_DAC,
3183 .shared_surr = BAD_SHARED_EXTRA_SURROUND,
3184 .shared_clfe = BAD_SHARED_EXTRA_SURROUND,
3185 .shared_surr_main = BAD_NO_EXTRA_SURR_DAC,
3186};
3187
3188/* try to assign DACs to pins and return the resultant badness */
3189static int alc_auto_fill_dacs(struct hda_codec *codec, int num_outs,
3190 const hda_nid_t *pins, hda_nid_t *dacs,
3191 const struct badness_table *bad)
Takashi Iwaic2674682011-08-24 17:57:44 +02003192{
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003193 struct alc_spec *spec = codec->spec;
Takashi Iwaidc31b582012-02-17 17:27:53 +01003194 struct auto_pin_cfg *cfg = &spec->autocfg;
3195 int i, j;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003196 int badness = 0;
3197 hda_nid_t dac;
Takashi Iwaic2674682011-08-24 17:57:44 +02003198
Takashi Iwai185d99f2012-02-16 18:39:45 +01003199 if (!num_outs)
3200 return 0;
3201
Takashi Iwaidc31b582012-02-17 17:27:53 +01003202 for (i = 0; i < num_outs; i++) {
3203 hda_nid_t pin = pins[i];
3204 if (!dacs[i])
Takashi Iwaifef7fbb2012-12-14 16:54:44 +01003205 dacs[i] = alc_auto_look_for_dac(codec, pin, false);
Takashi Iwaidc31b582012-02-17 17:27:53 +01003206 if (!dacs[i] && !i) {
3207 for (j = 1; j < num_outs; j++) {
Takashi Iwai9c640762012-12-14 16:15:56 +01003208 if (is_reachable_path(codec, dacs[j], pin)) {
Takashi Iwaidc31b582012-02-17 17:27:53 +01003209 dacs[0] = dacs[j];
3210 dacs[j] = 0;
3211 break;
3212 }
Takashi Iwai185d99f2012-02-16 18:39:45 +01003213 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003214 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003215 dac = dacs[i];
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003216 if (!dac) {
Takashi Iwai9c640762012-12-14 16:15:56 +01003217 if (is_reachable_path(codec, dacs[0], pin))
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003218 dac = dacs[0];
Takashi Iwaidc31b582012-02-17 17:27:53 +01003219 else if (cfg->line_outs > i &&
Takashi Iwai9c640762012-12-14 16:15:56 +01003220 is_reachable_path(codec, spec->private_dac_nids[i], pin))
Takashi Iwaidc31b582012-02-17 17:27:53 +01003221 dac = spec->private_dac_nids[i];
3222 if (dac) {
3223 if (!i)
3224 badness += bad->shared_primary;
3225 else if (i == 1)
3226 badness += bad->shared_surr;
3227 else
3228 badness += bad->shared_clfe;
Takashi Iwai9c640762012-12-14 16:15:56 +01003229 } else if (is_reachable_path(codec, spec->private_dac_nids[0], pin)) {
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003230 dac = spec->private_dac_nids[0];
Takashi Iwaidc31b582012-02-17 17:27:53 +01003231 badness += bad->shared_surr_main;
3232 } else if (!i)
3233 badness += bad->no_primary_dac;
3234 else
3235 badness += bad->no_dac;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003236 }
Takashi Iwai965cceb2012-12-18 11:46:37 +01003237 if (!add_new_nid_path(codec, dac, pin, 0))
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003238 dac = dacs[i] = 0;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003239 if (dac)
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003240 badness += assign_out_path_ctls(codec, pin, dac);
Takashi Iwaic2674682011-08-24 17:57:44 +02003241 }
Takashi Iwaidc31b582012-02-17 17:27:53 +01003242
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003243 return badness;
Takashi Iwaic2674682011-08-24 17:57:44 +02003244}
3245
3246static int alc_auto_fill_multi_ios(struct hda_codec *codec,
Takashi Iwai276dd702012-02-17 16:17:03 +01003247 hda_nid_t reference_pin,
3248 bool hardwired, int offset);
Takashi Iwaic2674682011-08-24 17:57:44 +02003249
Takashi Iwai185d99f2012-02-16 18:39:45 +01003250static bool alc_map_singles(struct hda_codec *codec, int outs,
3251 const hda_nid_t *pins, hda_nid_t *dacs)
3252{
3253 int i;
3254 bool found = false;
3255 for (i = 0; i < outs; i++) {
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003256 hda_nid_t dac;
Takashi Iwai185d99f2012-02-16 18:39:45 +01003257 if (dacs[i])
3258 continue;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003259 dac = get_dac_if_single(codec, pins[i]);
3260 if (!dac)
3261 continue;
Takashi Iwai965cceb2012-12-18 11:46:37 +01003262 if (add_new_nid_path(codec, dac, pins[i], 0)) {
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003263 dacs[i] = dac;
Takashi Iwai185d99f2012-02-16 18:39:45 +01003264 found = true;
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01003265 }
Takashi Iwai185d99f2012-02-16 18:39:45 +01003266 }
3267 return found;
3268}
3269
Takashi Iwai7085ec12009-10-02 09:03:58 +02003270/* fill in the dac_nids table from the parsed pin configuration */
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003271static int fill_and_eval_dacs(struct hda_codec *codec,
Takashi Iwai276dd702012-02-17 16:17:03 +01003272 bool fill_hardwired,
3273 bool fill_mio_first)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003274{
3275 struct alc_spec *spec = codec->spec;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003276 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaidc31b582012-02-17 17:27:53 +01003277 int i, err, badness;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003278
Takashi Iwai8f398ae2011-07-23 18:57:11 +02003279 /* set num_dacs once to full for alc_auto_look_for_dac() */
3280 spec->multiout.num_dacs = cfg->line_outs;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003281 spec->multiout.dac_nids = spec->private_dac_nids;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003282 memset(spec->private_dac_nids, 0, sizeof(spec->private_dac_nids));
3283 memset(spec->multiout.hp_out_nid, 0, sizeof(spec->multiout.hp_out_nid));
3284 memset(spec->multiout.extra_out_nid, 0, sizeof(spec->multiout.extra_out_nid));
Takashi Iwai0a34b422011-12-07 17:20:30 +01003285 spec->multi_ios = 0;
Takashi Iwaic9967f12012-12-14 16:39:22 +01003286 snd_array_free(&spec->paths);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003287 badness = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003288
3289 /* fill hard-wired DACs first */
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003290 if (fill_hardwired) {
Takashi Iwai185d99f2012-02-16 18:39:45 +01003291 bool mapped;
3292 do {
3293 mapped = alc_map_singles(codec, cfg->line_outs,
Takashi Iwai276dd702012-02-17 16:17:03 +01003294 cfg->line_out_pins,
3295 spec->private_dac_nids);
Takashi Iwai185d99f2012-02-16 18:39:45 +01003296 mapped |= alc_map_singles(codec, cfg->hp_outs,
3297 cfg->hp_pins,
3298 spec->multiout.hp_out_nid);
3299 mapped |= alc_map_singles(codec, cfg->speaker_outs,
3300 cfg->speaker_pins,
3301 spec->multiout.extra_out_nid);
Takashi Iwai276dd702012-02-17 16:17:03 +01003302 if (fill_mio_first && cfg->line_outs == 1 &&
3303 cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3304 err = alc_auto_fill_multi_ios(codec, cfg->line_out_pins[0], true, 0);
3305 if (!err)
3306 mapped = true;
3307 }
Takashi Iwai185d99f2012-02-16 18:39:45 +01003308 } while (mapped);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003309 }
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003310
Takashi Iwaidc31b582012-02-17 17:27:53 +01003311 badness += alc_auto_fill_dacs(codec, cfg->line_outs, cfg->line_out_pins,
3312 spec->private_dac_nids,
3313 &main_out_badness);
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003314
Takashi Iwai8f398ae2011-07-23 18:57:11 +02003315 /* re-count num_dacs and squash invalid entries */
3316 spec->multiout.num_dacs = 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003317 for (i = 0; i < cfg->line_outs; i++) {
3318 if (spec->private_dac_nids[i])
3319 spec->multiout.num_dacs++;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003320 else {
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003321 memmove(spec->private_dac_nids + i,
3322 spec->private_dac_nids + i + 1,
3323 sizeof(hda_nid_t) * (cfg->line_outs - i - 1));
Takashi Iwai0a34b422011-12-07 17:20:30 +01003324 spec->private_dac_nids[cfg->line_outs - 1] = 0;
3325 }
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003326 }
3327
Takashi Iwai276dd702012-02-17 16:17:03 +01003328 if (fill_mio_first &&
3329 cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaic2674682011-08-24 17:57:44 +02003330 /* try to fill multi-io first */
Takashi Iwai276dd702012-02-17 16:17:03 +01003331 err = alc_auto_fill_multi_ios(codec, cfg->line_out_pins[0], false, 0);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003332 if (err < 0)
3333 return err;
Takashi Iwai276dd702012-02-17 16:17:03 +01003334 /* we don't count badness at this stage yet */
Takashi Iwai23c09b02011-08-19 09:05:35 +02003335 }
Takashi Iwaic2674682011-08-24 17:57:44 +02003336
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003337 if (cfg->line_out_type != AUTO_PIN_HP_OUT) {
Takashi Iwaidc31b582012-02-17 17:27:53 +01003338 err = alc_auto_fill_dacs(codec, cfg->hp_outs, cfg->hp_pins,
3339 spec->multiout.hp_out_nid,
3340 &extra_out_badness);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003341 if (err < 0)
3342 return err;
3343 badness += err;
3344 }
Takashi Iwai0a34b422011-12-07 17:20:30 +01003345 if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaidc31b582012-02-17 17:27:53 +01003346 err = alc_auto_fill_dacs(codec, cfg->speaker_outs,
3347 cfg->speaker_pins,
3348 spec->multiout.extra_out_nid,
3349 &extra_out_badness);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003350 if (err < 0)
3351 return err;
3352 badness += err;
3353 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003354 if (cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3355 err = alc_auto_fill_multi_ios(codec, cfg->line_out_pins[0], false, 0);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003356 if (err < 0)
3357 return err;
3358 badness += err;
3359 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003360 if (cfg->hp_outs && cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
3361 /* try multi-ios with HP + inputs */
Takashi Iwaif5682912012-02-21 12:37:00 +01003362 int offset = 0;
3363 if (cfg->line_outs >= 3)
3364 offset = 1;
3365 err = alc_auto_fill_multi_ios(codec, cfg->hp_pins[0], false,
3366 offset);
Takashi Iwai276dd702012-02-17 16:17:03 +01003367 if (err < 0)
3368 return err;
3369 badness += err;
3370 }
3371
3372 if (spec->multi_ios == 2) {
3373 for (i = 0; i < 2; i++)
3374 spec->private_dac_nids[spec->multiout.num_dacs++] =
3375 spec->multi_io[i].dac;
3376 spec->ext_channel_count = 2;
3377 } else if (spec->multi_ios) {
3378 spec->multi_ios = 0;
3379 badness += BAD_MULTI_IO;
3380 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003381
3382 return badness;
3383}
3384
3385#define DEBUG_BADNESS
3386
3387#ifdef DEBUG_BADNESS
3388#define debug_badness snd_printdd
3389#else
3390#define debug_badness(...)
3391#endif
3392
3393static void debug_show_configs(struct alc_spec *spec, struct auto_pin_cfg *cfg)
3394{
3395 debug_badness("multi_outs = %x/%x/%x/%x : %x/%x/%x/%x\n",
3396 cfg->line_out_pins[0], cfg->line_out_pins[1],
3397 cfg->line_out_pins[2], cfg->line_out_pins[2],
3398 spec->multiout.dac_nids[0],
3399 spec->multiout.dac_nids[1],
3400 spec->multiout.dac_nids[2],
3401 spec->multiout.dac_nids[3]);
Takashi Iwai6f453042012-02-17 14:09:20 +01003402 if (spec->multi_ios > 0)
3403 debug_badness("multi_ios(%d) = %x/%x : %x/%x\n",
3404 spec->multi_ios,
3405 spec->multi_io[0].pin, spec->multi_io[1].pin,
3406 spec->multi_io[0].dac, spec->multi_io[1].dac);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003407 debug_badness("hp_outs = %x/%x/%x/%x : %x/%x/%x/%x\n",
3408 cfg->hp_pins[0], cfg->hp_pins[1],
3409 cfg->hp_pins[2], cfg->hp_pins[2],
3410 spec->multiout.hp_out_nid[0],
3411 spec->multiout.hp_out_nid[1],
3412 spec->multiout.hp_out_nid[2],
3413 spec->multiout.hp_out_nid[3]);
3414 debug_badness("spk_outs = %x/%x/%x/%x : %x/%x/%x/%x\n",
3415 cfg->speaker_pins[0], cfg->speaker_pins[1],
3416 cfg->speaker_pins[2], cfg->speaker_pins[3],
3417 spec->multiout.extra_out_nid[0],
3418 spec->multiout.extra_out_nid[1],
3419 spec->multiout.extra_out_nid[2],
3420 spec->multiout.extra_out_nid[3]);
3421}
3422
Takashi Iwai463419d2012-12-05 14:17:37 +01003423/* find all available DACs of the codec */
3424static void alc_fill_all_nids(struct hda_codec *codec)
3425{
3426 struct alc_spec *spec = codec->spec;
3427 int i;
3428 hda_nid_t nid = codec->start_nid;
3429
3430 spec->num_all_dacs = 0;
3431 memset(spec->all_dacs, 0, sizeof(spec->all_dacs));
3432 for (i = 0; i < codec->num_nodes; i++, nid++) {
3433 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_AUD_OUT)
3434 continue;
3435 if (spec->num_all_dacs >= ARRAY_SIZE(spec->all_dacs)) {
3436 snd_printk(KERN_ERR "hda: Too many DACs!\n");
3437 break;
3438 }
3439 spec->all_dacs[spec->num_all_dacs++] = nid;
3440 }
3441}
3442
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003443static int alc_auto_fill_dac_nids(struct hda_codec *codec)
3444{
3445 struct alc_spec *spec = codec->spec;
3446 struct auto_pin_cfg *cfg = &spec->autocfg;
3447 struct auto_pin_cfg *best_cfg;
3448 int best_badness = INT_MAX;
3449 int badness;
Takashi Iwai276dd702012-02-17 16:17:03 +01003450 bool fill_hardwired = true, fill_mio_first = true;
3451 bool best_wired = true, best_mio = true;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003452 bool hp_spk_swapped = false;
3453
Takashi Iwai463419d2012-12-05 14:17:37 +01003454 alc_fill_all_nids(codec);
3455
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003456 best_cfg = kmalloc(sizeof(*best_cfg), GFP_KERNEL);
3457 if (!best_cfg)
3458 return -ENOMEM;
3459 *best_cfg = *cfg;
3460
3461 for (;;) {
Takashi Iwai276dd702012-02-17 16:17:03 +01003462 badness = fill_and_eval_dacs(codec, fill_hardwired,
3463 fill_mio_first);
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003464 if (badness < 0) {
3465 kfree(best_cfg);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003466 return badness;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003467 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003468 debug_badness("==> lo_type=%d, wired=%d, mio=%d, badness=0x%x\n",
3469 cfg->line_out_type, fill_hardwired, fill_mio_first,
3470 badness);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003471 debug_show_configs(spec, cfg);
3472 if (badness < best_badness) {
3473 best_badness = badness;
3474 *best_cfg = *cfg;
3475 best_wired = fill_hardwired;
Takashi Iwai276dd702012-02-17 16:17:03 +01003476 best_mio = fill_mio_first;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003477 }
3478 if (!badness)
3479 break;
Takashi Iwai276dd702012-02-17 16:17:03 +01003480 fill_mio_first = !fill_mio_first;
3481 if (!fill_mio_first)
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003482 continue;
Takashi Iwai276dd702012-02-17 16:17:03 +01003483 fill_hardwired = !fill_hardwired;
3484 if (!fill_hardwired)
3485 continue;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003486 if (hp_spk_swapped)
3487 break;
3488 hp_spk_swapped = true;
3489 if (cfg->speaker_outs > 0 &&
Takashi Iwai0a34b422011-12-07 17:20:30 +01003490 cfg->line_out_type == AUTO_PIN_HP_OUT) {
3491 cfg->hp_outs = cfg->line_outs;
3492 memcpy(cfg->hp_pins, cfg->line_out_pins,
3493 sizeof(cfg->hp_pins));
3494 cfg->line_outs = cfg->speaker_outs;
3495 memcpy(cfg->line_out_pins, cfg->speaker_pins,
3496 sizeof(cfg->speaker_pins));
3497 cfg->speaker_outs = 0;
3498 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
3499 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003500 fill_hardwired = true;
3501 continue;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003502 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003503 if (cfg->hp_outs > 0 &&
3504 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
3505 cfg->speaker_outs = cfg->line_outs;
3506 memcpy(cfg->speaker_pins, cfg->line_out_pins,
3507 sizeof(cfg->speaker_pins));
3508 cfg->line_outs = cfg->hp_outs;
3509 memcpy(cfg->line_out_pins, cfg->hp_pins,
3510 sizeof(cfg->hp_pins));
3511 cfg->hp_outs = 0;
3512 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3513 cfg->line_out_type = AUTO_PIN_HP_OUT;
3514 fill_hardwired = true;
3515 continue;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003516 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003517 break;
Takashi Iwai0a34b422011-12-07 17:20:30 +01003518 }
Takashi Iwaic2674682011-08-24 17:57:44 +02003519
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003520 if (badness) {
3521 *cfg = *best_cfg;
Takashi Iwai276dd702012-02-17 16:17:03 +01003522 fill_and_eval_dacs(codec, best_wired, best_mio);
Takashi Iwai07b18f62011-11-10 15:42:54 +01003523 }
Takashi Iwai276dd702012-02-17 16:17:03 +01003524 debug_badness("==> Best config: lo_type=%d, wired=%d, mio=%d\n",
3525 cfg->line_out_type, best_wired, best_mio);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003526 debug_show_configs(spec, cfg);
Takashi Iwai07b18f62011-11-10 15:42:54 +01003527
Takashi Iwaiba8111272012-12-06 18:06:23 +01003528 if (cfg->line_out_pins[0]) {
Takashi Iwai6518f7a2012-12-14 17:34:51 +01003529 struct nid_path *path = get_nid_path(codec,
3530 spec->multiout.dac_nids[0],
3531 cfg->line_out_pins[0]);
Takashi Iwaiba8111272012-12-06 18:06:23 +01003532 if (path)
3533 spec->vmaster_nid = alc_look_for_out_vol_nid(codec, path);
3534 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003535
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01003536 kfree(best_cfg);
Takashi Iwai23c09b02011-08-19 09:05:35 +02003537 return 0;
3538}
3539
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003540/* replace the channels in the composed amp value with the given number */
3541static unsigned int amp_val_replace_channels(unsigned int val, unsigned int chs)
3542{
3543 val &= ~(0x3U << 16);
3544 val |= chs << 16;
3545 return val;
3546}
3547
Takashi Iwai343a04b2011-07-06 14:28:39 +02003548static int alc_auto_add_vol_ctl(struct hda_codec *codec,
Takashi Iwaiba8111272012-12-06 18:06:23 +01003549 const char *pfx, int cidx,
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003550 unsigned int chs,
Takashi Iwaiba8111272012-12-06 18:06:23 +01003551 struct nid_path *path)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003552{
Takashi Iwai527e4d72011-10-27 16:33:27 +02003553 unsigned int val;
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003554 if (!path)
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003555 return 0;
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003556 val = path->ctls[NID_PATH_VOL_CTL];
3557 if (!val)
Takashi Iwai527e4d72011-10-27 16:33:27 +02003558 return 0;
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003559 val = amp_val_replace_channels(val, chs);
3560 return __add_pb_vol_ctrl(codec->spec, ALC_CTL_WIDGET_VOL, pfx, cidx, val);
3561}
3562
3563/* return the channel bits suitable for the given path->ctls[] */
3564static int get_default_ch_nums(struct hda_codec *codec, struct nid_path *path,
3565 int type)
3566{
3567 int chs = 1; /* mono (left only) */
3568 if (path) {
3569 hda_nid_t nid = get_amp_nid_(path->ctls[type]);
3570 if (nid && (get_wcaps(codec, nid) & AC_WCAP_STEREO))
3571 chs = 3; /* stereo */
3572 }
3573 return chs;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003574}
3575
Takashi Iwaie29d3772011-11-14 17:13:23 +01003576static int alc_auto_add_stereo_vol(struct hda_codec *codec,
3577 const char *pfx, int cidx,
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003578 struct nid_path *path)
Takashi Iwaie29d3772011-11-14 17:13:23 +01003579{
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003580 int chs = get_default_ch_nums(codec, path, NID_PATH_VOL_CTL);
3581 return alc_auto_add_vol_ctl(codec, pfx, cidx, chs, path);
Takashi Iwaie29d3772011-11-14 17:13:23 +01003582}
Takashi Iwai97aaab72011-07-06 14:02:55 +02003583
3584/* create a mute-switch for the given mixer widget;
3585 * if it has multiple sources (e.g. DAC and loopback), create a bind-mute
3586 */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003587static int alc_auto_add_sw_ctl(struct hda_codec *codec,
Takashi Iwaiba8111272012-12-06 18:06:23 +01003588 const char *pfx, int cidx,
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003589 unsigned int chs,
Takashi Iwaiba8111272012-12-06 18:06:23 +01003590 struct nid_path *path)
Takashi Iwai7085ec12009-10-02 09:03:58 +02003591{
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003592 unsigned int val;
3593 int type = ALC_CTL_WIDGET_MUTE;
3594
3595 if (!path)
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003596 return 0;
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003597 val = path->ctls[NID_PATH_MUTE_CTL];
3598 if (!val)
3599 return 0;
3600 val = amp_val_replace_channels(val, chs);
3601 if (get_amp_direction_(val) == HDA_INPUT) {
3602 hda_nid_t nid = get_amp_nid_(val);
Takashi Iwai9366ede2012-12-13 16:43:52 +01003603 int nums = snd_hda_get_num_conns(codec, nid);
3604 if (nums > 1) {
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003605 type = ALC_CTL_BIND_MUTE;
Takashi Iwai9366ede2012-12-13 16:43:52 +01003606 val |= nums << 19;
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003607 }
Takashi Iwai97aaab72011-07-06 14:02:55 +02003608 }
3609 return __add_pb_sw_ctrl(codec->spec, type, pfx, cidx, val);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003610}
3611
Takashi Iwaie29d3772011-11-14 17:13:23 +01003612static int alc_auto_add_stereo_sw(struct hda_codec *codec, const char *pfx,
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003613 int cidx, struct nid_path *path)
Takashi Iwaie29d3772011-11-14 17:13:23 +01003614{
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003615 int chs = get_default_ch_nums(codec, path, NID_PATH_MUTE_CTL);
3616 return alc_auto_add_sw_ctl(codec, pfx, cidx, chs, path);
Takashi Iwaie29d3772011-11-14 17:13:23 +01003617}
Takashi Iwai7085ec12009-10-02 09:03:58 +02003618
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003619static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
Takashi Iwaiba8111272012-12-06 18:06:23 +01003620 struct nid_path *path)
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003621{
Takashi Iwaiba8111272012-12-06 18:06:23 +01003622 int i;
3623
3624 for (i = path->depth - 1; i >= 0; i--) {
3625 if (nid_has_mute(codec, path->path[i], HDA_OUTPUT))
3626 return path->path[i];
3627 if (i != path->depth - 1 && i != 0 &&
3628 nid_has_mute(codec, path->path[i], HDA_INPUT))
3629 return path->path[i];
3630 }
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003631 return 0;
3632}
3633
3634static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
Takashi Iwaiba8111272012-12-06 18:06:23 +01003635 struct nid_path *path)
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003636{
Takashi Iwaiba8111272012-12-06 18:06:23 +01003637 int i;
3638
3639 for (i = path->depth - 1; i >= 0; i--) {
3640 if (nid_has_volume(codec, path->path[i], HDA_OUTPUT))
3641 return path->path[i];
3642 }
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003643 return 0;
3644}
3645
Takashi Iwai7085ec12009-10-02 09:03:58 +02003646/* add playback controls from the parsed DAC table */
Takashi Iwai343a04b2011-07-06 14:28:39 +02003647static int alc_auto_create_multi_out_ctls(struct hda_codec *codec,
Takashi Iwai7085ec12009-10-02 09:03:58 +02003648 const struct auto_pin_cfg *cfg)
3649{
3650 struct alc_spec *spec = codec->spec;
Takashi Iwaice764ab2011-04-27 16:35:23 +02003651 int i, err, noutputs;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003652
Takashi Iwaice764ab2011-04-27 16:35:23 +02003653 noutputs = cfg->line_outs;
Takashi Iwaib90bf1d2012-01-19 11:42:55 +01003654 if (spec->multi_ios > 0 && cfg->line_outs < 3)
Takashi Iwaice764ab2011-04-27 16:35:23 +02003655 noutputs += spec->multi_ios;
3656
3657 for (i = 0; i < noutputs; i++) {
Takashi Iwai6843ca12011-06-24 11:03:58 +02003658 const char *name;
3659 int index;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003660 hda_nid_t dac, pin;
Takashi Iwaiba8111272012-12-06 18:06:23 +01003661 struct nid_path *path;
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003662
3663 dac = spec->multiout.dac_nids[i];
3664 if (!dac)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003665 continue;
Takashi Iwai689cabf2012-02-21 12:35:27 +01003666 if (i >= cfg->line_outs) {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003667 pin = spec->multi_io[i - 1].pin;
Takashi Iwai689cabf2012-02-21 12:35:27 +01003668 index = 0;
3669 name = channel_name[i];
3670 } else {
Takashi Iwaice764ab2011-04-27 16:35:23 +02003671 pin = cfg->line_out_pins[i];
Takashi Iwai689cabf2012-02-21 12:35:27 +01003672 name = alc_get_line_out_pfx(spec, i, true, &index);
3673 }
Takashi Iwaiafcd5512011-07-08 11:07:59 +02003674
Takashi Iwai6518f7a2012-12-14 17:34:51 +01003675 path = get_nid_path(codec, dac, pin);
Takashi Iwaiba8111272012-12-06 18:06:23 +01003676 if (!path)
3677 continue;
Takashi Iwai9c4e84d2011-08-24 17:27:52 +02003678 if (!name || !strcmp(name, "CLFE")) {
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003679 /* Center/LFE */
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003680 err = alc_auto_add_vol_ctl(codec, "Center", 0, 1, path);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003681 if (err < 0)
3682 return err;
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003683 err = alc_auto_add_vol_ctl(codec, "LFE", 0, 2, path);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003684 if (err < 0)
3685 return err;
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003686 err = alc_auto_add_sw_ctl(codec, "Center", 0, 1, path);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003687 if (err < 0)
3688 return err;
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003689 err = alc_auto_add_sw_ctl(codec, "LFE", 0, 2, path);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003690 if (err < 0)
3691 return err;
3692 } else {
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003693 err = alc_auto_add_stereo_vol(codec, name, index, path);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003694 if (err < 0)
3695 return err;
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003696 err = alc_auto_add_stereo_sw(codec, name, index, path);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003697 if (err < 0)
3698 return err;
3699 }
3700 }
3701 return 0;
3702}
3703
Takashi Iwai343a04b2011-07-06 14:28:39 +02003704static int alc_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai766ddee2011-12-07 16:55:19 +01003705 hda_nid_t dac, const char *pfx,
3706 int cidx)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003707{
Takashi Iwaiba8111272012-12-06 18:06:23 +01003708 struct nid_path *path;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003709 int err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003710
Takashi Iwai6518f7a2012-12-14 17:34:51 +01003711 path = get_nid_path(codec, dac, pin);
Takashi Iwaiba8111272012-12-06 18:06:23 +01003712 if (!path)
3713 return 0;
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003714 /* bind volume control will be created in the case of dac = 0 */
3715 if (dac) {
3716 err = alc_auto_add_stereo_vol(codec, pfx, cidx, path);
3717 if (err < 0)
3718 return err;
Takashi Iwai7085ec12009-10-02 09:03:58 +02003719 }
Takashi Iwai792cf2f2012-12-10 16:04:30 +01003720 err = alc_auto_add_stereo_sw(codec, pfx, cidx, path);
Takashi Iwai7085ec12009-10-02 09:03:58 +02003721 if (err < 0)
3722 return err;
Takashi Iwai3af9ee62011-06-27 12:34:01 +02003723 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003724}
3725
Takashi Iwai23c09b02011-08-19 09:05:35 +02003726static struct hda_bind_ctls *new_bind_ctl(struct hda_codec *codec,
3727 unsigned int nums,
3728 struct hda_ctl_ops *ops)
3729{
3730 struct alc_spec *spec = codec->spec;
3731 struct hda_bind_ctls **ctlp, *ctl;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003732 ctlp = snd_array_new(&spec->bind_ctls);
3733 if (!ctlp)
3734 return NULL;
3735 ctl = kzalloc(sizeof(*ctl) + sizeof(long) * (nums + 1), GFP_KERNEL);
3736 *ctlp = ctl;
3737 if (ctl)
3738 ctl->ops = ops;
3739 return ctl;
3740}
3741
3742/* add playback controls for speaker and HP outputs */
3743static int alc_auto_create_extra_outs(struct hda_codec *codec, int num_pins,
3744 const hda_nid_t *pins,
3745 const hda_nid_t *dacs,
3746 const char *pfx)
3747{
3748 struct alc_spec *spec = codec->spec;
3749 struct hda_bind_ctls *ctl;
3750 char name[32];
3751 int i, n, err;
3752
3753 if (!num_pins || !pins[0])
3754 return 0;
3755
Takashi Iwai527e4d72011-10-27 16:33:27 +02003756 if (num_pins == 1) {
3757 hda_nid_t dac = *dacs;
3758 if (!dac)
3759 dac = spec->multiout.dac_nids[0];
Takashi Iwai766ddee2011-12-07 16:55:19 +01003760 return alc_auto_create_extra_out(codec, *pins, dac, pfx, 0);
Takashi Iwai527e4d72011-10-27 16:33:27 +02003761 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003762
Takashi Iwai23c09b02011-08-19 09:05:35 +02003763 for (i = 0; i < num_pins; i++) {
Takashi Iwaic96f0bf2012-02-21 12:12:57 +01003764 hda_nid_t dac;
3765 if (dacs[num_pins - 1])
3766 dac = dacs[i]; /* with individual volumes */
3767 else
3768 dac = 0;
3769 if (num_pins == 2 && i == 1 && !strcmp(pfx, "Speaker")) {
3770 err = alc_auto_create_extra_out(codec, pins[i], dac,
3771 "Bass Speaker", 0);
3772 } else if (num_pins >= 3) {
3773 snprintf(name, sizeof(name), "%s %s",
3774 pfx, channel_name[i]);
3775 err = alc_auto_create_extra_out(codec, pins[i], dac,
3776 name, 0);
3777 } else {
3778 err = alc_auto_create_extra_out(codec, pins[i], dac,
3779 pfx, i);
3780 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02003781 if (err < 0)
3782 return err;
3783 }
Takashi Iwaic96f0bf2012-02-21 12:12:57 +01003784 if (dacs[num_pins - 1])
3785 return 0;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003786
Takashi Iwaic96f0bf2012-02-21 12:12:57 +01003787 /* Let's create a bind-controls for volumes */
Takashi Iwai23c09b02011-08-19 09:05:35 +02003788 ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_vol);
3789 if (!ctl)
3790 return -ENOMEM;
3791 n = 0;
3792 for (i = 0; i < num_pins; i++) {
3793 hda_nid_t vol;
Takashi Iwaiba8111272012-12-06 18:06:23 +01003794 struct nid_path *path;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003795 if (!pins[i] || !dacs[i])
3796 continue;
Takashi Iwai6518f7a2012-12-14 17:34:51 +01003797 path = get_nid_path(codec, dacs[i], pins[i]);
Takashi Iwaiba8111272012-12-06 18:06:23 +01003798 if (!path)
3799 continue;
3800 vol = alc_look_for_out_vol_nid(codec, path);
Takashi Iwai23c09b02011-08-19 09:05:35 +02003801 if (vol)
3802 ctl->values[n++] =
3803 HDA_COMPOSE_AMP_VAL(vol, 3, 0, HDA_OUTPUT);
3804 }
3805 if (n) {
3806 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
3807 err = add_control(spec, ALC_CTL_BIND_VOL, name, 0, (long)ctl);
3808 if (err < 0)
3809 return err;
3810 }
3811 return 0;
3812}
3813
Takashi Iwai343a04b2011-07-06 14:28:39 +02003814static int alc_auto_create_hp_out(struct hda_codec *codec)
3815{
3816 struct alc_spec *spec = codec->spec;
Takashi Iwaie23832a2011-08-23 18:16:56 +02003817 return alc_auto_create_extra_outs(codec, spec->autocfg.hp_outs,
3818 spec->autocfg.hp_pins,
3819 spec->multiout.hp_out_nid,
3820 "Headphone");
Takashi Iwai343a04b2011-07-06 14:28:39 +02003821}
3822
3823static int alc_auto_create_speaker_out(struct hda_codec *codec)
3824{
3825 struct alc_spec *spec = codec->spec;
Takashi Iwai23c09b02011-08-19 09:05:35 +02003826 return alc_auto_create_extra_outs(codec, spec->autocfg.speaker_outs,
3827 spec->autocfg.speaker_pins,
3828 spec->multiout.extra_out_nid,
3829 "Speaker");
Takashi Iwai343a04b2011-07-06 14:28:39 +02003830}
3831
Takashi Iwai130e5f02012-12-14 16:09:29 +01003832/* check whether a control with the given (nid, dir, idx) was assigned */
3833static bool is_ctl_associated(struct hda_codec *codec, hda_nid_t nid,
3834 int dir, int idx)
Takashi Iwai78e635c2012-12-10 17:07:16 +01003835{
Takashi Iwai130e5f02012-12-14 16:09:29 +01003836 struct alc_spec *spec = codec->spec;
Takashi Iwaic9967f12012-12-14 16:39:22 +01003837 int i, type;
3838
3839 for (i = 0; i < spec->paths.used; i++) {
3840 struct nid_path *p = snd_array_elem(&spec->paths, i);
3841 if (p->depth <= 0)
3842 continue;
Takashi Iwai8dd48672012-12-14 18:19:04 +01003843 for (type = 0; type < NID_PATH_NUM_CTLS; type++) {
Takashi Iwaic9967f12012-12-14 16:39:22 +01003844 unsigned int val = p->ctls[type];
3845 if (get_amp_nid_(val) == nid &&
3846 get_amp_direction_(val) == dir &&
3847 get_amp_index_(val) == idx)
3848 return true;
3849 }
3850 }
3851 return false;
Takashi Iwai130e5f02012-12-14 16:09:29 +01003852}
3853
3854/* can have the amp-in capability? */
3855static bool has_amp_in(struct hda_codec *codec, struct nid_path *path, int idx)
3856{
3857 hda_nid_t nid = path->path[idx];
3858 unsigned int caps = get_wcaps(codec, nid);
3859 unsigned int type = get_wcaps_type(caps);
3860
3861 if (!(caps & AC_WCAP_IN_AMP))
3862 return false;
3863 if (type == AC_WID_PIN && idx > 0) /* only for input pins */
3864 return false;
3865 return true;
3866}
3867
3868/* can have the amp-out capability? */
3869static bool has_amp_out(struct hda_codec *codec, struct nid_path *path, int idx)
3870{
3871 hda_nid_t nid = path->path[idx];
3872 unsigned int caps = get_wcaps(codec, nid);
3873 unsigned int type = get_wcaps_type(caps);
3874
3875 if (!(caps & AC_WCAP_OUT_AMP))
3876 return false;
3877 if (type == AC_WID_PIN && !idx) /* only for output pins */
3878 return false;
3879 return true;
3880}
3881
Takashi Iwaic9967f12012-12-14 16:39:22 +01003882/* check whether the given (nid,dir,idx) is active */
3883static bool is_active_nid(struct hda_codec *codec, hda_nid_t nid,
3884 unsigned int idx, unsigned int dir)
Takashi Iwai130e5f02012-12-14 16:09:29 +01003885{
Takashi Iwaic9967f12012-12-14 16:39:22 +01003886 struct alc_spec *spec = codec->spec;
Takashi Iwai130e5f02012-12-14 16:09:29 +01003887 int i, n;
3888
Takashi Iwaic9967f12012-12-14 16:39:22 +01003889 for (n = 0; n < spec->paths.used; n++) {
3890 struct nid_path *path = snd_array_elem(&spec->paths, n);
Takashi Iwai130e5f02012-12-14 16:09:29 +01003891 if (!path->active)
3892 continue;
3893 for (i = 0; i < path->depth; i++) {
3894 if (path->path[i] == nid) {
3895 if (dir == HDA_OUTPUT || path->idx[i] == idx)
3896 return true;
3897 break;
3898 }
3899 }
3900 }
3901 return false;
3902}
3903
Takashi Iwai130e5f02012-12-14 16:09:29 +01003904/* get the default amp value for the target state */
3905static int get_amp_val_to_activate(struct hda_codec *codec, hda_nid_t nid,
3906 int dir, bool enable)
3907{
3908 unsigned int caps;
Takashi Iwai78e635c2012-12-10 17:07:16 +01003909 unsigned int val = 0;
3910
3911 caps = query_amp_caps(codec, nid, dir);
3912 if (caps & AC_AMPCAP_NUM_STEPS) {
Takashi Iwai130e5f02012-12-14 16:09:29 +01003913 /* set to 0dB */
3914 if (enable)
3915 val = (caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT;
Takashi Iwai78e635c2012-12-10 17:07:16 +01003916 }
3917 if (caps & AC_AMPCAP_MUTE) {
Takashi Iwai130e5f02012-12-14 16:09:29 +01003918 if (!enable)
Takashi Iwai78e635c2012-12-10 17:07:16 +01003919 val |= HDA_AMP_MUTE;
3920 }
3921 return val;
3922}
3923
Takashi Iwai130e5f02012-12-14 16:09:29 +01003924/* initialize the amp value (only at the first time) */
3925static void init_amp(struct hda_codec *codec, hda_nid_t nid, int dir, int idx)
3926{
3927 int val = get_amp_val_to_activate(codec, nid, dir, false);
3928 snd_hda_codec_amp_init_stereo(codec, nid, dir, idx, 0xff, val);
3929}
3930
3931static void activate_amp(struct hda_codec *codec, hda_nid_t nid, int dir,
3932 int idx, bool enable)
3933{
3934 int val;
3935 if (is_ctl_associated(codec, nid, dir, idx) ||
3936 is_active_nid(codec, nid, dir, idx))
3937 return;
3938 val = get_amp_val_to_activate(codec, nid, dir, enable);
3939 snd_hda_codec_amp_stereo(codec, nid, dir, idx, 0xff, val);
3940}
3941
3942static void activate_amp_out(struct hda_codec *codec, struct nid_path *path,
3943 int i, bool enable)
3944{
3945 hda_nid_t nid = path->path[i];
3946 init_amp(codec, nid, HDA_OUTPUT, 0);
3947 activate_amp(codec, nid, HDA_OUTPUT, 0, enable);
3948}
3949
3950static void activate_amp_in(struct hda_codec *codec, struct nid_path *path,
Takashi Iwai666a70d2012-12-17 20:29:29 +01003951 int i, bool enable, bool add_aamix)
Takashi Iwai130e5f02012-12-14 16:09:29 +01003952{
3953 struct alc_spec *spec = codec->spec;
3954 hda_nid_t conn[16];
Takashi Iwai0250f7c2012-12-14 17:53:29 +01003955 int n, nums, idx;
Takashi Iwai666a70d2012-12-17 20:29:29 +01003956 int type;
Takashi Iwai130e5f02012-12-14 16:09:29 +01003957 hda_nid_t nid = path->path[i];
3958
3959 nums = snd_hda_get_connections(codec, nid, conn, ARRAY_SIZE(conn));
Takashi Iwai666a70d2012-12-17 20:29:29 +01003960 type = get_wcaps_type(get_wcaps(codec, nid));
3961 if (type == AC_WID_PIN ||
3962 (type == AC_WID_AUD_IN && codec->single_adc_amp)) {
Takashi Iwai0250f7c2012-12-14 17:53:29 +01003963 nums = 1;
3964 idx = 0;
3965 } else
3966 idx = path->idx[i];
3967
Takashi Iwai130e5f02012-12-14 16:09:29 +01003968 for (n = 0; n < nums; n++)
3969 init_amp(codec, nid, HDA_INPUT, n);
3970
Takashi Iwai0250f7c2012-12-14 17:53:29 +01003971 if (is_ctl_associated(codec, nid, HDA_INPUT, idx))
Takashi Iwai130e5f02012-12-14 16:09:29 +01003972 return;
3973
3974 /* here is a little bit tricky in comparison with activate_amp_out();
3975 * when aa-mixer is available, we need to enable the path as well
3976 */
3977 for (n = 0; n < nums; n++) {
Takashi Iwai666a70d2012-12-17 20:29:29 +01003978 if (n != idx && (!add_aamix || conn[n] != spec->mixer_nid))
Takashi Iwai130e5f02012-12-14 16:09:29 +01003979 continue;
3980 activate_amp(codec, nid, HDA_INPUT, n, enable);
3981 }
3982}
3983
3984static void activate_path(struct hda_codec *codec, struct nid_path *path,
Takashi Iwai666a70d2012-12-17 20:29:29 +01003985 bool enable, bool add_aamix)
Takashi Iwai130e5f02012-12-14 16:09:29 +01003986{
3987 int i;
3988
Takashi Iwai130e5f02012-12-14 16:09:29 +01003989 if (!enable)
3990 path->active = false;
3991
3992 for (i = path->depth - 1; i >= 0; i--) {
Takashi Iwai183a4442012-12-17 18:00:02 +01003993 if (enable && path->multi[i])
Takashi Iwai130e5f02012-12-14 16:09:29 +01003994 snd_hda_codec_write_cache(codec, path->path[i], 0,
3995 AC_VERB_SET_CONNECT_SEL,
3996 path->idx[i]);
3997 if (has_amp_in(codec, path, i))
Takashi Iwai666a70d2012-12-17 20:29:29 +01003998 activate_amp_in(codec, path, i, enable, add_aamix);
Takashi Iwai130e5f02012-12-14 16:09:29 +01003999 if (has_amp_out(codec, path, i))
4000 activate_amp_out(codec, path, i, enable);
4001 }
4002
4003 if (enable)
4004 path->active = true;
4005}
4006
Takashi Iwai78e635c2012-12-10 17:07:16 +01004007/* configure the path from the given dac to the pin as the proper output */
4008static void alc_auto_set_output_and_unmute(struct hda_codec *codec,
4009 hda_nid_t pin, int pin_type,
Takashi Iwai130e5f02012-12-14 16:09:29 +01004010 hda_nid_t dac)
Takashi Iwai78e635c2012-12-10 17:07:16 +01004011{
Takashi Iwaiba8111272012-12-06 18:06:23 +01004012 struct nid_path *path;
Takashi Iwai7085ec12009-10-02 09:03:58 +02004013
Takashi Iwai130e5f02012-12-14 16:09:29 +01004014 snd_hda_set_pin_ctl_cache(codec, pin, pin_type);
Takashi Iwai6518f7a2012-12-14 17:34:51 +01004015 path = get_nid_path(codec, dac, pin);
Takashi Iwaiba8111272012-12-06 18:06:23 +01004016 if (!path)
4017 return;
Takashi Iwai3ebf1e92012-12-14 18:04:37 +01004018 if (path->active)
4019 return;
Takashi Iwai666a70d2012-12-17 20:29:29 +01004020 activate_path(codec, path, true, true);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02004021}
4022
Takashi Iwai343a04b2011-07-06 14:28:39 +02004023static void alc_auto_init_multi_out(struct hda_codec *codec)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02004024{
4025 struct alc_spec *spec = codec->spec;
Takashi Iwai7085ec12009-10-02 09:03:58 +02004026 int pin_type = get_pin_type(spec->autocfg.line_out_type);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02004027 int i;
4028
4029 for (i = 0; i <= HDA_SIDE; i++) {
4030 hda_nid_t nid = spec->autocfg.line_out_pins[i];
4031 if (nid)
Takashi Iwai343a04b2011-07-06 14:28:39 +02004032 alc_auto_set_output_and_unmute(codec, nid, pin_type,
Takashi Iwai130e5f02012-12-14 16:09:29 +01004033 spec->multiout.dac_nids[i]);
Takashi Iwai78e635c2012-12-10 17:07:16 +01004034
Kailang Yangbc9f98a2007-04-12 13:06:07 +02004035 }
4036}
4037
Takashi Iwai343a04b2011-07-06 14:28:39 +02004038static void alc_auto_init_extra_out(struct hda_codec *codec)
Kailang Yangbc9f98a2007-04-12 13:06:07 +02004039{
4040 struct alc_spec *spec = codec->spec;
Takashi Iwai8cd07752011-08-23 15:16:22 +02004041 int i;
Takashi Iwai675c1aa2011-08-23 12:36:28 +02004042 hda_nid_t pin, dac;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02004043
David Henningsson636030e2011-10-12 19:26:03 +02004044 for (i = 0; i < spec->autocfg.hp_outs; i++) {
Takashi Iwai716eef02011-10-21 15:07:42 +02004045 if (spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)
4046 break;
Takashi Iwaie23832a2011-08-23 18:16:56 +02004047 pin = spec->autocfg.hp_pins[i];
4048 if (!pin)
4049 break;
4050 dac = spec->multiout.hp_out_nid[i];
4051 if (!dac) {
4052 if (i > 0 && spec->multiout.hp_out_nid[0])
4053 dac = spec->multiout.hp_out_nid[0];
4054 else
4055 dac = spec->multiout.dac_nids[0];
4056 }
Takashi Iwai130e5f02012-12-14 16:09:29 +01004057 alc_auto_set_output_and_unmute(codec, pin, PIN_HP, dac);
Takashi Iwai675c1aa2011-08-23 12:36:28 +02004058 }
Takashi Iwai8cd07752011-08-23 15:16:22 +02004059 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
Takashi Iwai716eef02011-10-21 15:07:42 +02004060 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
4061 break;
Takashi Iwai8cd07752011-08-23 15:16:22 +02004062 pin = spec->autocfg.speaker_pins[i];
4063 if (!pin)
4064 break;
4065 dac = spec->multiout.extra_out_nid[i];
4066 if (!dac) {
4067 if (i > 0 && spec->multiout.extra_out_nid[0])
4068 dac = spec->multiout.extra_out_nid[0];
4069 else
4070 dac = spec->multiout.dac_nids[0];
4071 }
Takashi Iwai130e5f02012-12-14 16:09:29 +01004072 alc_auto_set_output_and_unmute(codec, pin, PIN_OUT, dac);
Takashi Iwai675c1aa2011-08-23 12:36:28 +02004073 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +02004074}
4075
Takashi Iwai276dd702012-02-17 16:17:03 +01004076/* check whether the given pin can be a multi-io pin */
4077static bool can_be_multiio_pin(struct hda_codec *codec,
4078 unsigned int location, hda_nid_t nid)
4079{
4080 unsigned int defcfg, caps;
4081
4082 defcfg = snd_hda_codec_get_pincfg(codec, nid);
4083 if (get_defcfg_connect(defcfg) != AC_JACK_PORT_COMPLEX)
4084 return false;
4085 if (location && get_defcfg_location(defcfg) != location)
4086 return false;
4087 caps = snd_hda_query_pin_caps(codec, nid);
4088 if (!(caps & AC_PINCAP_OUT))
4089 return false;
4090 return true;
4091}
4092
Takashi Iwaice764ab2011-04-27 16:35:23 +02004093/*
4094 * multi-io helper
Takashi Iwai276dd702012-02-17 16:17:03 +01004095 *
4096 * When hardwired is set, try to fill ony hardwired pins, and returns
4097 * zero if any pins are filled, non-zero if nothing found.
4098 * When hardwired is off, try to fill possible input pins, and returns
4099 * the badness value.
Takashi Iwaice764ab2011-04-27 16:35:23 +02004100 */
4101static int alc_auto_fill_multi_ios(struct hda_codec *codec,
Takashi Iwai276dd702012-02-17 16:17:03 +01004102 hda_nid_t reference_pin,
4103 bool hardwired, int offset)
Takashi Iwaice764ab2011-04-27 16:35:23 +02004104{
4105 struct alc_spec *spec = codec->spec;
4106 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai276dd702012-02-17 16:17:03 +01004107 int type, i, j, dacs, num_pins, old_pins;
4108 unsigned int defcfg = snd_hda_codec_get_pincfg(codec, reference_pin);
4109 unsigned int location = get_defcfg_location(defcfg);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01004110 int badness = 0;
Takashi Iwaice764ab2011-04-27 16:35:23 +02004111
Takashi Iwai276dd702012-02-17 16:17:03 +01004112 old_pins = spec->multi_ios;
4113 if (old_pins >= 2)
4114 goto end_fill;
4115
4116 num_pins = 0;
4117 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
4118 for (i = 0; i < cfg->num_inputs; i++) {
4119 if (cfg->inputs[i].type != type)
4120 continue;
4121 if (can_be_multiio_pin(codec, location,
4122 cfg->inputs[i].pin))
4123 num_pins++;
4124 }
4125 }
4126 if (num_pins < 2)
4127 goto end_fill;
4128
Takashi Iwai07b18f62011-11-10 15:42:54 +01004129 dacs = spec->multiout.num_dacs;
Takashi Iwaice764ab2011-04-27 16:35:23 +02004130 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
4131 for (i = 0; i < cfg->num_inputs; i++) {
4132 hda_nid_t nid = cfg->inputs[i].pin;
Takashi Iwai07b18f62011-11-10 15:42:54 +01004133 hda_nid_t dac = 0;
Takashi Iwai276dd702012-02-17 16:17:03 +01004134
Takashi Iwaice764ab2011-04-27 16:35:23 +02004135 if (cfg->inputs[i].type != type)
4136 continue;
Takashi Iwai276dd702012-02-17 16:17:03 +01004137 if (!can_be_multiio_pin(codec, location, nid))
Takashi Iwaice764ab2011-04-27 16:35:23 +02004138 continue;
Takashi Iwai276dd702012-02-17 16:17:03 +01004139 for (j = 0; j < spec->multi_ios; j++) {
4140 if (nid == spec->multi_io[j].pin)
4141 break;
4142 }
4143 if (j < spec->multi_ios)
Takashi Iwaice764ab2011-04-27 16:35:23 +02004144 continue;
Takashi Iwai276dd702012-02-17 16:17:03 +01004145
4146 if (offset && offset + spec->multi_ios < dacs) {
4147 dac = spec->private_dac_nids[offset + spec->multi_ios];
Takashi Iwai9c640762012-12-14 16:15:56 +01004148 if (!is_reachable_path(codec, dac, nid))
Takashi Iwai07b18f62011-11-10 15:42:54 +01004149 dac = 0;
4150 }
Takashi Iwai276dd702012-02-17 16:17:03 +01004151 if (hardwired)
4152 dac = get_dac_if_single(codec, nid);
4153 else if (!dac)
Takashi Iwaifef7fbb2012-12-14 16:54:44 +01004154 dac = alc_auto_look_for_dac(codec, nid, false);
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01004155 if (!dac) {
Takashi Iwai276dd702012-02-17 16:17:03 +01004156 badness++;
Takashi Iwaice764ab2011-04-27 16:35:23 +02004157 continue;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01004158 }
Takashi Iwai965cceb2012-12-18 11:46:37 +01004159 if (!add_new_nid_path(codec, dac, nid, 0)) {
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01004160 badness++;
4161 continue;
4162 }
Takashi Iwai276dd702012-02-17 16:17:03 +01004163 spec->multi_io[spec->multi_ios].pin = nid;
4164 spec->multi_io[spec->multi_ios].dac = dac;
4165 spec->multi_ios++;
4166 if (spec->multi_ios >= 2)
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01004167 break;
Takashi Iwaice764ab2011-04-27 16:35:23 +02004168 }
4169 }
Takashi Iwai276dd702012-02-17 16:17:03 +01004170 end_fill:
4171 if (badness)
4172 badness = BAD_MULTI_IO;
4173 if (old_pins == spec->multi_ios) {
4174 if (hardwired)
4175 return 1; /* nothing found */
4176 else
4177 return badness; /* no badness if nothing found */
4178 }
4179 if (!hardwired && spec->multi_ios < 2) {
Takashi Iwai30dcd3b2012-12-06 15:45:38 +01004180 /* cancel newly assigned paths */
Takashi Iwaic9967f12012-12-14 16:39:22 +01004181 spec->paths.used -= spec->multi_ios - old_pins;
Takashi Iwai276dd702012-02-17 16:17:03 +01004182 spec->multi_ios = old_pins;
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01004183 return badness;
Takashi Iwaic2674682011-08-24 17:57:44 +02004184 }
Takashi Iwai1c4a54b2012-02-16 16:45:59 +01004185
Takashi Iwai792cf2f2012-12-10 16:04:30 +01004186 /* assign volume and mute controls */
4187 for (i = old_pins; i < spec->multi_ios; i++)
4188 badness += assign_out_path_ctls(codec, spec->multi_io[i].pin,
4189 spec->multi_io[i].dac);
4190
4191 return badness;
Takashi Iwaice764ab2011-04-27 16:35:23 +02004192}
4193
4194static int alc_auto_ch_mode_info(struct snd_kcontrol *kcontrol,
4195 struct snd_ctl_elem_info *uinfo)
4196{
4197 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4198 struct alc_spec *spec = codec->spec;
4199
4200 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
4201 uinfo->count = 1;
4202 uinfo->value.enumerated.items = spec->multi_ios + 1;
4203 if (uinfo->value.enumerated.item > spec->multi_ios)
4204 uinfo->value.enumerated.item = spec->multi_ios;
4205 sprintf(uinfo->value.enumerated.name, "%dch",
4206 (uinfo->value.enumerated.item + 1) * 2);
4207 return 0;
4208}
4209
4210static int alc_auto_ch_mode_get(struct snd_kcontrol *kcontrol,
4211 struct snd_ctl_elem_value *ucontrol)
4212{
4213 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4214 struct alc_spec *spec = codec->spec;
4215 ucontrol->value.enumerated.item[0] = (spec->ext_channel_count - 1) / 2;
4216 return 0;
4217}
4218
4219static int alc_set_multi_io(struct hda_codec *codec, int idx, bool output)
4220{
4221 struct alc_spec *spec = codec->spec;
4222 hda_nid_t nid = spec->multi_io[idx].pin;
Takashi Iwai130e5f02012-12-14 16:09:29 +01004223 struct nid_path *path;
4224
Takashi Iwai6518f7a2012-12-14 17:34:51 +01004225 path = get_nid_path(codec, spec->multi_io[idx].dac, nid);
Takashi Iwai130e5f02012-12-14 16:09:29 +01004226 if (!path)
4227 return -EINVAL;
Takashi Iwaice764ab2011-04-27 16:35:23 +02004228
Takashi Iwai3ebf1e92012-12-14 18:04:37 +01004229 if (path->active == output)
4230 return 0;
Takashi Iwai130e5f02012-12-14 16:09:29 +01004231
Takashi Iwaice764ab2011-04-27 16:35:23 +02004232 if (output) {
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02004233 snd_hda_set_pin_ctl_cache(codec, nid, PIN_OUT);
Takashi Iwai666a70d2012-12-17 20:29:29 +01004234 activate_path(codec, path, true, true);
Takashi Iwaice764ab2011-04-27 16:35:23 +02004235 } else {
Takashi Iwai666a70d2012-12-17 20:29:29 +01004236 activate_path(codec, path, false, true);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02004237 snd_hda_set_pin_ctl_cache(codec, nid,
4238 spec->multi_io[idx].ctl_in);
Takashi Iwaice764ab2011-04-27 16:35:23 +02004239 }
4240 return 0;
4241}
4242
4243static int alc_auto_ch_mode_put(struct snd_kcontrol *kcontrol,
4244 struct snd_ctl_elem_value *ucontrol)
4245{
4246 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4247 struct alc_spec *spec = codec->spec;
4248 int i, ch;
4249
4250 ch = ucontrol->value.enumerated.item[0];
4251 if (ch < 0 || ch > spec->multi_ios)
4252 return -EINVAL;
4253 if (ch == (spec->ext_channel_count - 1) / 2)
4254 return 0;
4255 spec->ext_channel_count = (ch + 1) * 2;
4256 for (i = 0; i < spec->multi_ios; i++)
4257 alc_set_multi_io(codec, i, i < ch);
Takashi Iwaib6adb572012-12-03 10:30:58 +01004258 spec->multiout.max_channels = max(spec->ext_channel_count,
4259 spec->const_channel_count);
4260 if (spec->need_dac_fix)
Takashi Iwai7b1655f2011-07-14 15:31:21 +02004261 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
Takashi Iwaice764ab2011-04-27 16:35:23 +02004262 return 1;
4263}
4264
Takashi Iwaia9111322011-05-02 11:30:18 +02004265static const struct snd_kcontrol_new alc_auto_channel_mode_enum = {
Takashi Iwaice764ab2011-04-27 16:35:23 +02004266 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4267 .name = "Channel Mode",
4268 .info = alc_auto_ch_mode_info,
4269 .get = alc_auto_ch_mode_get,
4270 .put = alc_auto_ch_mode_put,
4271};
4272
Takashi Iwai23c09b02011-08-19 09:05:35 +02004273static int alc_auto_add_multi_channel_mode(struct hda_codec *codec)
Takashi Iwaice764ab2011-04-27 16:35:23 +02004274{
4275 struct alc_spec *spec = codec->spec;
Takashi Iwaice764ab2011-04-27 16:35:23 +02004276
Takashi Iwaic2674682011-08-24 17:57:44 +02004277 if (spec->multi_ios > 0) {
Takashi Iwaibc549762012-12-18 15:35:11 +01004278 if (!alc_kcontrol_new(spec, NULL, &alc_auto_channel_mode_enum))
Takashi Iwaice764ab2011-04-27 16:35:23 +02004279 return -ENOMEM;
Takashi Iwaice764ab2011-04-27 16:35:23 +02004280 }
4281 return 0;
4282}
4283
Takashi Iwai3ebf1e92012-12-14 18:04:37 +01004284static void alc_auto_init_multi_io(struct hda_codec *codec)
4285{
4286 struct alc_spec *spec = codec->spec;
4287 int i;
4288
4289 for (i = 0; i < spec->multi_ios; i++) {
4290 hda_nid_t pin = spec->multi_io[i].pin;
4291 struct nid_path *path;
4292 path = get_nid_path(codec, spec->multi_io[i].dac, pin);
4293 if (!path)
4294 continue;
4295 if (!spec->multi_io[i].ctl_in)
4296 spec->multi_io[i].ctl_in =
4297 snd_hda_codec_update_cache(codec, pin, 0,
4298 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
Takashi Iwai666a70d2012-12-17 20:29:29 +01004299 activate_path(codec, path, path->active, true);
Takashi Iwai3ebf1e92012-12-14 18:04:37 +01004300 }
4301}
4302
Takashi Iwai1d045db2011-07-07 18:23:21 +02004303/*
4304 * initialize ADC paths
4305 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004306static void alc_auto_init_input_src(struct hda_codec *codec)
4307{
4308 struct alc_spec *spec = codec->spec;
Takashi Iwai27d31532012-12-18 08:57:05 +01004309 struct hda_input_mux *imux = &spec->input_mux;
Takashi Iwai666a70d2012-12-17 20:29:29 +01004310 struct nid_path *path;
4311 int i, c, nums;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004312
Takashi Iwai1d045db2011-07-07 18:23:21 +02004313 if (spec->dyn_adc_switch)
4314 nums = 1;
4315 else
4316 nums = spec->num_adc_nids;
Takashi Iwai666a70d2012-12-17 20:29:29 +01004317
4318 for (c = 0; c < nums; c++) {
4319 for (i = 0; i < imux->num_items; i++) {
4320 path = get_nid_path(codec, spec->imux_pins[i],
4321 get_adc_nid(codec, c, i));
4322 if (path) {
4323 bool active = path->active;
4324 if (i == spec->cur_mux[c])
4325 active = true;
4326 activate_path(codec, path, active, false);
4327 }
4328 }
4329 }
4330
4331 alc_inv_dmic_sync(codec, true);
4332 if (spec->shared_mic_hp)
4333 update_shared_mic_hp(codec, spec->cur_mux[0]);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004334}
4335
4336/* add mic boosts if needed */
4337static int alc_auto_add_mic_boost(struct hda_codec *codec)
4338{
4339 struct alc_spec *spec = codec->spec;
4340 struct auto_pin_cfg *cfg = &spec->autocfg;
4341 int i, err;
4342 int type_idx = 0;
4343 hda_nid_t nid;
4344 const char *prev_label = NULL;
4345
4346 for (i = 0; i < cfg->num_inputs; i++) {
4347 if (cfg->inputs[i].type > AUTO_PIN_MIC)
4348 break;
4349 nid = cfg->inputs[i].pin;
4350 if (get_wcaps(codec, nid) & AC_WCAP_IN_AMP) {
4351 const char *label;
4352 char boost_label[32];
Takashi Iwai8dd48672012-12-14 18:19:04 +01004353 struct nid_path *path;
4354 unsigned int val;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004355
4356 label = hda_get_autocfg_input_label(codec, cfg, i);
Takashi Iwai24de1832011-11-07 17:13:39 +01004357 if (spec->shared_mic_hp && !strcmp(label, "Misc"))
4358 label = "Headphone Mic";
Takashi Iwai1d045db2011-07-07 18:23:21 +02004359 if (prev_label && !strcmp(label, prev_label))
4360 type_idx++;
4361 else
4362 type_idx = 0;
4363 prev_label = label;
4364
4365 snprintf(boost_label, sizeof(boost_label),
4366 "%s Boost Volume", label);
Takashi Iwai8dd48672012-12-14 18:19:04 +01004367 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004368 err = add_control(spec, ALC_CTL_WIDGET_VOL,
Takashi Iwai8dd48672012-12-14 18:19:04 +01004369 boost_label, type_idx, val);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004370 if (err < 0)
4371 return err;
Takashi Iwai8dd48672012-12-14 18:19:04 +01004372
4373 path = get_nid_path(codec, nid, 0);
4374 if (path)
4375 path->ctls[NID_PATH_BOOST_CTL] = val;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004376 }
4377 }
4378 return 0;
4379}
4380
Takashi Iwai1d045db2011-07-07 18:23:21 +02004381/*
Takashi Iwaie4770622011-07-08 11:11:35 +02004382 * standard auto-parser initializations
4383 */
4384static void alc_auto_init_std(struct hda_codec *codec)
4385{
Takashi Iwaie4770622011-07-08 11:11:35 +02004386 alc_auto_init_multi_out(codec);
4387 alc_auto_init_extra_out(codec);
Takashi Iwai3ebf1e92012-12-14 18:04:37 +01004388 alc_auto_init_multi_io(codec);
Takashi Iwaie4770622011-07-08 11:11:35 +02004389 alc_auto_init_analog_input(codec);
4390 alc_auto_init_input_src(codec);
4391 alc_auto_init_digital(codec);
Takashi Iwai2eab6942012-12-18 15:30:41 +01004392 /* call init functions of standard auto-mute helpers */
4393 alc_hp_automute(codec, NULL);
4394 alc_line_automute(codec, NULL);
4395 alc_mic_automute(codec, NULL);
Takashi Iwaie4770622011-07-08 11:11:35 +02004396}
4397
4398/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02004399 * Digital-beep handlers
4400 */
4401#ifdef CONFIG_SND_HDA_INPUT_BEEP
4402#define set_beep_amp(spec, nid, idx, dir) \
4403 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
4404
4405static const struct snd_pci_quirk beep_white_list[] = {
Duncan Roe71100052012-10-10 14:19:50 +02004406 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004407 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
4408 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
4409 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
4410 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
Takashi Iwai78f8baf2012-03-06 14:02:32 +01004411 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004412 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
4413 {}
4414};
4415
4416static inline int has_cdefine_beep(struct hda_codec *codec)
4417{
4418 struct alc_spec *spec = codec->spec;
4419 const struct snd_pci_quirk *q;
4420 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
4421 if (q)
4422 return q->value;
4423 return spec->cdefine.enable_pcbeep;
4424}
4425#else
4426#define set_beep_amp(spec, nid, idx, dir) /* NOP */
4427#define has_cdefine_beep(codec) 0
4428#endif
4429
4430/* parse the BIOS configuration and set up the alc_spec */
4431/* return 1 if successful, 0 if the proper config is not found,
4432 * or a negative error code
4433 */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004434static int alc_parse_auto_config(struct hda_codec *codec,
4435 const hda_nid_t *ignore_nids,
4436 const hda_nid_t *ssid_nids)
Takashi Iwai1d045db2011-07-07 18:23:21 +02004437{
4438 struct alc_spec *spec = codec->spec;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004439 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004440 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004441
Takashi Iwai53c334a2011-08-23 18:27:14 +02004442 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
4443 spec->parse_flags);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004444 if (err < 0)
4445 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004446 if (!cfg->line_outs) {
4447 if (cfg->dig_outs || cfg->dig_in_pin) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004448 spec->multiout.max_channels = 2;
4449 spec->no_analog = 1;
4450 goto dig_only;
4451 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004452 return 0; /* can't find valid BIOS pin config */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004453 }
Takashi Iwai23c09b02011-08-19 09:05:35 +02004454
Takashi Iwaie427c232012-07-29 10:04:08 +02004455 if (!spec->no_primary_hp &&
4456 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT &&
Takashi Iwai06503672011-10-06 08:27:19 +02004457 cfg->line_outs <= cfg->hp_outs) {
Takashi Iwai23c09b02011-08-19 09:05:35 +02004458 /* use HP as primary out */
4459 cfg->speaker_outs = cfg->line_outs;
4460 memcpy(cfg->speaker_pins, cfg->line_out_pins,
4461 sizeof(cfg->speaker_pins));
4462 cfg->line_outs = cfg->hp_outs;
4463 memcpy(cfg->line_out_pins, cfg->hp_pins, sizeof(cfg->hp_pins));
4464 cfg->hp_outs = 0;
4465 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
4466 cfg->line_out_type = AUTO_PIN_HP_OUT;
4467 }
4468
Takashi Iwai1d045db2011-07-07 18:23:21 +02004469 err = alc_auto_fill_dac_nids(codec);
4470 if (err < 0)
4471 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004472 err = alc_auto_add_multi_channel_mode(codec);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004473 if (err < 0)
4474 return err;
Takashi Iwai23c09b02011-08-19 09:05:35 +02004475 err = alc_auto_create_multi_out_ctls(codec, cfg);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004476 if (err < 0)
4477 return err;
4478 err = alc_auto_create_hp_out(codec);
4479 if (err < 0)
4480 return err;
4481 err = alc_auto_create_speaker_out(codec);
4482 if (err < 0)
4483 return err;
Takashi Iwai24de1832011-11-07 17:13:39 +01004484 err = alc_auto_create_shared_input(codec);
4485 if (err < 0)
4486 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004487 err = alc_auto_create_input_ctls(codec);
4488 if (err < 0)
4489 return err;
4490
Takashi Iwaib6adb572012-12-03 10:30:58 +01004491 /* check the multiple speaker pins */
4492 if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT)
4493 spec->const_channel_count = cfg->line_outs * 2;
4494 else
4495 spec->const_channel_count = cfg->speaker_outs * 2;
4496
4497 if (spec->multi_ios > 0)
4498 spec->multiout.max_channels = max(spec->ext_channel_count,
4499 spec->const_channel_count);
4500 else
4501 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004502
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004503 dig_only:
Takashi Iwai1d045db2011-07-07 18:23:21 +02004504 alc_auto_parse_digital(codec);
4505
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004506 if (ssid_nids)
4507 alc_ssid_check(codec, ssid_nids);
4508
4509 if (!spec->no_analog) {
Takashi Iwai666a70d2012-12-17 20:29:29 +01004510 err = alc_init_automute(codec);
Takashi Iwai475c3d22012-11-30 08:31:30 +01004511 if (err < 0)
4512 return err;
Takashi Iwai666a70d2012-12-17 20:29:29 +01004513
4514 err = check_dyn_adc_switch(codec);
4515 if (err < 0)
4516 return err;
4517
4518 if (!spec->shared_mic_hp) {
4519 err = alc_init_auto_mic(codec);
4520 if (err < 0)
4521 return err;
4522 }
4523
4524 err = create_capture_mixers(codec);
4525 if (err < 0)
4526 return err;
4527
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004528 err = alc_auto_add_mic_boost(codec);
4529 if (err < 0)
4530 return err;
4531 }
4532
Takashi Iwai1d045db2011-07-07 18:23:21 +02004533 if (spec->kctls.list)
4534 add_mixer(spec, spec->kctls.list);
4535
Takashi Iwai1d045db2011-07-07 18:23:21 +02004536 return 1;
4537}
4538
Takashi Iwai3de95172012-05-07 18:03:15 +02004539/* common preparation job for alc_spec */
4540static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
4541{
4542 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4543 int err;
4544
4545 if (!spec)
4546 return -ENOMEM;
4547 codec->spec = spec;
Takashi Iwai1098b7c2012-12-17 20:03:15 +01004548 codec->single_adc_amp = 1;
Takashi Iwai3de95172012-05-07 18:03:15 +02004549 spec->mixer_nid = mixer_nid;
Takashi Iwai361dab32012-05-09 14:35:27 +02004550 snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32);
4551 snd_array_init(&spec->bind_ctls, sizeof(struct hda_bind_ctls *), 8);
Takashi Iwaic9967f12012-12-14 16:39:22 +01004552 snd_array_init(&spec->paths, sizeof(struct nid_path), 8);
Takashi Iwai3de95172012-05-07 18:03:15 +02004553
4554 err = alc_codec_rename_from_preset(codec);
4555 if (err < 0) {
4556 kfree(spec);
4557 return err;
4558 }
4559 return 0;
4560}
4561
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004562static int alc880_parse_auto_config(struct hda_codec *codec)
4563{
4564 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02004565 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004566 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
4567}
4568
Takashi Iwai1d045db2011-07-07 18:23:21 +02004569/*
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004570 * ALC880 fix-ups
4571 */
4572enum {
Takashi Iwai411225a2012-02-20 17:48:19 +01004573 ALC880_FIXUP_GPIO1,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004574 ALC880_FIXUP_GPIO2,
4575 ALC880_FIXUP_MEDION_RIM,
Takashi Iwaidc6af522012-02-17 16:18:59 +01004576 ALC880_FIXUP_LG,
Takashi Iwaif02aab52012-02-17 16:33:56 +01004577 ALC880_FIXUP_W810,
Takashi Iwai27e917f2012-02-17 17:49:54 +01004578 ALC880_FIXUP_EAPD_COEF,
Takashi Iwaib9368f52012-02-17 17:54:44 +01004579 ALC880_FIXUP_TCL_S700,
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004580 ALC880_FIXUP_VOL_KNOB,
4581 ALC880_FIXUP_FUJITSU,
Takashi Iwaiba533812012-02-20 16:36:52 +01004582 ALC880_FIXUP_F1734,
Takashi Iwai817de922012-02-20 17:20:48 +01004583 ALC880_FIXUP_UNIWILL,
Takashi Iwai967b88c2012-02-20 17:31:02 +01004584 ALC880_FIXUP_UNIWILL_DIG,
Takashi Iwai96e225f2012-02-20 17:41:51 +01004585 ALC880_FIXUP_Z71V,
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004586 ALC880_FIXUP_3ST_BASE,
4587 ALC880_FIXUP_3ST,
4588 ALC880_FIXUP_3ST_DIG,
4589 ALC880_FIXUP_5ST_BASE,
4590 ALC880_FIXUP_5ST,
4591 ALC880_FIXUP_5ST_DIG,
4592 ALC880_FIXUP_6ST_BASE,
4593 ALC880_FIXUP_6ST,
4594 ALC880_FIXUP_6ST_DIG,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004595};
4596
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004597/* enable the volume-knob widget support on NID 0x21 */
4598static void alc880_fixup_vol_knob(struct hda_codec *codec,
4599 const struct alc_fixup *fix, int action)
4600{
4601 if (action == ALC_FIXUP_ACT_PROBE)
David Henningsson29adc4b2012-09-25 11:31:00 +02004602 snd_hda_jack_detect_enable_callback(codec, 0x21, ALC_DCVOL_EVENT, alc_update_knob_master);
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004603}
4604
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004605static const struct alc_fixup alc880_fixups[] = {
Takashi Iwai411225a2012-02-20 17:48:19 +01004606 [ALC880_FIXUP_GPIO1] = {
4607 .type = ALC_FIXUP_VERBS,
4608 .v.verbs = alc_gpio1_init_verbs,
4609 },
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004610 [ALC880_FIXUP_GPIO2] = {
4611 .type = ALC_FIXUP_VERBS,
4612 .v.verbs = alc_gpio2_init_verbs,
4613 },
4614 [ALC880_FIXUP_MEDION_RIM] = {
4615 .type = ALC_FIXUP_VERBS,
4616 .v.verbs = (const struct hda_verb[]) {
4617 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4618 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
4619 { }
4620 },
4621 .chained = true,
4622 .chain_id = ALC880_FIXUP_GPIO2,
4623 },
Takashi Iwaidc6af522012-02-17 16:18:59 +01004624 [ALC880_FIXUP_LG] = {
4625 .type = ALC_FIXUP_PINS,
4626 .v.pins = (const struct alc_pincfg[]) {
4627 /* disable bogus unused pins */
4628 { 0x16, 0x411111f0 },
4629 { 0x18, 0x411111f0 },
4630 { 0x1a, 0x411111f0 },
4631 { }
4632 }
4633 },
Takashi Iwaif02aab52012-02-17 16:33:56 +01004634 [ALC880_FIXUP_W810] = {
4635 .type = ALC_FIXUP_PINS,
4636 .v.pins = (const struct alc_pincfg[]) {
4637 /* disable bogus unused pins */
4638 { 0x17, 0x411111f0 },
4639 { }
4640 },
4641 .chained = true,
4642 .chain_id = ALC880_FIXUP_GPIO2,
4643 },
Takashi Iwai27e917f2012-02-17 17:49:54 +01004644 [ALC880_FIXUP_EAPD_COEF] = {
4645 .type = ALC_FIXUP_VERBS,
4646 .v.verbs = (const struct hda_verb[]) {
4647 /* change to EAPD mode */
4648 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4649 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
4650 {}
4651 },
4652 },
Takashi Iwaib9368f52012-02-17 17:54:44 +01004653 [ALC880_FIXUP_TCL_S700] = {
4654 .type = ALC_FIXUP_VERBS,
4655 .v.verbs = (const struct hda_verb[]) {
4656 /* change to EAPD mode */
4657 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4658 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
4659 {}
4660 },
4661 .chained = true,
4662 .chain_id = ALC880_FIXUP_GPIO2,
4663 },
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004664 [ALC880_FIXUP_VOL_KNOB] = {
4665 .type = ALC_FIXUP_FUNC,
4666 .v.func = alc880_fixup_vol_knob,
4667 },
4668 [ALC880_FIXUP_FUJITSU] = {
4669 /* override all pins as BIOS on old Amilo is broken */
4670 .type = ALC_FIXUP_PINS,
4671 .v.pins = (const struct alc_pincfg[]) {
4672 { 0x14, 0x0121411f }, /* HP */
4673 { 0x15, 0x99030120 }, /* speaker */
4674 { 0x16, 0x99030130 }, /* bass speaker */
4675 { 0x17, 0x411111f0 }, /* N/A */
4676 { 0x18, 0x411111f0 }, /* N/A */
4677 { 0x19, 0x01a19950 }, /* mic-in */
4678 { 0x1a, 0x411111f0 }, /* N/A */
4679 { 0x1b, 0x411111f0 }, /* N/A */
4680 { 0x1c, 0x411111f0 }, /* N/A */
4681 { 0x1d, 0x411111f0 }, /* N/A */
4682 { 0x1e, 0x01454140 }, /* SPDIF out */
4683 { }
4684 },
4685 .chained = true,
4686 .chain_id = ALC880_FIXUP_VOL_KNOB,
4687 },
Takashi Iwaiba533812012-02-20 16:36:52 +01004688 [ALC880_FIXUP_F1734] = {
4689 /* almost compatible with FUJITSU, but no bass and SPDIF */
4690 .type = ALC_FIXUP_PINS,
4691 .v.pins = (const struct alc_pincfg[]) {
4692 { 0x14, 0x0121411f }, /* HP */
4693 { 0x15, 0x99030120 }, /* speaker */
4694 { 0x16, 0x411111f0 }, /* N/A */
4695 { 0x17, 0x411111f0 }, /* N/A */
4696 { 0x18, 0x411111f0 }, /* N/A */
4697 { 0x19, 0x01a19950 }, /* mic-in */
4698 { 0x1a, 0x411111f0 }, /* N/A */
4699 { 0x1b, 0x411111f0 }, /* N/A */
4700 { 0x1c, 0x411111f0 }, /* N/A */
4701 { 0x1d, 0x411111f0 }, /* N/A */
4702 { 0x1e, 0x411111f0 }, /* N/A */
4703 { }
4704 },
4705 .chained = true,
4706 .chain_id = ALC880_FIXUP_VOL_KNOB,
4707 },
Takashi Iwai817de922012-02-20 17:20:48 +01004708 [ALC880_FIXUP_UNIWILL] = {
4709 /* need to fix HP and speaker pins to be parsed correctly */
4710 .type = ALC_FIXUP_PINS,
4711 .v.pins = (const struct alc_pincfg[]) {
4712 { 0x14, 0x0121411f }, /* HP */
4713 { 0x15, 0x99030120 }, /* speaker */
4714 { 0x16, 0x99030130 }, /* bass speaker */
4715 { }
4716 },
4717 },
Takashi Iwai967b88c2012-02-20 17:31:02 +01004718 [ALC880_FIXUP_UNIWILL_DIG] = {
4719 .type = ALC_FIXUP_PINS,
4720 .v.pins = (const struct alc_pincfg[]) {
4721 /* disable bogus unused pins */
4722 { 0x17, 0x411111f0 },
4723 { 0x19, 0x411111f0 },
4724 { 0x1b, 0x411111f0 },
4725 { 0x1f, 0x411111f0 },
4726 { }
4727 }
4728 },
Takashi Iwai96e225f2012-02-20 17:41:51 +01004729 [ALC880_FIXUP_Z71V] = {
4730 .type = ALC_FIXUP_PINS,
4731 .v.pins = (const struct alc_pincfg[]) {
4732 /* set up the whole pins as BIOS is utterly broken */
4733 { 0x14, 0x99030120 }, /* speaker */
4734 { 0x15, 0x0121411f }, /* HP */
4735 { 0x16, 0x411111f0 }, /* N/A */
4736 { 0x17, 0x411111f0 }, /* N/A */
4737 { 0x18, 0x01a19950 }, /* mic-in */
4738 { 0x19, 0x411111f0 }, /* N/A */
4739 { 0x1a, 0x01813031 }, /* line-in */
4740 { 0x1b, 0x411111f0 }, /* N/A */
4741 { 0x1c, 0x411111f0 }, /* N/A */
4742 { 0x1d, 0x411111f0 }, /* N/A */
4743 { 0x1e, 0x0144111e }, /* SPDIF */
4744 { }
4745 }
4746 },
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004747 [ALC880_FIXUP_3ST_BASE] = {
4748 .type = ALC_FIXUP_PINS,
4749 .v.pins = (const struct alc_pincfg[]) {
4750 { 0x14, 0x01014010 }, /* line-out */
4751 { 0x15, 0x411111f0 }, /* N/A */
4752 { 0x16, 0x411111f0 }, /* N/A */
4753 { 0x17, 0x411111f0 }, /* N/A */
4754 { 0x18, 0x01a19c30 }, /* mic-in */
4755 { 0x19, 0x0121411f }, /* HP */
4756 { 0x1a, 0x01813031 }, /* line-in */
4757 { 0x1b, 0x02a19c40 }, /* front-mic */
4758 { 0x1c, 0x411111f0 }, /* N/A */
4759 { 0x1d, 0x411111f0 }, /* N/A */
4760 /* 0x1e is filled in below */
4761 { 0x1f, 0x411111f0 }, /* N/A */
4762 { }
4763 }
4764 },
4765 [ALC880_FIXUP_3ST] = {
4766 .type = ALC_FIXUP_PINS,
4767 .v.pins = (const struct alc_pincfg[]) {
4768 { 0x1e, 0x411111f0 }, /* N/A */
4769 { }
4770 },
4771 .chained = true,
4772 .chain_id = ALC880_FIXUP_3ST_BASE,
4773 },
4774 [ALC880_FIXUP_3ST_DIG] = {
4775 .type = ALC_FIXUP_PINS,
4776 .v.pins = (const struct alc_pincfg[]) {
4777 { 0x1e, 0x0144111e }, /* SPDIF */
4778 { }
4779 },
4780 .chained = true,
4781 .chain_id = ALC880_FIXUP_3ST_BASE,
4782 },
4783 [ALC880_FIXUP_5ST_BASE] = {
4784 .type = ALC_FIXUP_PINS,
4785 .v.pins = (const struct alc_pincfg[]) {
4786 { 0x14, 0x01014010 }, /* front */
4787 { 0x15, 0x411111f0 }, /* N/A */
4788 { 0x16, 0x01011411 }, /* CLFE */
4789 { 0x17, 0x01016412 }, /* surr */
4790 { 0x18, 0x01a19c30 }, /* mic-in */
4791 { 0x19, 0x0121411f }, /* HP */
4792 { 0x1a, 0x01813031 }, /* line-in */
4793 { 0x1b, 0x02a19c40 }, /* front-mic */
4794 { 0x1c, 0x411111f0 }, /* N/A */
4795 { 0x1d, 0x411111f0 }, /* N/A */
4796 /* 0x1e is filled in below */
4797 { 0x1f, 0x411111f0 }, /* N/A */
4798 { }
4799 }
4800 },
4801 [ALC880_FIXUP_5ST] = {
4802 .type = ALC_FIXUP_PINS,
4803 .v.pins = (const struct alc_pincfg[]) {
4804 { 0x1e, 0x411111f0 }, /* N/A */
4805 { }
4806 },
4807 .chained = true,
4808 .chain_id = ALC880_FIXUP_5ST_BASE,
4809 },
4810 [ALC880_FIXUP_5ST_DIG] = {
4811 .type = ALC_FIXUP_PINS,
4812 .v.pins = (const struct alc_pincfg[]) {
4813 { 0x1e, 0x0144111e }, /* SPDIF */
4814 { }
4815 },
4816 .chained = true,
4817 .chain_id = ALC880_FIXUP_5ST_BASE,
4818 },
4819 [ALC880_FIXUP_6ST_BASE] = {
4820 .type = ALC_FIXUP_PINS,
4821 .v.pins = (const struct alc_pincfg[]) {
4822 { 0x14, 0x01014010 }, /* front */
4823 { 0x15, 0x01016412 }, /* surr */
4824 { 0x16, 0x01011411 }, /* CLFE */
4825 { 0x17, 0x01012414 }, /* side */
4826 { 0x18, 0x01a19c30 }, /* mic-in */
4827 { 0x19, 0x02a19c40 }, /* front-mic */
4828 { 0x1a, 0x01813031 }, /* line-in */
4829 { 0x1b, 0x0121411f }, /* HP */
4830 { 0x1c, 0x411111f0 }, /* N/A */
4831 { 0x1d, 0x411111f0 }, /* N/A */
4832 /* 0x1e is filled in below */
4833 { 0x1f, 0x411111f0 }, /* N/A */
4834 { }
4835 }
4836 },
4837 [ALC880_FIXUP_6ST] = {
4838 .type = ALC_FIXUP_PINS,
4839 .v.pins = (const struct alc_pincfg[]) {
4840 { 0x1e, 0x411111f0 }, /* N/A */
4841 { }
4842 },
4843 .chained = true,
4844 .chain_id = ALC880_FIXUP_6ST_BASE,
4845 },
4846 [ALC880_FIXUP_6ST_DIG] = {
4847 .type = ALC_FIXUP_PINS,
4848 .v.pins = (const struct alc_pincfg[]) {
4849 { 0x1e, 0x0144111e }, /* SPDIF */
4850 { }
4851 },
4852 .chained = true,
4853 .chain_id = ALC880_FIXUP_6ST_BASE,
4854 },
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004855};
4856
4857static const struct snd_pci_quirk alc880_fixup_tbl[] = {
Takashi Iwaif02aab52012-02-17 16:33:56 +01004858 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
Takashi Iwai96e225f2012-02-20 17:41:51 +01004859 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
Takashi Iwai29e3fdc2012-02-20 17:56:57 +01004860 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
4861 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
Takashi Iwai27e917f2012-02-17 17:49:54 +01004862 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
Takashi Iwai967b88c2012-02-20 17:31:02 +01004863 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
Takashi Iwaiba533812012-02-20 16:36:52 +01004864 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
Takashi Iwai817de922012-02-20 17:20:48 +01004865 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
Takashi Iwai7833c7e2012-02-20 17:11:38 +01004866 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
Takashi Iwaif02aab52012-02-17 16:33:56 +01004867 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004868 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
Takashi Iwaiba533812012-02-20 16:36:52 +01004869 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_FIXUP_F1734),
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004870 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
Takashi Iwaiba533812012-02-20 16:36:52 +01004871 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
Takashi Iwaicf5a2272012-02-20 16:31:07 +01004872 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
Takashi Iwaidc6af522012-02-17 16:18:59 +01004873 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
4874 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
4875 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
Takashi Iwaib9368f52012-02-17 17:54:44 +01004876 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004877
4878 /* Below is the copied entries from alc880_quirks.c.
4879 * It's not quite sure whether BIOS sets the correct pin-config table
4880 * on these machines, thus they are kept to be compatible with
4881 * the old static quirks. Once when it's confirmed to work without
4882 * these overrides, it'd be better to remove.
4883 */
4884 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
4885 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
4886 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
4887 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
4888 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
4889 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
4890 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
4891 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
4892 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
4893 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
4894 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
4895 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
4896 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
4897 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
4898 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
4899 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
4900 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
4901 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
4902 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
4903 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
4904 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
4905 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
4906 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
4907 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4908 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4909 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4910 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
4911 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4912 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
4913 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
4914 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4915 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4916 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4917 /* default Intel */
4918 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
4919 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
4920 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
4921 {}
4922};
4923
4924static const struct alc_model_fixup alc880_fixup_models[] = {
4925 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
4926 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
4927 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
4928 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
4929 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
4930 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
Takashi Iwaiee3b2962011-11-15 14:26:54 +01004931 {}
4932};
4933
4934
4935/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02004936 * OK, here we have finally the patch for ALC880
4937 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004938static int patch_alc880(struct hda_codec *codec)
4939{
4940 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004941 int err;
4942
Takashi Iwai3de95172012-05-07 18:03:15 +02004943 err = alc_alloc_spec(codec, 0x0b);
4944 if (err < 0)
4945 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004946
Takashi Iwai3de95172012-05-07 18:03:15 +02004947 spec = codec->spec;
Takashi Iwai7b1655f2011-07-14 15:31:21 +02004948 spec->need_dac_fix = 1;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004949
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004950 alc_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
4951 alc880_fixups);
4952 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004953
Takashi Iwai67b6ec32012-02-20 18:20:42 +01004954 /* automatic parse from the BIOS config */
4955 err = alc880_parse_auto_config(codec);
4956 if (err < 0)
4957 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004958
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004959 if (!spec->no_analog) {
4960 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004961 if (err < 0)
4962 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004963 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4964 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004965
Takashi Iwai1d045db2011-07-07 18:23:21 +02004966 codec->patch_ops = alc_patch_ops;
David Henningsson29adc4b2012-09-25 11:31:00 +02004967 codec->patch_ops.unsol_event = alc880_unsol_event;
4968
Takashi Iwai1d045db2011-07-07 18:23:21 +02004969
Takashi Iwai589876e2012-02-20 15:47:55 +01004970 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4971
Takashi Iwai1d045db2011-07-07 18:23:21 +02004972 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004973
4974 error:
4975 alc_free(codec);
4976 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004977}
4978
4979
4980/*
4981 * ALC260 support
4982 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004983static int alc260_parse_auto_config(struct hda_codec *codec)
4984{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004985 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004986 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
4987 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004988}
4989
Takashi Iwai1d045db2011-07-07 18:23:21 +02004990/*
4991 * Pin config fixes
4992 */
4993enum {
Takashi Iwaica8f0422012-02-16 11:51:19 +01004994 ALC260_FIXUP_HP_DC5750,
4995 ALC260_FIXUP_HP_PIN_0F,
4996 ALC260_FIXUP_COEF,
Takashi Iwai15317ab2012-02-16 12:02:53 +01004997 ALC260_FIXUP_GPIO1,
Takashi Iwai20f7d922012-02-16 12:35:16 +01004998 ALC260_FIXUP_GPIO1_TOGGLE,
4999 ALC260_FIXUP_REPLACER,
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01005000 ALC260_FIXUP_HP_B1900,
Takashi Iwai118cb4a2012-04-19 07:33:27 +02005001 ALC260_FIXUP_KN1,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005002};
5003
Takashi Iwai20f7d922012-02-16 12:35:16 +01005004static void alc260_gpio1_automute(struct hda_codec *codec)
5005{
5006 struct alc_spec *spec = codec->spec;
5007 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
5008 spec->hp_jack_present);
5009}
5010
5011static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
5012 const struct alc_fixup *fix, int action)
5013{
5014 struct alc_spec *spec = codec->spec;
5015 if (action == ALC_FIXUP_ACT_PROBE) {
5016 /* although the machine has only one output pin, we need to
5017 * toggle GPIO1 according to the jack state
5018 */
5019 spec->automute_hook = alc260_gpio1_automute;
5020 spec->detect_hp = 1;
5021 spec->automute_speaker = 1;
5022 spec->autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
David Henningsson29adc4b2012-09-25 11:31:00 +02005023 snd_hda_jack_detect_enable_callback(codec, 0x0f, ALC_HP_EVENT,
5024 alc_hp_automute);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01005025 snd_hda_add_verbs(codec, alc_gpio1_init_verbs);
Takashi Iwai20f7d922012-02-16 12:35:16 +01005026 }
5027}
5028
Takashi Iwai118cb4a2012-04-19 07:33:27 +02005029static void alc260_fixup_kn1(struct hda_codec *codec,
5030 const struct alc_fixup *fix, int action)
5031{
5032 struct alc_spec *spec = codec->spec;
5033 static const struct alc_pincfg pincfgs[] = {
5034 { 0x0f, 0x02214000 }, /* HP/speaker */
5035 { 0x12, 0x90a60160 }, /* int mic */
5036 { 0x13, 0x02a19000 }, /* ext mic */
5037 { 0x18, 0x01446000 }, /* SPDIF out */
5038 /* disable bogus I/O pins */
5039 { 0x10, 0x411111f0 },
5040 { 0x11, 0x411111f0 },
5041 { 0x14, 0x411111f0 },
5042 { 0x15, 0x411111f0 },
5043 { 0x16, 0x411111f0 },
5044 { 0x17, 0x411111f0 },
5045 { 0x19, 0x411111f0 },
5046 { }
5047 };
5048
5049 switch (action) {
5050 case ALC_FIXUP_ACT_PRE_PROBE:
5051 alc_apply_pincfgs(codec, pincfgs);
5052 break;
5053 case ALC_FIXUP_ACT_PROBE:
5054 spec->init_amp = ALC_INIT_NONE;
5055 break;
5056 }
5057}
5058
Takashi Iwai1d045db2011-07-07 18:23:21 +02005059static const struct alc_fixup alc260_fixups[] = {
Takashi Iwaica8f0422012-02-16 11:51:19 +01005060 [ALC260_FIXUP_HP_DC5750] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005061 .type = ALC_FIXUP_PINS,
5062 .v.pins = (const struct alc_pincfg[]) {
5063 { 0x11, 0x90130110 }, /* speaker */
5064 { }
5065 }
5066 },
Takashi Iwaica8f0422012-02-16 11:51:19 +01005067 [ALC260_FIXUP_HP_PIN_0F] = {
5068 .type = ALC_FIXUP_PINS,
5069 .v.pins = (const struct alc_pincfg[]) {
5070 { 0x0f, 0x01214000 }, /* HP */
5071 { }
5072 }
5073 },
5074 [ALC260_FIXUP_COEF] = {
5075 .type = ALC_FIXUP_VERBS,
5076 .v.verbs = (const struct hda_verb[]) {
5077 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5078 { 0x20, AC_VERB_SET_PROC_COEF, 0x3040 },
5079 { }
5080 },
5081 .chained = true,
5082 .chain_id = ALC260_FIXUP_HP_PIN_0F,
5083 },
Takashi Iwai15317ab2012-02-16 12:02:53 +01005084 [ALC260_FIXUP_GPIO1] = {
5085 .type = ALC_FIXUP_VERBS,
5086 .v.verbs = alc_gpio1_init_verbs,
5087 },
Takashi Iwai20f7d922012-02-16 12:35:16 +01005088 [ALC260_FIXUP_GPIO1_TOGGLE] = {
5089 .type = ALC_FIXUP_FUNC,
5090 .v.func = alc260_fixup_gpio1_toggle,
5091 .chained = true,
5092 .chain_id = ALC260_FIXUP_HP_PIN_0F,
5093 },
5094 [ALC260_FIXUP_REPLACER] = {
5095 .type = ALC_FIXUP_VERBS,
5096 .v.verbs = (const struct hda_verb[]) {
5097 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5098 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5099 { }
5100 },
5101 .chained = true,
5102 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
5103 },
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01005104 [ALC260_FIXUP_HP_B1900] = {
5105 .type = ALC_FIXUP_FUNC,
5106 .v.func = alc260_fixup_gpio1_toggle,
5107 .chained = true,
5108 .chain_id = ALC260_FIXUP_COEF,
Takashi Iwai118cb4a2012-04-19 07:33:27 +02005109 },
5110 [ALC260_FIXUP_KN1] = {
5111 .type = ALC_FIXUP_FUNC,
5112 .v.func = alc260_fixup_kn1,
5113 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005114};
5115
5116static const struct snd_pci_quirk alc260_fixup_tbl[] = {
Takashi Iwai15317ab2012-02-16 12:02:53 +01005117 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
Takashi Iwaica8f0422012-02-16 11:51:19 +01005118 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
Takashi Iwai15317ab2012-02-16 12:02:53 +01005119 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
Takashi Iwaica8f0422012-02-16 11:51:19 +01005120 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01005121 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
Takashi Iwaib1f58082012-02-16 12:45:03 +01005122 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
Takashi Iwai118cb4a2012-04-19 07:33:27 +02005123 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
Takashi Iwai20f7d922012-02-16 12:35:16 +01005124 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
Takashi Iwaica8f0422012-02-16 11:51:19 +01005125 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005126 {}
5127};
5128
5129/*
5130 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005131static int patch_alc260(struct hda_codec *codec)
5132{
5133 struct alc_spec *spec;
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01005134 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005135
Takashi Iwai3de95172012-05-07 18:03:15 +02005136 err = alc_alloc_spec(codec, 0x07);
5137 if (err < 0)
5138 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005139
Takashi Iwai3de95172012-05-07 18:03:15 +02005140 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005141
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01005142 alc_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
5143 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005144
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01005145 /* automatic parse from the BIOS config */
5146 err = alc260_parse_auto_config(codec);
5147 if (err < 0)
5148 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005149
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005150 if (!spec->no_analog) {
5151 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005152 if (err < 0)
5153 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005154 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
5155 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005156
Takashi Iwai1d045db2011-07-07 18:23:21 +02005157 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005158 spec->shutup = alc_eapd_shutup;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005159
Takashi Iwai589876e2012-02-20 15:47:55 +01005160 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5161
Takashi Iwai1d045db2011-07-07 18:23:21 +02005162 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005163
5164 error:
5165 alc_free(codec);
5166 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005167}
5168
5169
5170/*
5171 * ALC882/883/885/888/889 support
5172 *
5173 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
5174 * configuration. Each pin widget can choose any input DACs and a mixer.
5175 * Each ADC is connected from a mixer of all inputs. This makes possible
5176 * 6-channel independent captures.
5177 *
5178 * In addition, an independent DAC for the multi-playback (not used in this
5179 * driver yet).
5180 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005181
5182/*
5183 * Pin config fixes
5184 */
5185enum {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005186 ALC882_FIXUP_ABIT_AW9D_MAX,
5187 ALC882_FIXUP_LENOVO_Y530,
5188 ALC882_FIXUP_PB_M5210,
5189 ALC882_FIXUP_ACER_ASPIRE_7736,
5190 ALC882_FIXUP_ASUS_W90V,
Marton Balint8f239212012-03-05 21:33:23 +01005191 ALC889_FIXUP_CD,
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005192 ALC889_FIXUP_VAIO_TT,
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01005193 ALC888_FIXUP_EEE1601,
Takashi Iwai177943a2011-11-09 12:55:18 +01005194 ALC882_FIXUP_EAPD,
Takashi Iwai7a6069b2011-11-09 15:22:01 +01005195 ALC883_FIXUP_EAPD,
Takashi Iwai8812c4f2011-11-09 17:39:15 +01005196 ALC883_FIXUP_ACER_EAPD,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005197 ALC882_FIXUP_GPIO1,
5198 ALC882_FIXUP_GPIO2,
Takashi Iwaieb844d52011-11-09 18:03:07 +01005199 ALC882_FIXUP_GPIO3,
Takashi Iwai68ef0562011-11-09 18:24:44 +01005200 ALC889_FIXUP_COEF,
5201 ALC882_FIXUP_ASUS_W2JC,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005202 ALC882_FIXUP_ACER_ASPIRE_4930G,
5203 ALC882_FIXUP_ACER_ASPIRE_8930G,
5204 ALC882_FIXUP_ASPIRE_8930G_VERBS,
Takashi Iwai56710872011-11-14 17:42:11 +01005205 ALC885_FIXUP_MACPRO_GPIO,
Takashi Iwai02a237b2012-02-13 15:25:07 +01005206 ALC889_FIXUP_DAC_ROUTE,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005207 ALC889_FIXUP_MBP_VREF,
5208 ALC889_FIXUP_IMAC91_VREF,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005209 ALC882_FIXUP_INV_DMIC,
Takashi Iwaie427c232012-07-29 10:04:08 +02005210 ALC882_FIXUP_NO_PRIMARY_HP,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005211};
5212
Takashi Iwai68ef0562011-11-09 18:24:44 +01005213static void alc889_fixup_coef(struct hda_codec *codec,
5214 const struct alc_fixup *fix, int action)
5215{
5216 if (action != ALC_FIXUP_ACT_INIT)
5217 return;
5218 alc889_coef_init(codec);
5219}
5220
Takashi Iwai56710872011-11-14 17:42:11 +01005221/* toggle speaker-output according to the hp-jack state */
5222static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
5223{
5224 unsigned int gpiostate, gpiomask, gpiodir;
5225
5226 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
5227 AC_VERB_GET_GPIO_DATA, 0);
5228
5229 if (!muted)
5230 gpiostate |= (1 << pin);
5231 else
5232 gpiostate &= ~(1 << pin);
5233
5234 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
5235 AC_VERB_GET_GPIO_MASK, 0);
5236 gpiomask |= (1 << pin);
5237
5238 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
5239 AC_VERB_GET_GPIO_DIRECTION, 0);
5240 gpiodir |= (1 << pin);
5241
5242
5243 snd_hda_codec_write(codec, codec->afg, 0,
5244 AC_VERB_SET_GPIO_MASK, gpiomask);
5245 snd_hda_codec_write(codec, codec->afg, 0,
5246 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
5247
5248 msleep(1);
5249
5250 snd_hda_codec_write(codec, codec->afg, 0,
5251 AC_VERB_SET_GPIO_DATA, gpiostate);
5252}
5253
5254/* set up GPIO at initialization */
5255static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
5256 const struct alc_fixup *fix, int action)
5257{
5258 if (action != ALC_FIXUP_ACT_INIT)
5259 return;
5260 alc882_gpio_mute(codec, 0, 0);
5261 alc882_gpio_mute(codec, 1, 0);
5262}
5263
Takashi Iwai02a237b2012-02-13 15:25:07 +01005264/* Fix the connection of some pins for ALC889:
5265 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
5266 * work correctly (bko#42740)
5267 */
5268static void alc889_fixup_dac_route(struct hda_codec *codec,
5269 const struct alc_fixup *fix, int action)
5270{
5271 if (action == ALC_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaief8d60f2012-02-17 10:12:38 +01005272 /* fake the connections during parsing the tree */
Takashi Iwai02a237b2012-02-13 15:25:07 +01005273 hda_nid_t conn1[2] = { 0x0c, 0x0d };
5274 hda_nid_t conn2[2] = { 0x0e, 0x0f };
5275 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
5276 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
5277 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
5278 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
Takashi Iwaief8d60f2012-02-17 10:12:38 +01005279 } else if (action == ALC_FIXUP_ACT_PROBE) {
5280 /* restore the connections */
5281 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
5282 snd_hda_override_conn_list(codec, 0x14, 5, conn);
5283 snd_hda_override_conn_list(codec, 0x15, 5, conn);
5284 snd_hda_override_conn_list(codec, 0x18, 5, conn);
5285 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
Takashi Iwai02a237b2012-02-13 15:25:07 +01005286 }
5287}
5288
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005289/* Set VREF on HP pin */
5290static void alc889_fixup_mbp_vref(struct hda_codec *codec,
5291 const struct alc_fixup *fix, int action)
5292{
5293 struct alc_spec *spec = codec->spec;
5294 static hda_nid_t nids[2] = { 0x14, 0x15 };
5295 int i;
5296
5297 if (action != ALC_FIXUP_ACT_INIT)
5298 return;
5299 for (i = 0; i < ARRAY_SIZE(nids); i++) {
5300 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
5301 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
5302 continue;
5303 val = snd_hda_codec_read(codec, nids[i], 0,
5304 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
5305 val |= AC_PINCTL_VREF_80;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005306 snd_hda_set_pin_ctl(codec, nids[i], val);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005307 spec->keep_vref_in_automute = 1;
5308 break;
5309 }
5310}
5311
5312/* Set VREF on speaker pins on imac91 */
5313static void alc889_fixup_imac91_vref(struct hda_codec *codec,
5314 const struct alc_fixup *fix, int action)
5315{
5316 struct alc_spec *spec = codec->spec;
5317 static hda_nid_t nids[2] = { 0x18, 0x1a };
5318 int i;
5319
5320 if (action != ALC_FIXUP_ACT_INIT)
5321 return;
5322 for (i = 0; i < ARRAY_SIZE(nids); i++) {
5323 unsigned int val;
5324 val = snd_hda_codec_read(codec, nids[i], 0,
5325 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
5326 val |= AC_PINCTL_VREF_50;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005327 snd_hda_set_pin_ctl(codec, nids[i], val);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005328 }
5329 spec->keep_vref_in_automute = 1;
5330}
5331
Takashi Iwaie427c232012-07-29 10:04:08 +02005332/* Don't take HP output as primary
5333 * strangely, the speaker output doesn't work on VAIO Z through DAC 0x05
5334 */
5335static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
5336 const struct alc_fixup *fix, int action)
5337{
5338 struct alc_spec *spec = codec->spec;
5339 if (action == ALC_FIXUP_ACT_PRE_PROBE)
5340 spec->no_primary_hp = 1;
5341}
5342
Takashi Iwai1d045db2011-07-07 18:23:21 +02005343static const struct alc_fixup alc882_fixups[] = {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005344 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005345 .type = ALC_FIXUP_PINS,
5346 .v.pins = (const struct alc_pincfg[]) {
5347 { 0x15, 0x01080104 }, /* side */
5348 { 0x16, 0x01011012 }, /* rear */
5349 { 0x17, 0x01016011 }, /* clfe */
5350 { }
5351 }
5352 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005353 [ALC882_FIXUP_LENOVO_Y530] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005354 .type = ALC_FIXUP_PINS,
5355 .v.pins = (const struct alc_pincfg[]) {
5356 { 0x15, 0x99130112 }, /* rear int speakers */
5357 { 0x16, 0x99130111 }, /* subwoofer */
5358 { }
5359 }
5360 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005361 [ALC882_FIXUP_PB_M5210] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005362 .type = ALC_FIXUP_VERBS,
5363 .v.verbs = (const struct hda_verb[]) {
5364 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
5365 {}
5366 }
5367 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005368 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
Takashi Iwai23d30f22012-05-07 17:17:32 +02005369 .type = ALC_FIXUP_FUNC,
5370 .v.func = alc_fixup_sku_ignore,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005371 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005372 [ALC882_FIXUP_ASUS_W90V] = {
Takashi Iwai5cdf7452011-10-26 23:04:08 +02005373 .type = ALC_FIXUP_PINS,
5374 .v.pins = (const struct alc_pincfg[]) {
5375 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
5376 { }
5377 }
5378 },
Marton Balint8f239212012-03-05 21:33:23 +01005379 [ALC889_FIXUP_CD] = {
5380 .type = ALC_FIXUP_PINS,
5381 .v.pins = (const struct alc_pincfg[]) {
5382 { 0x1c, 0x993301f0 }, /* CD */
5383 { }
5384 }
5385 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005386 [ALC889_FIXUP_VAIO_TT] = {
5387 .type = ALC_FIXUP_PINS,
5388 .v.pins = (const struct alc_pincfg[]) {
5389 { 0x17, 0x90170111 }, /* hidden surround speaker */
5390 { }
5391 }
5392 },
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01005393 [ALC888_FIXUP_EEE1601] = {
5394 .type = ALC_FIXUP_VERBS,
5395 .v.verbs = (const struct hda_verb[]) {
5396 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
5397 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
5398 { }
5399 }
Takashi Iwai177943a2011-11-09 12:55:18 +01005400 },
5401 [ALC882_FIXUP_EAPD] = {
5402 .type = ALC_FIXUP_VERBS,
5403 .v.verbs = (const struct hda_verb[]) {
5404 /* change to EAPD mode */
5405 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5406 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
5407 { }
5408 }
5409 },
Takashi Iwai7a6069b2011-11-09 15:22:01 +01005410 [ALC883_FIXUP_EAPD] = {
5411 .type = ALC_FIXUP_VERBS,
5412 .v.verbs = (const struct hda_verb[]) {
5413 /* change to EAPD mode */
5414 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5415 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
5416 { }
5417 }
5418 },
Takashi Iwai8812c4f2011-11-09 17:39:15 +01005419 [ALC883_FIXUP_ACER_EAPD] = {
5420 .type = ALC_FIXUP_VERBS,
5421 .v.verbs = (const struct hda_verb[]) {
5422 /* eanable EAPD on Acer laptops */
5423 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5424 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5425 { }
5426 }
5427 },
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005428 [ALC882_FIXUP_GPIO1] = {
5429 .type = ALC_FIXUP_VERBS,
5430 .v.verbs = alc_gpio1_init_verbs,
5431 },
5432 [ALC882_FIXUP_GPIO2] = {
5433 .type = ALC_FIXUP_VERBS,
5434 .v.verbs = alc_gpio2_init_verbs,
5435 },
Takashi Iwaieb844d52011-11-09 18:03:07 +01005436 [ALC882_FIXUP_GPIO3] = {
5437 .type = ALC_FIXUP_VERBS,
5438 .v.verbs = alc_gpio3_init_verbs,
5439 },
Takashi Iwai68ef0562011-11-09 18:24:44 +01005440 [ALC882_FIXUP_ASUS_W2JC] = {
5441 .type = ALC_FIXUP_VERBS,
5442 .v.verbs = alc_gpio1_init_verbs,
5443 .chained = true,
5444 .chain_id = ALC882_FIXUP_EAPD,
5445 },
5446 [ALC889_FIXUP_COEF] = {
5447 .type = ALC_FIXUP_FUNC,
5448 .v.func = alc889_fixup_coef,
5449 },
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005450 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
5451 .type = ALC_FIXUP_PINS,
5452 .v.pins = (const struct alc_pincfg[]) {
5453 { 0x16, 0x99130111 }, /* CLFE speaker */
5454 { 0x17, 0x99130112 }, /* surround speaker */
5455 { }
Takashi Iwai038d4fe2012-04-11 17:18:12 +02005456 },
5457 .chained = true,
5458 .chain_id = ALC882_FIXUP_GPIO1,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005459 },
5460 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
5461 .type = ALC_FIXUP_PINS,
5462 .v.pins = (const struct alc_pincfg[]) {
5463 { 0x16, 0x99130111 }, /* CLFE speaker */
5464 { 0x1b, 0x99130112 }, /* surround speaker */
5465 { }
5466 },
5467 .chained = true,
5468 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
5469 },
5470 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
5471 /* additional init verbs for Acer Aspire 8930G */
5472 .type = ALC_FIXUP_VERBS,
5473 .v.verbs = (const struct hda_verb[]) {
5474 /* Enable all DACs */
5475 /* DAC DISABLE/MUTE 1? */
5476 /* setting bits 1-5 disables DAC nids 0x02-0x06
5477 * apparently. Init=0x38 */
5478 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
5479 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
5480 /* DAC DISABLE/MUTE 2? */
5481 /* some bit here disables the other DACs.
5482 * Init=0x4900 */
5483 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
5484 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
5485 /* DMIC fix
5486 * This laptop has a stereo digital microphone.
5487 * The mics are only 1cm apart which makes the stereo
5488 * useless. However, either the mic or the ALC889
5489 * makes the signal become a difference/sum signal
5490 * instead of standard stereo, which is annoying.
5491 * So instead we flip this bit which makes the
5492 * codec replicate the sum signal to both channels,
5493 * turning it into a normal mono mic.
5494 */
5495 /* DMIC_CONTROL? Init value = 0x0001 */
5496 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
5497 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
5498 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5499 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5500 { }
Takashi Iwai038d4fe2012-04-11 17:18:12 +02005501 },
5502 .chained = true,
5503 .chain_id = ALC882_FIXUP_GPIO1,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005504 },
Takashi Iwai56710872011-11-14 17:42:11 +01005505 [ALC885_FIXUP_MACPRO_GPIO] = {
5506 .type = ALC_FIXUP_FUNC,
5507 .v.func = alc885_fixup_macpro_gpio,
5508 },
Takashi Iwai02a237b2012-02-13 15:25:07 +01005509 [ALC889_FIXUP_DAC_ROUTE] = {
5510 .type = ALC_FIXUP_FUNC,
5511 .v.func = alc889_fixup_dac_route,
5512 },
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005513 [ALC889_FIXUP_MBP_VREF] = {
5514 .type = ALC_FIXUP_FUNC,
5515 .v.func = alc889_fixup_mbp_vref,
5516 .chained = true,
5517 .chain_id = ALC882_FIXUP_GPIO1,
5518 },
5519 [ALC889_FIXUP_IMAC91_VREF] = {
5520 .type = ALC_FIXUP_FUNC,
5521 .v.func = alc889_fixup_imac91_vref,
5522 .chained = true,
5523 .chain_id = ALC882_FIXUP_GPIO1,
5524 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005525 [ALC882_FIXUP_INV_DMIC] = {
5526 .type = ALC_FIXUP_FUNC,
5527 .v.func = alc_fixup_inv_dmic_0x12,
5528 },
Takashi Iwaie427c232012-07-29 10:04:08 +02005529 [ALC882_FIXUP_NO_PRIMARY_HP] = {
5530 .type = ALC_FIXUP_FUNC,
5531 .v.func = alc882_fixup_no_primary_hp,
5532 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005533};
5534
5535static const struct snd_pci_quirk alc882_fixup_tbl[] = {
Takashi Iwai8812c4f2011-11-09 17:39:15 +01005536 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
5537 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
5538 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
5539 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
5540 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
5541 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
Takashi Iwaic3e837b2011-11-10 16:01:47 +01005542 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
5543 ALC882_FIXUP_ACER_ASPIRE_4930G),
5544 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
5545 ALC882_FIXUP_ACER_ASPIRE_4930G),
5546 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
5547 ALC882_FIXUP_ACER_ASPIRE_8930G),
5548 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
5549 ALC882_FIXUP_ACER_ASPIRE_8930G),
5550 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
5551 ALC882_FIXUP_ACER_ASPIRE_4930G),
5552 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
5553 ALC882_FIXUP_ACER_ASPIRE_4930G),
5554 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
5555 ALC882_FIXUP_ACER_ASPIRE_4930G),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005556 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
Takashi Iwaif5c53d82012-05-07 10:07:33 +02005557 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
5558 ALC882_FIXUP_ACER_ASPIRE_4930G),
Takashi Iwai02a237b2012-02-13 15:25:07 +01005559 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
Takashi Iwaife97da12012-04-12 08:00:19 +02005560 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01005561 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
Takashi Iwai177943a2011-11-09 12:55:18 +01005562 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005563 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
Takashi Iwai68ef0562011-11-09 18:24:44 +01005564 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01005565 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01005566 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
Takashi Iwaie427c232012-07-29 10:04:08 +02005567 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
Takashi Iwai56710872011-11-14 17:42:11 +01005568
5569 /* All Apple entries are in codec SSIDs */
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005570 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
5571 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
5572 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01005573 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
5574 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
5575 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005576 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
5577 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01005578 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005579 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBP_VREF),
5580 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBP_VREF),
5581 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
5582 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01005583 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005584 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
5585 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
5586 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
Josh Boyer29ebe402012-04-12 13:55:36 -04005587 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 5,1", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai05193632012-11-12 10:07:36 +01005588 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005589 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
5590 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
5591 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_IMAC91_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01005592
Takashi Iwai7a6069b2011-11-09 15:22:01 +01005593 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
Takashi Iwaibca40132012-05-07 11:13:14 +02005594 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
Takashi Iwaieb844d52011-11-09 18:03:07 +01005595 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
Marton Balint8f239212012-03-05 21:33:23 +01005596 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3", ALC889_FIXUP_CD),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01005597 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
Takashi Iwai7a6069b2011-11-09 15:22:01 +01005598 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
5599 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01005600 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
Takashi Iwai68ef0562011-11-09 18:24:44 +01005601 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005602 {}
5603};
5604
Takashi Iwai912093b2012-04-11 14:03:41 +02005605static const struct alc_model_fixup alc882_fixup_models[] = {
5606 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
5607 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
5608 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005609 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
Takashi Iwaie427c232012-07-29 10:04:08 +02005610 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
Takashi Iwai912093b2012-04-11 14:03:41 +02005611 {}
5612};
5613
Takashi Iwai1d045db2011-07-07 18:23:21 +02005614/*
5615 * BIOS auto configuration
5616 */
5617/* almost identical with ALC880 parser... */
5618static int alc882_parse_auto_config(struct hda_codec *codec)
5619{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005620 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005621 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5622 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005623}
5624
Takashi Iwai1d045db2011-07-07 18:23:21 +02005625/*
5626 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005627static int patch_alc882(struct hda_codec *codec)
5628{
5629 struct alc_spec *spec;
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005630 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005631
Takashi Iwai3de95172012-05-07 18:03:15 +02005632 err = alc_alloc_spec(codec, 0x0b);
5633 if (err < 0)
5634 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005635
Takashi Iwai3de95172012-05-07 18:03:15 +02005636 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005637
5638 switch (codec->vendor_id) {
5639 case 0x10ec0882:
5640 case 0x10ec0885:
5641 break;
5642 default:
5643 /* ALC883 and variants */
5644 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
5645 break;
5646 }
5647
Takashi Iwai912093b2012-04-11 14:03:41 +02005648 alc_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
5649 alc882_fixups);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005650 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005651
5652 alc_auto_parse_customize_define(codec);
5653
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01005654 /* automatic parse from the BIOS config */
5655 err = alc882_parse_auto_config(codec);
5656 if (err < 0)
5657 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005658
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005659 if (!spec->no_analog && has_cdefine_beep(codec)) {
5660 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005661 if (err < 0)
5662 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005663 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005664 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005665
Takashi Iwai1d045db2011-07-07 18:23:21 +02005666 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005667
Takashi Iwai589876e2012-02-20 15:47:55 +01005668 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5669
Takashi Iwai1d045db2011-07-07 18:23:21 +02005670 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005671
5672 error:
5673 alc_free(codec);
5674 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005675}
5676
5677
5678/*
5679 * ALC262 support
5680 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005681static int alc262_parse_auto_config(struct hda_codec *codec)
5682{
Takashi Iwai1d045db2011-07-07 18:23:21 +02005683 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005684 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5685 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005686}
5687
5688/*
5689 * Pin config fixes
5690 */
5691enum {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005692 ALC262_FIXUP_FSC_H270,
5693 ALC262_FIXUP_HP_Z200,
5694 ALC262_FIXUP_TYAN,
Takashi Iwaic4701502011-11-07 14:20:07 +01005695 ALC262_FIXUP_LENOVO_3000,
Takashi Iwaib42590b2011-11-07 14:41:01 +01005696 ALC262_FIXUP_BENQ,
5697 ALC262_FIXUP_BENQ_T31,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005698 ALC262_FIXUP_INV_DMIC,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005699};
5700
5701static const struct alc_fixup alc262_fixups[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005702 [ALC262_FIXUP_FSC_H270] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005703 .type = ALC_FIXUP_PINS,
5704 .v.pins = (const struct alc_pincfg[]) {
5705 { 0x14, 0x99130110 }, /* speaker */
5706 { 0x15, 0x0221142f }, /* front HP */
5707 { 0x1b, 0x0121141f }, /* rear HP */
5708 { }
5709 }
5710 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005711 [ALC262_FIXUP_HP_Z200] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02005712 .type = ALC_FIXUP_PINS,
5713 .v.pins = (const struct alc_pincfg[]) {
5714 { 0x16, 0x99130120 }, /* internal speaker */
5715 { }
5716 }
5717 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005718 [ALC262_FIXUP_TYAN] = {
5719 .type = ALC_FIXUP_PINS,
5720 .v.pins = (const struct alc_pincfg[]) {
5721 { 0x14, 0x1993e1f0 }, /* int AUX */
5722 { }
5723 }
5724 },
Takashi Iwaic4701502011-11-07 14:20:07 +01005725 [ALC262_FIXUP_LENOVO_3000] = {
5726 .type = ALC_FIXUP_VERBS,
5727 .v.verbs = (const struct hda_verb[]) {
5728 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01005729 {}
5730 },
5731 .chained = true,
5732 .chain_id = ALC262_FIXUP_BENQ,
5733 },
5734 [ALC262_FIXUP_BENQ] = {
5735 .type = ALC_FIXUP_VERBS,
5736 .v.verbs = (const struct hda_verb[]) {
Takashi Iwaic4701502011-11-07 14:20:07 +01005737 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5738 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
5739 {}
5740 }
5741 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01005742 [ALC262_FIXUP_BENQ_T31] = {
5743 .type = ALC_FIXUP_VERBS,
5744 .v.verbs = (const struct hda_verb[]) {
5745 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5746 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5747 {}
5748 }
5749 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005750 [ALC262_FIXUP_INV_DMIC] = {
5751 .type = ALC_FIXUP_FUNC,
5752 .v.func = alc_fixup_inv_dmic_0x12,
5753 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02005754};
5755
5756static const struct snd_pci_quirk alc262_fixup_tbl[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005757 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
Takashi Iwai3dcd3be2011-11-07 14:59:40 +01005758 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FIXUP_BENQ),
5759 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01005760 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
5761 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
Takashi Iwaic4701502011-11-07 14:20:07 +01005762 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
Takashi Iwaib42590b2011-11-07 14:41:01 +01005763 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
5764 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
Takashi Iwai1d045db2011-07-07 18:23:21 +02005765 {}
5766};
5767
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005768static const struct alc_model_fixup alc262_fixup_models[] = {
5769 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
5770 {}
5771};
Takashi Iwai1d045db2011-07-07 18:23:21 +02005772
Takashi Iwai1d045db2011-07-07 18:23:21 +02005773/*
5774 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005775static int patch_alc262(struct hda_codec *codec)
5776{
5777 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005778 int err;
5779
Takashi Iwai3de95172012-05-07 18:03:15 +02005780 err = alc_alloc_spec(codec, 0x0b);
5781 if (err < 0)
5782 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005783
Takashi Iwai3de95172012-05-07 18:03:15 +02005784 spec = codec->spec;
Takashi Iwai37c04202012-12-18 14:22:45 +01005785 spec->shared_mic_vref_pin = 0x18;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005786
5787#if 0
5788 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
5789 * under-run
5790 */
5791 {
5792 int tmp;
5793 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
5794 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
5795 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
5796 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
5797 }
5798#endif
Takashi Iwai1d045db2011-07-07 18:23:21 +02005799 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
5800
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005801 alc_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
5802 alc262_fixups);
Takashi Iwai42399f72011-11-07 17:18:44 +01005803 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005804
Takashi Iwaiaf741c12012-05-07 18:09:48 +02005805 alc_auto_parse_customize_define(codec);
5806
Takashi Iwai42399f72011-11-07 17:18:44 +01005807 /* automatic parse from the BIOS config */
5808 err = alc262_parse_auto_config(codec);
5809 if (err < 0)
5810 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005811
Takashi Iwai1d045db2011-07-07 18:23:21 +02005812 if (!spec->no_analog && has_cdefine_beep(codec)) {
5813 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005814 if (err < 0)
5815 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005816 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005817 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005818
Takashi Iwai1d045db2011-07-07 18:23:21 +02005819 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005820 spec->shutup = alc_eapd_shutup;
5821
Takashi Iwai589876e2012-02-20 15:47:55 +01005822 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5823
Takashi Iwai1d045db2011-07-07 18:23:21 +02005824 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005825
5826 error:
5827 alc_free(codec);
5828 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005829}
5830
5831/*
5832 * ALC268
5833 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005834/* bind Beep switches of both NID 0x0f and 0x10 */
5835static const struct hda_bind_ctls alc268_bind_beep_sw = {
5836 .ops = &snd_hda_bind_sw,
5837 .values = {
5838 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
5839 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
5840 0
5841 },
5842};
5843
5844static const struct snd_kcontrol_new alc268_beep_mixer[] = {
5845 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
5846 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
5847 { }
5848};
5849
5850/* set PCBEEP vol = 0, mute connections */
5851static const struct hda_verb alc268_beep_init_verbs[] = {
5852 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5853 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5854 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5855 { }
5856};
5857
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005858enum {
5859 ALC268_FIXUP_INV_DMIC,
Takashi Iwaicb766402012-10-20 10:55:21 +02005860 ALC268_FIXUP_HP_EAPD,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005861};
5862
5863static const struct alc_fixup alc268_fixups[] = {
5864 [ALC268_FIXUP_INV_DMIC] = {
5865 .type = ALC_FIXUP_FUNC,
5866 .v.func = alc_fixup_inv_dmic_0x12,
5867 },
Takashi Iwaicb766402012-10-20 10:55:21 +02005868 [ALC268_FIXUP_HP_EAPD] = {
5869 .type = ALC_FIXUP_VERBS,
5870 .v.verbs = (const struct hda_verb[]) {
5871 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
5872 {}
5873 }
5874 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005875};
5876
5877static const struct alc_model_fixup alc268_fixup_models[] = {
5878 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
Takashi Iwaicb766402012-10-20 10:55:21 +02005879 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
5880 {}
5881};
5882
5883static const struct snd_pci_quirk alc268_fixup_tbl[] = {
5884 /* below is codec SSID since multiple Toshiba laptops have the
5885 * same PCI SSID 1179:ff00
5886 */
5887 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005888 {}
5889};
5890
Takashi Iwai1d045db2011-07-07 18:23:21 +02005891/*
5892 * BIOS auto configuration
5893 */
5894static int alc268_parse_auto_config(struct hda_codec *codec)
5895{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005896 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai1d045db2011-07-07 18:23:21 +02005897 struct alc_spec *spec = codec->spec;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005898 int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
5899 if (err > 0) {
5900 if (!spec->no_analog && spec->autocfg.speaker_pins[0] != 0x1d) {
5901 add_mixer(spec, alc268_beep_mixer);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01005902 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
Takashi Iwai1d045db2011-07-07 18:23:21 +02005903 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02005904 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005905 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005906}
5907
Takashi Iwai1d045db2011-07-07 18:23:21 +02005908/*
5909 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005910static int patch_alc268(struct hda_codec *codec)
5911{
5912 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005913 int i, has_beep, err;
5914
Takashi Iwai1d045db2011-07-07 18:23:21 +02005915 /* ALC268 has no aa-loopback mixer */
Takashi Iwai3de95172012-05-07 18:03:15 +02005916 err = alc_alloc_spec(codec, 0);
5917 if (err < 0)
5918 return err;
5919
5920 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005921
Takashi Iwaicb766402012-10-20 10:55:21 +02005922 alc_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005923 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5924
Takashi Iwai6ebb8052011-08-16 15:15:40 +02005925 /* automatic parse from the BIOS config */
5926 err = alc268_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005927 if (err < 0)
5928 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005929
Takashi Iwai1d045db2011-07-07 18:23:21 +02005930 has_beep = 0;
5931 for (i = 0; i < spec->num_mixers; i++) {
5932 if (spec->mixers[i] == alc268_beep_mixer) {
5933 has_beep = 1;
5934 break;
5935 }
5936 }
5937
5938 if (has_beep) {
5939 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005940 if (err < 0)
5941 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005942 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
5943 /* override the amp caps for beep generator */
5944 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
5945 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
5946 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
5947 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5948 (0 << AC_AMPCAP_MUTE_SHIFT));
5949 }
5950
Takashi Iwai1d045db2011-07-07 18:23:21 +02005951 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005952 spec->shutup = alc_eapd_shutup;
5953
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005954 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5955
Takashi Iwai1d045db2011-07-07 18:23:21 +02005956 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005957
5958 error:
5959 alc_free(codec);
5960 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02005961}
5962
5963/*
5964 * ALC269
5965 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02005966static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
5967 .substreams = 1,
5968 .channels_min = 2,
5969 .channels_max = 8,
5970 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
5971 /* NID is set in alc_build_pcms */
5972 .ops = {
5973 .open = alc_playback_pcm_open,
5974 .prepare = alc_playback_pcm_prepare,
5975 .cleanup = alc_playback_pcm_cleanup
5976 },
5977};
5978
5979static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
5980 .substreams = 1,
5981 .channels_min = 2,
5982 .channels_max = 2,
5983 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
5984 /* NID is set in alc_build_pcms */
5985};
5986
Takashi Iwai1d045db2011-07-07 18:23:21 +02005987/* different alc269-variants */
5988enum {
5989 ALC269_TYPE_ALC269VA,
5990 ALC269_TYPE_ALC269VB,
5991 ALC269_TYPE_ALC269VC,
Kailang Yangadcc70b2012-05-25 08:08:38 +02005992 ALC269_TYPE_ALC269VD,
Kailang Yang065380f2013-01-10 10:25:48 +01005993 ALC269_TYPE_ALC280,
5994 ALC269_TYPE_ALC282,
5995 ALC269_TYPE_ALC284,
Takashi Iwai1d045db2011-07-07 18:23:21 +02005996};
5997
5998/*
5999 * BIOS auto configuration
6000 */
6001static int alc269_parse_auto_config(struct hda_codec *codec)
6002{
Takashi Iwai1d045db2011-07-07 18:23:21 +02006003 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006004 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
6005 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
6006 struct alc_spec *spec = codec->spec;
Kailang Yangadcc70b2012-05-25 08:08:38 +02006007 const hda_nid_t *ssids;
6008
6009 switch (spec->codec_variant) {
6010 case ALC269_TYPE_ALC269VA:
6011 case ALC269_TYPE_ALC269VC:
Kailang Yang065380f2013-01-10 10:25:48 +01006012 case ALC269_TYPE_ALC280:
6013 case ALC269_TYPE_ALC284:
Kailang Yangadcc70b2012-05-25 08:08:38 +02006014 ssids = alc269va_ssids;
6015 break;
6016 case ALC269_TYPE_ALC269VB:
6017 case ALC269_TYPE_ALC269VD:
Kailang Yang065380f2013-01-10 10:25:48 +01006018 case ALC269_TYPE_ALC282:
Kailang Yangadcc70b2012-05-25 08:08:38 +02006019 ssids = alc269_ssids;
6020 break;
6021 default:
6022 ssids = alc269_ssids;
6023 break;
6024 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02006025
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006026 return alc_parse_auto_config(codec, alc269_ignore, ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02006027}
6028
Kailang Yang1387e2d2012-11-08 10:23:18 +01006029static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
Takashi Iwai1d045db2011-07-07 18:23:21 +02006030{
6031 int val = alc_read_coef_idx(codec, 0x04);
6032 if (power_up)
6033 val |= 1 << 11;
6034 else
6035 val &= ~(1 << 11);
6036 alc_write_coef_idx(codec, 0x04, val);
6037}
6038
6039static void alc269_shutup(struct hda_codec *codec)
6040{
Kailang Yangadcc70b2012-05-25 08:08:38 +02006041 struct alc_spec *spec = codec->spec;
6042
6043 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
6044 return;
6045
Kailang Yang1387e2d2012-11-08 10:23:18 +01006046 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
6047 alc269vb_toggle_power_output(codec, 0);
6048 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
6049 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006050 msleep(150);
6051 }
6052}
6053
Takashi Iwai2a439522011-07-26 09:52:50 +02006054#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02006055static int alc269_resume(struct hda_codec *codec)
6056{
Kailang Yangadcc70b2012-05-25 08:08:38 +02006057 struct alc_spec *spec = codec->spec;
6058
Kailang Yang1387e2d2012-11-08 10:23:18 +01006059 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
6060 alc269vb_toggle_power_output(codec, 0);
6061 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
Kailang Yangadcc70b2012-05-25 08:08:38 +02006062 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006063 msleep(150);
6064 }
6065
6066 codec->patch_ops.init(codec);
6067
Kailang Yang1387e2d2012-11-08 10:23:18 +01006068 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
6069 alc269vb_toggle_power_output(codec, 1);
6070 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
Kailang Yangadcc70b2012-05-25 08:08:38 +02006071 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006072 msleep(200);
6073 }
6074
Takashi Iwai1d045db2011-07-07 18:23:21 +02006075 snd_hda_codec_resume_amp(codec);
6076 snd_hda_codec_resume_cache(codec);
6077 hda_call_check_power_status(codec, 0x01);
6078 return 0;
6079}
Takashi Iwai2a439522011-07-26 09:52:50 +02006080#endif /* CONFIG_PM */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006081
David Henningsson108cc102012-07-20 10:37:25 +02006082static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
6083 const struct alc_fixup *fix, int action)
6084{
6085 struct alc_spec *spec = codec->spec;
6086
6087 if (action == ALC_FIXUP_ACT_PRE_PROBE)
6088 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
6089}
6090
Takashi Iwai1d045db2011-07-07 18:23:21 +02006091static void alc269_fixup_hweq(struct hda_codec *codec,
6092 const struct alc_fixup *fix, int action)
6093{
6094 int coef;
6095
6096 if (action != ALC_FIXUP_ACT_INIT)
6097 return;
6098 coef = alc_read_coef_idx(codec, 0x1e);
6099 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
6100}
6101
6102static void alc271_fixup_dmic(struct hda_codec *codec,
6103 const struct alc_fixup *fix, int action)
6104{
6105 static const struct hda_verb verbs[] = {
6106 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
6107 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
6108 {}
6109 };
6110 unsigned int cfg;
6111
6112 if (strcmp(codec->chip_name, "ALC271X"))
6113 return;
6114 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
6115 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
6116 snd_hda_sequence_write(codec, verbs);
6117}
6118
Takashi Iwai017f2a12011-07-09 14:42:25 +02006119static void alc269_fixup_pcm_44k(struct hda_codec *codec,
6120 const struct alc_fixup *fix, int action)
6121{
6122 struct alc_spec *spec = codec->spec;
6123
6124 if (action != ALC_FIXUP_ACT_PROBE)
6125 return;
6126
6127 /* Due to a hardware problem on Lenovo Ideadpad, we need to
6128 * fix the sample rate of analog I/O to 44.1kHz
6129 */
6130 spec->stream_analog_playback = &alc269_44k_pcm_analog_playback;
6131 spec->stream_analog_capture = &alc269_44k_pcm_analog_capture;
6132}
6133
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02006134static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
6135 const struct alc_fixup *fix, int action)
6136{
6137 int coef;
6138
6139 if (action != ALC_FIXUP_ACT_INIT)
6140 return;
6141 /* The digital-mic unit sends PDM (differential signal) instead of
6142 * the standard PCM, thus you can't record a valid mono stream as is.
6143 * Below is a workaround specific to ALC269 to control the dmic
6144 * signal source as mono.
6145 */
6146 coef = alc_read_coef_idx(codec, 0x07);
6147 alc_write_coef_idx(codec, 0x07, coef | 0x80);
6148}
6149
Takashi Iwai24519912011-08-16 15:08:49 +02006150static void alc269_quanta_automute(struct hda_codec *codec)
6151{
David Henningsson42cf0d02011-09-20 12:04:56 +02006152 update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +02006153
6154 snd_hda_codec_write(codec, 0x20, 0,
6155 AC_VERB_SET_COEF_INDEX, 0x0c);
6156 snd_hda_codec_write(codec, 0x20, 0,
6157 AC_VERB_SET_PROC_COEF, 0x680);
6158
6159 snd_hda_codec_write(codec, 0x20, 0,
6160 AC_VERB_SET_COEF_INDEX, 0x0c);
6161 snd_hda_codec_write(codec, 0x20, 0,
6162 AC_VERB_SET_PROC_COEF, 0x480);
6163}
6164
6165static void alc269_fixup_quanta_mute(struct hda_codec *codec,
6166 const struct alc_fixup *fix, int action)
6167{
6168 struct alc_spec *spec = codec->spec;
6169 if (action != ALC_FIXUP_ACT_PROBE)
6170 return;
6171 spec->automute_hook = alc269_quanta_automute;
6172}
6173
David Henningsson6d3cd5d2013-01-07 12:03:47 +01006174/* update mute-LED according to the speaker mute state via mic1 VREF pin */
6175static void alc269_fixup_mic1_mute_hook(void *private_data, int enabled)
6176{
6177 struct hda_codec *codec = private_data;
6178 unsigned int pinval = AC_PINCTL_IN_EN + (enabled ?
6179 AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80);
6180 snd_hda_set_pin_ctl_cache(codec, 0x18, pinval);
6181}
6182
6183static void alc269_fixup_mic1_mute(struct hda_codec *codec,
6184 const struct alc_fixup *fix, int action)
6185{
6186 struct alc_spec *spec = codec->spec;
Takashi Iwai3bd7b642012-12-18 14:57:09 +01006187 if (action == ALC_FIXUP_ACT_PROBE)
David Henningsson6d3cd5d2013-01-07 12:03:47 +01006188 spec->vmaster_mute.hook = alc269_fixup_mic1_mute_hook;
David Henningsson6d3cd5d2013-01-07 12:03:47 +01006189}
6190
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006191/* update mute-LED according to the speaker mute state via mic2 VREF pin */
6192static void alc269_fixup_mic2_mute_hook(void *private_data, int enabled)
6193{
6194 struct hda_codec *codec = private_data;
6195 unsigned int pinval = enabled ? 0x20 : 0x24;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02006196 snd_hda_set_pin_ctl_cache(codec, 0x19, pinval);
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006197}
6198
6199static void alc269_fixup_mic2_mute(struct hda_codec *codec,
6200 const struct alc_fixup *fix, int action)
6201{
6202 struct alc_spec *spec = codec->spec;
Takashi Iwai3bd7b642012-12-18 14:57:09 +01006203 if (action == ALC_FIXUP_ACT_PROBE)
Takashi Iwaid2f344b2012-03-12 16:59:58 +01006204 spec->vmaster_mute.hook = alc269_fixup_mic2_mute_hook;
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006205}
6206
Dylan Reid08a978d2012-11-18 22:56:40 -08006207static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
6208 const struct alc_fixup *fix,
6209 int action)
6210{
6211 struct alc_spec *spec = codec->spec;
6212
Takashi Iwaiab16c6d2012-11-29 09:56:50 +01006213 if (snd_BUG_ON(!spec->am_entry[1].pin || !spec->autocfg.hp_pins[0]))
6214 return;
Dylan Reid08a978d2012-11-18 22:56:40 -08006215 if (action == ALC_FIXUP_ACT_PROBE)
Takashi Iwaiab16c6d2012-11-29 09:56:50 +01006216 snd_hda_jack_set_gating_jack(codec, spec->am_entry[1].pin,
Dylan Reid08a978d2012-11-18 22:56:40 -08006217 spec->autocfg.hp_pins[0]);
6218}
David Henningsson693b6132012-06-22 19:12:10 +02006219
Takashi Iwai1d045db2011-07-07 18:23:21 +02006220enum {
6221 ALC269_FIXUP_SONY_VAIO,
6222 ALC275_FIXUP_SONY_VAIO_GPIO2,
6223 ALC269_FIXUP_DELL_M101Z,
6224 ALC269_FIXUP_SKU_IGNORE,
6225 ALC269_FIXUP_ASUS_G73JW,
6226 ALC269_FIXUP_LENOVO_EAPD,
6227 ALC275_FIXUP_SONY_HWEQ,
6228 ALC271_FIXUP_DMIC,
Takashi Iwai017f2a12011-07-09 14:42:25 +02006229 ALC269_FIXUP_PCM_44K,
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02006230 ALC269_FIXUP_STEREO_DMIC,
Takashi Iwai24519912011-08-16 15:08:49 +02006231 ALC269_FIXUP_QUANTA_MUTE,
6232 ALC269_FIXUP_LIFEBOOK,
Takashi Iwaia4297b52011-08-23 18:40:12 +02006233 ALC269_FIXUP_AMIC,
6234 ALC269_FIXUP_DMIC,
6235 ALC269VB_FIXUP_AMIC,
6236 ALC269VB_FIXUP_DMIC,
David Henningsson6d3cd5d2013-01-07 12:03:47 +01006237 ALC269_FIXUP_MIC1_MUTE_LED,
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006238 ALC269_FIXUP_MIC2_MUTE_LED,
David Henningsson693b6132012-06-22 19:12:10 +02006239 ALC269_FIXUP_INV_DMIC,
David Henningsson108cc102012-07-20 10:37:25 +02006240 ALC269_FIXUP_LENOVO_DOCK,
6241 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
Dylan Reid08a978d2012-11-18 22:56:40 -08006242 ALC271_FIXUP_AMIC_MIC2,
6243 ALC271_FIXUP_HP_GATE_MIC_JACK,
Takashi Iwai1d045db2011-07-07 18:23:21 +02006244};
6245
6246static const struct alc_fixup alc269_fixups[] = {
6247 [ALC269_FIXUP_SONY_VAIO] = {
6248 .type = ALC_FIXUP_VERBS,
6249 .v.verbs = (const struct hda_verb[]) {
6250 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
6251 {}
6252 }
6253 },
6254 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
6255 .type = ALC_FIXUP_VERBS,
6256 .v.verbs = (const struct hda_verb[]) {
6257 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
6258 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
6259 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
6260 { }
6261 },
6262 .chained = true,
6263 .chain_id = ALC269_FIXUP_SONY_VAIO
6264 },
6265 [ALC269_FIXUP_DELL_M101Z] = {
6266 .type = ALC_FIXUP_VERBS,
6267 .v.verbs = (const struct hda_verb[]) {
6268 /* Enables internal speaker */
6269 {0x20, AC_VERB_SET_COEF_INDEX, 13},
6270 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
6271 {}
6272 }
6273 },
6274 [ALC269_FIXUP_SKU_IGNORE] = {
Takashi Iwai23d30f22012-05-07 17:17:32 +02006275 .type = ALC_FIXUP_FUNC,
6276 .v.func = alc_fixup_sku_ignore,
Takashi Iwai1d045db2011-07-07 18:23:21 +02006277 },
6278 [ALC269_FIXUP_ASUS_G73JW] = {
6279 .type = ALC_FIXUP_PINS,
6280 .v.pins = (const struct alc_pincfg[]) {
6281 { 0x17, 0x99130111 }, /* subwoofer */
6282 { }
6283 }
6284 },
6285 [ALC269_FIXUP_LENOVO_EAPD] = {
6286 .type = ALC_FIXUP_VERBS,
6287 .v.verbs = (const struct hda_verb[]) {
6288 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
6289 {}
6290 }
6291 },
6292 [ALC275_FIXUP_SONY_HWEQ] = {
6293 .type = ALC_FIXUP_FUNC,
6294 .v.func = alc269_fixup_hweq,
6295 .chained = true,
6296 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
6297 },
6298 [ALC271_FIXUP_DMIC] = {
6299 .type = ALC_FIXUP_FUNC,
6300 .v.func = alc271_fixup_dmic,
6301 },
Takashi Iwai017f2a12011-07-09 14:42:25 +02006302 [ALC269_FIXUP_PCM_44K] = {
6303 .type = ALC_FIXUP_FUNC,
6304 .v.func = alc269_fixup_pcm_44k,
David Henningsson012e7eb2012-08-08 08:43:37 +02006305 .chained = true,
6306 .chain_id = ALC269_FIXUP_QUANTA_MUTE
Takashi Iwai017f2a12011-07-09 14:42:25 +02006307 },
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02006308 [ALC269_FIXUP_STEREO_DMIC] = {
6309 .type = ALC_FIXUP_FUNC,
6310 .v.func = alc269_fixup_stereo_dmic,
6311 },
Takashi Iwai24519912011-08-16 15:08:49 +02006312 [ALC269_FIXUP_QUANTA_MUTE] = {
6313 .type = ALC_FIXUP_FUNC,
6314 .v.func = alc269_fixup_quanta_mute,
6315 },
6316 [ALC269_FIXUP_LIFEBOOK] = {
6317 .type = ALC_FIXUP_PINS,
6318 .v.pins = (const struct alc_pincfg[]) {
6319 { 0x1a, 0x2101103f }, /* dock line-out */
6320 { 0x1b, 0x23a11040 }, /* dock mic-in */
6321 { }
6322 },
6323 .chained = true,
6324 .chain_id = ALC269_FIXUP_QUANTA_MUTE
6325 },
Takashi Iwaia4297b52011-08-23 18:40:12 +02006326 [ALC269_FIXUP_AMIC] = {
6327 .type = ALC_FIXUP_PINS,
6328 .v.pins = (const struct alc_pincfg[]) {
6329 { 0x14, 0x99130110 }, /* speaker */
6330 { 0x15, 0x0121401f }, /* HP out */
6331 { 0x18, 0x01a19c20 }, /* mic */
6332 { 0x19, 0x99a3092f }, /* int-mic */
6333 { }
6334 },
6335 },
6336 [ALC269_FIXUP_DMIC] = {
6337 .type = ALC_FIXUP_PINS,
6338 .v.pins = (const struct alc_pincfg[]) {
6339 { 0x12, 0x99a3092f }, /* int-mic */
6340 { 0x14, 0x99130110 }, /* speaker */
6341 { 0x15, 0x0121401f }, /* HP out */
6342 { 0x18, 0x01a19c20 }, /* mic */
6343 { }
6344 },
6345 },
6346 [ALC269VB_FIXUP_AMIC] = {
6347 .type = ALC_FIXUP_PINS,
6348 .v.pins = (const struct alc_pincfg[]) {
6349 { 0x14, 0x99130110 }, /* speaker */
6350 { 0x18, 0x01a19c20 }, /* mic */
6351 { 0x19, 0x99a3092f }, /* int-mic */
6352 { 0x21, 0x0121401f }, /* HP out */
6353 { }
6354 },
6355 },
David Henningsson2267ea92012-01-03 08:45:56 +01006356 [ALC269VB_FIXUP_DMIC] = {
Takashi Iwaia4297b52011-08-23 18:40:12 +02006357 .type = ALC_FIXUP_PINS,
6358 .v.pins = (const struct alc_pincfg[]) {
6359 { 0x12, 0x99a3092f }, /* int-mic */
6360 { 0x14, 0x99130110 }, /* speaker */
6361 { 0x18, 0x01a19c20 }, /* mic */
6362 { 0x21, 0x0121401f }, /* HP out */
6363 { }
6364 },
6365 },
David Henningsson6d3cd5d2013-01-07 12:03:47 +01006366 [ALC269_FIXUP_MIC1_MUTE_LED] = {
6367 .type = ALC_FIXUP_FUNC,
6368 .v.func = alc269_fixup_mic1_mute,
6369 },
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006370 [ALC269_FIXUP_MIC2_MUTE_LED] = {
6371 .type = ALC_FIXUP_FUNC,
6372 .v.func = alc269_fixup_mic2_mute,
6373 },
David Henningsson693b6132012-06-22 19:12:10 +02006374 [ALC269_FIXUP_INV_DMIC] = {
6375 .type = ALC_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02006376 .v.func = alc_fixup_inv_dmic_0x12,
David Henningsson693b6132012-06-22 19:12:10 +02006377 },
David Henningsson108cc102012-07-20 10:37:25 +02006378 [ALC269_FIXUP_LENOVO_DOCK] = {
6379 .type = ALC_FIXUP_PINS,
6380 .v.pins = (const struct alc_pincfg[]) {
6381 { 0x19, 0x23a11040 }, /* dock mic */
6382 { 0x1b, 0x2121103f }, /* dock headphone */
6383 { }
6384 },
6385 .chained = true,
6386 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
6387 },
6388 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
6389 .type = ALC_FIXUP_FUNC,
6390 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
6391 },
Dylan Reid08a978d2012-11-18 22:56:40 -08006392 [ALC271_FIXUP_AMIC_MIC2] = {
6393 .type = ALC_FIXUP_PINS,
6394 .v.pins = (const struct alc_pincfg[]) {
6395 { 0x14, 0x99130110 }, /* speaker */
6396 { 0x19, 0x01a19c20 }, /* mic */
6397 { 0x1b, 0x99a7012f }, /* int-mic */
6398 { 0x21, 0x0121401f }, /* HP out */
6399 { }
6400 },
6401 },
6402 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
6403 .type = ALC_FIXUP_FUNC,
6404 .v.func = alc271_hp_gate_mic_jack,
6405 .chained = true,
6406 .chain_id = ALC271_FIXUP_AMIC_MIC2,
6407 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02006408};
6409
6410static const struct snd_pci_quirk alc269_fixup_tbl[] = {
David Henningsson693b6132012-06-22 19:12:10 +02006411 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
6412 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
Takashi Iwai420b0fe2012-03-12 12:35:27 +01006413 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_MIC2_MUTE_LED),
David Henningsson6d3cd5d2013-01-07 12:03:47 +01006414 SND_PCI_QUIRK(0x103c, 0x1972, "HP Pavilion 17", ALC269_FIXUP_MIC1_MUTE_LED),
David Henningsson5ac57552012-04-20 10:01:46 +02006415 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_DMIC),
Oleksij Rempel148728f2012-09-21 17:44:58 +02006416 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_DMIC),
Takashi Iwai017f2a12011-07-09 14:42:25 +02006417 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
David Henningsson693b6132012-06-22 19:12:10 +02006418 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02006419 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
6420 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
6421 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
6422 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
6423 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006424 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
6425 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
6426 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
6427 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
6428 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
Dylan Reid08a978d2012-11-18 22:56:40 -08006429 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006430 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
Takashi Iwai24519912011-08-16 15:08:49 +02006431 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006432 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
6433 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
6434 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
6435 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
6436 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
Takashi Iwai707fba32012-08-02 09:04:39 +02006437 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
Felix Kaechelec8415a42012-08-06 23:02:01 +02006438 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
Stefán Freyr84f98fd2012-10-19 22:46:00 +02006439 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
Philipp A. Mohrenweiser4407be62012-08-06 13:14:18 +02006440 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
David Henningsson108cc102012-07-20 10:37:25 +02006441 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
David Henningsson012e7eb2012-08-08 08:43:37 +02006442 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006443 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
Takashi Iwaia4297b52011-08-23 18:40:12 +02006444
Takashi Iwaia7f3eed2012-02-16 13:03:18 +01006445#if 0
Takashi Iwaia4297b52011-08-23 18:40:12 +02006446 /* Below is a quirk table taken from the old code.
6447 * Basically the device should work as is without the fixup table.
6448 * If BIOS doesn't give a proper info, enable the corresponding
6449 * fixup entry.
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02006450 */
Takashi Iwaia4297b52011-08-23 18:40:12 +02006451 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
6452 ALC269_FIXUP_AMIC),
6453 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
Takashi Iwaia4297b52011-08-23 18:40:12 +02006454 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
6455 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
6456 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
6457 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
6458 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
6459 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
6460 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
6461 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
6462 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
6463 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
6464 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
6465 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
6466 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
6467 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
6468 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
6469 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
6470 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
6471 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
6472 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
6473 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
6474 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
6475 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
6476 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
6477 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
6478 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
6479 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
6480 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
6481 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
6482 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
6483 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
6484 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
6485 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
6486 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
6487 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
6488 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
6489 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
6490 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
6491 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
6492#endif
6493 {}
6494};
6495
6496static const struct alc_model_fixup alc269_fixup_models[] = {
6497 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
6498 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02006499 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
6500 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
6501 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
David Henningsson108cc102012-07-20 10:37:25 +02006502 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
Takashi Iwai1d045db2011-07-07 18:23:21 +02006503 {}
6504};
6505
6506
Takashi Iwai546bb672012-03-07 08:37:19 +01006507static void alc269_fill_coef(struct hda_codec *codec)
Takashi Iwai1d045db2011-07-07 18:23:21 +02006508{
Kailang Yang526af6e2012-03-07 08:25:20 +01006509 struct alc_spec *spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006510 int val;
6511
Kailang Yang526af6e2012-03-07 08:25:20 +01006512 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
Takashi Iwai546bb672012-03-07 08:37:19 +01006513 return;
Kailang Yang526af6e2012-03-07 08:25:20 +01006514
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006515 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006516 alc_write_coef_idx(codec, 0xf, 0x960b);
6517 alc_write_coef_idx(codec, 0xe, 0x8817);
6518 }
6519
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006520 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006521 alc_write_coef_idx(codec, 0xf, 0x960b);
6522 alc_write_coef_idx(codec, 0xe, 0x8814);
6523 }
6524
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006525 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006526 val = alc_read_coef_idx(codec, 0x04);
6527 /* Power up output pin */
6528 alc_write_coef_idx(codec, 0x04, val | (1<<11));
6529 }
6530
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006531 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006532 val = alc_read_coef_idx(codec, 0xd);
6533 if ((val & 0x0c00) >> 10 != 0x1) {
6534 /* Capless ramp up clock control */
6535 alc_write_coef_idx(codec, 0xd, val | (1<<10));
6536 }
6537 val = alc_read_coef_idx(codec, 0x17);
6538 if ((val & 0x01c0) >> 6 != 0x4) {
6539 /* Class D power on reset */
6540 alc_write_coef_idx(codec, 0x17, val | (1<<7));
6541 }
6542 }
6543
6544 val = alc_read_coef_idx(codec, 0xd); /* Class D */
6545 alc_write_coef_idx(codec, 0xd, val | (1<<14));
6546
6547 val = alc_read_coef_idx(codec, 0x4); /* HP */
6548 alc_write_coef_idx(codec, 0x4, val | (1<<11));
Takashi Iwai1d045db2011-07-07 18:23:21 +02006549}
6550
6551/*
6552 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006553static int patch_alc269(struct hda_codec *codec)
6554{
6555 struct alc_spec *spec;
Takashi Iwai3de95172012-05-07 18:03:15 +02006556 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006557
Takashi Iwai3de95172012-05-07 18:03:15 +02006558 err = alc_alloc_spec(codec, 0x0b);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006559 if (err < 0)
Takashi Iwai3de95172012-05-07 18:03:15 +02006560 return err;
6561
6562 spec = codec->spec;
Takashi Iwai37c04202012-12-18 14:22:45 +01006563 spec->shared_mic_vref_pin = 0x18;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006564
Herton Ronaldo Krzesinski9f720bb2012-09-27 10:38:14 -03006565 alc_pick_fixup(codec, alc269_fixup_models,
6566 alc269_fixup_tbl, alc269_fixups);
6567 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
6568
6569 alc_auto_parse_customize_define(codec);
6570
Kailang Yang065380f2013-01-10 10:25:48 +01006571 switch (codec->vendor_id) {
6572 case 0x10ec0269:
Takashi Iwai1d045db2011-07-07 18:23:21 +02006573 spec->codec_variant = ALC269_TYPE_ALC269VA;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006574 switch (alc_get_coef0(codec) & 0x00f0) {
6575 case 0x0010:
Takashi Iwai1d045db2011-07-07 18:23:21 +02006576 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006577 spec->cdefine.platform_type == 1)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02006578 err = alc_codec_rename(codec, "ALC271X");
Takashi Iwai1d045db2011-07-07 18:23:21 +02006579 spec->codec_variant = ALC269_TYPE_ALC269VB;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006580 break;
6581 case 0x0020:
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006582 if (codec->bus->pci->subsystem_vendor == 0x17aa &&
6583 codec->bus->pci->subsystem_device == 0x21f3)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02006584 err = alc_codec_rename(codec, "ALC3202");
Takashi Iwai1d045db2011-07-07 18:23:21 +02006585 spec->codec_variant = ALC269_TYPE_ALC269VC;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006586 break;
Kailang Yangadcc70b2012-05-25 08:08:38 +02006587 case 0x0030:
6588 spec->codec_variant = ALC269_TYPE_ALC269VD;
6589 break;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006590 default:
Takashi Iwai1d045db2011-07-07 18:23:21 +02006591 alc_fix_pll_init(codec, 0x20, 0x04, 15);
Takashi Iwai1bb7e432011-10-17 16:50:59 +02006592 }
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006593 if (err < 0)
6594 goto error;
Takashi Iwai546bb672012-03-07 08:37:19 +01006595 spec->init_hook = alc269_fill_coef;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006596 alc269_fill_coef(codec);
Kailang Yang065380f2013-01-10 10:25:48 +01006597 break;
6598
6599 case 0x10ec0280:
6600 case 0x10ec0290:
6601 spec->codec_variant = ALC269_TYPE_ALC280;
6602 break;
6603 case 0x10ec0282:
6604 case 0x10ec0283:
6605 spec->codec_variant = ALC269_TYPE_ALC282;
6606 break;
6607 case 0x10ec0284:
6608 case 0x10ec0292:
6609 spec->codec_variant = ALC269_TYPE_ALC284;
6610 break;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006611 }
6612
Takashi Iwaia4297b52011-08-23 18:40:12 +02006613 /* automatic parse from the BIOS config */
6614 err = alc269_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006615 if (err < 0)
6616 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006617
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006618 if (!spec->no_analog && has_cdefine_beep(codec)) {
6619 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006620 if (err < 0)
6621 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006622 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006623 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02006624
Takashi Iwai1d045db2011-07-07 18:23:21 +02006625 codec->patch_ops = alc_patch_ops;
Takashi Iwai2a439522011-07-26 09:52:50 +02006626#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02006627 codec->patch_ops.resume = alc269_resume;
6628#endif
Takashi Iwai1d045db2011-07-07 18:23:21 +02006629 spec->shutup = alc269_shutup;
6630
Takashi Iwai589876e2012-02-20 15:47:55 +01006631 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6632
Takashi Iwai1d045db2011-07-07 18:23:21 +02006633 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006634
6635 error:
6636 alc_free(codec);
6637 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006638}
6639
6640/*
6641 * ALC861
6642 */
6643
Takashi Iwai1d045db2011-07-07 18:23:21 +02006644static int alc861_parse_auto_config(struct hda_codec *codec)
6645{
Takashi Iwai1d045db2011-07-07 18:23:21 +02006646 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006647 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
6648 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02006649}
6650
Takashi Iwai1d045db2011-07-07 18:23:21 +02006651/* Pin config fixes */
6652enum {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006653 ALC861_FIXUP_FSC_AMILO_PI1505,
6654 ALC861_FIXUP_AMP_VREF_0F,
6655 ALC861_FIXUP_NO_JACK_DETECT,
6656 ALC861_FIXUP_ASUS_A6RP,
Takashi Iwai1d045db2011-07-07 18:23:21 +02006657};
6658
Takashi Iwai31150f22012-01-30 10:54:08 +01006659/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
6660static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
6661 const struct alc_fixup *fix, int action)
6662{
6663 struct alc_spec *spec = codec->spec;
6664 unsigned int val;
6665
6666 if (action != ALC_FIXUP_ACT_INIT)
6667 return;
6668 val = snd_hda_codec_read(codec, 0x0f, 0,
6669 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
6670 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
6671 val |= AC_PINCTL_IN_EN;
6672 val |= AC_PINCTL_VREF_50;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02006673 snd_hda_set_pin_ctl(codec, 0x0f, val);
Takashi Iwai31150f22012-01-30 10:54:08 +01006674 spec->keep_vref_in_automute = 1;
6675}
6676
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006677/* suppress the jack-detection */
6678static void alc_fixup_no_jack_detect(struct hda_codec *codec,
6679 const struct alc_fixup *fix, int action)
6680{
6681 if (action == ALC_FIXUP_ACT_PRE_PROBE)
6682 codec->no_jack_detect = 1;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02006683}
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006684
Takashi Iwai1d045db2011-07-07 18:23:21 +02006685static const struct alc_fixup alc861_fixups[] = {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006686 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02006687 .type = ALC_FIXUP_PINS,
6688 .v.pins = (const struct alc_pincfg[]) {
6689 { 0x0b, 0x0221101f }, /* HP */
6690 { 0x0f, 0x90170310 }, /* speaker */
6691 { }
6692 }
6693 },
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006694 [ALC861_FIXUP_AMP_VREF_0F] = {
Takashi Iwai31150f22012-01-30 10:54:08 +01006695 .type = ALC_FIXUP_FUNC,
6696 .v.func = alc861_fixup_asus_amp_vref_0f,
Takashi Iwai3b25eb62012-01-25 09:55:46 +01006697 },
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006698 [ALC861_FIXUP_NO_JACK_DETECT] = {
6699 .type = ALC_FIXUP_FUNC,
6700 .v.func = alc_fixup_no_jack_detect,
6701 },
6702 [ALC861_FIXUP_ASUS_A6RP] = {
6703 .type = ALC_FIXUP_FUNC,
6704 .v.func = alc861_fixup_asus_amp_vref_0f,
6705 .chained = true,
6706 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
6707 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02006708};
6709
6710static const struct snd_pci_quirk alc861_fixup_tbl[] = {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01006711 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
6712 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
6713 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
6714 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
6715 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
6716 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006717 {}
6718};
6719
6720/*
6721 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006722static int patch_alc861(struct hda_codec *codec)
6723{
6724 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006725 int err;
6726
Takashi Iwai3de95172012-05-07 18:03:15 +02006727 err = alc_alloc_spec(codec, 0x15);
6728 if (err < 0)
6729 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006730
Takashi Iwai3de95172012-05-07 18:03:15 +02006731 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006732
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006733 alc_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
6734 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02006735
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006736 /* automatic parse from the BIOS config */
6737 err = alc861_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006738 if (err < 0)
6739 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006740
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006741 if (!spec->no_analog) {
6742 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006743 if (err < 0)
6744 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006745 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
6746 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02006747
Takashi Iwai1d045db2011-07-07 18:23:21 +02006748 codec->patch_ops = alc_patch_ops;
Takashi Iwai83012a72012-08-24 18:38:08 +02006749#ifdef CONFIG_PM
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006750 spec->power_hook = alc_power_eapd;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006751#endif
6752
Takashi Iwai589876e2012-02-20 15:47:55 +01006753 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6754
Takashi Iwai1d045db2011-07-07 18:23:21 +02006755 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006756
6757 error:
6758 alc_free(codec);
6759 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006760}
6761
6762/*
6763 * ALC861-VD support
6764 *
6765 * Based on ALC882
6766 *
6767 * In addition, an independent DAC
6768 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006769static int alc861vd_parse_auto_config(struct hda_codec *codec)
6770{
Takashi Iwai1d045db2011-07-07 18:23:21 +02006771 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006772 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
6773 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02006774}
6775
Takashi Iwai1d045db2011-07-07 18:23:21 +02006776enum {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006777 ALC660VD_FIX_ASUS_GPIO1,
6778 ALC861VD_FIX_DALLAS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02006779};
6780
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006781/* exclude VREF80 */
6782static void alc861vd_fixup_dallas(struct hda_codec *codec,
6783 const struct alc_fixup *fix, int action)
6784{
6785 if (action == ALC_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaib78562b2012-12-17 20:06:49 +01006786 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
6787 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006788 }
6789}
6790
Takashi Iwai1d045db2011-07-07 18:23:21 +02006791static const struct alc_fixup alc861vd_fixups[] = {
6792 [ALC660VD_FIX_ASUS_GPIO1] = {
6793 .type = ALC_FIXUP_VERBS,
6794 .v.verbs = (const struct hda_verb[]) {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006795 /* reset GPIO1 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006796 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
6797 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
6798 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
6799 { }
6800 }
6801 },
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006802 [ALC861VD_FIX_DALLAS] = {
6803 .type = ALC_FIXUP_FUNC,
6804 .v.func = alc861vd_fixup_dallas,
6805 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02006806};
6807
6808static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006809 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006810 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02006811 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02006812 {}
6813};
6814
Takashi Iwai1d045db2011-07-07 18:23:21 +02006815/*
6816 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006817static int patch_alc861vd(struct hda_codec *codec)
6818{
6819 struct alc_spec *spec;
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006820 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006821
Takashi Iwai3de95172012-05-07 18:03:15 +02006822 err = alc_alloc_spec(codec, 0x0b);
6823 if (err < 0)
6824 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006825
Takashi Iwai3de95172012-05-07 18:03:15 +02006826 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006827
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006828 alc_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
6829 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02006830
Takashi Iwaicb4e4822011-08-23 17:34:25 +02006831 /* automatic parse from the BIOS config */
6832 err = alc861vd_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006833 if (err < 0)
6834 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006835
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006836 if (!spec->no_analog) {
6837 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006838 if (err < 0)
6839 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006840 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
6841 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02006842
Takashi Iwai1d045db2011-07-07 18:23:21 +02006843 codec->patch_ops = alc_patch_ops;
6844
Takashi Iwai1d045db2011-07-07 18:23:21 +02006845 spec->shutup = alc_eapd_shutup;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006846
Takashi Iwai589876e2012-02-20 15:47:55 +01006847 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6848
Takashi Iwai1d045db2011-07-07 18:23:21 +02006849 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02006850
6851 error:
6852 alc_free(codec);
6853 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02006854}
6855
6856/*
6857 * ALC662 support
6858 *
6859 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
6860 * configuration. Each pin widget can choose any input DACs and a mixer.
6861 * Each ADC is connected from a mixer of all inputs. This makes possible
6862 * 6-channel independent captures.
6863 *
6864 * In addition, an independent DAC for the multi-playback (not used in this
6865 * driver yet).
6866 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02006867
6868/*
6869 * BIOS auto configuration
6870 */
6871
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006872static int alc662_parse_auto_config(struct hda_codec *codec)
6873{
Takashi Iwai4c6d72d2011-05-02 11:30:18 +02006874 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006875 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
6876 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
6877 const hda_nid_t *ssids;
Takashi Iwaiee979a142008-09-02 15:42:20 +02006878
Kailang Yang6227cdc2010-02-25 08:36:52 +01006879 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
6880 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006881 ssids = alc663_ssids;
Kailang Yang6227cdc2010-02-25 08:36:52 +01006882 else
Takashi Iwai3e6179b2011-07-08 16:55:13 +02006883 ssids = alc662_ssids;
6884 return alc_parse_auto_config(codec, alc662_ignore, ssids);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006885}
6886
Todd Broch6be79482010-12-07 16:51:05 -08006887static void alc272_fixup_mario(struct hda_codec *codec,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006888 const struct alc_fixup *fix, int action)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01006889{
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006890 if (action != ALC_FIXUP_ACT_PROBE)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01006891 return;
Todd Broch6be79482010-12-07 16:51:05 -08006892 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
6893 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
6894 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
6895 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
6896 (0 << AC_AMPCAP_MUTE_SHIFT)))
6897 printk(KERN_WARNING
6898 "hda_codec: failed to override amp caps for NID 0x2\n");
6899}
6900
David Henningsson6cb3b702010-09-09 08:51:44 +02006901enum {
Daniel T Chen2df03512010-10-10 22:39:28 -04006902 ALC662_FIXUP_ASPIRE,
David Henningsson6cb3b702010-09-09 08:51:44 +02006903 ALC662_FIXUP_IDEAPAD,
Todd Broch6be79482010-12-07 16:51:05 -08006904 ALC272_FIXUP_MARIO,
Anisse Astierd2ebd472011-01-20 12:36:21 +01006905 ALC662_FIXUP_CZC_P10T,
David Henningsson94024cd2011-04-29 14:10:55 +02006906 ALC662_FIXUP_SKU_IGNORE,
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02006907 ALC662_FIXUP_HP_RP5800,
Takashi Iwai53c334a2011-08-23 18:27:14 +02006908 ALC662_FIXUP_ASUS_MODE1,
6909 ALC662_FIXUP_ASUS_MODE2,
6910 ALC662_FIXUP_ASUS_MODE3,
6911 ALC662_FIXUP_ASUS_MODE4,
6912 ALC662_FIXUP_ASUS_MODE5,
6913 ALC662_FIXUP_ASUS_MODE6,
6914 ALC662_FIXUP_ASUS_MODE7,
6915 ALC662_FIXUP_ASUS_MODE8,
Takashi Iwai1565cc32012-02-13 12:03:25 +01006916 ALC662_FIXUP_NO_JACK_DETECT,
David Henningssonedfe3bf2012-06-12 13:15:12 +02006917 ALC662_FIXUP_ZOTAC_Z68,
Takashi Iwai125821a2012-06-22 14:30:29 +02006918 ALC662_FIXUP_INV_DMIC,
David Henningsson6cb3b702010-09-09 08:51:44 +02006919};
6920
6921static const struct alc_fixup alc662_fixups[] = {
Daniel T Chen2df03512010-10-10 22:39:28 -04006922 [ALC662_FIXUP_ASPIRE] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006923 .type = ALC_FIXUP_PINS,
6924 .v.pins = (const struct alc_pincfg[]) {
Daniel T Chen2df03512010-10-10 22:39:28 -04006925 { 0x15, 0x99130112 }, /* subwoofer */
6926 { }
6927 }
6928 },
David Henningsson6cb3b702010-09-09 08:51:44 +02006929 [ALC662_FIXUP_IDEAPAD] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006930 .type = ALC_FIXUP_PINS,
6931 .v.pins = (const struct alc_pincfg[]) {
David Henningsson6cb3b702010-09-09 08:51:44 +02006932 { 0x17, 0x99130112 }, /* subwoofer */
6933 { }
6934 }
6935 },
Todd Broch6be79482010-12-07 16:51:05 -08006936 [ALC272_FIXUP_MARIO] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01006937 .type = ALC_FIXUP_FUNC,
6938 .v.func = alc272_fixup_mario,
Anisse Astierd2ebd472011-01-20 12:36:21 +01006939 },
6940 [ALC662_FIXUP_CZC_P10T] = {
6941 .type = ALC_FIXUP_VERBS,
6942 .v.verbs = (const struct hda_verb[]) {
6943 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
6944 {}
6945 }
6946 },
David Henningsson94024cd2011-04-29 14:10:55 +02006947 [ALC662_FIXUP_SKU_IGNORE] = {
Takashi Iwai23d30f22012-05-07 17:17:32 +02006948 .type = ALC_FIXUP_FUNC,
6949 .v.func = alc_fixup_sku_ignore,
Takashi Iwaic6b35872011-03-28 12:05:31 +02006950 },
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02006951 [ALC662_FIXUP_HP_RP5800] = {
6952 .type = ALC_FIXUP_PINS,
6953 .v.pins = (const struct alc_pincfg[]) {
6954 { 0x14, 0x0221201f }, /* HP out */
6955 { }
6956 },
6957 .chained = true,
6958 .chain_id = ALC662_FIXUP_SKU_IGNORE
6959 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02006960 [ALC662_FIXUP_ASUS_MODE1] = {
6961 .type = ALC_FIXUP_PINS,
6962 .v.pins = (const struct alc_pincfg[]) {
6963 { 0x14, 0x99130110 }, /* speaker */
6964 { 0x18, 0x01a19c20 }, /* mic */
6965 { 0x19, 0x99a3092f }, /* int-mic */
6966 { 0x21, 0x0121401f }, /* HP out */
6967 { }
6968 },
6969 .chained = true,
6970 .chain_id = ALC662_FIXUP_SKU_IGNORE
6971 },
6972 [ALC662_FIXUP_ASUS_MODE2] = {
Takashi Iwai2996bdb2011-08-18 16:02:24 +02006973 .type = ALC_FIXUP_PINS,
6974 .v.pins = (const struct alc_pincfg[]) {
6975 { 0x14, 0x99130110 }, /* speaker */
6976 { 0x18, 0x01a19820 }, /* mic */
6977 { 0x19, 0x99a3092f }, /* int-mic */
6978 { 0x1b, 0x0121401f }, /* HP out */
6979 { }
6980 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02006981 .chained = true,
6982 .chain_id = ALC662_FIXUP_SKU_IGNORE
6983 },
6984 [ALC662_FIXUP_ASUS_MODE3] = {
6985 .type = ALC_FIXUP_PINS,
6986 .v.pins = (const struct alc_pincfg[]) {
6987 { 0x14, 0x99130110 }, /* speaker */
6988 { 0x15, 0x0121441f }, /* HP */
6989 { 0x18, 0x01a19840 }, /* mic */
6990 { 0x19, 0x99a3094f }, /* int-mic */
6991 { 0x21, 0x01211420 }, /* HP2 */
6992 { }
6993 },
6994 .chained = true,
6995 .chain_id = ALC662_FIXUP_SKU_IGNORE
6996 },
6997 [ALC662_FIXUP_ASUS_MODE4] = {
6998 .type = ALC_FIXUP_PINS,
6999 .v.pins = (const struct alc_pincfg[]) {
7000 { 0x14, 0x99130110 }, /* speaker */
7001 { 0x16, 0x99130111 }, /* speaker */
7002 { 0x18, 0x01a19840 }, /* mic */
7003 { 0x19, 0x99a3094f }, /* int-mic */
7004 { 0x21, 0x0121441f }, /* HP */
7005 { }
7006 },
7007 .chained = true,
7008 .chain_id = ALC662_FIXUP_SKU_IGNORE
7009 },
7010 [ALC662_FIXUP_ASUS_MODE5] = {
7011 .type = ALC_FIXUP_PINS,
7012 .v.pins = (const struct alc_pincfg[]) {
7013 { 0x14, 0x99130110 }, /* speaker */
7014 { 0x15, 0x0121441f }, /* HP */
7015 { 0x16, 0x99130111 }, /* speaker */
7016 { 0x18, 0x01a19840 }, /* mic */
7017 { 0x19, 0x99a3094f }, /* int-mic */
7018 { }
7019 },
7020 .chained = true,
7021 .chain_id = ALC662_FIXUP_SKU_IGNORE
7022 },
7023 [ALC662_FIXUP_ASUS_MODE6] = {
7024 .type = ALC_FIXUP_PINS,
7025 .v.pins = (const struct alc_pincfg[]) {
7026 { 0x14, 0x99130110 }, /* speaker */
7027 { 0x15, 0x01211420 }, /* HP2 */
7028 { 0x18, 0x01a19840 }, /* mic */
7029 { 0x19, 0x99a3094f }, /* int-mic */
7030 { 0x1b, 0x0121441f }, /* HP */
7031 { }
7032 },
7033 .chained = true,
7034 .chain_id = ALC662_FIXUP_SKU_IGNORE
7035 },
7036 [ALC662_FIXUP_ASUS_MODE7] = {
7037 .type = ALC_FIXUP_PINS,
7038 .v.pins = (const struct alc_pincfg[]) {
7039 { 0x14, 0x99130110 }, /* speaker */
7040 { 0x17, 0x99130111 }, /* speaker */
7041 { 0x18, 0x01a19840 }, /* mic */
7042 { 0x19, 0x99a3094f }, /* int-mic */
7043 { 0x1b, 0x01214020 }, /* HP */
7044 { 0x21, 0x0121401f }, /* HP */
7045 { }
7046 },
7047 .chained = true,
7048 .chain_id = ALC662_FIXUP_SKU_IGNORE
7049 },
7050 [ALC662_FIXUP_ASUS_MODE8] = {
7051 .type = ALC_FIXUP_PINS,
7052 .v.pins = (const struct alc_pincfg[]) {
7053 { 0x14, 0x99130110 }, /* speaker */
7054 { 0x12, 0x99a30970 }, /* int-mic */
7055 { 0x15, 0x01214020 }, /* HP */
7056 { 0x17, 0x99130111 }, /* speaker */
7057 { 0x18, 0x01a19840 }, /* mic */
7058 { 0x21, 0x0121401f }, /* HP */
7059 { }
7060 },
7061 .chained = true,
7062 .chain_id = ALC662_FIXUP_SKU_IGNORE
Takashi Iwai2996bdb2011-08-18 16:02:24 +02007063 },
Takashi Iwai1565cc32012-02-13 12:03:25 +01007064 [ALC662_FIXUP_NO_JACK_DETECT] = {
7065 .type = ALC_FIXUP_FUNC,
7066 .v.func = alc_fixup_no_jack_detect,
7067 },
David Henningssonedfe3bf2012-06-12 13:15:12 +02007068 [ALC662_FIXUP_ZOTAC_Z68] = {
7069 .type = ALC_FIXUP_PINS,
7070 .v.pins = (const struct alc_pincfg[]) {
7071 { 0x1b, 0x02214020 }, /* Front HP */
7072 { }
7073 }
7074 },
Takashi Iwai125821a2012-06-22 14:30:29 +02007075 [ALC662_FIXUP_INV_DMIC] = {
7076 .type = ALC_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02007077 .v.func = alc_fixup_inv_dmic_0x12,
Takashi Iwai125821a2012-06-22 14:30:29 +02007078 },
David Henningsson6cb3b702010-09-09 08:51:44 +02007079};
7080
Takashi Iwaia9111322011-05-02 11:30:18 +02007081static const struct snd_pci_quirk alc662_fixup_tbl[] = {
Takashi Iwai53c334a2011-08-23 18:27:14 +02007082 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
David Henningssona6c47a82011-02-10 15:39:19 +01007083 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
David Henningsson94024cd2011-04-29 14:10:55 +02007084 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
Takashi Iwai125821a2012-06-22 14:30:29 +02007085 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
Daniel T Chen2df03512010-10-10 22:39:28 -04007086 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02007087 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
Takashi Iwai1565cc32012-02-13 12:03:25 +01007088 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
Takashi Iwai53c334a2011-08-23 18:27:14 +02007089 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
Daniel T Chena0e90ac2010-11-20 10:20:35 -05007090 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
Valentine Sinitsynd4118582010-10-01 22:24:08 +06007091 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
David Henningsson6cb3b702010-09-09 08:51:44 +02007092 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
David Henningssonedfe3bf2012-06-12 13:15:12 +02007093 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
Anisse Astierd2ebd472011-01-20 12:36:21 +01007094 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
Takashi Iwai53c334a2011-08-23 18:27:14 +02007095
7096#if 0
7097 /* Below is a quirk table taken from the old code.
7098 * Basically the device should work as is without the fixup table.
7099 * If BIOS doesn't give a proper info, enable the corresponding
7100 * fixup entry.
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02007101 */
Takashi Iwai53c334a2011-08-23 18:27:14 +02007102 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
7103 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
7104 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
7105 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
7106 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
7107 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7108 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
7109 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
7110 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
7111 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7112 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
7113 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
7114 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
7115 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
7116 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
7117 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7118 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
7119 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
7120 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7121 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
7122 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
7123 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7124 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
7125 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
7126 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
7127 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7128 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
7129 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
7130 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7131 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
7132 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7133 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7134 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
7135 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
7136 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
7137 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
7138 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
7139 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
7140 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
7141 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7142 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
7143 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
7144 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
7145 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
7146 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
7147 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
7148 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
7149 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
7150 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
7151 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
7152#endif
David Henningsson6cb3b702010-09-09 08:51:44 +02007153 {}
7154};
7155
Todd Broch6be79482010-12-07 16:51:05 -08007156static const struct alc_model_fixup alc662_fixup_models[] = {
7157 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
Takashi Iwai53c334a2011-08-23 18:27:14 +02007158 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
7159 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
7160 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
7161 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
7162 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
7163 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
7164 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
7165 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02007166 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
Todd Broch6be79482010-12-07 16:51:05 -08007167 {}
7168};
David Henningsson6cb3b702010-09-09 08:51:44 +02007169
Kailang Yang8663ff72012-06-29 09:35:52 +02007170static void alc662_fill_coef(struct hda_codec *codec)
7171{
7172 int val, coef;
7173
7174 coef = alc_get_coef0(codec);
7175
7176 switch (codec->vendor_id) {
7177 case 0x10ec0662:
7178 if ((coef & 0x00f0) == 0x0030) {
7179 val = alc_read_coef_idx(codec, 0x4); /* EAPD Ctrl */
7180 alc_write_coef_idx(codec, 0x4, val & ~(1<<10));
7181 }
7182 break;
7183 case 0x10ec0272:
7184 case 0x10ec0273:
7185 case 0x10ec0663:
7186 case 0x10ec0665:
7187 case 0x10ec0670:
7188 case 0x10ec0671:
7189 case 0x10ec0672:
7190 val = alc_read_coef_idx(codec, 0xd); /* EAPD Ctrl */
7191 alc_write_coef_idx(codec, 0xd, val | (1<<14));
7192 break;
7193 }
7194}
David Henningsson6cb3b702010-09-09 08:51:44 +02007195
Takashi Iwai1d045db2011-07-07 18:23:21 +02007196/*
7197 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007198static int patch_alc662(struct hda_codec *codec)
7199{
7200 struct alc_spec *spec;
Takashi Iwai3de95172012-05-07 18:03:15 +02007201 int err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007202
Takashi Iwai3de95172012-05-07 18:03:15 +02007203 err = alc_alloc_spec(codec, 0x0b);
7204 if (err < 0)
7205 return err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007206
Takashi Iwai3de95172012-05-07 18:03:15 +02007207 spec = codec->spec;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02007208
Takashi Iwai53c334a2011-08-23 18:27:14 +02007209 /* handle multiple HPs as is */
7210 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
7211
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02007212 alc_fix_pll_init(codec, 0x20, 0x04, 15);
7213
Kailang Yang8663ff72012-06-29 09:35:52 +02007214 spec->init_hook = alc662_fill_coef;
7215 alc662_fill_coef(codec);
7216
Takashi Iwai8e5a0502012-06-21 15:49:33 +02007217 alc_pick_fixup(codec, alc662_fixup_models,
7218 alc662_fixup_tbl, alc662_fixups);
7219 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
7220
7221 alc_auto_parse_customize_define(codec);
7222
Takashi Iwai1bb7e432011-10-17 16:50:59 +02007223 if ((alc_get_coef0(codec) & (1 << 14)) &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007224 codec->bus->pci->subsystem_vendor == 0x1025 &&
7225 spec->cdefine.platform_type == 1) {
7226 if (alc_codec_rename(codec, "ALC272X") < 0)
7227 goto error;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02007228 }
Kailang Yang274693f2009-12-03 10:07:50 +01007229
Takashi Iwaib9c51062011-08-24 18:08:07 +02007230 /* automatic parse from the BIOS config */
7231 err = alc662_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007232 if (err < 0)
7233 goto error;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007234
Takashi Iwai3e6179b2011-07-08 16:55:13 +02007235 if (!spec->no_analog && has_cdefine_beep(codec)) {
7236 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007237 if (err < 0)
7238 goto error;
Kailang Yangda00c242010-03-19 11:23:45 +01007239 switch (codec->vendor_id) {
7240 case 0x10ec0662:
7241 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
7242 break;
7243 case 0x10ec0272:
7244 case 0x10ec0663:
7245 case 0x10ec0665:
7246 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
7247 break;
7248 case 0x10ec0273:
7249 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
7250 break;
7251 }
Kailang Yangcec27c82010-02-04 14:18:18 +01007252 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01007253
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007254 codec->patch_ops = alc_patch_ops;
Takashi Iwai1c716152011-04-07 10:37:16 +02007255 spec->shutup = alc_eapd_shutup;
David Henningsson6cb3b702010-09-09 08:51:44 +02007256
Takashi Iwai589876e2012-02-20 15:47:55 +01007257 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
7258
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007259 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007260
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007261 error:
7262 alc_free(codec);
7263 return err;
Kailang Yangb478b992011-05-18 11:51:15 +02007264}
7265
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007266/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007267 * ALC680 support
7268 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007269
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007270static int alc680_parse_auto_config(struct hda_codec *codec)
7271{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02007272 return alc_parse_auto_config(codec, NULL, NULL);
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007273}
7274
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007275/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007276 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007277static int patch_alc680(struct hda_codec *codec)
7278{
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007279 int err;
7280
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02007281 /* ALC680 has no aa-loopback mixer */
Takashi Iwai3de95172012-05-07 18:03:15 +02007282 err = alc_alloc_spec(codec, 0);
7283 if (err < 0)
7284 return err;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02007285
Takashi Iwai1ebec5f2011-08-15 13:21:48 +02007286 /* automatic parse from the BIOS config */
7287 err = alc680_parse_auto_config(codec);
7288 if (err < 0) {
7289 alc_free(codec);
7290 return err;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007291 }
7292
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007293 codec->patch_ops = alc_patch_ops;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007294
7295 return 0;
7296}
7297
7298/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007299 * patch entries
7300 */
Takashi Iwaia9111322011-05-02 11:30:18 +02007301static const struct hda_codec_preset snd_hda_preset_realtek[] = {
Kailang Yang296f0332011-05-18 11:52:36 +02007302 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07007303 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
Kailang Yangdf694da2005-12-05 19:42:22 +01007304 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
Kailang Yangf6a92242007-12-13 16:52:54 +01007305 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
Kailang Yanga361d842007-06-05 12:30:55 +02007306 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
Kailang Yangf6a92242007-12-13 16:52:54 +01007307 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01007308 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
Kailang Yang01afd412008-10-15 11:22:09 +02007309 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01007310 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
Kailang Yang296f0332011-05-18 11:52:36 +02007311 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
David Henningssonbefae822012-06-25 19:49:28 +02007312 { .id = 0x10ec0280, .name = "ALC280", .patch = patch_alc269 },
David Henningsson4e01ec62012-07-18 07:38:46 +02007313 { .id = 0x10ec0282, .name = "ALC282", .patch = patch_alc269 },
Kailang Yang7ff34ad2012-10-06 17:02:30 +02007314 { .id = 0x10ec0283, .name = "ALC283", .patch = patch_alc269 },
Kailang Yang065380f2013-01-10 10:25:48 +01007315 { .id = 0x10ec0284, .name = "ALC284", .patch = patch_alc269 },
Kailang Yang7ff34ad2012-10-06 17:02:30 +02007316 { .id = 0x10ec0290, .name = "ALC290", .patch = patch_alc269 },
David Henningssonaf02dde2012-11-21 08:57:58 +01007317 { .id = 0x10ec0292, .name = "ALC292", .patch = patch_alc269 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01007318 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007319 .patch = patch_alc861 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01007320 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
7321 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
7322 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007323 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
Takashi Iwai4953550a2009-06-30 15:28:30 +02007324 .patch = patch_alc882 },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02007325 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
7326 .patch = patch_alc662 },
David Henningssoncc667a72011-10-18 14:07:51 +02007327 { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
7328 .patch = patch_alc662 },
Kailang Yang6dda9f42008-05-27 12:05:31 +02007329 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
Kailang Yangcec27c82010-02-04 14:18:18 +01007330 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
Kailang Yang19a62822012-11-08 10:25:37 +01007331 { .id = 0x10ec0668, .name = "ALC668", .patch = patch_alc662 },
Kailang Yang6227cdc2010-02-25 08:36:52 +01007332 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
Kailang Yangd1eb57f2010-06-23 16:25:26 +02007333 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01007334 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07007335 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02007336 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
Clive Messer669faba2008-09-30 15:49:13 +02007337 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02007338 .patch = patch_alc882 },
Takashi Iwaicb308f92008-04-16 14:13:29 +02007339 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02007340 .patch = patch_alc882 },
Kailang Yangdf694da2005-12-05 19:42:22 +01007341 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007342 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
Kailang Yang44426082008-10-15 11:18:05 +02007343 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
Takashi Iwai4953550a2009-06-30 15:28:30 +02007344 .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007345 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02007346 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
Kailang Yang274693f2009-12-03 10:07:50 +01007347 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02007348 { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
Kailang Yang19a62822012-11-08 10:25:37 +01007349 { .id = 0x10ec0900, .name = "ALC1150", .patch = patch_alc882 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350 {} /* terminator */
7351};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01007352
7353MODULE_ALIAS("snd-hda-codec-id:10ec*");
7354
7355MODULE_LICENSE("GPL");
7356MODULE_DESCRIPTION("Realtek HD-audio codec");
7357
7358static struct hda_codec_preset_list realtek_list = {
7359 .preset = snd_hda_preset_realtek,
7360 .owner = THIS_MODULE,
7361};
7362
7363static int __init patch_realtek_init(void)
7364{
7365 return snd_hda_add_codec_preset(&realtek_list);
7366}
7367
7368static void __exit patch_realtek_exit(void)
7369{
7370 snd_hda_delete_codec_preset(&realtek_list);
7371}
7372
7373module_init(patch_realtek_init)
7374module_exit(patch_realtek_exit)