| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Universal Interface for Intel High Definition Audio Codec | 
|  | 3 | * | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4 | * HD audio interface patch for Realtek ALC codecs | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * | 
| Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 6 | * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw> | 
|  | 7 | *                    PeiSen Hou <pshou@realtek.com.tw> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | *                    Takashi Iwai <tiwai@suse.de> | 
| Jonathan Woithe | 7cf51e4 | 2006-02-09 12:01:26 +0100 | [diff] [blame] | 9 | *                    Jonathan Woithe <jwoithe@physics.adelaide.edu.au> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * | 
|  | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/init.h> | 
|  | 27 | #include <linux/delay.h> | 
|  | 28 | #include <linux/slab.h> | 
|  | 29 | #include <linux/pci.h> | 
| Paul Gortmaker | da155d5 | 2011-07-15 12:38:28 -0400 | [diff] [blame] | 30 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <sound/core.h> | 
| Kailang Yang | 9ad0e49 | 2010-09-14 23:22:00 +0200 | [diff] [blame] | 32 | #include <sound/jack.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include "hda_codec.h" | 
|  | 34 | #include "hda_local.h" | 
| Kusanagi Kouichi | 680cd53 | 2009-02-05 00:00:58 +0900 | [diff] [blame] | 35 | #include "hda_beep.h" | 
| Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 36 | #include "hda_jack.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 38 | /* unsol event tags */ | 
|  | 39 | #define ALC_FRONT_EVENT		0x01 | 
|  | 40 | #define ALC_DCVOL_EVENT		0x02 | 
|  | 41 | #define ALC_HP_EVENT		0x04 | 
|  | 42 | #define ALC_MIC_EVENT		0x08 | 
| Takashi Iwai | d4a86d8 | 2010-06-23 17:51:26 +0200 | [diff] [blame] | 43 |  | 
| Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 44 | /* for GPIO Poll */ | 
|  | 45 | #define GPIO_MASK	0x03 | 
|  | 46 |  | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 47 | /* extra amp-initialization sequence types */ | 
|  | 48 | enum { | 
|  | 49 | ALC_INIT_NONE, | 
|  | 50 | ALC_INIT_DEFAULT, | 
|  | 51 | ALC_INIT_GPIO1, | 
|  | 52 | ALC_INIT_GPIO2, | 
|  | 53 | ALC_INIT_GPIO3, | 
|  | 54 | }; | 
|  | 55 |  | 
| Kailang Yang | da00c24 | 2010-03-19 11:23:45 +0100 | [diff] [blame] | 56 | struct alc_customize_define { | 
|  | 57 | unsigned int  sku_cfg; | 
|  | 58 | unsigned char port_connectivity; | 
|  | 59 | unsigned char check_sum; | 
|  | 60 | unsigned char customization; | 
|  | 61 | unsigned char external_amp; | 
|  | 62 | unsigned int  enable_pcbeep:1; | 
|  | 63 | unsigned int  platform_type:1; | 
|  | 64 | unsigned int  swap:1; | 
|  | 65 | unsigned int  override:1; | 
| David Henningsson | 9062291 | 2010-10-14 14:50:18 +0200 | [diff] [blame] | 66 | unsigned int  fixup:1; /* Means that this sku is set by driver, not read from hw */ | 
| Kailang Yang | da00c24 | 2010-03-19 11:23:45 +0100 | [diff] [blame] | 67 | }; | 
|  | 68 |  | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 69 | struct alc_fixup; | 
|  | 70 |  | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 71 | struct 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 Iwai | d922b51 | 2011-04-28 12:18:53 +0200 | [diff] [blame] | 77 | enum { | 
| Takashi Iwai | 3b8510c | 2011-04-28 14:03:24 +0200 | [diff] [blame] | 78 | ALC_AUTOMUTE_PIN,	/* change the pin control */ | 
|  | 79 | ALC_AUTOMUTE_AMP,	/* mute/unmute the pin AMP */ | 
|  | 80 | ALC_AUTOMUTE_MIXER,	/* mute/unmute mixer widget AMP */ | 
| Takashi Iwai | d922b51 | 2011-04-28 12:18:53 +0200 | [diff] [blame] | 81 | }; | 
|  | 82 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | struct alc_spec { | 
|  | 84 | /* codec parameterization */ | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 85 | const struct snd_kcontrol_new *mixers[5];	/* mixer arrays */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | unsigned int num_mixers; | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 87 | const struct snd_kcontrol_new *cap_mixer;	/* capture mixer */ | 
| Takashi Iwai | 45bdd1c | 2009-02-06 16:11:25 +0100 | [diff] [blame] | 88 | unsigned int beep_amp;	/* beep amp value, set via set_beep_amp() */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 |  | 
| Takashi Iwai | 2d9c648 | 2009-10-13 08:06:55 +0200 | [diff] [blame] | 90 | const struct hda_verb *init_verbs[10];	/* initialization verbs | 
| Takashi Iwai | 9c7f852 | 2006-06-28 15:08:22 +0200 | [diff] [blame] | 91 | * don't forget NULL | 
|  | 92 | * termination! | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 93 | */ | 
|  | 94 | unsigned int num_init_verbs; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 |  | 
| Takashi Iwai | aa563af | 2009-07-31 10:05:11 +0200 | [diff] [blame] | 96 | char stream_name_analog[32];	/* analog PCM stream */ | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 97 | const struct hda_pcm_stream *stream_analog_playback; | 
|  | 98 | const struct hda_pcm_stream *stream_analog_capture; | 
|  | 99 | const struct hda_pcm_stream *stream_analog_alt_playback; | 
|  | 100 | const struct hda_pcm_stream *stream_analog_alt_capture; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 |  | 
| Takashi Iwai | aa563af | 2009-07-31 10:05:11 +0200 | [diff] [blame] | 102 | char stream_name_digital[32];	/* digital PCM stream */ | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 103 | const struct hda_pcm_stream *stream_digital_playback; | 
|  | 104 | const struct hda_pcm_stream *stream_digital_capture; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 |  | 
|  | 106 | /* playback */ | 
| Takashi Iwai | 16ded52 | 2005-06-10 19:58:24 +0200 | [diff] [blame] | 107 | struct hda_multi_out multiout;	/* playback set-up | 
|  | 108 | * max_channels, dacs must be set | 
|  | 109 | * dig_out_nid and hp_nid are optional | 
|  | 110 | */ | 
| Takashi Iwai | 6330079 | 2008-01-24 15:31:36 +0100 | [diff] [blame] | 111 | hda_nid_t alt_dac_nid; | 
| Takashi Iwai | 6a05ac4 | 2009-02-13 11:19:09 +0100 | [diff] [blame] | 112 | hda_nid_t slave_dig_outs[3];	/* optional - for auto-parsing */ | 
| Takashi Iwai | 8c44198 | 2009-01-20 18:30:20 +0100 | [diff] [blame] | 113 | int dig_out_type; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 |  | 
|  | 115 | /* capture */ | 
|  | 116 | unsigned int num_adc_nids; | 
| Takashi Iwai | 4c6d72d | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 117 | const hda_nid_t *adc_nids; | 
|  | 118 | const hda_nid_t *capsrc_nids; | 
| Takashi Iwai | 16ded52 | 2005-06-10 19:58:24 +0200 | [diff] [blame] | 119 | hda_nid_t dig_in_nid;		/* digital-in NID; optional */ | 
| Takashi Iwai | 1f0f4b8 | 2011-06-27 10:52:59 +0200 | [diff] [blame] | 120 | hda_nid_t mixer_nid;		/* analog-mixer NID */ | 
| Takashi Iwai | 527e4d7 | 2011-10-27 16:33:27 +0200 | [diff] [blame] | 121 | DECLARE_BITMAP(vol_ctls, 0x20 << 1); | 
|  | 122 | DECLARE_BITMAP(sw_ctls, 0x20 << 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 |  | 
| Takashi Iwai | 840b64c | 2010-07-13 22:49:01 +0200 | [diff] [blame] | 124 | /* capture setup for dynamic dual-adc switch */ | 
| Takashi Iwai | 840b64c | 2010-07-13 22:49:01 +0200 | [diff] [blame] | 125 | hda_nid_t cur_adc; | 
|  | 126 | unsigned int cur_adc_stream_tag; | 
|  | 127 | unsigned int cur_adc_format; | 
|  | 128 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | /* capture source */ | 
| Jonathan Woithe | a1e8d2d | 2006-03-28 12:47:09 +0200 | [diff] [blame] | 130 | unsigned int num_mux_defs; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | const struct hda_input_mux *input_mux; | 
|  | 132 | unsigned int cur_mux[3]; | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 133 | hda_nid_t ext_mic_pin; | 
|  | 134 | hda_nid_t dock_mic_pin; | 
|  | 135 | hda_nid_t int_mic_pin; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 |  | 
|  | 137 | /* channel model */ | 
| Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 138 | const struct hda_channel_mode *channel_mode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | int num_channel_mode; | 
| Takashi Iwai | 4e195a7 | 2006-07-28 14:47:34 +0200 | [diff] [blame] | 140 | int need_dac_fix; | 
| Hector Martin | 3b315d7 | 2009-06-02 10:54:19 +0200 | [diff] [blame] | 141 | int const_channel_count; | 
|  | 142 | int ext_channel_count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 |  | 
|  | 144 | /* PCM information */ | 
| Jonathan Woithe | 4c5186e | 2006-02-09 11:53:48 +0100 | [diff] [blame] | 145 | struct hda_pcm pcm_rec[3];	/* used in alc_build_pcms() */ | 
| Takashi Iwai | 41e41f1 | 2005-06-08 14:48:49 +0200 | [diff] [blame] | 146 |  | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 147 | /* dynamic controls, init_verbs and input_mux */ | 
|  | 148 | struct auto_pin_cfg autocfg; | 
| Kailang Yang | da00c24 | 2010-03-19 11:23:45 +0100 | [diff] [blame] | 149 | struct alc_customize_define cdefine; | 
| Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 150 | struct snd_array kctls; | 
| Herton Ronaldo Krzesinski | 61b9b9b | 2009-01-28 09:16:33 -0200 | [diff] [blame] | 151 | struct hda_input_mux private_imux[3]; | 
| Takashi Iwai | 41923e4 | 2007-10-22 17:20:10 +0200 | [diff] [blame] | 152 | hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS]; | 
| Takashi Iwai | 4953550 | 2009-06-30 15:28:30 +0200 | [diff] [blame] | 153 | hda_nid_t private_adc_nids[AUTO_CFG_MAX_OUTS]; | 
|  | 154 | hda_nid_t private_capsrc_nids[AUTO_CFG_MAX_OUTS]; | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 155 | hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS]; | 
|  | 156 | unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS]; | 
|  | 157 | int int_mic_idx, ext_mic_idx, dock_mic_idx; /* for auto-mic */ | 
| Takashi Iwai | 834be88 | 2006-03-01 14:16:17 +0100 | [diff] [blame] | 158 |  | 
| Takashi Iwai | ae6b813 | 2006-03-03 16:47:17 +0100 | [diff] [blame] | 159 | /* hooks */ | 
|  | 160 | void (*init_hook)(struct hda_codec *codec); | 
|  | 161 | void (*unsol_event)(struct hda_codec *codec, unsigned int res); | 
| Hector Martin | f5de24b | 2009-12-20 22:51:31 +0100 | [diff] [blame] | 162 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
| Daniel T Chen | c97259d | 2009-12-27 18:52:08 -0500 | [diff] [blame] | 163 | void (*power_hook)(struct hda_codec *codec); | 
| Hector Martin | f5de24b | 2009-12-20 22:51:31 +0100 | [diff] [blame] | 164 | #endif | 
| Takashi Iwai | 1c71615 | 2011-04-07 10:37:16 +0200 | [diff] [blame] | 165 | void (*shutup)(struct hda_codec *codec); | 
| Takashi Iwai | 2451991 | 2011-08-16 15:08:49 +0200 | [diff] [blame] | 166 | void (*automute_hook)(struct hda_codec *codec); | 
| Takashi Iwai | ae6b813 | 2006-03-03 16:47:17 +0100 | [diff] [blame] | 167 |  | 
| Takashi Iwai | 834be88 | 2006-03-01 14:16:17 +0100 | [diff] [blame] | 168 | /* for pin sensing */ | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 169 | unsigned int hp_jack_present:1; | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 170 | unsigned int line_jack_present:1; | 
| Takashi Iwai | e942796 | 2011-04-28 15:46:07 +0200 | [diff] [blame] | 171 | unsigned int master_mute:1; | 
| Takashi Iwai | 6c81949 | 2009-08-10 18:47:44 +0200 | [diff] [blame] | 172 | unsigned int auto_mic:1; | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 173 | unsigned int auto_mic_valid_imux:1;	/* valid imux for auto-mic */ | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 174 | unsigned int automute_speaker:1; /* automute speaker outputs */ | 
|  | 175 | unsigned int automute_lo:1; /* automute LO outputs */ | 
|  | 176 | unsigned int detect_hp:1;	/* Headphone detection enabled */ | 
|  | 177 | unsigned int detect_lo:1;	/* Line-out detection enabled */ | 
|  | 178 | unsigned int automute_speaker_possible:1; /* there are speakers and either LO or HP */ | 
|  | 179 | unsigned int automute_lo_possible:1;	  /* there are line outs and HP */ | 
| Takashi Iwai | 31150f2 | 2012-01-30 10:54:08 +0100 | [diff] [blame] | 180 | unsigned int keep_vref_in_automute:1; /* Don't clear VREF in automute */ | 
| Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 181 |  | 
| Takashi Iwai | e64f14f | 2009-01-20 18:32:55 +0100 | [diff] [blame] | 182 | /* other flags */ | 
|  | 183 | unsigned int no_analog :1; /* digital I/O only */ | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 184 | unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */ | 
| Takashi Iwai | 584c0c4 | 2011-03-10 12:51:11 +0100 | [diff] [blame] | 185 | unsigned int single_input_src:1; | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 186 | unsigned int vol_in_capsrc:1; /* use capsrc volume (ADC has no vol) */ | 
| Takashi Iwai | 53c334a | 2011-08-23 18:27:14 +0200 | [diff] [blame] | 187 | unsigned int parse_flags; /* passed to snd_hda_parse_pin_defcfg() */ | 
| Takashi Iwai | 24de183 | 2011-11-07 17:13:39 +0100 | [diff] [blame] | 188 | unsigned int shared_mic_hp:1; /* HP/Mic-in sharing */ | 
| Takashi Iwai | d922b51 | 2011-04-28 12:18:53 +0200 | [diff] [blame] | 189 |  | 
|  | 190 | /* auto-mute control */ | 
|  | 191 | int automute_mode; | 
| Takashi Iwai | 3b8510c | 2011-04-28 14:03:24 +0200 | [diff] [blame] | 192 | hda_nid_t automute_mixer_nid[AUTO_CFG_MAX_OUTS]; | 
| Takashi Iwai | d922b51 | 2011-04-28 12:18:53 +0200 | [diff] [blame] | 193 |  | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 194 | int init_amp; | 
| Takashi Iwai | d433a67 | 2010-09-20 15:11:54 +0200 | [diff] [blame] | 195 | int codec_variant;	/* flag for other variants */ | 
| Takashi Iwai | e64f14f | 2009-01-20 18:32:55 +0100 | [diff] [blame] | 196 |  | 
| Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 197 | /* for virtual master */ | 
|  | 198 | hda_nid_t vmaster_nid; | 
| Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 199 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 200 | struct hda_loopback_check loopback; | 
|  | 201 | #endif | 
| Takashi Iwai | 2c3bf9a | 2008-06-04 12:39:38 +0200 | [diff] [blame] | 202 |  | 
|  | 203 | /* for PLL fix */ | 
|  | 204 | hda_nid_t pll_nid; | 
|  | 205 | unsigned int pll_coef_idx, pll_coef_bit; | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 206 | unsigned int coef0; | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 207 |  | 
|  | 208 | /* fix-up list */ | 
|  | 209 | int fixup_id; | 
|  | 210 | const struct alc_fixup *fixup_list; | 
|  | 211 | const char *fixup_name; | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 212 |  | 
|  | 213 | /* multi-io */ | 
|  | 214 | int multi_ios; | 
|  | 215 | struct alc_multi_io multi_io[4]; | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 216 |  | 
|  | 217 | /* bind volumes */ | 
|  | 218 | struct snd_array bind_ctls; | 
| Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 219 | }; | 
|  | 220 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 221 | #define ALC_MODEL_AUTO		0	/* common for all chips */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 |  | 
| Takashi Iwai | 44c0240 | 2011-07-08 15:14:19 +0200 | [diff] [blame] | 223 | static bool check_amp_caps(struct hda_codec *codec, hda_nid_t nid, | 
|  | 224 | int dir, unsigned int bits) | 
|  | 225 | { | 
|  | 226 | if (!nid) | 
|  | 227 | return false; | 
|  | 228 | if (get_wcaps(codec, nid) & (1 << (dir + 1))) | 
|  | 229 | if (query_amp_caps(codec, nid, dir) & bits) | 
|  | 230 | return true; | 
|  | 231 | return false; | 
|  | 232 | } | 
|  | 233 |  | 
|  | 234 | #define nid_has_mute(codec, nid, dir) \ | 
|  | 235 | check_amp_caps(codec, nid, dir, AC_AMPCAP_MUTE) | 
|  | 236 | #define nid_has_volume(codec, nid, dir) \ | 
|  | 237 | check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS) | 
|  | 238 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | /* | 
|  | 240 | * input MUX handling | 
|  | 241 | */ | 
| Takashi Iwai | 9c7f852 | 2006-06-28 15:08:22 +0200 | [diff] [blame] | 242 | static int alc_mux_enum_info(struct snd_kcontrol *kcontrol, | 
|  | 243 | struct snd_ctl_elem_info *uinfo) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | { | 
|  | 245 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 
|  | 246 | struct alc_spec *spec = codec->spec; | 
| Jonathan Woithe | a1e8d2d | 2006-03-28 12:47:09 +0200 | [diff] [blame] | 247 | unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id); | 
|  | 248 | if (mux_idx >= spec->num_mux_defs) | 
|  | 249 | mux_idx = 0; | 
| Takashi Iwai | 5311114 | 2010-03-08 12:13:07 +0100 | [diff] [blame] | 250 | if (!spec->input_mux[mux_idx].num_items && mux_idx > 0) | 
|  | 251 | mux_idx = 0; | 
| Jonathan Woithe | a1e8d2d | 2006-03-28 12:47:09 +0200 | [diff] [blame] | 252 | return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | } | 
|  | 254 |  | 
| Takashi Iwai | 9c7f852 | 2006-06-28 15:08:22 +0200 | [diff] [blame] | 255 | static int alc_mux_enum_get(struct snd_kcontrol *kcontrol, | 
|  | 256 | struct snd_ctl_elem_value *ucontrol) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | { | 
|  | 258 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 
|  | 259 | struct alc_spec *spec = codec->spec; | 
|  | 260 | unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); | 
|  | 261 |  | 
|  | 262 | ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx]; | 
|  | 263 | return 0; | 
|  | 264 | } | 
|  | 265 |  | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 266 | static bool alc_dyn_adc_pcm_resetup(struct hda_codec *codec, int cur) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | { | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 268 | struct alc_spec *spec = codec->spec; | 
|  | 269 | hda_nid_t new_adc = spec->adc_nids[spec->dyn_adc_idx[cur]]; | 
|  | 270 |  | 
|  | 271 | if (spec->cur_adc && spec->cur_adc != new_adc) { | 
|  | 272 | /* stream is running, let's swap the current ADC */ | 
|  | 273 | __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1); | 
|  | 274 | spec->cur_adc = new_adc; | 
|  | 275 | snd_hda_codec_setup_stream(codec, new_adc, | 
|  | 276 | spec->cur_adc_stream_tag, 0, | 
|  | 277 | spec->cur_adc_format); | 
|  | 278 | return true; | 
|  | 279 | } | 
|  | 280 | return false; | 
|  | 281 | } | 
|  | 282 |  | 
| Takashi Iwai | 6107159 | 2011-11-23 07:52:15 +0100 | [diff] [blame] | 283 | static inline hda_nid_t get_capsrc(struct alc_spec *spec, int idx) | 
|  | 284 | { | 
|  | 285 | return spec->capsrc_nids ? | 
|  | 286 | spec->capsrc_nids[idx] : spec->adc_nids[idx]; | 
|  | 287 | } | 
|  | 288 |  | 
| Takashi Iwai | 24de183 | 2011-11-07 17:13:39 +0100 | [diff] [blame] | 289 | static void call_update_outputs(struct hda_codec *codec); | 
|  | 290 |  | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 291 | /* select the given imux item; either unmute exclusively or select the route */ | 
|  | 292 | static int alc_mux_select(struct hda_codec *codec, unsigned int adc_idx, | 
|  | 293 | unsigned int idx, bool force) | 
|  | 294 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | cd896c3 | 2008-11-18 12:36:33 +0100 | [diff] [blame] | 296 | const struct hda_input_mux *imux; | 
| Takashi Iwai | cd896c3 | 2008-11-18 12:36:33 +0100 | [diff] [blame] | 297 | unsigned int mux_idx; | 
| Takashi Iwai | dccc181 | 2011-11-08 07:52:19 +0100 | [diff] [blame] | 298 | int i, type, num_conns; | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 299 | hda_nid_t nid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 |  | 
| Takashi Iwai | cd896c3 | 2008-11-18 12:36:33 +0100 | [diff] [blame] | 301 | mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx; | 
|  | 302 | imux = &spec->input_mux[mux_idx]; | 
| Takashi Iwai | 5311114 | 2010-03-08 12:13:07 +0100 | [diff] [blame] | 303 | if (!imux->num_items && mux_idx > 0) | 
|  | 304 | imux = &spec->input_mux[0]; | 
| Takashi Iwai | cce4aa3 | 2011-12-02 15:29:12 +0100 | [diff] [blame] | 305 | if (!imux->num_items) | 
|  | 306 | return 0; | 
| Takashi Iwai | cd896c3 | 2008-11-18 12:36:33 +0100 | [diff] [blame] | 307 |  | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 308 | if (idx >= imux->num_items) | 
|  | 309 | idx = imux->num_items - 1; | 
|  | 310 | if (spec->cur_mux[adc_idx] == idx && !force) | 
|  | 311 | return 0; | 
|  | 312 | spec->cur_mux[adc_idx] = idx; | 
|  | 313 |  | 
| Takashi Iwai | 24de183 | 2011-11-07 17:13:39 +0100 | [diff] [blame] | 314 | /* for shared I/O, change the pin-control accordingly */ | 
|  | 315 | if (spec->shared_mic_hp) { | 
|  | 316 | /* NOTE: this assumes that there are only two inputs, the | 
|  | 317 | * first is the real internal mic and the second is HP jack. | 
|  | 318 | */ | 
|  | 319 | snd_hda_codec_write(codec, spec->autocfg.inputs[1].pin, 0, | 
|  | 320 | AC_VERB_SET_PIN_WIDGET_CONTROL, | 
|  | 321 | spec->cur_mux[adc_idx] ? | 
|  | 322 | PIN_VREF80 : PIN_HP); | 
|  | 323 | spec->automute_speaker = !spec->cur_mux[adc_idx]; | 
|  | 324 | call_update_outputs(codec); | 
|  | 325 | } | 
|  | 326 |  | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 327 | if (spec->dyn_adc_switch) { | 
|  | 328 | alc_dyn_adc_pcm_resetup(codec, idx); | 
|  | 329 | adc_idx = spec->dyn_adc_idx[idx]; | 
|  | 330 | } | 
|  | 331 |  | 
| Takashi Iwai | 6107159 | 2011-11-23 07:52:15 +0100 | [diff] [blame] | 332 | nid = get_capsrc(spec, adc_idx); | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 333 |  | 
|  | 334 | /* no selection? */ | 
| Takashi Iwai | dccc181 | 2011-11-08 07:52:19 +0100 | [diff] [blame] | 335 | num_conns = snd_hda_get_conn_list(codec, nid, NULL); | 
|  | 336 | if (num_conns <= 1) | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 337 | return 1; | 
|  | 338 |  | 
| Takashi Iwai | a22d543 | 2009-07-27 12:54:26 +0200 | [diff] [blame] | 339 | type = get_wcaps_type(get_wcaps(codec, nid)); | 
| Takashi Iwai | 0169b6b | 2009-06-22 10:50:19 +0200 | [diff] [blame] | 340 | if (type == AC_WID_AUD_MIX) { | 
| Takashi Iwai | 54cbc9a | 2008-10-31 15:24:04 +0100 | [diff] [blame] | 341 | /* Matrix-mixer style (e.g. ALC882) */ | 
| Takashi Iwai | dccc181 | 2011-11-08 07:52:19 +0100 | [diff] [blame] | 342 | int active = imux->items[idx].index; | 
|  | 343 | for (i = 0; i < num_conns; i++) { | 
|  | 344 | unsigned int v = (i == active) ? 0 : HDA_AMP_MUTE; | 
|  | 345 | snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, i, | 
| Takashi Iwai | 54cbc9a | 2008-10-31 15:24:04 +0100 | [diff] [blame] | 346 | HDA_AMP_MUTE, v); | 
|  | 347 | } | 
| Takashi Iwai | 54cbc9a | 2008-10-31 15:24:04 +0100 | [diff] [blame] | 348 | } else { | 
|  | 349 | /* MUX style (e.g. ALC880) */ | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 350 | snd_hda_codec_write_cache(codec, nid, 0, | 
|  | 351 | AC_VERB_SET_CONNECT_SEL, | 
|  | 352 | imux->items[idx].index); | 
| Takashi Iwai | 54cbc9a | 2008-10-31 15:24:04 +0100 | [diff] [blame] | 353 | } | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 354 | return 1; | 
|  | 355 | } | 
|  | 356 |  | 
|  | 357 | static int alc_mux_enum_put(struct snd_kcontrol *kcontrol, | 
|  | 358 | struct snd_ctl_elem_value *ucontrol) | 
|  | 359 | { | 
|  | 360 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 
|  | 361 | unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); | 
|  | 362 | return alc_mux_select(codec, adc_idx, | 
|  | 363 | ucontrol->value.enumerated.item[0], false); | 
| Takashi Iwai | 54cbc9a | 2008-10-31 15:24:04 +0100 | [diff] [blame] | 364 | } | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 365 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | /* | 
| Takashi Iwai | 23f0c04 | 2009-02-26 13:03:58 +0100 | [diff] [blame] | 367 | * set up the input pin config (depending on the given auto-pin type) | 
|  | 368 | */ | 
|  | 369 | static void alc_set_input_pin(struct hda_codec *codec, hda_nid_t nid, | 
|  | 370 | int auto_pin_type) | 
|  | 371 | { | 
|  | 372 | unsigned int val = PIN_IN; | 
|  | 373 |  | 
| Takashi Iwai | 86e2959 | 2010-09-09 14:50:17 +0200 | [diff] [blame] | 374 | if (auto_pin_type == AUTO_PIN_MIC) { | 
| Takashi Iwai | 23f0c04 | 2009-02-26 13:03:58 +0100 | [diff] [blame] | 375 | unsigned int pincap; | 
| Takashi Iwai | 954a29c | 2010-07-30 10:55:44 +0200 | [diff] [blame] | 376 | unsigned int oldval; | 
|  | 377 | oldval = snd_hda_codec_read(codec, nid, 0, | 
|  | 378 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); | 
| Takashi Iwai | 1327a32 | 2009-03-23 13:07:47 +0100 | [diff] [blame] | 379 | pincap = snd_hda_query_pin_caps(codec, nid); | 
| Takashi Iwai | 23f0c04 | 2009-02-26 13:03:58 +0100 | [diff] [blame] | 380 | pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT; | 
| Takashi Iwai | 954a29c | 2010-07-30 10:55:44 +0200 | [diff] [blame] | 381 | /* if the default pin setup is vref50, we give it priority */ | 
|  | 382 | if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50) | 
| Takashi Iwai | 23f0c04 | 2009-02-26 13:03:58 +0100 | [diff] [blame] | 383 | val = PIN_VREF80; | 
| Takashi Iwai | 461c6c3 | 2009-05-25 08:06:02 +0200 | [diff] [blame] | 384 | else if (pincap & AC_PINCAP_VREF_50) | 
|  | 385 | val = PIN_VREF50; | 
|  | 386 | else if (pincap & AC_PINCAP_VREF_100) | 
|  | 387 | val = PIN_VREF100; | 
|  | 388 | else if (pincap & AC_PINCAP_VREF_GRD) | 
|  | 389 | val = PIN_VREFGRD; | 
| Takashi Iwai | 23f0c04 | 2009-02-26 13:03:58 +0100 | [diff] [blame] | 390 | } | 
|  | 391 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, val); | 
|  | 392 | } | 
|  | 393 |  | 
|  | 394 | /* | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 395 | * Append the given mixer and verb elements for the later use | 
|  | 396 | * The mixer array is referred in build_controls(), and init_verbs are | 
|  | 397 | * called in init(). | 
| Takashi Iwai | d88897e | 2008-10-31 15:01:37 +0100 | [diff] [blame] | 398 | */ | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 399 | static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix) | 
| Takashi Iwai | d88897e | 2008-10-31 15:01:37 +0100 | [diff] [blame] | 400 | { | 
|  | 401 | if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers))) | 
|  | 402 | return; | 
|  | 403 | spec->mixers[spec->num_mixers++] = mix; | 
|  | 404 | } | 
|  | 405 |  | 
|  | 406 | static void add_verb(struct alc_spec *spec, const struct hda_verb *verb) | 
|  | 407 | { | 
|  | 408 | if (snd_BUG_ON(spec->num_init_verbs >= ARRAY_SIZE(spec->init_verbs))) | 
|  | 409 | return; | 
|  | 410 | spec->init_verbs[spec->num_init_verbs++] = verb; | 
|  | 411 | } | 
|  | 412 |  | 
|  | 413 | /* | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 414 | * GPIO setup tables, used in initialization | 
| Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 415 | */ | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 416 | /* Enable GPIO mask and set output */ | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 417 | static const struct hda_verb alc_gpio1_init_verbs[] = { | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 418 | {0x01, AC_VERB_SET_GPIO_MASK, 0x01}, | 
|  | 419 | {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01}, | 
|  | 420 | {0x01, AC_VERB_SET_GPIO_DATA, 0x01}, | 
|  | 421 | { } | 
|  | 422 | }; | 
|  | 423 |  | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 424 | static const struct hda_verb alc_gpio2_init_verbs[] = { | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 425 | {0x01, AC_VERB_SET_GPIO_MASK, 0x02}, | 
|  | 426 | {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02}, | 
|  | 427 | {0x01, AC_VERB_SET_GPIO_DATA, 0x02}, | 
|  | 428 | { } | 
|  | 429 | }; | 
|  | 430 |  | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 431 | static const struct hda_verb alc_gpio3_init_verbs[] = { | 
| Kailang Yang | bdd148a | 2007-05-08 15:19:08 +0200 | [diff] [blame] | 432 | {0x01, AC_VERB_SET_GPIO_MASK, 0x03}, | 
|  | 433 | {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03}, | 
|  | 434 | {0x01, AC_VERB_SET_GPIO_DATA, 0x03}, | 
|  | 435 | { } | 
|  | 436 | }; | 
|  | 437 |  | 
| Takashi Iwai | 2c3bf9a | 2008-06-04 12:39:38 +0200 | [diff] [blame] | 438 | /* | 
|  | 439 | * Fix hardware PLL issue | 
|  | 440 | * On some codecs, the analog PLL gating control must be off while | 
|  | 441 | * the default value is 1. | 
|  | 442 | */ | 
|  | 443 | static void alc_fix_pll(struct hda_codec *codec) | 
|  | 444 | { | 
|  | 445 | struct alc_spec *spec = codec->spec; | 
|  | 446 | unsigned int val; | 
|  | 447 |  | 
|  | 448 | if (!spec->pll_nid) | 
|  | 449 | return; | 
|  | 450 | snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX, | 
|  | 451 | spec->pll_coef_idx); | 
|  | 452 | val = snd_hda_codec_read(codec, spec->pll_nid, 0, | 
|  | 453 | AC_VERB_GET_PROC_COEF, 0); | 
|  | 454 | snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX, | 
|  | 455 | spec->pll_coef_idx); | 
|  | 456 | snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF, | 
|  | 457 | val & ~(1 << spec->pll_coef_bit)); | 
|  | 458 | } | 
|  | 459 |  | 
|  | 460 | static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid, | 
|  | 461 | unsigned int coef_idx, unsigned int coef_bit) | 
|  | 462 | { | 
|  | 463 | struct alc_spec *spec = codec->spec; | 
|  | 464 | spec->pll_nid = nid; | 
|  | 465 | spec->pll_coef_idx = coef_idx; | 
|  | 466 | spec->pll_coef_bit = coef_bit; | 
|  | 467 | alc_fix_pll(codec); | 
|  | 468 | } | 
|  | 469 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 470 | /* | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 471 | * Jack detections for HP auto-mute and mic-switch | 
|  | 472 | */ | 
|  | 473 |  | 
|  | 474 | /* check each pin in the given array; returns true if any of them is plugged */ | 
|  | 475 | static bool detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins) | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 476 | { | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 477 | int i, present = 0; | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 478 |  | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 479 | for (i = 0; i < num_pins; i++) { | 
|  | 480 | hda_nid_t nid = pins[i]; | 
| Takashi Iwai | bb35feb | 2010-09-08 15:30:49 +0200 | [diff] [blame] | 481 | if (!nid) | 
|  | 482 | break; | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 483 | present |= snd_hda_jack_detect(codec, nid); | 
| Takashi Iwai | bb35feb | 2010-09-08 15:30:49 +0200 | [diff] [blame] | 484 | } | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 485 | return present; | 
|  | 486 | } | 
| Takashi Iwai | bb35feb | 2010-09-08 15:30:49 +0200 | [diff] [blame] | 487 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 488 | /* standard HP/line-out auto-mute helper */ | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 489 | static void do_automute(struct hda_codec *codec, int num_pins, hda_nid_t *pins, | 
| Takashi Iwai | e942796 | 2011-04-28 15:46:07 +0200 | [diff] [blame] | 490 | bool mute, bool hp_out) | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 491 | { | 
|  | 492 | struct alc_spec *spec = codec->spec; | 
|  | 493 | unsigned int mute_bits = mute ? HDA_AMP_MUTE : 0; | 
| Takashi Iwai | e942796 | 2011-04-28 15:46:07 +0200 | [diff] [blame] | 494 | unsigned int pin_bits = mute ? 0 : (hp_out ? PIN_HP : PIN_OUT); | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 495 | int i; | 
|  | 496 |  | 
|  | 497 | for (i = 0; i < num_pins; i++) { | 
|  | 498 | hda_nid_t nid = pins[i]; | 
| Takashi Iwai | 31150f2 | 2012-01-30 10:54:08 +0100 | [diff] [blame] | 499 | unsigned int val; | 
| Takashi Iwai | a9fd4f3 | 2009-05-08 15:57:59 +0200 | [diff] [blame] | 500 | if (!nid) | 
|  | 501 | break; | 
| Takashi Iwai | 3b8510c | 2011-04-28 14:03:24 +0200 | [diff] [blame] | 502 | switch (spec->automute_mode) { | 
|  | 503 | case ALC_AUTOMUTE_PIN: | 
| Takashi Iwai | 31150f2 | 2012-01-30 10:54:08 +0100 | [diff] [blame] | 504 | /* don't reset VREF value in case it's controlling | 
|  | 505 | * the amp (see alc861_fixup_asus_amp_vref_0f()) | 
|  | 506 | */ | 
|  | 507 | if (spec->keep_vref_in_automute) { | 
|  | 508 | val = snd_hda_codec_read(codec, nid, 0, | 
|  | 509 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); | 
|  | 510 | val &= ~PIN_HP; | 
|  | 511 | } else | 
|  | 512 | val = 0; | 
|  | 513 | val |= pin_bits; | 
| Takashi Iwai | bb35feb | 2010-09-08 15:30:49 +0200 | [diff] [blame] | 514 | snd_hda_codec_write(codec, nid, 0, | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 515 | AC_VERB_SET_PIN_WIDGET_CONTROL, | 
| Takashi Iwai | 31150f2 | 2012-01-30 10:54:08 +0100 | [diff] [blame] | 516 | val); | 
| Takashi Iwai | 3b8510c | 2011-04-28 14:03:24 +0200 | [diff] [blame] | 517 | break; | 
|  | 518 | case ALC_AUTOMUTE_AMP: | 
| Takashi Iwai | bb35feb | 2010-09-08 15:30:49 +0200 | [diff] [blame] | 519 | snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0, | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 520 | HDA_AMP_MUTE, mute_bits); | 
| Takashi Iwai | 3b8510c | 2011-04-28 14:03:24 +0200 | [diff] [blame] | 521 | break; | 
|  | 522 | case ALC_AUTOMUTE_MIXER: | 
|  | 523 | nid = spec->automute_mixer_nid[i]; | 
|  | 524 | if (!nid) | 
|  | 525 | break; | 
|  | 526 | snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0, | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 527 | HDA_AMP_MUTE, mute_bits); | 
| Takashi Iwai | 3b8510c | 2011-04-28 14:03:24 +0200 | [diff] [blame] | 528 | snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 1, | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 529 | HDA_AMP_MUTE, mute_bits); | 
| Takashi Iwai | 3b8510c | 2011-04-28 14:03:24 +0200 | [diff] [blame] | 530 | break; | 
| Takashi Iwai | bb35feb | 2010-09-08 15:30:49 +0200 | [diff] [blame] | 531 | } | 
| Takashi Iwai | a9fd4f3 | 2009-05-08 15:57:59 +0200 | [diff] [blame] | 532 | } | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 533 | } | 
|  | 534 |  | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 535 | /* Toggle outputs muting */ | 
|  | 536 | static void update_outputs(struct hda_codec *codec) | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 537 | { | 
|  | 538 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 539 | int on; | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 540 |  | 
| Takashi Iwai | c0a2026 | 2011-06-10 15:28:15 +0200 | [diff] [blame] | 541 | /* Control HP pins/amps depending on master_mute state; | 
|  | 542 | * in general, HP pins/amps control should be enabled in all cases, | 
|  | 543 | * but currently set only for master_mute, just to be safe | 
|  | 544 | */ | 
| Takashi Iwai | 24de183 | 2011-11-07 17:13:39 +0100 | [diff] [blame] | 545 | if (!spec->shared_mic_hp) /* don't change HP-pin when shared with mic */ | 
|  | 546 | do_automute(codec, ARRAY_SIZE(spec->autocfg.hp_pins), | 
| Takashi Iwai | c0a2026 | 2011-06-10 15:28:15 +0200 | [diff] [blame] | 547 | spec->autocfg.hp_pins, spec->master_mute, true); | 
|  | 548 |  | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 549 | if (!spec->automute_speaker) | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 550 | on = 0; | 
|  | 551 | else | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 552 | on = spec->hp_jack_present | spec->line_jack_present; | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 553 | on |= spec->master_mute; | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 554 | do_automute(codec, ARRAY_SIZE(spec->autocfg.speaker_pins), | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 555 | spec->autocfg.speaker_pins, on, false); | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 556 |  | 
|  | 557 | /* toggle line-out mutes if needed, too */ | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 558 | /* if LO is a copy of either HP or Speaker, don't need to handle it */ | 
|  | 559 | if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0] || | 
|  | 560 | spec->autocfg.line_out_pins[0] == spec->autocfg.speaker_pins[0]) | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 561 | return; | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 562 | if (!spec->automute_lo) | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 563 | on = 0; | 
|  | 564 | else | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 565 | on = spec->hp_jack_present; | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 566 | on |= spec->master_mute; | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 567 | do_automute(codec, ARRAY_SIZE(spec->autocfg.line_out_pins), | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 568 | spec->autocfg.line_out_pins, on, false); | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 569 | } | 
|  | 570 |  | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 571 | static void call_update_outputs(struct hda_codec *codec) | 
| Takashi Iwai | 2451991 | 2011-08-16 15:08:49 +0200 | [diff] [blame] | 572 | { | 
|  | 573 | struct alc_spec *spec = codec->spec; | 
|  | 574 | if (spec->automute_hook) | 
|  | 575 | spec->automute_hook(codec); | 
|  | 576 | else | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 577 | update_outputs(codec); | 
| Takashi Iwai | 2451991 | 2011-08-16 15:08:49 +0200 | [diff] [blame] | 578 | } | 
|  | 579 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 580 | /* standard HP-automute helper */ | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 581 | static void alc_hp_automute(struct hda_codec *codec) | 
|  | 582 | { | 
|  | 583 | struct alc_spec *spec = codec->spec; | 
|  | 584 |  | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 585 | spec->hp_jack_present = | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 586 | detect_jacks(codec, ARRAY_SIZE(spec->autocfg.hp_pins), | 
|  | 587 | spec->autocfg.hp_pins); | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 588 | if (!spec->detect_hp || (!spec->automute_speaker && !spec->automute_lo)) | 
| Takashi Iwai | 3c715a9 | 2011-08-23 12:41:09 +0200 | [diff] [blame] | 589 | return; | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 590 | call_update_outputs(codec); | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 591 | } | 
|  | 592 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 593 | /* standard line-out-automute helper */ | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 594 | static void alc_line_automute(struct hda_codec *codec) | 
|  | 595 | { | 
|  | 596 | struct alc_spec *spec = codec->spec; | 
|  | 597 |  | 
| Takashi Iwai | e0d32e3 | 2011-09-26 15:19:55 +0200 | [diff] [blame] | 598 | /* check LO jack only when it's different from HP */ | 
|  | 599 | if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0]) | 
|  | 600 | return; | 
|  | 601 |  | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 602 | spec->line_jack_present = | 
|  | 603 | detect_jacks(codec, ARRAY_SIZE(spec->autocfg.line_out_pins), | 
|  | 604 | spec->autocfg.line_out_pins); | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 605 | if (!spec->automute_speaker || !spec->detect_lo) | 
| Takashi Iwai | 3c715a9 | 2011-08-23 12:41:09 +0200 | [diff] [blame] | 606 | return; | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 607 | call_update_outputs(codec); | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 608 | } | 
|  | 609 |  | 
| Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 610 | #define get_connection_index(codec, mux, nid) \ | 
|  | 611 | snd_hda_get_conn_index(codec, mux, nid, 0) | 
| Takashi Iwai | 6c81949 | 2009-08-10 18:47:44 +0200 | [diff] [blame] | 612 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 613 | /* standard mic auto-switch helper */ | 
| Kailang Yang | 7fb0d78 | 2008-10-15 11:12:35 +0200 | [diff] [blame] | 614 | static void alc_mic_automute(struct hda_codec *codec) | 
|  | 615 | { | 
|  | 616 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 617 | hda_nid_t *pins = spec->imux_pins; | 
| Kailang Yang | 7fb0d78 | 2008-10-15 11:12:35 +0200 | [diff] [blame] | 618 |  | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 619 | if (!spec->auto_mic || !spec->auto_mic_valid_imux) | 
| Takashi Iwai | 6c81949 | 2009-08-10 18:47:44 +0200 | [diff] [blame] | 620 | return; | 
|  | 621 | if (snd_BUG_ON(!spec->adc_nids)) | 
|  | 622 | return; | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 623 | if (snd_BUG_ON(spec->int_mic_idx < 0 || spec->ext_mic_idx < 0)) | 
| Takashi Iwai | 840b64c | 2010-07-13 22:49:01 +0200 | [diff] [blame] | 624 | return; | 
| Takashi Iwai | 840b64c | 2010-07-13 22:49:01 +0200 | [diff] [blame] | 625 |  | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 626 | if (snd_hda_jack_detect(codec, pins[spec->ext_mic_idx])) | 
|  | 627 | alc_mux_select(codec, 0, spec->ext_mic_idx, false); | 
|  | 628 | else if (spec->dock_mic_idx >= 0 && | 
|  | 629 | snd_hda_jack_detect(codec, pins[spec->dock_mic_idx])) | 
|  | 630 | alc_mux_select(codec, 0, spec->dock_mic_idx, false); | 
|  | 631 | else | 
|  | 632 | alc_mux_select(codec, 0, spec->int_mic_idx, false); | 
| Kailang Yang | 7fb0d78 | 2008-10-15 11:12:35 +0200 | [diff] [blame] | 633 | } | 
|  | 634 |  | 
| Takashi Iwai | f21d78e | 2012-01-19 12:10:29 +0100 | [diff] [blame] | 635 | /* handle the specified unsol action (ALC_XXX_EVENT) */ | 
|  | 636 | static void alc_exec_unsol_event(struct hda_codec *codec, int action) | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 637 | { | 
| Takashi Iwai | f21d78e | 2012-01-19 12:10:29 +0100 | [diff] [blame] | 638 | switch (action) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 639 | case ALC_HP_EVENT: | 
| Takashi Iwai | d922b51 | 2011-04-28 12:18:53 +0200 | [diff] [blame] | 640 | alc_hp_automute(codec); | 
| Takashi Iwai | a9fd4f3 | 2009-05-08 15:57:59 +0200 | [diff] [blame] | 641 | break; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 642 | case ALC_FRONT_EVENT: | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 643 | alc_line_automute(codec); | 
|  | 644 | break; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 645 | case ALC_MIC_EVENT: | 
| Kailang Yang | 7fb0d78 | 2008-10-15 11:12:35 +0200 | [diff] [blame] | 646 | alc_mic_automute(codec); | 
| Takashi Iwai | a9fd4f3 | 2009-05-08 15:57:59 +0200 | [diff] [blame] | 647 | break; | 
|  | 648 | } | 
| Takashi Iwai | 01a61e1 | 2011-10-28 00:03:22 +0200 | [diff] [blame] | 649 | snd_hda_jack_report_sync(codec); | 
| Kailang Yang | 7fb0d78 | 2008-10-15 11:12:35 +0200 | [diff] [blame] | 650 | } | 
|  | 651 |  | 
| Takashi Iwai | f21d78e | 2012-01-19 12:10:29 +0100 | [diff] [blame] | 652 | /* unsolicited event for HP jack sensing */ | 
|  | 653 | static void alc_sku_unsol_event(struct hda_codec *codec, unsigned int res) | 
|  | 654 | { | 
| Takashi Iwai | f21d78e | 2012-01-19 12:10:29 +0100 | [diff] [blame] | 655 | if (codec->vendor_id == 0x10ec0880) | 
|  | 656 | res >>= 28; | 
|  | 657 | else | 
|  | 658 | res >>= 26; | 
| Takashi Iwai | a730979 | 2012-01-19 15:03:48 +0100 | [diff] [blame] | 659 | res = snd_hda_jack_get_action(codec, res); | 
| Takashi Iwai | f21d78e | 2012-01-19 12:10:29 +0100 | [diff] [blame] | 660 | alc_exec_unsol_event(codec, res); | 
|  | 661 | } | 
|  | 662 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 663 | /* call init functions of standard auto-mute helpers */ | 
| Kailang Yang | 7fb0d78 | 2008-10-15 11:12:35 +0200 | [diff] [blame] | 664 | static void alc_inithook(struct hda_codec *codec) | 
|  | 665 | { | 
| Takashi Iwai | d922b51 | 2011-04-28 12:18:53 +0200 | [diff] [blame] | 666 | alc_hp_automute(codec); | 
| Takashi Iwai | e6a5e1b | 2011-04-28 14:41:52 +0200 | [diff] [blame] | 667 | alc_line_automute(codec); | 
| Kailang Yang | 7fb0d78 | 2008-10-15 11:12:35 +0200 | [diff] [blame] | 668 | alc_mic_automute(codec); | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 669 | } | 
|  | 670 |  | 
| Kailang Yang | f9423e7 | 2008-05-27 12:32:25 +0200 | [diff] [blame] | 671 | /* additional initialization for ALC888 variants */ | 
|  | 672 | static void alc888_coef_init(struct hda_codec *codec) | 
|  | 673 | { | 
|  | 674 | unsigned int tmp; | 
|  | 675 |  | 
|  | 676 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0); | 
|  | 677 | tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0); | 
|  | 678 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7); | 
| Takashi Iwai | 37db623 | 2009-03-05 09:40:16 +0100 | [diff] [blame] | 679 | if ((tmp & 0xf0) == 0x20) | 
| Kailang Yang | f9423e7 | 2008-05-27 12:32:25 +0200 | [diff] [blame] | 680 | /* alc888S-VC */ | 
|  | 681 | snd_hda_codec_read(codec, 0x20, 0, | 
|  | 682 | AC_VERB_SET_PROC_COEF, 0x830); | 
|  | 683 | else | 
|  | 684 | /* alc888-VB */ | 
|  | 685 | snd_hda_codec_read(codec, 0x20, 0, | 
|  | 686 | AC_VERB_SET_PROC_COEF, 0x3030); | 
|  | 687 | } | 
|  | 688 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 689 | /* additional initialization for ALC889 variants */ | 
| Jaroslav Kysela | 87a8c37 | 2009-07-23 10:58:29 +0200 | [diff] [blame] | 690 | static void alc889_coef_init(struct hda_codec *codec) | 
|  | 691 | { | 
|  | 692 | unsigned int tmp; | 
|  | 693 |  | 
|  | 694 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7); | 
|  | 695 | tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0); | 
|  | 696 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7); | 
|  | 697 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010); | 
|  | 698 | } | 
|  | 699 |  | 
| Takashi Iwai | 3fb4a50 | 2010-01-19 15:46:37 +0100 | [diff] [blame] | 700 | /* turn on/off EAPD control (only if available) */ | 
|  | 701 | static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on) | 
|  | 702 | { | 
|  | 703 | if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN) | 
|  | 704 | return; | 
|  | 705 | if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD) | 
|  | 706 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE, | 
|  | 707 | on ? 2 : 0); | 
|  | 708 | } | 
|  | 709 |  | 
| Takashi Iwai | 691f1fc | 2011-04-07 10:31:43 +0200 | [diff] [blame] | 710 | /* turn on/off EAPD controls of the codec */ | 
|  | 711 | static void alc_auto_setup_eapd(struct hda_codec *codec, bool on) | 
|  | 712 | { | 
|  | 713 | /* We currently only handle front, HP */ | 
| Takashi Iwai | 39fa84e | 2011-06-27 15:28:57 +0200 | [diff] [blame] | 714 | static hda_nid_t pins[] = { | 
|  | 715 | 0x0f, 0x10, 0x14, 0x15, 0 | 
|  | 716 | }; | 
|  | 717 | hda_nid_t *p; | 
|  | 718 | for (p = pins; *p; p++) | 
|  | 719 | set_eapd(codec, *p, on); | 
| Takashi Iwai | 691f1fc | 2011-04-07 10:31:43 +0200 | [diff] [blame] | 720 | } | 
|  | 721 |  | 
| Takashi Iwai | 1c71615 | 2011-04-07 10:37:16 +0200 | [diff] [blame] | 722 | /* generic shutup callback; | 
|  | 723 | * just turning off EPAD and a little pause for avoiding pop-noise | 
|  | 724 | */ | 
|  | 725 | static void alc_eapd_shutup(struct hda_codec *codec) | 
|  | 726 | { | 
|  | 727 | alc_auto_setup_eapd(codec, false); | 
|  | 728 | msleep(200); | 
|  | 729 | } | 
|  | 730 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 731 | /* generic EAPD initialization */ | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 732 | static void alc_auto_init_amp(struct hda_codec *codec, int type) | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 733 | { | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 734 | unsigned int tmp; | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 735 |  | 
| Takashi Iwai | 39fa84e | 2011-06-27 15:28:57 +0200 | [diff] [blame] | 736 | alc_auto_setup_eapd(codec, true); | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 737 | switch (type) { | 
|  | 738 | case ALC_INIT_GPIO1: | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 739 | snd_hda_sequence_write(codec, alc_gpio1_init_verbs); | 
|  | 740 | break; | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 741 | case ALC_INIT_GPIO2: | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 742 | snd_hda_sequence_write(codec, alc_gpio2_init_verbs); | 
|  | 743 | break; | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 744 | case ALC_INIT_GPIO3: | 
| Kailang Yang | bdd148a | 2007-05-08 15:19:08 +0200 | [diff] [blame] | 745 | snd_hda_sequence_write(codec, alc_gpio3_init_verbs); | 
|  | 746 | break; | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 747 | case ALC_INIT_DEFAULT: | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 748 | switch (codec->vendor_id) { | 
|  | 749 | case 0x10ec0260: | 
|  | 750 | snd_hda_codec_write(codec, 0x1a, 0, | 
|  | 751 | AC_VERB_SET_COEF_INDEX, 7); | 
|  | 752 | tmp = snd_hda_codec_read(codec, 0x1a, 0, | 
|  | 753 | AC_VERB_GET_PROC_COEF, 0); | 
|  | 754 | snd_hda_codec_write(codec, 0x1a, 0, | 
|  | 755 | AC_VERB_SET_COEF_INDEX, 7); | 
|  | 756 | snd_hda_codec_write(codec, 0x1a, 0, | 
|  | 757 | AC_VERB_SET_PROC_COEF, | 
|  | 758 | tmp | 0x2010); | 
|  | 759 | break; | 
|  | 760 | case 0x10ec0262: | 
|  | 761 | case 0x10ec0880: | 
|  | 762 | case 0x10ec0882: | 
|  | 763 | case 0x10ec0883: | 
|  | 764 | case 0x10ec0885: | 
| Takashi Iwai | 4a5a4c5 | 2009-02-06 12:46:59 +0100 | [diff] [blame] | 765 | case 0x10ec0887: | 
| Takashi Iwai | 20b67dd | 2011-03-23 22:54:32 +0100 | [diff] [blame] | 766 | /*case 0x10ec0889:*/ /* this causes an SPDIF problem */ | 
| Jaroslav Kysela | 87a8c37 | 2009-07-23 10:58:29 +0200 | [diff] [blame] | 767 | alc889_coef_init(codec); | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 768 | break; | 
| Kailang Yang | f9423e7 | 2008-05-27 12:32:25 +0200 | [diff] [blame] | 769 | case 0x10ec0888: | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 770 | alc888_coef_init(codec); | 
| Kailang Yang | f9423e7 | 2008-05-27 12:32:25 +0200 | [diff] [blame] | 771 | break; | 
| Takashi Iwai | 0aea778 | 2010-01-25 15:44:11 +0100 | [diff] [blame] | 772 | #if 0 /* XXX: This may cause the silent output on speaker on some machines */ | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 773 | case 0x10ec0267: | 
|  | 774 | case 0x10ec0268: | 
|  | 775 | snd_hda_codec_write(codec, 0x20, 0, | 
|  | 776 | AC_VERB_SET_COEF_INDEX, 7); | 
|  | 777 | tmp = snd_hda_codec_read(codec, 0x20, 0, | 
|  | 778 | AC_VERB_GET_PROC_COEF, 0); | 
|  | 779 | snd_hda_codec_write(codec, 0x20, 0, | 
| Kailang Yang | ea1fb29 | 2008-08-26 12:58:38 +0200 | [diff] [blame] | 780 | AC_VERB_SET_COEF_INDEX, 7); | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 781 | snd_hda_codec_write(codec, 0x20, 0, | 
|  | 782 | AC_VERB_SET_PROC_COEF, | 
|  | 783 | tmp | 0x3000); | 
|  | 784 | break; | 
| Takashi Iwai | 0aea778 | 2010-01-25 15:44:11 +0100 | [diff] [blame] | 785 | #endif /* XXX */ | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 786 | } | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 787 | break; | 
|  | 788 | } | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 789 | } | 
| Kailang Yang | ea1fb29 | 2008-08-26 12:58:38 +0200 | [diff] [blame] | 790 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 791 | /* | 
|  | 792 | * Auto-Mute mode mixer enum support | 
|  | 793 | */ | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 794 | static int alc_automute_mode_info(struct snd_kcontrol *kcontrol, | 
|  | 795 | struct snd_ctl_elem_info *uinfo) | 
|  | 796 | { | 
| Takashi Iwai | ae8a60a | 2011-04-28 18:09:52 +0200 | [diff] [blame] | 797 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 
|  | 798 | struct alc_spec *spec = codec->spec; | 
|  | 799 | static const char * const texts2[] = { | 
|  | 800 | "Disabled", "Enabled" | 
|  | 801 | }; | 
|  | 802 | static const char * const texts3[] = { | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 803 | "Disabled", "Speaker Only", "Line-Out+Speaker" | 
|  | 804 | }; | 
| Takashi Iwai | ae8a60a | 2011-04-28 18:09:52 +0200 | [diff] [blame] | 805 | const char * const *texts; | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 806 |  | 
|  | 807 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; | 
|  | 808 | uinfo->count = 1; | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 809 | if (spec->automute_speaker_possible && spec->automute_lo_possible) { | 
| Takashi Iwai | ae8a60a | 2011-04-28 18:09:52 +0200 | [diff] [blame] | 810 | uinfo->value.enumerated.items = 3; | 
|  | 811 | texts = texts3; | 
|  | 812 | } else { | 
|  | 813 | uinfo->value.enumerated.items = 2; | 
|  | 814 | texts = texts2; | 
|  | 815 | } | 
|  | 816 | if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) | 
|  | 817 | uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1; | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 818 | strcpy(uinfo->value.enumerated.name, | 
|  | 819 | texts[uinfo->value.enumerated.item]); | 
|  | 820 | return 0; | 
|  | 821 | } | 
|  | 822 |  | 
|  | 823 | static int alc_automute_mode_get(struct snd_kcontrol *kcontrol, | 
|  | 824 | struct snd_ctl_elem_value *ucontrol) | 
|  | 825 | { | 
|  | 826 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 
|  | 827 | struct alc_spec *spec = codec->spec; | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 828 | unsigned int val = 0; | 
|  | 829 | if (spec->automute_speaker) | 
|  | 830 | val++; | 
|  | 831 | if (spec->automute_lo) | 
|  | 832 | val++; | 
|  | 833 |  | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 834 | ucontrol->value.enumerated.item[0] = val; | 
|  | 835 | return 0; | 
|  | 836 | } | 
|  | 837 |  | 
|  | 838 | static int alc_automute_mode_put(struct snd_kcontrol *kcontrol, | 
|  | 839 | struct snd_ctl_elem_value *ucontrol) | 
|  | 840 | { | 
|  | 841 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 
|  | 842 | struct alc_spec *spec = codec->spec; | 
|  | 843 |  | 
|  | 844 | switch (ucontrol->value.enumerated.item[0]) { | 
|  | 845 | case 0: | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 846 | if (!spec->automute_speaker && !spec->automute_lo) | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 847 | return 0; | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 848 | spec->automute_speaker = 0; | 
|  | 849 | spec->automute_lo = 0; | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 850 | break; | 
|  | 851 | case 1: | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 852 | if (spec->automute_speaker_possible) { | 
|  | 853 | if (!spec->automute_lo && spec->automute_speaker) | 
|  | 854 | return 0; | 
|  | 855 | spec->automute_speaker = 1; | 
|  | 856 | spec->automute_lo = 0; | 
|  | 857 | } else if (spec->automute_lo_possible) { | 
|  | 858 | if (spec->automute_lo) | 
|  | 859 | return 0; | 
|  | 860 | spec->automute_lo = 1; | 
|  | 861 | } else | 
|  | 862 | return -EINVAL; | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 863 | break; | 
|  | 864 | case 2: | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 865 | if (!spec->automute_lo_possible || !spec->automute_speaker_possible) | 
| Takashi Iwai | ae8a60a | 2011-04-28 18:09:52 +0200 | [diff] [blame] | 866 | return -EINVAL; | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 867 | if (spec->automute_speaker && spec->automute_lo) | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 868 | return 0; | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 869 | spec->automute_speaker = 1; | 
|  | 870 | spec->automute_lo = 1; | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 871 | break; | 
|  | 872 | default: | 
|  | 873 | return -EINVAL; | 
|  | 874 | } | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 875 | call_update_outputs(codec); | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 876 | return 1; | 
|  | 877 | } | 
|  | 878 |  | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 879 | static const struct snd_kcontrol_new alc_automute_mode_enum = { | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 880 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
|  | 881 | .name = "Auto-Mute Mode", | 
|  | 882 | .info = alc_automute_mode_info, | 
|  | 883 | .get = alc_automute_mode_get, | 
|  | 884 | .put = alc_automute_mode_put, | 
|  | 885 | }; | 
|  | 886 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 887 | static struct snd_kcontrol_new *alc_kcontrol_new(struct alc_spec *spec) | 
|  | 888 | { | 
|  | 889 | snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32); | 
|  | 890 | return snd_array_new(&spec->kctls); | 
|  | 891 | } | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 892 |  | 
|  | 893 | static int alc_add_automute_mode_enum(struct hda_codec *codec) | 
|  | 894 | { | 
|  | 895 | struct alc_spec *spec = codec->spec; | 
|  | 896 | struct snd_kcontrol_new *knew; | 
|  | 897 |  | 
|  | 898 | knew = alc_kcontrol_new(spec); | 
|  | 899 | if (!knew) | 
|  | 900 | return -ENOMEM; | 
|  | 901 | *knew = alc_automute_mode_enum; | 
|  | 902 | knew->name = kstrdup("Auto-Mute Mode", GFP_KERNEL); | 
|  | 903 | if (!knew->name) | 
|  | 904 | return -ENOMEM; | 
|  | 905 | return 0; | 
|  | 906 | } | 
|  | 907 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 908 | /* | 
|  | 909 | * Check the availability of HP/line-out auto-mute; | 
|  | 910 | * Set up appropriately if really supported | 
|  | 911 | */ | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 912 | static void alc_init_automute(struct hda_codec *codec) | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 913 | { | 
|  | 914 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | bb35feb | 2010-09-08 15:30:49 +0200 | [diff] [blame] | 915 | struct auto_pin_cfg *cfg = &spec->autocfg; | 
| Takashi Iwai | 1daf5f4 | 2011-04-28 17:57:46 +0200 | [diff] [blame] | 916 | int present = 0; | 
| Takashi Iwai | bb35feb | 2010-09-08 15:30:49 +0200 | [diff] [blame] | 917 | int i; | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 918 |  | 
| Takashi Iwai | 1daf5f4 | 2011-04-28 17:57:46 +0200 | [diff] [blame] | 919 | if (cfg->hp_pins[0]) | 
|  | 920 | present++; | 
|  | 921 | if (cfg->line_out_pins[0]) | 
|  | 922 | present++; | 
|  | 923 | if (cfg->speaker_pins[0]) | 
|  | 924 | present++; | 
|  | 925 | if (present < 2) /* need two different output types */ | 
|  | 926 | return; | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 927 |  | 
| Takashi Iwai | c48a8fb | 2011-07-27 16:41:57 +0200 | [diff] [blame] | 928 | if (!cfg->speaker_pins[0] && | 
|  | 929 | cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) { | 
| Takashi Iwai | bb35feb | 2010-09-08 15:30:49 +0200 | [diff] [blame] | 930 | memcpy(cfg->speaker_pins, cfg->line_out_pins, | 
|  | 931 | sizeof(cfg->speaker_pins)); | 
|  | 932 | cfg->speaker_outs = cfg->line_outs; | 
|  | 933 | } | 
|  | 934 |  | 
| Takashi Iwai | c48a8fb | 2011-07-27 16:41:57 +0200 | [diff] [blame] | 935 | if (!cfg->hp_pins[0] && | 
|  | 936 | cfg->line_out_type == AUTO_PIN_HP_OUT) { | 
| Takashi Iwai | bb35feb | 2010-09-08 15:30:49 +0200 | [diff] [blame] | 937 | memcpy(cfg->hp_pins, cfg->line_out_pins, | 
|  | 938 | sizeof(cfg->hp_pins)); | 
|  | 939 | cfg->hp_outs = cfg->line_outs; | 
|  | 940 | } | 
|  | 941 |  | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 942 | spec->automute_mode = ALC_AUTOMUTE_PIN; | 
|  | 943 |  | 
| Takashi Iwai | bb35feb | 2010-09-08 15:30:49 +0200 | [diff] [blame] | 944 | for (i = 0; i < cfg->hp_outs; i++) { | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 945 | hda_nid_t nid = cfg->hp_pins[i]; | 
| Takashi Iwai | 06dec22 | 2011-05-17 10:00:16 +0200 | [diff] [blame] | 946 | if (!is_jack_detectable(codec, nid)) | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 947 | continue; | 
| Takashi Iwai | bb35feb | 2010-09-08 15:30:49 +0200 | [diff] [blame] | 948 | snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n", | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 949 | nid); | 
| Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 950 | snd_hda_jack_detect_enable(codec, nid, ALC_HP_EVENT); | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 951 | spec->detect_hp = 1; | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 952 | } | 
| Takashi Iwai | ae8a60a | 2011-04-28 18:09:52 +0200 | [diff] [blame] | 953 |  | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 954 | if (cfg->line_out_type == AUTO_PIN_LINE_OUT && cfg->line_outs) { | 
|  | 955 | if (cfg->speaker_outs) | 
|  | 956 | for (i = 0; i < cfg->line_outs; i++) { | 
|  | 957 | hda_nid_t nid = cfg->line_out_pins[i]; | 
|  | 958 | if (!is_jack_detectable(codec, nid)) | 
|  | 959 | continue; | 
|  | 960 | snd_printdd("realtek: Enable Line-Out " | 
|  | 961 | "auto-muting on NID 0x%x\n", nid); | 
| Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 962 | snd_hda_jack_detect_enable(codec, nid, | 
|  | 963 | ALC_FRONT_EVENT); | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 964 | spec->detect_lo = 1; | 
|  | 965 | } | 
|  | 966 | spec->automute_lo_possible = spec->detect_hp; | 
|  | 967 | } | 
|  | 968 |  | 
|  | 969 | spec->automute_speaker_possible = cfg->speaker_outs && | 
|  | 970 | (spec->detect_hp || spec->detect_lo); | 
|  | 971 |  | 
|  | 972 | spec->automute_lo = spec->automute_lo_possible; | 
|  | 973 | spec->automute_speaker = spec->automute_speaker_possible; | 
|  | 974 |  | 
|  | 975 | if (spec->automute_speaker_possible || spec->automute_lo_possible) { | 
| Takashi Iwai | ae8a60a | 2011-04-28 18:09:52 +0200 | [diff] [blame] | 976 | /* create a control for automute mode */ | 
|  | 977 | alc_add_automute_mode_enum(codec); | 
|  | 978 | spec->unsol_event = alc_sku_unsol_event; | 
|  | 979 | } | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 980 | } | 
|  | 981 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 982 | /* return the position of NID in the list, or -1 if not found */ | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 983 | static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums) | 
|  | 984 | { | 
|  | 985 | int i; | 
|  | 986 | for (i = 0; i < nums; i++) | 
|  | 987 | if (list[i] == nid) | 
|  | 988 | return i; | 
|  | 989 | return -1; | 
|  | 990 | } | 
|  | 991 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 992 | /* check whether dynamic ADC-switching is available */ | 
|  | 993 | static bool alc_check_dyn_adc_switch(struct hda_codec *codec) | 
|  | 994 | { | 
|  | 995 | struct alc_spec *spec = codec->spec; | 
|  | 996 | struct hda_input_mux *imux = &spec->private_imux[0]; | 
|  | 997 | int i, n, idx; | 
|  | 998 | hda_nid_t cap, pin; | 
|  | 999 |  | 
|  | 1000 | if (imux != spec->input_mux) /* no dynamic imux? */ | 
|  | 1001 | return false; | 
|  | 1002 |  | 
|  | 1003 | for (n = 0; n < spec->num_adc_nids; n++) { | 
|  | 1004 | cap = spec->private_capsrc_nids[n]; | 
|  | 1005 | for (i = 0; i < imux->num_items; i++) { | 
|  | 1006 | pin = spec->imux_pins[i]; | 
|  | 1007 | if (!pin) | 
|  | 1008 | return false; | 
|  | 1009 | if (get_connection_index(codec, cap, pin) < 0) | 
|  | 1010 | break; | 
|  | 1011 | } | 
|  | 1012 | if (i >= imux->num_items) | 
| Takashi Iwai | 268ff6f | 2011-07-08 14:37:35 +0200 | [diff] [blame] | 1013 | return true; /* no ADC-switch is needed */ | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 1014 | } | 
|  | 1015 |  | 
|  | 1016 | for (i = 0; i < imux->num_items; i++) { | 
|  | 1017 | pin = spec->imux_pins[i]; | 
|  | 1018 | for (n = 0; n < spec->num_adc_nids; n++) { | 
|  | 1019 | cap = spec->private_capsrc_nids[n]; | 
|  | 1020 | idx = get_connection_index(codec, cap, pin); | 
|  | 1021 | if (idx >= 0) { | 
|  | 1022 | imux->items[i].index = idx; | 
|  | 1023 | spec->dyn_adc_idx[i] = n; | 
|  | 1024 | break; | 
|  | 1025 | } | 
|  | 1026 | } | 
|  | 1027 | } | 
|  | 1028 |  | 
|  | 1029 | snd_printdd("realtek: enabling ADC switching\n"); | 
|  | 1030 | spec->dyn_adc_switch = 1; | 
|  | 1031 | return true; | 
|  | 1032 | } | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 1033 |  | 
|  | 1034 | /* rebuild imux for matching with the given auto-mic pins (if not yet) */ | 
|  | 1035 | static bool alc_rebuild_imux_for_auto_mic(struct hda_codec *codec) | 
|  | 1036 | { | 
|  | 1037 | struct alc_spec *spec = codec->spec; | 
|  | 1038 | struct hda_input_mux *imux; | 
|  | 1039 | static char * const texts[3] = { | 
|  | 1040 | "Mic", "Internal Mic", "Dock Mic" | 
|  | 1041 | }; | 
|  | 1042 | int i; | 
|  | 1043 |  | 
|  | 1044 | if (!spec->auto_mic) | 
|  | 1045 | return false; | 
|  | 1046 | imux = &spec->private_imux[0]; | 
|  | 1047 | if (spec->input_mux == imux) | 
|  | 1048 | return true; | 
|  | 1049 | spec->imux_pins[0] = spec->ext_mic_pin; | 
|  | 1050 | spec->imux_pins[1] = spec->int_mic_pin; | 
|  | 1051 | spec->imux_pins[2] = spec->dock_mic_pin; | 
|  | 1052 | for (i = 0; i < 3; i++) { | 
|  | 1053 | strcpy(imux->items[i].label, texts[i]); | 
| Takashi Iwai | 6759dc3 | 2011-11-23 07:38:59 +0100 | [diff] [blame] | 1054 | if (spec->imux_pins[i]) { | 
|  | 1055 | hda_nid_t pin = spec->imux_pins[i]; | 
|  | 1056 | int c; | 
|  | 1057 | for (c = 0; c < spec->num_adc_nids; c++) { | 
| Takashi Iwai | 6107159 | 2011-11-23 07:52:15 +0100 | [diff] [blame] | 1058 | hda_nid_t cap = get_capsrc(spec, c); | 
| Takashi Iwai | 6759dc3 | 2011-11-23 07:38:59 +0100 | [diff] [blame] | 1059 | int idx = get_connection_index(codec, cap, pin); | 
|  | 1060 | if (idx >= 0) { | 
|  | 1061 | imux->items[i].index = idx; | 
|  | 1062 | break; | 
|  | 1063 | } | 
|  | 1064 | } | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 1065 | imux->num_items = i + 1; | 
| Takashi Iwai | 6759dc3 | 2011-11-23 07:38:59 +0100 | [diff] [blame] | 1066 | } | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 1067 | } | 
|  | 1068 | spec->num_mux_defs = 1; | 
|  | 1069 | spec->input_mux = imux; | 
|  | 1070 | return true; | 
|  | 1071 | } | 
|  | 1072 |  | 
|  | 1073 | /* check whether all auto-mic pins are valid; setup indices if OK */ | 
|  | 1074 | static bool alc_auto_mic_check_imux(struct hda_codec *codec) | 
|  | 1075 | { | 
|  | 1076 | struct alc_spec *spec = codec->spec; | 
|  | 1077 | const struct hda_input_mux *imux; | 
|  | 1078 |  | 
|  | 1079 | if (!spec->auto_mic) | 
|  | 1080 | return false; | 
|  | 1081 | if (spec->auto_mic_valid_imux) | 
|  | 1082 | return true; /* already checked */ | 
|  | 1083 |  | 
|  | 1084 | /* fill up imux indices */ | 
|  | 1085 | if (!alc_check_dyn_adc_switch(codec)) { | 
|  | 1086 | spec->auto_mic = 0; | 
|  | 1087 | return false; | 
|  | 1088 | } | 
|  | 1089 |  | 
|  | 1090 | imux = spec->input_mux; | 
|  | 1091 | spec->ext_mic_idx = find_idx_in_nid_list(spec->ext_mic_pin, | 
|  | 1092 | spec->imux_pins, imux->num_items); | 
|  | 1093 | spec->int_mic_idx = find_idx_in_nid_list(spec->int_mic_pin, | 
|  | 1094 | spec->imux_pins, imux->num_items); | 
|  | 1095 | spec->dock_mic_idx = find_idx_in_nid_list(spec->dock_mic_pin, | 
|  | 1096 | spec->imux_pins, imux->num_items); | 
|  | 1097 | if (spec->ext_mic_idx < 0 || spec->int_mic_idx < 0) { | 
|  | 1098 | spec->auto_mic = 0; | 
|  | 1099 | return false; /* no corresponding imux */ | 
|  | 1100 | } | 
|  | 1101 |  | 
| Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 1102 | snd_hda_jack_detect_enable(codec, spec->ext_mic_pin, ALC_MIC_EVENT); | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 1103 | if (spec->dock_mic_pin) | 
| Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 1104 | snd_hda_jack_detect_enable(codec, spec->dock_mic_pin, | 
|  | 1105 | ALC_MIC_EVENT); | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 1106 |  | 
|  | 1107 | spec->auto_mic_valid_imux = 1; | 
|  | 1108 | spec->auto_mic = 1; | 
|  | 1109 | return true; | 
|  | 1110 | } | 
|  | 1111 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 1112 | /* | 
|  | 1113 | * Check the availability of auto-mic switch; | 
|  | 1114 | * Set up if really supported | 
|  | 1115 | */ | 
| Takashi Iwai | 6c81949 | 2009-08-10 18:47:44 +0200 | [diff] [blame] | 1116 | static void alc_init_auto_mic(struct hda_codec *codec) | 
|  | 1117 | { | 
|  | 1118 | struct alc_spec *spec = codec->spec; | 
|  | 1119 | struct auto_pin_cfg *cfg = &spec->autocfg; | 
| Takashi Iwai | 8ed99d9 | 2011-05-17 12:05:02 +0200 | [diff] [blame] | 1120 | hda_nid_t fixed, ext, dock; | 
| Takashi Iwai | 6c81949 | 2009-08-10 18:47:44 +0200 | [diff] [blame] | 1121 | int i; | 
|  | 1122 |  | 
| Takashi Iwai | 24de183 | 2011-11-07 17:13:39 +0100 | [diff] [blame] | 1123 | if (spec->shared_mic_hp) | 
|  | 1124 | return; /* no auto-mic for the shared I/O */ | 
|  | 1125 |  | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 1126 | spec->ext_mic_idx = spec->int_mic_idx = spec->dock_mic_idx = -1; | 
|  | 1127 |  | 
| Takashi Iwai | 8ed99d9 | 2011-05-17 12:05:02 +0200 | [diff] [blame] | 1128 | fixed = ext = dock = 0; | 
| Takashi Iwai | 66ceeb6 | 2010-08-30 13:05:52 +0200 | [diff] [blame] | 1129 | for (i = 0; i < cfg->num_inputs; i++) { | 
|  | 1130 | hda_nid_t nid = cfg->inputs[i].pin; | 
| Takashi Iwai | 6c81949 | 2009-08-10 18:47:44 +0200 | [diff] [blame] | 1131 | unsigned int defcfg; | 
| Takashi Iwai | 6c81949 | 2009-08-10 18:47:44 +0200 | [diff] [blame] | 1132 | defcfg = snd_hda_codec_get_pincfg(codec, nid); | 
| Takashi Iwai | 99ae28b | 2010-09-17 14:42:34 +0200 | [diff] [blame] | 1133 | switch (snd_hda_get_input_pin_attr(defcfg)) { | 
|  | 1134 | case INPUT_PIN_ATTR_INT: | 
| Takashi Iwai | 6c81949 | 2009-08-10 18:47:44 +0200 | [diff] [blame] | 1135 | if (fixed) | 
|  | 1136 | return; /* already occupied */ | 
| Takashi Iwai | 8ed99d9 | 2011-05-17 12:05:02 +0200 | [diff] [blame] | 1137 | if (cfg->inputs[i].type != AUTO_PIN_MIC) | 
|  | 1138 | return; /* invalid type */ | 
| Takashi Iwai | 6c81949 | 2009-08-10 18:47:44 +0200 | [diff] [blame] | 1139 | fixed = nid; | 
|  | 1140 | break; | 
| Takashi Iwai | 99ae28b | 2010-09-17 14:42:34 +0200 | [diff] [blame] | 1141 | case INPUT_PIN_ATTR_UNUSED: | 
|  | 1142 | return; /* invalid entry */ | 
| Takashi Iwai | 8ed99d9 | 2011-05-17 12:05:02 +0200 | [diff] [blame] | 1143 | case INPUT_PIN_ATTR_DOCK: | 
|  | 1144 | if (dock) | 
|  | 1145 | return; /* already occupied */ | 
|  | 1146 | if (cfg->inputs[i].type > AUTO_PIN_LINE_IN) | 
|  | 1147 | return; /* invalid type */ | 
|  | 1148 | dock = nid; | 
|  | 1149 | break; | 
| Takashi Iwai | 99ae28b | 2010-09-17 14:42:34 +0200 | [diff] [blame] | 1150 | default: | 
| Takashi Iwai | 6c81949 | 2009-08-10 18:47:44 +0200 | [diff] [blame] | 1151 | if (ext) | 
|  | 1152 | return; /* already occupied */ | 
| Takashi Iwai | 8ed99d9 | 2011-05-17 12:05:02 +0200 | [diff] [blame] | 1153 | if (cfg->inputs[i].type != AUTO_PIN_MIC) | 
|  | 1154 | return; /* invalid type */ | 
| Takashi Iwai | 6c81949 | 2009-08-10 18:47:44 +0200 | [diff] [blame] | 1155 | ext = nid; | 
|  | 1156 | break; | 
| Takashi Iwai | 6c81949 | 2009-08-10 18:47:44 +0200 | [diff] [blame] | 1157 | } | 
|  | 1158 | } | 
| Takashi Iwai | 8ed99d9 | 2011-05-17 12:05:02 +0200 | [diff] [blame] | 1159 | if (!ext && dock) { | 
|  | 1160 | ext = dock; | 
|  | 1161 | dock = 0; | 
|  | 1162 | } | 
| Takashi Iwai | eaa9b3a | 2010-01-17 13:09:33 +0100 | [diff] [blame] | 1163 | if (!ext || !fixed) | 
|  | 1164 | return; | 
| Takashi Iwai | e35d9d6 | 2011-05-17 11:28:16 +0200 | [diff] [blame] | 1165 | if (!is_jack_detectable(codec, ext)) | 
| Takashi Iwai | 6c81949 | 2009-08-10 18:47:44 +0200 | [diff] [blame] | 1166 | return; /* no unsol support */ | 
| Takashi Iwai | 8ed99d9 | 2011-05-17 12:05:02 +0200 | [diff] [blame] | 1167 | if (dock && !is_jack_detectable(codec, dock)) | 
|  | 1168 | return; /* no unsol support */ | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 1169 |  | 
|  | 1170 | /* check imux indices */ | 
|  | 1171 | spec->ext_mic_pin = ext; | 
|  | 1172 | spec->int_mic_pin = fixed; | 
|  | 1173 | spec->dock_mic_pin = dock; | 
|  | 1174 |  | 
|  | 1175 | spec->auto_mic = 1; | 
|  | 1176 | if (!alc_auto_mic_check_imux(codec)) | 
|  | 1177 | return; | 
|  | 1178 |  | 
| Takashi Iwai | 8ed99d9 | 2011-05-17 12:05:02 +0200 | [diff] [blame] | 1179 | snd_printdd("realtek: Enable auto-mic switch on NID 0x%x/0x%x/0x%x\n", | 
|  | 1180 | ext, fixed, dock); | 
| Takashi Iwai | 6c81949 | 2009-08-10 18:47:44 +0200 | [diff] [blame] | 1181 | spec->unsol_event = alc_sku_unsol_event; | 
|  | 1182 | } | 
|  | 1183 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 1184 | /* check the availabilities of auto-mute and auto-mic switches */ | 
|  | 1185 | static void alc_auto_check_switches(struct hda_codec *codec) | 
|  | 1186 | { | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 1187 | alc_init_automute(codec); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 1188 | alc_init_auto_mic(codec); | 
|  | 1189 | } | 
|  | 1190 |  | 
|  | 1191 | /* | 
|  | 1192 | * Realtek SSID verification | 
|  | 1193 | */ | 
|  | 1194 |  | 
| David Henningsson | 9062291 | 2010-10-14 14:50:18 +0200 | [diff] [blame] | 1195 | /* Could be any non-zero and even value. When used as fixup, tells | 
|  | 1196 | * the driver to ignore any present sku defines. | 
|  | 1197 | */ | 
|  | 1198 | #define ALC_FIXUP_SKU_IGNORE (2) | 
|  | 1199 |  | 
| Kailang Yang | da00c24 | 2010-03-19 11:23:45 +0100 | [diff] [blame] | 1200 | static int alc_auto_parse_customize_define(struct hda_codec *codec) | 
|  | 1201 | { | 
|  | 1202 | unsigned int ass, tmp, i; | 
| Takashi Iwai | 7fb5622 | 2010-03-22 17:09:47 +0100 | [diff] [blame] | 1203 | unsigned nid = 0; | 
| Kailang Yang | da00c24 | 2010-03-19 11:23:45 +0100 | [diff] [blame] | 1204 | struct alc_spec *spec = codec->spec; | 
|  | 1205 |  | 
| Takashi Iwai | b6cbe51 | 2010-07-28 17:43:36 +0200 | [diff] [blame] | 1206 | spec->cdefine.enable_pcbeep = 1; /* assume always enabled */ | 
|  | 1207 |  | 
| David Henningsson | 9062291 | 2010-10-14 14:50:18 +0200 | [diff] [blame] | 1208 | if (spec->cdefine.fixup) { | 
|  | 1209 | ass = spec->cdefine.sku_cfg; | 
|  | 1210 | if (ass == ALC_FIXUP_SKU_IGNORE) | 
|  | 1211 | return -1; | 
|  | 1212 | goto do_sku; | 
|  | 1213 | } | 
|  | 1214 |  | 
| Kailang Yang | da00c24 | 2010-03-19 11:23:45 +0100 | [diff] [blame] | 1215 | ass = codec->subsystem_id & 0xffff; | 
| Takashi Iwai | b6cbe51 | 2010-07-28 17:43:36 +0200 | [diff] [blame] | 1216 | if (ass != codec->bus->pci->subsystem_device && (ass & 1)) | 
| Kailang Yang | da00c24 | 2010-03-19 11:23:45 +0100 | [diff] [blame] | 1217 | goto do_sku; | 
|  | 1218 |  | 
|  | 1219 | nid = 0x1d; | 
|  | 1220 | if (codec->vendor_id == 0x10ec0260) | 
|  | 1221 | nid = 0x17; | 
|  | 1222 | ass = snd_hda_codec_get_pincfg(codec, nid); | 
|  | 1223 |  | 
|  | 1224 | if (!(ass & 1)) { | 
|  | 1225 | printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n", | 
|  | 1226 | codec->chip_name, ass); | 
|  | 1227 | return -1; | 
|  | 1228 | } | 
|  | 1229 |  | 
|  | 1230 | /* check sum */ | 
|  | 1231 | tmp = 0; | 
|  | 1232 | for (i = 1; i < 16; i++) { | 
|  | 1233 | if ((ass >> i) & 1) | 
|  | 1234 | tmp++; | 
|  | 1235 | } | 
|  | 1236 | if (((ass >> 16) & 0xf) != tmp) | 
|  | 1237 | return -1; | 
|  | 1238 |  | 
|  | 1239 | spec->cdefine.port_connectivity = ass >> 30; | 
|  | 1240 | spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20; | 
|  | 1241 | spec->cdefine.check_sum = (ass >> 16) & 0xf; | 
|  | 1242 | spec->cdefine.customization = ass >> 8; | 
|  | 1243 | do_sku: | 
|  | 1244 | spec->cdefine.sku_cfg = ass; | 
|  | 1245 | spec->cdefine.external_amp = (ass & 0x38) >> 3; | 
|  | 1246 | spec->cdefine.platform_type = (ass & 0x4) >> 2; | 
|  | 1247 | spec->cdefine.swap = (ass & 0x2) >> 1; | 
|  | 1248 | spec->cdefine.override = ass & 0x1; | 
|  | 1249 |  | 
|  | 1250 | snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n", | 
|  | 1251 | nid, spec->cdefine.sku_cfg); | 
|  | 1252 | snd_printd("SKU: port_connectivity=0x%x\n", | 
|  | 1253 | spec->cdefine.port_connectivity); | 
|  | 1254 | snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep); | 
|  | 1255 | snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum); | 
|  | 1256 | snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization); | 
|  | 1257 | snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp); | 
|  | 1258 | snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type); | 
|  | 1259 | snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap); | 
|  | 1260 | snd_printd("SKU: override=0x%x\n", spec->cdefine.override); | 
|  | 1261 |  | 
|  | 1262 | return 0; | 
|  | 1263 | } | 
|  | 1264 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 1265 | /* return true if the given NID is found in the list */ | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 1266 | static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums) | 
|  | 1267 | { | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 1268 | return find_idx_in_nid_list(nid, list, nums) >= 0; | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 1269 | } | 
|  | 1270 |  | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 1271 | /* check subsystem ID and set up device-specific initialization; | 
|  | 1272 | * return 1 if initialized, 0 if invalid SSID | 
|  | 1273 | */ | 
|  | 1274 | /* 32-bit subsystem ID for BIOS loading in HD Audio codec. | 
|  | 1275 | *	31 ~ 16 :	Manufacture ID | 
|  | 1276 | *	15 ~ 8	:	SKU ID | 
|  | 1277 | *	7  ~ 0	:	Assembly ID | 
|  | 1278 | *	port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36 | 
|  | 1279 | */ | 
|  | 1280 | static int alc_subsystem_id(struct hda_codec *codec, | 
|  | 1281 | hda_nid_t porta, hda_nid_t porte, | 
| Kailang Yang | 6227cdc | 2010-02-25 08:36:52 +0100 | [diff] [blame] | 1282 | hda_nid_t portd, hda_nid_t porti) | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 1283 | { | 
|  | 1284 | unsigned int ass, tmp, i; | 
|  | 1285 | unsigned nid; | 
|  | 1286 | struct alc_spec *spec = codec->spec; | 
|  | 1287 |  | 
| David Henningsson | 9062291 | 2010-10-14 14:50:18 +0200 | [diff] [blame] | 1288 | if (spec->cdefine.fixup) { | 
|  | 1289 | ass = spec->cdefine.sku_cfg; | 
|  | 1290 | if (ass == ALC_FIXUP_SKU_IGNORE) | 
|  | 1291 | return 0; | 
|  | 1292 | goto do_sku; | 
|  | 1293 | } | 
|  | 1294 |  | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 1295 | ass = codec->subsystem_id & 0xffff; | 
|  | 1296 | if ((ass != codec->bus->pci->subsystem_device) && (ass & 1)) | 
|  | 1297 | goto do_sku; | 
|  | 1298 |  | 
|  | 1299 | /* invalid SSID, check the special NID pin defcfg instead */ | 
|  | 1300 | /* | 
| Sasha Alexandr | def319f | 2009-06-16 16:00:15 -0400 | [diff] [blame] | 1301 | * 31~30	: port connectivity | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 1302 | * 29~21	: reserve | 
|  | 1303 | * 20		: PCBEEP input | 
|  | 1304 | * 19~16	: Check sum (15:1) | 
|  | 1305 | * 15~1		: Custom | 
|  | 1306 | * 0		: override | 
|  | 1307 | */ | 
|  | 1308 | nid = 0x1d; | 
|  | 1309 | if (codec->vendor_id == 0x10ec0260) | 
|  | 1310 | nid = 0x17; | 
|  | 1311 | ass = snd_hda_codec_get_pincfg(codec, nid); | 
|  | 1312 | snd_printd("realtek: No valid SSID, " | 
|  | 1313 | "checking pincfg 0x%08x for NID 0x%x\n", | 
| Takashi Iwai | cb6605c | 2009-04-28 13:03:19 +0200 | [diff] [blame] | 1314 | ass, nid); | 
| Kailang Yang | 6227cdc | 2010-02-25 08:36:52 +0100 | [diff] [blame] | 1315 | if (!(ass & 1)) | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 1316 | return 0; | 
|  | 1317 | if ((ass >> 30) != 1)	/* no physical connection */ | 
|  | 1318 | return 0; | 
|  | 1319 |  | 
|  | 1320 | /* check sum */ | 
|  | 1321 | tmp = 0; | 
|  | 1322 | for (i = 1; i < 16; i++) { | 
|  | 1323 | if ((ass >> i) & 1) | 
|  | 1324 | tmp++; | 
|  | 1325 | } | 
|  | 1326 | if (((ass >> 16) & 0xf) != tmp) | 
|  | 1327 | return 0; | 
|  | 1328 | do_sku: | 
|  | 1329 | snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n", | 
|  | 1330 | ass & 0xffff, codec->vendor_id); | 
|  | 1331 | /* | 
|  | 1332 | * 0 : override | 
|  | 1333 | * 1 :	Swap Jack | 
|  | 1334 | * 2 : 0 --> Desktop, 1 --> Laptop | 
|  | 1335 | * 3~5 : External Amplifier control | 
|  | 1336 | * 7~6 : Reserved | 
|  | 1337 | */ | 
|  | 1338 | tmp = (ass & 0x38) >> 3;	/* external Amp control */ | 
|  | 1339 | switch (tmp) { | 
|  | 1340 | case 1: | 
|  | 1341 | spec->init_amp = ALC_INIT_GPIO1; | 
|  | 1342 | break; | 
|  | 1343 | case 3: | 
|  | 1344 | spec->init_amp = ALC_INIT_GPIO2; | 
|  | 1345 | break; | 
|  | 1346 | case 7: | 
|  | 1347 | spec->init_amp = ALC_INIT_GPIO3; | 
|  | 1348 | break; | 
|  | 1349 | case 5: | 
| Takashi Iwai | 5a8cfb4 | 2010-11-26 17:11:18 +0100 | [diff] [blame] | 1350 | default: | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 1351 | spec->init_amp = ALC_INIT_DEFAULT; | 
|  | 1352 | break; | 
|  | 1353 | } | 
|  | 1354 |  | 
|  | 1355 | /* is laptop or Desktop and enable the function "Mute internal speaker | 
|  | 1356 | * when the external headphone out jack is plugged" | 
|  | 1357 | */ | 
|  | 1358 | if (!(ass & 0x8000)) | 
|  | 1359 | return 1; | 
|  | 1360 | /* | 
|  | 1361 | * 10~8 : Jack location | 
|  | 1362 | * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered | 
|  | 1363 | * 14~13: Resvered | 
|  | 1364 | * 15   : 1 --> enable the function "Mute internal speaker | 
|  | 1365 | *	        when the external headphone out jack is plugged" | 
|  | 1366 | */ | 
| Takashi Iwai | 5fe6e01 | 2011-09-26 10:41:21 +0200 | [diff] [blame] | 1367 | if (!spec->autocfg.hp_pins[0] && | 
|  | 1368 | !(spec->autocfg.line_out_pins[0] && | 
|  | 1369 | spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)) { | 
| Takashi Iwai | 01d4825 | 2009-10-06 13:21:54 +0200 | [diff] [blame] | 1370 | hda_nid_t nid; | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 1371 | tmp = (ass >> 11) & 0x3;	/* HP to chassis */ | 
|  | 1372 | if (tmp == 0) | 
| Takashi Iwai | 01d4825 | 2009-10-06 13:21:54 +0200 | [diff] [blame] | 1373 | nid = porta; | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 1374 | else if (tmp == 1) | 
| Takashi Iwai | 01d4825 | 2009-10-06 13:21:54 +0200 | [diff] [blame] | 1375 | nid = porte; | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 1376 | else if (tmp == 2) | 
| Takashi Iwai | 01d4825 | 2009-10-06 13:21:54 +0200 | [diff] [blame] | 1377 | nid = portd; | 
| Kailang Yang | 6227cdc | 2010-02-25 08:36:52 +0100 | [diff] [blame] | 1378 | else if (tmp == 3) | 
|  | 1379 | nid = porti; | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 1380 | else | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 1381 | return 1; | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 1382 | if (found_in_nid_list(nid, spec->autocfg.line_out_pins, | 
|  | 1383 | spec->autocfg.line_outs)) | 
|  | 1384 | return 1; | 
| Takashi Iwai | 01d4825 | 2009-10-06 13:21:54 +0200 | [diff] [blame] | 1385 | spec->autocfg.hp_pins[0] = nid; | 
| Kailang Yang | c9b5800 | 2007-10-16 14:30:01 +0200 | [diff] [blame] | 1386 | } | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 1387 | return 1; | 
|  | 1388 | } | 
| Kailang Yang | ea1fb29 | 2008-08-26 12:58:38 +0200 | [diff] [blame] | 1389 |  | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 1390 | /* Check the validity of ALC subsystem-id | 
|  | 1391 | * ports contains an array of 4 pin NIDs for port-A, E, D and I */ | 
|  | 1392 | static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports) | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 1393 | { | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 1394 | if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) { | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 1395 | struct alc_spec *spec = codec->spec; | 
|  | 1396 | snd_printd("realtek: " | 
|  | 1397 | "Enable default setup for auto mode as fallback\n"); | 
|  | 1398 | spec->init_amp = ALC_INIT_DEFAULT; | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 1399 | } | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 1400 | } | 
| Takashi Iwai | 1a1455d | 2011-04-28 17:36:18 +0200 | [diff] [blame] | 1401 |  | 
| Takashi Iwai | 41e41f1 | 2005-06-08 14:48:49 +0200 | [diff] [blame] | 1402 | /* | 
| Takashi Iwai | f8f25ba | 2009-10-06 08:31:29 +0200 | [diff] [blame] | 1403 | * Fix-up pin default configurations and add default verbs | 
| Takashi Iwai | f95474e | 2007-07-10 00:47:43 +0200 | [diff] [blame] | 1404 | */ | 
|  | 1405 |  | 
|  | 1406 | struct alc_pincfg { | 
|  | 1407 | hda_nid_t nid; | 
|  | 1408 | u32 val; | 
|  | 1409 | }; | 
|  | 1410 |  | 
| Todd Broch | e1eb5f1 | 2010-12-06 11:19:51 -0800 | [diff] [blame] | 1411 | struct alc_model_fixup { | 
|  | 1412 | const int id; | 
|  | 1413 | const char *name; | 
|  | 1414 | }; | 
|  | 1415 |  | 
| Takashi Iwai | f8f25ba | 2009-10-06 08:31:29 +0200 | [diff] [blame] | 1416 | struct alc_fixup { | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1417 | int type; | 
| Takashi Iwai | 361fe6e | 2011-01-14 09:55:32 +0100 | [diff] [blame] | 1418 | bool chained; | 
|  | 1419 | int chain_id; | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1420 | union { | 
|  | 1421 | unsigned int sku; | 
|  | 1422 | const struct alc_pincfg *pins; | 
|  | 1423 | const struct hda_verb *verbs; | 
|  | 1424 | void (*func)(struct hda_codec *codec, | 
|  | 1425 | const struct alc_fixup *fix, | 
|  | 1426 | int action); | 
|  | 1427 | } v; | 
| Takashi Iwai | f8f25ba | 2009-10-06 08:31:29 +0200 | [diff] [blame] | 1428 | }; | 
|  | 1429 |  | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1430 | enum { | 
|  | 1431 | ALC_FIXUP_INVALID, | 
|  | 1432 | ALC_FIXUP_SKU, | 
|  | 1433 | ALC_FIXUP_PINS, | 
|  | 1434 | ALC_FIXUP_VERBS, | 
|  | 1435 | ALC_FIXUP_FUNC, | 
|  | 1436 | }; | 
| Takashi Iwai | f95474e | 2007-07-10 00:47:43 +0200 | [diff] [blame] | 1437 |  | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1438 | enum { | 
|  | 1439 | ALC_FIXUP_ACT_PRE_PROBE, | 
|  | 1440 | ALC_FIXUP_ACT_PROBE, | 
| Takashi Iwai | 5870112 | 2011-01-13 15:41:45 +0100 | [diff] [blame] | 1441 | ALC_FIXUP_ACT_INIT, | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1442 | }; | 
|  | 1443 |  | 
|  | 1444 | static void alc_apply_fixup(struct hda_codec *codec, int action) | 
|  | 1445 | { | 
|  | 1446 | struct alc_spec *spec = codec->spec; | 
|  | 1447 | int id = spec->fixup_id; | 
| Takashi Iwai | aa1d0c5 | 2011-01-19 17:27:58 +0100 | [diff] [blame] | 1448 | #ifdef CONFIG_SND_DEBUG_VERBOSE | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1449 | const char *modelname = spec->fixup_name; | 
| Takashi Iwai | aa1d0c5 | 2011-01-19 17:27:58 +0100 | [diff] [blame] | 1450 | #endif | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1451 | int depth = 0; | 
|  | 1452 |  | 
|  | 1453 | if (!spec->fixup_list) | 
|  | 1454 | return; | 
|  | 1455 |  | 
|  | 1456 | while (id >= 0) { | 
|  | 1457 | const struct alc_fixup *fix = spec->fixup_list + id; | 
|  | 1458 | const struct alc_pincfg *cfg; | 
|  | 1459 |  | 
|  | 1460 | switch (fix->type) { | 
|  | 1461 | case ALC_FIXUP_SKU: | 
|  | 1462 | if (action != ALC_FIXUP_ACT_PRE_PROBE || !fix->v.sku) | 
| Jesper Juhl | e53de8f | 2011-11-13 23:11:50 +0100 | [diff] [blame] | 1463 | break; | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1464 | snd_printdd(KERN_INFO "hda_codec: %s: " | 
|  | 1465 | "Apply sku override for %s\n", | 
|  | 1466 | codec->chip_name, modelname); | 
|  | 1467 | spec->cdefine.sku_cfg = fix->v.sku; | 
|  | 1468 | spec->cdefine.fixup = 1; | 
|  | 1469 | break; | 
|  | 1470 | case ALC_FIXUP_PINS: | 
|  | 1471 | cfg = fix->v.pins; | 
|  | 1472 | if (action != ALC_FIXUP_ACT_PRE_PROBE || !cfg) | 
|  | 1473 | break; | 
|  | 1474 | snd_printdd(KERN_INFO "hda_codec: %s: " | 
|  | 1475 | "Apply pincfg for %s\n", | 
|  | 1476 | codec->chip_name, modelname); | 
|  | 1477 | for (; cfg->nid; cfg++) | 
|  | 1478 | snd_hda_codec_set_pincfg(codec, cfg->nid, | 
|  | 1479 | cfg->val); | 
|  | 1480 | break; | 
|  | 1481 | case ALC_FIXUP_VERBS: | 
|  | 1482 | if (action != ALC_FIXUP_ACT_PROBE || !fix->v.verbs) | 
|  | 1483 | break; | 
|  | 1484 | snd_printdd(KERN_INFO "hda_codec: %s: " | 
|  | 1485 | "Apply fix-verbs for %s\n", | 
|  | 1486 | codec->chip_name, modelname); | 
|  | 1487 | add_verb(codec->spec, fix->v.verbs); | 
|  | 1488 | break; | 
|  | 1489 | case ALC_FIXUP_FUNC: | 
|  | 1490 | if (!fix->v.func) | 
|  | 1491 | break; | 
|  | 1492 | snd_printdd(KERN_INFO "hda_codec: %s: " | 
|  | 1493 | "Apply fix-func for %s\n", | 
|  | 1494 | codec->chip_name, modelname); | 
|  | 1495 | fix->v.func(codec, fix, action); | 
|  | 1496 | break; | 
|  | 1497 | default: | 
|  | 1498 | snd_printk(KERN_ERR "hda_codec: %s: " | 
|  | 1499 | "Invalid fixup type %d\n", | 
|  | 1500 | codec->chip_name, fix->type); | 
|  | 1501 | break; | 
|  | 1502 | } | 
| Takashi Iwai | 24af2b1 | 2011-05-02 13:55:36 +0200 | [diff] [blame] | 1503 | if (!fix->chained) | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1504 | break; | 
|  | 1505 | if (++depth > 10) | 
|  | 1506 | break; | 
| Takashi Iwai | 24af2b1 | 2011-05-02 13:55:36 +0200 | [diff] [blame] | 1507 | id = fix->chain_id; | 
| Takashi Iwai | 9d57883 | 2010-11-22 13:29:19 +0100 | [diff] [blame] | 1508 | } | 
| Takashi Iwai | f95474e | 2007-07-10 00:47:43 +0200 | [diff] [blame] | 1509 | } | 
|  | 1510 |  | 
| Todd Broch | e1eb5f1 | 2010-12-06 11:19:51 -0800 | [diff] [blame] | 1511 | static void alc_pick_fixup(struct hda_codec *codec, | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1512 | const struct alc_model_fixup *models, | 
|  | 1513 | const struct snd_pci_quirk *quirk, | 
|  | 1514 | const struct alc_fixup *fixlist) | 
| Todd Broch | e1eb5f1 | 2010-12-06 11:19:51 -0800 | [diff] [blame] | 1515 | { | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1516 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 596830e | 2011-11-09 15:06:45 +0100 | [diff] [blame] | 1517 | const struct snd_pci_quirk *q; | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1518 | int id = -1; | 
|  | 1519 | const char *name = NULL; | 
| Todd Broch | e1eb5f1 | 2010-12-06 11:19:51 -0800 | [diff] [blame] | 1520 |  | 
| Todd Broch | e1eb5f1 | 2010-12-06 11:19:51 -0800 | [diff] [blame] | 1521 | if (codec->modelname && models) { | 
|  | 1522 | while (models->name) { | 
|  | 1523 | if (!strcmp(codec->modelname, models->name)) { | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1524 | id = models->id; | 
|  | 1525 | name = models->name; | 
| Todd Broch | e1eb5f1 | 2010-12-06 11:19:51 -0800 | [diff] [blame] | 1526 | break; | 
|  | 1527 | } | 
|  | 1528 | models++; | 
|  | 1529 | } | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1530 | } | 
|  | 1531 | if (id < 0) { | 
| Takashi Iwai | 596830e | 2011-11-09 15:06:45 +0100 | [diff] [blame] | 1532 | q = snd_pci_quirk_lookup(codec->bus->pci, quirk); | 
|  | 1533 | if (q) { | 
|  | 1534 | id = q->value; | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1535 | #ifdef CONFIG_SND_DEBUG_VERBOSE | 
| Takashi Iwai | 596830e | 2011-11-09 15:06:45 +0100 | [diff] [blame] | 1536 | name = q->name; | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1537 | #endif | 
|  | 1538 | } | 
|  | 1539 | } | 
| Takashi Iwai | 596830e | 2011-11-09 15:06:45 +0100 | [diff] [blame] | 1540 | if (id < 0) { | 
|  | 1541 | for (q = quirk; q->subvendor; q++) { | 
|  | 1542 | unsigned int vendorid = | 
|  | 1543 | q->subdevice | (q->subvendor << 16); | 
|  | 1544 | if (vendorid == codec->subsystem_id) { | 
|  | 1545 | id = q->value; | 
|  | 1546 | #ifdef CONFIG_SND_DEBUG_VERBOSE | 
|  | 1547 | name = q->name; | 
|  | 1548 | #endif | 
|  | 1549 | break; | 
|  | 1550 | } | 
|  | 1551 | } | 
|  | 1552 | } | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 1553 |  | 
|  | 1554 | spec->fixup_id = id; | 
|  | 1555 | if (id >= 0) { | 
|  | 1556 | spec->fixup_list = fixlist; | 
|  | 1557 | spec->fixup_name = name; | 
| Todd Broch | e1eb5f1 | 2010-12-06 11:19:51 -0800 | [diff] [blame] | 1558 | } | 
| Takashi Iwai | f95474e | 2007-07-10 00:47:43 +0200 | [diff] [blame] | 1559 | } | 
|  | 1560 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 1561 | /* | 
|  | 1562 | * COEF access helper functions | 
|  | 1563 | */ | 
| Kailang Yang | 274693f | 2009-12-03 10:07:50 +0100 | [diff] [blame] | 1564 | static int alc_read_coef_idx(struct hda_codec *codec, | 
|  | 1565 | unsigned int coef_idx) | 
|  | 1566 | { | 
|  | 1567 | unsigned int val; | 
|  | 1568 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, | 
|  | 1569 | coef_idx); | 
|  | 1570 | val = snd_hda_codec_read(codec, 0x20, 0, | 
|  | 1571 | AC_VERB_GET_PROC_COEF, 0); | 
|  | 1572 | return val; | 
|  | 1573 | } | 
|  | 1574 |  | 
| Kailang Yang | 977ddd6 | 2010-09-15 10:02:29 +0200 | [diff] [blame] | 1575 | static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx, | 
|  | 1576 | unsigned int coef_val) | 
|  | 1577 | { | 
|  | 1578 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, | 
|  | 1579 | coef_idx); | 
|  | 1580 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, | 
|  | 1581 | coef_val); | 
|  | 1582 | } | 
|  | 1583 |  | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 1584 | /* a special bypass for COEF 0; read the cached value at the second time */ | 
|  | 1585 | static unsigned int alc_get_coef0(struct hda_codec *codec) | 
|  | 1586 | { | 
|  | 1587 | struct alc_spec *spec = codec->spec; | 
|  | 1588 | if (!spec->coef0) | 
|  | 1589 | spec->coef0 = alc_read_coef_idx(codec, 0); | 
|  | 1590 | return spec->coef0; | 
|  | 1591 | } | 
|  | 1592 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 1593 | /* | 
|  | 1594 | * Digital I/O handling | 
|  | 1595 | */ | 
|  | 1596 |  | 
| Takashi Iwai | 757899a | 2010-07-30 10:48:14 +0200 | [diff] [blame] | 1597 | /* set right pin controls for digital I/O */ | 
|  | 1598 | static void alc_auto_init_digital(struct hda_codec *codec) | 
|  | 1599 | { | 
|  | 1600 | struct alc_spec *spec = codec->spec; | 
|  | 1601 | int i; | 
| Takashi Iwai | 1f0f4b8 | 2011-06-27 10:52:59 +0200 | [diff] [blame] | 1602 | hda_nid_t pin, dac; | 
| Takashi Iwai | 757899a | 2010-07-30 10:48:14 +0200 | [diff] [blame] | 1603 |  | 
|  | 1604 | for (i = 0; i < spec->autocfg.dig_outs; i++) { | 
|  | 1605 | pin = spec->autocfg.dig_out_pins[i]; | 
| Takashi Iwai | 1f0f4b8 | 2011-06-27 10:52:59 +0200 | [diff] [blame] | 1606 | if (!pin) | 
|  | 1607 | continue; | 
|  | 1608 | snd_hda_codec_write(codec, pin, 0, | 
|  | 1609 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | 
|  | 1610 | if (!i) | 
|  | 1611 | dac = spec->multiout.dig_out_nid; | 
|  | 1612 | else | 
|  | 1613 | dac = spec->slave_dig_outs[i - 1]; | 
|  | 1614 | if (!dac || !(get_wcaps(codec, dac) & AC_WCAP_OUT_AMP)) | 
|  | 1615 | continue; | 
|  | 1616 | snd_hda_codec_write(codec, dac, 0, | 
|  | 1617 | AC_VERB_SET_AMP_GAIN_MUTE, | 
|  | 1618 | AMP_OUT_UNMUTE); | 
| Takashi Iwai | 757899a | 2010-07-30 10:48:14 +0200 | [diff] [blame] | 1619 | } | 
|  | 1620 | pin = spec->autocfg.dig_in_pin; | 
|  | 1621 | if (pin) | 
|  | 1622 | snd_hda_codec_write(codec, pin, 0, | 
|  | 1623 | AC_VERB_SET_PIN_WIDGET_CONTROL, | 
|  | 1624 | PIN_IN); | 
|  | 1625 | } | 
|  | 1626 |  | 
|  | 1627 | /* parse digital I/Os and set up NIDs in BIOS auto-parse mode */ | 
|  | 1628 | static void alc_auto_parse_digital(struct hda_codec *codec) | 
|  | 1629 | { | 
|  | 1630 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 51e4152a | 2011-11-03 16:54:06 +0100 | [diff] [blame] | 1631 | int i, err, nums; | 
| Takashi Iwai | 757899a | 2010-07-30 10:48:14 +0200 | [diff] [blame] | 1632 | hda_nid_t dig_nid; | 
|  | 1633 |  | 
|  | 1634 | /* support multiple SPDIFs; the secondary is set up as a slave */ | 
| Takashi Iwai | 51e4152a | 2011-11-03 16:54:06 +0100 | [diff] [blame] | 1635 | nums = 0; | 
| Takashi Iwai | 757899a | 2010-07-30 10:48:14 +0200 | [diff] [blame] | 1636 | for (i = 0; i < spec->autocfg.dig_outs; i++) { | 
| Takashi Iwai | a926757 | 2011-07-07 15:12:55 +0200 | [diff] [blame] | 1637 | hda_nid_t conn[4]; | 
| Takashi Iwai | 757899a | 2010-07-30 10:48:14 +0200 | [diff] [blame] | 1638 | err = snd_hda_get_connections(codec, | 
|  | 1639 | spec->autocfg.dig_out_pins[i], | 
| Takashi Iwai | a926757 | 2011-07-07 15:12:55 +0200 | [diff] [blame] | 1640 | conn, ARRAY_SIZE(conn)); | 
| Takashi Iwai | 51e4152a | 2011-11-03 16:54:06 +0100 | [diff] [blame] | 1641 | if (err <= 0) | 
| Takashi Iwai | 757899a | 2010-07-30 10:48:14 +0200 | [diff] [blame] | 1642 | continue; | 
| Takashi Iwai | a926757 | 2011-07-07 15:12:55 +0200 | [diff] [blame] | 1643 | dig_nid = conn[0]; /* assume the first element is audio-out */ | 
| Takashi Iwai | 51e4152a | 2011-11-03 16:54:06 +0100 | [diff] [blame] | 1644 | if (!nums) { | 
| Takashi Iwai | 757899a | 2010-07-30 10:48:14 +0200 | [diff] [blame] | 1645 | spec->multiout.dig_out_nid = dig_nid; | 
|  | 1646 | spec->dig_out_type = spec->autocfg.dig_out_type[0]; | 
|  | 1647 | } else { | 
|  | 1648 | spec->multiout.slave_dig_outs = spec->slave_dig_outs; | 
| Takashi Iwai | 51e4152a | 2011-11-03 16:54:06 +0100 | [diff] [blame] | 1649 | if (nums >= ARRAY_SIZE(spec->slave_dig_outs) - 1) | 
| Takashi Iwai | 757899a | 2010-07-30 10:48:14 +0200 | [diff] [blame] | 1650 | break; | 
| Takashi Iwai | 51e4152a | 2011-11-03 16:54:06 +0100 | [diff] [blame] | 1651 | spec->slave_dig_outs[nums - 1] = dig_nid; | 
| Takashi Iwai | 757899a | 2010-07-30 10:48:14 +0200 | [diff] [blame] | 1652 | } | 
| Takashi Iwai | 51e4152a | 2011-11-03 16:54:06 +0100 | [diff] [blame] | 1653 | nums++; | 
| Takashi Iwai | 757899a | 2010-07-30 10:48:14 +0200 | [diff] [blame] | 1654 | } | 
|  | 1655 |  | 
|  | 1656 | if (spec->autocfg.dig_in_pin) { | 
| Takashi Iwai | 01fdf18 | 2010-09-24 09:09:42 +0200 | [diff] [blame] | 1657 | dig_nid = codec->start_nid; | 
|  | 1658 | for (i = 0; i < codec->num_nodes; i++, dig_nid++) { | 
|  | 1659 | unsigned int wcaps = get_wcaps(codec, dig_nid); | 
|  | 1660 | if (get_wcaps_type(wcaps) != AC_WID_AUD_IN) | 
|  | 1661 | continue; | 
|  | 1662 | if (!(wcaps & AC_WCAP_DIGITAL)) | 
|  | 1663 | continue; | 
|  | 1664 | if (!(wcaps & AC_WCAP_CONN_LIST)) | 
|  | 1665 | continue; | 
|  | 1666 | err = get_connection_index(codec, dig_nid, | 
|  | 1667 | spec->autocfg.dig_in_pin); | 
|  | 1668 | if (err >= 0) { | 
|  | 1669 | spec->dig_in_nid = dig_nid; | 
|  | 1670 | break; | 
|  | 1671 | } | 
|  | 1672 | } | 
| Takashi Iwai | 757899a | 2010-07-30 10:48:14 +0200 | [diff] [blame] | 1673 | } | 
|  | 1674 | } | 
|  | 1675 |  | 
| Takashi Iwai | f95474e | 2007-07-10 00:47:43 +0200 | [diff] [blame] | 1676 | /* | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 1677 | * capture mixer elements | 
| Vincent Petry | ef8ef5f | 2008-11-23 11:31:41 +0800 | [diff] [blame] | 1678 | */ | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1679 | static int alc_cap_vol_info(struct snd_kcontrol *kcontrol, | 
|  | 1680 | struct snd_ctl_elem_info *uinfo) | 
|  | 1681 | { | 
|  | 1682 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 
|  | 1683 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 1684 | unsigned long val; | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1685 | int err; | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 1686 |  | 
| Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 1687 | mutex_lock(&codec->control_mutex); | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 1688 | if (spec->vol_in_capsrc) | 
|  | 1689 | val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT); | 
|  | 1690 | else | 
|  | 1691 | val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT); | 
|  | 1692 | kcontrol->private_value = val; | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1693 | err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo); | 
| Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 1694 | mutex_unlock(&codec->control_mutex); | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1695 | return err; | 
|  | 1696 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 |  | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1698 | static int alc_cap_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag, | 
|  | 1699 | unsigned int size, unsigned int __user *tlv) | 
|  | 1700 | { | 
|  | 1701 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 
|  | 1702 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 1703 | unsigned long val; | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1704 | int err; | 
|  | 1705 |  | 
| Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 1706 | mutex_lock(&codec->control_mutex); | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 1707 | if (spec->vol_in_capsrc) | 
|  | 1708 | val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT); | 
|  | 1709 | else | 
|  | 1710 | val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT); | 
|  | 1711 | kcontrol->private_value = val; | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1712 | err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv); | 
| Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 1713 | mutex_unlock(&codec->control_mutex); | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1714 | return err; | 
|  | 1715 | } | 
|  | 1716 |  | 
|  | 1717 | typedef int (*getput_call_t)(struct snd_kcontrol *kcontrol, | 
|  | 1718 | struct snd_ctl_elem_value *ucontrol); | 
|  | 1719 |  | 
|  | 1720 | static int alc_cap_getput_caller(struct snd_kcontrol *kcontrol, | 
|  | 1721 | struct snd_ctl_elem_value *ucontrol, | 
| Takashi Iwai | 9c7a083 | 2011-07-07 09:25:54 +0200 | [diff] [blame] | 1722 | getput_call_t func, bool check_adc_switch) | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1723 | { | 
|  | 1724 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 
|  | 1725 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 1726 | int i, err = 0; | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1727 |  | 
| Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 1728 | mutex_lock(&codec->control_mutex); | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 1729 | if (check_adc_switch && spec->dyn_adc_switch) { | 
| Takashi Iwai | 9c7a083 | 2011-07-07 09:25:54 +0200 | [diff] [blame] | 1730 | for (i = 0; i < spec->num_adc_nids; i++) { | 
|  | 1731 | kcontrol->private_value = | 
|  | 1732 | HDA_COMPOSE_AMP_VAL(spec->adc_nids[i], | 
|  | 1733 | 3, 0, HDA_INPUT); | 
|  | 1734 | err = func(kcontrol, ucontrol); | 
|  | 1735 | if (err < 0) | 
|  | 1736 | goto error; | 
|  | 1737 | } | 
|  | 1738 | } else { | 
|  | 1739 | i = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 1740 | if (spec->vol_in_capsrc) | 
|  | 1741 | kcontrol->private_value = | 
|  | 1742 | HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[i], | 
|  | 1743 | 3, 0, HDA_OUTPUT); | 
|  | 1744 | else | 
|  | 1745 | kcontrol->private_value = | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 1746 | HDA_COMPOSE_AMP_VAL(spec->adc_nids[i], | 
|  | 1747 | 3, 0, HDA_INPUT); | 
| Takashi Iwai | 9c7a083 | 2011-07-07 09:25:54 +0200 | [diff] [blame] | 1748 | err = func(kcontrol, ucontrol); | 
|  | 1749 | } | 
|  | 1750 | error: | 
| Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 1751 | mutex_unlock(&codec->control_mutex); | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1752 | return err; | 
|  | 1753 | } | 
|  | 1754 |  | 
|  | 1755 | static int alc_cap_vol_get(struct snd_kcontrol *kcontrol, | 
|  | 1756 | struct snd_ctl_elem_value *ucontrol) | 
|  | 1757 | { | 
|  | 1758 | return alc_cap_getput_caller(kcontrol, ucontrol, | 
| Takashi Iwai | 9c7a083 | 2011-07-07 09:25:54 +0200 | [diff] [blame] | 1759 | snd_hda_mixer_amp_volume_get, false); | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1760 | } | 
|  | 1761 |  | 
|  | 1762 | static int alc_cap_vol_put(struct snd_kcontrol *kcontrol, | 
|  | 1763 | struct snd_ctl_elem_value *ucontrol) | 
|  | 1764 | { | 
|  | 1765 | return alc_cap_getput_caller(kcontrol, ucontrol, | 
| Takashi Iwai | 9c7a083 | 2011-07-07 09:25:54 +0200 | [diff] [blame] | 1766 | snd_hda_mixer_amp_volume_put, true); | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1767 | } | 
|  | 1768 |  | 
|  | 1769 | /* capture mixer elements */ | 
|  | 1770 | #define alc_cap_sw_info		snd_ctl_boolean_stereo_info | 
|  | 1771 |  | 
|  | 1772 | static int alc_cap_sw_get(struct snd_kcontrol *kcontrol, | 
|  | 1773 | struct snd_ctl_elem_value *ucontrol) | 
|  | 1774 | { | 
|  | 1775 | return alc_cap_getput_caller(kcontrol, ucontrol, | 
| Takashi Iwai | 9c7a083 | 2011-07-07 09:25:54 +0200 | [diff] [blame] | 1776 | snd_hda_mixer_amp_switch_get, false); | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1777 | } | 
|  | 1778 |  | 
|  | 1779 | static int alc_cap_sw_put(struct snd_kcontrol *kcontrol, | 
|  | 1780 | struct snd_ctl_elem_value *ucontrol) | 
|  | 1781 | { | 
|  | 1782 | return alc_cap_getput_caller(kcontrol, ucontrol, | 
| Takashi Iwai | 9c7a083 | 2011-07-07 09:25:54 +0200 | [diff] [blame] | 1783 | snd_hda_mixer_amp_switch_put, true); | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1784 | } | 
|  | 1785 |  | 
| Takashi Iwai | a23b688 | 2009-03-23 15:21:36 +0100 | [diff] [blame] | 1786 | #define _DEFINE_CAPMIX(num) \ | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1787 | { \ | 
|  | 1788 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ | 
|  | 1789 | .name = "Capture Switch", \ | 
|  | 1790 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \ | 
|  | 1791 | .count = num, \ | 
|  | 1792 | .info = alc_cap_sw_info, \ | 
|  | 1793 | .get = alc_cap_sw_get, \ | 
|  | 1794 | .put = alc_cap_sw_put, \ | 
|  | 1795 | }, \ | 
|  | 1796 | { \ | 
|  | 1797 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ | 
|  | 1798 | .name = "Capture Volume", \ | 
|  | 1799 | .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | \ | 
|  | 1800 | SNDRV_CTL_ELEM_ACCESS_TLV_READ | \ | 
|  | 1801 | SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK), \ | 
|  | 1802 | .count = num, \ | 
|  | 1803 | .info = alc_cap_vol_info, \ | 
|  | 1804 | .get = alc_cap_vol_get, \ | 
|  | 1805 | .put = alc_cap_vol_put, \ | 
|  | 1806 | .tlv = { .c = alc_cap_vol_tlv }, \ | 
| Takashi Iwai | a23b688 | 2009-03-23 15:21:36 +0100 | [diff] [blame] | 1807 | } | 
|  | 1808 |  | 
|  | 1809 | #define _DEFINE_CAPSRC(num) \ | 
| Takashi Iwai | 3c3e989 | 2008-10-31 17:48:56 +0100 | [diff] [blame] | 1810 | { \ | 
|  | 1811 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ | 
|  | 1812 | /* .name = "Capture Source", */ \ | 
|  | 1813 | .name = "Input Source", \ | 
|  | 1814 | .count = num, \ | 
|  | 1815 | .info = alc_mux_enum_info, \ | 
|  | 1816 | .get = alc_mux_enum_get, \ | 
|  | 1817 | .put = alc_mux_enum_put, \ | 
| Takashi Iwai | a23b688 | 2009-03-23 15:21:36 +0100 | [diff] [blame] | 1818 | } | 
|  | 1819 |  | 
|  | 1820 | #define DEFINE_CAPMIX(num) \ | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 1821 | static const struct snd_kcontrol_new alc_capture_mixer ## num[] = { \ | 
| Takashi Iwai | a23b688 | 2009-03-23 15:21:36 +0100 | [diff] [blame] | 1822 | _DEFINE_CAPMIX(num),				      \ | 
|  | 1823 | _DEFINE_CAPSRC(num),				      \ | 
|  | 1824 | { } /* end */					      \ | 
|  | 1825 | } | 
|  | 1826 |  | 
|  | 1827 | #define DEFINE_CAPMIX_NOSRC(num) \ | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 1828 | static const struct snd_kcontrol_new alc_capture_mixer_nosrc ## num[] = { \ | 
| Takashi Iwai | a23b688 | 2009-03-23 15:21:36 +0100 | [diff] [blame] | 1829 | _DEFINE_CAPMIX(num),					    \ | 
|  | 1830 | { } /* end */						    \ | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1831 | } | 
|  | 1832 |  | 
|  | 1833 | /* up to three ADCs */ | 
|  | 1834 | DEFINE_CAPMIX(1); | 
|  | 1835 | DEFINE_CAPMIX(2); | 
|  | 1836 | DEFINE_CAPMIX(3); | 
| Takashi Iwai | a23b688 | 2009-03-23 15:21:36 +0100 | [diff] [blame] | 1837 | DEFINE_CAPMIX_NOSRC(1); | 
|  | 1838 | DEFINE_CAPMIX_NOSRC(2); | 
|  | 1839 | DEFINE_CAPMIX_NOSRC(3); | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 1840 |  | 
|  | 1841 | /* | 
| Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1842 | * virtual master controls | 
|  | 1843 | */ | 
|  | 1844 |  | 
|  | 1845 | /* | 
|  | 1846 | * slave controls for virtual master | 
|  | 1847 | */ | 
| Takashi Iwai | ea73496 | 2011-01-17 11:29:34 +0100 | [diff] [blame] | 1848 | static const char * const alc_slave_vols[] = { | 
| Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1849 | "Front Playback Volume", | 
|  | 1850 | "Surround Playback Volume", | 
|  | 1851 | "Center Playback Volume", | 
|  | 1852 | "LFE Playback Volume", | 
|  | 1853 | "Side Playback Volume", | 
|  | 1854 | "Headphone Playback Volume", | 
|  | 1855 | "Speaker Playback Volume", | 
|  | 1856 | "Mono Playback Volume", | 
| Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1857 | "Line-Out Playback Volume", | 
| Takashi Iwai | 3fe45ae | 2011-08-18 15:13:17 +0200 | [diff] [blame] | 1858 | "PCM Playback Volume", | 
| Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1859 | NULL, | 
|  | 1860 | }; | 
|  | 1861 |  | 
| Takashi Iwai | ea73496 | 2011-01-17 11:29:34 +0100 | [diff] [blame] | 1862 | static const char * const alc_slave_sws[] = { | 
| Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1863 | "Front Playback Switch", | 
|  | 1864 | "Surround Playback Switch", | 
|  | 1865 | "Center Playback Switch", | 
|  | 1866 | "LFE Playback Switch", | 
|  | 1867 | "Side Playback Switch", | 
|  | 1868 | "Headphone Playback Switch", | 
|  | 1869 | "Speaker Playback Switch", | 
|  | 1870 | "Mono Playback Switch", | 
| Takashi Iwai | edb54a5 | 2008-01-29 12:47:02 +0100 | [diff] [blame] | 1871 | "IEC958 Playback Switch", | 
| Takashi Iwai | 23033b2 | 2009-12-08 12:36:52 +0100 | [diff] [blame] | 1872 | "Line-Out Playback Switch", | 
| Takashi Iwai | 3fe45ae | 2011-08-18 15:13:17 +0200 | [diff] [blame] | 1873 | "PCM Playback Switch", | 
| Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1874 | NULL, | 
|  | 1875 | }; | 
|  | 1876 |  | 
|  | 1877 | /* | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 1878 | * build control elements | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | */ | 
| Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1880 |  | 
| Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1881 | #define NID_MAPPING		(-1) | 
|  | 1882 |  | 
|  | 1883 | #define SUBDEV_SPEAKER_		(0 << 6) | 
|  | 1884 | #define SUBDEV_HP_		(1 << 6) | 
|  | 1885 | #define SUBDEV_LINE_		(2 << 6) | 
|  | 1886 | #define SUBDEV_SPEAKER(x)	(SUBDEV_SPEAKER_ | ((x) & 0x3f)) | 
|  | 1887 | #define SUBDEV_HP(x)		(SUBDEV_HP_ | ((x) & 0x3f)) | 
|  | 1888 | #define SUBDEV_LINE(x)		(SUBDEV_LINE_ | ((x) & 0x3f)) | 
|  | 1889 |  | 
| Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1890 | static void alc_free_kctls(struct hda_codec *codec); | 
|  | 1891 |  | 
| Takashi Iwai | 67d634c | 2009-11-16 15:35:59 +0100 | [diff] [blame] | 1892 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | 
| Takashi Iwai | 45bdd1c | 2009-02-06 16:11:25 +0100 | [diff] [blame] | 1893 | /* additional beep mixers; the actual parameters are overwritten at build */ | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 1894 | static const struct snd_kcontrol_new alc_beep_mixer[] = { | 
| Takashi Iwai | 45bdd1c | 2009-02-06 16:11:25 +0100 | [diff] [blame] | 1895 | HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT), | 
| Jaroslav Kysela | 123c07a | 2009-10-21 14:48:23 +0200 | [diff] [blame] | 1896 | HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT), | 
| Takashi Iwai | 45bdd1c | 2009-02-06 16:11:25 +0100 | [diff] [blame] | 1897 | { } /* end */ | 
|  | 1898 | }; | 
| Takashi Iwai | 67d634c | 2009-11-16 15:35:59 +0100 | [diff] [blame] | 1899 | #endif | 
| Takashi Iwai | 45bdd1c | 2009-02-06 16:11:25 +0100 | [diff] [blame] | 1900 |  | 
| Takashi Iwai | f21d78e | 2012-01-19 12:10:29 +0100 | [diff] [blame] | 1901 | static int __alc_build_controls(struct hda_codec *codec) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1902 | { | 
|  | 1903 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 2f44f84 | 2010-06-22 11:12:32 +0200 | [diff] [blame] | 1904 | struct snd_kcontrol *kctl = NULL; | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 1905 | const struct snd_kcontrol_new *knew; | 
| Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1906 | int i, j, err; | 
|  | 1907 | unsigned int u; | 
|  | 1908 | hda_nid_t nid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 |  | 
|  | 1910 | for (i = 0; i < spec->num_mixers; i++) { | 
|  | 1911 | err = snd_hda_add_new_ctls(codec, spec->mixers[i]); | 
|  | 1912 | if (err < 0) | 
|  | 1913 | return err; | 
|  | 1914 | } | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 1915 | if (spec->cap_mixer) { | 
|  | 1916 | err = snd_hda_add_new_ctls(codec, spec->cap_mixer); | 
|  | 1917 | if (err < 0) | 
|  | 1918 | return err; | 
|  | 1919 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1920 | if (spec->multiout.dig_out_nid) { | 
| Takashi Iwai | 9c7f852 | 2006-06-28 15:08:22 +0200 | [diff] [blame] | 1921 | err = snd_hda_create_spdif_out_ctls(codec, | 
| Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 1922 | spec->multiout.dig_out_nid, | 
| Takashi Iwai | 9c7f852 | 2006-06-28 15:08:22 +0200 | [diff] [blame] | 1923 | spec->multiout.dig_out_nid); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1924 | if (err < 0) | 
|  | 1925 | return err; | 
| Takashi Iwai | e64f14f | 2009-01-20 18:32:55 +0100 | [diff] [blame] | 1926 | if (!spec->no_analog) { | 
|  | 1927 | err = snd_hda_create_spdif_share_sw(codec, | 
|  | 1928 | &spec->multiout); | 
|  | 1929 | if (err < 0) | 
|  | 1930 | return err; | 
|  | 1931 | spec->multiout.share_spdif = 1; | 
|  | 1932 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | } | 
|  | 1934 | if (spec->dig_in_nid) { | 
|  | 1935 | err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid); | 
|  | 1936 | if (err < 0) | 
|  | 1937 | return err; | 
|  | 1938 | } | 
| Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1939 |  | 
| Takashi Iwai | 67d634c | 2009-11-16 15:35:59 +0100 | [diff] [blame] | 1940 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | 
| Takashi Iwai | 45bdd1c | 2009-02-06 16:11:25 +0100 | [diff] [blame] | 1941 | /* create beep controls if needed */ | 
|  | 1942 | if (spec->beep_amp) { | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 1943 | const struct snd_kcontrol_new *knew; | 
| Takashi Iwai | 45bdd1c | 2009-02-06 16:11:25 +0100 | [diff] [blame] | 1944 | for (knew = alc_beep_mixer; knew->name; knew++) { | 
|  | 1945 | struct snd_kcontrol *kctl; | 
|  | 1946 | kctl = snd_ctl_new1(knew, codec); | 
|  | 1947 | if (!kctl) | 
|  | 1948 | return -ENOMEM; | 
|  | 1949 | kctl->private_value = spec->beep_amp; | 
| Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 1950 | err = snd_hda_ctl_add(codec, 0, kctl); | 
| Takashi Iwai | 45bdd1c | 2009-02-06 16:11:25 +0100 | [diff] [blame] | 1951 | if (err < 0) | 
|  | 1952 | return err; | 
|  | 1953 | } | 
|  | 1954 | } | 
| Takashi Iwai | 67d634c | 2009-11-16 15:35:59 +0100 | [diff] [blame] | 1955 | #endif | 
| Takashi Iwai | 45bdd1c | 2009-02-06 16:11:25 +0100 | [diff] [blame] | 1956 |  | 
| Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1957 | /* if we have no master control, let's create it */ | 
| Takashi Iwai | e64f14f | 2009-01-20 18:32:55 +0100 | [diff] [blame] | 1958 | if (!spec->no_analog && | 
|  | 1959 | !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) { | 
| Takashi Iwai | 1c82ed1 | 2008-02-18 13:05:50 +0100 | [diff] [blame] | 1960 | unsigned int vmaster_tlv[4]; | 
| Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1961 | snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid, | 
| Takashi Iwai | 1c82ed1 | 2008-02-18 13:05:50 +0100 | [diff] [blame] | 1962 | HDA_OUTPUT, vmaster_tlv); | 
| Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1963 | err = snd_hda_add_vmaster(codec, "Master Playback Volume", | 
| Takashi Iwai | 1c82ed1 | 2008-02-18 13:05:50 +0100 | [diff] [blame] | 1964 | vmaster_tlv, alc_slave_vols); | 
| Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1965 | if (err < 0) | 
|  | 1966 | return err; | 
|  | 1967 | } | 
| Takashi Iwai | e64f14f | 2009-01-20 18:32:55 +0100 | [diff] [blame] | 1968 | if (!spec->no_analog && | 
|  | 1969 | !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) { | 
| Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1970 | err = snd_hda_add_vmaster(codec, "Master Playback Switch", | 
|  | 1971 | NULL, alc_slave_sws); | 
|  | 1972 | if (err < 0) | 
|  | 1973 | return err; | 
|  | 1974 | } | 
|  | 1975 |  | 
| Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1976 | /* assign Capture Source enums to NID */ | 
| Takashi Iwai | fbe618f | 2010-06-11 11:24:58 +0200 | [diff] [blame] | 1977 | if (spec->capsrc_nids || spec->adc_nids) { | 
|  | 1978 | kctl = snd_hda_find_mixer_ctl(codec, "Capture Source"); | 
|  | 1979 | if (!kctl) | 
|  | 1980 | kctl = snd_hda_find_mixer_ctl(codec, "Input Source"); | 
|  | 1981 | for (i = 0; kctl && i < kctl->count; i++) { | 
| Takashi Iwai | 6107159 | 2011-11-23 07:52:15 +0100 | [diff] [blame] | 1982 | err = snd_hda_add_nid(codec, kctl, i, | 
|  | 1983 | get_capsrc(spec, i)); | 
| Takashi Iwai | fbe618f | 2010-06-11 11:24:58 +0200 | [diff] [blame] | 1984 | if (err < 0) | 
|  | 1985 | return err; | 
|  | 1986 | } | 
| Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1987 | } | 
| Takashi Iwai | 60a6a84 | 2011-07-27 14:01:24 +0200 | [diff] [blame] | 1988 | if (spec->cap_mixer && spec->adc_nids) { | 
| Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1989 | const char *kname = kctl ? kctl->id.name : NULL; | 
|  | 1990 | for (knew = spec->cap_mixer; knew->name; knew++) { | 
|  | 1991 | if (kname && strcmp(knew->name, kname) == 0) | 
|  | 1992 | continue; | 
|  | 1993 | kctl = snd_hda_find_mixer_ctl(codec, knew->name); | 
|  | 1994 | for (i = 0; kctl && i < kctl->count; i++) { | 
|  | 1995 | err = snd_hda_add_nid(codec, kctl, i, | 
|  | 1996 | spec->adc_nids[i]); | 
|  | 1997 | if (err < 0) | 
|  | 1998 | return err; | 
|  | 1999 | } | 
|  | 2000 | } | 
|  | 2001 | } | 
|  | 2002 |  | 
|  | 2003 | /* other nid->control mapping */ | 
|  | 2004 | for (i = 0; i < spec->num_mixers; i++) { | 
|  | 2005 | for (knew = spec->mixers[i]; knew->name; knew++) { | 
|  | 2006 | if (knew->iface != NID_MAPPING) | 
|  | 2007 | continue; | 
|  | 2008 | kctl = snd_hda_find_mixer_ctl(codec, knew->name); | 
|  | 2009 | if (kctl == NULL) | 
|  | 2010 | continue; | 
|  | 2011 | u = knew->subdevice; | 
|  | 2012 | for (j = 0; j < 4; j++, u >>= 8) { | 
|  | 2013 | nid = u & 0x3f; | 
|  | 2014 | if (nid == 0) | 
|  | 2015 | continue; | 
|  | 2016 | switch (u & 0xc0) { | 
|  | 2017 | case SUBDEV_SPEAKER_: | 
|  | 2018 | nid = spec->autocfg.speaker_pins[nid]; | 
|  | 2019 | break; | 
|  | 2020 | case SUBDEV_LINE_: | 
|  | 2021 | nid = spec->autocfg.line_out_pins[nid]; | 
|  | 2022 | break; | 
|  | 2023 | case SUBDEV_HP_: | 
|  | 2024 | nid = spec->autocfg.hp_pins[nid]; | 
|  | 2025 | break; | 
|  | 2026 | default: | 
|  | 2027 | continue; | 
|  | 2028 | } | 
|  | 2029 | err = snd_hda_add_nid(codec, kctl, 0, nid); | 
|  | 2030 | if (err < 0) | 
|  | 2031 | return err; | 
|  | 2032 | } | 
|  | 2033 | u = knew->private_value; | 
|  | 2034 | for (j = 0; j < 4; j++, u >>= 8) { | 
|  | 2035 | nid = u & 0xff; | 
|  | 2036 | if (nid == 0) | 
|  | 2037 | continue; | 
|  | 2038 | err = snd_hda_add_nid(codec, kctl, 0, nid); | 
|  | 2039 | if (err < 0) | 
|  | 2040 | return err; | 
|  | 2041 | } | 
|  | 2042 | } | 
|  | 2043 | } | 
| Takashi Iwai | bae84e7 | 2010-03-22 08:30:20 +0100 | [diff] [blame] | 2044 |  | 
|  | 2045 | alc_free_kctls(codec); /* no longer needed */ | 
|  | 2046 |  | 
| Takashi Iwai | f21d78e | 2012-01-19 12:10:29 +0100 | [diff] [blame] | 2047 | return 0; | 
|  | 2048 | } | 
|  | 2049 |  | 
|  | 2050 | static int alc_build_controls(struct hda_codec *codec) | 
|  | 2051 | { | 
|  | 2052 | struct alc_spec *spec = codec->spec; | 
|  | 2053 | int err = __alc_build_controls(codec); | 
| Takashi Iwai | 01a61e1 | 2011-10-28 00:03:22 +0200 | [diff] [blame] | 2054 | if (err < 0) | 
|  | 2055 | return err; | 
| Takashi Iwai | f21d78e | 2012-01-19 12:10:29 +0100 | [diff] [blame] | 2056 | return snd_hda_jack_add_kctls(codec, &spec->autocfg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2057 | } | 
|  | 2058 |  | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2059 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2060 | /* | 
| Takashi Iwai | ae6b813 | 2006-03-03 16:47:17 +0100 | [diff] [blame] | 2061 | * Common callbacks | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2062 | */ | 
| Takashi Iwai | 16ded52 | 2005-06-10 19:58:24 +0200 | [diff] [blame] | 2063 |  | 
| Takashi Iwai | 584c0c4 | 2011-03-10 12:51:11 +0100 | [diff] [blame] | 2064 | static void alc_init_special_input_src(struct hda_codec *codec); | 
|  | 2065 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2066 | static int alc_init(struct hda_codec *codec) | 
|  | 2067 | { | 
|  | 2068 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2069 | unsigned int i; | 
|  | 2070 |  | 
| Takashi Iwai | 2c3bf9a | 2008-06-04 12:39:38 +0200 | [diff] [blame] | 2071 | alc_fix_pll(codec); | 
| Takashi Iwai | 4a79ba3 | 2009-04-22 16:31:35 +0200 | [diff] [blame] | 2072 | alc_auto_init_amp(codec, spec->init_amp); | 
| Takashi Iwai | 2c3bf9a | 2008-06-04 12:39:38 +0200 | [diff] [blame] | 2073 |  | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2074 | for (i = 0; i < spec->num_init_verbs; i++) | 
|  | 2075 | snd_hda_sequence_write(codec, spec->init_verbs[i]); | 
| Takashi Iwai | 584c0c4 | 2011-03-10 12:51:11 +0100 | [diff] [blame] | 2076 | alc_init_special_input_src(codec); | 
| Takashi Iwai | ae6b813 | 2006-03-03 16:47:17 +0100 | [diff] [blame] | 2077 |  | 
|  | 2078 | if (spec->init_hook) | 
|  | 2079 | spec->init_hook(codec); | 
|  | 2080 |  | 
| Takashi Iwai | 5870112 | 2011-01-13 15:41:45 +0100 | [diff] [blame] | 2081 | alc_apply_fixup(codec, ALC_FIXUP_ACT_INIT); | 
|  | 2082 |  | 
| Takashi Iwai | 01a61e1 | 2011-10-28 00:03:22 +0200 | [diff] [blame] | 2083 | snd_hda_jack_report_sync(codec); | 
|  | 2084 |  | 
| Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 2085 | hda_call_check_power_status(codec, 0x01); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2086 | return 0; | 
|  | 2087 | } | 
|  | 2088 |  | 
| Takashi Iwai | ae6b813 | 2006-03-03 16:47:17 +0100 | [diff] [blame] | 2089 | static void alc_unsol_event(struct hda_codec *codec, unsigned int res) | 
|  | 2090 | { | 
|  | 2091 | struct alc_spec *spec = codec->spec; | 
|  | 2092 |  | 
|  | 2093 | if (spec->unsol_event) | 
|  | 2094 | spec->unsol_event(codec, res); | 
|  | 2095 | } | 
|  | 2096 |  | 
| Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2097 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 2098 | static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid) | 
|  | 2099 | { | 
|  | 2100 | struct alc_spec *spec = codec->spec; | 
|  | 2101 | return snd_hda_check_amp_list_power(codec, &spec->loopback, nid); | 
|  | 2102 | } | 
|  | 2103 | #endif | 
|  | 2104 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2105 | /* | 
|  | 2106 | * Analog playback callbacks | 
|  | 2107 | */ | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2108 | static int alc_playback_pcm_open(struct hda_pcm_stream *hinfo, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | struct hda_codec *codec, | 
| Takashi Iwai | c8b6bf9b | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2110 | struct snd_pcm_substream *substream) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2111 | { | 
|  | 2112 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2113 | return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream, | 
|  | 2114 | hinfo); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | } | 
|  | 2116 |  | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2117 | static int alc_playback_pcm_prepare(struct hda_pcm_stream *hinfo, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | struct hda_codec *codec, | 
|  | 2119 | unsigned int stream_tag, | 
|  | 2120 | unsigned int format, | 
| Takashi Iwai | c8b6bf9b | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2121 | struct snd_pcm_substream *substream) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2122 | { | 
|  | 2123 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 9c7f852 | 2006-06-28 15:08:22 +0200 | [diff] [blame] | 2124 | return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, | 
|  | 2125 | stream_tag, format, substream); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2126 | } | 
|  | 2127 |  | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2128 | static int alc_playback_pcm_cleanup(struct hda_pcm_stream *hinfo, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2129 | struct hda_codec *codec, | 
| Takashi Iwai | c8b6bf9b | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2130 | struct snd_pcm_substream *substream) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | { | 
|  | 2132 | struct alc_spec *spec = codec->spec; | 
|  | 2133 | return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout); | 
|  | 2134 | } | 
|  | 2135 |  | 
|  | 2136 | /* | 
|  | 2137 | * Digital out | 
|  | 2138 | */ | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2139 | static int alc_dig_playback_pcm_open(struct hda_pcm_stream *hinfo, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2140 | struct hda_codec *codec, | 
| Takashi Iwai | c8b6bf9b | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2141 | struct snd_pcm_substream *substream) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | { | 
|  | 2143 | struct alc_spec *spec = codec->spec; | 
|  | 2144 | return snd_hda_multi_out_dig_open(codec, &spec->multiout); | 
|  | 2145 | } | 
|  | 2146 |  | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2147 | static int alc_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo, | 
| Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 2148 | struct hda_codec *codec, | 
|  | 2149 | unsigned int stream_tag, | 
|  | 2150 | unsigned int format, | 
|  | 2151 | struct snd_pcm_substream *substream) | 
|  | 2152 | { | 
|  | 2153 | struct alc_spec *spec = codec->spec; | 
|  | 2154 | return snd_hda_multi_out_dig_prepare(codec, &spec->multiout, | 
|  | 2155 | stream_tag, format, substream); | 
|  | 2156 | } | 
|  | 2157 |  | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2158 | static int alc_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo, | 
| Takashi Iwai | 9b5f12e | 2009-02-13 11:47:37 +0100 | [diff] [blame] | 2159 | struct hda_codec *codec, | 
|  | 2160 | struct snd_pcm_substream *substream) | 
|  | 2161 | { | 
|  | 2162 | struct alc_spec *spec = codec->spec; | 
|  | 2163 | return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout); | 
|  | 2164 | } | 
|  | 2165 |  | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2166 | static int alc_dig_playback_pcm_close(struct hda_pcm_stream *hinfo, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | struct hda_codec *codec, | 
| Takashi Iwai | c8b6bf9b | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2168 | struct snd_pcm_substream *substream) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2169 | { | 
|  | 2170 | struct alc_spec *spec = codec->spec; | 
|  | 2171 | return snd_hda_multi_out_dig_close(codec, &spec->multiout); | 
|  | 2172 | } | 
|  | 2173 |  | 
|  | 2174 | /* | 
|  | 2175 | * Analog capture | 
|  | 2176 | */ | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2177 | static int alc_alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | struct hda_codec *codec, | 
|  | 2179 | unsigned int stream_tag, | 
|  | 2180 | unsigned int format, | 
| Takashi Iwai | c8b6bf9b | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2181 | struct snd_pcm_substream *substream) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | { | 
|  | 2183 | struct alc_spec *spec = codec->spec; | 
|  | 2184 |  | 
| Takashi Iwai | 6330079 | 2008-01-24 15:31:36 +0100 | [diff] [blame] | 2185 | snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1], | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2186 | stream_tag, 0, format); | 
|  | 2187 | return 0; | 
|  | 2188 | } | 
|  | 2189 |  | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2190 | static int alc_alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2191 | struct hda_codec *codec, | 
| Takashi Iwai | c8b6bf9b | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2192 | struct snd_pcm_substream *substream) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2193 | { | 
|  | 2194 | struct alc_spec *spec = codec->spec; | 
|  | 2195 |  | 
| Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 2196 | snd_hda_codec_cleanup_stream(codec, | 
|  | 2197 | spec->adc_nids[substream->number + 1]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | return 0; | 
|  | 2199 | } | 
|  | 2200 |  | 
| Takashi Iwai | 840b64c | 2010-07-13 22:49:01 +0200 | [diff] [blame] | 2201 | /* analog capture with dynamic dual-adc changes */ | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 2202 | static int dyn_adc_capture_pcm_prepare(struct hda_pcm_stream *hinfo, | 
| Takashi Iwai | 840b64c | 2010-07-13 22:49:01 +0200 | [diff] [blame] | 2203 | struct hda_codec *codec, | 
|  | 2204 | unsigned int stream_tag, | 
|  | 2205 | unsigned int format, | 
|  | 2206 | struct snd_pcm_substream *substream) | 
|  | 2207 | { | 
|  | 2208 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 2209 | spec->cur_adc = spec->adc_nids[spec->dyn_adc_idx[spec->cur_mux[0]]]; | 
| Takashi Iwai | 840b64c | 2010-07-13 22:49:01 +0200 | [diff] [blame] | 2210 | spec->cur_adc_stream_tag = stream_tag; | 
|  | 2211 | spec->cur_adc_format = format; | 
|  | 2212 | snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format); | 
|  | 2213 | return 0; | 
|  | 2214 | } | 
|  | 2215 |  | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 2216 | static int dyn_adc_capture_pcm_cleanup(struct hda_pcm_stream *hinfo, | 
| Takashi Iwai | 840b64c | 2010-07-13 22:49:01 +0200 | [diff] [blame] | 2217 | struct hda_codec *codec, | 
|  | 2218 | struct snd_pcm_substream *substream) | 
|  | 2219 | { | 
|  | 2220 | struct alc_spec *spec = codec->spec; | 
|  | 2221 | snd_hda_codec_cleanup_stream(codec, spec->cur_adc); | 
|  | 2222 | spec->cur_adc = 0; | 
|  | 2223 | return 0; | 
|  | 2224 | } | 
|  | 2225 |  | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 2226 | static const struct hda_pcm_stream dyn_adc_pcm_analog_capture = { | 
| Takashi Iwai | 840b64c | 2010-07-13 22:49:01 +0200 | [diff] [blame] | 2227 | .substreams = 1, | 
|  | 2228 | .channels_min = 2, | 
|  | 2229 | .channels_max = 2, | 
|  | 2230 | .nid = 0, /* fill later */ | 
|  | 2231 | .ops = { | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 2232 | .prepare = dyn_adc_capture_pcm_prepare, | 
|  | 2233 | .cleanup = dyn_adc_capture_pcm_cleanup | 
| Takashi Iwai | 840b64c | 2010-07-13 22:49:01 +0200 | [diff] [blame] | 2234 | }, | 
|  | 2235 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 |  | 
|  | 2237 | /* | 
|  | 2238 | */ | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2239 | static const struct hda_pcm_stream alc_pcm_analog_playback = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | .substreams = 1, | 
|  | 2241 | .channels_min = 2, | 
|  | 2242 | .channels_max = 8, | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2243 | /* NID is set in alc_build_pcms */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2244 | .ops = { | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2245 | .open = alc_playback_pcm_open, | 
|  | 2246 | .prepare = alc_playback_pcm_prepare, | 
|  | 2247 | .cleanup = alc_playback_pcm_cleanup | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | }, | 
|  | 2249 | }; | 
|  | 2250 |  | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2251 | static const struct hda_pcm_stream alc_pcm_analog_capture = { | 
| Takashi Iwai | 6330079 | 2008-01-24 15:31:36 +0100 | [diff] [blame] | 2252 | .substreams = 1, | 
|  | 2253 | .channels_min = 2, | 
|  | 2254 | .channels_max = 2, | 
|  | 2255 | /* NID is set in alc_build_pcms */ | 
|  | 2256 | }; | 
|  | 2257 |  | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2258 | static const struct hda_pcm_stream alc_pcm_analog_alt_playback = { | 
| Takashi Iwai | 6330079 | 2008-01-24 15:31:36 +0100 | [diff] [blame] | 2259 | .substreams = 1, | 
|  | 2260 | .channels_min = 2, | 
|  | 2261 | .channels_max = 2, | 
|  | 2262 | /* NID is set in alc_build_pcms */ | 
|  | 2263 | }; | 
|  | 2264 |  | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2265 | static const struct hda_pcm_stream alc_pcm_analog_alt_capture = { | 
| Takashi Iwai | 6330079 | 2008-01-24 15:31:36 +0100 | [diff] [blame] | 2266 | .substreams = 2, /* can be overridden */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2267 | .channels_min = 2, | 
|  | 2268 | .channels_max = 2, | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2269 | /* NID is set in alc_build_pcms */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2270 | .ops = { | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2271 | .prepare = alc_alt_capture_pcm_prepare, | 
|  | 2272 | .cleanup = alc_alt_capture_pcm_cleanup | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2273 | }, | 
|  | 2274 | }; | 
|  | 2275 |  | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2276 | static const struct hda_pcm_stream alc_pcm_digital_playback = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2277 | .substreams = 1, | 
|  | 2278 | .channels_min = 2, | 
|  | 2279 | .channels_max = 2, | 
|  | 2280 | /* NID is set in alc_build_pcms */ | 
|  | 2281 | .ops = { | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2282 | .open = alc_dig_playback_pcm_open, | 
|  | 2283 | .close = alc_dig_playback_pcm_close, | 
|  | 2284 | .prepare = alc_dig_playback_pcm_prepare, | 
|  | 2285 | .cleanup = alc_dig_playback_pcm_cleanup | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | }, | 
|  | 2287 | }; | 
|  | 2288 |  | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2289 | static const struct hda_pcm_stream alc_pcm_digital_capture = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2290 | .substreams = 1, | 
|  | 2291 | .channels_min = 2, | 
|  | 2292 | .channels_max = 2, | 
|  | 2293 | /* NID is set in alc_build_pcms */ | 
|  | 2294 | }; | 
|  | 2295 |  | 
| Jonathan Woithe | 4c5186e | 2006-02-09 11:53:48 +0100 | [diff] [blame] | 2296 | /* Used by alc_build_pcms to flag that a PCM has no playback stream */ | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 2297 | static const struct hda_pcm_stream alc_pcm_null_stream = { | 
| Jonathan Woithe | 4c5186e | 2006-02-09 11:53:48 +0100 | [diff] [blame] | 2298 | .substreams = 0, | 
|  | 2299 | .channels_min = 0, | 
|  | 2300 | .channels_max = 0, | 
|  | 2301 | }; | 
|  | 2302 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2303 | static int alc_build_pcms(struct hda_codec *codec) | 
|  | 2304 | { | 
|  | 2305 | struct alc_spec *spec = codec->spec; | 
|  | 2306 | struct hda_pcm *info = spec->pcm_rec; | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2307 | const struct hda_pcm_stream *p; | 
| Takashi Iwai | 1fa1757 | 2011-11-02 21:30:51 +0100 | [diff] [blame] | 2308 | bool have_multi_adcs; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2309 | int i; | 
|  | 2310 |  | 
|  | 2311 | codec->num_pcms = 1; | 
|  | 2312 | codec->pcm_info = info; | 
|  | 2313 |  | 
| Takashi Iwai | e64f14f | 2009-01-20 18:32:55 +0100 | [diff] [blame] | 2314 | if (spec->no_analog) | 
|  | 2315 | goto skip_analog; | 
|  | 2316 |  | 
| Takashi Iwai | 812a2cc | 2009-05-16 10:00:49 +0200 | [diff] [blame] | 2317 | snprintf(spec->stream_name_analog, sizeof(spec->stream_name_analog), | 
|  | 2318 | "%s Analog", codec->chip_name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | info->name = spec->stream_name_analog; | 
| Kailang Yang | 274693f | 2009-12-03 10:07:50 +0100 | [diff] [blame] | 2320 |  | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2321 | if (spec->multiout.dac_nids > 0) { | 
|  | 2322 | p = spec->stream_analog_playback; | 
|  | 2323 | if (!p) | 
|  | 2324 | p = &alc_pcm_analog_playback; | 
|  | 2325 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p; | 
| Takashi Iwai | 4a471b7 | 2005-12-07 13:56:29 +0100 | [diff] [blame] | 2326 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0]; | 
|  | 2327 | } | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2328 | if (spec->adc_nids) { | 
|  | 2329 | p = spec->stream_analog_capture; | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 2330 | if (!p) { | 
|  | 2331 | if (spec->dyn_adc_switch) | 
|  | 2332 | p = &dyn_adc_pcm_analog_capture; | 
|  | 2333 | else | 
|  | 2334 | p = &alc_pcm_analog_capture; | 
|  | 2335 | } | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2336 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p; | 
| Takashi Iwai | 4a471b7 | 2005-12-07 13:56:29 +0100 | [diff] [blame] | 2337 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0]; | 
|  | 2338 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2339 |  | 
| Takashi Iwai | 4a471b7 | 2005-12-07 13:56:29 +0100 | [diff] [blame] | 2340 | if (spec->channel_mode) { | 
|  | 2341 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0; | 
|  | 2342 | for (i = 0; i < spec->num_channel_mode; i++) { | 
|  | 2343 | if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) { | 
|  | 2344 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels; | 
|  | 2345 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2346 | } | 
|  | 2347 | } | 
|  | 2348 |  | 
| Takashi Iwai | e64f14f | 2009-01-20 18:32:55 +0100 | [diff] [blame] | 2349 | skip_analog: | 
| Takashi Iwai | e08a007 | 2006-09-07 17:52:14 +0200 | [diff] [blame] | 2350 | /* SPDIF for stream index #1 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2351 | if (spec->multiout.dig_out_nid || spec->dig_in_nid) { | 
| Takashi Iwai | 812a2cc | 2009-05-16 10:00:49 +0200 | [diff] [blame] | 2352 | snprintf(spec->stream_name_digital, | 
|  | 2353 | sizeof(spec->stream_name_digital), | 
|  | 2354 | "%s Digital", codec->chip_name); | 
| Takashi Iwai | e08a007 | 2006-09-07 17:52:14 +0200 | [diff] [blame] | 2355 | codec->num_pcms = 2; | 
| Wu Fengguang | b25c9da | 2009-02-06 15:02:27 +0800 | [diff] [blame] | 2356 | codec->slave_dig_outs = spec->multiout.slave_dig_outs; | 
| Takashi Iwai | c06134d | 2006-10-11 18:49:13 +0200 | [diff] [blame] | 2357 | info = spec->pcm_rec + 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2358 | info->name = spec->stream_name_digital; | 
| Takashi Iwai | 8c44198 | 2009-01-20 18:30:20 +0100 | [diff] [blame] | 2359 | if (spec->dig_out_type) | 
|  | 2360 | info->pcm_type = spec->dig_out_type; | 
|  | 2361 | else | 
|  | 2362 | info->pcm_type = HDA_PCM_TYPE_SPDIF; | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2363 | if (spec->multiout.dig_out_nid) { | 
|  | 2364 | p = spec->stream_digital_playback; | 
|  | 2365 | if (!p) | 
|  | 2366 | p = &alc_pcm_digital_playback; | 
|  | 2367 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2368 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid; | 
|  | 2369 | } | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2370 | if (spec->dig_in_nid) { | 
|  | 2371 | p = spec->stream_digital_capture; | 
|  | 2372 | if (!p) | 
|  | 2373 | p = &alc_pcm_digital_capture; | 
|  | 2374 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2375 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid; | 
|  | 2376 | } | 
| Takashi Iwai | 963f803 | 2008-08-11 10:04:40 +0200 | [diff] [blame] | 2377 | /* FIXME: do we need this for all Realtek codec models? */ | 
|  | 2378 | codec->spdif_status_reset = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2379 | } | 
|  | 2380 |  | 
| Takashi Iwai | e64f14f | 2009-01-20 18:32:55 +0100 | [diff] [blame] | 2381 | if (spec->no_analog) | 
|  | 2382 | return 0; | 
|  | 2383 |  | 
| Takashi Iwai | e08a007 | 2006-09-07 17:52:14 +0200 | [diff] [blame] | 2384 | /* If the use of more than one ADC is requested for the current | 
|  | 2385 | * model, configure a second analog capture-only PCM. | 
|  | 2386 | */ | 
| Takashi Iwai | 1fa1757 | 2011-11-02 21:30:51 +0100 | [diff] [blame] | 2387 | have_multi_adcs = (spec->num_adc_nids > 1) && | 
|  | 2388 | !spec->dyn_adc_switch && !spec->auto_mic && | 
|  | 2389 | (!spec->input_mux || spec->input_mux->num_items > 1); | 
| Takashi Iwai | e08a007 | 2006-09-07 17:52:14 +0200 | [diff] [blame] | 2390 | /* Additional Analaog capture for index #2 */ | 
| Takashi Iwai | 1fa1757 | 2011-11-02 21:30:51 +0100 | [diff] [blame] | 2391 | if (spec->alt_dac_nid || have_multi_adcs) { | 
| Takashi Iwai | e08a007 | 2006-09-07 17:52:14 +0200 | [diff] [blame] | 2392 | codec->num_pcms = 3; | 
| Takashi Iwai | c06134d | 2006-10-11 18:49:13 +0200 | [diff] [blame] | 2393 | info = spec->pcm_rec + 2; | 
| Takashi Iwai | e08a007 | 2006-09-07 17:52:14 +0200 | [diff] [blame] | 2394 | info->name = spec->stream_name_analog; | 
| Takashi Iwai | 6330079 | 2008-01-24 15:31:36 +0100 | [diff] [blame] | 2395 | if (spec->alt_dac_nid) { | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2396 | p = spec->stream_analog_alt_playback; | 
|  | 2397 | if (!p) | 
|  | 2398 | p = &alc_pcm_analog_alt_playback; | 
|  | 2399 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p; | 
| Takashi Iwai | 6330079 | 2008-01-24 15:31:36 +0100 | [diff] [blame] | 2400 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = | 
|  | 2401 | spec->alt_dac_nid; | 
|  | 2402 | } else { | 
|  | 2403 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = | 
|  | 2404 | alc_pcm_null_stream; | 
|  | 2405 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0; | 
|  | 2406 | } | 
| Takashi Iwai | 1fa1757 | 2011-11-02 21:30:51 +0100 | [diff] [blame] | 2407 | if (have_multi_adcs) { | 
| Takashi Iwai | c2d986b | 2011-07-06 18:30:08 +0200 | [diff] [blame] | 2408 | p = spec->stream_analog_alt_capture; | 
|  | 2409 | if (!p) | 
|  | 2410 | p = &alc_pcm_analog_alt_capture; | 
|  | 2411 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p; | 
| Takashi Iwai | 6330079 | 2008-01-24 15:31:36 +0100 | [diff] [blame] | 2412 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = | 
|  | 2413 | spec->adc_nids[1]; | 
|  | 2414 | info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = | 
|  | 2415 | spec->num_adc_nids - 1; | 
|  | 2416 | } else { | 
|  | 2417 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = | 
|  | 2418 | alc_pcm_null_stream; | 
|  | 2419 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0; | 
| Takashi Iwai | e08a007 | 2006-09-07 17:52:14 +0200 | [diff] [blame] | 2420 | } | 
|  | 2421 | } | 
|  | 2422 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2423 | return 0; | 
|  | 2424 | } | 
|  | 2425 |  | 
| Takashi Iwai | a4e09aa | 2009-12-27 11:22:24 +0100 | [diff] [blame] | 2426 | static inline void alc_shutup(struct hda_codec *codec) | 
|  | 2427 | { | 
| Takashi Iwai | 1c71615 | 2011-04-07 10:37:16 +0200 | [diff] [blame] | 2428 | struct alc_spec *spec = codec->spec; | 
|  | 2429 |  | 
|  | 2430 | if (spec && spec->shutup) | 
|  | 2431 | spec->shutup(codec); | 
| Takashi Iwai | a4e09aa | 2009-12-27 11:22:24 +0100 | [diff] [blame] | 2432 | snd_hda_shutup_pins(codec); | 
|  | 2433 | } | 
|  | 2434 |  | 
| Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2435 | static void alc_free_kctls(struct hda_codec *codec) | 
|  | 2436 | { | 
|  | 2437 | struct alc_spec *spec = codec->spec; | 
|  | 2438 |  | 
|  | 2439 | if (spec->kctls.list) { | 
|  | 2440 | struct snd_kcontrol_new *kctl = spec->kctls.list; | 
|  | 2441 | int i; | 
|  | 2442 | for (i = 0; i < spec->kctls.used; i++) | 
|  | 2443 | kfree(kctl[i].name); | 
|  | 2444 | } | 
|  | 2445 | snd_array_free(&spec->kctls); | 
|  | 2446 | } | 
|  | 2447 |  | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 2448 | static void alc_free_bind_ctls(struct hda_codec *codec) | 
|  | 2449 | { | 
|  | 2450 | struct alc_spec *spec = codec->spec; | 
|  | 2451 | if (spec->bind_ctls.list) { | 
|  | 2452 | struct hda_bind_ctls **ctl = spec->bind_ctls.list; | 
|  | 2453 | int i; | 
|  | 2454 | for (i = 0; i < spec->bind_ctls.used; i++) | 
|  | 2455 | kfree(ctl[i]); | 
|  | 2456 | } | 
|  | 2457 | snd_array_free(&spec->bind_ctls); | 
|  | 2458 | } | 
|  | 2459 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2460 | static void alc_free(struct hda_codec *codec) | 
|  | 2461 | { | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2462 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2463 |  | 
| Takashi Iwai | f12ab1e | 2007-04-12 15:51:47 +0200 | [diff] [blame] | 2464 | if (!spec) | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2465 | return; | 
|  | 2466 |  | 
| Takashi Iwai | a4e09aa | 2009-12-27 11:22:24 +0100 | [diff] [blame] | 2467 | alc_shutup(codec); | 
| Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2468 | alc_free_kctls(codec); | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 2469 | alc_free_bind_ctls(codec); | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2470 | kfree(spec); | 
| Kusanagi Kouichi | 680cd53 | 2009-02-05 00:00:58 +0900 | [diff] [blame] | 2471 | snd_hda_detach_beep_device(codec); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2472 | } | 
|  | 2473 |  | 
| Hector Martin | f5de24b | 2009-12-20 22:51:31 +0100 | [diff] [blame] | 2474 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
| Daniel T Chen | c97259d | 2009-12-27 18:52:08 -0500 | [diff] [blame] | 2475 | static void alc_power_eapd(struct hda_codec *codec) | 
|  | 2476 | { | 
| Takashi Iwai | 691f1fc | 2011-04-07 10:31:43 +0200 | [diff] [blame] | 2477 | alc_auto_setup_eapd(codec, false); | 
| Daniel T Chen | c97259d | 2009-12-27 18:52:08 -0500 | [diff] [blame] | 2478 | } | 
|  | 2479 |  | 
| Hector Martin | f5de24b | 2009-12-20 22:51:31 +0100 | [diff] [blame] | 2480 | static int alc_suspend(struct hda_codec *codec, pm_message_t state) | 
|  | 2481 | { | 
|  | 2482 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | a4e09aa | 2009-12-27 11:22:24 +0100 | [diff] [blame] | 2483 | alc_shutup(codec); | 
| Hector Martin | f5de24b | 2009-12-20 22:51:31 +0100 | [diff] [blame] | 2484 | if (spec && spec->power_hook) | 
| Daniel T Chen | c97259d | 2009-12-27 18:52:08 -0500 | [diff] [blame] | 2485 | spec->power_hook(codec); | 
| Hector Martin | f5de24b | 2009-12-20 22:51:31 +0100 | [diff] [blame] | 2486 | return 0; | 
|  | 2487 | } | 
|  | 2488 | #endif | 
|  | 2489 |  | 
| Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 2490 | #ifdef CONFIG_PM | 
| Takashi Iwai | e044c39 | 2008-10-27 16:56:24 +0100 | [diff] [blame] | 2491 | static int alc_resume(struct hda_codec *codec) | 
|  | 2492 | { | 
| Takashi Iwai | 1c71615 | 2011-04-07 10:37:16 +0200 | [diff] [blame] | 2493 | msleep(150); /* to avoid pop noise */ | 
| Takashi Iwai | e044c39 | 2008-10-27 16:56:24 +0100 | [diff] [blame] | 2494 | codec->patch_ops.init(codec); | 
|  | 2495 | snd_hda_codec_resume_amp(codec); | 
|  | 2496 | snd_hda_codec_resume_cache(codec); | 
| Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 2497 | hda_call_check_power_status(codec, 0x01); | 
| Takashi Iwai | e044c39 | 2008-10-27 16:56:24 +0100 | [diff] [blame] | 2498 | return 0; | 
|  | 2499 | } | 
| Takashi Iwai | e044c39 | 2008-10-27 16:56:24 +0100 | [diff] [blame] | 2500 | #endif | 
|  | 2501 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2502 | /* | 
|  | 2503 | */ | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 2504 | static const struct hda_codec_ops alc_patch_ops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2505 | .build_controls = alc_build_controls, | 
|  | 2506 | .build_pcms = alc_build_pcms, | 
|  | 2507 | .init = alc_init, | 
|  | 2508 | .free = alc_free, | 
| Takashi Iwai | ae6b813 | 2006-03-03 16:47:17 +0100 | [diff] [blame] | 2509 | .unsol_event = alc_unsol_event, | 
| Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 2510 | #ifdef CONFIG_PM | 
| Takashi Iwai | e044c39 | 2008-10-27 16:56:24 +0100 | [diff] [blame] | 2511 | .resume = alc_resume, | 
|  | 2512 | #endif | 
| Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2513 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
| Hector Martin | f5de24b | 2009-12-20 22:51:31 +0100 | [diff] [blame] | 2514 | .suspend = alc_suspend, | 
| Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2515 | .check_power_status = alc_check_power_status, | 
|  | 2516 | #endif | 
| Daniel T Chen | c97259d | 2009-12-27 18:52:08 -0500 | [diff] [blame] | 2517 | .reboot_notify = alc_shutup, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2518 | }; | 
|  | 2519 |  | 
| Kailang Yang | c027ddc | 2010-03-19 11:33:06 +0100 | [diff] [blame] | 2520 | /* replace the codec chip_name with the given string */ | 
|  | 2521 | static int alc_codec_rename(struct hda_codec *codec, const char *name) | 
|  | 2522 | { | 
|  | 2523 | kfree(codec->chip_name); | 
|  | 2524 | codec->chip_name = kstrdup(name, GFP_KERNEL); | 
|  | 2525 | if (!codec->chip_name) { | 
|  | 2526 | alc_free(codec); | 
|  | 2527 | return -ENOMEM; | 
|  | 2528 | } | 
|  | 2529 | return 0; | 
|  | 2530 | } | 
|  | 2531 |  | 
| Takashi Iwai | 2fa522b | 2005-05-12 14:51:12 +0200 | [diff] [blame] | 2532 | /* | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 2533 | * Rename codecs appropriately from COEF value | 
|  | 2534 | */ | 
|  | 2535 | struct alc_codec_rename_table { | 
|  | 2536 | unsigned int vendor_id; | 
|  | 2537 | unsigned short coef_mask; | 
|  | 2538 | unsigned short coef_bits; | 
|  | 2539 | const char *name; | 
|  | 2540 | }; | 
|  | 2541 |  | 
|  | 2542 | static struct alc_codec_rename_table rename_tbl[] = { | 
|  | 2543 | { 0x10ec0269, 0xfff0, 0x3010, "ALC277" }, | 
|  | 2544 | { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" }, | 
|  | 2545 | { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" }, | 
|  | 2546 | { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" }, | 
|  | 2547 | { 0x10ec0269, 0xffff, 0xa023, "ALC259" }, | 
|  | 2548 | { 0x10ec0269, 0xffff, 0x6023, "ALC281X" }, | 
|  | 2549 | { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" }, | 
|  | 2550 | { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" }, | 
|  | 2551 | { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" }, | 
|  | 2552 | { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" }, | 
|  | 2553 | { 0x10ec0899, 0x2000, 0x2000, "ALC899" }, | 
|  | 2554 | { 0x10ec0892, 0xffff, 0x8020, "ALC661" }, | 
|  | 2555 | { 0x10ec0892, 0xffff, 0x8011, "ALC661" }, | 
|  | 2556 | { 0x10ec0892, 0xffff, 0x4011, "ALC656" }, | 
|  | 2557 | { } /* terminator */ | 
|  | 2558 | }; | 
|  | 2559 |  | 
|  | 2560 | static int alc_codec_rename_from_preset(struct hda_codec *codec) | 
|  | 2561 | { | 
|  | 2562 | const struct alc_codec_rename_table *p; | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 2563 |  | 
|  | 2564 | for (p = rename_tbl; p->vendor_id; p++) { | 
|  | 2565 | if (p->vendor_id != codec->vendor_id) | 
|  | 2566 | continue; | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 2567 | if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits) | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 2568 | return alc_codec_rename(codec, p->name); | 
|  | 2569 | } | 
|  | 2570 | return 0; | 
|  | 2571 | } | 
|  | 2572 |  | 
|  | 2573 | /* | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2574 | * Automatic parse of I/O pins from the BIOS configuration | 
|  | 2575 | */ | 
|  | 2576 |  | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2577 | enum { | 
|  | 2578 | ALC_CTL_WIDGET_VOL, | 
|  | 2579 | ALC_CTL_WIDGET_MUTE, | 
|  | 2580 | ALC_CTL_BIND_MUTE, | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 2581 | ALC_CTL_BIND_VOL, | 
|  | 2582 | ALC_CTL_BIND_SW, | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2583 | }; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 2584 | static const struct snd_kcontrol_new alc_control_templates[] = { | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2585 | HDA_CODEC_VOLUME(NULL, 0, 0, 0), | 
|  | 2586 | HDA_CODEC_MUTE(NULL, 0, 0, 0), | 
| Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2587 | HDA_BIND_MUTE(NULL, 0, 0, 0), | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 2588 | HDA_BIND_VOL(NULL, 0), | 
|  | 2589 | HDA_BIND_SW(NULL, 0), | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2590 | }; | 
|  | 2591 |  | 
|  | 2592 | /* add dynamic controls */ | 
| Takashi Iwai | f12ab1e | 2007-04-12 15:51:47 +0200 | [diff] [blame] | 2593 | static int add_control(struct alc_spec *spec, int type, const char *name, | 
| Takashi Iwai | 66ceeb6 | 2010-08-30 13:05:52 +0200 | [diff] [blame] | 2594 | int cidx, unsigned long val) | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2595 | { | 
| Takashi Iwai | c8b6bf9b | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2596 | struct snd_kcontrol_new *knew; | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2597 |  | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 2598 | knew = alc_kcontrol_new(spec); | 
| Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2599 | if (!knew) | 
|  | 2600 | return -ENOMEM; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 2601 | *knew = alc_control_templates[type]; | 
| Paulo Marques | 543537b | 2005-06-23 00:09:02 -0700 | [diff] [blame] | 2602 | knew->name = kstrdup(name, GFP_KERNEL); | 
| Takashi Iwai | f12ab1e | 2007-04-12 15:51:47 +0200 | [diff] [blame] | 2603 | if (!knew->name) | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2604 | return -ENOMEM; | 
| Takashi Iwai | 66ceeb6 | 2010-08-30 13:05:52 +0200 | [diff] [blame] | 2605 | knew->index = cidx; | 
| Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 2606 | if (get_amp_nid_(val)) | 
| Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 2607 | knew->subdevice = HDA_SUBDEV_AMP_FLAG; | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2608 | knew->private_value = val; | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2609 | return 0; | 
|  | 2610 | } | 
|  | 2611 |  | 
| Takashi Iwai | 0afe5f8 | 2009-10-02 09:20:00 +0200 | [diff] [blame] | 2612 | static int add_control_with_pfx(struct alc_spec *spec, int type, | 
|  | 2613 | const char *pfx, const char *dir, | 
| Takashi Iwai | 66ceeb6 | 2010-08-30 13:05:52 +0200 | [diff] [blame] | 2614 | const char *sfx, int cidx, unsigned long val) | 
| Takashi Iwai | 0afe5f8 | 2009-10-02 09:20:00 +0200 | [diff] [blame] | 2615 | { | 
|  | 2616 | char name[32]; | 
|  | 2617 | snprintf(name, sizeof(name), "%s %s %s", pfx, dir, sfx); | 
| Takashi Iwai | 66ceeb6 | 2010-08-30 13:05:52 +0200 | [diff] [blame] | 2618 | return add_control(spec, type, name, cidx, val); | 
| Takashi Iwai | 0afe5f8 | 2009-10-02 09:20:00 +0200 | [diff] [blame] | 2619 | } | 
|  | 2620 |  | 
| Takashi Iwai | 66ceeb6 | 2010-08-30 13:05:52 +0200 | [diff] [blame] | 2621 | #define add_pb_vol_ctrl(spec, type, pfx, val)			\ | 
|  | 2622 | add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val) | 
|  | 2623 | #define add_pb_sw_ctrl(spec, type, pfx, val)			\ | 
|  | 2624 | add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val) | 
|  | 2625 | #define __add_pb_vol_ctrl(spec, type, pfx, cidx, val)			\ | 
|  | 2626 | add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val) | 
|  | 2627 | #define __add_pb_sw_ctrl(spec, type, pfx, cidx, val)			\ | 
|  | 2628 | add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val) | 
| Takashi Iwai | 0afe5f8 | 2009-10-02 09:20:00 +0200 | [diff] [blame] | 2629 |  | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 2630 | static const char * const channel_name[4] = { | 
|  | 2631 | "Front", "Surround", "CLFE", "Side" | 
|  | 2632 | }; | 
|  | 2633 |  | 
| Takashi Iwai | 6843ca1 | 2011-06-24 11:03:58 +0200 | [diff] [blame] | 2634 | static const char *alc_get_line_out_pfx(struct alc_spec *spec, int ch, | 
|  | 2635 | bool can_be_master, int *index) | 
| Takashi Iwai | bcb2f0f | 2011-01-10 15:45:23 +0100 | [diff] [blame] | 2636 | { | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 2637 | struct auto_pin_cfg *cfg = &spec->autocfg; | 
|  | 2638 |  | 
| Takashi Iwai | 6843ca1 | 2011-06-24 11:03:58 +0200 | [diff] [blame] | 2639 | *index = 0; | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 2640 | if (cfg->line_outs == 1 && !spec->multi_ios && | 
|  | 2641 | !cfg->hp_outs && !cfg->speaker_outs && can_be_master) | 
| Takashi Iwai | bcb2f0f | 2011-01-10 15:45:23 +0100 | [diff] [blame] | 2642 | return "Master"; | 
|  | 2643 |  | 
|  | 2644 | switch (cfg->line_out_type) { | 
|  | 2645 | case AUTO_PIN_SPEAKER_OUT: | 
| David Henningsson | ebbeb3d | 2011-03-04 14:08:30 +0100 | [diff] [blame] | 2646 | if (cfg->line_outs == 1) | 
|  | 2647 | return "Speaker"; | 
| Takashi Iwai | fbabc24 | 2011-12-07 17:14:20 +0100 | [diff] [blame] | 2648 | if (cfg->line_outs == 2) | 
|  | 2649 | return ch ? "Bass Speaker" : "Speaker"; | 
| David Henningsson | ebbeb3d | 2011-03-04 14:08:30 +0100 | [diff] [blame] | 2650 | break; | 
| Takashi Iwai | bcb2f0f | 2011-01-10 15:45:23 +0100 | [diff] [blame] | 2651 | case AUTO_PIN_HP_OUT: | 
| Takashi Iwai | 6843ca1 | 2011-06-24 11:03:58 +0200 | [diff] [blame] | 2652 | /* for multi-io case, only the primary out */ | 
|  | 2653 | if (ch && spec->multi_ios) | 
|  | 2654 | break; | 
|  | 2655 | *index = ch; | 
| Takashi Iwai | bcb2f0f | 2011-01-10 15:45:23 +0100 | [diff] [blame] | 2656 | return "Headphone"; | 
|  | 2657 | default: | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 2658 | if (cfg->line_outs == 1 && !spec->multi_ios) | 
| Takashi Iwai | bcb2f0f | 2011-01-10 15:45:23 +0100 | [diff] [blame] | 2659 | return "PCM"; | 
|  | 2660 | break; | 
|  | 2661 | } | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 2662 | if (snd_BUG_ON(ch >= ARRAY_SIZE(channel_name))) | 
|  | 2663 | return "PCM"; | 
|  | 2664 |  | 
|  | 2665 | return channel_name[ch]; | 
| Takashi Iwai | bcb2f0f | 2011-01-10 15:45:23 +0100 | [diff] [blame] | 2666 | } | 
|  | 2667 |  | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2668 | /* create input playback/capture controls for the given pin */ | 
| Takashi Iwai | f12ab1e | 2007-04-12 15:51:47 +0200 | [diff] [blame] | 2669 | static int new_analog_input(struct alc_spec *spec, hda_nid_t pin, | 
| Takashi Iwai | 66ceeb6 | 2010-08-30 13:05:52 +0200 | [diff] [blame] | 2670 | const char *ctlname, int ctlidx, | 
| Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 2671 | int idx, hda_nid_t mix_nid) | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2672 | { | 
| Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 2673 | int err; | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2674 |  | 
| Takashi Iwai | 66ceeb6 | 2010-08-30 13:05:52 +0200 | [diff] [blame] | 2675 | err = __add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, ctlname, ctlidx, | 
| Takashi Iwai | f12ab1e | 2007-04-12 15:51:47 +0200 | [diff] [blame] | 2676 | HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT)); | 
|  | 2677 | if (err < 0) | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2678 | return err; | 
| Takashi Iwai | 66ceeb6 | 2010-08-30 13:05:52 +0200 | [diff] [blame] | 2679 | err = __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, ctlidx, | 
| Takashi Iwai | f12ab1e | 2007-04-12 15:51:47 +0200 | [diff] [blame] | 2680 | HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT)); | 
|  | 2681 | if (err < 0) | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2682 | return err; | 
|  | 2683 | return 0; | 
|  | 2684 | } | 
|  | 2685 |  | 
| Takashi Iwai | 05f5f47 | 2009-08-25 13:10:18 +0200 | [diff] [blame] | 2686 | static int alc_is_input_pin(struct hda_codec *codec, hda_nid_t nid) | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2687 | { | 
| Takashi Iwai | 05f5f47 | 2009-08-25 13:10:18 +0200 | [diff] [blame] | 2688 | unsigned int pincap = snd_hda_query_pin_caps(codec, nid); | 
|  | 2689 | return (pincap & AC_PINCAP_IN) != 0; | 
|  | 2690 | } | 
|  | 2691 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 2692 | /* Parse the codec tree and retrieve ADCs and corresponding capsrc MUXs */ | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 2693 | static int alc_auto_fill_adc_caps(struct hda_codec *codec) | 
| Takashi Iwai | b782170 | 2011-07-06 15:12:46 +0200 | [diff] [blame] | 2694 | { | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 2695 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | b782170 | 2011-07-06 15:12:46 +0200 | [diff] [blame] | 2696 | hda_nid_t nid; | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 2697 | hda_nid_t *adc_nids = spec->private_adc_nids; | 
|  | 2698 | hda_nid_t *cap_nids = spec->private_capsrc_nids; | 
|  | 2699 | int max_nums = ARRAY_SIZE(spec->private_adc_nids); | 
| Takashi Iwai | b782170 | 2011-07-06 15:12:46 +0200 | [diff] [blame] | 2700 | int i, nums = 0; | 
|  | 2701 |  | 
| Takashi Iwai | 24de183 | 2011-11-07 17:13:39 +0100 | [diff] [blame] | 2702 | if (spec->shared_mic_hp) | 
|  | 2703 | max_nums = 1; /* no multi streams with the shared HP/mic */ | 
|  | 2704 |  | 
| Takashi Iwai | b782170 | 2011-07-06 15:12:46 +0200 | [diff] [blame] | 2705 | nid = codec->start_nid; | 
|  | 2706 | for (i = 0; i < codec->num_nodes; i++, nid++) { | 
|  | 2707 | hda_nid_t src; | 
|  | 2708 | const hda_nid_t *list; | 
|  | 2709 | unsigned int caps = get_wcaps(codec, nid); | 
|  | 2710 | int type = get_wcaps_type(caps); | 
|  | 2711 |  | 
|  | 2712 | if (type != AC_WID_AUD_IN || (caps & AC_WCAP_DIGITAL)) | 
|  | 2713 | continue; | 
|  | 2714 | adc_nids[nums] = nid; | 
|  | 2715 | cap_nids[nums] = nid; | 
|  | 2716 | src = nid; | 
|  | 2717 | for (;;) { | 
|  | 2718 | int n; | 
|  | 2719 | type = get_wcaps_type(get_wcaps(codec, src)); | 
|  | 2720 | if (type == AC_WID_PIN) | 
|  | 2721 | break; | 
|  | 2722 | if (type == AC_WID_AUD_SEL) { | 
|  | 2723 | cap_nids[nums] = src; | 
|  | 2724 | break; | 
|  | 2725 | } | 
|  | 2726 | n = snd_hda_get_conn_list(codec, src, &list); | 
|  | 2727 | if (n > 1) { | 
|  | 2728 | cap_nids[nums] = src; | 
|  | 2729 | break; | 
|  | 2730 | } else if (n != 1) | 
|  | 2731 | break; | 
|  | 2732 | src = *list; | 
|  | 2733 | } | 
|  | 2734 | if (++nums >= max_nums) | 
|  | 2735 | break; | 
|  | 2736 | } | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 2737 | spec->adc_nids = spec->private_adc_nids; | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 2738 | spec->capsrc_nids = spec->private_capsrc_nids; | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 2739 | spec->num_adc_nids = nums; | 
| Takashi Iwai | b782170 | 2011-07-06 15:12:46 +0200 | [diff] [blame] | 2740 | return nums; | 
|  | 2741 | } | 
|  | 2742 |  | 
| Takashi Iwai | 05f5f47 | 2009-08-25 13:10:18 +0200 | [diff] [blame] | 2743 | /* create playback/capture controls for input pins */ | 
| Takashi Iwai | b782170 | 2011-07-06 15:12:46 +0200 | [diff] [blame] | 2744 | static int alc_auto_create_input_ctls(struct hda_codec *codec) | 
| Takashi Iwai | 05f5f47 | 2009-08-25 13:10:18 +0200 | [diff] [blame] | 2745 | { | 
|  | 2746 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | b782170 | 2011-07-06 15:12:46 +0200 | [diff] [blame] | 2747 | const struct auto_pin_cfg *cfg = &spec->autocfg; | 
|  | 2748 | hda_nid_t mixer = spec->mixer_nid; | 
| Herton Ronaldo Krzesinski | 61b9b9b | 2009-01-28 09:16:33 -0200 | [diff] [blame] | 2749 | struct hda_input_mux *imux = &spec->private_imux[0]; | 
| Takashi Iwai | b782170 | 2011-07-06 15:12:46 +0200 | [diff] [blame] | 2750 | int num_adcs; | 
| Takashi Iwai | b782170 | 2011-07-06 15:12:46 +0200 | [diff] [blame] | 2751 | int i, c, err, idx, type_idx = 0; | 
| David Henningsson | 5322bf2 | 2011-01-05 11:03:56 +0100 | [diff] [blame] | 2752 | const char *prev_label = NULL; | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2753 |  | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 2754 | num_adcs = alc_auto_fill_adc_caps(codec); | 
| Takashi Iwai | b782170 | 2011-07-06 15:12:46 +0200 | [diff] [blame] | 2755 | if (num_adcs < 0) | 
|  | 2756 | return 0; | 
|  | 2757 |  | 
| Takashi Iwai | 66ceeb6 | 2010-08-30 13:05:52 +0200 | [diff] [blame] | 2758 | for (i = 0; i < cfg->num_inputs; i++) { | 
| Takashi Iwai | 05f5f47 | 2009-08-25 13:10:18 +0200 | [diff] [blame] | 2759 | hda_nid_t pin; | 
| Takashi Iwai | 10a20af | 2010-09-09 16:28:02 +0200 | [diff] [blame] | 2760 | const char *label; | 
| Takashi Iwai | 05f5f47 | 2009-08-25 13:10:18 +0200 | [diff] [blame] | 2761 |  | 
| Takashi Iwai | 66ceeb6 | 2010-08-30 13:05:52 +0200 | [diff] [blame] | 2762 | pin = cfg->inputs[i].pin; | 
| Takashi Iwai | 05f5f47 | 2009-08-25 13:10:18 +0200 | [diff] [blame] | 2763 | if (!alc_is_input_pin(codec, pin)) | 
|  | 2764 | continue; | 
|  | 2765 |  | 
| David Henningsson | 5322bf2 | 2011-01-05 11:03:56 +0100 | [diff] [blame] | 2766 | label = hda_get_autocfg_input_label(codec, cfg, i); | 
| Takashi Iwai | 24de183 | 2011-11-07 17:13:39 +0100 | [diff] [blame] | 2767 | if (spec->shared_mic_hp && !strcmp(label, "Misc")) | 
|  | 2768 | label = "Headphone Mic"; | 
| David Henningsson | 5322bf2 | 2011-01-05 11:03:56 +0100 | [diff] [blame] | 2769 | if (prev_label && !strcmp(label, prev_label)) | 
| Takashi Iwai | 66ceeb6 | 2010-08-30 13:05:52 +0200 | [diff] [blame] | 2770 | type_idx++; | 
|  | 2771 | else | 
|  | 2772 | type_idx = 0; | 
| David Henningsson | 5322bf2 | 2011-01-05 11:03:56 +0100 | [diff] [blame] | 2773 | prev_label = label; | 
|  | 2774 |  | 
| Takashi Iwai | 05f5f47 | 2009-08-25 13:10:18 +0200 | [diff] [blame] | 2775 | if (mixer) { | 
|  | 2776 | idx = get_connection_index(codec, mixer, pin); | 
|  | 2777 | if (idx >= 0) { | 
|  | 2778 | err = new_analog_input(spec, pin, | 
| Takashi Iwai | 10a20af | 2010-09-09 16:28:02 +0200 | [diff] [blame] | 2779 | label, type_idx, | 
|  | 2780 | idx, mixer); | 
| Takashi Iwai | 05f5f47 | 2009-08-25 13:10:18 +0200 | [diff] [blame] | 2781 | if (err < 0) | 
|  | 2782 | return err; | 
|  | 2783 | } | 
|  | 2784 | } | 
|  | 2785 |  | 
| Takashi Iwai | b782170 | 2011-07-06 15:12:46 +0200 | [diff] [blame] | 2786 | for (c = 0; c < num_adcs; c++) { | 
| Takashi Iwai | 6107159 | 2011-11-23 07:52:15 +0100 | [diff] [blame] | 2787 | hda_nid_t cap = get_capsrc(spec, c); | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 2788 | idx = get_connection_index(codec, cap, pin); | 
| Takashi Iwai | b782170 | 2011-07-06 15:12:46 +0200 | [diff] [blame] | 2789 | if (idx >= 0) { | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 2790 | spec->imux_pins[imux->num_items] = pin; | 
| Takashi Iwai | b782170 | 2011-07-06 15:12:46 +0200 | [diff] [blame] | 2791 | snd_hda_add_imux_item(imux, label, idx, NULL); | 
|  | 2792 | break; | 
|  | 2793 | } | 
|  | 2794 | } | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2795 | } | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 2796 |  | 
|  | 2797 | spec->num_mux_defs = 1; | 
|  | 2798 | spec->input_mux = imux; | 
|  | 2799 |  | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2800 | return 0; | 
|  | 2801 | } | 
|  | 2802 |  | 
| Takashi Iwai | 24de183 | 2011-11-07 17:13:39 +0100 | [diff] [blame] | 2803 | /* create a shared input with the headphone out */ | 
|  | 2804 | static int alc_auto_create_shared_input(struct hda_codec *codec) | 
|  | 2805 | { | 
|  | 2806 | struct alc_spec *spec = codec->spec; | 
|  | 2807 | struct auto_pin_cfg *cfg = &spec->autocfg; | 
|  | 2808 | unsigned int defcfg; | 
|  | 2809 | hda_nid_t nid; | 
|  | 2810 |  | 
|  | 2811 | /* only one internal input pin? */ | 
|  | 2812 | if (cfg->num_inputs != 1) | 
|  | 2813 | return 0; | 
|  | 2814 | defcfg = snd_hda_codec_get_pincfg(codec, cfg->inputs[0].pin); | 
|  | 2815 | if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT) | 
|  | 2816 | return 0; | 
|  | 2817 |  | 
|  | 2818 | if (cfg->hp_outs == 1 && cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) | 
|  | 2819 | nid = cfg->hp_pins[0]; /* OK, we have a single HP-out */ | 
|  | 2820 | else if (cfg->line_outs == 1 && cfg->line_out_type == AUTO_PIN_HP_OUT) | 
|  | 2821 | nid = cfg->line_out_pins[0]; /* OK, we have a single line-out */ | 
|  | 2822 | else | 
|  | 2823 | return 0; /* both not available */ | 
|  | 2824 |  | 
|  | 2825 | if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_IN)) | 
|  | 2826 | return 0; /* no input */ | 
|  | 2827 |  | 
|  | 2828 | cfg->inputs[1].pin = nid; | 
|  | 2829 | cfg->inputs[1].type = AUTO_PIN_MIC; | 
|  | 2830 | cfg->num_inputs = 2; | 
|  | 2831 | spec->shared_mic_hp = 1; | 
|  | 2832 | snd_printdd("realtek: Enable shared I/O jack on NID 0x%x\n", nid); | 
|  | 2833 | return 0; | 
|  | 2834 | } | 
|  | 2835 |  | 
| Takashi Iwai | f6c7e54 | 2008-02-12 18:32:23 +0100 | [diff] [blame] | 2836 | static void alc_set_pin_output(struct hda_codec *codec, hda_nid_t nid, | 
|  | 2837 | unsigned int pin_type) | 
|  | 2838 | { | 
|  | 2839 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, | 
|  | 2840 | pin_type); | 
|  | 2841 | /* unmute pin */ | 
| Takashi Iwai | 44c0240 | 2011-07-08 15:14:19 +0200 | [diff] [blame] | 2842 | if (nid_has_mute(codec, nid, HDA_OUTPUT)) | 
|  | 2843 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, | 
| Takashi Iwai | d260cdf | 2008-02-13 17:19:35 +0100 | [diff] [blame] | 2844 | AMP_OUT_UNMUTE); | 
| Takashi Iwai | f6c7e54 | 2008-02-12 18:32:23 +0100 | [diff] [blame] | 2845 | } | 
|  | 2846 |  | 
| Takashi Iwai | baba8ee | 2007-04-23 17:17:48 +0200 | [diff] [blame] | 2847 | static int get_pin_type(int line_out_type) | 
|  | 2848 | { | 
|  | 2849 | if (line_out_type == AUTO_PIN_HP_OUT) | 
|  | 2850 | return PIN_HP; | 
|  | 2851 | else | 
|  | 2852 | return PIN_OUT; | 
|  | 2853 | } | 
|  | 2854 |  | 
| Takashi Iwai | 0a7f532 | 2011-07-06 15:15:12 +0200 | [diff] [blame] | 2855 | static void alc_auto_init_analog_input(struct hda_codec *codec) | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2856 | { | 
|  | 2857 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 66ceeb6 | 2010-08-30 13:05:52 +0200 | [diff] [blame] | 2858 | struct auto_pin_cfg *cfg = &spec->autocfg; | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2859 | int i; | 
|  | 2860 |  | 
| Takashi Iwai | 66ceeb6 | 2010-08-30 13:05:52 +0200 | [diff] [blame] | 2861 | for (i = 0; i < cfg->num_inputs; i++) { | 
|  | 2862 | hda_nid_t nid = cfg->inputs[i].pin; | 
| Takashi Iwai | 05f5f47 | 2009-08-25 13:10:18 +0200 | [diff] [blame] | 2863 | if (alc_is_input_pin(codec, nid)) { | 
| Takashi Iwai | 30ea098 | 2010-09-16 18:47:56 +0200 | [diff] [blame] | 2864 | alc_set_input_pin(codec, nid, cfg->inputs[i].type); | 
| Takashi Iwai | 1f0f4b8 | 2011-06-27 10:52:59 +0200 | [diff] [blame] | 2865 | if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) | 
| Takashi Iwai | f12ab1e | 2007-04-12 15:51:47 +0200 | [diff] [blame] | 2866 | snd_hda_codec_write(codec, nid, 0, | 
|  | 2867 | AC_VERB_SET_AMP_GAIN_MUTE, | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2868 | AMP_OUT_MUTE); | 
|  | 2869 | } | 
|  | 2870 | } | 
| Takashi Iwai | 1f0f4b8 | 2011-06-27 10:52:59 +0200 | [diff] [blame] | 2871 |  | 
|  | 2872 | /* mute all loopback inputs */ | 
|  | 2873 | if (spec->mixer_nid) { | 
|  | 2874 | int nums = snd_hda_get_conn_list(codec, spec->mixer_nid, NULL); | 
|  | 2875 | for (i = 0; i < nums; i++) | 
|  | 2876 | snd_hda_codec_write(codec, spec->mixer_nid, 0, | 
|  | 2877 | AC_VERB_SET_AMP_GAIN_MUTE, | 
|  | 2878 | AMP_IN_MUTE(i)); | 
|  | 2879 | } | 
| Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 2880 | } | 
|  | 2881 |  | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2882 | /* convert from MIX nid to DAC */ | 
| Takashi Iwai | 604401a | 2011-04-27 15:14:23 +0200 | [diff] [blame] | 2883 | static hda_nid_t alc_auto_mix_to_dac(struct hda_codec *codec, hda_nid_t nid) | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2884 | { | 
| Takashi Iwai | 604401a | 2011-04-27 15:14:23 +0200 | [diff] [blame] | 2885 | hda_nid_t list[5]; | 
| Takashi Iwai | 1304ac8 | 2011-04-06 15:16:21 +0200 | [diff] [blame] | 2886 | int i, num; | 
|  | 2887 |  | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 2888 | if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_AUD_OUT) | 
|  | 2889 | return nid; | 
| Takashi Iwai | 1304ac8 | 2011-04-06 15:16:21 +0200 | [diff] [blame] | 2890 | num = snd_hda_get_connections(codec, nid, list, ARRAY_SIZE(list)); | 
|  | 2891 | for (i = 0; i < num; i++) { | 
|  | 2892 | if (get_wcaps_type(get_wcaps(codec, list[i])) == AC_WID_AUD_OUT) | 
|  | 2893 | return list[i]; | 
|  | 2894 | } | 
|  | 2895 | return 0; | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2896 | } | 
|  | 2897 |  | 
| Takashi Iwai | 604401a | 2011-04-27 15:14:23 +0200 | [diff] [blame] | 2898 | /* go down to the selector widget before the mixer */ | 
|  | 2899 | static hda_nid_t alc_go_down_to_selector(struct hda_codec *codec, hda_nid_t pin) | 
|  | 2900 | { | 
|  | 2901 | hda_nid_t srcs[5]; | 
|  | 2902 | int num = snd_hda_get_connections(codec, pin, srcs, | 
|  | 2903 | ARRAY_SIZE(srcs)); | 
|  | 2904 | if (num != 1 || | 
|  | 2905 | get_wcaps_type(get_wcaps(codec, srcs[0])) != AC_WID_AUD_SEL) | 
|  | 2906 | return pin; | 
|  | 2907 | return srcs[0]; | 
|  | 2908 | } | 
|  | 2909 |  | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2910 | /* get MIX nid connected to the given pin targeted to DAC */ | 
| Takashi Iwai | 604401a | 2011-04-27 15:14:23 +0200 | [diff] [blame] | 2911 | static hda_nid_t alc_auto_dac_to_mix(struct hda_codec *codec, hda_nid_t pin, | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2912 | hda_nid_t dac) | 
|  | 2913 | { | 
| David Henningsson | cc1c452 | 2010-11-24 14:17:47 +0100 | [diff] [blame] | 2914 | hda_nid_t mix[5]; | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2915 | int i, num; | 
|  | 2916 |  | 
| Takashi Iwai | 604401a | 2011-04-27 15:14:23 +0200 | [diff] [blame] | 2917 | pin = alc_go_down_to_selector(codec, pin); | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2918 | num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix)); | 
|  | 2919 | for (i = 0; i < num; i++) { | 
| Takashi Iwai | 604401a | 2011-04-27 15:14:23 +0200 | [diff] [blame] | 2920 | if (alc_auto_mix_to_dac(codec, mix[i]) == dac) | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2921 | return mix[i]; | 
|  | 2922 | } | 
|  | 2923 | return 0; | 
|  | 2924 | } | 
|  | 2925 |  | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 2926 | /* select the connection from pin to DAC if needed */ | 
|  | 2927 | static int alc_auto_select_dac(struct hda_codec *codec, hda_nid_t pin, | 
|  | 2928 | hda_nid_t dac) | 
|  | 2929 | { | 
|  | 2930 | hda_nid_t mix[5]; | 
|  | 2931 | int i, num; | 
|  | 2932 |  | 
|  | 2933 | pin = alc_go_down_to_selector(codec, pin); | 
|  | 2934 | num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix)); | 
|  | 2935 | if (num < 2) | 
|  | 2936 | return 0; | 
|  | 2937 | for (i = 0; i < num; i++) { | 
|  | 2938 | if (alc_auto_mix_to_dac(codec, mix[i]) == dac) { | 
|  | 2939 | snd_hda_codec_update_cache(codec, pin, 0, | 
|  | 2940 | AC_VERB_SET_CONNECT_SEL, i); | 
|  | 2941 | return 0; | 
|  | 2942 | } | 
|  | 2943 | } | 
|  | 2944 | return 0; | 
|  | 2945 | } | 
|  | 2946 |  | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2947 | /* look for an empty DAC slot */ | 
| Takashi Iwai | 604401a | 2011-04-27 15:14:23 +0200 | [diff] [blame] | 2948 | static hda_nid_t alc_auto_look_for_dac(struct hda_codec *codec, hda_nid_t pin) | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2949 | { | 
|  | 2950 | struct alc_spec *spec = codec->spec; | 
|  | 2951 | hda_nid_t srcs[5]; | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 2952 | int i, num; | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2953 |  | 
| Takashi Iwai | 604401a | 2011-04-27 15:14:23 +0200 | [diff] [blame] | 2954 | pin = alc_go_down_to_selector(codec, pin); | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2955 | num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs)); | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2956 | for (i = 0; i < num; i++) { | 
| Takashi Iwai | 604401a | 2011-04-27 15:14:23 +0200 | [diff] [blame] | 2957 | hda_nid_t nid = alc_auto_mix_to_dac(codec, srcs[i]); | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2958 | if (!nid) | 
|  | 2959 | continue; | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 2960 | if (found_in_nid_list(nid, spec->multiout.dac_nids, | 
| Takashi Iwai | 0a34b42 | 2011-12-07 17:20:30 +0100 | [diff] [blame] | 2961 | ARRAY_SIZE(spec->private_dac_nids))) | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 2962 | continue; | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 2963 | if (found_in_nid_list(nid, spec->multiout.hp_out_nid, | 
|  | 2964 | ARRAY_SIZE(spec->multiout.hp_out_nid))) | 
|  | 2965 | continue; | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 2966 | if (found_in_nid_list(nid, spec->multiout.extra_out_nid, | 
|  | 2967 | ARRAY_SIZE(spec->multiout.extra_out_nid))) | 
|  | 2968 | continue; | 
|  | 2969 | return nid; | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 2970 | } | 
|  | 2971 | return 0; | 
|  | 2972 | } | 
|  | 2973 |  | 
| Takashi Iwai | 07b18f69 | 2011-11-10 15:42:54 +0100 | [diff] [blame] | 2974 | /* check whether the DAC is reachable from the pin */ | 
|  | 2975 | static bool alc_auto_is_dac_reachable(struct hda_codec *codec, | 
|  | 2976 | hda_nid_t pin, hda_nid_t dac) | 
|  | 2977 | { | 
|  | 2978 | hda_nid_t srcs[5]; | 
|  | 2979 | int i, num; | 
|  | 2980 |  | 
|  | 2981 | pin = alc_go_down_to_selector(codec, pin); | 
|  | 2982 | num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs)); | 
|  | 2983 | for (i = 0; i < num; i++) { | 
|  | 2984 | hda_nid_t nid = alc_auto_mix_to_dac(codec, srcs[i]); | 
|  | 2985 | if (nid == dac) | 
|  | 2986 | return true; | 
|  | 2987 | } | 
|  | 2988 | return false; | 
|  | 2989 | } | 
|  | 2990 |  | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 2991 | static hda_nid_t get_dac_if_single(struct hda_codec *codec, hda_nid_t pin) | 
|  | 2992 | { | 
|  | 2993 | hda_nid_t sel = alc_go_down_to_selector(codec, pin); | 
|  | 2994 | if (snd_hda_get_conn_list(codec, sel, NULL) == 1) | 
|  | 2995 | return alc_auto_look_for_dac(codec, pin); | 
|  | 2996 | return 0; | 
|  | 2997 | } | 
|  | 2998 |  | 
| Takashi Iwai | 0a34b42 | 2011-12-07 17:20:30 +0100 | [diff] [blame] | 2999 | /* return 0 if no possible DAC is found, 1 if one or more found */ | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 3000 | static int alc_auto_fill_extra_dacs(struct hda_codec *codec, int num_outs, | 
|  | 3001 | const hda_nid_t *pins, hda_nid_t *dacs) | 
|  | 3002 | { | 
|  | 3003 | int i; | 
|  | 3004 |  | 
|  | 3005 | if (num_outs && !dacs[0]) { | 
|  | 3006 | dacs[0] = alc_auto_look_for_dac(codec, pins[0]); | 
|  | 3007 | if (!dacs[0]) | 
|  | 3008 | return 0; | 
|  | 3009 | } | 
|  | 3010 |  | 
|  | 3011 | for (i = 1; i < num_outs; i++) | 
|  | 3012 | dacs[i] = get_dac_if_single(codec, pins[i]); | 
|  | 3013 | for (i = 1; i < num_outs; i++) { | 
|  | 3014 | if (!dacs[i]) | 
|  | 3015 | dacs[i] = alc_auto_look_for_dac(codec, pins[i]); | 
|  | 3016 | } | 
| Takashi Iwai | 0a34b42 | 2011-12-07 17:20:30 +0100 | [diff] [blame] | 3017 | return 1; | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 3018 | } | 
|  | 3019 |  | 
|  | 3020 | static int alc_auto_fill_multi_ios(struct hda_codec *codec, | 
| Takashi Iwai | 07b18f69 | 2011-11-10 15:42:54 +0100 | [diff] [blame] | 3021 | unsigned int location, int offset); | 
| David Henningsson | fde48a1 | 2011-12-09 18:27:42 +0800 | [diff] [blame] | 3022 | static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec, | 
|  | 3023 | hda_nid_t pin, hda_nid_t dac); | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 3024 |  | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3025 | /* fill in the dac_nids table from the parsed pin configuration */ | 
| Takashi Iwai | 343a04b | 2011-07-06 14:28:39 +0200 | [diff] [blame] | 3026 | static int alc_auto_fill_dac_nids(struct hda_codec *codec) | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3027 | { | 
|  | 3028 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 0a34b42 | 2011-12-07 17:20:30 +0100 | [diff] [blame] | 3029 | struct auto_pin_cfg *cfg = &spec->autocfg; | 
| Takashi Iwai | 07b18f69 | 2011-11-10 15:42:54 +0100 | [diff] [blame] | 3030 | unsigned int location, defcfg; | 
|  | 3031 | int num_pins; | 
| Takashi Iwai | 350434e | 2011-06-30 21:29:12 +0200 | [diff] [blame] | 3032 | bool redone = false; | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3033 | int i; | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3034 |  | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 3035 | again: | 
| Takashi Iwai | 8f398ae | 2011-07-23 18:57:11 +0200 | [diff] [blame] | 3036 | /* set num_dacs once to full for alc_auto_look_for_dac() */ | 
|  | 3037 | spec->multiout.num_dacs = cfg->line_outs; | 
| Takashi Iwai | e23832a | 2011-08-23 18:16:56 +0200 | [diff] [blame] | 3038 | spec->multiout.hp_out_nid[0] = 0; | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 3039 | spec->multiout.extra_out_nid[0] = 0; | 
|  | 3040 | memset(spec->private_dac_nids, 0, sizeof(spec->private_dac_nids)); | 
|  | 3041 | spec->multiout.dac_nids = spec->private_dac_nids; | 
| Takashi Iwai | 0a34b42 | 2011-12-07 17:20:30 +0100 | [diff] [blame] | 3042 | spec->multi_ios = 0; | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 3043 |  | 
|  | 3044 | /* fill hard-wired DACs first */ | 
|  | 3045 | if (!redone) { | 
|  | 3046 | for (i = 0; i < cfg->line_outs; i++) | 
|  | 3047 | spec->private_dac_nids[i] = | 
|  | 3048 | get_dac_if_single(codec, cfg->line_out_pins[i]); | 
|  | 3049 | if (cfg->hp_outs) | 
| Takashi Iwai | e23832a | 2011-08-23 18:16:56 +0200 | [diff] [blame] | 3050 | spec->multiout.hp_out_nid[0] = | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 3051 | get_dac_if_single(codec, cfg->hp_pins[0]); | 
|  | 3052 | if (cfg->speaker_outs) | 
|  | 3053 | spec->multiout.extra_out_nid[0] = | 
|  | 3054 | get_dac_if_single(codec, cfg->speaker_pins[0]); | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3055 | } | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 3056 |  | 
|  | 3057 | for (i = 0; i < cfg->line_outs; i++) { | 
|  | 3058 | hda_nid_t pin = cfg->line_out_pins[i]; | 
|  | 3059 | if (spec->private_dac_nids[i]) | 
|  | 3060 | continue; | 
|  | 3061 | spec->private_dac_nids[i] = alc_auto_look_for_dac(codec, pin); | 
|  | 3062 | if (!spec->private_dac_nids[i] && !redone) { | 
|  | 3063 | /* if we can't find primary DACs, re-probe without | 
|  | 3064 | * checking the hard-wired DACs | 
|  | 3065 | */ | 
|  | 3066 | redone = true; | 
|  | 3067 | goto again; | 
|  | 3068 | } | 
|  | 3069 | } | 
|  | 3070 |  | 
| Takashi Iwai | 8f398ae | 2011-07-23 18:57:11 +0200 | [diff] [blame] | 3071 | /* re-count num_dacs and squash invalid entries */ | 
|  | 3072 | spec->multiout.num_dacs = 0; | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 3073 | for (i = 0; i < cfg->line_outs; i++) { | 
|  | 3074 | if (spec->private_dac_nids[i]) | 
|  | 3075 | spec->multiout.num_dacs++; | 
| Takashi Iwai | 0a34b42 | 2011-12-07 17:20:30 +0100 | [diff] [blame] | 3076 | else { | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 3077 | memmove(spec->private_dac_nids + i, | 
|  | 3078 | spec->private_dac_nids + i + 1, | 
|  | 3079 | sizeof(hda_nid_t) * (cfg->line_outs - i - 1)); | 
| Takashi Iwai | 0a34b42 | 2011-12-07 17:20:30 +0100 | [diff] [blame] | 3080 | spec->private_dac_nids[cfg->line_outs - 1] = 0; | 
|  | 3081 | } | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 3082 | } | 
|  | 3083 |  | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 3084 | if (cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) { | 
|  | 3085 | /* try to fill multi-io first */ | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 3086 | defcfg = snd_hda_codec_get_pincfg(codec, cfg->line_out_pins[0]); | 
|  | 3087 | location = get_defcfg_location(defcfg); | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3088 |  | 
| Takashi Iwai | 07b18f69 | 2011-11-10 15:42:54 +0100 | [diff] [blame] | 3089 | num_pins = alc_auto_fill_multi_ios(codec, location, 0); | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 3090 | if (num_pins > 0) { | 
|  | 3091 | spec->multi_ios = num_pins; | 
|  | 3092 | spec->ext_channel_count = 2; | 
|  | 3093 | spec->multiout.num_dacs = num_pins + 1; | 
|  | 3094 | } | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 3095 | } | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 3096 |  | 
| Takashi Iwai | 716eef0 | 2011-10-21 15:07:42 +0200 | [diff] [blame] | 3097 | if (cfg->line_out_type != AUTO_PIN_HP_OUT) | 
|  | 3098 | alc_auto_fill_extra_dacs(codec, cfg->hp_outs, cfg->hp_pins, | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 3099 | spec->multiout.hp_out_nid); | 
| Takashi Iwai | 0a34b42 | 2011-12-07 17:20:30 +0100 | [diff] [blame] | 3100 | if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) { | 
|  | 3101 | int err = alc_auto_fill_extra_dacs(codec, cfg->speaker_outs, | 
|  | 3102 | cfg->speaker_pins, | 
|  | 3103 | spec->multiout.extra_out_nid); | 
|  | 3104 | /* if no speaker volume is assigned, try again as the primary | 
|  | 3105 | * output | 
|  | 3106 | */ | 
|  | 3107 | if (!err && cfg->speaker_outs > 0 && | 
|  | 3108 | cfg->line_out_type == AUTO_PIN_HP_OUT) { | 
|  | 3109 | cfg->hp_outs = cfg->line_outs; | 
|  | 3110 | memcpy(cfg->hp_pins, cfg->line_out_pins, | 
|  | 3111 | sizeof(cfg->hp_pins)); | 
|  | 3112 | cfg->line_outs = cfg->speaker_outs; | 
|  | 3113 | memcpy(cfg->line_out_pins, cfg->speaker_pins, | 
|  | 3114 | sizeof(cfg->speaker_pins)); | 
|  | 3115 | cfg->speaker_outs = 0; | 
|  | 3116 | memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins)); | 
|  | 3117 | cfg->line_out_type = AUTO_PIN_SPEAKER_OUT; | 
|  | 3118 | redone = false; | 
|  | 3119 | goto again; | 
|  | 3120 | } | 
|  | 3121 | } | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 3122 |  | 
| Takashi Iwai | 07b18f69 | 2011-11-10 15:42:54 +0100 | [diff] [blame] | 3123 | if (!spec->multi_ios && | 
|  | 3124 | cfg->line_out_type == AUTO_PIN_SPEAKER_OUT && | 
|  | 3125 | cfg->hp_outs) { | 
|  | 3126 | /* try multi-ios with HP + inputs */ | 
|  | 3127 | defcfg = snd_hda_codec_get_pincfg(codec, cfg->hp_pins[0]); | 
|  | 3128 | location = get_defcfg_location(defcfg); | 
|  | 3129 |  | 
|  | 3130 | num_pins = alc_auto_fill_multi_ios(codec, location, 1); | 
|  | 3131 | if (num_pins > 0) { | 
|  | 3132 | spec->multi_ios = num_pins; | 
|  | 3133 | spec->ext_channel_count = 2; | 
|  | 3134 | spec->multiout.num_dacs = num_pins + 1; | 
|  | 3135 | } | 
|  | 3136 | } | 
|  | 3137 |  | 
| David Henningsson | fde48a1 | 2011-12-09 18:27:42 +0800 | [diff] [blame] | 3138 | if (cfg->line_out_pins[0]) | 
|  | 3139 | spec->vmaster_nid = | 
|  | 3140 | alc_look_for_out_vol_nid(codec, cfg->line_out_pins[0], | 
|  | 3141 | spec->multiout.dac_nids[0]); | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 3142 | return 0; | 
|  | 3143 | } | 
|  | 3144 |  | 
| Takashi Iwai | 527e4d7 | 2011-10-27 16:33:27 +0200 | [diff] [blame] | 3145 | static inline unsigned int get_ctl_pos(unsigned int data) | 
|  | 3146 | { | 
|  | 3147 | hda_nid_t nid = get_amp_nid_(data); | 
|  | 3148 | unsigned int dir = get_amp_direction_(data); | 
|  | 3149 | return (nid << 1) | dir; | 
|  | 3150 | } | 
|  | 3151 |  | 
|  | 3152 | #define is_ctl_used(bits, data) \ | 
|  | 3153 | test_bit(get_ctl_pos(data), bits) | 
|  | 3154 | #define mark_ctl_usage(bits, data) \ | 
|  | 3155 | set_bit(get_ctl_pos(data), bits) | 
|  | 3156 |  | 
| Takashi Iwai | 343a04b | 2011-07-06 14:28:39 +0200 | [diff] [blame] | 3157 | static int alc_auto_add_vol_ctl(struct hda_codec *codec, | 
| Takashi Iwai | 97aaab7 | 2011-07-06 14:02:55 +0200 | [diff] [blame] | 3158 | const char *pfx, int cidx, | 
|  | 3159 | hda_nid_t nid, unsigned int chs) | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3160 | { | 
| Takashi Iwai | 527e4d7 | 2011-10-27 16:33:27 +0200 | [diff] [blame] | 3161 | struct alc_spec *spec = codec->spec; | 
|  | 3162 | unsigned int val; | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3163 | if (!nid) | 
|  | 3164 | return 0; | 
| Takashi Iwai | 527e4d7 | 2011-10-27 16:33:27 +0200 | [diff] [blame] | 3165 | val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT); | 
|  | 3166 | if (is_ctl_used(spec->vol_ctls, val) && chs != 2) /* exclude LFE */ | 
|  | 3167 | return 0; | 
|  | 3168 | mark_ctl_usage(spec->vol_ctls, val); | 
| Takashi Iwai | 97aaab7 | 2011-07-06 14:02:55 +0200 | [diff] [blame] | 3169 | return __add_pb_vol_ctrl(codec->spec, ALC_CTL_WIDGET_VOL, pfx, cidx, | 
| Takashi Iwai | 527e4d7 | 2011-10-27 16:33:27 +0200 | [diff] [blame] | 3170 | val); | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3171 | } | 
|  | 3172 |  | 
| Takashi Iwai | e29d377 | 2011-11-14 17:13:23 +0100 | [diff] [blame] | 3173 | static int alc_auto_add_stereo_vol(struct hda_codec *codec, | 
|  | 3174 | const char *pfx, int cidx, | 
|  | 3175 | hda_nid_t nid) | 
|  | 3176 | { | 
|  | 3177 | int chs = 1; | 
|  | 3178 | if (get_wcaps(codec, nid) & AC_WCAP_STEREO) | 
|  | 3179 | chs = 3; | 
|  | 3180 | return alc_auto_add_vol_ctl(codec, pfx, cidx, nid, chs); | 
|  | 3181 | } | 
| Takashi Iwai | 97aaab7 | 2011-07-06 14:02:55 +0200 | [diff] [blame] | 3182 |  | 
|  | 3183 | /* create a mute-switch for the given mixer widget; | 
|  | 3184 | * if it has multiple sources (e.g. DAC and loopback), create a bind-mute | 
|  | 3185 | */ | 
| Takashi Iwai | 343a04b | 2011-07-06 14:28:39 +0200 | [diff] [blame] | 3186 | static int alc_auto_add_sw_ctl(struct hda_codec *codec, | 
| Takashi Iwai | 97aaab7 | 2011-07-06 14:02:55 +0200 | [diff] [blame] | 3187 | const char *pfx, int cidx, | 
|  | 3188 | hda_nid_t nid, unsigned int chs) | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3189 | { | 
| Takashi Iwai | 527e4d7 | 2011-10-27 16:33:27 +0200 | [diff] [blame] | 3190 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3191 | int wid_type; | 
| Takashi Iwai | 97aaab7 | 2011-07-06 14:02:55 +0200 | [diff] [blame] | 3192 | int type; | 
|  | 3193 | unsigned long val; | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3194 | if (!nid) | 
|  | 3195 | return 0; | 
|  | 3196 | wid_type = get_wcaps_type(get_wcaps(codec, nid)); | 
|  | 3197 | if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT) { | 
|  | 3198 | type = ALC_CTL_WIDGET_MUTE; | 
|  | 3199 | val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT); | 
|  | 3200 | } else if (snd_hda_get_conn_list(codec, nid, NULL) == 1) { | 
| Takashi Iwai | 97aaab7 | 2011-07-06 14:02:55 +0200 | [diff] [blame] | 3201 | type = ALC_CTL_WIDGET_MUTE; | 
|  | 3202 | val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_INPUT); | 
|  | 3203 | } else { | 
|  | 3204 | type = ALC_CTL_BIND_MUTE; | 
|  | 3205 | val = HDA_COMPOSE_AMP_VAL(nid, chs, 2, HDA_INPUT); | 
|  | 3206 | } | 
| Takashi Iwai | 527e4d7 | 2011-10-27 16:33:27 +0200 | [diff] [blame] | 3207 | if (is_ctl_used(spec->sw_ctls, val) && chs != 2) /* exclude LFE */ | 
|  | 3208 | return 0; | 
|  | 3209 | mark_ctl_usage(spec->sw_ctls, val); | 
| Takashi Iwai | 97aaab7 | 2011-07-06 14:02:55 +0200 | [diff] [blame] | 3210 | return __add_pb_sw_ctrl(codec->spec, type, pfx, cidx, val); | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3211 | } | 
|  | 3212 |  | 
| Takashi Iwai | e29d377 | 2011-11-14 17:13:23 +0100 | [diff] [blame] | 3213 | static int alc_auto_add_stereo_sw(struct hda_codec *codec, const char *pfx, | 
|  | 3214 | int cidx, hda_nid_t nid) | 
|  | 3215 | { | 
|  | 3216 | int chs = 1; | 
|  | 3217 | if (get_wcaps(codec, nid) & AC_WCAP_STEREO) | 
|  | 3218 | chs = 3; | 
|  | 3219 | return alc_auto_add_sw_ctl(codec, pfx, cidx, nid, chs); | 
|  | 3220 | } | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3221 |  | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3222 | static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec, | 
|  | 3223 | hda_nid_t pin, hda_nid_t dac) | 
|  | 3224 | { | 
|  | 3225 | hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac); | 
|  | 3226 | if (nid_has_mute(codec, pin, HDA_OUTPUT)) | 
|  | 3227 | return pin; | 
|  | 3228 | else if (mix && nid_has_mute(codec, mix, HDA_INPUT)) | 
|  | 3229 | return mix; | 
|  | 3230 | else if (nid_has_mute(codec, dac, HDA_OUTPUT)) | 
|  | 3231 | return dac; | 
|  | 3232 | return 0; | 
|  | 3233 | } | 
|  | 3234 |  | 
|  | 3235 | static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec, | 
|  | 3236 | hda_nid_t pin, hda_nid_t dac) | 
|  | 3237 | { | 
|  | 3238 | hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac); | 
|  | 3239 | if (nid_has_volume(codec, dac, HDA_OUTPUT)) | 
|  | 3240 | return dac; | 
|  | 3241 | else if (nid_has_volume(codec, mix, HDA_OUTPUT)) | 
|  | 3242 | return mix; | 
|  | 3243 | else if (nid_has_volume(codec, pin, HDA_OUTPUT)) | 
|  | 3244 | return pin; | 
|  | 3245 | return 0; | 
|  | 3246 | } | 
|  | 3247 |  | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3248 | /* add playback controls from the parsed DAC table */ | 
| Takashi Iwai | 343a04b | 2011-07-06 14:28:39 +0200 | [diff] [blame] | 3249 | static int alc_auto_create_multi_out_ctls(struct hda_codec *codec, | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3250 | const struct auto_pin_cfg *cfg) | 
|  | 3251 | { | 
|  | 3252 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3253 | int i, err, noutputs; | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3254 |  | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3255 | noutputs = cfg->line_outs; | 
| Takashi Iwai | b90bf1d | 2012-01-19 11:42:55 +0100 | [diff] [blame] | 3256 | if (spec->multi_ios > 0 && cfg->line_outs < 3) | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3257 | noutputs += spec->multi_ios; | 
|  | 3258 |  | 
|  | 3259 | for (i = 0; i < noutputs; i++) { | 
| Takashi Iwai | 6843ca1 | 2011-06-24 11:03:58 +0200 | [diff] [blame] | 3260 | const char *name; | 
|  | 3261 | int index; | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3262 | hda_nid_t dac, pin; | 
|  | 3263 | hda_nid_t sw, vol; | 
|  | 3264 |  | 
|  | 3265 | dac = spec->multiout.dac_nids[i]; | 
|  | 3266 | if (!dac) | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3267 | continue; | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3268 | if (i >= cfg->line_outs) | 
|  | 3269 | pin = spec->multi_io[i - 1].pin; | 
|  | 3270 | else | 
|  | 3271 | pin = cfg->line_out_pins[i]; | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3272 |  | 
|  | 3273 | sw = alc_look_for_out_mute_nid(codec, pin, dac); | 
|  | 3274 | vol = alc_look_for_out_vol_nid(codec, pin, dac); | 
| Takashi Iwai | 6843ca1 | 2011-06-24 11:03:58 +0200 | [diff] [blame] | 3275 | name = alc_get_line_out_pfx(spec, i, true, &index); | 
| Takashi Iwai | 9c4e84d | 2011-08-24 17:27:52 +0200 | [diff] [blame] | 3276 | if (!name || !strcmp(name, "CLFE")) { | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3277 | /* Center/LFE */ | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3278 | err = alc_auto_add_vol_ctl(codec, "Center", 0, vol, 1); | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3279 | if (err < 0) | 
|  | 3280 | return err; | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3281 | err = alc_auto_add_vol_ctl(codec, "LFE", 0, vol, 2); | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3282 | if (err < 0) | 
|  | 3283 | return err; | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3284 | err = alc_auto_add_sw_ctl(codec, "Center", 0, sw, 1); | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3285 | if (err < 0) | 
|  | 3286 | return err; | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3287 | err = alc_auto_add_sw_ctl(codec, "LFE", 0, sw, 2); | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3288 | if (err < 0) | 
|  | 3289 | return err; | 
|  | 3290 | } else { | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3291 | err = alc_auto_add_stereo_vol(codec, name, index, vol); | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3292 | if (err < 0) | 
|  | 3293 | return err; | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3294 | err = alc_auto_add_stereo_sw(codec, name, index, sw); | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3295 | if (err < 0) | 
|  | 3296 | return err; | 
|  | 3297 | } | 
|  | 3298 | } | 
|  | 3299 | return 0; | 
|  | 3300 | } | 
|  | 3301 |  | 
| Takashi Iwai | 343a04b | 2011-07-06 14:28:39 +0200 | [diff] [blame] | 3302 | static int alc_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin, | 
| Takashi Iwai | 766ddee | 2011-12-07 16:55:19 +0100 | [diff] [blame] | 3303 | hda_nid_t dac, const char *pfx, | 
|  | 3304 | int cidx) | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3305 | { | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3306 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3307 | hda_nid_t sw, vol; | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3308 | int err; | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3309 |  | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 3310 | if (!dac) { | 
| Takashi Iwai | 527e4d7 | 2011-10-27 16:33:27 +0200 | [diff] [blame] | 3311 | unsigned int val; | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3312 | /* the corresponding DAC is already occupied */ | 
|  | 3313 | if (!(get_wcaps(codec, pin) & AC_WCAP_OUT_AMP)) | 
|  | 3314 | return 0; /* no way */ | 
|  | 3315 | /* create a switch only */ | 
| Takashi Iwai | 527e4d7 | 2011-10-27 16:33:27 +0200 | [diff] [blame] | 3316 | val = HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT); | 
|  | 3317 | if (is_ctl_used(spec->sw_ctls, val)) | 
|  | 3318 | return 0; /* already created */ | 
|  | 3319 | mark_ctl_usage(spec->sw_ctls, val); | 
| Takashi Iwai | 766ddee | 2011-12-07 16:55:19 +0100 | [diff] [blame] | 3320 | return __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx, cidx, val); | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3321 | } | 
|  | 3322 |  | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3323 | sw = alc_look_for_out_mute_nid(codec, pin, dac); | 
|  | 3324 | vol = alc_look_for_out_vol_nid(codec, pin, dac); | 
| Takashi Iwai | 766ddee | 2011-12-07 16:55:19 +0100 | [diff] [blame] | 3325 | err = alc_auto_add_stereo_vol(codec, pfx, cidx, vol); | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3326 | if (err < 0) | 
| Takashi Iwai | 24fb917 | 2008-09-02 14:48:20 +0200 | [diff] [blame] | 3327 | return err; | 
| Takashi Iwai | 766ddee | 2011-12-07 16:55:19 +0100 | [diff] [blame] | 3328 | err = alc_auto_add_stereo_sw(codec, pfx, cidx, sw); | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3329 | if (err < 0) | 
|  | 3330 | return err; | 
| Takashi Iwai | 3af9ee6 | 2011-06-27 12:34:01 +0200 | [diff] [blame] | 3331 | return 0; | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3332 | } | 
|  | 3333 |  | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 3334 | static struct hda_bind_ctls *new_bind_ctl(struct hda_codec *codec, | 
|  | 3335 | unsigned int nums, | 
|  | 3336 | struct hda_ctl_ops *ops) | 
|  | 3337 | { | 
|  | 3338 | struct alc_spec *spec = codec->spec; | 
|  | 3339 | struct hda_bind_ctls **ctlp, *ctl; | 
|  | 3340 | snd_array_init(&spec->bind_ctls, sizeof(ctl), 8); | 
|  | 3341 | ctlp = snd_array_new(&spec->bind_ctls); | 
|  | 3342 | if (!ctlp) | 
|  | 3343 | return NULL; | 
|  | 3344 | ctl = kzalloc(sizeof(*ctl) + sizeof(long) * (nums + 1), GFP_KERNEL); | 
|  | 3345 | *ctlp = ctl; | 
|  | 3346 | if (ctl) | 
|  | 3347 | ctl->ops = ops; | 
|  | 3348 | return ctl; | 
|  | 3349 | } | 
|  | 3350 |  | 
|  | 3351 | /* add playback controls for speaker and HP outputs */ | 
|  | 3352 | static int alc_auto_create_extra_outs(struct hda_codec *codec, int num_pins, | 
|  | 3353 | const hda_nid_t *pins, | 
|  | 3354 | const hda_nid_t *dacs, | 
|  | 3355 | const char *pfx) | 
|  | 3356 | { | 
|  | 3357 | struct alc_spec *spec = codec->spec; | 
|  | 3358 | struct hda_bind_ctls *ctl; | 
|  | 3359 | char name[32]; | 
|  | 3360 | int i, n, err; | 
|  | 3361 |  | 
|  | 3362 | if (!num_pins || !pins[0]) | 
|  | 3363 | return 0; | 
|  | 3364 |  | 
| Takashi Iwai | 527e4d7 | 2011-10-27 16:33:27 +0200 | [diff] [blame] | 3365 | if (num_pins == 1) { | 
|  | 3366 | hda_nid_t dac = *dacs; | 
|  | 3367 | if (!dac) | 
|  | 3368 | dac = spec->multiout.dac_nids[0]; | 
| Takashi Iwai | 766ddee | 2011-12-07 16:55:19 +0100 | [diff] [blame] | 3369 | return alc_auto_create_extra_out(codec, *pins, dac, pfx, 0); | 
| Takashi Iwai | 527e4d7 | 2011-10-27 16:33:27 +0200 | [diff] [blame] | 3370 | } | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 3371 |  | 
|  | 3372 | if (dacs[num_pins - 1]) { | 
|  | 3373 | /* OK, we have a multi-output system with individual volumes */ | 
|  | 3374 | for (i = 0; i < num_pins; i++) { | 
| Takashi Iwai | 766ddee | 2011-12-07 16:55:19 +0100 | [diff] [blame] | 3375 | if (num_pins >= 3) { | 
|  | 3376 | snprintf(name, sizeof(name), "%s %s", | 
|  | 3377 | pfx, channel_name[i]); | 
|  | 3378 | err = alc_auto_create_extra_out(codec, pins[i], dacs[i], | 
|  | 3379 | name, 0); | 
|  | 3380 | } else { | 
|  | 3381 | err = alc_auto_create_extra_out(codec, pins[i], dacs[i], | 
|  | 3382 | pfx, i); | 
|  | 3383 | } | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 3384 | if (err < 0) | 
|  | 3385 | return err; | 
|  | 3386 | } | 
|  | 3387 | return 0; | 
|  | 3388 | } | 
|  | 3389 |  | 
|  | 3390 | /* Let's create a bind-controls */ | 
|  | 3391 | ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_sw); | 
|  | 3392 | if (!ctl) | 
|  | 3393 | return -ENOMEM; | 
|  | 3394 | n = 0; | 
|  | 3395 | for (i = 0; i < num_pins; i++) { | 
|  | 3396 | if (get_wcaps(codec, pins[i]) & AC_WCAP_OUT_AMP) | 
|  | 3397 | ctl->values[n++] = | 
|  | 3398 | HDA_COMPOSE_AMP_VAL(pins[i], 3, 0, HDA_OUTPUT); | 
|  | 3399 | } | 
|  | 3400 | if (n) { | 
|  | 3401 | snprintf(name, sizeof(name), "%s Playback Switch", pfx); | 
|  | 3402 | err = add_control(spec, ALC_CTL_BIND_SW, name, 0, (long)ctl); | 
|  | 3403 | if (err < 0) | 
|  | 3404 | return err; | 
|  | 3405 | } | 
|  | 3406 |  | 
|  | 3407 | ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_vol); | 
|  | 3408 | if (!ctl) | 
|  | 3409 | return -ENOMEM; | 
|  | 3410 | n = 0; | 
|  | 3411 | for (i = 0; i < num_pins; i++) { | 
|  | 3412 | hda_nid_t vol; | 
|  | 3413 | if (!pins[i] || !dacs[i]) | 
|  | 3414 | continue; | 
|  | 3415 | vol = alc_look_for_out_vol_nid(codec, pins[i], dacs[i]); | 
|  | 3416 | if (vol) | 
|  | 3417 | ctl->values[n++] = | 
|  | 3418 | HDA_COMPOSE_AMP_VAL(vol, 3, 0, HDA_OUTPUT); | 
|  | 3419 | } | 
|  | 3420 | if (n) { | 
|  | 3421 | snprintf(name, sizeof(name), "%s Playback Volume", pfx); | 
|  | 3422 | err = add_control(spec, ALC_CTL_BIND_VOL, name, 0, (long)ctl); | 
|  | 3423 | if (err < 0) | 
|  | 3424 | return err; | 
|  | 3425 | } | 
|  | 3426 | return 0; | 
|  | 3427 | } | 
|  | 3428 |  | 
| Takashi Iwai | 343a04b | 2011-07-06 14:28:39 +0200 | [diff] [blame] | 3429 | static int alc_auto_create_hp_out(struct hda_codec *codec) | 
|  | 3430 | { | 
|  | 3431 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | e23832a | 2011-08-23 18:16:56 +0200 | [diff] [blame] | 3432 | return alc_auto_create_extra_outs(codec, spec->autocfg.hp_outs, | 
|  | 3433 | spec->autocfg.hp_pins, | 
|  | 3434 | spec->multiout.hp_out_nid, | 
|  | 3435 | "Headphone"); | 
| Takashi Iwai | 343a04b | 2011-07-06 14:28:39 +0200 | [diff] [blame] | 3436 | } | 
|  | 3437 |  | 
|  | 3438 | static int alc_auto_create_speaker_out(struct hda_codec *codec) | 
|  | 3439 | { | 
|  | 3440 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 3441 | return alc_auto_create_extra_outs(codec, spec->autocfg.speaker_outs, | 
|  | 3442 | spec->autocfg.speaker_pins, | 
|  | 3443 | spec->multiout.extra_out_nid, | 
|  | 3444 | "Speaker"); | 
| Takashi Iwai | 343a04b | 2011-07-06 14:28:39 +0200 | [diff] [blame] | 3445 | } | 
|  | 3446 |  | 
| Takashi Iwai | 343a04b | 2011-07-06 14:28:39 +0200 | [diff] [blame] | 3447 | static void alc_auto_set_output_and_unmute(struct hda_codec *codec, | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3448 | hda_nid_t pin, int pin_type, | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3449 | hda_nid_t dac) | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3450 | { | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3451 | int i, num; | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3452 | hda_nid_t nid, mix = 0; | 
| Takashi Iwai | ce503f3 | 2010-07-30 10:37:29 +0200 | [diff] [blame] | 3453 | hda_nid_t srcs[HDA_MAX_CONNECTIONS]; | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3454 |  | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3455 | alc_set_pin_output(codec, pin, pin_type); | 
|  | 3456 | nid = alc_go_down_to_selector(codec, pin); | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3457 | num = snd_hda_get_connections(codec, nid, srcs, ARRAY_SIZE(srcs)); | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3458 | for (i = 0; i < num; i++) { | 
| Takashi Iwai | 604401a | 2011-04-27 15:14:23 +0200 | [diff] [blame] | 3459 | if (alc_auto_mix_to_dac(codec, srcs[i]) != dac) | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3460 | continue; | 
| Takashi Iwai | cd51155 | 2011-07-06 13:10:42 +0200 | [diff] [blame] | 3461 | mix = srcs[i]; | 
|  | 3462 | break; | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3463 | } | 
| Takashi Iwai | cd51155 | 2011-07-06 13:10:42 +0200 | [diff] [blame] | 3464 | if (!mix) | 
|  | 3465 | return; | 
|  | 3466 |  | 
|  | 3467 | /* need the manual connection? */ | 
|  | 3468 | if (num > 1) | 
|  | 3469 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, i); | 
|  | 3470 | /* unmute mixer widget inputs */ | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3471 | if (nid_has_mute(codec, mix, HDA_INPUT)) { | 
|  | 3472 | snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE, | 
| Takashi Iwai | cd51155 | 2011-07-06 13:10:42 +0200 | [diff] [blame] | 3473 | AMP_IN_UNMUTE(0)); | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3474 | snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE, | 
| Takashi Iwai | cd51155 | 2011-07-06 13:10:42 +0200 | [diff] [blame] | 3475 | AMP_IN_UNMUTE(1)); | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3476 | } | 
| Takashi Iwai | cd51155 | 2011-07-06 13:10:42 +0200 | [diff] [blame] | 3477 | /* initialize volume */ | 
| Takashi Iwai | afcd551 | 2011-07-08 11:07:59 +0200 | [diff] [blame] | 3478 | nid = alc_look_for_out_vol_nid(codec, pin, dac); | 
|  | 3479 | if (nid) | 
|  | 3480 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, | 
|  | 3481 | AMP_OUT_ZERO); | 
| Takashi Iwai | 43dea22 | 2011-11-06 11:25:34 +0100 | [diff] [blame] | 3482 |  | 
|  | 3483 | /* unmute DAC if it's not assigned to a mixer */ | 
|  | 3484 | nid = alc_look_for_out_mute_nid(codec, pin, dac); | 
|  | 3485 | if (nid == mix && nid_has_mute(codec, dac, HDA_OUTPUT)) | 
|  | 3486 | snd_hda_codec_write(codec, dac, 0, AC_VERB_SET_AMP_GAIN_MUTE, | 
|  | 3487 | AMP_OUT_ZERO); | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3488 | } | 
|  | 3489 |  | 
| Takashi Iwai | 343a04b | 2011-07-06 14:28:39 +0200 | [diff] [blame] | 3490 | static void alc_auto_init_multi_out(struct hda_codec *codec) | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3491 | { | 
|  | 3492 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3493 | int pin_type = get_pin_type(spec->autocfg.line_out_type); | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3494 | int i; | 
|  | 3495 |  | 
|  | 3496 | for (i = 0; i <= HDA_SIDE; i++) { | 
|  | 3497 | hda_nid_t nid = spec->autocfg.line_out_pins[i]; | 
|  | 3498 | if (nid) | 
| Takashi Iwai | 343a04b | 2011-07-06 14:28:39 +0200 | [diff] [blame] | 3499 | alc_auto_set_output_and_unmute(codec, nid, pin_type, | 
| Takashi Iwai | 7085ec1 | 2009-10-02 09:03:58 +0200 | [diff] [blame] | 3500 | spec->multiout.dac_nids[i]); | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3501 | } | 
|  | 3502 | } | 
|  | 3503 |  | 
| Takashi Iwai | 343a04b | 2011-07-06 14:28:39 +0200 | [diff] [blame] | 3504 | static void alc_auto_init_extra_out(struct hda_codec *codec) | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3505 | { | 
|  | 3506 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 8cd0775 | 2011-08-23 15:16:22 +0200 | [diff] [blame] | 3507 | int i; | 
| Takashi Iwai | 675c1aa | 2011-08-23 12:36:28 +0200 | [diff] [blame] | 3508 | hda_nid_t pin, dac; | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3509 |  | 
| David Henningsson | 636030e | 2011-10-12 19:26:03 +0200 | [diff] [blame] | 3510 | for (i = 0; i < spec->autocfg.hp_outs; i++) { | 
| Takashi Iwai | 716eef0 | 2011-10-21 15:07:42 +0200 | [diff] [blame] | 3511 | if (spec->autocfg.line_out_type == AUTO_PIN_HP_OUT) | 
|  | 3512 | break; | 
| Takashi Iwai | e23832a | 2011-08-23 18:16:56 +0200 | [diff] [blame] | 3513 | pin = spec->autocfg.hp_pins[i]; | 
|  | 3514 | if (!pin) | 
|  | 3515 | break; | 
|  | 3516 | dac = spec->multiout.hp_out_nid[i]; | 
|  | 3517 | if (!dac) { | 
|  | 3518 | if (i > 0 && spec->multiout.hp_out_nid[0]) | 
|  | 3519 | dac = spec->multiout.hp_out_nid[0]; | 
|  | 3520 | else | 
|  | 3521 | dac = spec->multiout.dac_nids[0]; | 
|  | 3522 | } | 
| Takashi Iwai | 675c1aa | 2011-08-23 12:36:28 +0200 | [diff] [blame] | 3523 | alc_auto_set_output_and_unmute(codec, pin, PIN_HP, dac); | 
|  | 3524 | } | 
| Takashi Iwai | 8cd0775 | 2011-08-23 15:16:22 +0200 | [diff] [blame] | 3525 | for (i = 0; i < spec->autocfg.speaker_outs; i++) { | 
| Takashi Iwai | 716eef0 | 2011-10-21 15:07:42 +0200 | [diff] [blame] | 3526 | if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT) | 
|  | 3527 | break; | 
| Takashi Iwai | 8cd0775 | 2011-08-23 15:16:22 +0200 | [diff] [blame] | 3528 | pin = spec->autocfg.speaker_pins[i]; | 
|  | 3529 | if (!pin) | 
|  | 3530 | break; | 
|  | 3531 | dac = spec->multiout.extra_out_nid[i]; | 
|  | 3532 | if (!dac) { | 
|  | 3533 | if (i > 0 && spec->multiout.extra_out_nid[0]) | 
|  | 3534 | dac = spec->multiout.extra_out_nid[0]; | 
|  | 3535 | else | 
|  | 3536 | dac = spec->multiout.dac_nids[0]; | 
|  | 3537 | } | 
| Takashi Iwai | 675c1aa | 2011-08-23 12:36:28 +0200 | [diff] [blame] | 3538 | alc_auto_set_output_and_unmute(codec, pin, PIN_OUT, dac); | 
|  | 3539 | } | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 3540 | } | 
|  | 3541 |  | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3542 | /* | 
|  | 3543 | * multi-io helper | 
|  | 3544 | */ | 
|  | 3545 | static int alc_auto_fill_multi_ios(struct hda_codec *codec, | 
| Takashi Iwai | 07b18f69 | 2011-11-10 15:42:54 +0100 | [diff] [blame] | 3546 | unsigned int location, | 
|  | 3547 | int offset) | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3548 | { | 
|  | 3549 | struct alc_spec *spec = codec->spec; | 
|  | 3550 | struct auto_pin_cfg *cfg = &spec->autocfg; | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 3551 | hda_nid_t prime_dac = spec->private_dac_nids[0]; | 
| Takashi Iwai | 07b18f69 | 2011-11-10 15:42:54 +0100 | [diff] [blame] | 3552 | int type, i, dacs, num_pins = 0; | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3553 |  | 
| Takashi Iwai | 07b18f69 | 2011-11-10 15:42:54 +0100 | [diff] [blame] | 3554 | dacs = spec->multiout.num_dacs; | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3555 | for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) { | 
|  | 3556 | for (i = 0; i < cfg->num_inputs; i++) { | 
|  | 3557 | hda_nid_t nid = cfg->inputs[i].pin; | 
| Takashi Iwai | 07b18f69 | 2011-11-10 15:42:54 +0100 | [diff] [blame] | 3558 | hda_nid_t dac = 0; | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3559 | unsigned int defcfg, caps; | 
|  | 3560 | if (cfg->inputs[i].type != type) | 
|  | 3561 | continue; | 
|  | 3562 | defcfg = snd_hda_codec_get_pincfg(codec, nid); | 
|  | 3563 | if (get_defcfg_connect(defcfg) != AC_JACK_PORT_COMPLEX) | 
|  | 3564 | continue; | 
|  | 3565 | if (location && get_defcfg_location(defcfg) != location) | 
|  | 3566 | continue; | 
|  | 3567 | caps = snd_hda_query_pin_caps(codec, nid); | 
|  | 3568 | if (!(caps & AC_PINCAP_OUT)) | 
|  | 3569 | continue; | 
| Takashi Iwai | 07b18f69 | 2011-11-10 15:42:54 +0100 | [diff] [blame] | 3570 | if (offset && offset + num_pins < dacs) { | 
|  | 3571 | dac = spec->private_dac_nids[offset + num_pins]; | 
|  | 3572 | if (!alc_auto_is_dac_reachable(codec, nid, dac)) | 
|  | 3573 | dac = 0; | 
|  | 3574 | } | 
|  | 3575 | if (!dac) | 
|  | 3576 | dac = alc_auto_look_for_dac(codec, nid); | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3577 | if (!dac) | 
|  | 3578 | continue; | 
|  | 3579 | spec->multi_io[num_pins].pin = nid; | 
|  | 3580 | spec->multi_io[num_pins].dac = dac; | 
|  | 3581 | num_pins++; | 
| Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 3582 | spec->private_dac_nids[spec->multiout.num_dacs++] = dac; | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3583 | } | 
|  | 3584 | } | 
| Takashi Iwai | 07b18f69 | 2011-11-10 15:42:54 +0100 | [diff] [blame] | 3585 | spec->multiout.num_dacs = dacs; | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 3586 | if (num_pins < 2) { | 
|  | 3587 | /* clear up again */ | 
| Takashi Iwai | 07b18f69 | 2011-11-10 15:42:54 +0100 | [diff] [blame] | 3588 | memset(spec->private_dac_nids + dacs, 0, | 
|  | 3589 | sizeof(hda_nid_t) * (AUTO_CFG_MAX_OUTS - dacs)); | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 3590 | spec->private_dac_nids[0] = prime_dac; | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3591 | return 0; | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 3592 | } | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3593 | return num_pins; | 
|  | 3594 | } | 
|  | 3595 |  | 
|  | 3596 | static int alc_auto_ch_mode_info(struct snd_kcontrol *kcontrol, | 
|  | 3597 | struct snd_ctl_elem_info *uinfo) | 
|  | 3598 | { | 
|  | 3599 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 
|  | 3600 | struct alc_spec *spec = codec->spec; | 
|  | 3601 |  | 
|  | 3602 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; | 
|  | 3603 | uinfo->count = 1; | 
|  | 3604 | uinfo->value.enumerated.items = spec->multi_ios + 1; | 
|  | 3605 | if (uinfo->value.enumerated.item > spec->multi_ios) | 
|  | 3606 | uinfo->value.enumerated.item = spec->multi_ios; | 
|  | 3607 | sprintf(uinfo->value.enumerated.name, "%dch", | 
|  | 3608 | (uinfo->value.enumerated.item + 1) * 2); | 
|  | 3609 | return 0; | 
|  | 3610 | } | 
|  | 3611 |  | 
|  | 3612 | static int alc_auto_ch_mode_get(struct snd_kcontrol *kcontrol, | 
|  | 3613 | struct snd_ctl_elem_value *ucontrol) | 
|  | 3614 | { | 
|  | 3615 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 
|  | 3616 | struct alc_spec *spec = codec->spec; | 
|  | 3617 | ucontrol->value.enumerated.item[0] = (spec->ext_channel_count - 1) / 2; | 
|  | 3618 | return 0; | 
|  | 3619 | } | 
|  | 3620 |  | 
|  | 3621 | static int alc_set_multi_io(struct hda_codec *codec, int idx, bool output) | 
|  | 3622 | { | 
|  | 3623 | struct alc_spec *spec = codec->spec; | 
|  | 3624 | hda_nid_t nid = spec->multi_io[idx].pin; | 
|  | 3625 |  | 
|  | 3626 | if (!spec->multi_io[idx].ctl_in) | 
|  | 3627 | spec->multi_io[idx].ctl_in = | 
|  | 3628 | snd_hda_codec_read(codec, nid, 0, | 
|  | 3629 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); | 
|  | 3630 | if (output) { | 
|  | 3631 | snd_hda_codec_update_cache(codec, nid, 0, | 
|  | 3632 | AC_VERB_SET_PIN_WIDGET_CONTROL, | 
|  | 3633 | PIN_OUT); | 
|  | 3634 | if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) | 
|  | 3635 | snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0, | 
|  | 3636 | HDA_AMP_MUTE, 0); | 
|  | 3637 | alc_auto_select_dac(codec, nid, spec->multi_io[idx].dac); | 
|  | 3638 | } else { | 
|  | 3639 | if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) | 
|  | 3640 | snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0, | 
|  | 3641 | HDA_AMP_MUTE, HDA_AMP_MUTE); | 
|  | 3642 | snd_hda_codec_update_cache(codec, nid, 0, | 
|  | 3643 | AC_VERB_SET_PIN_WIDGET_CONTROL, | 
|  | 3644 | spec->multi_io[idx].ctl_in); | 
|  | 3645 | } | 
|  | 3646 | return 0; | 
|  | 3647 | } | 
|  | 3648 |  | 
|  | 3649 | static int alc_auto_ch_mode_put(struct snd_kcontrol *kcontrol, | 
|  | 3650 | struct snd_ctl_elem_value *ucontrol) | 
|  | 3651 | { | 
|  | 3652 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 
|  | 3653 | struct alc_spec *spec = codec->spec; | 
|  | 3654 | int i, ch; | 
|  | 3655 |  | 
|  | 3656 | ch = ucontrol->value.enumerated.item[0]; | 
|  | 3657 | if (ch < 0 || ch > spec->multi_ios) | 
|  | 3658 | return -EINVAL; | 
|  | 3659 | if (ch == (spec->ext_channel_count - 1) / 2) | 
|  | 3660 | return 0; | 
|  | 3661 | spec->ext_channel_count = (ch + 1) * 2; | 
|  | 3662 | for (i = 0; i < spec->multi_ios; i++) | 
|  | 3663 | alc_set_multi_io(codec, i, i < ch); | 
|  | 3664 | spec->multiout.max_channels = spec->ext_channel_count; | 
| Takashi Iwai | 7b1655f | 2011-07-14 15:31:21 +0200 | [diff] [blame] | 3665 | if (spec->need_dac_fix && !spec->const_channel_count) | 
|  | 3666 | spec->multiout.num_dacs = spec->multiout.max_channels / 2; | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3667 | return 1; | 
|  | 3668 | } | 
|  | 3669 |  | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 3670 | static const struct snd_kcontrol_new alc_auto_channel_mode_enum = { | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3671 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
|  | 3672 | .name = "Channel Mode", | 
|  | 3673 | .info = alc_auto_ch_mode_info, | 
|  | 3674 | .get = alc_auto_ch_mode_get, | 
|  | 3675 | .put = alc_auto_ch_mode_put, | 
|  | 3676 | }; | 
|  | 3677 |  | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 3678 | static int alc_auto_add_multi_channel_mode(struct hda_codec *codec) | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3679 | { | 
|  | 3680 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3681 |  | 
| Takashi Iwai | c267468 | 2011-08-24 17:57:44 +0200 | [diff] [blame] | 3682 | if (spec->multi_ios > 0) { | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3683 | struct snd_kcontrol_new *knew; | 
|  | 3684 |  | 
|  | 3685 | knew = alc_kcontrol_new(spec); | 
|  | 3686 | if (!knew) | 
|  | 3687 | return -ENOMEM; | 
|  | 3688 | *knew = alc_auto_channel_mode_enum; | 
|  | 3689 | knew->name = kstrdup("Channel Mode", GFP_KERNEL); | 
|  | 3690 | if (!knew->name) | 
|  | 3691 | return -ENOMEM; | 
| Takashi Iwai | ce764ab | 2011-04-27 16:35:23 +0200 | [diff] [blame] | 3692 | } | 
|  | 3693 | return 0; | 
|  | 3694 | } | 
|  | 3695 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 3696 | /* filter out invalid adc_nids (and capsrc_nids) that don't give all | 
|  | 3697 | * active input pins | 
|  | 3698 | */ | 
|  | 3699 | static void alc_remove_invalid_adc_nids(struct hda_codec *codec) | 
|  | 3700 | { | 
|  | 3701 | struct alc_spec *spec = codec->spec; | 
|  | 3702 | const struct hda_input_mux *imux; | 
|  | 3703 | hda_nid_t adc_nids[ARRAY_SIZE(spec->private_adc_nids)]; | 
|  | 3704 | hda_nid_t capsrc_nids[ARRAY_SIZE(spec->private_adc_nids)]; | 
|  | 3705 | int i, n, nums; | 
|  | 3706 |  | 
|  | 3707 | imux = spec->input_mux; | 
|  | 3708 | if (!imux) | 
|  | 3709 | return; | 
|  | 3710 | if (spec->dyn_adc_switch) | 
|  | 3711 | return; | 
|  | 3712 |  | 
|  | 3713 | nums = 0; | 
|  | 3714 | for (n = 0; n < spec->num_adc_nids; n++) { | 
|  | 3715 | hda_nid_t cap = spec->private_capsrc_nids[n]; | 
|  | 3716 | int num_conns = snd_hda_get_conn_list(codec, cap, NULL); | 
|  | 3717 | for (i = 0; i < imux->num_items; i++) { | 
|  | 3718 | hda_nid_t pin = spec->imux_pins[i]; | 
|  | 3719 | if (pin) { | 
|  | 3720 | if (get_connection_index(codec, cap, pin) < 0) | 
|  | 3721 | break; | 
|  | 3722 | } else if (num_conns <= imux->items[i].index) | 
|  | 3723 | break; | 
|  | 3724 | } | 
|  | 3725 | if (i >= imux->num_items) { | 
|  | 3726 | adc_nids[nums] = spec->private_adc_nids[n]; | 
|  | 3727 | capsrc_nids[nums++] = cap; | 
|  | 3728 | } | 
|  | 3729 | } | 
|  | 3730 | if (!nums) { | 
|  | 3731 | /* check whether ADC-switch is possible */ | 
|  | 3732 | if (!alc_check_dyn_adc_switch(codec)) { | 
|  | 3733 | printk(KERN_WARNING "hda_codec: %s: no valid ADC found;" | 
|  | 3734 | " using fallback 0x%x\n", | 
|  | 3735 | codec->chip_name, spec->private_adc_nids[0]); | 
|  | 3736 | spec->num_adc_nids = 1; | 
|  | 3737 | spec->auto_mic = 0; | 
|  | 3738 | return; | 
|  | 3739 | } | 
|  | 3740 | } else if (nums != spec->num_adc_nids) { | 
|  | 3741 | memcpy(spec->private_adc_nids, adc_nids, | 
|  | 3742 | nums * sizeof(hda_nid_t)); | 
|  | 3743 | memcpy(spec->private_capsrc_nids, capsrc_nids, | 
|  | 3744 | nums * sizeof(hda_nid_t)); | 
|  | 3745 | spec->num_adc_nids = nums; | 
|  | 3746 | } | 
|  | 3747 |  | 
|  | 3748 | if (spec->auto_mic) | 
|  | 3749 | alc_auto_mic_check_imux(codec); /* check auto-mic setups */ | 
|  | 3750 | else if (spec->input_mux->num_items == 1) | 
|  | 3751 | spec->num_adc_nids = 1; /* reduce to a single ADC */ | 
|  | 3752 | } | 
|  | 3753 |  | 
|  | 3754 | /* | 
|  | 3755 | * initialize ADC paths | 
|  | 3756 | */ | 
|  | 3757 | static void alc_auto_init_adc(struct hda_codec *codec, int adc_idx) | 
|  | 3758 | { | 
|  | 3759 | struct alc_spec *spec = codec->spec; | 
|  | 3760 | hda_nid_t nid; | 
|  | 3761 |  | 
|  | 3762 | nid = spec->adc_nids[adc_idx]; | 
|  | 3763 | /* mute ADC */ | 
| Takashi Iwai | 44c0240 | 2011-07-08 15:14:19 +0200 | [diff] [blame] | 3764 | if (nid_has_mute(codec, nid, HDA_INPUT)) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 3765 | snd_hda_codec_write(codec, nid, 0, | 
|  | 3766 | AC_VERB_SET_AMP_GAIN_MUTE, | 
|  | 3767 | AMP_IN_MUTE(0)); | 
|  | 3768 | return; | 
|  | 3769 | } | 
|  | 3770 | if (!spec->capsrc_nids) | 
|  | 3771 | return; | 
|  | 3772 | nid = spec->capsrc_nids[adc_idx]; | 
| Takashi Iwai | 44c0240 | 2011-07-08 15:14:19 +0200 | [diff] [blame] | 3773 | if (nid_has_mute(codec, nid, HDA_OUTPUT)) | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 3774 | snd_hda_codec_write(codec, nid, 0, | 
|  | 3775 | AC_VERB_SET_AMP_GAIN_MUTE, | 
|  | 3776 | AMP_OUT_MUTE); | 
|  | 3777 | } | 
|  | 3778 |  | 
|  | 3779 | static void alc_auto_init_input_src(struct hda_codec *codec) | 
|  | 3780 | { | 
|  | 3781 | struct alc_spec *spec = codec->spec; | 
|  | 3782 | int c, nums; | 
|  | 3783 |  | 
|  | 3784 | for (c = 0; c < spec->num_adc_nids; c++) | 
|  | 3785 | alc_auto_init_adc(codec, c); | 
|  | 3786 | if (spec->dyn_adc_switch) | 
|  | 3787 | nums = 1; | 
|  | 3788 | else | 
|  | 3789 | nums = spec->num_adc_nids; | 
|  | 3790 | for (c = 0; c < nums; c++) | 
|  | 3791 | alc_mux_select(codec, 0, spec->cur_mux[c], true); | 
|  | 3792 | } | 
|  | 3793 |  | 
|  | 3794 | /* add mic boosts if needed */ | 
|  | 3795 | static int alc_auto_add_mic_boost(struct hda_codec *codec) | 
|  | 3796 | { | 
|  | 3797 | struct alc_spec *spec = codec->spec; | 
|  | 3798 | struct auto_pin_cfg *cfg = &spec->autocfg; | 
|  | 3799 | int i, err; | 
|  | 3800 | int type_idx = 0; | 
|  | 3801 | hda_nid_t nid; | 
|  | 3802 | const char *prev_label = NULL; | 
|  | 3803 |  | 
|  | 3804 | for (i = 0; i < cfg->num_inputs; i++) { | 
|  | 3805 | if (cfg->inputs[i].type > AUTO_PIN_MIC) | 
|  | 3806 | break; | 
|  | 3807 | nid = cfg->inputs[i].pin; | 
|  | 3808 | if (get_wcaps(codec, nid) & AC_WCAP_IN_AMP) { | 
|  | 3809 | const char *label; | 
|  | 3810 | char boost_label[32]; | 
|  | 3811 |  | 
|  | 3812 | label = hda_get_autocfg_input_label(codec, cfg, i); | 
| Takashi Iwai | 24de183 | 2011-11-07 17:13:39 +0100 | [diff] [blame] | 3813 | if (spec->shared_mic_hp && !strcmp(label, "Misc")) | 
|  | 3814 | label = "Headphone Mic"; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 3815 | if (prev_label && !strcmp(label, prev_label)) | 
|  | 3816 | type_idx++; | 
|  | 3817 | else | 
|  | 3818 | type_idx = 0; | 
|  | 3819 | prev_label = label; | 
|  | 3820 |  | 
|  | 3821 | snprintf(boost_label, sizeof(boost_label), | 
|  | 3822 | "%s Boost Volume", label); | 
|  | 3823 | err = add_control(spec, ALC_CTL_WIDGET_VOL, | 
|  | 3824 | boost_label, type_idx, | 
|  | 3825 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT)); | 
|  | 3826 | if (err < 0) | 
|  | 3827 | return err; | 
|  | 3828 | } | 
|  | 3829 | } | 
|  | 3830 | return 0; | 
|  | 3831 | } | 
|  | 3832 |  | 
|  | 3833 | /* select or unmute the given capsrc route */ | 
|  | 3834 | static void select_or_unmute_capsrc(struct hda_codec *codec, hda_nid_t cap, | 
|  | 3835 | int idx) | 
|  | 3836 | { | 
|  | 3837 | if (get_wcaps_type(get_wcaps(codec, cap)) == AC_WID_AUD_MIX) { | 
|  | 3838 | snd_hda_codec_amp_stereo(codec, cap, HDA_INPUT, idx, | 
|  | 3839 | HDA_AMP_MUTE, 0); | 
|  | 3840 | } else if (snd_hda_get_conn_list(codec, cap, NULL) > 1) { | 
|  | 3841 | snd_hda_codec_write_cache(codec, cap, 0, | 
|  | 3842 | AC_VERB_SET_CONNECT_SEL, idx); | 
|  | 3843 | } | 
|  | 3844 | } | 
|  | 3845 |  | 
|  | 3846 | /* set the default connection to that pin */ | 
|  | 3847 | static int init_capsrc_for_pin(struct hda_codec *codec, hda_nid_t pin) | 
|  | 3848 | { | 
|  | 3849 | struct alc_spec *spec = codec->spec; | 
|  | 3850 | int i; | 
|  | 3851 |  | 
|  | 3852 | if (!pin) | 
|  | 3853 | return 0; | 
|  | 3854 | for (i = 0; i < spec->num_adc_nids; i++) { | 
| Takashi Iwai | 6107159 | 2011-11-23 07:52:15 +0100 | [diff] [blame] | 3855 | hda_nid_t cap = get_capsrc(spec, i); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 3856 | int idx; | 
|  | 3857 |  | 
|  | 3858 | idx = get_connection_index(codec, cap, pin); | 
|  | 3859 | if (idx < 0) | 
|  | 3860 | continue; | 
|  | 3861 | select_or_unmute_capsrc(codec, cap, idx); | 
|  | 3862 | return i; /* return the found index */ | 
|  | 3863 | } | 
|  | 3864 | return -1; /* not found */ | 
|  | 3865 | } | 
|  | 3866 |  | 
|  | 3867 | /* initialize some special cases for input sources */ | 
|  | 3868 | static void alc_init_special_input_src(struct hda_codec *codec) | 
|  | 3869 | { | 
|  | 3870 | struct alc_spec *spec = codec->spec; | 
|  | 3871 | int i; | 
|  | 3872 |  | 
|  | 3873 | for (i = 0; i < spec->autocfg.num_inputs; i++) | 
|  | 3874 | init_capsrc_for_pin(codec, spec->autocfg.inputs[i].pin); | 
|  | 3875 | } | 
|  | 3876 |  | 
|  | 3877 | /* assign appropriate capture mixers */ | 
|  | 3878 | static void set_capture_mixer(struct hda_codec *codec) | 
|  | 3879 | { | 
|  | 3880 | struct alc_spec *spec = codec->spec; | 
|  | 3881 | static const struct snd_kcontrol_new *caps[2][3] = { | 
|  | 3882 | { alc_capture_mixer_nosrc1, | 
|  | 3883 | alc_capture_mixer_nosrc2, | 
|  | 3884 | alc_capture_mixer_nosrc3 }, | 
|  | 3885 | { alc_capture_mixer1, | 
|  | 3886 | alc_capture_mixer2, | 
|  | 3887 | alc_capture_mixer3 }, | 
|  | 3888 | }; | 
|  | 3889 |  | 
|  | 3890 | /* check whether either of ADC or MUX has a volume control */ | 
| Takashi Iwai | 44c0240 | 2011-07-08 15:14:19 +0200 | [diff] [blame] | 3891 | if (!nid_has_volume(codec, spec->adc_nids[0], HDA_INPUT)) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 3892 | if (!spec->capsrc_nids) | 
|  | 3893 | return; /* no volume */ | 
| Takashi Iwai | 44c0240 | 2011-07-08 15:14:19 +0200 | [diff] [blame] | 3894 | if (!nid_has_volume(codec, spec->capsrc_nids[0], HDA_OUTPUT)) | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 3895 | return; /* no volume in capsrc, too */ | 
|  | 3896 | spec->vol_in_capsrc = 1; | 
|  | 3897 | } | 
|  | 3898 |  | 
|  | 3899 | if (spec->num_adc_nids > 0) { | 
|  | 3900 | int mux = 0; | 
|  | 3901 | int num_adcs = 0; | 
|  | 3902 |  | 
|  | 3903 | if (spec->input_mux && spec->input_mux->num_items > 1) | 
|  | 3904 | mux = 1; | 
|  | 3905 | if (spec->auto_mic) { | 
|  | 3906 | num_adcs = 1; | 
|  | 3907 | mux = 0; | 
|  | 3908 | } else if (spec->dyn_adc_switch) | 
|  | 3909 | num_adcs = 1; | 
|  | 3910 | if (!num_adcs) { | 
|  | 3911 | if (spec->num_adc_nids > 3) | 
|  | 3912 | spec->num_adc_nids = 3; | 
|  | 3913 | else if (!spec->num_adc_nids) | 
|  | 3914 | return; | 
|  | 3915 | num_adcs = spec->num_adc_nids; | 
|  | 3916 | } | 
|  | 3917 | spec->cap_mixer = caps[mux][num_adcs - 1]; | 
|  | 3918 | } | 
|  | 3919 | } | 
|  | 3920 |  | 
|  | 3921 | /* | 
| Takashi Iwai | e477062 | 2011-07-08 11:11:35 +0200 | [diff] [blame] | 3922 | * standard auto-parser initializations | 
|  | 3923 | */ | 
|  | 3924 | static void alc_auto_init_std(struct hda_codec *codec) | 
|  | 3925 | { | 
|  | 3926 | struct alc_spec *spec = codec->spec; | 
|  | 3927 | alc_auto_init_multi_out(codec); | 
|  | 3928 | alc_auto_init_extra_out(codec); | 
|  | 3929 | alc_auto_init_analog_input(codec); | 
|  | 3930 | alc_auto_init_input_src(codec); | 
|  | 3931 | alc_auto_init_digital(codec); | 
|  | 3932 | if (spec->unsol_event) | 
|  | 3933 | alc_inithook(codec); | 
|  | 3934 | } | 
|  | 3935 |  | 
|  | 3936 | /* | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 3937 | * Digital-beep handlers | 
|  | 3938 | */ | 
|  | 3939 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | 
|  | 3940 | #define set_beep_amp(spec, nid, idx, dir) \ | 
|  | 3941 | ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir)) | 
|  | 3942 |  | 
|  | 3943 | static const struct snd_pci_quirk beep_white_list[] = { | 
|  | 3944 | SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1), | 
|  | 3945 | SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1), | 
|  | 3946 | SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1), | 
|  | 3947 | SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1), | 
|  | 3948 | SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1), | 
|  | 3949 | {} | 
|  | 3950 | }; | 
|  | 3951 |  | 
|  | 3952 | static inline int has_cdefine_beep(struct hda_codec *codec) | 
|  | 3953 | { | 
|  | 3954 | struct alc_spec *spec = codec->spec; | 
|  | 3955 | const struct snd_pci_quirk *q; | 
|  | 3956 | q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list); | 
|  | 3957 | if (q) | 
|  | 3958 | return q->value; | 
|  | 3959 | return spec->cdefine.enable_pcbeep; | 
|  | 3960 | } | 
|  | 3961 | #else | 
|  | 3962 | #define set_beep_amp(spec, nid, idx, dir) /* NOP */ | 
|  | 3963 | #define has_cdefine_beep(codec)		0 | 
|  | 3964 | #endif | 
|  | 3965 |  | 
|  | 3966 | /* parse the BIOS configuration and set up the alc_spec */ | 
|  | 3967 | /* return 1 if successful, 0 if the proper config is not found, | 
|  | 3968 | * or a negative error code | 
|  | 3969 | */ | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 3970 | static int alc_parse_auto_config(struct hda_codec *codec, | 
|  | 3971 | const hda_nid_t *ignore_nids, | 
|  | 3972 | const hda_nid_t *ssid_nids) | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 3973 | { | 
|  | 3974 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 3975 | struct auto_pin_cfg *cfg = &spec->autocfg; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 3976 | int err; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 3977 |  | 
| Takashi Iwai | 53c334a | 2011-08-23 18:27:14 +0200 | [diff] [blame] | 3978 | err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids, | 
|  | 3979 | spec->parse_flags); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 3980 | if (err < 0) | 
|  | 3981 | return err; | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 3982 | if (!cfg->line_outs) { | 
|  | 3983 | if (cfg->dig_outs || cfg->dig_in_pin) { | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 3984 | spec->multiout.max_channels = 2; | 
|  | 3985 | spec->no_analog = 1; | 
|  | 3986 | goto dig_only; | 
|  | 3987 | } | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 3988 | return 0; /* can't find valid BIOS pin config */ | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 3989 | } | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 3990 |  | 
| Takashi Iwai | 0650367 | 2011-10-06 08:27:19 +0200 | [diff] [blame] | 3991 | if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT && | 
|  | 3992 | cfg->line_outs <= cfg->hp_outs) { | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 3993 | /* use HP as primary out */ | 
|  | 3994 | cfg->speaker_outs = cfg->line_outs; | 
|  | 3995 | memcpy(cfg->speaker_pins, cfg->line_out_pins, | 
|  | 3996 | sizeof(cfg->speaker_pins)); | 
|  | 3997 | cfg->line_outs = cfg->hp_outs; | 
|  | 3998 | memcpy(cfg->line_out_pins, cfg->hp_pins, sizeof(cfg->hp_pins)); | 
|  | 3999 | cfg->hp_outs = 0; | 
|  | 4000 | memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins)); | 
|  | 4001 | cfg->line_out_type = AUTO_PIN_HP_OUT; | 
|  | 4002 | } | 
|  | 4003 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4004 | err = alc_auto_fill_dac_nids(codec); | 
|  | 4005 | if (err < 0) | 
|  | 4006 | return err; | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 4007 | err = alc_auto_add_multi_channel_mode(codec); | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4008 | if (err < 0) | 
|  | 4009 | return err; | 
| Takashi Iwai | 23c09b0 | 2011-08-19 09:05:35 +0200 | [diff] [blame] | 4010 | err = alc_auto_create_multi_out_ctls(codec, cfg); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4011 | if (err < 0) | 
|  | 4012 | return err; | 
|  | 4013 | err = alc_auto_create_hp_out(codec); | 
|  | 4014 | if (err < 0) | 
|  | 4015 | return err; | 
|  | 4016 | err = alc_auto_create_speaker_out(codec); | 
|  | 4017 | if (err < 0) | 
|  | 4018 | return err; | 
| Takashi Iwai | 24de183 | 2011-11-07 17:13:39 +0100 | [diff] [blame] | 4019 | err = alc_auto_create_shared_input(codec); | 
|  | 4020 | if (err < 0) | 
|  | 4021 | return err; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4022 | err = alc_auto_create_input_ctls(codec); | 
|  | 4023 | if (err < 0) | 
|  | 4024 | return err; | 
|  | 4025 |  | 
|  | 4026 | spec->multiout.max_channels = spec->multiout.num_dacs * 2; | 
|  | 4027 |  | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4028 | dig_only: | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4029 | alc_auto_parse_digital(codec); | 
|  | 4030 |  | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4031 | if (!spec->no_analog) | 
|  | 4032 | alc_remove_invalid_adc_nids(codec); | 
|  | 4033 |  | 
|  | 4034 | if (ssid_nids) | 
|  | 4035 | alc_ssid_check(codec, ssid_nids); | 
|  | 4036 |  | 
|  | 4037 | if (!spec->no_analog) { | 
|  | 4038 | alc_auto_check_switches(codec); | 
|  | 4039 | err = alc_auto_add_mic_boost(codec); | 
|  | 4040 | if (err < 0) | 
|  | 4041 | return err; | 
|  | 4042 | } | 
|  | 4043 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4044 | if (spec->kctls.list) | 
|  | 4045 | add_mixer(spec, spec->kctls.list); | 
|  | 4046 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4047 | return 1; | 
|  | 4048 | } | 
|  | 4049 |  | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4050 | static int alc880_parse_auto_config(struct hda_codec *codec) | 
|  | 4051 | { | 
|  | 4052 | static const hda_nid_t alc880_ignore[] = { 0x1d, 0 }; | 
|  | 4053 | static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 }; | 
|  | 4054 | return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids); | 
|  | 4055 | } | 
|  | 4056 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4057 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 4058 | static const struct hda_amp_list alc880_loopbacks[] = { | 
|  | 4059 | { 0x0b, HDA_INPUT, 0 }, | 
|  | 4060 | { 0x0b, HDA_INPUT, 1 }, | 
|  | 4061 | { 0x0b, HDA_INPUT, 2 }, | 
|  | 4062 | { 0x0b, HDA_INPUT, 3 }, | 
|  | 4063 | { 0x0b, HDA_INPUT, 4 }, | 
|  | 4064 | { } /* end */ | 
|  | 4065 | }; | 
|  | 4066 | #endif | 
|  | 4067 |  | 
|  | 4068 | /* | 
| Takashi Iwai | ee3b296 | 2011-11-15 14:26:54 +0100 | [diff] [blame] | 4069 | * ALC880 fix-ups | 
|  | 4070 | */ | 
|  | 4071 | enum { | 
|  | 4072 | ALC880_FIXUP_GPIO2, | 
|  | 4073 | ALC880_FIXUP_MEDION_RIM, | 
|  | 4074 | }; | 
|  | 4075 |  | 
|  | 4076 | static const struct alc_fixup alc880_fixups[] = { | 
|  | 4077 | [ALC880_FIXUP_GPIO2] = { | 
|  | 4078 | .type = ALC_FIXUP_VERBS, | 
|  | 4079 | .v.verbs = alc_gpio2_init_verbs, | 
|  | 4080 | }, | 
|  | 4081 | [ALC880_FIXUP_MEDION_RIM] = { | 
|  | 4082 | .type = ALC_FIXUP_VERBS, | 
|  | 4083 | .v.verbs = (const struct hda_verb[]) { | 
|  | 4084 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | 
|  | 4085 | { 0x20, AC_VERB_SET_PROC_COEF,  0x3060 }, | 
|  | 4086 | { } | 
|  | 4087 | }, | 
|  | 4088 | .chained = true, | 
|  | 4089 | .chain_id = ALC880_FIXUP_GPIO2, | 
|  | 4090 | }, | 
|  | 4091 | }; | 
|  | 4092 |  | 
|  | 4093 | static const struct snd_pci_quirk alc880_fixup_tbl[] = { | 
|  | 4094 | SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM), | 
|  | 4095 | {} | 
|  | 4096 | }; | 
|  | 4097 |  | 
|  | 4098 |  | 
|  | 4099 | /* | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4100 | * board setups | 
|  | 4101 | */ | 
|  | 4102 | #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS | 
|  | 4103 | #define alc_board_config \ | 
|  | 4104 | snd_hda_check_board_config | 
|  | 4105 | #define alc_board_codec_sid_config \ | 
|  | 4106 | snd_hda_check_board_codec_sid_config | 
|  | 4107 | #include "alc_quirks.c" | 
|  | 4108 | #else | 
|  | 4109 | #define alc_board_config(codec, nums, models, tbl)	-1 | 
|  | 4110 | #define alc_board_codec_sid_config(codec, nums, models, tbl)	-1 | 
|  | 4111 | #define setup_preset(codec, x)	/* NOP */ | 
|  | 4112 | #endif | 
|  | 4113 |  | 
|  | 4114 | /* | 
|  | 4115 | * OK, here we have finally the patch for ALC880 | 
|  | 4116 | */ | 
|  | 4117 | #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS | 
|  | 4118 | #include "alc880_quirks.c" | 
|  | 4119 | #endif | 
|  | 4120 |  | 
|  | 4121 | static int patch_alc880(struct hda_codec *codec) | 
|  | 4122 | { | 
|  | 4123 | struct alc_spec *spec; | 
|  | 4124 | int board_config; | 
|  | 4125 | int err; | 
|  | 4126 |  | 
|  | 4127 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 
|  | 4128 | if (spec == NULL) | 
|  | 4129 | return -ENOMEM; | 
|  | 4130 |  | 
|  | 4131 | codec->spec = spec; | 
|  | 4132 |  | 
|  | 4133 | spec->mixer_nid = 0x0b; | 
| Takashi Iwai | 7b1655f | 2011-07-14 15:31:21 +0200 | [diff] [blame] | 4134 | spec->need_dac_fix = 1; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4135 |  | 
|  | 4136 | board_config = alc_board_config(codec, ALC880_MODEL_LAST, | 
|  | 4137 | alc880_models, alc880_cfg_tbl); | 
|  | 4138 | if (board_config < 0) { | 
|  | 4139 | printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n", | 
|  | 4140 | codec->chip_name); | 
|  | 4141 | board_config = ALC_MODEL_AUTO; | 
|  | 4142 | } | 
|  | 4143 |  | 
|  | 4144 | if (board_config == ALC_MODEL_AUTO) { | 
| Takashi Iwai | ee3b296 | 2011-11-15 14:26:54 +0100 | [diff] [blame] | 4145 | alc_pick_fixup(codec, NULL, alc880_fixup_tbl, alc880_fixups); | 
|  | 4146 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE); | 
|  | 4147 | } | 
|  | 4148 |  | 
|  | 4149 | if (board_config == ALC_MODEL_AUTO) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4150 | /* automatic parse from the BIOS config */ | 
|  | 4151 | err = alc880_parse_auto_config(codec); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4152 | if (err < 0) | 
|  | 4153 | goto error; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4154 | #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS | 
|  | 4155 | else if (!err) { | 
|  | 4156 | printk(KERN_INFO | 
|  | 4157 | "hda_codec: Cannot set up configuration " | 
|  | 4158 | "from BIOS.  Using 3-stack mode...\n"); | 
|  | 4159 | board_config = ALC880_3ST; | 
|  | 4160 | } | 
|  | 4161 | #endif | 
|  | 4162 | } | 
|  | 4163 |  | 
| David Henningsson | fde48a1 | 2011-12-09 18:27:42 +0800 | [diff] [blame] | 4164 | if (board_config != ALC_MODEL_AUTO) { | 
|  | 4165 | spec->vmaster_nid = 0x0c; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4166 | setup_preset(codec, &alc880_presets[board_config]); | 
| David Henningsson | fde48a1 | 2011-12-09 18:27:42 +0800 | [diff] [blame] | 4167 | } | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4168 |  | 
| Takashi Iwai | 60a6a84 | 2011-07-27 14:01:24 +0200 | [diff] [blame] | 4169 | if (!spec->no_analog && !spec->adc_nids) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4170 | alc_auto_fill_adc_caps(codec); | 
|  | 4171 | alc_rebuild_imux_for_auto_mic(codec); | 
|  | 4172 | alc_remove_invalid_adc_nids(codec); | 
|  | 4173 | } | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4174 |  | 
|  | 4175 | if (!spec->no_analog && !spec->cap_mixer) | 
|  | 4176 | set_capture_mixer(codec); | 
|  | 4177 |  | 
|  | 4178 | if (!spec->no_analog) { | 
|  | 4179 | err = snd_hda_attach_beep_device(codec, 0x1); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4180 | if (err < 0) | 
|  | 4181 | goto error; | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4182 | set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); | 
|  | 4183 | } | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4184 |  | 
| Takashi Iwai | ee3b296 | 2011-11-15 14:26:54 +0100 | [diff] [blame] | 4185 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); | 
|  | 4186 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4187 | codec->patch_ops = alc_patch_ops; | 
|  | 4188 | if (board_config == ALC_MODEL_AUTO) | 
| Takashi Iwai | e477062 | 2011-07-08 11:11:35 +0200 | [diff] [blame] | 4189 | spec->init_hook = alc_auto_init_std; | 
| Takashi Iwai | f21d78e | 2012-01-19 12:10:29 +0100 | [diff] [blame] | 4190 | else | 
|  | 4191 | codec->patch_ops.build_controls = __alc_build_controls; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4192 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 4193 | if (!spec->loopback.amplist) | 
|  | 4194 | spec->loopback.amplist = alc880_loopbacks; | 
|  | 4195 | #endif | 
|  | 4196 |  | 
|  | 4197 | return 0; | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4198 |  | 
|  | 4199 | error: | 
|  | 4200 | alc_free(codec); | 
|  | 4201 | return err; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4202 | } | 
|  | 4203 |  | 
|  | 4204 |  | 
|  | 4205 | /* | 
|  | 4206 | * ALC260 support | 
|  | 4207 | */ | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4208 | static int alc260_parse_auto_config(struct hda_codec *codec) | 
|  | 4209 | { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4210 | static const hda_nid_t alc260_ignore[] = { 0x17, 0 }; | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4211 | static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 }; | 
|  | 4212 | return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4213 | } | 
|  | 4214 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4215 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 4216 | static const struct hda_amp_list alc260_loopbacks[] = { | 
|  | 4217 | { 0x07, HDA_INPUT, 0 }, | 
|  | 4218 | { 0x07, HDA_INPUT, 1 }, | 
|  | 4219 | { 0x07, HDA_INPUT, 2 }, | 
|  | 4220 | { 0x07, HDA_INPUT, 3 }, | 
|  | 4221 | { 0x07, HDA_INPUT, 4 }, | 
|  | 4222 | { } /* end */ | 
|  | 4223 | }; | 
|  | 4224 | #endif | 
|  | 4225 |  | 
|  | 4226 | /* | 
|  | 4227 | * Pin config fixes | 
|  | 4228 | */ | 
|  | 4229 | enum { | 
|  | 4230 | PINFIX_HP_DC5750, | 
|  | 4231 | }; | 
|  | 4232 |  | 
|  | 4233 | static const struct alc_fixup alc260_fixups[] = { | 
|  | 4234 | [PINFIX_HP_DC5750] = { | 
|  | 4235 | .type = ALC_FIXUP_PINS, | 
|  | 4236 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 4237 | { 0x11, 0x90130110 }, /* speaker */ | 
|  | 4238 | { } | 
|  | 4239 | } | 
|  | 4240 | }, | 
|  | 4241 | }; | 
|  | 4242 |  | 
|  | 4243 | static const struct snd_pci_quirk alc260_fixup_tbl[] = { | 
|  | 4244 | SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", PINFIX_HP_DC5750), | 
|  | 4245 | {} | 
|  | 4246 | }; | 
|  | 4247 |  | 
|  | 4248 | /* | 
|  | 4249 | */ | 
|  | 4250 | #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS | 
|  | 4251 | #include "alc260_quirks.c" | 
|  | 4252 | #endif | 
|  | 4253 |  | 
|  | 4254 | static int patch_alc260(struct hda_codec *codec) | 
|  | 4255 | { | 
|  | 4256 | struct alc_spec *spec; | 
|  | 4257 | int err, board_config; | 
|  | 4258 |  | 
|  | 4259 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 
|  | 4260 | if (spec == NULL) | 
|  | 4261 | return -ENOMEM; | 
|  | 4262 |  | 
|  | 4263 | codec->spec = spec; | 
|  | 4264 |  | 
|  | 4265 | spec->mixer_nid = 0x07; | 
|  | 4266 |  | 
|  | 4267 | board_config = alc_board_config(codec, ALC260_MODEL_LAST, | 
|  | 4268 | alc260_models, alc260_cfg_tbl); | 
|  | 4269 | if (board_config < 0) { | 
|  | 4270 | snd_printd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n", | 
|  | 4271 | codec->chip_name); | 
|  | 4272 | board_config = ALC_MODEL_AUTO; | 
|  | 4273 | } | 
|  | 4274 |  | 
|  | 4275 | if (board_config == ALC_MODEL_AUTO) { | 
|  | 4276 | alc_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups); | 
|  | 4277 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE); | 
|  | 4278 | } | 
|  | 4279 |  | 
|  | 4280 | if (board_config == ALC_MODEL_AUTO) { | 
|  | 4281 | /* automatic parse from the BIOS config */ | 
|  | 4282 | err = alc260_parse_auto_config(codec); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4283 | if (err < 0) | 
|  | 4284 | goto error; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4285 | #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS | 
|  | 4286 | else if (!err) { | 
|  | 4287 | printk(KERN_INFO | 
|  | 4288 | "hda_codec: Cannot set up configuration " | 
|  | 4289 | "from BIOS.  Using base mode...\n"); | 
|  | 4290 | board_config = ALC260_BASIC; | 
|  | 4291 | } | 
|  | 4292 | #endif | 
|  | 4293 | } | 
|  | 4294 |  | 
| David Henningsson | fde48a1 | 2011-12-09 18:27:42 +0800 | [diff] [blame] | 4295 | if (board_config != ALC_MODEL_AUTO) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4296 | setup_preset(codec, &alc260_presets[board_config]); | 
| David Henningsson | fde48a1 | 2011-12-09 18:27:42 +0800 | [diff] [blame] | 4297 | spec->vmaster_nid = 0x08; | 
|  | 4298 | } | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4299 |  | 
| Takashi Iwai | 60a6a84 | 2011-07-27 14:01:24 +0200 | [diff] [blame] | 4300 | if (!spec->no_analog && !spec->adc_nids) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4301 | alc_auto_fill_adc_caps(codec); | 
|  | 4302 | alc_rebuild_imux_for_auto_mic(codec); | 
|  | 4303 | alc_remove_invalid_adc_nids(codec); | 
|  | 4304 | } | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4305 |  | 
|  | 4306 | if (!spec->no_analog && !spec->cap_mixer) | 
|  | 4307 | set_capture_mixer(codec); | 
|  | 4308 |  | 
|  | 4309 | if (!spec->no_analog) { | 
|  | 4310 | err = snd_hda_attach_beep_device(codec, 0x1); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4311 | if (err < 0) | 
|  | 4312 | goto error; | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4313 | set_beep_amp(spec, 0x07, 0x05, HDA_INPUT); | 
|  | 4314 | } | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4315 |  | 
|  | 4316 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); | 
|  | 4317 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4318 | codec->patch_ops = alc_patch_ops; | 
|  | 4319 | if (board_config == ALC_MODEL_AUTO) | 
| Takashi Iwai | 8452a98 | 2011-07-08 16:19:48 +0200 | [diff] [blame] | 4320 | spec->init_hook = alc_auto_init_std; | 
| Takashi Iwai | f21d78e | 2012-01-19 12:10:29 +0100 | [diff] [blame] | 4321 | else | 
|  | 4322 | codec->patch_ops.build_controls = __alc_build_controls; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4323 | spec->shutup = alc_eapd_shutup; | 
|  | 4324 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 4325 | if (!spec->loopback.amplist) | 
|  | 4326 | spec->loopback.amplist = alc260_loopbacks; | 
|  | 4327 | #endif | 
|  | 4328 |  | 
|  | 4329 | return 0; | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4330 |  | 
|  | 4331 | error: | 
|  | 4332 | alc_free(codec); | 
|  | 4333 | return err; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4334 | } | 
|  | 4335 |  | 
|  | 4336 |  | 
|  | 4337 | /* | 
|  | 4338 | * ALC882/883/885/888/889 support | 
|  | 4339 | * | 
|  | 4340 | * ALC882 is almost identical with ALC880 but has cleaner and more flexible | 
|  | 4341 | * configuration.  Each pin widget can choose any input DACs and a mixer. | 
|  | 4342 | * Each ADC is connected from a mixer of all inputs.  This makes possible | 
|  | 4343 | * 6-channel independent captures. | 
|  | 4344 | * | 
|  | 4345 | * In addition, an independent DAC for the multi-playback (not used in this | 
|  | 4346 | * driver yet). | 
|  | 4347 | */ | 
|  | 4348 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 4349 | #define alc882_loopbacks	alc880_loopbacks | 
|  | 4350 | #endif | 
|  | 4351 |  | 
|  | 4352 | /* | 
|  | 4353 | * Pin config fixes | 
|  | 4354 | */ | 
|  | 4355 | enum { | 
| Takashi Iwai | 5c0ebfb | 2011-11-07 17:59:13 +0100 | [diff] [blame] | 4356 | ALC882_FIXUP_ABIT_AW9D_MAX, | 
|  | 4357 | ALC882_FIXUP_LENOVO_Y530, | 
|  | 4358 | ALC882_FIXUP_PB_M5210, | 
|  | 4359 | ALC882_FIXUP_ACER_ASPIRE_7736, | 
|  | 4360 | ALC882_FIXUP_ASUS_W90V, | 
|  | 4361 | ALC889_FIXUP_VAIO_TT, | 
| Takashi Iwai | 0e7cc2e | 2011-11-09 12:42:48 +0100 | [diff] [blame] | 4362 | ALC888_FIXUP_EEE1601, | 
| Takashi Iwai | 177943a | 2011-11-09 12:55:18 +0100 | [diff] [blame] | 4363 | ALC882_FIXUP_EAPD, | 
| Takashi Iwai | 7a6069b | 2011-11-09 15:22:01 +0100 | [diff] [blame] | 4364 | ALC883_FIXUP_EAPD, | 
| Takashi Iwai | 8812c4f | 2011-11-09 17:39:15 +0100 | [diff] [blame] | 4365 | ALC883_FIXUP_ACER_EAPD, | 
| Takashi Iwai | eb844d5 | 2011-11-09 18:03:07 +0100 | [diff] [blame] | 4366 | ALC882_FIXUP_GPIO3, | 
| Takashi Iwai | 68ef056 | 2011-11-09 18:24:44 +0100 | [diff] [blame] | 4367 | ALC889_FIXUP_COEF, | 
|  | 4368 | ALC882_FIXUP_ASUS_W2JC, | 
| Takashi Iwai | c3e837b | 2011-11-10 16:01:47 +0100 | [diff] [blame] | 4369 | ALC882_FIXUP_ACER_ASPIRE_4930G, | 
|  | 4370 | ALC882_FIXUP_ACER_ASPIRE_8930G, | 
|  | 4371 | ALC882_FIXUP_ASPIRE_8930G_VERBS, | 
| Takashi Iwai | 5671087 | 2011-11-14 17:42:11 +0100 | [diff] [blame] | 4372 | ALC885_FIXUP_MACPRO_GPIO, | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4373 | }; | 
|  | 4374 |  | 
| Takashi Iwai | 68ef056 | 2011-11-09 18:24:44 +0100 | [diff] [blame] | 4375 | static void alc889_fixup_coef(struct hda_codec *codec, | 
|  | 4376 | const struct alc_fixup *fix, int action) | 
|  | 4377 | { | 
|  | 4378 | if (action != ALC_FIXUP_ACT_INIT) | 
|  | 4379 | return; | 
|  | 4380 | alc889_coef_init(codec); | 
|  | 4381 | } | 
|  | 4382 |  | 
| Takashi Iwai | 5671087 | 2011-11-14 17:42:11 +0100 | [diff] [blame] | 4383 | /* toggle speaker-output according to the hp-jack state */ | 
|  | 4384 | static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted) | 
|  | 4385 | { | 
|  | 4386 | unsigned int gpiostate, gpiomask, gpiodir; | 
|  | 4387 |  | 
|  | 4388 | gpiostate = snd_hda_codec_read(codec, codec->afg, 0, | 
|  | 4389 | AC_VERB_GET_GPIO_DATA, 0); | 
|  | 4390 |  | 
|  | 4391 | if (!muted) | 
|  | 4392 | gpiostate |= (1 << pin); | 
|  | 4393 | else | 
|  | 4394 | gpiostate &= ~(1 << pin); | 
|  | 4395 |  | 
|  | 4396 | gpiomask = snd_hda_codec_read(codec, codec->afg, 0, | 
|  | 4397 | AC_VERB_GET_GPIO_MASK, 0); | 
|  | 4398 | gpiomask |= (1 << pin); | 
|  | 4399 |  | 
|  | 4400 | gpiodir = snd_hda_codec_read(codec, codec->afg, 0, | 
|  | 4401 | AC_VERB_GET_GPIO_DIRECTION, 0); | 
|  | 4402 | gpiodir |= (1 << pin); | 
|  | 4403 |  | 
|  | 4404 |  | 
|  | 4405 | snd_hda_codec_write(codec, codec->afg, 0, | 
|  | 4406 | AC_VERB_SET_GPIO_MASK, gpiomask); | 
|  | 4407 | snd_hda_codec_write(codec, codec->afg, 0, | 
|  | 4408 | AC_VERB_SET_GPIO_DIRECTION, gpiodir); | 
|  | 4409 |  | 
|  | 4410 | msleep(1); | 
|  | 4411 |  | 
|  | 4412 | snd_hda_codec_write(codec, codec->afg, 0, | 
|  | 4413 | AC_VERB_SET_GPIO_DATA, gpiostate); | 
|  | 4414 | } | 
|  | 4415 |  | 
|  | 4416 | /* set up GPIO at initialization */ | 
|  | 4417 | static void alc885_fixup_macpro_gpio(struct hda_codec *codec, | 
|  | 4418 | const struct alc_fixup *fix, int action) | 
|  | 4419 | { | 
|  | 4420 | if (action != ALC_FIXUP_ACT_INIT) | 
|  | 4421 | return; | 
|  | 4422 | alc882_gpio_mute(codec, 0, 0); | 
|  | 4423 | alc882_gpio_mute(codec, 1, 0); | 
|  | 4424 | } | 
|  | 4425 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4426 | static const struct alc_fixup alc882_fixups[] = { | 
| Takashi Iwai | 5c0ebfb | 2011-11-07 17:59:13 +0100 | [diff] [blame] | 4427 | [ALC882_FIXUP_ABIT_AW9D_MAX] = { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4428 | .type = ALC_FIXUP_PINS, | 
|  | 4429 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 4430 | { 0x15, 0x01080104 }, /* side */ | 
|  | 4431 | { 0x16, 0x01011012 }, /* rear */ | 
|  | 4432 | { 0x17, 0x01016011 }, /* clfe */ | 
|  | 4433 | { } | 
|  | 4434 | } | 
|  | 4435 | }, | 
| Takashi Iwai | 5c0ebfb | 2011-11-07 17:59:13 +0100 | [diff] [blame] | 4436 | [ALC882_FIXUP_LENOVO_Y530] = { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4437 | .type = ALC_FIXUP_PINS, | 
|  | 4438 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 4439 | { 0x15, 0x99130112 }, /* rear int speakers */ | 
|  | 4440 | { 0x16, 0x99130111 }, /* subwoofer */ | 
|  | 4441 | { } | 
|  | 4442 | } | 
|  | 4443 | }, | 
| Takashi Iwai | 5c0ebfb | 2011-11-07 17:59:13 +0100 | [diff] [blame] | 4444 | [ALC882_FIXUP_PB_M5210] = { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4445 | .type = ALC_FIXUP_VERBS, | 
|  | 4446 | .v.verbs = (const struct hda_verb[]) { | 
|  | 4447 | { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 }, | 
|  | 4448 | {} | 
|  | 4449 | } | 
|  | 4450 | }, | 
| Takashi Iwai | 5c0ebfb | 2011-11-07 17:59:13 +0100 | [diff] [blame] | 4451 | [ALC882_FIXUP_ACER_ASPIRE_7736] = { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4452 | .type = ALC_FIXUP_SKU, | 
|  | 4453 | .v.sku = ALC_FIXUP_SKU_IGNORE, | 
|  | 4454 | }, | 
| Takashi Iwai | 5c0ebfb | 2011-11-07 17:59:13 +0100 | [diff] [blame] | 4455 | [ALC882_FIXUP_ASUS_W90V] = { | 
| Takashi Iwai | 5cdf745 | 2011-10-26 23:04:08 +0200 | [diff] [blame] | 4456 | .type = ALC_FIXUP_PINS, | 
|  | 4457 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 4458 | { 0x16, 0x99130110 }, /* fix sequence for CLFE */ | 
|  | 4459 | { } | 
|  | 4460 | } | 
|  | 4461 | }, | 
| Takashi Iwai | 5c0ebfb | 2011-11-07 17:59:13 +0100 | [diff] [blame] | 4462 | [ALC889_FIXUP_VAIO_TT] = { | 
|  | 4463 | .type = ALC_FIXUP_PINS, | 
|  | 4464 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 4465 | { 0x17, 0x90170111 }, /* hidden surround speaker */ | 
|  | 4466 | { } | 
|  | 4467 | } | 
|  | 4468 | }, | 
| Takashi Iwai | 0e7cc2e | 2011-11-09 12:42:48 +0100 | [diff] [blame] | 4469 | [ALC888_FIXUP_EEE1601] = { | 
|  | 4470 | .type = ALC_FIXUP_VERBS, | 
|  | 4471 | .v.verbs = (const struct hda_verb[]) { | 
|  | 4472 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b }, | 
|  | 4473 | { 0x20, AC_VERB_SET_PROC_COEF,  0x0838 }, | 
|  | 4474 | { } | 
|  | 4475 | } | 
| Takashi Iwai | 177943a | 2011-11-09 12:55:18 +0100 | [diff] [blame] | 4476 | }, | 
|  | 4477 | [ALC882_FIXUP_EAPD] = { | 
|  | 4478 | .type = ALC_FIXUP_VERBS, | 
|  | 4479 | .v.verbs = (const struct hda_verb[]) { | 
|  | 4480 | /* change to EAPD mode */ | 
|  | 4481 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | 
|  | 4482 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 }, | 
|  | 4483 | { } | 
|  | 4484 | } | 
|  | 4485 | }, | 
| Takashi Iwai | 7a6069b | 2011-11-09 15:22:01 +0100 | [diff] [blame] | 4486 | [ALC883_FIXUP_EAPD] = { | 
|  | 4487 | .type = ALC_FIXUP_VERBS, | 
|  | 4488 | .v.verbs = (const struct hda_verb[]) { | 
|  | 4489 | /* change to EAPD mode */ | 
|  | 4490 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | 
|  | 4491 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 }, | 
|  | 4492 | { } | 
|  | 4493 | } | 
|  | 4494 | }, | 
| Takashi Iwai | 8812c4f | 2011-11-09 17:39:15 +0100 | [diff] [blame] | 4495 | [ALC883_FIXUP_ACER_EAPD] = { | 
|  | 4496 | .type = ALC_FIXUP_VERBS, | 
|  | 4497 | .v.verbs = (const struct hda_verb[]) { | 
|  | 4498 | /* eanable EAPD on Acer laptops */ | 
|  | 4499 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | 
|  | 4500 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 }, | 
|  | 4501 | { } | 
|  | 4502 | } | 
|  | 4503 | }, | 
| Takashi Iwai | eb844d5 | 2011-11-09 18:03:07 +0100 | [diff] [blame] | 4504 | [ALC882_FIXUP_GPIO3] = { | 
|  | 4505 | .type = ALC_FIXUP_VERBS, | 
|  | 4506 | .v.verbs = alc_gpio3_init_verbs, | 
|  | 4507 | }, | 
| Takashi Iwai | 68ef056 | 2011-11-09 18:24:44 +0100 | [diff] [blame] | 4508 | [ALC882_FIXUP_ASUS_W2JC] = { | 
|  | 4509 | .type = ALC_FIXUP_VERBS, | 
|  | 4510 | .v.verbs = alc_gpio1_init_verbs, | 
|  | 4511 | .chained = true, | 
|  | 4512 | .chain_id = ALC882_FIXUP_EAPD, | 
|  | 4513 | }, | 
|  | 4514 | [ALC889_FIXUP_COEF] = { | 
|  | 4515 | .type = ALC_FIXUP_FUNC, | 
|  | 4516 | .v.func = alc889_fixup_coef, | 
|  | 4517 | }, | 
| Takashi Iwai | c3e837b | 2011-11-10 16:01:47 +0100 | [diff] [blame] | 4518 | [ALC882_FIXUP_ACER_ASPIRE_4930G] = { | 
|  | 4519 | .type = ALC_FIXUP_PINS, | 
|  | 4520 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 4521 | { 0x16, 0x99130111 }, /* CLFE speaker */ | 
|  | 4522 | { 0x17, 0x99130112 }, /* surround speaker */ | 
|  | 4523 | { } | 
|  | 4524 | } | 
|  | 4525 | }, | 
|  | 4526 | [ALC882_FIXUP_ACER_ASPIRE_8930G] = { | 
|  | 4527 | .type = ALC_FIXUP_PINS, | 
|  | 4528 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 4529 | { 0x16, 0x99130111 }, /* CLFE speaker */ | 
|  | 4530 | { 0x1b, 0x99130112 }, /* surround speaker */ | 
|  | 4531 | { } | 
|  | 4532 | }, | 
|  | 4533 | .chained = true, | 
|  | 4534 | .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS, | 
|  | 4535 | }, | 
|  | 4536 | [ALC882_FIXUP_ASPIRE_8930G_VERBS] = { | 
|  | 4537 | /* additional init verbs for Acer Aspire 8930G */ | 
|  | 4538 | .type = ALC_FIXUP_VERBS, | 
|  | 4539 | .v.verbs = (const struct hda_verb[]) { | 
|  | 4540 | /* Enable all DACs */ | 
|  | 4541 | /* DAC DISABLE/MUTE 1? */ | 
|  | 4542 | /*  setting bits 1-5 disables DAC nids 0x02-0x06 | 
|  | 4543 | *  apparently. Init=0x38 */ | 
|  | 4544 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 }, | 
|  | 4545 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 }, | 
|  | 4546 | /* DAC DISABLE/MUTE 2? */ | 
|  | 4547 | /*  some bit here disables the other DACs. | 
|  | 4548 | *  Init=0x4900 */ | 
|  | 4549 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 }, | 
|  | 4550 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 }, | 
|  | 4551 | /* DMIC fix | 
|  | 4552 | * This laptop has a stereo digital microphone. | 
|  | 4553 | * The mics are only 1cm apart which makes the stereo | 
|  | 4554 | * useless. However, either the mic or the ALC889 | 
|  | 4555 | * makes the signal become a difference/sum signal | 
|  | 4556 | * instead of standard stereo, which is annoying. | 
|  | 4557 | * So instead we flip this bit which makes the | 
|  | 4558 | * codec replicate the sum signal to both channels, | 
|  | 4559 | * turning it into a normal mono mic. | 
|  | 4560 | */ | 
|  | 4561 | /* DMIC_CONTROL? Init value = 0x0001 */ | 
|  | 4562 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b }, | 
|  | 4563 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 }, | 
|  | 4564 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | 
|  | 4565 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 }, | 
|  | 4566 | { } | 
|  | 4567 | } | 
|  | 4568 | }, | 
| Takashi Iwai | 5671087 | 2011-11-14 17:42:11 +0100 | [diff] [blame] | 4569 | [ALC885_FIXUP_MACPRO_GPIO] = { | 
|  | 4570 | .type = ALC_FIXUP_FUNC, | 
|  | 4571 | .v.func = alc885_fixup_macpro_gpio, | 
|  | 4572 | }, | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4573 | }; | 
|  | 4574 |  | 
|  | 4575 | static const struct snd_pci_quirk alc882_fixup_tbl[] = { | 
| Takashi Iwai | 8812c4f | 2011-11-09 17:39:15 +0100 | [diff] [blame] | 4576 | SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD), | 
|  | 4577 | SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD), | 
|  | 4578 | SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD), | 
|  | 4579 | SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD), | 
|  | 4580 | SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD), | 
|  | 4581 | SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD), | 
| Takashi Iwai | c3e837b | 2011-11-10 16:01:47 +0100 | [diff] [blame] | 4582 | SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G", | 
|  | 4583 | ALC882_FIXUP_ACER_ASPIRE_4930G), | 
|  | 4584 | SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G", | 
|  | 4585 | ALC882_FIXUP_ACER_ASPIRE_4930G), | 
|  | 4586 | SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G", | 
|  | 4587 | ALC882_FIXUP_ACER_ASPIRE_8930G), | 
|  | 4588 | SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G", | 
|  | 4589 | ALC882_FIXUP_ACER_ASPIRE_8930G), | 
|  | 4590 | SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G", | 
|  | 4591 | ALC882_FIXUP_ACER_ASPIRE_4930G), | 
|  | 4592 | SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G", | 
|  | 4593 | ALC882_FIXUP_ACER_ASPIRE_4930G), | 
|  | 4594 | SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G", | 
|  | 4595 | ALC882_FIXUP_ACER_ASPIRE_4930G), | 
| Takashi Iwai | 5c0ebfb | 2011-11-07 17:59:13 +0100 | [diff] [blame] | 4596 | SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210), | 
| Takashi Iwai | ac9b1cd | 2011-11-09 17:45:55 +0100 | [diff] [blame] | 4597 | SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736), | 
| Takashi Iwai | 177943a | 2011-11-09 12:55:18 +0100 | [diff] [blame] | 4598 | SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD), | 
| Takashi Iwai | 5c0ebfb | 2011-11-07 17:59:13 +0100 | [diff] [blame] | 4599 | SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V), | 
| Takashi Iwai | 68ef056 | 2011-11-09 18:24:44 +0100 | [diff] [blame] | 4600 | SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC), | 
| Takashi Iwai | 0e7cc2e | 2011-11-09 12:42:48 +0100 | [diff] [blame] | 4601 | SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601), | 
| Takashi Iwai | ac9b1cd | 2011-11-09 17:45:55 +0100 | [diff] [blame] | 4602 | SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT), | 
| Takashi Iwai | 5671087 | 2011-11-14 17:42:11 +0100 | [diff] [blame] | 4603 |  | 
|  | 4604 | /* All Apple entries are in codec SSIDs */ | 
|  | 4605 | SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO), | 
|  | 4606 | SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO), | 
|  | 4607 | SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO), | 
|  | 4608 | SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD), | 
|  | 4609 | SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO), | 
|  | 4610 |  | 
| Takashi Iwai | 7a6069b | 2011-11-09 15:22:01 +0100 | [diff] [blame] | 4611 | SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD), | 
| Takashi Iwai | eb844d5 | 2011-11-09 18:03:07 +0100 | [diff] [blame] | 4612 | SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3), | 
| Takashi Iwai | 5c0ebfb | 2011-11-07 17:59:13 +0100 | [diff] [blame] | 4613 | SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX), | 
| Takashi Iwai | 7a6069b | 2011-11-09 15:22:01 +0100 | [diff] [blame] | 4614 | SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD), | 
|  | 4615 | SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD), | 
| Takashi Iwai | ac9b1cd | 2011-11-09 17:45:55 +0100 | [diff] [blame] | 4616 | SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530), | 
| Takashi Iwai | 68ef056 | 2011-11-09 18:24:44 +0100 | [diff] [blame] | 4617 | SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF), | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4618 | {} | 
|  | 4619 | }; | 
|  | 4620 |  | 
|  | 4621 | /* | 
|  | 4622 | * BIOS auto configuration | 
|  | 4623 | */ | 
|  | 4624 | /* almost identical with ALC880 parser... */ | 
|  | 4625 | static int alc882_parse_auto_config(struct hda_codec *codec) | 
|  | 4626 | { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4627 | static const hda_nid_t alc882_ignore[] = { 0x1d, 0 }; | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4628 | static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 }; | 
|  | 4629 | return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4630 | } | 
|  | 4631 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4632 | /* | 
|  | 4633 | */ | 
|  | 4634 | #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS | 
|  | 4635 | #include "alc882_quirks.c" | 
|  | 4636 | #endif | 
|  | 4637 |  | 
|  | 4638 | static int patch_alc882(struct hda_codec *codec) | 
|  | 4639 | { | 
|  | 4640 | struct alc_spec *spec; | 
|  | 4641 | int err, board_config; | 
|  | 4642 |  | 
|  | 4643 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 
|  | 4644 | if (spec == NULL) | 
|  | 4645 | return -ENOMEM; | 
|  | 4646 |  | 
|  | 4647 | codec->spec = spec; | 
|  | 4648 |  | 
|  | 4649 | spec->mixer_nid = 0x0b; | 
|  | 4650 |  | 
|  | 4651 | switch (codec->vendor_id) { | 
|  | 4652 | case 0x10ec0882: | 
|  | 4653 | case 0x10ec0885: | 
|  | 4654 | break; | 
|  | 4655 | default: | 
|  | 4656 | /* ALC883 and variants */ | 
|  | 4657 | alc_fix_pll_init(codec, 0x20, 0x0a, 10); | 
|  | 4658 | break; | 
|  | 4659 | } | 
|  | 4660 |  | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4661 | err = alc_codec_rename_from_preset(codec); | 
|  | 4662 | if (err < 0) | 
|  | 4663 | goto error; | 
|  | 4664 |  | 
| Takashi Iwai | b253969 | 2011-11-14 17:32:17 +0100 | [diff] [blame] | 4665 | board_config = alc_board_config(codec, ALC882_MODEL_LAST, | 
|  | 4666 | alc882_models, NULL); | 
|  | 4667 | if (board_config < 0) | 
|  | 4668 | board_config = alc_board_codec_sid_config(codec, | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4669 | ALC882_MODEL_LAST, alc882_models, alc882_ssid_cfg_tbl); | 
|  | 4670 |  | 
|  | 4671 | if (board_config < 0) { | 
|  | 4672 | printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n", | 
|  | 4673 | codec->chip_name); | 
|  | 4674 | board_config = ALC_MODEL_AUTO; | 
|  | 4675 | } | 
|  | 4676 |  | 
|  | 4677 | if (board_config == ALC_MODEL_AUTO) { | 
|  | 4678 | alc_pick_fixup(codec, NULL, alc882_fixup_tbl, alc882_fixups); | 
|  | 4679 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE); | 
|  | 4680 | } | 
|  | 4681 |  | 
|  | 4682 | alc_auto_parse_customize_define(codec); | 
|  | 4683 |  | 
|  | 4684 | if (board_config == ALC_MODEL_AUTO) { | 
|  | 4685 | /* automatic parse from the BIOS config */ | 
|  | 4686 | err = alc882_parse_auto_config(codec); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4687 | if (err < 0) | 
|  | 4688 | goto error; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4689 | } | 
|  | 4690 |  | 
| David Henningsson | fde48a1 | 2011-12-09 18:27:42 +0800 | [diff] [blame] | 4691 | if (board_config != ALC_MODEL_AUTO) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4692 | setup_preset(codec, &alc882_presets[board_config]); | 
| David Henningsson | fde48a1 | 2011-12-09 18:27:42 +0800 | [diff] [blame] | 4693 | spec->vmaster_nid = 0x0c; | 
|  | 4694 | } | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4695 |  | 
| Takashi Iwai | 60a6a84 | 2011-07-27 14:01:24 +0200 | [diff] [blame] | 4696 | if (!spec->no_analog && !spec->adc_nids) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4697 | alc_auto_fill_adc_caps(codec); | 
|  | 4698 | alc_rebuild_imux_for_auto_mic(codec); | 
|  | 4699 | alc_remove_invalid_adc_nids(codec); | 
|  | 4700 | } | 
|  | 4701 |  | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4702 | if (!spec->no_analog && !spec->cap_mixer) | 
|  | 4703 | set_capture_mixer(codec); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4704 |  | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4705 | if (!spec->no_analog && has_cdefine_beep(codec)) { | 
|  | 4706 | err = snd_hda_attach_beep_device(codec, 0x1); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4707 | if (err < 0) | 
|  | 4708 | goto error; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4709 | set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4710 | } | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4711 |  | 
|  | 4712 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); | 
|  | 4713 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4714 | codec->patch_ops = alc_patch_ops; | 
|  | 4715 | if (board_config == ALC_MODEL_AUTO) | 
| Takashi Iwai | e477062 | 2011-07-08 11:11:35 +0200 | [diff] [blame] | 4716 | spec->init_hook = alc_auto_init_std; | 
| Takashi Iwai | f21d78e | 2012-01-19 12:10:29 +0100 | [diff] [blame] | 4717 | else | 
|  | 4718 | codec->patch_ops.build_controls = __alc_build_controls; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4719 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4720 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 4721 | if (!spec->loopback.amplist) | 
|  | 4722 | spec->loopback.amplist = alc882_loopbacks; | 
|  | 4723 | #endif | 
|  | 4724 |  | 
|  | 4725 | return 0; | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4726 |  | 
|  | 4727 | error: | 
|  | 4728 | alc_free(codec); | 
|  | 4729 | return err; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4730 | } | 
|  | 4731 |  | 
|  | 4732 |  | 
|  | 4733 | /* | 
|  | 4734 | * ALC262 support | 
|  | 4735 | */ | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4736 | static int alc262_parse_auto_config(struct hda_codec *codec) | 
|  | 4737 | { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4738 | static const hda_nid_t alc262_ignore[] = { 0x1d, 0 }; | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4739 | static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 }; | 
|  | 4740 | return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4741 | } | 
|  | 4742 |  | 
|  | 4743 | /* | 
|  | 4744 | * Pin config fixes | 
|  | 4745 | */ | 
|  | 4746 | enum { | 
| Takashi Iwai | ea4e7af | 2011-11-07 12:23:55 +0100 | [diff] [blame] | 4747 | ALC262_FIXUP_FSC_H270, | 
|  | 4748 | ALC262_FIXUP_HP_Z200, | 
|  | 4749 | ALC262_FIXUP_TYAN, | 
| Takashi Iwai | c470150 | 2011-11-07 14:20:07 +0100 | [diff] [blame] | 4750 | ALC262_FIXUP_LENOVO_3000, | 
| Takashi Iwai | b42590b | 2011-11-07 14:41:01 +0100 | [diff] [blame] | 4751 | ALC262_FIXUP_BENQ, | 
|  | 4752 | ALC262_FIXUP_BENQ_T31, | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4753 | }; | 
|  | 4754 |  | 
|  | 4755 | static const struct alc_fixup alc262_fixups[] = { | 
| Takashi Iwai | ea4e7af | 2011-11-07 12:23:55 +0100 | [diff] [blame] | 4756 | [ALC262_FIXUP_FSC_H270] = { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4757 | .type = ALC_FIXUP_PINS, | 
|  | 4758 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 4759 | { 0x14, 0x99130110 }, /* speaker */ | 
|  | 4760 | { 0x15, 0x0221142f }, /* front HP */ | 
|  | 4761 | { 0x1b, 0x0121141f }, /* rear HP */ | 
|  | 4762 | { } | 
|  | 4763 | } | 
|  | 4764 | }, | 
| Takashi Iwai | ea4e7af | 2011-11-07 12:23:55 +0100 | [diff] [blame] | 4765 | [ALC262_FIXUP_HP_Z200] = { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4766 | .type = ALC_FIXUP_PINS, | 
|  | 4767 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 4768 | { 0x16, 0x99130120 }, /* internal speaker */ | 
|  | 4769 | { } | 
|  | 4770 | } | 
|  | 4771 | }, | 
| Takashi Iwai | ea4e7af | 2011-11-07 12:23:55 +0100 | [diff] [blame] | 4772 | [ALC262_FIXUP_TYAN] = { | 
|  | 4773 | .type = ALC_FIXUP_PINS, | 
|  | 4774 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 4775 | { 0x14, 0x1993e1f0 }, /* int AUX */ | 
|  | 4776 | { } | 
|  | 4777 | } | 
|  | 4778 | }, | 
| Takashi Iwai | c470150 | 2011-11-07 14:20:07 +0100 | [diff] [blame] | 4779 | [ALC262_FIXUP_LENOVO_3000] = { | 
|  | 4780 | .type = ALC_FIXUP_VERBS, | 
|  | 4781 | .v.verbs = (const struct hda_verb[]) { | 
|  | 4782 | { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 }, | 
| Takashi Iwai | b42590b | 2011-11-07 14:41:01 +0100 | [diff] [blame] | 4783 | {} | 
|  | 4784 | }, | 
|  | 4785 | .chained = true, | 
|  | 4786 | .chain_id = ALC262_FIXUP_BENQ, | 
|  | 4787 | }, | 
|  | 4788 | [ALC262_FIXUP_BENQ] = { | 
|  | 4789 | .type = ALC_FIXUP_VERBS, | 
|  | 4790 | .v.verbs = (const struct hda_verb[]) { | 
| Takashi Iwai | c470150 | 2011-11-07 14:20:07 +0100 | [diff] [blame] | 4791 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | 
|  | 4792 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 }, | 
|  | 4793 | {} | 
|  | 4794 | } | 
|  | 4795 | }, | 
| Takashi Iwai | b42590b | 2011-11-07 14:41:01 +0100 | [diff] [blame] | 4796 | [ALC262_FIXUP_BENQ_T31] = { | 
|  | 4797 | .type = ALC_FIXUP_VERBS, | 
|  | 4798 | .v.verbs = (const struct hda_verb[]) { | 
|  | 4799 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | 
|  | 4800 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 }, | 
|  | 4801 | {} | 
|  | 4802 | } | 
|  | 4803 | }, | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4804 | }; | 
|  | 4805 |  | 
|  | 4806 | static const struct snd_pci_quirk alc262_fixup_tbl[] = { | 
| Takashi Iwai | ea4e7af | 2011-11-07 12:23:55 +0100 | [diff] [blame] | 4807 | SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200), | 
| Takashi Iwai | 3dcd3be | 2011-11-07 14:59:40 +0100 | [diff] [blame] | 4808 | SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FIXUP_BENQ), | 
|  | 4809 | SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ), | 
| Takashi Iwai | ea4e7af | 2011-11-07 12:23:55 +0100 | [diff] [blame] | 4810 | SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN), | 
|  | 4811 | SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270), | 
| Takashi Iwai | c470150 | 2011-11-07 14:20:07 +0100 | [diff] [blame] | 4812 | SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000), | 
| Takashi Iwai | b42590b | 2011-11-07 14:41:01 +0100 | [diff] [blame] | 4813 | SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ), | 
|  | 4814 | SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31), | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4815 | {} | 
|  | 4816 | }; | 
|  | 4817 |  | 
|  | 4818 |  | 
|  | 4819 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 4820 | #define alc262_loopbacks	alc880_loopbacks | 
|  | 4821 | #endif | 
|  | 4822 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4823 | /* | 
|  | 4824 | */ | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4825 | static int patch_alc262(struct hda_codec *codec) | 
|  | 4826 | { | 
|  | 4827 | struct alc_spec *spec; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4828 | int err; | 
|  | 4829 |  | 
|  | 4830 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 
|  | 4831 | if (spec == NULL) | 
|  | 4832 | return -ENOMEM; | 
|  | 4833 |  | 
|  | 4834 | codec->spec = spec; | 
|  | 4835 |  | 
|  | 4836 | spec->mixer_nid = 0x0b; | 
|  | 4837 |  | 
|  | 4838 | #if 0 | 
|  | 4839 | /* pshou 07/11/05  set a zero PCM sample to DAC when FIFO is | 
|  | 4840 | * under-run | 
|  | 4841 | */ | 
|  | 4842 | { | 
|  | 4843 | int tmp; | 
|  | 4844 | snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7); | 
|  | 4845 | tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0); | 
|  | 4846 | snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7); | 
|  | 4847 | snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80); | 
|  | 4848 | } | 
|  | 4849 | #endif | 
|  | 4850 | alc_auto_parse_customize_define(codec); | 
|  | 4851 |  | 
|  | 4852 | alc_fix_pll_init(codec, 0x20, 0x0a, 10); | 
|  | 4853 |  | 
| Takashi Iwai | 42399f7 | 2011-11-07 17:18:44 +0100 | [diff] [blame] | 4854 | alc_pick_fixup(codec, NULL, alc262_fixup_tbl, alc262_fixups); | 
|  | 4855 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4856 |  | 
| Takashi Iwai | 42399f7 | 2011-11-07 17:18:44 +0100 | [diff] [blame] | 4857 | /* automatic parse from the BIOS config */ | 
|  | 4858 | err = alc262_parse_auto_config(codec); | 
|  | 4859 | if (err < 0) | 
|  | 4860 | goto error; | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4861 |  | 
| Takashi Iwai | 60a6a84 | 2011-07-27 14:01:24 +0200 | [diff] [blame] | 4862 | if (!spec->no_analog && !spec->adc_nids) { | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4863 | alc_auto_fill_adc_caps(codec); | 
|  | 4864 | alc_rebuild_imux_for_auto_mic(codec); | 
|  | 4865 | alc_remove_invalid_adc_nids(codec); | 
|  | 4866 | } | 
|  | 4867 |  | 
|  | 4868 | if (!spec->no_analog && !spec->cap_mixer) | 
|  | 4869 | set_capture_mixer(codec); | 
|  | 4870 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4871 | if (!spec->no_analog && has_cdefine_beep(codec)) { | 
|  | 4872 | err = snd_hda_attach_beep_device(codec, 0x1); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4873 | if (err < 0) | 
|  | 4874 | goto error; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4875 | set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4876 | } | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4877 |  | 
|  | 4878 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); | 
|  | 4879 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4880 | codec->patch_ops = alc_patch_ops; | 
| Takashi Iwai | 42399f7 | 2011-11-07 17:18:44 +0100 | [diff] [blame] | 4881 | spec->init_hook = alc_auto_init_std; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4882 | spec->shutup = alc_eapd_shutup; | 
|  | 4883 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4884 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 4885 | if (!spec->loopback.amplist) | 
|  | 4886 | spec->loopback.amplist = alc262_loopbacks; | 
|  | 4887 | #endif | 
|  | 4888 |  | 
|  | 4889 | return 0; | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4890 |  | 
|  | 4891 | error: | 
|  | 4892 | alc_free(codec); | 
|  | 4893 | return err; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4894 | } | 
|  | 4895 |  | 
|  | 4896 | /* | 
|  | 4897 | *  ALC268 | 
|  | 4898 | */ | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4899 | /* bind Beep switches of both NID 0x0f and 0x10 */ | 
|  | 4900 | static const struct hda_bind_ctls alc268_bind_beep_sw = { | 
|  | 4901 | .ops = &snd_hda_bind_sw, | 
|  | 4902 | .values = { | 
|  | 4903 | HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT), | 
|  | 4904 | HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT), | 
|  | 4905 | 0 | 
|  | 4906 | }, | 
|  | 4907 | }; | 
|  | 4908 |  | 
|  | 4909 | static const struct snd_kcontrol_new alc268_beep_mixer[] = { | 
|  | 4910 | HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT), | 
|  | 4911 | HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw), | 
|  | 4912 | { } | 
|  | 4913 | }; | 
|  | 4914 |  | 
|  | 4915 | /* set PCBEEP vol = 0, mute connections */ | 
|  | 4916 | static const struct hda_verb alc268_beep_init_verbs[] = { | 
|  | 4917 | {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | 
|  | 4918 | {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | 
|  | 4919 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | 
|  | 4920 | { } | 
|  | 4921 | }; | 
|  | 4922 |  | 
|  | 4923 | /* | 
|  | 4924 | * BIOS auto configuration | 
|  | 4925 | */ | 
|  | 4926 | static int alc268_parse_auto_config(struct hda_codec *codec) | 
|  | 4927 | { | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4928 | static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 }; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4929 | struct alc_spec *spec = codec->spec; | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4930 | int err = alc_parse_auto_config(codec, NULL, alc268_ssids); | 
|  | 4931 | if (err > 0) { | 
|  | 4932 | if (!spec->no_analog && spec->autocfg.speaker_pins[0] != 0x1d) { | 
|  | 4933 | add_mixer(spec, alc268_beep_mixer); | 
|  | 4934 | add_verb(spec, alc268_beep_init_verbs); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4935 | } | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4936 | } | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4937 | return err; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4938 | } | 
|  | 4939 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4940 | /* | 
|  | 4941 | */ | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4942 | static int patch_alc268(struct hda_codec *codec) | 
|  | 4943 | { | 
|  | 4944 | struct alc_spec *spec; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4945 | int i, has_beep, err; | 
|  | 4946 |  | 
|  | 4947 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 
|  | 4948 | if (spec == NULL) | 
|  | 4949 | return -ENOMEM; | 
|  | 4950 |  | 
|  | 4951 | codec->spec = spec; | 
|  | 4952 |  | 
|  | 4953 | /* ALC268 has no aa-loopback mixer */ | 
|  | 4954 |  | 
| Takashi Iwai | 6ebb805 | 2011-08-16 15:15:40 +0200 | [diff] [blame] | 4955 | /* automatic parse from the BIOS config */ | 
|  | 4956 | err = alc268_parse_auto_config(codec); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4957 | if (err < 0) | 
|  | 4958 | goto error; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4959 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4960 | has_beep = 0; | 
|  | 4961 | for (i = 0; i < spec->num_mixers; i++) { | 
|  | 4962 | if (spec->mixers[i] == alc268_beep_mixer) { | 
|  | 4963 | has_beep = 1; | 
|  | 4964 | break; | 
|  | 4965 | } | 
|  | 4966 | } | 
|  | 4967 |  | 
|  | 4968 | if (has_beep) { | 
|  | 4969 | err = snd_hda_attach_beep_device(codec, 0x1); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4970 | if (err < 0) | 
|  | 4971 | goto error; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4972 | if (!query_amp_caps(codec, 0x1d, HDA_INPUT)) | 
|  | 4973 | /* override the amp caps for beep generator */ | 
|  | 4974 | snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT, | 
|  | 4975 | (0x0c << AC_AMPCAP_OFFSET_SHIFT) | | 
|  | 4976 | (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) | | 
|  | 4977 | (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) | | 
|  | 4978 | (0 << AC_AMPCAP_MUTE_SHIFT)); | 
|  | 4979 | } | 
|  | 4980 |  | 
| Takashi Iwai | 60a6a84 | 2011-07-27 14:01:24 +0200 | [diff] [blame] | 4981 | if (!spec->no_analog && !spec->adc_nids) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4982 | alc_auto_fill_adc_caps(codec); | 
|  | 4983 | alc_rebuild_imux_for_auto_mic(codec); | 
|  | 4984 | alc_remove_invalid_adc_nids(codec); | 
|  | 4985 | } | 
|  | 4986 |  | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 4987 | if (!spec->no_analog && !spec->cap_mixer) | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4988 | set_capture_mixer(codec); | 
|  | 4989 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4990 | codec->patch_ops = alc_patch_ops; | 
| Takashi Iwai | 6ebb805 | 2011-08-16 15:15:40 +0200 | [diff] [blame] | 4991 | spec->init_hook = alc_auto_init_std; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4992 | spec->shutup = alc_eapd_shutup; | 
|  | 4993 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4994 | return 0; | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 4995 |  | 
|  | 4996 | error: | 
|  | 4997 | alc_free(codec); | 
|  | 4998 | return err; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 4999 | } | 
|  | 5000 |  | 
|  | 5001 | /* | 
|  | 5002 | * ALC269 | 
|  | 5003 | */ | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5004 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 5005 | #define alc269_loopbacks	alc880_loopbacks | 
|  | 5006 | #endif | 
|  | 5007 |  | 
|  | 5008 | static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = { | 
|  | 5009 | .substreams = 1, | 
|  | 5010 | .channels_min = 2, | 
|  | 5011 | .channels_max = 8, | 
|  | 5012 | .rates = SNDRV_PCM_RATE_44100, /* fixed rate */ | 
|  | 5013 | /* NID is set in alc_build_pcms */ | 
|  | 5014 | .ops = { | 
|  | 5015 | .open = alc_playback_pcm_open, | 
|  | 5016 | .prepare = alc_playback_pcm_prepare, | 
|  | 5017 | .cleanup = alc_playback_pcm_cleanup | 
|  | 5018 | }, | 
|  | 5019 | }; | 
|  | 5020 |  | 
|  | 5021 | static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = { | 
|  | 5022 | .substreams = 1, | 
|  | 5023 | .channels_min = 2, | 
|  | 5024 | .channels_max = 2, | 
|  | 5025 | .rates = SNDRV_PCM_RATE_44100, /* fixed rate */ | 
|  | 5026 | /* NID is set in alc_build_pcms */ | 
|  | 5027 | }; | 
|  | 5028 |  | 
|  | 5029 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 5030 | static int alc269_mic2_for_mute_led(struct hda_codec *codec) | 
|  | 5031 | { | 
|  | 5032 | switch (codec->subsystem_id) { | 
|  | 5033 | case 0x103c1586: | 
|  | 5034 | return 1; | 
|  | 5035 | } | 
|  | 5036 | return 0; | 
|  | 5037 | } | 
|  | 5038 |  | 
|  | 5039 | static int alc269_mic2_mute_check_ps(struct hda_codec *codec, hda_nid_t nid) | 
|  | 5040 | { | 
|  | 5041 | /* update mute-LED according to the speaker mute state */ | 
|  | 5042 | if (nid == 0x01 || nid == 0x14) { | 
|  | 5043 | int pinval; | 
|  | 5044 | if (snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0) & | 
|  | 5045 | HDA_AMP_MUTE) | 
|  | 5046 | pinval = 0x24; | 
|  | 5047 | else | 
|  | 5048 | pinval = 0x20; | 
|  | 5049 | /* mic2 vref pin is used for mute LED control */ | 
|  | 5050 | snd_hda_codec_update_cache(codec, 0x19, 0, | 
|  | 5051 | AC_VERB_SET_PIN_WIDGET_CONTROL, | 
|  | 5052 | pinval); | 
|  | 5053 | } | 
|  | 5054 | return alc_check_power_status(codec, nid); | 
|  | 5055 | } | 
|  | 5056 | #endif /* CONFIG_SND_HDA_POWER_SAVE */ | 
|  | 5057 |  | 
|  | 5058 | /* different alc269-variants */ | 
|  | 5059 | enum { | 
|  | 5060 | ALC269_TYPE_ALC269VA, | 
|  | 5061 | ALC269_TYPE_ALC269VB, | 
|  | 5062 | ALC269_TYPE_ALC269VC, | 
|  | 5063 | }; | 
|  | 5064 |  | 
|  | 5065 | /* | 
|  | 5066 | * BIOS auto configuration | 
|  | 5067 | */ | 
|  | 5068 | static int alc269_parse_auto_config(struct hda_codec *codec) | 
|  | 5069 | { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5070 | static const hda_nid_t alc269_ignore[] = { 0x1d, 0 }; | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5071 | static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 }; | 
|  | 5072 | static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 }; | 
|  | 5073 | struct alc_spec *spec = codec->spec; | 
|  | 5074 | const hda_nid_t *ssids = spec->codec_variant == ALC269_TYPE_ALC269VA ? | 
|  | 5075 | alc269va_ssids : alc269_ssids; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5076 |  | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5077 | return alc_parse_auto_config(codec, alc269_ignore, ssids); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5078 | } | 
|  | 5079 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5080 | static void alc269_toggle_power_output(struct hda_codec *codec, int power_up) | 
|  | 5081 | { | 
|  | 5082 | int val = alc_read_coef_idx(codec, 0x04); | 
|  | 5083 | if (power_up) | 
|  | 5084 | val |= 1 << 11; | 
|  | 5085 | else | 
|  | 5086 | val &= ~(1 << 11); | 
|  | 5087 | alc_write_coef_idx(codec, 0x04, val); | 
|  | 5088 | } | 
|  | 5089 |  | 
|  | 5090 | static void alc269_shutup(struct hda_codec *codec) | 
|  | 5091 | { | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 5092 | if ((alc_get_coef0(codec) & 0x00ff) == 0x017) | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5093 | alc269_toggle_power_output(codec, 0); | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 5094 | if ((alc_get_coef0(codec) & 0x00ff) == 0x018) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5095 | alc269_toggle_power_output(codec, 0); | 
|  | 5096 | msleep(150); | 
|  | 5097 | } | 
|  | 5098 | } | 
|  | 5099 |  | 
| Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 5100 | #ifdef CONFIG_PM | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5101 | static int alc269_resume(struct hda_codec *codec) | 
|  | 5102 | { | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 5103 | if ((alc_get_coef0(codec) & 0x00ff) == 0x018) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5104 | alc269_toggle_power_output(codec, 0); | 
|  | 5105 | msleep(150); | 
|  | 5106 | } | 
|  | 5107 |  | 
|  | 5108 | codec->patch_ops.init(codec); | 
|  | 5109 |  | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 5110 | if ((alc_get_coef0(codec) & 0x00ff) == 0x017) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5111 | alc269_toggle_power_output(codec, 1); | 
|  | 5112 | msleep(200); | 
|  | 5113 | } | 
|  | 5114 |  | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 5115 | if ((alc_get_coef0(codec) & 0x00ff) == 0x018) | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5116 | alc269_toggle_power_output(codec, 1); | 
|  | 5117 |  | 
|  | 5118 | snd_hda_codec_resume_amp(codec); | 
|  | 5119 | snd_hda_codec_resume_cache(codec); | 
|  | 5120 | hda_call_check_power_status(codec, 0x01); | 
|  | 5121 | return 0; | 
|  | 5122 | } | 
| Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 5123 | #endif /* CONFIG_PM */ | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5124 |  | 
|  | 5125 | static void alc269_fixup_hweq(struct hda_codec *codec, | 
|  | 5126 | const struct alc_fixup *fix, int action) | 
|  | 5127 | { | 
|  | 5128 | int coef; | 
|  | 5129 |  | 
|  | 5130 | if (action != ALC_FIXUP_ACT_INIT) | 
|  | 5131 | return; | 
|  | 5132 | coef = alc_read_coef_idx(codec, 0x1e); | 
|  | 5133 | alc_write_coef_idx(codec, 0x1e, coef | 0x80); | 
|  | 5134 | } | 
|  | 5135 |  | 
|  | 5136 | static void alc271_fixup_dmic(struct hda_codec *codec, | 
|  | 5137 | const struct alc_fixup *fix, int action) | 
|  | 5138 | { | 
|  | 5139 | static const struct hda_verb verbs[] = { | 
|  | 5140 | {0x20, AC_VERB_SET_COEF_INDEX, 0x0d}, | 
|  | 5141 | {0x20, AC_VERB_SET_PROC_COEF, 0x4000}, | 
|  | 5142 | {} | 
|  | 5143 | }; | 
|  | 5144 | unsigned int cfg; | 
|  | 5145 |  | 
|  | 5146 | if (strcmp(codec->chip_name, "ALC271X")) | 
|  | 5147 | return; | 
|  | 5148 | cfg = snd_hda_codec_get_pincfg(codec, 0x12); | 
|  | 5149 | if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED) | 
|  | 5150 | snd_hda_sequence_write(codec, verbs); | 
|  | 5151 | } | 
|  | 5152 |  | 
| Takashi Iwai | 017f2a1 | 2011-07-09 14:42:25 +0200 | [diff] [blame] | 5153 | static void alc269_fixup_pcm_44k(struct hda_codec *codec, | 
|  | 5154 | const struct alc_fixup *fix, int action) | 
|  | 5155 | { | 
|  | 5156 | struct alc_spec *spec = codec->spec; | 
|  | 5157 |  | 
|  | 5158 | if (action != ALC_FIXUP_ACT_PROBE) | 
|  | 5159 | return; | 
|  | 5160 |  | 
|  | 5161 | /* Due to a hardware problem on Lenovo Ideadpad, we need to | 
|  | 5162 | * fix the sample rate of analog I/O to 44.1kHz | 
|  | 5163 | */ | 
|  | 5164 | spec->stream_analog_playback = &alc269_44k_pcm_analog_playback; | 
|  | 5165 | spec->stream_analog_capture = &alc269_44k_pcm_analog_capture; | 
|  | 5166 | } | 
|  | 5167 |  | 
| Takashi Iwai | adabb3e | 2011-08-03 07:48:37 +0200 | [diff] [blame] | 5168 | static void alc269_fixup_stereo_dmic(struct hda_codec *codec, | 
|  | 5169 | const struct alc_fixup *fix, int action) | 
|  | 5170 | { | 
|  | 5171 | int coef; | 
|  | 5172 |  | 
|  | 5173 | if (action != ALC_FIXUP_ACT_INIT) | 
|  | 5174 | return; | 
|  | 5175 | /* The digital-mic unit sends PDM (differential signal) instead of | 
|  | 5176 | * the standard PCM, thus you can't record a valid mono stream as is. | 
|  | 5177 | * Below is a workaround specific to ALC269 to control the dmic | 
|  | 5178 | * signal source as mono. | 
|  | 5179 | */ | 
|  | 5180 | coef = alc_read_coef_idx(codec, 0x07); | 
|  | 5181 | alc_write_coef_idx(codec, 0x07, coef | 0x80); | 
|  | 5182 | } | 
|  | 5183 |  | 
| Takashi Iwai | 2451991 | 2011-08-16 15:08:49 +0200 | [diff] [blame] | 5184 | static void alc269_quanta_automute(struct hda_codec *codec) | 
|  | 5185 | { | 
| David Henningsson | 42cf0d0 | 2011-09-20 12:04:56 +0200 | [diff] [blame] | 5186 | update_outputs(codec); | 
| Takashi Iwai | 2451991 | 2011-08-16 15:08:49 +0200 | [diff] [blame] | 5187 |  | 
|  | 5188 | snd_hda_codec_write(codec, 0x20, 0, | 
|  | 5189 | AC_VERB_SET_COEF_INDEX, 0x0c); | 
|  | 5190 | snd_hda_codec_write(codec, 0x20, 0, | 
|  | 5191 | AC_VERB_SET_PROC_COEF, 0x680); | 
|  | 5192 |  | 
|  | 5193 | snd_hda_codec_write(codec, 0x20, 0, | 
|  | 5194 | AC_VERB_SET_COEF_INDEX, 0x0c); | 
|  | 5195 | snd_hda_codec_write(codec, 0x20, 0, | 
|  | 5196 | AC_VERB_SET_PROC_COEF, 0x480); | 
|  | 5197 | } | 
|  | 5198 |  | 
|  | 5199 | static void alc269_fixup_quanta_mute(struct hda_codec *codec, | 
|  | 5200 | const struct alc_fixup *fix, int action) | 
|  | 5201 | { | 
|  | 5202 | struct alc_spec *spec = codec->spec; | 
|  | 5203 | if (action != ALC_FIXUP_ACT_PROBE) | 
|  | 5204 | return; | 
|  | 5205 | spec->automute_hook = alc269_quanta_automute; | 
|  | 5206 | } | 
|  | 5207 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5208 | enum { | 
|  | 5209 | ALC269_FIXUP_SONY_VAIO, | 
|  | 5210 | ALC275_FIXUP_SONY_VAIO_GPIO2, | 
|  | 5211 | ALC269_FIXUP_DELL_M101Z, | 
|  | 5212 | ALC269_FIXUP_SKU_IGNORE, | 
|  | 5213 | ALC269_FIXUP_ASUS_G73JW, | 
|  | 5214 | ALC269_FIXUP_LENOVO_EAPD, | 
|  | 5215 | ALC275_FIXUP_SONY_HWEQ, | 
|  | 5216 | ALC271_FIXUP_DMIC, | 
| Takashi Iwai | 017f2a1 | 2011-07-09 14:42:25 +0200 | [diff] [blame] | 5217 | ALC269_FIXUP_PCM_44K, | 
| Takashi Iwai | adabb3e | 2011-08-03 07:48:37 +0200 | [diff] [blame] | 5218 | ALC269_FIXUP_STEREO_DMIC, | 
| Takashi Iwai | 2451991 | 2011-08-16 15:08:49 +0200 | [diff] [blame] | 5219 | ALC269_FIXUP_QUANTA_MUTE, | 
|  | 5220 | ALC269_FIXUP_LIFEBOOK, | 
| Takashi Iwai | a4297b5 | 2011-08-23 18:40:12 +0200 | [diff] [blame] | 5221 | ALC269_FIXUP_AMIC, | 
|  | 5222 | ALC269_FIXUP_DMIC, | 
|  | 5223 | ALC269VB_FIXUP_AMIC, | 
|  | 5224 | ALC269VB_FIXUP_DMIC, | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5225 | }; | 
|  | 5226 |  | 
|  | 5227 | static const struct alc_fixup alc269_fixups[] = { | 
|  | 5228 | [ALC269_FIXUP_SONY_VAIO] = { | 
|  | 5229 | .type = ALC_FIXUP_VERBS, | 
|  | 5230 | .v.verbs = (const struct hda_verb[]) { | 
|  | 5231 | {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD}, | 
|  | 5232 | {} | 
|  | 5233 | } | 
|  | 5234 | }, | 
|  | 5235 | [ALC275_FIXUP_SONY_VAIO_GPIO2] = { | 
|  | 5236 | .type = ALC_FIXUP_VERBS, | 
|  | 5237 | .v.verbs = (const struct hda_verb[]) { | 
|  | 5238 | {0x01, AC_VERB_SET_GPIO_MASK, 0x04}, | 
|  | 5239 | {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04}, | 
|  | 5240 | {0x01, AC_VERB_SET_GPIO_DATA, 0x00}, | 
|  | 5241 | { } | 
|  | 5242 | }, | 
|  | 5243 | .chained = true, | 
|  | 5244 | .chain_id = ALC269_FIXUP_SONY_VAIO | 
|  | 5245 | }, | 
|  | 5246 | [ALC269_FIXUP_DELL_M101Z] = { | 
|  | 5247 | .type = ALC_FIXUP_VERBS, | 
|  | 5248 | .v.verbs = (const struct hda_verb[]) { | 
|  | 5249 | /* Enables internal speaker */ | 
|  | 5250 | {0x20, AC_VERB_SET_COEF_INDEX, 13}, | 
|  | 5251 | {0x20, AC_VERB_SET_PROC_COEF, 0x4040}, | 
|  | 5252 | {} | 
|  | 5253 | } | 
|  | 5254 | }, | 
|  | 5255 | [ALC269_FIXUP_SKU_IGNORE] = { | 
|  | 5256 | .type = ALC_FIXUP_SKU, | 
|  | 5257 | .v.sku = ALC_FIXUP_SKU_IGNORE, | 
|  | 5258 | }, | 
|  | 5259 | [ALC269_FIXUP_ASUS_G73JW] = { | 
|  | 5260 | .type = ALC_FIXUP_PINS, | 
|  | 5261 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5262 | { 0x17, 0x99130111 }, /* subwoofer */ | 
|  | 5263 | { } | 
|  | 5264 | } | 
|  | 5265 | }, | 
|  | 5266 | [ALC269_FIXUP_LENOVO_EAPD] = { | 
|  | 5267 | .type = ALC_FIXUP_VERBS, | 
|  | 5268 | .v.verbs = (const struct hda_verb[]) { | 
|  | 5269 | {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0}, | 
|  | 5270 | {} | 
|  | 5271 | } | 
|  | 5272 | }, | 
|  | 5273 | [ALC275_FIXUP_SONY_HWEQ] = { | 
|  | 5274 | .type = ALC_FIXUP_FUNC, | 
|  | 5275 | .v.func = alc269_fixup_hweq, | 
|  | 5276 | .chained = true, | 
|  | 5277 | .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2 | 
|  | 5278 | }, | 
|  | 5279 | [ALC271_FIXUP_DMIC] = { | 
|  | 5280 | .type = ALC_FIXUP_FUNC, | 
|  | 5281 | .v.func = alc271_fixup_dmic, | 
|  | 5282 | }, | 
| Takashi Iwai | 017f2a1 | 2011-07-09 14:42:25 +0200 | [diff] [blame] | 5283 | [ALC269_FIXUP_PCM_44K] = { | 
|  | 5284 | .type = ALC_FIXUP_FUNC, | 
|  | 5285 | .v.func = alc269_fixup_pcm_44k, | 
|  | 5286 | }, | 
| Takashi Iwai | adabb3e | 2011-08-03 07:48:37 +0200 | [diff] [blame] | 5287 | [ALC269_FIXUP_STEREO_DMIC] = { | 
|  | 5288 | .type = ALC_FIXUP_FUNC, | 
|  | 5289 | .v.func = alc269_fixup_stereo_dmic, | 
|  | 5290 | }, | 
| Takashi Iwai | 2451991 | 2011-08-16 15:08:49 +0200 | [diff] [blame] | 5291 | [ALC269_FIXUP_QUANTA_MUTE] = { | 
|  | 5292 | .type = ALC_FIXUP_FUNC, | 
|  | 5293 | .v.func = alc269_fixup_quanta_mute, | 
|  | 5294 | }, | 
|  | 5295 | [ALC269_FIXUP_LIFEBOOK] = { | 
|  | 5296 | .type = ALC_FIXUP_PINS, | 
|  | 5297 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5298 | { 0x1a, 0x2101103f }, /* dock line-out */ | 
|  | 5299 | { 0x1b, 0x23a11040 }, /* dock mic-in */ | 
|  | 5300 | { } | 
|  | 5301 | }, | 
|  | 5302 | .chained = true, | 
|  | 5303 | .chain_id = ALC269_FIXUP_QUANTA_MUTE | 
|  | 5304 | }, | 
| Takashi Iwai | a4297b5 | 2011-08-23 18:40:12 +0200 | [diff] [blame] | 5305 | [ALC269_FIXUP_AMIC] = { | 
|  | 5306 | .type = ALC_FIXUP_PINS, | 
|  | 5307 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5308 | { 0x14, 0x99130110 }, /* speaker */ | 
|  | 5309 | { 0x15, 0x0121401f }, /* HP out */ | 
|  | 5310 | { 0x18, 0x01a19c20 }, /* mic */ | 
|  | 5311 | { 0x19, 0x99a3092f }, /* int-mic */ | 
|  | 5312 | { } | 
|  | 5313 | }, | 
|  | 5314 | }, | 
|  | 5315 | [ALC269_FIXUP_DMIC] = { | 
|  | 5316 | .type = ALC_FIXUP_PINS, | 
|  | 5317 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5318 | { 0x12, 0x99a3092f }, /* int-mic */ | 
|  | 5319 | { 0x14, 0x99130110 }, /* speaker */ | 
|  | 5320 | { 0x15, 0x0121401f }, /* HP out */ | 
|  | 5321 | { 0x18, 0x01a19c20 }, /* mic */ | 
|  | 5322 | { } | 
|  | 5323 | }, | 
|  | 5324 | }, | 
|  | 5325 | [ALC269VB_FIXUP_AMIC] = { | 
|  | 5326 | .type = ALC_FIXUP_PINS, | 
|  | 5327 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5328 | { 0x14, 0x99130110 }, /* speaker */ | 
|  | 5329 | { 0x18, 0x01a19c20 }, /* mic */ | 
|  | 5330 | { 0x19, 0x99a3092f }, /* int-mic */ | 
|  | 5331 | { 0x21, 0x0121401f }, /* HP out */ | 
|  | 5332 | { } | 
|  | 5333 | }, | 
|  | 5334 | }, | 
| David Henningsson | 2267ea9 | 2012-01-03 08:45:56 +0100 | [diff] [blame] | 5335 | [ALC269VB_FIXUP_DMIC] = { | 
| Takashi Iwai | a4297b5 | 2011-08-23 18:40:12 +0200 | [diff] [blame] | 5336 | .type = ALC_FIXUP_PINS, | 
|  | 5337 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5338 | { 0x12, 0x99a3092f }, /* int-mic */ | 
|  | 5339 | { 0x14, 0x99130110 }, /* speaker */ | 
|  | 5340 | { 0x18, 0x01a19c20 }, /* mic */ | 
|  | 5341 | { 0x21, 0x0121401f }, /* HP out */ | 
|  | 5342 | { } | 
|  | 5343 | }, | 
|  | 5344 | }, | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5345 | }; | 
|  | 5346 |  | 
|  | 5347 | static const struct snd_pci_quirk alc269_fixup_tbl[] = { | 
| Takashi Iwai | 017f2a1 | 2011-07-09 14:42:25 +0200 | [diff] [blame] | 5348 | SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW), | 
| Takashi Iwai | adabb3e | 2011-08-03 07:48:37 +0200 | [diff] [blame] | 5349 | SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC), | 
|  | 5350 | SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC), | 
|  | 5351 | SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC), | 
|  | 5352 | SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC), | 
|  | 5353 | SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC), | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5354 | SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2), | 
|  | 5355 | SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ), | 
|  | 5356 | SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ), | 
|  | 5357 | SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO), | 
|  | 5358 | SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z), | 
|  | 5359 | SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC), | 
| Takashi Iwai | 2451991 | 2011-08-16 15:08:49 +0200 | [diff] [blame] | 5360 | SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK), | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5361 | SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE), | 
|  | 5362 | SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE), | 
|  | 5363 | SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE), | 
|  | 5364 | SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE), | 
|  | 5365 | SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE), | 
| Takashi Iwai | 2451991 | 2011-08-16 15:08:49 +0200 | [diff] [blame] | 5366 | SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_QUANTA_MUTE), | 
| Takashi Iwai | 017f2a1 | 2011-07-09 14:42:25 +0200 | [diff] [blame] | 5367 | SND_PCI_QUIRK(0x17aa, 0x3bf8, "Lenovo Ideapd", ALC269_FIXUP_PCM_44K), | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5368 | SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD), | 
| Takashi Iwai | a4297b5 | 2011-08-23 18:40:12 +0200 | [diff] [blame] | 5369 |  | 
|  | 5370 | #if 1 | 
|  | 5371 | /* Below is a quirk table taken from the old code. | 
|  | 5372 | * Basically the device should work as is without the fixup table. | 
|  | 5373 | * If BIOS doesn't give a proper info, enable the corresponding | 
|  | 5374 | * fixup entry. | 
|  | 5375 | */ | 
|  | 5376 | SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A", | 
|  | 5377 | ALC269_FIXUP_AMIC), | 
|  | 5378 | SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC), | 
| Takashi Iwai | a4297b5 | 2011-08-23 18:40:12 +0200 | [diff] [blame] | 5379 | SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC), | 
|  | 5380 | SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC), | 
|  | 5381 | SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC), | 
|  | 5382 | SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC), | 
|  | 5383 | SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC), | 
|  | 5384 | SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC), | 
|  | 5385 | SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC), | 
|  | 5386 | SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC), | 
|  | 5387 | SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC), | 
|  | 5388 | SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC), | 
|  | 5389 | SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC), | 
|  | 5390 | SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC), | 
|  | 5391 | SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC), | 
|  | 5392 | SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC), | 
|  | 5393 | SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC), | 
|  | 5394 | SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC), | 
|  | 5395 | SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC), | 
|  | 5396 | SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC), | 
|  | 5397 | SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC), | 
|  | 5398 | SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC), | 
|  | 5399 | SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC), | 
|  | 5400 | SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC), | 
|  | 5401 | SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC), | 
|  | 5402 | SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC), | 
|  | 5403 | SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC), | 
|  | 5404 | SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC), | 
|  | 5405 | SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC), | 
|  | 5406 | SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC), | 
|  | 5407 | SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC), | 
|  | 5408 | SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC), | 
|  | 5409 | SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC), | 
|  | 5410 | SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC), | 
|  | 5411 | SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC), | 
|  | 5412 | SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC), | 
|  | 5413 | SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC), | 
|  | 5414 | SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC), | 
|  | 5415 | SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC), | 
|  | 5416 | SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC), | 
|  | 5417 | #endif | 
|  | 5418 | {} | 
|  | 5419 | }; | 
|  | 5420 |  | 
|  | 5421 | static const struct alc_model_fixup alc269_fixup_models[] = { | 
|  | 5422 | {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"}, | 
|  | 5423 | {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"}, | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5424 | {} | 
|  | 5425 | }; | 
|  | 5426 |  | 
|  | 5427 |  | 
|  | 5428 | static int alc269_fill_coef(struct hda_codec *codec) | 
|  | 5429 | { | 
|  | 5430 | int val; | 
|  | 5431 |  | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 5432 | if ((alc_get_coef0(codec) & 0x00ff) < 0x015) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5433 | alc_write_coef_idx(codec, 0xf, 0x960b); | 
|  | 5434 | alc_write_coef_idx(codec, 0xe, 0x8817); | 
|  | 5435 | } | 
|  | 5436 |  | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 5437 | if ((alc_get_coef0(codec) & 0x00ff) == 0x016) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5438 | alc_write_coef_idx(codec, 0xf, 0x960b); | 
|  | 5439 | alc_write_coef_idx(codec, 0xe, 0x8814); | 
|  | 5440 | } | 
|  | 5441 |  | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 5442 | if ((alc_get_coef0(codec) & 0x00ff) == 0x017) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5443 | val = alc_read_coef_idx(codec, 0x04); | 
|  | 5444 | /* Power up output pin */ | 
|  | 5445 | alc_write_coef_idx(codec, 0x04, val | (1<<11)); | 
|  | 5446 | } | 
|  | 5447 |  | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 5448 | if ((alc_get_coef0(codec) & 0x00ff) == 0x018) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5449 | val = alc_read_coef_idx(codec, 0xd); | 
|  | 5450 | if ((val & 0x0c00) >> 10 != 0x1) { | 
|  | 5451 | /* Capless ramp up clock control */ | 
|  | 5452 | alc_write_coef_idx(codec, 0xd, val | (1<<10)); | 
|  | 5453 | } | 
|  | 5454 | val = alc_read_coef_idx(codec, 0x17); | 
|  | 5455 | if ((val & 0x01c0) >> 6 != 0x4) { | 
|  | 5456 | /* Class D power on reset */ | 
|  | 5457 | alc_write_coef_idx(codec, 0x17, val | (1<<7)); | 
|  | 5458 | } | 
|  | 5459 | } | 
|  | 5460 |  | 
|  | 5461 | val = alc_read_coef_idx(codec, 0xd); /* Class D */ | 
|  | 5462 | alc_write_coef_idx(codec, 0xd, val | (1<<14)); | 
|  | 5463 |  | 
|  | 5464 | val = alc_read_coef_idx(codec, 0x4); /* HP */ | 
|  | 5465 | alc_write_coef_idx(codec, 0x4, val | (1<<11)); | 
|  | 5466 |  | 
|  | 5467 | return 0; | 
|  | 5468 | } | 
|  | 5469 |  | 
|  | 5470 | /* | 
|  | 5471 | */ | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5472 | static int patch_alc269(struct hda_codec *codec) | 
|  | 5473 | { | 
|  | 5474 | struct alc_spec *spec; | 
| Takashi Iwai | 20ca0c3 | 2011-10-17 16:00:35 +0200 | [diff] [blame] | 5475 | int err = 0; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5476 |  | 
|  | 5477 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 
|  | 5478 | if (spec == NULL) | 
|  | 5479 | return -ENOMEM; | 
|  | 5480 |  | 
|  | 5481 | codec->spec = spec; | 
|  | 5482 |  | 
|  | 5483 | spec->mixer_nid = 0x0b; | 
|  | 5484 |  | 
|  | 5485 | alc_auto_parse_customize_define(codec); | 
|  | 5486 |  | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 5487 | err = alc_codec_rename_from_preset(codec); | 
|  | 5488 | if (err < 0) | 
|  | 5489 | goto error; | 
|  | 5490 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5491 | if (codec->vendor_id == 0x10ec0269) { | 
|  | 5492 | spec->codec_variant = ALC269_TYPE_ALC269VA; | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 5493 | switch (alc_get_coef0(codec) & 0x00f0) { | 
|  | 5494 | case 0x0010: | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5495 | if (codec->bus->pci->subsystem_vendor == 0x1025 && | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 5496 | spec->cdefine.platform_type == 1) | 
| Takashi Iwai | 20ca0c3 | 2011-10-17 16:00:35 +0200 | [diff] [blame] | 5497 | err = alc_codec_rename(codec, "ALC271X"); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5498 | spec->codec_variant = ALC269_TYPE_ALC269VB; | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 5499 | break; | 
|  | 5500 | case 0x0020: | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 5501 | if (codec->bus->pci->subsystem_vendor == 0x17aa && | 
|  | 5502 | codec->bus->pci->subsystem_device == 0x21f3) | 
| Takashi Iwai | 20ca0c3 | 2011-10-17 16:00:35 +0200 | [diff] [blame] | 5503 | err = alc_codec_rename(codec, "ALC3202"); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5504 | spec->codec_variant = ALC269_TYPE_ALC269VC; | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 5505 | break; | 
|  | 5506 | default: | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5507 | alc_fix_pll_init(codec, 0x20, 0x04, 15); | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 5508 | } | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 5509 | if (err < 0) | 
|  | 5510 | goto error; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5511 | alc269_fill_coef(codec); | 
|  | 5512 | } | 
|  | 5513 |  | 
| Takashi Iwai | a4297b5 | 2011-08-23 18:40:12 +0200 | [diff] [blame] | 5514 | alc_pick_fixup(codec, alc269_fixup_models, | 
|  | 5515 | alc269_fixup_tbl, alc269_fixups); | 
|  | 5516 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5517 |  | 
| Takashi Iwai | a4297b5 | 2011-08-23 18:40:12 +0200 | [diff] [blame] | 5518 | /* automatic parse from the BIOS config */ | 
|  | 5519 | err = alc269_parse_auto_config(codec); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 5520 | if (err < 0) | 
|  | 5521 | goto error; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5522 |  | 
| Takashi Iwai | 60a6a84 | 2011-07-27 14:01:24 +0200 | [diff] [blame] | 5523 | if (!spec->no_analog && !spec->adc_nids) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5524 | alc_auto_fill_adc_caps(codec); | 
|  | 5525 | alc_rebuild_imux_for_auto_mic(codec); | 
|  | 5526 | alc_remove_invalid_adc_nids(codec); | 
|  | 5527 | } | 
|  | 5528 |  | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5529 | if (!spec->no_analog && !spec->cap_mixer) | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5530 | set_capture_mixer(codec); | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5531 |  | 
|  | 5532 | if (!spec->no_analog && has_cdefine_beep(codec)) { | 
|  | 5533 | err = snd_hda_attach_beep_device(codec, 0x1); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 5534 | if (err < 0) | 
|  | 5535 | goto error; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5536 | set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT); | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5537 | } | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5538 |  | 
|  | 5539 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); | 
|  | 5540 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5541 | codec->patch_ops = alc_patch_ops; | 
| Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 5542 | #ifdef CONFIG_PM | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5543 | codec->patch_ops.resume = alc269_resume; | 
|  | 5544 | #endif | 
| Takashi Iwai | a4297b5 | 2011-08-23 18:40:12 +0200 | [diff] [blame] | 5545 | spec->init_hook = alc_auto_init_std; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5546 | spec->shutup = alc269_shutup; | 
|  | 5547 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5548 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 5549 | if (!spec->loopback.amplist) | 
|  | 5550 | spec->loopback.amplist = alc269_loopbacks; | 
|  | 5551 | if (alc269_mic2_for_mute_led(codec)) | 
|  | 5552 | codec->patch_ops.check_power_status = alc269_mic2_mute_check_ps; | 
|  | 5553 | #endif | 
|  | 5554 |  | 
|  | 5555 | return 0; | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 5556 |  | 
|  | 5557 | error: | 
|  | 5558 | alc_free(codec); | 
|  | 5559 | return err; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5560 | } | 
|  | 5561 |  | 
|  | 5562 | /* | 
|  | 5563 | * ALC861 | 
|  | 5564 | */ | 
|  | 5565 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5566 | static int alc861_parse_auto_config(struct hda_codec *codec) | 
|  | 5567 | { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5568 | static const hda_nid_t alc861_ignore[] = { 0x1d, 0 }; | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5569 | static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 }; | 
|  | 5570 | return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5571 | } | 
|  | 5572 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5573 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 5574 | static const struct hda_amp_list alc861_loopbacks[] = { | 
|  | 5575 | { 0x15, HDA_INPUT, 0 }, | 
|  | 5576 | { 0x15, HDA_INPUT, 1 }, | 
|  | 5577 | { 0x15, HDA_INPUT, 2 }, | 
|  | 5578 | { 0x15, HDA_INPUT, 3 }, | 
|  | 5579 | { } /* end */ | 
|  | 5580 | }; | 
|  | 5581 | #endif | 
|  | 5582 |  | 
|  | 5583 |  | 
|  | 5584 | /* Pin config fixes */ | 
|  | 5585 | enum { | 
|  | 5586 | PINFIX_FSC_AMILO_PI1505, | 
| Takashi Iwai | 3b25eb6 | 2012-01-25 09:55:46 +0100 | [diff] [blame] | 5587 | PINFIX_ASUS_A6RP, | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5588 | }; | 
|  | 5589 |  | 
| Takashi Iwai | 31150f2 | 2012-01-30 10:54:08 +0100 | [diff] [blame] | 5590 | /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */ | 
|  | 5591 | static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec, | 
|  | 5592 | const struct alc_fixup *fix, int action) | 
|  | 5593 | { | 
|  | 5594 | struct alc_spec *spec = codec->spec; | 
|  | 5595 | unsigned int val; | 
|  | 5596 |  | 
|  | 5597 | if (action != ALC_FIXUP_ACT_INIT) | 
|  | 5598 | return; | 
|  | 5599 | val = snd_hda_codec_read(codec, 0x0f, 0, | 
|  | 5600 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); | 
|  | 5601 | if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN))) | 
|  | 5602 | val |= AC_PINCTL_IN_EN; | 
|  | 5603 | val |= AC_PINCTL_VREF_50; | 
|  | 5604 | snd_hda_codec_write(codec, 0x0f, 0, | 
|  | 5605 | AC_VERB_SET_PIN_WIDGET_CONTROL, val); | 
|  | 5606 | spec->keep_vref_in_automute = 1; | 
|  | 5607 | } | 
|  | 5608 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5609 | static const struct alc_fixup alc861_fixups[] = { | 
|  | 5610 | [PINFIX_FSC_AMILO_PI1505] = { | 
|  | 5611 | .type = ALC_FIXUP_PINS, | 
|  | 5612 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5613 | { 0x0b, 0x0221101f }, /* HP */ | 
|  | 5614 | { 0x0f, 0x90170310 }, /* speaker */ | 
|  | 5615 | { } | 
|  | 5616 | } | 
|  | 5617 | }, | 
| Takashi Iwai | 3b25eb6 | 2012-01-25 09:55:46 +0100 | [diff] [blame] | 5618 | [PINFIX_ASUS_A6RP] = { | 
| Takashi Iwai | 31150f2 | 2012-01-30 10:54:08 +0100 | [diff] [blame] | 5619 | .type = ALC_FIXUP_FUNC, | 
|  | 5620 | .v.func = alc861_fixup_asus_amp_vref_0f, | 
| Takashi Iwai | 3b25eb6 | 2012-01-25 09:55:46 +0100 | [diff] [blame] | 5621 | }, | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5622 | }; | 
|  | 5623 |  | 
|  | 5624 | static const struct snd_pci_quirk alc861_fixup_tbl[] = { | 
| Takashi Iwai | 31150f2 | 2012-01-30 10:54:08 +0100 | [diff] [blame] | 5625 | SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", PINFIX_ASUS_A6RP), | 
| Takashi Iwai | b3a8152 | 2012-01-26 15:56:16 +0100 | [diff] [blame] | 5626 | SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", PINFIX_ASUS_A6RP), | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5627 | SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", PINFIX_FSC_AMILO_PI1505), | 
|  | 5628 | {} | 
|  | 5629 | }; | 
|  | 5630 |  | 
|  | 5631 | /* | 
|  | 5632 | */ | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5633 | static int patch_alc861(struct hda_codec *codec) | 
|  | 5634 | { | 
|  | 5635 | struct alc_spec *spec; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5636 | int err; | 
|  | 5637 |  | 
|  | 5638 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 
|  | 5639 | if (spec == NULL) | 
|  | 5640 | return -ENOMEM; | 
|  | 5641 |  | 
|  | 5642 | codec->spec = spec; | 
|  | 5643 |  | 
|  | 5644 | spec->mixer_nid = 0x15; | 
|  | 5645 |  | 
| Takashi Iwai | cb4e482 | 2011-08-23 17:34:25 +0200 | [diff] [blame] | 5646 | alc_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups); | 
|  | 5647 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5648 |  | 
| Takashi Iwai | cb4e482 | 2011-08-23 17:34:25 +0200 | [diff] [blame] | 5649 | /* automatic parse from the BIOS config */ | 
|  | 5650 | err = alc861_parse_auto_config(codec); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 5651 | if (err < 0) | 
|  | 5652 | goto error; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5653 |  | 
| Takashi Iwai | 60a6a84 | 2011-07-27 14:01:24 +0200 | [diff] [blame] | 5654 | if (!spec->no_analog && !spec->adc_nids) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5655 | alc_auto_fill_adc_caps(codec); | 
|  | 5656 | alc_rebuild_imux_for_auto_mic(codec); | 
|  | 5657 | alc_remove_invalid_adc_nids(codec); | 
|  | 5658 | } | 
|  | 5659 |  | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5660 | if (!spec->no_analog && !spec->cap_mixer) | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5661 | set_capture_mixer(codec); | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5662 |  | 
|  | 5663 | if (!spec->no_analog) { | 
|  | 5664 | err = snd_hda_attach_beep_device(codec, 0x23); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 5665 | if (err < 0) | 
|  | 5666 | goto error; | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5667 | set_beep_amp(spec, 0x23, 0, HDA_OUTPUT); | 
|  | 5668 | } | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5669 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5670 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); | 
|  | 5671 |  | 
|  | 5672 | codec->patch_ops = alc_patch_ops; | 
| Takashi Iwai | cb4e482 | 2011-08-23 17:34:25 +0200 | [diff] [blame] | 5673 | spec->init_hook = alc_auto_init_std; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5674 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
| Takashi Iwai | cb4e482 | 2011-08-23 17:34:25 +0200 | [diff] [blame] | 5675 | spec->power_hook = alc_power_eapd; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5676 | if (!spec->loopback.amplist) | 
|  | 5677 | spec->loopback.amplist = alc861_loopbacks; | 
|  | 5678 | #endif | 
|  | 5679 |  | 
|  | 5680 | return 0; | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 5681 |  | 
|  | 5682 | error: | 
|  | 5683 | alc_free(codec); | 
|  | 5684 | return err; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5685 | } | 
|  | 5686 |  | 
|  | 5687 | /* | 
|  | 5688 | * ALC861-VD support | 
|  | 5689 | * | 
|  | 5690 | * Based on ALC882 | 
|  | 5691 | * | 
|  | 5692 | * In addition, an independent DAC | 
|  | 5693 | */ | 
|  | 5694 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 5695 | #define alc861vd_loopbacks	alc880_loopbacks | 
|  | 5696 | #endif | 
|  | 5697 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5698 | static int alc861vd_parse_auto_config(struct hda_codec *codec) | 
|  | 5699 | { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5700 | static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 }; | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5701 | static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 }; | 
|  | 5702 | return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5703 | } | 
|  | 5704 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5705 | enum { | 
| Takashi Iwai | 8fdcb6f | 2011-08-23 17:28:55 +0200 | [diff] [blame] | 5706 | ALC660VD_FIX_ASUS_GPIO1, | 
|  | 5707 | ALC861VD_FIX_DALLAS, | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5708 | }; | 
|  | 5709 |  | 
| Takashi Iwai | 8fdcb6f | 2011-08-23 17:28:55 +0200 | [diff] [blame] | 5710 | /* exclude VREF80 */ | 
|  | 5711 | static void alc861vd_fixup_dallas(struct hda_codec *codec, | 
|  | 5712 | const struct alc_fixup *fix, int action) | 
|  | 5713 | { | 
|  | 5714 | if (action == ALC_FIXUP_ACT_PRE_PROBE) { | 
|  | 5715 | snd_hda_override_pin_caps(codec, 0x18, 0x00001714); | 
|  | 5716 | snd_hda_override_pin_caps(codec, 0x19, 0x0000171c); | 
|  | 5717 | } | 
|  | 5718 | } | 
|  | 5719 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5720 | static const struct alc_fixup alc861vd_fixups[] = { | 
|  | 5721 | [ALC660VD_FIX_ASUS_GPIO1] = { | 
|  | 5722 | .type = ALC_FIXUP_VERBS, | 
|  | 5723 | .v.verbs = (const struct hda_verb[]) { | 
| Takashi Iwai | 8fdcb6f | 2011-08-23 17:28:55 +0200 | [diff] [blame] | 5724 | /* reset GPIO1 */ | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5725 | {0x01, AC_VERB_SET_GPIO_MASK, 0x03}, | 
|  | 5726 | {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01}, | 
|  | 5727 | {0x01, AC_VERB_SET_GPIO_DATA, 0x01}, | 
|  | 5728 | { } | 
|  | 5729 | } | 
|  | 5730 | }, | 
| Takashi Iwai | 8fdcb6f | 2011-08-23 17:28:55 +0200 | [diff] [blame] | 5731 | [ALC861VD_FIX_DALLAS] = { | 
|  | 5732 | .type = ALC_FIXUP_FUNC, | 
|  | 5733 | .v.func = alc861vd_fixup_dallas, | 
|  | 5734 | }, | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5735 | }; | 
|  | 5736 |  | 
|  | 5737 | static const struct snd_pci_quirk alc861vd_fixup_tbl[] = { | 
| Takashi Iwai | 8fdcb6f | 2011-08-23 17:28:55 +0200 | [diff] [blame] | 5738 | SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS), | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5739 | SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1), | 
| Takashi Iwai | 8fdcb6f | 2011-08-23 17:28:55 +0200 | [diff] [blame] | 5740 | SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS), | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5741 | {} | 
|  | 5742 | }; | 
|  | 5743 |  | 
|  | 5744 | static const struct hda_verb alc660vd_eapd_verbs[] = { | 
|  | 5745 | {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2}, | 
|  | 5746 | {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2}, | 
|  | 5747 | { } | 
|  | 5748 | }; | 
|  | 5749 |  | 
|  | 5750 | /* | 
|  | 5751 | */ | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5752 | static int patch_alc861vd(struct hda_codec *codec) | 
|  | 5753 | { | 
|  | 5754 | struct alc_spec *spec; | 
| Takashi Iwai | cb4e482 | 2011-08-23 17:34:25 +0200 | [diff] [blame] | 5755 | int err; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5756 |  | 
|  | 5757 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 
|  | 5758 | if (spec == NULL) | 
|  | 5759 | return -ENOMEM; | 
|  | 5760 |  | 
|  | 5761 | codec->spec = spec; | 
|  | 5762 |  | 
|  | 5763 | spec->mixer_nid = 0x0b; | 
|  | 5764 |  | 
| Takashi Iwai | cb4e482 | 2011-08-23 17:34:25 +0200 | [diff] [blame] | 5765 | alc_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups); | 
|  | 5766 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE); | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5767 |  | 
| Takashi Iwai | cb4e482 | 2011-08-23 17:34:25 +0200 | [diff] [blame] | 5768 | /* automatic parse from the BIOS config */ | 
|  | 5769 | err = alc861vd_parse_auto_config(codec); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 5770 | if (err < 0) | 
|  | 5771 | goto error; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5772 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5773 | if (codec->vendor_id == 0x10ec0660) { | 
|  | 5774 | /* always turn on EAPD */ | 
|  | 5775 | add_verb(spec, alc660vd_eapd_verbs); | 
|  | 5776 | } | 
|  | 5777 |  | 
| Takashi Iwai | 60a6a84 | 2011-07-27 14:01:24 +0200 | [diff] [blame] | 5778 | if (!spec->no_analog && !spec->adc_nids) { | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5779 | alc_auto_fill_adc_caps(codec); | 
|  | 5780 | alc_rebuild_imux_for_auto_mic(codec); | 
|  | 5781 | alc_remove_invalid_adc_nids(codec); | 
|  | 5782 | } | 
|  | 5783 |  | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5784 | if (!spec->no_analog && !spec->cap_mixer) | 
|  | 5785 | set_capture_mixer(codec); | 
|  | 5786 |  | 
|  | 5787 | if (!spec->no_analog) { | 
|  | 5788 | err = snd_hda_attach_beep_device(codec, 0x23); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 5789 | if (err < 0) | 
|  | 5790 | goto error; | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5791 | set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); | 
|  | 5792 | } | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5793 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5794 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); | 
|  | 5795 |  | 
|  | 5796 | codec->patch_ops = alc_patch_ops; | 
|  | 5797 |  | 
| Takashi Iwai | cb4e482 | 2011-08-23 17:34:25 +0200 | [diff] [blame] | 5798 | spec->init_hook = alc_auto_init_std; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5799 | spec->shutup = alc_eapd_shutup; | 
|  | 5800 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 5801 | if (!spec->loopback.amplist) | 
|  | 5802 | spec->loopback.amplist = alc861vd_loopbacks; | 
|  | 5803 | #endif | 
|  | 5804 |  | 
|  | 5805 | return 0; | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 5806 |  | 
|  | 5807 | error: | 
|  | 5808 | alc_free(codec); | 
|  | 5809 | return err; | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 5810 | } | 
|  | 5811 |  | 
|  | 5812 | /* | 
|  | 5813 | * ALC662 support | 
|  | 5814 | * | 
|  | 5815 | * ALC662 is almost identical with ALC880 but has cleaner and more flexible | 
|  | 5816 | * configuration.  Each pin widget can choose any input DACs and a mixer. | 
|  | 5817 | * Each ADC is connected from a mixer of all inputs.  This makes possible | 
|  | 5818 | * 6-channel independent captures. | 
|  | 5819 | * | 
|  | 5820 | * In addition, an independent DAC for the multi-playback (not used in this | 
|  | 5821 | * driver yet). | 
|  | 5822 | */ | 
|  | 5823 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 5824 | #define alc662_loopbacks	alc880_loopbacks | 
|  | 5825 | #endif | 
|  | 5826 |  | 
|  | 5827 | /* | 
|  | 5828 | * BIOS auto configuration | 
|  | 5829 | */ | 
|  | 5830 |  | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 5831 | static int alc662_parse_auto_config(struct hda_codec *codec) | 
|  | 5832 | { | 
| Takashi Iwai | 4c6d72d | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 5833 | static const hda_nid_t alc662_ignore[] = { 0x1d, 0 }; | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5834 | static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 }; | 
|  | 5835 | static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 }; | 
|  | 5836 | const hda_nid_t *ssids; | 
| Takashi Iwai | ee979a14 | 2008-09-02 15:42:20 +0200 | [diff] [blame] | 5837 |  | 
| Kailang Yang | 6227cdc | 2010-02-25 08:36:52 +0100 | [diff] [blame] | 5838 | if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 || | 
|  | 5839 | codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670) | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5840 | ssids = alc663_ssids; | 
| Kailang Yang | 6227cdc | 2010-02-25 08:36:52 +0100 | [diff] [blame] | 5841 | else | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 5842 | ssids = alc662_ssids; | 
|  | 5843 | return alc_parse_auto_config(codec, alc662_ignore, ssids); | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 5844 | } | 
|  | 5845 |  | 
| Todd Broch | 6be7948 | 2010-12-07 16:51:05 -0800 | [diff] [blame] | 5846 | static void alc272_fixup_mario(struct hda_codec *codec, | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 5847 | const struct alc_fixup *fix, int action) | 
| Takashi Iwai | 6fc398c | 2011-01-13 14:36:37 +0100 | [diff] [blame] | 5848 | { | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 5849 | if (action != ALC_FIXUP_ACT_PROBE) | 
| Takashi Iwai | 6fc398c | 2011-01-13 14:36:37 +0100 | [diff] [blame] | 5850 | return; | 
| Todd Broch | 6be7948 | 2010-12-07 16:51:05 -0800 | [diff] [blame] | 5851 | if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT, | 
|  | 5852 | (0x3b << AC_AMPCAP_OFFSET_SHIFT) | | 
|  | 5853 | (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) | | 
|  | 5854 | (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) | | 
|  | 5855 | (0 << AC_AMPCAP_MUTE_SHIFT))) | 
|  | 5856 | printk(KERN_WARNING | 
|  | 5857 | "hda_codec: failed to override amp caps for NID 0x2\n"); | 
|  | 5858 | } | 
|  | 5859 |  | 
| David Henningsson | 6cb3b70 | 2010-09-09 08:51:44 +0200 | [diff] [blame] | 5860 | enum { | 
| Daniel T Chen | 2df0351 | 2010-10-10 22:39:28 -0400 | [diff] [blame] | 5861 | ALC662_FIXUP_ASPIRE, | 
| David Henningsson | 6cb3b70 | 2010-09-09 08:51:44 +0200 | [diff] [blame] | 5862 | ALC662_FIXUP_IDEAPAD, | 
| Todd Broch | 6be7948 | 2010-12-07 16:51:05 -0800 | [diff] [blame] | 5863 | ALC272_FIXUP_MARIO, | 
| Anisse Astier | d2ebd47 | 2011-01-20 12:36:21 +0100 | [diff] [blame] | 5864 | ALC662_FIXUP_CZC_P10T, | 
| David Henningsson | 94024cd | 2011-04-29 14:10:55 +0200 | [diff] [blame] | 5865 | ALC662_FIXUP_SKU_IGNORE, | 
| Takashi Iwai | e59ea3e | 2011-06-29 17:21:00 +0200 | [diff] [blame] | 5866 | ALC662_FIXUP_HP_RP5800, | 
| Takashi Iwai | 53c334a | 2011-08-23 18:27:14 +0200 | [diff] [blame] | 5867 | ALC662_FIXUP_ASUS_MODE1, | 
|  | 5868 | ALC662_FIXUP_ASUS_MODE2, | 
|  | 5869 | ALC662_FIXUP_ASUS_MODE3, | 
|  | 5870 | ALC662_FIXUP_ASUS_MODE4, | 
|  | 5871 | ALC662_FIXUP_ASUS_MODE5, | 
|  | 5872 | ALC662_FIXUP_ASUS_MODE6, | 
|  | 5873 | ALC662_FIXUP_ASUS_MODE7, | 
|  | 5874 | ALC662_FIXUP_ASUS_MODE8, | 
| David Henningsson | 6cb3b70 | 2010-09-09 08:51:44 +0200 | [diff] [blame] | 5875 | }; | 
|  | 5876 |  | 
|  | 5877 | static const struct alc_fixup alc662_fixups[] = { | 
| Daniel T Chen | 2df0351 | 2010-10-10 22:39:28 -0400 | [diff] [blame] | 5878 | [ALC662_FIXUP_ASPIRE] = { | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 5879 | .type = ALC_FIXUP_PINS, | 
|  | 5880 | .v.pins = (const struct alc_pincfg[]) { | 
| Daniel T Chen | 2df0351 | 2010-10-10 22:39:28 -0400 | [diff] [blame] | 5881 | { 0x15, 0x99130112 }, /* subwoofer */ | 
|  | 5882 | { } | 
|  | 5883 | } | 
|  | 5884 | }, | 
| David Henningsson | 6cb3b70 | 2010-09-09 08:51:44 +0200 | [diff] [blame] | 5885 | [ALC662_FIXUP_IDEAPAD] = { | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 5886 | .type = ALC_FIXUP_PINS, | 
|  | 5887 | .v.pins = (const struct alc_pincfg[]) { | 
| David Henningsson | 6cb3b70 | 2010-09-09 08:51:44 +0200 | [diff] [blame] | 5888 | { 0x17, 0x99130112 }, /* subwoofer */ | 
|  | 5889 | { } | 
|  | 5890 | } | 
|  | 5891 | }, | 
| Todd Broch | 6be7948 | 2010-12-07 16:51:05 -0800 | [diff] [blame] | 5892 | [ALC272_FIXUP_MARIO] = { | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 5893 | .type = ALC_FIXUP_FUNC, | 
|  | 5894 | .v.func = alc272_fixup_mario, | 
| Anisse Astier | d2ebd47 | 2011-01-20 12:36:21 +0100 | [diff] [blame] | 5895 | }, | 
|  | 5896 | [ALC662_FIXUP_CZC_P10T] = { | 
|  | 5897 | .type = ALC_FIXUP_VERBS, | 
|  | 5898 | .v.verbs = (const struct hda_verb[]) { | 
|  | 5899 | {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0}, | 
|  | 5900 | {} | 
|  | 5901 | } | 
|  | 5902 | }, | 
| David Henningsson | 94024cd | 2011-04-29 14:10:55 +0200 | [diff] [blame] | 5903 | [ALC662_FIXUP_SKU_IGNORE] = { | 
|  | 5904 | .type = ALC_FIXUP_SKU, | 
|  | 5905 | .v.sku = ALC_FIXUP_SKU_IGNORE, | 
| Takashi Iwai | c6b3587 | 2011-03-28 12:05:31 +0200 | [diff] [blame] | 5906 | }, | 
| Takashi Iwai | e59ea3e | 2011-06-29 17:21:00 +0200 | [diff] [blame] | 5907 | [ALC662_FIXUP_HP_RP5800] = { | 
|  | 5908 | .type = ALC_FIXUP_PINS, | 
|  | 5909 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5910 | { 0x14, 0x0221201f }, /* HP out */ | 
|  | 5911 | { } | 
|  | 5912 | }, | 
|  | 5913 | .chained = true, | 
|  | 5914 | .chain_id = ALC662_FIXUP_SKU_IGNORE | 
|  | 5915 | }, | 
| Takashi Iwai | 53c334a | 2011-08-23 18:27:14 +0200 | [diff] [blame] | 5916 | [ALC662_FIXUP_ASUS_MODE1] = { | 
|  | 5917 | .type = ALC_FIXUP_PINS, | 
|  | 5918 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5919 | { 0x14, 0x99130110 }, /* speaker */ | 
|  | 5920 | { 0x18, 0x01a19c20 }, /* mic */ | 
|  | 5921 | { 0x19, 0x99a3092f }, /* int-mic */ | 
|  | 5922 | { 0x21, 0x0121401f }, /* HP out */ | 
|  | 5923 | { } | 
|  | 5924 | }, | 
|  | 5925 | .chained = true, | 
|  | 5926 | .chain_id = ALC662_FIXUP_SKU_IGNORE | 
|  | 5927 | }, | 
|  | 5928 | [ALC662_FIXUP_ASUS_MODE2] = { | 
| Takashi Iwai | 2996bdb | 2011-08-18 16:02:24 +0200 | [diff] [blame] | 5929 | .type = ALC_FIXUP_PINS, | 
|  | 5930 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5931 | { 0x14, 0x99130110 }, /* speaker */ | 
|  | 5932 | { 0x18, 0x01a19820 }, /* mic */ | 
|  | 5933 | { 0x19, 0x99a3092f }, /* int-mic */ | 
|  | 5934 | { 0x1b, 0x0121401f }, /* HP out */ | 
|  | 5935 | { } | 
|  | 5936 | }, | 
| Takashi Iwai | 53c334a | 2011-08-23 18:27:14 +0200 | [diff] [blame] | 5937 | .chained = true, | 
|  | 5938 | .chain_id = ALC662_FIXUP_SKU_IGNORE | 
|  | 5939 | }, | 
|  | 5940 | [ALC662_FIXUP_ASUS_MODE3] = { | 
|  | 5941 | .type = ALC_FIXUP_PINS, | 
|  | 5942 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5943 | { 0x14, 0x99130110 }, /* speaker */ | 
|  | 5944 | { 0x15, 0x0121441f }, /* HP */ | 
|  | 5945 | { 0x18, 0x01a19840 }, /* mic */ | 
|  | 5946 | { 0x19, 0x99a3094f }, /* int-mic */ | 
|  | 5947 | { 0x21, 0x01211420 }, /* HP2 */ | 
|  | 5948 | { } | 
|  | 5949 | }, | 
|  | 5950 | .chained = true, | 
|  | 5951 | .chain_id = ALC662_FIXUP_SKU_IGNORE | 
|  | 5952 | }, | 
|  | 5953 | [ALC662_FIXUP_ASUS_MODE4] = { | 
|  | 5954 | .type = ALC_FIXUP_PINS, | 
|  | 5955 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5956 | { 0x14, 0x99130110 }, /* speaker */ | 
|  | 5957 | { 0x16, 0x99130111 }, /* speaker */ | 
|  | 5958 | { 0x18, 0x01a19840 }, /* mic */ | 
|  | 5959 | { 0x19, 0x99a3094f }, /* int-mic */ | 
|  | 5960 | { 0x21, 0x0121441f }, /* HP */ | 
|  | 5961 | { } | 
|  | 5962 | }, | 
|  | 5963 | .chained = true, | 
|  | 5964 | .chain_id = ALC662_FIXUP_SKU_IGNORE | 
|  | 5965 | }, | 
|  | 5966 | [ALC662_FIXUP_ASUS_MODE5] = { | 
|  | 5967 | .type = ALC_FIXUP_PINS, | 
|  | 5968 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5969 | { 0x14, 0x99130110 }, /* speaker */ | 
|  | 5970 | { 0x15, 0x0121441f }, /* HP */ | 
|  | 5971 | { 0x16, 0x99130111 }, /* speaker */ | 
|  | 5972 | { 0x18, 0x01a19840 }, /* mic */ | 
|  | 5973 | { 0x19, 0x99a3094f }, /* int-mic */ | 
|  | 5974 | { } | 
|  | 5975 | }, | 
|  | 5976 | .chained = true, | 
|  | 5977 | .chain_id = ALC662_FIXUP_SKU_IGNORE | 
|  | 5978 | }, | 
|  | 5979 | [ALC662_FIXUP_ASUS_MODE6] = { | 
|  | 5980 | .type = ALC_FIXUP_PINS, | 
|  | 5981 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5982 | { 0x14, 0x99130110 }, /* speaker */ | 
|  | 5983 | { 0x15, 0x01211420 }, /* HP2 */ | 
|  | 5984 | { 0x18, 0x01a19840 }, /* mic */ | 
|  | 5985 | { 0x19, 0x99a3094f }, /* int-mic */ | 
|  | 5986 | { 0x1b, 0x0121441f }, /* HP */ | 
|  | 5987 | { } | 
|  | 5988 | }, | 
|  | 5989 | .chained = true, | 
|  | 5990 | .chain_id = ALC662_FIXUP_SKU_IGNORE | 
|  | 5991 | }, | 
|  | 5992 | [ALC662_FIXUP_ASUS_MODE7] = { | 
|  | 5993 | .type = ALC_FIXUP_PINS, | 
|  | 5994 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 5995 | { 0x14, 0x99130110 }, /* speaker */ | 
|  | 5996 | { 0x17, 0x99130111 }, /* speaker */ | 
|  | 5997 | { 0x18, 0x01a19840 }, /* mic */ | 
|  | 5998 | { 0x19, 0x99a3094f }, /* int-mic */ | 
|  | 5999 | { 0x1b, 0x01214020 }, /* HP */ | 
|  | 6000 | { 0x21, 0x0121401f }, /* HP */ | 
|  | 6001 | { } | 
|  | 6002 | }, | 
|  | 6003 | .chained = true, | 
|  | 6004 | .chain_id = ALC662_FIXUP_SKU_IGNORE | 
|  | 6005 | }, | 
|  | 6006 | [ALC662_FIXUP_ASUS_MODE8] = { | 
|  | 6007 | .type = ALC_FIXUP_PINS, | 
|  | 6008 | .v.pins = (const struct alc_pincfg[]) { | 
|  | 6009 | { 0x14, 0x99130110 }, /* speaker */ | 
|  | 6010 | { 0x12, 0x99a30970 }, /* int-mic */ | 
|  | 6011 | { 0x15, 0x01214020 }, /* HP */ | 
|  | 6012 | { 0x17, 0x99130111 }, /* speaker */ | 
|  | 6013 | { 0x18, 0x01a19840 }, /* mic */ | 
|  | 6014 | { 0x21, 0x0121401f }, /* HP */ | 
|  | 6015 | { } | 
|  | 6016 | }, | 
|  | 6017 | .chained = true, | 
|  | 6018 | .chain_id = ALC662_FIXUP_SKU_IGNORE | 
| Takashi Iwai | 2996bdb | 2011-08-18 16:02:24 +0200 | [diff] [blame] | 6019 | }, | 
| David Henningsson | 6cb3b70 | 2010-09-09 08:51:44 +0200 | [diff] [blame] | 6020 | }; | 
|  | 6021 |  | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 6022 | static const struct snd_pci_quirk alc662_fixup_tbl[] = { | 
| Takashi Iwai | 53c334a | 2011-08-23 18:27:14 +0200 | [diff] [blame] | 6023 | SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2), | 
| David Henningsson | a6c47a8 | 2011-02-10 15:39:19 +0100 | [diff] [blame] | 6024 | SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE), | 
| David Henningsson | 94024cd | 2011-04-29 14:10:55 +0200 | [diff] [blame] | 6025 | SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE), | 
| Daniel T Chen | 2df0351 | 2010-10-10 22:39:28 -0400 | [diff] [blame] | 6026 | SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE), | 
| Takashi Iwai | e59ea3e | 2011-06-29 17:21:00 +0200 | [diff] [blame] | 6027 | SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800), | 
| Takashi Iwai | 53c334a | 2011-08-23 18:27:14 +0200 | [diff] [blame] | 6028 | SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2), | 
| Daniel T Chen | a0e90ac | 2010-11-20 10:20:35 -0500 | [diff] [blame] | 6029 | SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD), | 
| Valentine Sinitsyn | d411858 | 2010-10-01 22:24:08 +0600 | [diff] [blame] | 6030 | SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD), | 
| David Henningsson | 6cb3b70 | 2010-09-09 08:51:44 +0200 | [diff] [blame] | 6031 | SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD), | 
| Anisse Astier | d2ebd47 | 2011-01-20 12:36:21 +0100 | [diff] [blame] | 6032 | SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T), | 
| Takashi Iwai | 53c334a | 2011-08-23 18:27:14 +0200 | [diff] [blame] | 6033 |  | 
|  | 6034 | #if 0 | 
|  | 6035 | /* Below is a quirk table taken from the old code. | 
|  | 6036 | * Basically the device should work as is without the fixup table. | 
|  | 6037 | * If BIOS doesn't give a proper info, enable the corresponding | 
|  | 6038 | * fixup entry. | 
|  | 6039 | */ | 
|  | 6040 | SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6041 | SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3), | 
|  | 6042 | SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6043 | SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3), | 
|  | 6044 | SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6045 | SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | 
|  | 6046 | SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6047 | SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6048 | SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6049 | SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | 
|  | 6050 | SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7), | 
|  | 6051 | SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7), | 
|  | 6052 | SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8), | 
|  | 6053 | SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3), | 
|  | 6054 | SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6055 | SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | 
|  | 6056 | SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2), | 
|  | 6057 | SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6058 | SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | 
|  | 6059 | SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6), | 
|  | 6060 | SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6), | 
|  | 6061 | SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | 
|  | 6062 | SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6063 | SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3), | 
|  | 6064 | SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2), | 
|  | 6065 | SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | 
|  | 6066 | SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5), | 
|  | 6067 | SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6), | 
|  | 6068 | SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | 
|  | 6069 | SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6070 | SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | 
|  | 6071 | SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | 
|  | 6072 | SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3), | 
|  | 6073 | SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3), | 
|  | 6074 | SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6075 | SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6076 | SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6077 | SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6078 | SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6079 | SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | 
|  | 6080 | SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2), | 
|  | 6081 | SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6082 | SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6083 | SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3), | 
|  | 6084 | SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6085 | SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6086 | SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6087 | SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2), | 
|  | 6088 | SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), | 
|  | 6089 | SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4), | 
|  | 6090 | #endif | 
| David Henningsson | 6cb3b70 | 2010-09-09 08:51:44 +0200 | [diff] [blame] | 6091 | {} | 
|  | 6092 | }; | 
|  | 6093 |  | 
| Todd Broch | 6be7948 | 2010-12-07 16:51:05 -0800 | [diff] [blame] | 6094 | static const struct alc_model_fixup alc662_fixup_models[] = { | 
|  | 6095 | {.id = ALC272_FIXUP_MARIO, .name = "mario"}, | 
| Takashi Iwai | 53c334a | 2011-08-23 18:27:14 +0200 | [diff] [blame] | 6096 | {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"}, | 
|  | 6097 | {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"}, | 
|  | 6098 | {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"}, | 
|  | 6099 | {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"}, | 
|  | 6100 | {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"}, | 
|  | 6101 | {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"}, | 
|  | 6102 | {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"}, | 
|  | 6103 | {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"}, | 
| Todd Broch | 6be7948 | 2010-12-07 16:51:05 -0800 | [diff] [blame] | 6104 | {} | 
|  | 6105 | }; | 
| David Henningsson | 6cb3b70 | 2010-09-09 08:51:44 +0200 | [diff] [blame] | 6106 |  | 
|  | 6107 |  | 
| Takashi Iwai | 1d045db | 2011-07-07 18:23:21 +0200 | [diff] [blame] | 6108 | /* | 
|  | 6109 | */ | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 6110 | static int patch_alc662(struct hda_codec *codec) | 
|  | 6111 | { | 
|  | 6112 | struct alc_spec *spec; | 
| Takashi Iwai | 20ca0c3 | 2011-10-17 16:00:35 +0200 | [diff] [blame] | 6113 | int err = 0; | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 6114 |  | 
|  | 6115 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 
|  | 6116 | if (!spec) | 
|  | 6117 | return -ENOMEM; | 
|  | 6118 |  | 
|  | 6119 | codec->spec = spec; | 
|  | 6120 |  | 
| Takashi Iwai | 1f0f4b8 | 2011-06-27 10:52:59 +0200 | [diff] [blame] | 6121 | spec->mixer_nid = 0x0b; | 
|  | 6122 |  | 
| Takashi Iwai | 53c334a | 2011-08-23 18:27:14 +0200 | [diff] [blame] | 6123 | /* handle multiple HPs as is */ | 
|  | 6124 | spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP; | 
|  | 6125 |  | 
| Kailang Yang | da00c24 | 2010-03-19 11:23:45 +0100 | [diff] [blame] | 6126 | alc_auto_parse_customize_define(codec); | 
|  | 6127 |  | 
| Takashi Iwai | 2c3bf9a | 2008-06-04 12:39:38 +0200 | [diff] [blame] | 6128 | alc_fix_pll_init(codec, 0x20, 0x04, 15); | 
|  | 6129 |  | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 6130 | err = alc_codec_rename_from_preset(codec); | 
|  | 6131 | if (err < 0) | 
|  | 6132 | goto error; | 
|  | 6133 |  | 
| Takashi Iwai | 1bb7e43 | 2011-10-17 16:50:59 +0200 | [diff] [blame] | 6134 | if ((alc_get_coef0(codec) & (1 << 14)) && | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 6135 | codec->bus->pci->subsystem_vendor == 0x1025 && | 
|  | 6136 | spec->cdefine.platform_type == 1) { | 
|  | 6137 | if (alc_codec_rename(codec, "ALC272X") < 0) | 
|  | 6138 | goto error; | 
| Takashi Iwai | 20ca0c3 | 2011-10-17 16:00:35 +0200 | [diff] [blame] | 6139 | } | 
| Kailang Yang | 274693f | 2009-12-03 10:07:50 +0100 | [diff] [blame] | 6140 |  | 
| Takashi Iwai | b9c5106 | 2011-08-24 18:08:07 +0200 | [diff] [blame] | 6141 | alc_pick_fixup(codec, alc662_fixup_models, | 
|  | 6142 | alc662_fixup_tbl, alc662_fixups); | 
|  | 6143 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE); | 
|  | 6144 | /* automatic parse from the BIOS config */ | 
|  | 6145 | err = alc662_parse_auto_config(codec); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 6146 | if (err < 0) | 
|  | 6147 | goto error; | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 6148 |  | 
| Takashi Iwai | 60a6a84 | 2011-07-27 14:01:24 +0200 | [diff] [blame] | 6149 | if (!spec->no_analog && !spec->adc_nids) { | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 6150 | alc_auto_fill_adc_caps(codec); | 
| Takashi Iwai | 2126896 | 2011-07-07 15:01:13 +0200 | [diff] [blame] | 6151 | alc_rebuild_imux_for_auto_mic(codec); | 
| Takashi Iwai | d6cc9fab | 2011-07-06 16:38:42 +0200 | [diff] [blame] | 6152 | alc_remove_invalid_adc_nids(codec); | 
| Takashi Iwai | dd70469 | 2009-08-11 08:45:11 +0200 | [diff] [blame] | 6153 | } | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 6154 |  | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 6155 | if (!spec->no_analog && !spec->cap_mixer) | 
| Takashi Iwai | b59bdf3 | 2009-08-11 09:47:30 +0200 | [diff] [blame] | 6156 | set_capture_mixer(codec); | 
| Takashi Iwai | f9e336f | 2008-10-31 16:37:07 +0100 | [diff] [blame] | 6157 |  | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 6158 | if (!spec->no_analog && has_cdefine_beep(codec)) { | 
|  | 6159 | err = snd_hda_attach_beep_device(codec, 0x1); | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 6160 | if (err < 0) | 
|  | 6161 | goto error; | 
| Kailang Yang | da00c24 | 2010-03-19 11:23:45 +0100 | [diff] [blame] | 6162 | switch (codec->vendor_id) { | 
|  | 6163 | case 0x10ec0662: | 
|  | 6164 | set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); | 
|  | 6165 | break; | 
|  | 6166 | case 0x10ec0272: | 
|  | 6167 | case 0x10ec0663: | 
|  | 6168 | case 0x10ec0665: | 
|  | 6169 | set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT); | 
|  | 6170 | break; | 
|  | 6171 | case 0x10ec0273: | 
|  | 6172 | set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT); | 
|  | 6173 | break; | 
|  | 6174 | } | 
| Kailang Yang | cec27c8 | 2010-02-04 14:18:18 +0100 | [diff] [blame] | 6175 | } | 
| Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 6176 |  | 
| Takashi Iwai | b5bfbc6 | 2011-01-13 14:22:32 +0100 | [diff] [blame] | 6177 | alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); | 
|  | 6178 |  | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 6179 | codec->patch_ops = alc_patch_ops; | 
| Takashi Iwai | b9c5106 | 2011-08-24 18:08:07 +0200 | [diff] [blame] | 6180 | spec->init_hook = alc_auto_init_std; | 
| Takashi Iwai | 1c71615 | 2011-04-07 10:37:16 +0200 | [diff] [blame] | 6181 | spec->shutup = alc_eapd_shutup; | 
| David Henningsson | 6cb3b70 | 2010-09-09 08:51:44 +0200 | [diff] [blame] | 6182 |  | 
| Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 6183 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 
|  | 6184 | if (!spec->loopback.amplist) | 
|  | 6185 | spec->loopback.amplist = alc662_loopbacks; | 
|  | 6186 | #endif | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 6187 |  | 
|  | 6188 | return 0; | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 6189 |  | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 6190 | error: | 
|  | 6191 | alc_free(codec); | 
|  | 6192 | return err; | 
| Kailang Yang | b478b99 | 2011-05-18 11:51:15 +0200 | [diff] [blame] | 6193 | } | 
|  | 6194 |  | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 6195 | /* | 
| Kailang Yang | d1eb57f | 2010-06-23 16:25:26 +0200 | [diff] [blame] | 6196 | * ALC680 support | 
|  | 6197 | */ | 
| Kailang Yang | d1eb57f | 2010-06-23 16:25:26 +0200 | [diff] [blame] | 6198 |  | 
| Kailang Yang | d1eb57f | 2010-06-23 16:25:26 +0200 | [diff] [blame] | 6199 | static int alc680_parse_auto_config(struct hda_codec *codec) | 
|  | 6200 | { | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 6201 | return alc_parse_auto_config(codec, NULL, NULL); | 
| Kailang Yang | d1eb57f | 2010-06-23 16:25:26 +0200 | [diff] [blame] | 6202 | } | 
|  | 6203 |  | 
| Kailang Yang | d1eb57f | 2010-06-23 16:25:26 +0200 | [diff] [blame] | 6204 | /* | 
| Kailang Yang | d1eb57f | 2010-06-23 16:25:26 +0200 | [diff] [blame] | 6205 | */ | 
| Kailang Yang | d1eb57f | 2010-06-23 16:25:26 +0200 | [diff] [blame] | 6206 | static int patch_alc680(struct hda_codec *codec) | 
|  | 6207 | { | 
|  | 6208 | struct alc_spec *spec; | 
| Kailang Yang | d1eb57f | 2010-06-23 16:25:26 +0200 | [diff] [blame] | 6209 | int err; | 
|  | 6210 |  | 
|  | 6211 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 
|  | 6212 | if (spec == NULL) | 
|  | 6213 | return -ENOMEM; | 
|  | 6214 |  | 
|  | 6215 | codec->spec = spec; | 
|  | 6216 |  | 
| Takashi Iwai | 1f0f4b8 | 2011-06-27 10:52:59 +0200 | [diff] [blame] | 6217 | /* ALC680 has no aa-loopback mixer */ | 
|  | 6218 |  | 
| Takashi Iwai | 1ebec5f | 2011-08-15 13:21:48 +0200 | [diff] [blame] | 6219 | /* automatic parse from the BIOS config */ | 
|  | 6220 | err = alc680_parse_auto_config(codec); | 
|  | 6221 | if (err < 0) { | 
|  | 6222 | alc_free(codec); | 
|  | 6223 | return err; | 
| Kailang Yang | d1eb57f | 2010-06-23 16:25:26 +0200 | [diff] [blame] | 6224 | } | 
|  | 6225 |  | 
| Takashi Iwai | 3e6179b | 2011-07-08 16:55:13 +0200 | [diff] [blame] | 6226 | if (!spec->no_analog && !spec->cap_mixer) | 
| Kailang Yang | d1eb57f | 2010-06-23 16:25:26 +0200 | [diff] [blame] | 6227 | set_capture_mixer(codec); | 
|  | 6228 |  | 
| Kailang Yang | d1eb57f | 2010-06-23 16:25:26 +0200 | [diff] [blame] | 6229 | codec->patch_ops = alc_patch_ops; | 
| Takashi Iwai | 1ebec5f | 2011-08-15 13:21:48 +0200 | [diff] [blame] | 6230 | spec->init_hook = alc_auto_init_std; | 
| Kailang Yang | d1eb57f | 2010-06-23 16:25:26 +0200 | [diff] [blame] | 6231 |  | 
|  | 6232 | return 0; | 
|  | 6233 | } | 
|  | 6234 |  | 
|  | 6235 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6236 | * patch entries | 
|  | 6237 | */ | 
| Takashi Iwai | a911132 | 2011-05-02 11:30:18 +0200 | [diff] [blame] | 6238 | static const struct hda_codec_preset snd_hda_preset_realtek[] = { | 
| Kailang Yang | 296f033 | 2011-05-18 11:52:36 +0200 | [diff] [blame] | 6239 | { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6240 | { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 }, | 
| Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 6241 | { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 }, | 
| Kailang Yang | f6a9224 | 2007-12-13 16:52:54 +0100 | [diff] [blame] | 6242 | { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 }, | 
| Kailang Yang | a361d84 | 2007-06-05 12:30:55 +0200 | [diff] [blame] | 6243 | { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 }, | 
| Kailang Yang | f6a9224 | 2007-12-13 16:52:54 +0100 | [diff] [blame] | 6244 | { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 }, | 
| Kailang Yang | ebb83ee | 2009-12-17 12:23:00 +0100 | [diff] [blame] | 6245 | { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 }, | 
| Kailang Yang | 01afd41 | 2008-10-15 11:22:09 +0200 | [diff] [blame] | 6246 | { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 }, | 
| Kailang Yang | ebb83ee | 2009-12-17 12:23:00 +0100 | [diff] [blame] | 6247 | { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 }, | 
| Kailang Yang | 296f033 | 2011-05-18 11:52:36 +0200 | [diff] [blame] | 6248 | { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 }, | 
| Jakub Schmidtke | f32610e | 2007-02-02 18:17:27 +0100 | [diff] [blame] | 6249 | { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660", | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 6250 | .patch = patch_alc861 }, | 
| Jakub Schmidtke | f32610e | 2007-02-02 18:17:27 +0100 | [diff] [blame] | 6251 | { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd }, | 
|  | 6252 | { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 }, | 
|  | 6253 | { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd }, | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 6254 | { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2", | 
| Takashi Iwai | 4953550 | 2009-06-30 15:28:30 +0200 | [diff] [blame] | 6255 | .patch = patch_alc882 }, | 
| Kailang Yang | bc9f98a | 2007-04-12 13:06:07 +0200 | [diff] [blame] | 6256 | { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1", | 
|  | 6257 | .patch = patch_alc662 }, | 
| David Henningsson | cc667a7 | 2011-10-18 14:07:51 +0200 | [diff] [blame] | 6258 | { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3", | 
|  | 6259 | .patch = patch_alc662 }, | 
| Kailang Yang | 6dda9f4 | 2008-05-27 12:05:31 +0200 | [diff] [blame] | 6260 | { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 }, | 
| Kailang Yang | cec27c8 | 2010-02-04 14:18:18 +0100 | [diff] [blame] | 6261 | { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 }, | 
| Kailang Yang | 6227cdc | 2010-02-25 08:36:52 +0100 | [diff] [blame] | 6262 | { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 }, | 
| Kailang Yang | d1eb57f | 2010-06-23 16:25:26 +0200 | [diff] [blame] | 6263 | { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 }, | 
| Jakub Schmidtke | f32610e | 2007-02-02 18:17:27 +0100 | [diff] [blame] | 6264 | { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6265 | { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 }, | 
| Takashi Iwai | 4953550 | 2009-06-30 15:28:30 +0200 | [diff] [blame] | 6266 | { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 }, | 
| Clive Messer | 669faba | 2008-09-30 15:49:13 +0200 | [diff] [blame] | 6267 | { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A", | 
| Takashi Iwai | 4953550 | 2009-06-30 15:28:30 +0200 | [diff] [blame] | 6268 | .patch = patch_alc882 }, | 
| Takashi Iwai | cb308f9 | 2008-04-16 14:13:29 +0200 | [diff] [blame] | 6269 | { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A", | 
| Takashi Iwai | 4953550 | 2009-06-30 15:28:30 +0200 | [diff] [blame] | 6270 | .patch = patch_alc882 }, | 
| Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 6271 | { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 }, | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 6272 | { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 }, | 
| Kailang Yang | 4442608 | 2008-10-15 11:18:05 +0200 | [diff] [blame] | 6273 | { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200", | 
| Takashi Iwai | 4953550 | 2009-06-30 15:28:30 +0200 | [diff] [blame] | 6274 | .patch = patch_alc882 }, | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 6275 | { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 }, | 
| Takashi Iwai | 4953550 | 2009-06-30 15:28:30 +0200 | [diff] [blame] | 6276 | { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 }, | 
| Kailang Yang | 274693f | 2009-12-03 10:07:50 +0100 | [diff] [blame] | 6277 | { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 }, | 
| Takashi Iwai | e16fb6d | 2011-10-17 16:39:09 +0200 | [diff] [blame] | 6278 | { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6279 | {} /* terminator */ | 
|  | 6280 | }; | 
| Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 6281 |  | 
|  | 6282 | MODULE_ALIAS("snd-hda-codec-id:10ec*"); | 
|  | 6283 |  | 
|  | 6284 | MODULE_LICENSE("GPL"); | 
|  | 6285 | MODULE_DESCRIPTION("Realtek HD-audio codec"); | 
|  | 6286 |  | 
|  | 6287 | static struct hda_codec_preset_list realtek_list = { | 
|  | 6288 | .preset = snd_hda_preset_realtek, | 
|  | 6289 | .owner = THIS_MODULE, | 
|  | 6290 | }; | 
|  | 6291 |  | 
|  | 6292 | static int __init patch_realtek_init(void) | 
|  | 6293 | { | 
|  | 6294 | return snd_hda_add_codec_preset(&realtek_list); | 
|  | 6295 | } | 
|  | 6296 |  | 
|  | 6297 | static void __exit patch_realtek_exit(void) | 
|  | 6298 | { | 
|  | 6299 | snd_hda_delete_codec_preset(&realtek_list); | 
|  | 6300 | } | 
|  | 6301 |  | 
|  | 6302 | module_init(patch_realtek_init) | 
|  | 6303 | module_exit(patch_realtek_exit) |