Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1 | /* |
| 2 | * HD audio interface patch for Conexant HDA audio codec |
| 3 | * |
| 4 | * Copyright (c) 2006 Pototskiy Akex <alex.pototskiy@gmail.com> |
| 5 | * Takashi Iwai <tiwai@suse.de> |
| 6 | * Tobin Davis <tdavis@dsl-only.net> |
| 7 | * |
| 8 | * This driver is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This driver is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | */ |
| 22 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 23 | #include <linux/init.h> |
| 24 | #include <linux/delay.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/pci.h> |
| 27 | #include <sound/core.h> |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 28 | #include <sound/jack.h> |
| 29 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 30 | #include "hda_codec.h" |
| 31 | #include "hda_local.h" |
Einar Rünkaru | c0f8faf | 2009-12-16 22:41:36 +0200 | [diff] [blame] | 32 | #include "hda_beep.h" |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 33 | |
| 34 | #define CXT_PIN_DIR_IN 0x00 |
| 35 | #define CXT_PIN_DIR_OUT 0x01 |
| 36 | #define CXT_PIN_DIR_INOUT 0x02 |
| 37 | #define CXT_PIN_DIR_IN_NOMICBIAS 0x03 |
| 38 | #define CXT_PIN_DIR_INOUT_NOMICBIAS 0x04 |
| 39 | |
| 40 | #define CONEXANT_HP_EVENT 0x37 |
| 41 | #define CONEXANT_MIC_EVENT 0x38 |
| 42 | |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 43 | /* Conexant 5051 specific */ |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 44 | |
Takashi Iwai | ecda0cf | 2010-01-24 11:14:36 +0100 | [diff] [blame] | 45 | #define CXT5051_SPDIF_OUT 0x12 |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 46 | #define CXT5051_PORTB_EVENT 0x38 |
| 47 | #define CXT5051_PORTC_EVENT 0x39 |
| 48 | |
Takashi Iwai | faddaa5 | 2010-01-23 22:31:36 +0100 | [diff] [blame] | 49 | #define AUTO_MIC_PORTB (1 << 1) |
| 50 | #define AUTO_MIC_PORTC (1 << 2) |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 51 | |
| 52 | struct conexant_jack { |
| 53 | |
| 54 | hda_nid_t nid; |
| 55 | int type; |
| 56 | struct snd_jack *jack; |
| 57 | |
| 58 | }; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 59 | |
| 60 | struct conexant_spec { |
| 61 | |
| 62 | struct snd_kcontrol_new *mixers[5]; |
| 63 | int num_mixers; |
Takashi Iwai | dd5746a | 2009-03-10 14:30:40 +0100 | [diff] [blame] | 64 | hda_nid_t vmaster_nid; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 65 | |
| 66 | const struct hda_verb *init_verbs[5]; /* initialization verbs |
| 67 | * don't forget NULL |
| 68 | * termination! |
| 69 | */ |
| 70 | unsigned int num_init_verbs; |
| 71 | |
| 72 | /* playback */ |
| 73 | struct hda_multi_out multiout; /* playback set-up |
| 74 | * max_channels, dacs must be set |
| 75 | * dig_out_nid and hp_nid are optional |
| 76 | */ |
| 77 | unsigned int cur_eapd; |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 78 | unsigned int hp_present; |
Takashi Iwai | faddaa5 | 2010-01-23 22:31:36 +0100 | [diff] [blame] | 79 | unsigned int auto_mic; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 80 | unsigned int need_dac_fix; |
| 81 | |
| 82 | /* capture */ |
| 83 | unsigned int num_adc_nids; |
| 84 | hda_nid_t *adc_nids; |
| 85 | hda_nid_t dig_in_nid; /* digital-in NID; optional */ |
| 86 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 87 | unsigned int cur_adc_idx; |
| 88 | hda_nid_t cur_adc; |
| 89 | unsigned int cur_adc_stream_tag; |
| 90 | unsigned int cur_adc_format; |
| 91 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 92 | /* capture source */ |
| 93 | const struct hda_input_mux *input_mux; |
| 94 | hda_nid_t *capsrc_nids; |
| 95 | unsigned int cur_mux[3]; |
| 96 | |
| 97 | /* channel model */ |
| 98 | const struct hda_channel_mode *channel_mode; |
| 99 | int num_channel_mode; |
| 100 | |
| 101 | /* PCM information */ |
| 102 | struct hda_pcm pcm_rec[2]; /* used in build_pcms() */ |
| 103 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 104 | unsigned int spdif_route; |
| 105 | |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 106 | /* jack detection */ |
| 107 | struct snd_array jacks; |
| 108 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 109 | /* dynamic controls, init_verbs and input_mux */ |
| 110 | struct auto_pin_cfg autocfg; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 111 | struct hda_input_mux private_imux; |
Takashi Iwai | 41923e4 | 2007-10-22 17:20:10 +0200 | [diff] [blame] | 112 | hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS]; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 113 | |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 114 | unsigned int dell_automute; |
| 115 | unsigned int port_d_mode; |
Greg Alexander | cfd3d8d | 2010-02-13 02:02:25 -0500 | [diff] [blame] | 116 | unsigned int dell_vostro:1; |
| 117 | unsigned int ideapad:1; |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 118 | unsigned int thinkpad:1; |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 119 | |
| 120 | unsigned int ext_mic_present; |
| 121 | unsigned int recording; |
| 122 | void (*capture_prepare)(struct hda_codec *codec); |
| 123 | void (*capture_cleanup)(struct hda_codec *codec); |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 124 | |
| 125 | /* OLPC XO-1.5 supports DC input mode (e.g. for use with analog sensors) |
| 126 | * through the microphone jack. |
| 127 | * When the user enables this through a mixer switch, both internal and |
| 128 | * external microphones are disabled. Gain is fixed at 0dB. In this mode, |
| 129 | * we also allow the bias to be configured through a separate mixer |
| 130 | * control. */ |
| 131 | unsigned int dc_enable; |
| 132 | unsigned int dc_input_bias; /* offset into cxt5066_olpc_dc_bias */ |
| 133 | unsigned int mic_boost; /* offset into cxt5066_analog_mic_boost */ |
Takashi Iwai | 3507e2a | 2010-07-08 18:39:00 +0200 | [diff] [blame] | 134 | |
| 135 | unsigned int beep_amp; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 136 | }; |
| 137 | |
| 138 | static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo, |
| 139 | struct hda_codec *codec, |
| 140 | struct snd_pcm_substream *substream) |
| 141 | { |
| 142 | struct conexant_spec *spec = codec->spec; |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 143 | return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream, |
| 144 | hinfo); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 148 | struct hda_codec *codec, |
| 149 | unsigned int stream_tag, |
| 150 | unsigned int format, |
| 151 | struct snd_pcm_substream *substream) |
| 152 | { |
| 153 | struct conexant_spec *spec = codec->spec; |
| 154 | return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, |
| 155 | stream_tag, |
| 156 | format, substream); |
| 157 | } |
| 158 | |
| 159 | static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo, |
| 160 | struct hda_codec *codec, |
| 161 | struct snd_pcm_substream *substream) |
| 162 | { |
| 163 | struct conexant_spec *spec = codec->spec; |
| 164 | return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout); |
| 165 | } |
| 166 | |
| 167 | /* |
| 168 | * Digital out |
| 169 | */ |
| 170 | static int conexant_dig_playback_pcm_open(struct hda_pcm_stream *hinfo, |
| 171 | struct hda_codec *codec, |
| 172 | struct snd_pcm_substream *substream) |
| 173 | { |
| 174 | struct conexant_spec *spec = codec->spec; |
| 175 | return snd_hda_multi_out_dig_open(codec, &spec->multiout); |
| 176 | } |
| 177 | |
| 178 | static int conexant_dig_playback_pcm_close(struct hda_pcm_stream *hinfo, |
| 179 | struct hda_codec *codec, |
| 180 | struct snd_pcm_substream *substream) |
| 181 | { |
| 182 | struct conexant_spec *spec = codec->spec; |
| 183 | return snd_hda_multi_out_dig_close(codec, &spec->multiout); |
| 184 | } |
| 185 | |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 186 | static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 187 | struct hda_codec *codec, |
| 188 | unsigned int stream_tag, |
| 189 | unsigned int format, |
| 190 | struct snd_pcm_substream *substream) |
| 191 | { |
| 192 | struct conexant_spec *spec = codec->spec; |
| 193 | return snd_hda_multi_out_dig_prepare(codec, &spec->multiout, |
| 194 | stream_tag, |
| 195 | format, substream); |
| 196 | } |
| 197 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 198 | /* |
| 199 | * Analog capture |
| 200 | */ |
| 201 | static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 202 | struct hda_codec *codec, |
| 203 | unsigned int stream_tag, |
| 204 | unsigned int format, |
| 205 | struct snd_pcm_substream *substream) |
| 206 | { |
| 207 | struct conexant_spec *spec = codec->spec; |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 208 | if (spec->capture_prepare) |
| 209 | spec->capture_prepare(codec); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 210 | snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number], |
| 211 | stream_tag, 0, format); |
| 212 | return 0; |
| 213 | } |
| 214 | |
| 215 | static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo, |
| 216 | struct hda_codec *codec, |
| 217 | struct snd_pcm_substream *substream) |
| 218 | { |
| 219 | struct conexant_spec *spec = codec->spec; |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 220 | snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]); |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 221 | if (spec->capture_cleanup) |
| 222 | spec->capture_cleanup(codec); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 223 | return 0; |
| 224 | } |
| 225 | |
| 226 | |
| 227 | |
| 228 | static struct hda_pcm_stream conexant_pcm_analog_playback = { |
| 229 | .substreams = 1, |
| 230 | .channels_min = 2, |
| 231 | .channels_max = 2, |
| 232 | .nid = 0, /* fill later */ |
| 233 | .ops = { |
| 234 | .open = conexant_playback_pcm_open, |
| 235 | .prepare = conexant_playback_pcm_prepare, |
| 236 | .cleanup = conexant_playback_pcm_cleanup |
| 237 | }, |
| 238 | }; |
| 239 | |
| 240 | static struct hda_pcm_stream conexant_pcm_analog_capture = { |
| 241 | .substreams = 1, |
| 242 | .channels_min = 2, |
| 243 | .channels_max = 2, |
| 244 | .nid = 0, /* fill later */ |
| 245 | .ops = { |
| 246 | .prepare = conexant_capture_pcm_prepare, |
| 247 | .cleanup = conexant_capture_pcm_cleanup |
| 248 | }, |
| 249 | }; |
| 250 | |
| 251 | |
| 252 | static struct hda_pcm_stream conexant_pcm_digital_playback = { |
| 253 | .substreams = 1, |
| 254 | .channels_min = 2, |
| 255 | .channels_max = 2, |
| 256 | .nid = 0, /* fill later */ |
| 257 | .ops = { |
| 258 | .open = conexant_dig_playback_pcm_open, |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 259 | .close = conexant_dig_playback_pcm_close, |
| 260 | .prepare = conexant_dig_playback_pcm_prepare |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 261 | }, |
| 262 | }; |
| 263 | |
| 264 | static struct hda_pcm_stream conexant_pcm_digital_capture = { |
| 265 | .substreams = 1, |
| 266 | .channels_min = 2, |
| 267 | .channels_max = 2, |
| 268 | /* NID is set in alc_build_pcms */ |
| 269 | }; |
| 270 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 271 | static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 272 | struct hda_codec *codec, |
| 273 | unsigned int stream_tag, |
| 274 | unsigned int format, |
| 275 | struct snd_pcm_substream *substream) |
| 276 | { |
| 277 | struct conexant_spec *spec = codec->spec; |
| 278 | spec->cur_adc = spec->adc_nids[spec->cur_adc_idx]; |
| 279 | spec->cur_adc_stream_tag = stream_tag; |
| 280 | spec->cur_adc_format = format; |
| 281 | snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format); |
| 282 | return 0; |
| 283 | } |
| 284 | |
| 285 | static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo, |
| 286 | struct hda_codec *codec, |
| 287 | struct snd_pcm_substream *substream) |
| 288 | { |
| 289 | struct conexant_spec *spec = codec->spec; |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 290 | snd_hda_codec_cleanup_stream(codec, spec->cur_adc); |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 291 | spec->cur_adc = 0; |
| 292 | return 0; |
| 293 | } |
| 294 | |
| 295 | static struct hda_pcm_stream cx5051_pcm_analog_capture = { |
| 296 | .substreams = 1, |
| 297 | .channels_min = 2, |
| 298 | .channels_max = 2, |
| 299 | .nid = 0, /* fill later */ |
| 300 | .ops = { |
| 301 | .prepare = cx5051_capture_pcm_prepare, |
| 302 | .cleanup = cx5051_capture_pcm_cleanup |
| 303 | }, |
| 304 | }; |
| 305 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 306 | static int conexant_build_pcms(struct hda_codec *codec) |
| 307 | { |
| 308 | struct conexant_spec *spec = codec->spec; |
| 309 | struct hda_pcm *info = spec->pcm_rec; |
| 310 | |
| 311 | codec->num_pcms = 1; |
| 312 | codec->pcm_info = info; |
| 313 | |
| 314 | info->name = "CONEXANT Analog"; |
| 315 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = conexant_pcm_analog_playback; |
| 316 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = |
| 317 | spec->multiout.max_channels; |
| 318 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = |
| 319 | spec->multiout.dac_nids[0]; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 320 | if (codec->vendor_id == 0x14f15051) |
| 321 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = |
| 322 | cx5051_pcm_analog_capture; |
| 323 | else |
| 324 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = |
| 325 | conexant_pcm_analog_capture; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 326 | info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids; |
| 327 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0]; |
| 328 | |
| 329 | if (spec->multiout.dig_out_nid) { |
| 330 | info++; |
| 331 | codec->num_pcms++; |
| 332 | info->name = "Conexant Digital"; |
Takashi Iwai | 7ba72ba | 2008-02-06 14:03:20 +0100 | [diff] [blame] | 333 | info->pcm_type = HDA_PCM_TYPE_SPDIF; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 334 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = |
| 335 | conexant_pcm_digital_playback; |
| 336 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = |
| 337 | spec->multiout.dig_out_nid; |
| 338 | if (spec->dig_in_nid) { |
| 339 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = |
| 340 | conexant_pcm_digital_capture; |
| 341 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = |
| 342 | spec->dig_in_nid; |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | return 0; |
| 347 | } |
| 348 | |
| 349 | static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol, |
| 350 | struct snd_ctl_elem_info *uinfo) |
| 351 | { |
| 352 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 353 | struct conexant_spec *spec = codec->spec; |
| 354 | |
| 355 | return snd_hda_input_mux_info(spec->input_mux, uinfo); |
| 356 | } |
| 357 | |
| 358 | static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol, |
| 359 | struct snd_ctl_elem_value *ucontrol) |
| 360 | { |
| 361 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 362 | struct conexant_spec *spec = codec->spec; |
| 363 | unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
| 364 | |
| 365 | ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx]; |
| 366 | return 0; |
| 367 | } |
| 368 | |
| 369 | static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol, |
| 370 | struct snd_ctl_elem_value *ucontrol) |
| 371 | { |
| 372 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 373 | struct conexant_spec *spec = codec->spec; |
| 374 | unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
| 375 | |
| 376 | return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol, |
| 377 | spec->capsrc_nids[adc_idx], |
| 378 | &spec->cur_mux[adc_idx]); |
| 379 | } |
| 380 | |
Takashi Iwai | 8c8145b | 2009-06-22 17:00:38 +0200 | [diff] [blame] | 381 | #ifdef CONFIG_SND_HDA_INPUT_JACK |
Takashi Iwai | 95c0909 | 2009-04-14 16:15:29 +0200 | [diff] [blame] | 382 | static void conexant_free_jack_priv(struct snd_jack *jack) |
| 383 | { |
| 384 | struct conexant_jack *jacks = jack->private_data; |
| 385 | jacks->nid = 0; |
| 386 | jacks->jack = NULL; |
| 387 | } |
| 388 | |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 389 | static int conexant_add_jack(struct hda_codec *codec, |
| 390 | hda_nid_t nid, int type) |
| 391 | { |
| 392 | struct conexant_spec *spec; |
| 393 | struct conexant_jack *jack; |
| 394 | const char *name; |
Takashi Iwai | 95c0909 | 2009-04-14 16:15:29 +0200 | [diff] [blame] | 395 | int err; |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 396 | |
| 397 | spec = codec->spec; |
| 398 | snd_array_init(&spec->jacks, sizeof(*jack), 32); |
| 399 | jack = snd_array_new(&spec->jacks); |
| 400 | name = (type == SND_JACK_HEADPHONE) ? "Headphone" : "Mic" ; |
| 401 | |
| 402 | if (!jack) |
| 403 | return -ENOMEM; |
| 404 | |
| 405 | jack->nid = nid; |
| 406 | jack->type = type; |
| 407 | |
Takashi Iwai | 95c0909 | 2009-04-14 16:15:29 +0200 | [diff] [blame] | 408 | err = snd_jack_new(codec->bus->card, name, type, &jack->jack); |
| 409 | if (err < 0) |
| 410 | return err; |
| 411 | jack->jack->private_data = jack; |
| 412 | jack->jack->private_free = conexant_free_jack_priv; |
| 413 | return 0; |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 414 | } |
| 415 | |
| 416 | static void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid) |
| 417 | { |
| 418 | struct conexant_spec *spec = codec->spec; |
| 419 | struct conexant_jack *jacks = spec->jacks.list; |
| 420 | |
| 421 | if (jacks) { |
| 422 | int i; |
| 423 | for (i = 0; i < spec->jacks.used; i++) { |
| 424 | if (jacks->nid == nid) { |
| 425 | unsigned int present; |
Takashi Iwai | d56757a | 2009-11-18 08:00:14 +0100 | [diff] [blame] | 426 | present = snd_hda_jack_detect(codec, nid); |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 427 | |
| 428 | present = (present) ? jacks->type : 0 ; |
| 429 | |
| 430 | snd_jack_report(jacks->jack, |
| 431 | present); |
| 432 | } |
| 433 | jacks++; |
| 434 | } |
| 435 | } |
| 436 | } |
| 437 | |
| 438 | static int conexant_init_jacks(struct hda_codec *codec) |
| 439 | { |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 440 | struct conexant_spec *spec = codec->spec; |
| 441 | int i; |
| 442 | |
| 443 | for (i = 0; i < spec->num_init_verbs; i++) { |
| 444 | const struct hda_verb *hv; |
| 445 | |
| 446 | hv = spec->init_verbs[i]; |
| 447 | while (hv->nid) { |
| 448 | int err = 0; |
| 449 | switch (hv->param ^ AC_USRSP_EN) { |
| 450 | case CONEXANT_HP_EVENT: |
| 451 | err = conexant_add_jack(codec, hv->nid, |
| 452 | SND_JACK_HEADPHONE); |
| 453 | conexant_report_jack(codec, hv->nid); |
| 454 | break; |
| 455 | case CXT5051_PORTC_EVENT: |
| 456 | case CONEXANT_MIC_EVENT: |
| 457 | err = conexant_add_jack(codec, hv->nid, |
| 458 | SND_JACK_MICROPHONE); |
| 459 | conexant_report_jack(codec, hv->nid); |
| 460 | break; |
| 461 | } |
| 462 | if (err < 0) |
| 463 | return err; |
| 464 | ++hv; |
| 465 | } |
| 466 | } |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 467 | return 0; |
| 468 | |
| 469 | } |
Takashi Iwai | 5801f99 | 2009-01-27 12:53:22 +0100 | [diff] [blame] | 470 | #else |
| 471 | static inline void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid) |
| 472 | { |
| 473 | } |
| 474 | |
| 475 | static inline int conexant_init_jacks(struct hda_codec *codec) |
| 476 | { |
| 477 | return 0; |
| 478 | } |
| 479 | #endif |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 480 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 481 | static int conexant_init(struct hda_codec *codec) |
| 482 | { |
| 483 | struct conexant_spec *spec = codec->spec; |
| 484 | int i; |
| 485 | |
| 486 | for (i = 0; i < spec->num_init_verbs; i++) |
| 487 | snd_hda_sequence_write(codec, spec->init_verbs[i]); |
| 488 | return 0; |
| 489 | } |
| 490 | |
| 491 | static void conexant_free(struct hda_codec *codec) |
| 492 | { |
Takashi Iwai | 8c8145b | 2009-06-22 17:00:38 +0200 | [diff] [blame] | 493 | #ifdef CONFIG_SND_HDA_INPUT_JACK |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 494 | struct conexant_spec *spec = codec->spec; |
| 495 | if (spec->jacks.list) { |
| 496 | struct conexant_jack *jacks = spec->jacks.list; |
| 497 | int i; |
Takashi Iwai | 95c0909 | 2009-04-14 16:15:29 +0200 | [diff] [blame] | 498 | for (i = 0; i < spec->jacks.used; i++, jacks++) { |
| 499 | if (jacks->jack) |
| 500 | snd_device_free(codec->bus->card, jacks->jack); |
| 501 | } |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 502 | snd_array_free(&spec->jacks); |
| 503 | } |
| 504 | #endif |
Einar Rünkaru | c0f8faf | 2009-12-16 22:41:36 +0200 | [diff] [blame] | 505 | snd_hda_detach_beep_device(codec); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 506 | kfree(codec->spec); |
| 507 | } |
| 508 | |
Takashi Iwai | b880c74 | 2009-03-10 14:41:05 +0100 | [diff] [blame] | 509 | static struct snd_kcontrol_new cxt_capture_mixers[] = { |
| 510 | { |
| 511 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 512 | .name = "Capture Source", |
| 513 | .info = conexant_mux_enum_info, |
| 514 | .get = conexant_mux_enum_get, |
| 515 | .put = conexant_mux_enum_put |
| 516 | }, |
| 517 | {} |
| 518 | }; |
| 519 | |
Takashi Iwai | 3507e2a | 2010-07-08 18:39:00 +0200 | [diff] [blame] | 520 | #ifdef CONFIG_SND_HDA_INPUT_BEEP |
| 521 | /* additional beep mixers; the actual parameters are overwritten at build */ |
| 522 | static struct snd_kcontrol_new cxt_beep_mixer[] = { |
| 523 | HDA_CODEC_VOLUME_MONO("Beep Playback Volume", 0, 1, 0, HDA_OUTPUT), |
| 524 | HDA_CODEC_MUTE_BEEP_MONO("Beep Playback Switch", 0, 1, 0, HDA_OUTPUT), |
| 525 | { } /* end */ |
| 526 | }; |
| 527 | #endif |
| 528 | |
Takashi Iwai | dd5746a | 2009-03-10 14:30:40 +0100 | [diff] [blame] | 529 | static const char *slave_vols[] = { |
| 530 | "Headphone Playback Volume", |
| 531 | "Speaker Playback Volume", |
| 532 | NULL |
| 533 | }; |
| 534 | |
| 535 | static const char *slave_sws[] = { |
| 536 | "Headphone Playback Switch", |
| 537 | "Speaker Playback Switch", |
| 538 | NULL |
| 539 | }; |
| 540 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 541 | static int conexant_build_controls(struct hda_codec *codec) |
| 542 | { |
| 543 | struct conexant_spec *spec = codec->spec; |
| 544 | unsigned int i; |
| 545 | int err; |
| 546 | |
| 547 | for (i = 0; i < spec->num_mixers; i++) { |
| 548 | err = snd_hda_add_new_ctls(codec, spec->mixers[i]); |
| 549 | if (err < 0) |
| 550 | return err; |
| 551 | } |
| 552 | if (spec->multiout.dig_out_nid) { |
| 553 | err = snd_hda_create_spdif_out_ctls(codec, |
| 554 | spec->multiout.dig_out_nid); |
| 555 | if (err < 0) |
| 556 | return err; |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 557 | err = snd_hda_create_spdif_share_sw(codec, |
| 558 | &spec->multiout); |
| 559 | if (err < 0) |
| 560 | return err; |
| 561 | spec->multiout.share_spdif = 1; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 562 | } |
| 563 | if (spec->dig_in_nid) { |
| 564 | err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid); |
| 565 | if (err < 0) |
| 566 | return err; |
| 567 | } |
Takashi Iwai | dd5746a | 2009-03-10 14:30:40 +0100 | [diff] [blame] | 568 | |
| 569 | /* if we have no master control, let's create it */ |
| 570 | if (spec->vmaster_nid && |
| 571 | !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) { |
| 572 | unsigned int vmaster_tlv[4]; |
| 573 | snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid, |
| 574 | HDA_OUTPUT, vmaster_tlv); |
| 575 | err = snd_hda_add_vmaster(codec, "Master Playback Volume", |
| 576 | vmaster_tlv, slave_vols); |
| 577 | if (err < 0) |
| 578 | return err; |
| 579 | } |
| 580 | if (spec->vmaster_nid && |
| 581 | !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) { |
| 582 | err = snd_hda_add_vmaster(codec, "Master Playback Switch", |
| 583 | NULL, slave_sws); |
| 584 | if (err < 0) |
| 585 | return err; |
| 586 | } |
| 587 | |
Takashi Iwai | b880c74 | 2009-03-10 14:41:05 +0100 | [diff] [blame] | 588 | if (spec->input_mux) { |
| 589 | err = snd_hda_add_new_ctls(codec, cxt_capture_mixers); |
| 590 | if (err < 0) |
| 591 | return err; |
| 592 | } |
| 593 | |
Takashi Iwai | 3507e2a | 2010-07-08 18:39:00 +0200 | [diff] [blame] | 594 | #ifdef CONFIG_SND_HDA_INPUT_BEEP |
| 595 | /* create beep controls if needed */ |
| 596 | if (spec->beep_amp) { |
| 597 | struct snd_kcontrol_new *knew; |
| 598 | for (knew = cxt_beep_mixer; knew->name; knew++) { |
| 599 | struct snd_kcontrol *kctl; |
| 600 | kctl = snd_ctl_new1(knew, codec); |
| 601 | if (!kctl) |
| 602 | return -ENOMEM; |
| 603 | kctl->private_value = spec->beep_amp; |
| 604 | err = snd_hda_ctl_add(codec, 0, kctl); |
| 605 | if (err < 0) |
| 606 | return err; |
| 607 | } |
| 608 | } |
| 609 | #endif |
| 610 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 611 | return 0; |
| 612 | } |
| 613 | |
Takashi Iwai | 697c373 | 2010-07-30 11:28:02 +0200 | [diff] [blame] | 614 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 615 | static int conexant_suspend(struct hda_codec *codec, pm_message_t state) |
| 616 | { |
| 617 | snd_hda_shutup_pins(codec); |
| 618 | return 0; |
| 619 | } |
| 620 | #endif |
| 621 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 622 | static struct hda_codec_ops conexant_patch_ops = { |
| 623 | .build_controls = conexant_build_controls, |
| 624 | .build_pcms = conexant_build_pcms, |
| 625 | .init = conexant_init, |
| 626 | .free = conexant_free, |
Takashi Iwai | 697c373 | 2010-07-30 11:28:02 +0200 | [diff] [blame] | 627 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 628 | .suspend = conexant_suspend, |
| 629 | #endif |
| 630 | .reboot_notify = snd_hda_shutup_pins, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 631 | }; |
| 632 | |
Takashi Iwai | 3507e2a | 2010-07-08 18:39:00 +0200 | [diff] [blame] | 633 | #ifdef CONFIG_SND_HDA_INPUT_BEEP |
| 634 | #define set_beep_amp(spec, nid, idx, dir) \ |
| 635 | ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 1, idx, dir)) |
| 636 | #else |
| 637 | #define set_beep_amp(spec, nid, idx, dir) /* NOP */ |
| 638 | #endif |
| 639 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 640 | /* |
| 641 | * EAPD control |
| 642 | * the private value = nid | (invert << 8) |
| 643 | */ |
| 644 | |
Takashi Iwai | a5ce889 | 2007-07-23 15:42:26 +0200 | [diff] [blame] | 645 | #define cxt_eapd_info snd_ctl_boolean_mono_info |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 646 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 647 | static int cxt_eapd_get(struct snd_kcontrol *kcontrol, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 648 | struct snd_ctl_elem_value *ucontrol) |
| 649 | { |
| 650 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 651 | struct conexant_spec *spec = codec->spec; |
| 652 | int invert = (kcontrol->private_value >> 8) & 1; |
| 653 | if (invert) |
| 654 | ucontrol->value.integer.value[0] = !spec->cur_eapd; |
| 655 | else |
| 656 | ucontrol->value.integer.value[0] = spec->cur_eapd; |
| 657 | return 0; |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 658 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 659 | } |
| 660 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 661 | static int cxt_eapd_put(struct snd_kcontrol *kcontrol, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 662 | struct snd_ctl_elem_value *ucontrol) |
| 663 | { |
| 664 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 665 | struct conexant_spec *spec = codec->spec; |
| 666 | int invert = (kcontrol->private_value >> 8) & 1; |
| 667 | hda_nid_t nid = kcontrol->private_value & 0xff; |
| 668 | unsigned int eapd; |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 669 | |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 670 | eapd = !!ucontrol->value.integer.value[0]; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 671 | if (invert) |
| 672 | eapd = !eapd; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 673 | if (eapd == spec->cur_eapd) |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 674 | return 0; |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 675 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 676 | spec->cur_eapd = eapd; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 677 | snd_hda_codec_write_cache(codec, nid, |
| 678 | 0, AC_VERB_SET_EAPD_BTLENABLE, |
| 679 | eapd ? 0x02 : 0x00); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 680 | return 1; |
| 681 | } |
| 682 | |
Takashi Iwai | 86d72bd | 2006-11-28 11:33:10 +0100 | [diff] [blame] | 683 | /* controls for test mode */ |
| 684 | #ifdef CONFIG_SND_DEBUG |
| 685 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 686 | #define CXT_EAPD_SWITCH(xname, nid, mask) \ |
| 687 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \ |
| 688 | .info = cxt_eapd_info, \ |
| 689 | .get = cxt_eapd_get, \ |
| 690 | .put = cxt_eapd_put, \ |
| 691 | .private_value = nid | (mask<<16) } |
| 692 | |
| 693 | |
| 694 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 695 | static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol, |
| 696 | struct snd_ctl_elem_info *uinfo) |
| 697 | { |
| 698 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 699 | struct conexant_spec *spec = codec->spec; |
| 700 | return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode, |
| 701 | spec->num_channel_mode); |
| 702 | } |
| 703 | |
| 704 | static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol, |
| 705 | struct snd_ctl_elem_value *ucontrol) |
| 706 | { |
| 707 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 708 | struct conexant_spec *spec = codec->spec; |
| 709 | return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode, |
| 710 | spec->num_channel_mode, |
| 711 | spec->multiout.max_channels); |
| 712 | } |
| 713 | |
| 714 | static int conexant_ch_mode_put(struct snd_kcontrol *kcontrol, |
| 715 | struct snd_ctl_elem_value *ucontrol) |
| 716 | { |
| 717 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 718 | struct conexant_spec *spec = codec->spec; |
| 719 | int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode, |
| 720 | spec->num_channel_mode, |
| 721 | &spec->multiout.max_channels); |
| 722 | if (err >= 0 && spec->need_dac_fix) |
| 723 | spec->multiout.num_dacs = spec->multiout.max_channels / 2; |
| 724 | return err; |
| 725 | } |
| 726 | |
| 727 | #define CXT_PIN_MODE(xname, nid, dir) \ |
| 728 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \ |
| 729 | .info = conexant_ch_mode_info, \ |
| 730 | .get = conexant_ch_mode_get, \ |
| 731 | .put = conexant_ch_mode_put, \ |
| 732 | .private_value = nid | (dir<<16) } |
| 733 | |
Takashi Iwai | 86d72bd | 2006-11-28 11:33:10 +0100 | [diff] [blame] | 734 | #endif /* CONFIG_SND_DEBUG */ |
| 735 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 736 | /* Conexant 5045 specific */ |
| 737 | |
| 738 | static hda_nid_t cxt5045_dac_nids[1] = { 0x19 }; |
| 739 | static hda_nid_t cxt5045_adc_nids[1] = { 0x1a }; |
| 740 | static hda_nid_t cxt5045_capsrc_nids[1] = { 0x1a }; |
Takashi Iwai | cbef978 | 2008-02-22 18:36:46 +0100 | [diff] [blame] | 741 | #define CXT5045_SPDIF_OUT 0x18 |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 742 | |
Tobin Davis | 5cd5752 | 2006-11-20 17:42:09 +0100 | [diff] [blame] | 743 | static struct hda_channel_mode cxt5045_modes[1] = { |
| 744 | { 2, NULL }, |
| 745 | }; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 746 | |
| 747 | static struct hda_input_mux cxt5045_capture_source = { |
| 748 | .num_items = 2, |
| 749 | .items = { |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 750 | { "IntMic", 0x1 }, |
Jiang zhe | f4beee9 | 2008-01-17 11:19:26 +0100 | [diff] [blame] | 751 | { "ExtMic", 0x2 }, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 752 | } |
| 753 | }; |
| 754 | |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 755 | static struct hda_input_mux cxt5045_capture_source_benq = { |
Lukasz Marcinowski | 22e1413 | 2009-09-22 21:42:40 +0200 | [diff] [blame] | 756 | .num_items = 5, |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 757 | .items = { |
| 758 | { "IntMic", 0x1 }, |
| 759 | { "ExtMic", 0x2 }, |
| 760 | { "LineIn", 0x3 }, |
Lukasz Marcinowski | 22e1413 | 2009-09-22 21:42:40 +0200 | [diff] [blame] | 761 | { "CD", 0x4 }, |
| 762 | { "Mixer", 0x0 }, |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 763 | } |
| 764 | }; |
| 765 | |
Jiang zhe | 2de3c23 | 2008-03-06 11:09:09 +0100 | [diff] [blame] | 766 | static struct hda_input_mux cxt5045_capture_source_hp530 = { |
| 767 | .num_items = 2, |
| 768 | .items = { |
| 769 | { "ExtMic", 0x1 }, |
| 770 | { "IntMic", 0x2 }, |
| 771 | } |
| 772 | }; |
| 773 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 774 | /* turn on/off EAPD (+ mute HP) as a master switch */ |
| 775 | static int cxt5045_hp_master_sw_put(struct snd_kcontrol *kcontrol, |
| 776 | struct snd_ctl_elem_value *ucontrol) |
| 777 | { |
| 778 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 779 | struct conexant_spec *spec = codec->spec; |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 780 | unsigned int bits; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 781 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 782 | if (!cxt_eapd_put(kcontrol, ucontrol)) |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 783 | return 0; |
| 784 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 785 | /* toggle internal speakers mute depending of presence of |
| 786 | * the headphone jack |
| 787 | */ |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 788 | bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE; |
| 789 | snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0, |
| 790 | HDA_AMP_MUTE, bits); |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 791 | |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 792 | bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE; |
| 793 | snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0, |
| 794 | HDA_AMP_MUTE, bits); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 795 | return 1; |
| 796 | } |
| 797 | |
| 798 | /* bind volumes of both NID 0x10 and 0x11 */ |
Takashi Iwai | cca3b37 | 2007-08-10 17:12:15 +0200 | [diff] [blame] | 799 | static struct hda_bind_ctls cxt5045_hp_bind_master_vol = { |
| 800 | .ops = &snd_hda_bind_vol, |
| 801 | .values = { |
| 802 | HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT), |
| 803 | HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT), |
| 804 | 0 |
| 805 | }, |
| 806 | }; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 807 | |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 808 | /* toggle input of built-in and mic jack appropriately */ |
| 809 | static void cxt5045_hp_automic(struct hda_codec *codec) |
| 810 | { |
| 811 | static struct hda_verb mic_jack_on[] = { |
| 812 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080}, |
| 813 | {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000}, |
| 814 | {} |
| 815 | }; |
| 816 | static struct hda_verb mic_jack_off[] = { |
| 817 | {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080}, |
| 818 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000}, |
| 819 | {} |
| 820 | }; |
| 821 | unsigned int present; |
| 822 | |
Takashi Iwai | d56757a | 2009-11-18 08:00:14 +0100 | [diff] [blame] | 823 | present = snd_hda_jack_detect(codec, 0x12); |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 824 | if (present) |
| 825 | snd_hda_sequence_write(codec, mic_jack_on); |
| 826 | else |
| 827 | snd_hda_sequence_write(codec, mic_jack_off); |
| 828 | } |
| 829 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 830 | |
| 831 | /* mute internal speaker if HP is plugged */ |
| 832 | static void cxt5045_hp_automute(struct hda_codec *codec) |
| 833 | { |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 834 | struct conexant_spec *spec = codec->spec; |
Tobin Davis | dd87da1 | 2007-02-26 16:07:42 +0100 | [diff] [blame] | 835 | unsigned int bits; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 836 | |
Takashi Iwai | d56757a | 2009-11-18 08:00:14 +0100 | [diff] [blame] | 837 | spec->hp_present = snd_hda_jack_detect(codec, 0x11); |
Tobin Davis | dd87da1 | 2007-02-26 16:07:42 +0100 | [diff] [blame] | 838 | |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 839 | bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0; |
| 840 | snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0, |
| 841 | HDA_AMP_MUTE, bits); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 842 | } |
| 843 | |
| 844 | /* unsolicited event for HP jack sensing */ |
| 845 | static void cxt5045_hp_unsol_event(struct hda_codec *codec, |
| 846 | unsigned int res) |
| 847 | { |
| 848 | res >>= 26; |
| 849 | switch (res) { |
| 850 | case CONEXANT_HP_EVENT: |
| 851 | cxt5045_hp_automute(codec); |
| 852 | break; |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 853 | case CONEXANT_MIC_EVENT: |
| 854 | cxt5045_hp_automic(codec); |
| 855 | break; |
| 856 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 857 | } |
| 858 | } |
| 859 | |
| 860 | static struct snd_kcontrol_new cxt5045_mixers[] = { |
Takashi Iwai | c8229c3 | 2007-10-19 08:06:21 +0200 | [diff] [blame] | 861 | HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x01, HDA_INPUT), |
| 862 | HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x01, HDA_INPUT), |
| 863 | HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x02, HDA_INPUT), |
| 864 | HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x02, HDA_INPUT), |
| 865 | HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT), |
| 866 | HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT), |
| 867 | HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x1, HDA_INPUT), |
| 868 | HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x1, HDA_INPUT), |
| 869 | HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x2, HDA_INPUT), |
| 870 | HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x2, HDA_INPUT), |
Takashi Iwai | cca3b37 | 2007-08-10 17:12:15 +0200 | [diff] [blame] | 871 | HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 872 | { |
| 873 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 874 | .name = "Master Playback Switch", |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 875 | .info = cxt_eapd_info, |
| 876 | .get = cxt_eapd_get, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 877 | .put = cxt5045_hp_master_sw_put, |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 878 | .private_value = 0x10, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 879 | }, |
| 880 | |
| 881 | {} |
| 882 | }; |
| 883 | |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 884 | static struct snd_kcontrol_new cxt5045_benq_mixers[] = { |
Lukasz Marcinowski | 22e1413 | 2009-09-22 21:42:40 +0200 | [diff] [blame] | 885 | HDA_CODEC_VOLUME("CD Capture Volume", 0x1a, 0x04, HDA_INPUT), |
| 886 | HDA_CODEC_MUTE("CD Capture Switch", 0x1a, 0x04, HDA_INPUT), |
| 887 | HDA_CODEC_VOLUME("CD Playback Volume", 0x17, 0x4, HDA_INPUT), |
| 888 | HDA_CODEC_MUTE("CD Playback Switch", 0x17, 0x4, HDA_INPUT), |
| 889 | |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 890 | HDA_CODEC_VOLUME("Line In Capture Volume", 0x1a, 0x03, HDA_INPUT), |
| 891 | HDA_CODEC_MUTE("Line In Capture Switch", 0x1a, 0x03, HDA_INPUT), |
| 892 | HDA_CODEC_VOLUME("Line In Playback Volume", 0x17, 0x3, HDA_INPUT), |
| 893 | HDA_CODEC_MUTE("Line In Playback Switch", 0x17, 0x3, HDA_INPUT), |
| 894 | |
Lukasz Marcinowski | 22e1413 | 2009-09-22 21:42:40 +0200 | [diff] [blame] | 895 | HDA_CODEC_VOLUME("Mixer Capture Volume", 0x1a, 0x0, HDA_INPUT), |
| 896 | HDA_CODEC_MUTE("Mixer Capture Switch", 0x1a, 0x0, HDA_INPUT), |
| 897 | |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 898 | {} |
| 899 | }; |
| 900 | |
Jiang zhe | 2de3c23 | 2008-03-06 11:09:09 +0100 | [diff] [blame] | 901 | static struct snd_kcontrol_new cxt5045_mixers_hp530[] = { |
Jiang zhe | 2de3c23 | 2008-03-06 11:09:09 +0100 | [diff] [blame] | 902 | HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x02, HDA_INPUT), |
| 903 | HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x02, HDA_INPUT), |
| 904 | HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x01, HDA_INPUT), |
| 905 | HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x01, HDA_INPUT), |
| 906 | HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT), |
| 907 | HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT), |
| 908 | HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x2, HDA_INPUT), |
| 909 | HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x2, HDA_INPUT), |
| 910 | HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x1, HDA_INPUT), |
| 911 | HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x1, HDA_INPUT), |
| 912 | HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol), |
| 913 | { |
| 914 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 915 | .name = "Master Playback Switch", |
| 916 | .info = cxt_eapd_info, |
| 917 | .get = cxt_eapd_get, |
| 918 | .put = cxt5045_hp_master_sw_put, |
| 919 | .private_value = 0x10, |
| 920 | }, |
| 921 | |
| 922 | {} |
| 923 | }; |
| 924 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 925 | static struct hda_verb cxt5045_init_verbs[] = { |
| 926 | /* Line in, Mic */ |
Takashi Iwai | 4090dff | 2008-07-12 12:02:45 +0200 | [diff] [blame] | 927 | {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 }, |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 928 | {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 }, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 929 | /* HP, Amp */ |
Takashi Iwai | c8229c3 | 2007-10-19 08:06:21 +0200 | [diff] [blame] | 930 | {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 931 | {0x10, AC_VERB_SET_CONNECT_SEL, 0x1}, |
| 932 | {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 933 | {0x11, AC_VERB_SET_CONNECT_SEL, 0x1}, |
| 934 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 935 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 936 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, |
| 937 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, |
| 938 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 939 | /* Record selector: Int mic */ |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 940 | {0x1a, AC_VERB_SET_CONNECT_SEL,0x1}, |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 941 | {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 942 | AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17}, |
| 943 | /* SPDIF route: PCM */ |
Takashi Iwai | cbef978 | 2008-02-22 18:36:46 +0100 | [diff] [blame] | 944 | {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 945 | { 0x13, AC_VERB_SET_CONNECT_SEL, 0x0 }, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 946 | /* EAPD */ |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 947 | {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2 }, /* default on */ |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 948 | { } /* end */ |
| 949 | }; |
| 950 | |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 951 | static struct hda_verb cxt5045_benq_init_verbs[] = { |
| 952 | /* Int Mic, Mic */ |
| 953 | {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 }, |
| 954 | {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 }, |
| 955 | /* Line In,HP, Amp */ |
| 956 | {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 957 | {0x10, AC_VERB_SET_CONNECT_SEL, 0x1}, |
| 958 | {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, |
| 959 | {0x11, AC_VERB_SET_CONNECT_SEL, 0x1}, |
| 960 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 961 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 962 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, |
| 963 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, |
| 964 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, |
| 965 | /* Record selector: Int mic */ |
| 966 | {0x1a, AC_VERB_SET_CONNECT_SEL, 0x1}, |
| 967 | {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, |
| 968 | AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17}, |
| 969 | /* SPDIF route: PCM */ |
Takashi Iwai | cbef978 | 2008-02-22 18:36:46 +0100 | [diff] [blame] | 970 | {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 971 | {0x13, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 972 | /* EAPD */ |
| 973 | {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ |
| 974 | { } /* end */ |
| 975 | }; |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 976 | |
| 977 | static struct hda_verb cxt5045_hp_sense_init_verbs[] = { |
| 978 | /* pin sensing on HP jack */ |
| 979 | {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT}, |
Takashi Iwai | d3091fa | 2007-03-28 15:11:53 +0200 | [diff] [blame] | 980 | { } /* end */ |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 981 | }; |
| 982 | |
| 983 | static struct hda_verb cxt5045_mic_sense_init_verbs[] = { |
| 984 | /* pin sensing on HP jack */ |
| 985 | {0x12, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT}, |
Takashi Iwai | d3091fa | 2007-03-28 15:11:53 +0200 | [diff] [blame] | 986 | { } /* end */ |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 987 | }; |
| 988 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 989 | #ifdef CONFIG_SND_DEBUG |
| 990 | /* Test configuration for debugging, modelled after the ALC260 test |
| 991 | * configuration. |
| 992 | */ |
| 993 | static struct hda_input_mux cxt5045_test_capture_source = { |
| 994 | .num_items = 5, |
| 995 | .items = { |
| 996 | { "MIXER", 0x0 }, |
| 997 | { "MIC1 pin", 0x1 }, |
| 998 | { "LINE1 pin", 0x2 }, |
| 999 | { "HP-OUT pin", 0x3 }, |
| 1000 | { "CD pin", 0x4 }, |
| 1001 | }, |
| 1002 | }; |
| 1003 | |
| 1004 | static struct snd_kcontrol_new cxt5045_test_mixer[] = { |
| 1005 | |
| 1006 | /* Output controls */ |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1007 | HDA_CODEC_VOLUME("Speaker Playback Volume", 0x10, 0x0, HDA_OUTPUT), |
| 1008 | HDA_CODEC_MUTE("Speaker Playback Switch", 0x10, 0x0, HDA_OUTPUT), |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1009 | HDA_CODEC_VOLUME("Node 11 Playback Volume", 0x11, 0x0, HDA_OUTPUT), |
| 1010 | HDA_CODEC_MUTE("Node 11 Playback Switch", 0x11, 0x0, HDA_OUTPUT), |
| 1011 | HDA_CODEC_VOLUME("Node 12 Playback Volume", 0x12, 0x0, HDA_OUTPUT), |
| 1012 | HDA_CODEC_MUTE("Node 12 Playback Switch", 0x12, 0x0, HDA_OUTPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1013 | |
| 1014 | /* Modes for retasking pin widgets */ |
| 1015 | CXT_PIN_MODE("HP-OUT pin mode", 0x11, CXT_PIN_DIR_INOUT), |
| 1016 | CXT_PIN_MODE("LINE1 pin mode", 0x12, CXT_PIN_DIR_INOUT), |
| 1017 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1018 | /* EAPD Switch Control */ |
| 1019 | CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0), |
| 1020 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1021 | /* Loopback mixer controls */ |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1022 | |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1023 | HDA_CODEC_VOLUME("Mixer-1 Volume", 0x17, 0x0, HDA_INPUT), |
| 1024 | HDA_CODEC_MUTE("Mixer-1 Switch", 0x17, 0x0, HDA_INPUT), |
| 1025 | HDA_CODEC_VOLUME("Mixer-2 Volume", 0x17, 0x1, HDA_INPUT), |
| 1026 | HDA_CODEC_MUTE("Mixer-2 Switch", 0x17, 0x1, HDA_INPUT), |
| 1027 | HDA_CODEC_VOLUME("Mixer-3 Volume", 0x17, 0x2, HDA_INPUT), |
| 1028 | HDA_CODEC_MUTE("Mixer-3 Switch", 0x17, 0x2, HDA_INPUT), |
| 1029 | HDA_CODEC_VOLUME("Mixer-4 Volume", 0x17, 0x3, HDA_INPUT), |
| 1030 | HDA_CODEC_MUTE("Mixer-4 Switch", 0x17, 0x3, HDA_INPUT), |
| 1031 | HDA_CODEC_VOLUME("Mixer-5 Volume", 0x17, 0x4, HDA_INPUT), |
| 1032 | HDA_CODEC_MUTE("Mixer-5 Switch", 0x17, 0x4, HDA_INPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1033 | { |
| 1034 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1035 | .name = "Input Source", |
| 1036 | .info = conexant_mux_enum_info, |
| 1037 | .get = conexant_mux_enum_get, |
| 1038 | .put = conexant_mux_enum_put, |
| 1039 | }, |
Tobin Davis | fb3409e | 2007-05-17 09:40:47 +0200 | [diff] [blame] | 1040 | /* Audio input controls */ |
| 1041 | HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT), |
| 1042 | HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT), |
| 1043 | HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT), |
| 1044 | HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT), |
| 1045 | HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT), |
| 1046 | HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT), |
| 1047 | HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT), |
| 1048 | HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT), |
| 1049 | HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT), |
| 1050 | HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1051 | { } /* end */ |
| 1052 | }; |
| 1053 | |
| 1054 | static struct hda_verb cxt5045_test_init_verbs[] = { |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1055 | /* Set connections */ |
| 1056 | { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 }, |
| 1057 | { 0x11, AC_VERB_SET_CONNECT_SEL, 0x0 }, |
| 1058 | { 0x12, AC_VERB_SET_CONNECT_SEL, 0x0 }, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1059 | /* Enable retasking pins as output, initially without power amp */ |
| 1060 | {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1061 | {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1062 | |
| 1063 | /* Disable digital (SPDIF) pins initially, but users can enable |
| 1064 | * them via a mixer switch. In the case of SPDIF-out, this initverb |
| 1065 | * payload also sets the generation to 0, output to be in "consumer" |
| 1066 | * PCM format, copyright asserted, no pre-emphasis and no validity |
| 1067 | * control. |
| 1068 | */ |
Takashi Iwai | cbef978 | 2008-02-22 18:36:46 +0100 | [diff] [blame] | 1069 | {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1070 | {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1071 | |
| 1072 | /* Start with output sum widgets muted and their output gains at min */ |
| 1073 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 1074 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 1075 | |
| 1076 | /* Unmute retasking pin widget output buffers since the default |
| 1077 | * state appears to be output. As the pin mode is changed by the |
| 1078 | * user the pin mode control will take care of enabling the pin's |
| 1079 | * input/output buffers as needed. |
| 1080 | */ |
| 1081 | {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1082 | {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1083 | |
| 1084 | /* Mute capture amp left and right */ |
| 1085 | {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 1086 | |
| 1087 | /* Set ADC connection select to match default mixer setting (mic1 |
| 1088 | * pin) |
| 1089 | */ |
| 1090 | {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00}, |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1091 | {0x17, AC_VERB_SET_CONNECT_SEL, 0x00}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1092 | |
| 1093 | /* Mute all inputs to mixer widget (even unconnected ones) */ |
| 1094 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* Mixer pin */ |
| 1095 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* Mic1 pin */ |
| 1096 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* Line pin */ |
| 1097 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* HP pin */ |
| 1098 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */ |
| 1099 | |
| 1100 | { } |
| 1101 | }; |
| 1102 | #endif |
| 1103 | |
| 1104 | |
| 1105 | /* initialize jack-sensing, too */ |
| 1106 | static int cxt5045_init(struct hda_codec *codec) |
| 1107 | { |
| 1108 | conexant_init(codec); |
| 1109 | cxt5045_hp_automute(codec); |
| 1110 | return 0; |
| 1111 | } |
| 1112 | |
| 1113 | |
| 1114 | enum { |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1115 | CXT5045_LAPTOP_HPSENSE, |
| 1116 | CXT5045_LAPTOP_MICSENSE, |
| 1117 | CXT5045_LAPTOP_HPMICSENSE, |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 1118 | CXT5045_BENQ, |
Jiang zhe | 2de3c23 | 2008-03-06 11:09:09 +0100 | [diff] [blame] | 1119 | CXT5045_LAPTOP_HP530, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1120 | #ifdef CONFIG_SND_DEBUG |
| 1121 | CXT5045_TEST, |
| 1122 | #endif |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1123 | CXT5045_MODELS |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1124 | }; |
| 1125 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1126 | static const char *cxt5045_models[CXT5045_MODELS] = { |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1127 | [CXT5045_LAPTOP_HPSENSE] = "laptop-hpsense", |
| 1128 | [CXT5045_LAPTOP_MICSENSE] = "laptop-micsense", |
| 1129 | [CXT5045_LAPTOP_HPMICSENSE] = "laptop-hpmicsense", |
| 1130 | [CXT5045_BENQ] = "benq", |
Jiang zhe | 2de3c23 | 2008-03-06 11:09:09 +0100 | [diff] [blame] | 1131 | [CXT5045_LAPTOP_HP530] = "laptop-hp530", |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1132 | #ifdef CONFIG_SND_DEBUG |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1133 | [CXT5045_TEST] = "test", |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1134 | #endif |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1135 | }; |
| 1136 | |
| 1137 | static struct snd_pci_quirk cxt5045_cfg_tbl[] = { |
Jiang zhe | 2de3c23 | 2008-03-06 11:09:09 +0100 | [diff] [blame] | 1138 | SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530), |
Takashi Iwai | dea0a50 | 2009-02-09 17:14:52 +0100 | [diff] [blame] | 1139 | SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series", |
| 1140 | CXT5045_LAPTOP_HPSENSE), |
Takashi Iwai | 6a9dccd | 2008-07-01 14:52:05 +0200 | [diff] [blame] | 1141 | SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P105", CXT5045_LAPTOP_MICSENSE), |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 1142 | SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ), |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1143 | SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE), |
| 1144 | SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE), |
Takashi Iwai | 9e46415 | 2008-07-12 12:05:25 +0200 | [diff] [blame] | 1145 | SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505", |
| 1146 | CXT5045_LAPTOP_HPMICSENSE), |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1147 | SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE), |
| 1148 | SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE), |
| 1149 | SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE), |
Takashi Iwai | dea0a50 | 2009-02-09 17:14:52 +0100 | [diff] [blame] | 1150 | SND_PCI_QUIRK_MASK(0x1631, 0xff00, 0xc100, "Packard Bell", |
| 1151 | CXT5045_LAPTOP_HPMICSENSE), |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1152 | SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1153 | {} |
| 1154 | }; |
| 1155 | |
| 1156 | static int patch_cxt5045(struct hda_codec *codec) |
| 1157 | { |
| 1158 | struct conexant_spec *spec; |
| 1159 | int board_config; |
| 1160 | |
| 1161 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 1162 | if (!spec) |
| 1163 | return -ENOMEM; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1164 | codec->spec = spec; |
Takashi Iwai | 9421f95 | 2009-03-12 17:06:07 +0100 | [diff] [blame] | 1165 | codec->pin_amp_workaround = 1; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1166 | |
| 1167 | spec->multiout.max_channels = 2; |
| 1168 | spec->multiout.num_dacs = ARRAY_SIZE(cxt5045_dac_nids); |
| 1169 | spec->multiout.dac_nids = cxt5045_dac_nids; |
| 1170 | spec->multiout.dig_out_nid = CXT5045_SPDIF_OUT; |
| 1171 | spec->num_adc_nids = 1; |
| 1172 | spec->adc_nids = cxt5045_adc_nids; |
| 1173 | spec->capsrc_nids = cxt5045_capsrc_nids; |
| 1174 | spec->input_mux = &cxt5045_capture_source; |
| 1175 | spec->num_mixers = 1; |
| 1176 | spec->mixers[0] = cxt5045_mixers; |
| 1177 | spec->num_init_verbs = 1; |
| 1178 | spec->init_verbs[0] = cxt5045_init_verbs; |
| 1179 | spec->spdif_route = 0; |
Takashi Iwai | 3507e2a | 2010-07-08 18:39:00 +0200 | [diff] [blame] | 1180 | spec->num_channel_mode = ARRAY_SIZE(cxt5045_modes); |
| 1181 | spec->channel_mode = cxt5045_modes; |
Tobin Davis | 5cd5752 | 2006-11-20 17:42:09 +0100 | [diff] [blame] | 1182 | |
Takashi Iwai | 3507e2a | 2010-07-08 18:39:00 +0200 | [diff] [blame] | 1183 | set_beep_amp(spec, 0x16, 0, 1); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1184 | |
| 1185 | codec->patch_ops = conexant_patch_ops; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1186 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1187 | board_config = snd_hda_check_board_config(codec, CXT5045_MODELS, |
| 1188 | cxt5045_models, |
| 1189 | cxt5045_cfg_tbl); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1190 | switch (board_config) { |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1191 | case CXT5045_LAPTOP_HPSENSE: |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1192 | codec->patch_ops.unsol_event = cxt5045_hp_unsol_event; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1193 | spec->input_mux = &cxt5045_capture_source; |
| 1194 | spec->num_init_verbs = 2; |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1195 | spec->init_verbs[1] = cxt5045_hp_sense_init_verbs; |
| 1196 | spec->mixers[0] = cxt5045_mixers; |
| 1197 | codec->patch_ops.init = cxt5045_init; |
| 1198 | break; |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1199 | case CXT5045_LAPTOP_MICSENSE: |
Takashi Iwai | 86376df | 2008-07-12 12:04:05 +0200 | [diff] [blame] | 1200 | codec->patch_ops.unsol_event = cxt5045_hp_unsol_event; |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1201 | spec->input_mux = &cxt5045_capture_source; |
| 1202 | spec->num_init_verbs = 2; |
| 1203 | spec->init_verbs[1] = cxt5045_mic_sense_init_verbs; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1204 | spec->mixers[0] = cxt5045_mixers; |
| 1205 | codec->patch_ops.init = cxt5045_init; |
| 1206 | break; |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1207 | default: |
| 1208 | case CXT5045_LAPTOP_HPMICSENSE: |
| 1209 | codec->patch_ops.unsol_event = cxt5045_hp_unsol_event; |
| 1210 | spec->input_mux = &cxt5045_capture_source; |
| 1211 | spec->num_init_verbs = 3; |
| 1212 | spec->init_verbs[1] = cxt5045_hp_sense_init_verbs; |
| 1213 | spec->init_verbs[2] = cxt5045_mic_sense_init_verbs; |
| 1214 | spec->mixers[0] = cxt5045_mixers; |
| 1215 | codec->patch_ops.init = cxt5045_init; |
| 1216 | break; |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 1217 | case CXT5045_BENQ: |
| 1218 | codec->patch_ops.unsol_event = cxt5045_hp_unsol_event; |
| 1219 | spec->input_mux = &cxt5045_capture_source_benq; |
| 1220 | spec->num_init_verbs = 1; |
| 1221 | spec->init_verbs[0] = cxt5045_benq_init_verbs; |
| 1222 | spec->mixers[0] = cxt5045_mixers; |
| 1223 | spec->mixers[1] = cxt5045_benq_mixers; |
| 1224 | spec->num_mixers = 2; |
| 1225 | codec->patch_ops.init = cxt5045_init; |
| 1226 | break; |
Jiang zhe | 2de3c23 | 2008-03-06 11:09:09 +0100 | [diff] [blame] | 1227 | case CXT5045_LAPTOP_HP530: |
| 1228 | codec->patch_ops.unsol_event = cxt5045_hp_unsol_event; |
| 1229 | spec->input_mux = &cxt5045_capture_source_hp530; |
| 1230 | spec->num_init_verbs = 2; |
| 1231 | spec->init_verbs[1] = cxt5045_hp_sense_init_verbs; |
| 1232 | spec->mixers[0] = cxt5045_mixers_hp530; |
| 1233 | codec->patch_ops.init = cxt5045_init; |
| 1234 | break; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1235 | #ifdef CONFIG_SND_DEBUG |
| 1236 | case CXT5045_TEST: |
| 1237 | spec->input_mux = &cxt5045_test_capture_source; |
| 1238 | spec->mixers[0] = cxt5045_test_mixer; |
| 1239 | spec->init_verbs[0] = cxt5045_test_init_verbs; |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1240 | break; |
| 1241 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1242 | #endif |
| 1243 | } |
Takashi Iwai | 48ecb7e | 2007-12-17 14:32:49 +0100 | [diff] [blame] | 1244 | |
Takashi Iwai | 031005f | 2008-06-26 14:49:58 +0200 | [diff] [blame] | 1245 | switch (codec->subsystem_id >> 16) { |
| 1246 | case 0x103c: |
Daniel T Chen | 8f0f5ff | 2010-04-28 18:00:11 -0400 | [diff] [blame] | 1247 | case 0x1631: |
Daniel T Chen | 0b587fc | 2009-11-25 18:27:20 -0500 | [diff] [blame] | 1248 | case 0x1734: |
Daniel T Chen | 0ebf9e3 | 2010-05-10 21:50:04 +0200 | [diff] [blame] | 1249 | case 0x17aa: |
| 1250 | /* HP, Packard Bell, Fujitsu-Siemens & Lenovo laptops have |
| 1251 | * really bad sound over 0dB on NID 0x17. Fix max PCM level to |
| 1252 | * 0 dB (originally it has 0x2b steps with 0dB offset 0x14) |
Takashi Iwai | 031005f | 2008-06-26 14:49:58 +0200 | [diff] [blame] | 1253 | */ |
| 1254 | snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT, |
| 1255 | (0x14 << AC_AMPCAP_OFFSET_SHIFT) | |
| 1256 | (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) | |
| 1257 | (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) | |
| 1258 | (1 << AC_AMPCAP_MUTE_SHIFT)); |
| 1259 | break; |
| 1260 | } |
Takashi Iwai | 48ecb7e | 2007-12-17 14:32:49 +0100 | [diff] [blame] | 1261 | |
Takashi Iwai | 3507e2a | 2010-07-08 18:39:00 +0200 | [diff] [blame] | 1262 | if (spec->beep_amp) |
| 1263 | snd_hda_attach_beep_device(codec, spec->beep_amp); |
| 1264 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1265 | return 0; |
| 1266 | } |
| 1267 | |
| 1268 | |
| 1269 | /* Conexant 5047 specific */ |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1270 | #define CXT5047_SPDIF_OUT 0x11 |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1271 | |
Takashi Iwai | 5b3a744 | 2009-03-10 15:10:55 +0100 | [diff] [blame] | 1272 | static hda_nid_t cxt5047_dac_nids[1] = { 0x10 }; /* 0x1c */ |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1273 | static hda_nid_t cxt5047_adc_nids[1] = { 0x12 }; |
| 1274 | static hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a }; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1275 | |
Tobin Davis | 5cd5752 | 2006-11-20 17:42:09 +0100 | [diff] [blame] | 1276 | static struct hda_channel_mode cxt5047_modes[1] = { |
| 1277 | { 2, NULL }, |
| 1278 | }; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1279 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1280 | static struct hda_input_mux cxt5047_toshiba_capture_source = { |
| 1281 | .num_items = 2, |
| 1282 | .items = { |
| 1283 | { "ExtMic", 0x2 }, |
| 1284 | { "Line-In", 0x1 }, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1285 | } |
| 1286 | }; |
| 1287 | |
| 1288 | /* turn on/off EAPD (+ mute HP) as a master switch */ |
| 1289 | static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol, |
| 1290 | struct snd_ctl_elem_value *ucontrol) |
| 1291 | { |
| 1292 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1293 | struct conexant_spec *spec = codec->spec; |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1294 | unsigned int bits; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1295 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1296 | if (!cxt_eapd_put(kcontrol, ucontrol)) |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1297 | return 0; |
| 1298 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1299 | /* toggle internal speakers mute depending of presence of |
| 1300 | * the headphone jack |
| 1301 | */ |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1302 | bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE; |
Takashi Iwai | 3b7523f | 2009-03-12 16:45:01 +0100 | [diff] [blame] | 1303 | /* NOTE: Conexat codec needs the index for *OUTPUT* amp of |
| 1304 | * pin widgets unlike other codecs. In this case, we need to |
| 1305 | * set index 0x01 for the volume from the mixer amp 0x19. |
| 1306 | */ |
Gregorio Guidi | 5d75bc5 | 2009-03-12 16:41:51 +0100 | [diff] [blame] | 1307 | snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01, |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1308 | HDA_AMP_MUTE, bits); |
| 1309 | bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE; |
| 1310 | snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0, |
| 1311 | HDA_AMP_MUTE, bits); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1312 | return 1; |
| 1313 | } |
| 1314 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1315 | /* mute internal speaker if HP is plugged */ |
| 1316 | static void cxt5047_hp_automute(struct hda_codec *codec) |
| 1317 | { |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1318 | struct conexant_spec *spec = codec->spec; |
Tobin Davis | dd87da1 | 2007-02-26 16:07:42 +0100 | [diff] [blame] | 1319 | unsigned int bits; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1320 | |
Takashi Iwai | d56757a | 2009-11-18 08:00:14 +0100 | [diff] [blame] | 1321 | spec->hp_present = snd_hda_jack_detect(codec, 0x13); |
Tobin Davis | dd87da1 | 2007-02-26 16:07:42 +0100 | [diff] [blame] | 1322 | |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1323 | bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0; |
Takashi Iwai | 3b7523f | 2009-03-12 16:45:01 +0100 | [diff] [blame] | 1324 | /* See the note in cxt5047_hp_master_sw_put */ |
Gregorio Guidi | 5d75bc5 | 2009-03-12 16:41:51 +0100 | [diff] [blame] | 1325 | snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01, |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1326 | HDA_AMP_MUTE, bits); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1327 | } |
| 1328 | |
| 1329 | /* toggle input of built-in and mic jack appropriately */ |
| 1330 | static void cxt5047_hp_automic(struct hda_codec *codec) |
| 1331 | { |
| 1332 | static struct hda_verb mic_jack_on[] = { |
Marc Boucher | 9f113e0 | 2008-01-22 15:18:08 +0100 | [diff] [blame] | 1333 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, |
| 1334 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1335 | {} |
| 1336 | }; |
| 1337 | static struct hda_verb mic_jack_off[] = { |
Marc Boucher | 9f113e0 | 2008-01-22 15:18:08 +0100 | [diff] [blame] | 1338 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, |
| 1339 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1340 | {} |
| 1341 | }; |
| 1342 | unsigned int present; |
| 1343 | |
Takashi Iwai | d56757a | 2009-11-18 08:00:14 +0100 | [diff] [blame] | 1344 | present = snd_hda_jack_detect(codec, 0x15); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1345 | if (present) |
| 1346 | snd_hda_sequence_write(codec, mic_jack_on); |
| 1347 | else |
| 1348 | snd_hda_sequence_write(codec, mic_jack_off); |
| 1349 | } |
| 1350 | |
| 1351 | /* unsolicited event for HP jack sensing */ |
| 1352 | static void cxt5047_hp_unsol_event(struct hda_codec *codec, |
| 1353 | unsigned int res) |
| 1354 | { |
Marc Boucher | 9f113e0 | 2008-01-22 15:18:08 +0100 | [diff] [blame] | 1355 | switch (res >> 26) { |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1356 | case CONEXANT_HP_EVENT: |
| 1357 | cxt5047_hp_automute(codec); |
| 1358 | break; |
| 1359 | case CONEXANT_MIC_EVENT: |
| 1360 | cxt5047_hp_automic(codec); |
| 1361 | break; |
| 1362 | } |
| 1363 | } |
| 1364 | |
Takashi Iwai | df481e4 | 2009-03-10 15:35:35 +0100 | [diff] [blame] | 1365 | static struct snd_kcontrol_new cxt5047_base_mixers[] = { |
| 1366 | HDA_CODEC_VOLUME("Mic Playback Volume", 0x19, 0x02, HDA_INPUT), |
| 1367 | HDA_CODEC_MUTE("Mic Playback Switch", 0x19, 0x02, HDA_INPUT), |
| 1368 | HDA_CODEC_VOLUME("Mic Boost", 0x1a, 0x0, HDA_OUTPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1369 | HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT), |
| 1370 | HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT), |
| 1371 | HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT), |
| 1372 | HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT), |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1373 | { |
| 1374 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1375 | .name = "Master Playback Switch", |
| 1376 | .info = cxt_eapd_info, |
| 1377 | .get = cxt_eapd_get, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1378 | .put = cxt5047_hp_master_sw_put, |
| 1379 | .private_value = 0x13, |
| 1380 | }, |
| 1381 | |
| 1382 | {} |
| 1383 | }; |
| 1384 | |
Takashi Iwai | df481e4 | 2009-03-10 15:35:35 +0100 | [diff] [blame] | 1385 | static struct snd_kcontrol_new cxt5047_hp_spk_mixers[] = { |
Takashi Iwai | 3b7523f | 2009-03-12 16:45:01 +0100 | [diff] [blame] | 1386 | /* See the note in cxt5047_hp_master_sw_put */ |
Gregorio Guidi | 5d75bc5 | 2009-03-12 16:41:51 +0100 | [diff] [blame] | 1387 | HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x01, HDA_OUTPUT), |
Takashi Iwai | df481e4 | 2009-03-10 15:35:35 +0100 | [diff] [blame] | 1388 | HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT), |
| 1389 | {} |
| 1390 | }; |
| 1391 | |
| 1392 | static struct snd_kcontrol_new cxt5047_hp_only_mixers[] = { |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1393 | HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1394 | { } /* end */ |
| 1395 | }; |
| 1396 | |
| 1397 | static struct hda_verb cxt5047_init_verbs[] = { |
| 1398 | /* Line in, Mic, Built-in Mic */ |
| 1399 | {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, |
| 1400 | {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 }, |
| 1401 | {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 }, |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1402 | /* HP, Speaker */ |
Tobin Davis | b7589ce | 2007-04-24 17:56:55 +0200 | [diff] [blame] | 1403 | {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, |
Takashi Iwai | 5b3a744 | 2009-03-10 15:10:55 +0100 | [diff] [blame] | 1404 | {0x13, AC_VERB_SET_CONNECT_SEL, 0x0}, /* mixer(0x19) */ |
| 1405 | {0x1d, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mixer(0x19) */ |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1406 | /* Record selector: Mic */ |
| 1407 | {0x12, AC_VERB_SET_CONNECT_SEL,0x03}, |
| 1408 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, |
| 1409 | AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17}, |
| 1410 | {0x1A, AC_VERB_SET_CONNECT_SEL,0x02}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1411 | {0x1A, AC_VERB_SET_AMP_GAIN_MUTE, |
| 1412 | AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00}, |
| 1413 | {0x1A, AC_VERB_SET_AMP_GAIN_MUTE, |
| 1414 | AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x03}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1415 | /* SPDIF route: PCM */ |
| 1416 | { 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 }, |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1417 | /* Enable unsolicited events */ |
| 1418 | {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT}, |
| 1419 | {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1420 | { } /* end */ |
| 1421 | }; |
| 1422 | |
| 1423 | /* configuration for Toshiba Laptops */ |
| 1424 | static struct hda_verb cxt5047_toshiba_init_verbs[] = { |
Takashi Iwai | 3b62886 | 2009-03-10 14:53:54 +0100 | [diff] [blame] | 1425 | {0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0}, /* default off */ |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1426 | {} |
| 1427 | }; |
| 1428 | |
| 1429 | /* Test configuration for debugging, modelled after the ALC260 test |
| 1430 | * configuration. |
| 1431 | */ |
| 1432 | #ifdef CONFIG_SND_DEBUG |
| 1433 | static struct hda_input_mux cxt5047_test_capture_source = { |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1434 | .num_items = 4, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1435 | .items = { |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1436 | { "LINE1 pin", 0x0 }, |
| 1437 | { "MIC1 pin", 0x1 }, |
| 1438 | { "MIC2 pin", 0x2 }, |
| 1439 | { "CD pin", 0x3 }, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1440 | }, |
| 1441 | }; |
| 1442 | |
| 1443 | static struct snd_kcontrol_new cxt5047_test_mixer[] = { |
| 1444 | |
| 1445 | /* Output only controls */ |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1446 | HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT), |
| 1447 | HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT), |
| 1448 | HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT), |
| 1449 | HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1450 | HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT), |
| 1451 | HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT), |
| 1452 | HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT), |
| 1453 | HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT), |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1454 | HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT), |
| 1455 | HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT), |
| 1456 | HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT), |
| 1457 | HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1458 | |
| 1459 | /* Modes for retasking pin widgets */ |
| 1460 | CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT), |
| 1461 | CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT), |
| 1462 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1463 | /* EAPD Switch Control */ |
| 1464 | CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0), |
| 1465 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1466 | /* Loopback mixer controls */ |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1467 | HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT), |
| 1468 | HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT), |
| 1469 | HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT), |
| 1470 | HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT), |
| 1471 | HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT), |
| 1472 | HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT), |
| 1473 | HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT), |
| 1474 | HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1475 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1476 | HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT), |
| 1477 | HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT), |
| 1478 | HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT), |
| 1479 | HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT), |
| 1480 | HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT), |
| 1481 | HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT), |
| 1482 | HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT), |
| 1483 | HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1484 | { |
| 1485 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1486 | .name = "Input Source", |
| 1487 | .info = conexant_mux_enum_info, |
| 1488 | .get = conexant_mux_enum_get, |
| 1489 | .put = conexant_mux_enum_put, |
| 1490 | }, |
Takashi Iwai | 854206b | 2009-11-30 18:22:04 +0100 | [diff] [blame] | 1491 | HDA_CODEC_VOLUME("Mic Boost Volume", 0x1a, 0x0, HDA_OUTPUT), |
Marc Boucher | 9f113e0 | 2008-01-22 15:18:08 +0100 | [diff] [blame] | 1492 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1493 | { } /* end */ |
| 1494 | }; |
| 1495 | |
| 1496 | static struct hda_verb cxt5047_test_init_verbs[] = { |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1497 | /* Enable retasking pins as output, initially without power amp */ |
| 1498 | {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1499 | {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1500 | {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1501 | |
| 1502 | /* Disable digital (SPDIF) pins initially, but users can enable |
| 1503 | * them via a mixer switch. In the case of SPDIF-out, this initverb |
| 1504 | * payload also sets the generation to 0, output to be in "consumer" |
| 1505 | * PCM format, copyright asserted, no pre-emphasis and no validity |
| 1506 | * control. |
| 1507 | */ |
| 1508 | {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0}, |
| 1509 | |
| 1510 | /* Ensure mic1, mic2, line1 pin widgets take input from the |
| 1511 | * OUT1 sum bus when acting as an output. |
| 1512 | */ |
| 1513 | {0x1a, AC_VERB_SET_CONNECT_SEL, 0}, |
| 1514 | {0x1b, AC_VERB_SET_CONNECT_SEL, 0}, |
| 1515 | |
| 1516 | /* Start with output sum widgets muted and their output gains at min */ |
| 1517 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 1518 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 1519 | |
| 1520 | /* Unmute retasking pin widget output buffers since the default |
| 1521 | * state appears to be output. As the pin mode is changed by the |
| 1522 | * user the pin mode control will take care of enabling the pin's |
| 1523 | * input/output buffers as needed. |
| 1524 | */ |
| 1525 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1526 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1527 | {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1528 | |
| 1529 | /* Mute capture amp left and right */ |
| 1530 | {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 1531 | |
| 1532 | /* Set ADC connection select to match default mixer setting (mic1 |
| 1533 | * pin) |
| 1534 | */ |
| 1535 | {0x12, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1536 | |
| 1537 | /* Mute all inputs to mixer widget (even unconnected ones) */ |
| 1538 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */ |
| 1539 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */ |
| 1540 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */ |
| 1541 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */ |
| 1542 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */ |
| 1543 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */ |
| 1544 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */ |
| 1545 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */ |
| 1546 | |
| 1547 | { } |
| 1548 | }; |
| 1549 | #endif |
| 1550 | |
| 1551 | |
| 1552 | /* initialize jack-sensing, too */ |
| 1553 | static int cxt5047_hp_init(struct hda_codec *codec) |
| 1554 | { |
| 1555 | conexant_init(codec); |
| 1556 | cxt5047_hp_automute(codec); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1557 | return 0; |
| 1558 | } |
| 1559 | |
| 1560 | |
| 1561 | enum { |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1562 | CXT5047_LAPTOP, /* Laptops w/o EAPD support */ |
| 1563 | CXT5047_LAPTOP_HP, /* Some HP laptops */ |
| 1564 | CXT5047_LAPTOP_EAPD, /* Laptops with EAPD support */ |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1565 | #ifdef CONFIG_SND_DEBUG |
| 1566 | CXT5047_TEST, |
| 1567 | #endif |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1568 | CXT5047_MODELS |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1569 | }; |
| 1570 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1571 | static const char *cxt5047_models[CXT5047_MODELS] = { |
| 1572 | [CXT5047_LAPTOP] = "laptop", |
| 1573 | [CXT5047_LAPTOP_HP] = "laptop-hp", |
| 1574 | [CXT5047_LAPTOP_EAPD] = "laptop-eapd", |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1575 | #ifdef CONFIG_SND_DEBUG |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1576 | [CXT5047_TEST] = "test", |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1577 | #endif |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1578 | }; |
| 1579 | |
| 1580 | static struct snd_pci_quirk cxt5047_cfg_tbl[] = { |
Takashi Iwai | ac3e374 | 2007-12-17 17:14:18 +0100 | [diff] [blame] | 1581 | SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP), |
Takashi Iwai | dea0a50 | 2009-02-09 17:14:52 +0100 | [diff] [blame] | 1582 | SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series", |
| 1583 | CXT5047_LAPTOP), |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1584 | SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1585 | {} |
| 1586 | }; |
| 1587 | |
| 1588 | static int patch_cxt5047(struct hda_codec *codec) |
| 1589 | { |
| 1590 | struct conexant_spec *spec; |
| 1591 | int board_config; |
| 1592 | |
| 1593 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 1594 | if (!spec) |
| 1595 | return -ENOMEM; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1596 | codec->spec = spec; |
Takashi Iwai | 9421f95 | 2009-03-12 17:06:07 +0100 | [diff] [blame] | 1597 | codec->pin_amp_workaround = 1; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1598 | |
| 1599 | spec->multiout.max_channels = 2; |
| 1600 | spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids); |
| 1601 | spec->multiout.dac_nids = cxt5047_dac_nids; |
| 1602 | spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT; |
| 1603 | spec->num_adc_nids = 1; |
| 1604 | spec->adc_nids = cxt5047_adc_nids; |
| 1605 | spec->capsrc_nids = cxt5047_capsrc_nids; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1606 | spec->num_mixers = 1; |
Takashi Iwai | df481e4 | 2009-03-10 15:35:35 +0100 | [diff] [blame] | 1607 | spec->mixers[0] = cxt5047_base_mixers; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1608 | spec->num_init_verbs = 1; |
| 1609 | spec->init_verbs[0] = cxt5047_init_verbs; |
| 1610 | spec->spdif_route = 0; |
Tobin Davis | 5cd5752 | 2006-11-20 17:42:09 +0100 | [diff] [blame] | 1611 | spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes), |
| 1612 | spec->channel_mode = cxt5047_modes, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1613 | |
| 1614 | codec->patch_ops = conexant_patch_ops; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1615 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1616 | board_config = snd_hda_check_board_config(codec, CXT5047_MODELS, |
| 1617 | cxt5047_models, |
| 1618 | cxt5047_cfg_tbl); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1619 | switch (board_config) { |
| 1620 | case CXT5047_LAPTOP: |
Takashi Iwai | df481e4 | 2009-03-10 15:35:35 +0100 | [diff] [blame] | 1621 | spec->num_mixers = 2; |
| 1622 | spec->mixers[1] = cxt5047_hp_spk_mixers; |
| 1623 | codec->patch_ops.unsol_event = cxt5047_hp_unsol_event; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1624 | break; |
| 1625 | case CXT5047_LAPTOP_HP: |
Takashi Iwai | df481e4 | 2009-03-10 15:35:35 +0100 | [diff] [blame] | 1626 | spec->num_mixers = 2; |
| 1627 | spec->mixers[1] = cxt5047_hp_only_mixers; |
Tobin Davis | fb3409e | 2007-05-17 09:40:47 +0200 | [diff] [blame] | 1628 | codec->patch_ops.unsol_event = cxt5047_hp_unsol_event; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1629 | codec->patch_ops.init = cxt5047_hp_init; |
| 1630 | break; |
| 1631 | case CXT5047_LAPTOP_EAPD: |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1632 | spec->input_mux = &cxt5047_toshiba_capture_source; |
Takashi Iwai | df481e4 | 2009-03-10 15:35:35 +0100 | [diff] [blame] | 1633 | spec->num_mixers = 2; |
| 1634 | spec->mixers[1] = cxt5047_hp_spk_mixers; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1635 | spec->num_init_verbs = 2; |
| 1636 | spec->init_verbs[1] = cxt5047_toshiba_init_verbs; |
Tobin Davis | fb3409e | 2007-05-17 09:40:47 +0200 | [diff] [blame] | 1637 | codec->patch_ops.unsol_event = cxt5047_hp_unsol_event; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1638 | break; |
| 1639 | #ifdef CONFIG_SND_DEBUG |
| 1640 | case CXT5047_TEST: |
| 1641 | spec->input_mux = &cxt5047_test_capture_source; |
| 1642 | spec->mixers[0] = cxt5047_test_mixer; |
| 1643 | spec->init_verbs[0] = cxt5047_test_init_verbs; |
Tobin Davis | fb3409e | 2007-05-17 09:40:47 +0200 | [diff] [blame] | 1644 | codec->patch_ops.unsol_event = cxt5047_hp_unsol_event; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1645 | #endif |
| 1646 | } |
Takashi Iwai | dd5746a | 2009-03-10 14:30:40 +0100 | [diff] [blame] | 1647 | spec->vmaster_nid = 0x13; |
Daniel T Chen | 025f206 | 2010-03-21 18:34:43 -0400 | [diff] [blame] | 1648 | |
| 1649 | switch (codec->subsystem_id >> 16) { |
| 1650 | case 0x103c: |
| 1651 | /* HP laptops have really bad sound over 0 dB on NID 0x10. |
| 1652 | * Fix max PCM level to 0 dB (originally it has 0x1e steps |
| 1653 | * with 0 dB offset 0x17) |
| 1654 | */ |
| 1655 | snd_hda_override_amp_caps(codec, 0x10, HDA_INPUT, |
| 1656 | (0x17 << AC_AMPCAP_OFFSET_SHIFT) | |
| 1657 | (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) | |
| 1658 | (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) | |
| 1659 | (1 << AC_AMPCAP_MUTE_SHIFT)); |
| 1660 | break; |
| 1661 | } |
| 1662 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1663 | return 0; |
| 1664 | } |
| 1665 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1666 | /* Conexant 5051 specific */ |
| 1667 | static hda_nid_t cxt5051_dac_nids[1] = { 0x10 }; |
| 1668 | static hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 }; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1669 | |
| 1670 | static struct hda_channel_mode cxt5051_modes[1] = { |
| 1671 | { 2, NULL }, |
| 1672 | }; |
| 1673 | |
| 1674 | static void cxt5051_update_speaker(struct hda_codec *codec) |
| 1675 | { |
| 1676 | struct conexant_spec *spec = codec->spec; |
| 1677 | unsigned int pinctl; |
Takashi Iwai | 23d2df5 | 2010-01-24 11:19:27 +0100 | [diff] [blame] | 1678 | /* headphone pin */ |
| 1679 | pinctl = (spec->hp_present && spec->cur_eapd) ? PIN_HP : 0; |
| 1680 | snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 1681 | pinctl); |
| 1682 | /* speaker pin */ |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1683 | pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0; |
| 1684 | snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 1685 | pinctl); |
Herton Ronaldo Krzesinski | f7154de2 | 2010-06-17 14:15:06 -0300 | [diff] [blame] | 1686 | /* on ideapad there is an aditional speaker (subwoofer) to mute */ |
| 1687 | if (spec->ideapad) |
| 1688 | snd_hda_codec_write(codec, 0x1b, 0, |
| 1689 | AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 1690 | pinctl); |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1691 | } |
| 1692 | |
| 1693 | /* turn on/off EAPD (+ mute HP) as a master switch */ |
| 1694 | static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol, |
| 1695 | struct snd_ctl_elem_value *ucontrol) |
| 1696 | { |
| 1697 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1698 | |
| 1699 | if (!cxt_eapd_put(kcontrol, ucontrol)) |
| 1700 | return 0; |
| 1701 | cxt5051_update_speaker(codec); |
| 1702 | return 1; |
| 1703 | } |
| 1704 | |
| 1705 | /* toggle input of built-in and mic jack appropriately */ |
| 1706 | static void cxt5051_portb_automic(struct hda_codec *codec) |
| 1707 | { |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1708 | struct conexant_spec *spec = codec->spec; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1709 | unsigned int present; |
| 1710 | |
Takashi Iwai | faddaa5 | 2010-01-23 22:31:36 +0100 | [diff] [blame] | 1711 | if (!(spec->auto_mic & AUTO_MIC_PORTB)) |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1712 | return; |
Takashi Iwai | d56757a | 2009-11-18 08:00:14 +0100 | [diff] [blame] | 1713 | present = snd_hda_jack_detect(codec, 0x17); |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1714 | snd_hda_codec_write(codec, 0x14, 0, |
| 1715 | AC_VERB_SET_CONNECT_SEL, |
| 1716 | present ? 0x01 : 0x00); |
| 1717 | } |
| 1718 | |
| 1719 | /* switch the current ADC according to the jack state */ |
| 1720 | static void cxt5051_portc_automic(struct hda_codec *codec) |
| 1721 | { |
| 1722 | struct conexant_spec *spec = codec->spec; |
| 1723 | unsigned int present; |
| 1724 | hda_nid_t new_adc; |
| 1725 | |
Takashi Iwai | faddaa5 | 2010-01-23 22:31:36 +0100 | [diff] [blame] | 1726 | if (!(spec->auto_mic & AUTO_MIC_PORTC)) |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1727 | return; |
Takashi Iwai | d56757a | 2009-11-18 08:00:14 +0100 | [diff] [blame] | 1728 | present = snd_hda_jack_detect(codec, 0x18); |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1729 | if (present) |
| 1730 | spec->cur_adc_idx = 1; |
| 1731 | else |
| 1732 | spec->cur_adc_idx = 0; |
| 1733 | new_adc = spec->adc_nids[spec->cur_adc_idx]; |
| 1734 | if (spec->cur_adc && spec->cur_adc != new_adc) { |
| 1735 | /* stream is running, let's swap the current ADC */ |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1736 | snd_hda_codec_cleanup_stream(codec, spec->cur_adc); |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1737 | spec->cur_adc = new_adc; |
| 1738 | snd_hda_codec_setup_stream(codec, new_adc, |
| 1739 | spec->cur_adc_stream_tag, 0, |
| 1740 | spec->cur_adc_format); |
| 1741 | } |
| 1742 | } |
| 1743 | |
| 1744 | /* mute internal speaker if HP is plugged */ |
| 1745 | static void cxt5051_hp_automute(struct hda_codec *codec) |
| 1746 | { |
| 1747 | struct conexant_spec *spec = codec->spec; |
| 1748 | |
Takashi Iwai | d56757a | 2009-11-18 08:00:14 +0100 | [diff] [blame] | 1749 | spec->hp_present = snd_hda_jack_detect(codec, 0x16); |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1750 | cxt5051_update_speaker(codec); |
| 1751 | } |
| 1752 | |
| 1753 | /* unsolicited event for HP jack sensing */ |
| 1754 | static void cxt5051_hp_unsol_event(struct hda_codec *codec, |
| 1755 | unsigned int res) |
| 1756 | { |
Ulrich Dangel | acf26c0 | 2009-01-02 19:30:14 +0100 | [diff] [blame] | 1757 | int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1758 | switch (res >> 26) { |
| 1759 | case CONEXANT_HP_EVENT: |
| 1760 | cxt5051_hp_automute(codec); |
| 1761 | break; |
| 1762 | case CXT5051_PORTB_EVENT: |
| 1763 | cxt5051_portb_automic(codec); |
| 1764 | break; |
| 1765 | case CXT5051_PORTC_EVENT: |
| 1766 | cxt5051_portc_automic(codec); |
| 1767 | break; |
| 1768 | } |
Ulrich Dangel | acf26c0 | 2009-01-02 19:30:14 +0100 | [diff] [blame] | 1769 | conexant_report_jack(codec, nid); |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1770 | } |
| 1771 | |
Takashi Iwai | 2c7a3fb | 2010-01-24 10:47:02 +0100 | [diff] [blame] | 1772 | static struct snd_kcontrol_new cxt5051_playback_mixers[] = { |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1773 | HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT), |
| 1774 | { |
| 1775 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1776 | .name = "Master Playback Switch", |
| 1777 | .info = cxt_eapd_info, |
| 1778 | .get = cxt_eapd_get, |
| 1779 | .put = cxt5051_hp_master_sw_put, |
| 1780 | .private_value = 0x1a, |
| 1781 | }, |
Takashi Iwai | 2c7a3fb | 2010-01-24 10:47:02 +0100 | [diff] [blame] | 1782 | {} |
| 1783 | }; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1784 | |
Takashi Iwai | 2c7a3fb | 2010-01-24 10:47:02 +0100 | [diff] [blame] | 1785 | static struct snd_kcontrol_new cxt5051_capture_mixers[] = { |
| 1786 | HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT), |
| 1787 | HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT), |
| 1788 | HDA_CODEC_VOLUME("External Mic Volume", 0x14, 0x01, HDA_INPUT), |
| 1789 | HDA_CODEC_MUTE("External Mic Switch", 0x14, 0x01, HDA_INPUT), |
| 1790 | HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT), |
| 1791 | HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT), |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1792 | {} |
| 1793 | }; |
| 1794 | |
| 1795 | static struct snd_kcontrol_new cxt5051_hp_mixers[] = { |
| 1796 | HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT), |
| 1797 | HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT), |
| 1798 | HDA_CODEC_VOLUME("External Mic Volume", 0x15, 0x00, HDA_INPUT), |
| 1799 | HDA_CODEC_MUTE("External Mic Switch", 0x15, 0x00, HDA_INPUT), |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1800 | {} |
| 1801 | }; |
| 1802 | |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1803 | static struct snd_kcontrol_new cxt5051_hp_dv6736_mixers[] = { |
Takashi Iwai | 4e4ac600 | 2010-01-23 22:29:54 +0100 | [diff] [blame] | 1804 | HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x00, HDA_INPUT), |
| 1805 | HDA_CODEC_MUTE("Capture Switch", 0x14, 0x00, HDA_INPUT), |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1806 | {} |
| 1807 | }; |
| 1808 | |
Ken Prox | cd9d95a | 2010-01-08 09:01:47 +0100 | [diff] [blame] | 1809 | static struct snd_kcontrol_new cxt5051_f700_mixers[] = { |
Takashi Iwai | 5f6c3de | 2010-01-23 22:19:29 +0100 | [diff] [blame] | 1810 | HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x01, HDA_INPUT), |
| 1811 | HDA_CODEC_MUTE("Capture Switch", 0x14, 0x01, HDA_INPUT), |
Ken Prox | cd9d95a | 2010-01-08 09:01:47 +0100 | [diff] [blame] | 1812 | {} |
| 1813 | }; |
| 1814 | |
Takashi Iwai | faddaa5 | 2010-01-23 22:31:36 +0100 | [diff] [blame] | 1815 | static struct snd_kcontrol_new cxt5051_toshiba_mixers[] = { |
| 1816 | HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT), |
| 1817 | HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT), |
| 1818 | HDA_CODEC_VOLUME("External Mic Volume", 0x14, 0x01, HDA_INPUT), |
| 1819 | HDA_CODEC_MUTE("External Mic Switch", 0x14, 0x01, HDA_INPUT), |
Takashi Iwai | faddaa5 | 2010-01-23 22:31:36 +0100 | [diff] [blame] | 1820 | {} |
| 1821 | }; |
| 1822 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1823 | static struct hda_verb cxt5051_init_verbs[] = { |
| 1824 | /* Line in, Mic */ |
| 1825 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
| 1826 | {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
| 1827 | {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
| 1828 | {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
| 1829 | {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, |
| 1830 | {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
| 1831 | /* SPK */ |
| 1832 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1833 | {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1834 | /* HP, Amp */ |
| 1835 | {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 1836 | {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1837 | /* DAC1 */ |
| 1838 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1839 | /* Record selector: Int mic */ |
| 1840 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44}, |
| 1841 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44}, |
| 1842 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44}, |
| 1843 | /* SPDIF route: PCM */ |
Pierre-Louis Bossart | 1965c44 | 2010-05-06 16:37:03 -0500 | [diff] [blame] | 1844 | {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1845 | {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 1846 | /* EAPD */ |
| 1847 | {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ |
| 1848 | {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT}, |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1849 | { } /* end */ |
| 1850 | }; |
| 1851 | |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1852 | static struct hda_verb cxt5051_hp_dv6736_init_verbs[] = { |
| 1853 | /* Line in, Mic */ |
| 1854 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
| 1855 | {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
| 1856 | {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0}, |
| 1857 | {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0}, |
| 1858 | /* SPK */ |
| 1859 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1860 | {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1861 | /* HP, Amp */ |
| 1862 | {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 1863 | {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1864 | /* DAC1 */ |
| 1865 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1866 | /* Record selector: Int mic */ |
| 1867 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44}, |
| 1868 | {0x14, AC_VERB_SET_CONNECT_SEL, 0x1}, |
| 1869 | /* SPDIF route: PCM */ |
| 1870 | {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 1871 | /* EAPD */ |
| 1872 | {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ |
| 1873 | {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT}, |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1874 | { } /* end */ |
| 1875 | }; |
| 1876 | |
Aristeu Sergio Rozanski Filho | 27e0898 | 2009-02-12 17:50:37 -0500 | [diff] [blame] | 1877 | static struct hda_verb cxt5051_lenovo_x200_init_verbs[] = { |
| 1878 | /* Line in, Mic */ |
| 1879 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
| 1880 | {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
| 1881 | {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
| 1882 | {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
| 1883 | {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, |
| 1884 | {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
| 1885 | /* SPK */ |
| 1886 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1887 | {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1888 | /* HP, Amp */ |
| 1889 | {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 1890 | {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1891 | /* Docking HP */ |
| 1892 | {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 1893 | {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1894 | /* DAC1 */ |
| 1895 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1896 | /* Record selector: Int mic */ |
| 1897 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44}, |
| 1898 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44}, |
| 1899 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44}, |
| 1900 | /* SPDIF route: PCM */ |
Pierre-Louis Bossart | 1965c44 | 2010-05-06 16:37:03 -0500 | [diff] [blame] | 1901 | {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, /* needed for W500 Advanced Mini Dock 250410 */ |
Aristeu Sergio Rozanski Filho | 27e0898 | 2009-02-12 17:50:37 -0500 | [diff] [blame] | 1902 | {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 1903 | /* EAPD */ |
| 1904 | {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ |
| 1905 | {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT}, |
Aristeu Sergio Rozanski Filho | 27e0898 | 2009-02-12 17:50:37 -0500 | [diff] [blame] | 1906 | {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT}, |
| 1907 | { } /* end */ |
| 1908 | }; |
| 1909 | |
Ken Prox | cd9d95a | 2010-01-08 09:01:47 +0100 | [diff] [blame] | 1910 | static struct hda_verb cxt5051_f700_init_verbs[] = { |
| 1911 | /* Line in, Mic */ |
Takashi Iwai | 30ed7ed | 2010-01-28 17:11:45 +0100 | [diff] [blame] | 1912 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
Ken Prox | cd9d95a | 2010-01-08 09:01:47 +0100 | [diff] [blame] | 1913 | {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
| 1914 | {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0}, |
| 1915 | {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0}, |
| 1916 | /* SPK */ |
| 1917 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1918 | {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1919 | /* HP, Amp */ |
| 1920 | {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 1921 | {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1922 | /* DAC1 */ |
| 1923 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1924 | /* Record selector: Int mic */ |
| 1925 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44}, |
| 1926 | {0x14, AC_VERB_SET_CONNECT_SEL, 0x1}, |
| 1927 | /* SPDIF route: PCM */ |
| 1928 | {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 1929 | /* EAPD */ |
| 1930 | {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ |
| 1931 | {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT}, |
Ken Prox | cd9d95a | 2010-01-08 09:01:47 +0100 | [diff] [blame] | 1932 | { } /* end */ |
| 1933 | }; |
| 1934 | |
Takashi Iwai | 6953e55 | 2010-01-24 11:00:27 +0100 | [diff] [blame] | 1935 | static void cxt5051_init_mic_port(struct hda_codec *codec, hda_nid_t nid, |
| 1936 | unsigned int event) |
| 1937 | { |
| 1938 | snd_hda_codec_write(codec, nid, 0, |
| 1939 | AC_VERB_SET_UNSOLICITED_ENABLE, |
| 1940 | AC_USRSP_EN | event); |
| 1941 | #ifdef CONFIG_SND_HDA_INPUT_JACK |
| 1942 | conexant_add_jack(codec, nid, SND_JACK_MICROPHONE); |
| 1943 | conexant_report_jack(codec, nid); |
| 1944 | #endif |
| 1945 | } |
| 1946 | |
Herton Ronaldo Krzesinski | f7154de2 | 2010-06-17 14:15:06 -0300 | [diff] [blame] | 1947 | static struct hda_verb cxt5051_ideapad_init_verbs[] = { |
| 1948 | /* Subwoofer */ |
| 1949 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1950 | {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1951 | { } /* end */ |
| 1952 | }; |
| 1953 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1954 | /* initialize jack-sensing, too */ |
| 1955 | static int cxt5051_init(struct hda_codec *codec) |
| 1956 | { |
Takashi Iwai | 6953e55 | 2010-01-24 11:00:27 +0100 | [diff] [blame] | 1957 | struct conexant_spec *spec = codec->spec; |
| 1958 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1959 | conexant_init(codec); |
Ulrich Dangel | acf26c0 | 2009-01-02 19:30:14 +0100 | [diff] [blame] | 1960 | conexant_init_jacks(codec); |
Takashi Iwai | 6953e55 | 2010-01-24 11:00:27 +0100 | [diff] [blame] | 1961 | |
| 1962 | if (spec->auto_mic & AUTO_MIC_PORTB) |
| 1963 | cxt5051_init_mic_port(codec, 0x17, CXT5051_PORTB_EVENT); |
| 1964 | if (spec->auto_mic & AUTO_MIC_PORTC) |
| 1965 | cxt5051_init_mic_port(codec, 0x18, CXT5051_PORTC_EVENT); |
| 1966 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1967 | if (codec->patch_ops.unsol_event) { |
| 1968 | cxt5051_hp_automute(codec); |
| 1969 | cxt5051_portb_automic(codec); |
| 1970 | cxt5051_portc_automic(codec); |
| 1971 | } |
| 1972 | return 0; |
| 1973 | } |
| 1974 | |
| 1975 | |
| 1976 | enum { |
| 1977 | CXT5051_LAPTOP, /* Laptops w/ EAPD support */ |
| 1978 | CXT5051_HP, /* no docking */ |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1979 | CXT5051_HP_DV6736, /* HP without mic switch */ |
Pierre-Louis Bossart | 1965c44 | 2010-05-06 16:37:03 -0500 | [diff] [blame] | 1980 | CXT5051_LENOVO_X200, /* Lenovo X200 laptop, also used for Advanced Mini Dock 250410 */ |
Ken Prox | cd9d95a | 2010-01-08 09:01:47 +0100 | [diff] [blame] | 1981 | CXT5051_F700, /* HP Compaq Presario F700 */ |
Takashi Iwai | faddaa5 | 2010-01-23 22:31:36 +0100 | [diff] [blame] | 1982 | CXT5051_TOSHIBA, /* Toshiba M300 & co */ |
Herton Ronaldo Krzesinski | f7154de2 | 2010-06-17 14:15:06 -0300 | [diff] [blame] | 1983 | CXT5051_IDEAPAD, /* Lenovo IdeaPad Y430 */ |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1984 | CXT5051_MODELS |
| 1985 | }; |
| 1986 | |
| 1987 | static const char *cxt5051_models[CXT5051_MODELS] = { |
| 1988 | [CXT5051_LAPTOP] = "laptop", |
| 1989 | [CXT5051_HP] = "hp", |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1990 | [CXT5051_HP_DV6736] = "hp-dv6736", |
Aristeu Sergio Rozanski Filho | 27e0898 | 2009-02-12 17:50:37 -0500 | [diff] [blame] | 1991 | [CXT5051_LENOVO_X200] = "lenovo-x200", |
Takashi Iwai | 5f6c3de | 2010-01-23 22:19:29 +0100 | [diff] [blame] | 1992 | [CXT5051_F700] = "hp-700", |
Takashi Iwai | faddaa5 | 2010-01-23 22:31:36 +0100 | [diff] [blame] | 1993 | [CXT5051_TOSHIBA] = "toshiba", |
Herton Ronaldo Krzesinski | f7154de2 | 2010-06-17 14:15:06 -0300 | [diff] [blame] | 1994 | [CXT5051_IDEAPAD] = "ideapad", |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1995 | }; |
| 1996 | |
| 1997 | static struct snd_pci_quirk cxt5051_cfg_tbl[] = { |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1998 | SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV6736", CXT5051_HP_DV6736), |
Tony Vroon | 1812e67 | 2009-05-27 21:00:41 +0100 | [diff] [blame] | 1999 | SND_PCI_QUIRK(0x103c, 0x360b, "Compaq Presario CQ60", CXT5051_HP), |
Takashi Iwai | 5f6c3de | 2010-01-23 22:19:29 +0100 | [diff] [blame] | 2000 | SND_PCI_QUIRK(0x103c, 0x30ea, "Compaq Presario F700", CXT5051_F700), |
Takashi Iwai | faddaa5 | 2010-01-23 22:31:36 +0100 | [diff] [blame] | 2001 | SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba M30x", CXT5051_TOSHIBA), |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 2002 | SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board", |
| 2003 | CXT5051_LAPTOP), |
| 2004 | SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP), |
Aristeu Sergio Rozanski Filho | 27e0898 | 2009-02-12 17:50:37 -0500 | [diff] [blame] | 2005 | SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo X200", CXT5051_LENOVO_X200), |
Herton Ronaldo Krzesinski | f7154de2 | 2010-06-17 14:15:06 -0300 | [diff] [blame] | 2006 | SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo IdeaPad", CXT5051_IDEAPAD), |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 2007 | {} |
| 2008 | }; |
| 2009 | |
| 2010 | static int patch_cxt5051(struct hda_codec *codec) |
| 2011 | { |
| 2012 | struct conexant_spec *spec; |
| 2013 | int board_config; |
| 2014 | |
| 2015 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 2016 | if (!spec) |
| 2017 | return -ENOMEM; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 2018 | codec->spec = spec; |
Takashi Iwai | 9421f95 | 2009-03-12 17:06:07 +0100 | [diff] [blame] | 2019 | codec->pin_amp_workaround = 1; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 2020 | |
| 2021 | codec->patch_ops = conexant_patch_ops; |
| 2022 | codec->patch_ops.init = cxt5051_init; |
| 2023 | |
| 2024 | spec->multiout.max_channels = 2; |
| 2025 | spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids); |
| 2026 | spec->multiout.dac_nids = cxt5051_dac_nids; |
| 2027 | spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT; |
| 2028 | spec->num_adc_nids = 1; /* not 2; via auto-mic switch */ |
| 2029 | spec->adc_nids = cxt5051_adc_nids; |
Takashi Iwai | 2c7a3fb | 2010-01-24 10:47:02 +0100 | [diff] [blame] | 2030 | spec->num_mixers = 2; |
| 2031 | spec->mixers[0] = cxt5051_capture_mixers; |
| 2032 | spec->mixers[1] = cxt5051_playback_mixers; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 2033 | spec->num_init_verbs = 1; |
| 2034 | spec->init_verbs[0] = cxt5051_init_verbs; |
| 2035 | spec->spdif_route = 0; |
| 2036 | spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes); |
| 2037 | spec->channel_mode = cxt5051_modes; |
| 2038 | spec->cur_adc = 0; |
| 2039 | spec->cur_adc_idx = 0; |
| 2040 | |
Takashi Iwai | 3507e2a | 2010-07-08 18:39:00 +0200 | [diff] [blame] | 2041 | set_beep_amp(spec, 0x13, 0, HDA_OUTPUT); |
| 2042 | |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 2043 | codec->patch_ops.unsol_event = cxt5051_hp_unsol_event; |
| 2044 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 2045 | board_config = snd_hda_check_board_config(codec, CXT5051_MODELS, |
| 2046 | cxt5051_models, |
| 2047 | cxt5051_cfg_tbl); |
Takashi Iwai | faddaa5 | 2010-01-23 22:31:36 +0100 | [diff] [blame] | 2048 | spec->auto_mic = AUTO_MIC_PORTB | AUTO_MIC_PORTC; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 2049 | switch (board_config) { |
| 2050 | case CXT5051_HP: |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 2051 | spec->mixers[0] = cxt5051_hp_mixers; |
| 2052 | break; |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 2053 | case CXT5051_HP_DV6736: |
| 2054 | spec->init_verbs[0] = cxt5051_hp_dv6736_init_verbs; |
| 2055 | spec->mixers[0] = cxt5051_hp_dv6736_mixers; |
Takashi Iwai | faddaa5 | 2010-01-23 22:31:36 +0100 | [diff] [blame] | 2056 | spec->auto_mic = 0; |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 2057 | break; |
Aristeu Sergio Rozanski Filho | 27e0898 | 2009-02-12 17:50:37 -0500 | [diff] [blame] | 2058 | case CXT5051_LENOVO_X200: |
| 2059 | spec->init_verbs[0] = cxt5051_lenovo_x200_init_verbs; |
Jerone Young | 607bc3e | 2010-08-03 01:46:42 -0500 | [diff] [blame^] | 2060 | /* Thinkpad X301 does not have S/PDIF wired and no ability |
| 2061 | to use a docking station. */ |
| 2062 | if (codec->subsystem_id == 0x17aa211f) |
| 2063 | spec->multiout.dig_out_nid = 0; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 2064 | break; |
Ken Prox | cd9d95a | 2010-01-08 09:01:47 +0100 | [diff] [blame] | 2065 | case CXT5051_F700: |
| 2066 | spec->init_verbs[0] = cxt5051_f700_init_verbs; |
| 2067 | spec->mixers[0] = cxt5051_f700_mixers; |
Takashi Iwai | faddaa5 | 2010-01-23 22:31:36 +0100 | [diff] [blame] | 2068 | spec->auto_mic = 0; |
| 2069 | break; |
| 2070 | case CXT5051_TOSHIBA: |
| 2071 | spec->mixers[0] = cxt5051_toshiba_mixers; |
| 2072 | spec->auto_mic = AUTO_MIC_PORTB; |
Ken Prox | cd9d95a | 2010-01-08 09:01:47 +0100 | [diff] [blame] | 2073 | break; |
Herton Ronaldo Krzesinski | f7154de2 | 2010-06-17 14:15:06 -0300 | [diff] [blame] | 2074 | case CXT5051_IDEAPAD: |
| 2075 | spec->init_verbs[spec->num_init_verbs++] = |
| 2076 | cxt5051_ideapad_init_verbs; |
| 2077 | spec->ideapad = 1; |
| 2078 | break; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 2079 | } |
| 2080 | |
Takashi Iwai | 3507e2a | 2010-07-08 18:39:00 +0200 | [diff] [blame] | 2081 | if (spec->beep_amp) |
| 2082 | snd_hda_attach_beep_device(codec, spec->beep_amp); |
| 2083 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 2084 | return 0; |
| 2085 | } |
| 2086 | |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2087 | /* Conexant 5066 specific */ |
| 2088 | |
| 2089 | static hda_nid_t cxt5066_dac_nids[1] = { 0x10 }; |
| 2090 | static hda_nid_t cxt5066_adc_nids[3] = { 0x14, 0x15, 0x16 }; |
| 2091 | static hda_nid_t cxt5066_capsrc_nids[1] = { 0x17 }; |
| 2092 | #define CXT5066_SPDIF_OUT 0x21 |
| 2093 | |
Daniel Drake | dbaccc0 | 2009-11-09 15:17:24 +0000 | [diff] [blame] | 2094 | /* OLPC's microphone port is DC coupled for use with external sensors, |
| 2095 | * therefore we use a 50% mic bias in order to center the input signal with |
| 2096 | * the DC input range of the codec. */ |
| 2097 | #define CXT5066_OLPC_EXT_MIC_BIAS PIN_VREF50 |
| 2098 | |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2099 | static struct hda_channel_mode cxt5066_modes[1] = { |
| 2100 | { 2, NULL }, |
| 2101 | }; |
| 2102 | |
| 2103 | static void cxt5066_update_speaker(struct hda_codec *codec) |
| 2104 | { |
| 2105 | struct conexant_spec *spec = codec->spec; |
| 2106 | unsigned int pinctl; |
| 2107 | |
| 2108 | snd_printdd("CXT5066: update speaker, hp_present=%d\n", |
| 2109 | spec->hp_present); |
| 2110 | |
| 2111 | /* Port A (HP) */ |
| 2112 | pinctl = ((spec->hp_present & 1) && spec->cur_eapd) ? PIN_HP : 0; |
| 2113 | snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 2114 | pinctl); |
| 2115 | |
| 2116 | /* Port D (HP/LO) */ |
| 2117 | pinctl = ((spec->hp_present & 2) && spec->cur_eapd) |
| 2118 | ? spec->port_d_mode : 0; |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 2119 | /* Mute if Port A is connected on Thinkpad */ |
| 2120 | if (spec->thinkpad && (spec->hp_present & 1)) |
| 2121 | pinctl = 0; |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2122 | snd_hda_codec_write(codec, 0x1c, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 2123 | pinctl); |
| 2124 | |
| 2125 | /* CLASS_D AMP */ |
| 2126 | pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0; |
| 2127 | snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 2128 | pinctl); |
| 2129 | |
| 2130 | if (spec->dell_automute) { |
| 2131 | /* DELL AIO Port Rule: PortA > PortD > IntSpk */ |
| 2132 | pinctl = (!(spec->hp_present & 1) && spec->cur_eapd) |
| 2133 | ? PIN_OUT : 0; |
| 2134 | snd_hda_codec_write(codec, 0x1c, 0, |
| 2135 | AC_VERB_SET_PIN_WIDGET_CONTROL, pinctl); |
| 2136 | } |
| 2137 | } |
| 2138 | |
| 2139 | /* turn on/off EAPD (+ mute HP) as a master switch */ |
| 2140 | static int cxt5066_hp_master_sw_put(struct snd_kcontrol *kcontrol, |
| 2141 | struct snd_ctl_elem_value *ucontrol) |
| 2142 | { |
| 2143 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2144 | |
| 2145 | if (!cxt_eapd_put(kcontrol, ucontrol)) |
| 2146 | return 0; |
| 2147 | |
| 2148 | cxt5066_update_speaker(codec); |
| 2149 | return 1; |
| 2150 | } |
| 2151 | |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2152 | static const struct hda_input_mux cxt5066_olpc_dc_bias = { |
| 2153 | .num_items = 3, |
| 2154 | .items = { |
| 2155 | { "Off", PIN_IN }, |
| 2156 | { "50%", PIN_VREF50 }, |
| 2157 | { "80%", PIN_VREF80 }, |
| 2158 | }, |
| 2159 | }; |
| 2160 | |
| 2161 | static int cxt5066_set_olpc_dc_bias(struct hda_codec *codec) |
| 2162 | { |
| 2163 | struct conexant_spec *spec = codec->spec; |
| 2164 | /* Even though port F is the DC input, the bias is controlled on port B. |
| 2165 | * we also leave that port as an active input (but unselected) in DC mode |
| 2166 | * just in case that is necessary to make the bias setting take effect. */ |
| 2167 | return snd_hda_codec_write_cache(codec, 0x1a, 0, |
| 2168 | AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 2169 | cxt5066_olpc_dc_bias.items[spec->dc_input_bias].index); |
| 2170 | } |
| 2171 | |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 2172 | /* OLPC defers mic widget control until when capture is started because the |
| 2173 | * microphone LED comes on as soon as these settings are put in place. if we |
| 2174 | * did this before recording, it would give the false indication that recording |
| 2175 | * is happening when it is not. */ |
| 2176 | static void cxt5066_olpc_select_mic(struct hda_codec *codec) |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2177 | { |
Daniel Drake | dbaccc0 | 2009-11-09 15:17:24 +0000 | [diff] [blame] | 2178 | struct conexant_spec *spec = codec->spec; |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 2179 | if (!spec->recording) |
| 2180 | return; |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2181 | |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2182 | if (spec->dc_enable) { |
| 2183 | /* in DC mode we ignore presence detection and just use the jack |
| 2184 | * through our special DC port */ |
| 2185 | const struct hda_verb enable_dc_mode[] = { |
| 2186 | /* disble internal mic, port C */ |
| 2187 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2188 | |
| 2189 | /* enable DC capture, port F */ |
| 2190 | {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, |
| 2191 | {}, |
| 2192 | }; |
| 2193 | |
| 2194 | snd_hda_sequence_write(codec, enable_dc_mode); |
| 2195 | /* port B input disabled (and bias set) through the following call */ |
| 2196 | cxt5066_set_olpc_dc_bias(codec); |
| 2197 | return; |
| 2198 | } |
| 2199 | |
| 2200 | /* disable DC (port F) */ |
| 2201 | snd_hda_codec_write(codec, 0x1e, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 0); |
| 2202 | |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 2203 | /* external mic, port B */ |
| 2204 | snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 2205 | spec->ext_mic_present ? CXT5066_OLPC_EXT_MIC_BIAS : 0); |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2206 | |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 2207 | /* internal mic, port C */ |
| 2208 | snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 2209 | spec->ext_mic_present ? 0 : PIN_VREF80); |
| 2210 | } |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2211 | |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 2212 | /* toggle input of built-in and mic jack appropriately */ |
| 2213 | static void cxt5066_olpc_automic(struct hda_codec *codec) |
| 2214 | { |
| 2215 | struct conexant_spec *spec = codec->spec; |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2216 | unsigned int present; |
| 2217 | |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2218 | if (spec->dc_enable) /* don't do presence detection in DC mode */ |
| 2219 | return; |
| 2220 | |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 2221 | present = snd_hda_codec_read(codec, 0x1a, 0, |
| 2222 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; |
| 2223 | if (present) |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2224 | snd_printdd("CXT5066: external microphone detected\n"); |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 2225 | else |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2226 | snd_printdd("CXT5066: external microphone absent\n"); |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 2227 | |
| 2228 | snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL, |
| 2229 | present ? 0 : 1); |
| 2230 | spec->ext_mic_present = !!present; |
| 2231 | |
| 2232 | cxt5066_olpc_select_mic(codec); |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2233 | } |
| 2234 | |
Einar Rünkaru | 95a618b | 2009-11-23 22:23:49 +0200 | [diff] [blame] | 2235 | /* toggle input of built-in digital mic and mic jack appropriately */ |
| 2236 | static void cxt5066_vostro_automic(struct hda_codec *codec) |
| 2237 | { |
Einar Rünkaru | 95a618b | 2009-11-23 22:23:49 +0200 | [diff] [blame] | 2238 | unsigned int present; |
| 2239 | |
| 2240 | struct hda_verb ext_mic_present[] = { |
| 2241 | /* enable external mic, port B */ |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 2242 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
Einar Rünkaru | 95a618b | 2009-11-23 22:23:49 +0200 | [diff] [blame] | 2243 | |
| 2244 | /* switch to external mic input */ |
| 2245 | {0x17, AC_VERB_SET_CONNECT_SEL, 0}, |
| 2246 | {0x14, AC_VERB_SET_CONNECT_SEL, 0}, |
| 2247 | |
| 2248 | /* disable internal digital mic */ |
| 2249 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2250 | {} |
| 2251 | }; |
| 2252 | static struct hda_verb ext_mic_absent[] = { |
| 2253 | /* enable internal mic, port C */ |
| 2254 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, |
| 2255 | |
| 2256 | /* switch to internal mic input */ |
| 2257 | {0x14, AC_VERB_SET_CONNECT_SEL, 2}, |
| 2258 | |
| 2259 | /* disable external mic, port B */ |
| 2260 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2261 | {} |
| 2262 | }; |
| 2263 | |
| 2264 | present = snd_hda_jack_detect(codec, 0x1a); |
| 2265 | if (present) { |
| 2266 | snd_printdd("CXT5066: external microphone detected\n"); |
| 2267 | snd_hda_sequence_write(codec, ext_mic_present); |
| 2268 | } else { |
| 2269 | snd_printdd("CXT5066: external microphone absent\n"); |
| 2270 | snd_hda_sequence_write(codec, ext_mic_absent); |
| 2271 | } |
| 2272 | } |
| 2273 | |
Greg Alexander | cfd3d8d | 2010-02-13 02:02:25 -0500 | [diff] [blame] | 2274 | /* toggle input of built-in digital mic and mic jack appropriately */ |
| 2275 | static void cxt5066_ideapad_automic(struct hda_codec *codec) |
| 2276 | { |
| 2277 | unsigned int present; |
| 2278 | |
| 2279 | struct hda_verb ext_mic_present[] = { |
| 2280 | {0x14, AC_VERB_SET_CONNECT_SEL, 0}, |
| 2281 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
| 2282 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2283 | {} |
| 2284 | }; |
| 2285 | static struct hda_verb ext_mic_absent[] = { |
| 2286 | {0x14, AC_VERB_SET_CONNECT_SEL, 2}, |
| 2287 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, |
| 2288 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2289 | {} |
| 2290 | }; |
| 2291 | |
| 2292 | present = snd_hda_jack_detect(codec, 0x1b); |
| 2293 | if (present) { |
| 2294 | snd_printdd("CXT5066: external microphone detected\n"); |
| 2295 | snd_hda_sequence_write(codec, ext_mic_present); |
| 2296 | } else { |
| 2297 | snd_printdd("CXT5066: external microphone absent\n"); |
| 2298 | snd_hda_sequence_write(codec, ext_mic_absent); |
| 2299 | } |
| 2300 | } |
| 2301 | |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 2302 | /* toggle input of built-in digital mic and mic jack appropriately |
| 2303 | order is: external mic -> dock mic -> interal mic */ |
| 2304 | static void cxt5066_thinkpad_automic(struct hda_codec *codec) |
| 2305 | { |
| 2306 | unsigned int ext_present, dock_present; |
| 2307 | |
| 2308 | static struct hda_verb ext_mic_present[] = { |
| 2309 | {0x14, AC_VERB_SET_CONNECT_SEL, 0}, |
| 2310 | {0x17, AC_VERB_SET_CONNECT_SEL, 1}, |
| 2311 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
| 2312 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2313 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2314 | {} |
| 2315 | }; |
| 2316 | static struct hda_verb dock_mic_present[] = { |
| 2317 | {0x14, AC_VERB_SET_CONNECT_SEL, 0}, |
| 2318 | {0x17, AC_VERB_SET_CONNECT_SEL, 0}, |
| 2319 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
| 2320 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2321 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2322 | {} |
| 2323 | }; |
| 2324 | static struct hda_verb ext_mic_absent[] = { |
| 2325 | {0x14, AC_VERB_SET_CONNECT_SEL, 2}, |
| 2326 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, |
| 2327 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2328 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2329 | {} |
| 2330 | }; |
| 2331 | |
| 2332 | ext_present = snd_hda_jack_detect(codec, 0x1b); |
| 2333 | dock_present = snd_hda_jack_detect(codec, 0x1a); |
| 2334 | if (ext_present) { |
| 2335 | snd_printdd("CXT5066: external microphone detected\n"); |
| 2336 | snd_hda_sequence_write(codec, ext_mic_present); |
| 2337 | } else if (dock_present) { |
| 2338 | snd_printdd("CXT5066: dock microphone detected\n"); |
| 2339 | snd_hda_sequence_write(codec, dock_mic_present); |
| 2340 | } else { |
| 2341 | snd_printdd("CXT5066: external microphone absent\n"); |
| 2342 | snd_hda_sequence_write(codec, ext_mic_absent); |
| 2343 | } |
| 2344 | } |
| 2345 | |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2346 | /* mute internal speaker if HP is plugged */ |
| 2347 | static void cxt5066_hp_automute(struct hda_codec *codec) |
| 2348 | { |
| 2349 | struct conexant_spec *spec = codec->spec; |
| 2350 | unsigned int portA, portD; |
| 2351 | |
| 2352 | /* Port A */ |
Takashi Iwai | d56757a | 2009-11-18 08:00:14 +0100 | [diff] [blame] | 2353 | portA = snd_hda_jack_detect(codec, 0x19); |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2354 | |
| 2355 | /* Port D */ |
Takashi Iwai | d56757a | 2009-11-18 08:00:14 +0100 | [diff] [blame] | 2356 | portD = snd_hda_jack_detect(codec, 0x1c); |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2357 | |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 2358 | spec->hp_present = !!(portA); |
| 2359 | spec->hp_present |= portD ? 2 : 0; |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2360 | snd_printdd("CXT5066: hp automute portA=%x portD=%x present=%d\n", |
| 2361 | portA, portD, spec->hp_present); |
| 2362 | cxt5066_update_speaker(codec); |
| 2363 | } |
| 2364 | |
| 2365 | /* unsolicited event for jack sensing */ |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 2366 | static void cxt5066_olpc_unsol_event(struct hda_codec *codec, unsigned int res) |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2367 | { |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2368 | struct conexant_spec *spec = codec->spec; |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2369 | snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26); |
| 2370 | switch (res >> 26) { |
| 2371 | case CONEXANT_HP_EVENT: |
| 2372 | cxt5066_hp_automute(codec); |
| 2373 | break; |
| 2374 | case CONEXANT_MIC_EVENT: |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2375 | /* ignore mic events in DC mode; we're always using the jack */ |
| 2376 | if (!spec->dc_enable) |
| 2377 | cxt5066_olpc_automic(codec); |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2378 | break; |
| 2379 | } |
| 2380 | } |
| 2381 | |
Einar Rünkaru | 95a618b | 2009-11-23 22:23:49 +0200 | [diff] [blame] | 2382 | /* unsolicited event for jack sensing */ |
| 2383 | static void cxt5066_vostro_event(struct hda_codec *codec, unsigned int res) |
| 2384 | { |
| 2385 | snd_printdd("CXT5066_vostro: unsol event %x (%x)\n", res, res >> 26); |
| 2386 | switch (res >> 26) { |
| 2387 | case CONEXANT_HP_EVENT: |
| 2388 | cxt5066_hp_automute(codec); |
| 2389 | break; |
| 2390 | case CONEXANT_MIC_EVENT: |
| 2391 | cxt5066_vostro_automic(codec); |
| 2392 | break; |
| 2393 | } |
| 2394 | } |
| 2395 | |
Greg Alexander | cfd3d8d | 2010-02-13 02:02:25 -0500 | [diff] [blame] | 2396 | /* unsolicited event for jack sensing */ |
| 2397 | static void cxt5066_ideapad_event(struct hda_codec *codec, unsigned int res) |
| 2398 | { |
| 2399 | snd_printdd("CXT5066_ideapad: unsol event %x (%x)\n", res, res >> 26); |
| 2400 | switch (res >> 26) { |
| 2401 | case CONEXANT_HP_EVENT: |
| 2402 | cxt5066_hp_automute(codec); |
| 2403 | break; |
| 2404 | case CONEXANT_MIC_EVENT: |
| 2405 | cxt5066_ideapad_automic(codec); |
| 2406 | break; |
| 2407 | } |
| 2408 | } |
| 2409 | |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 2410 | /* unsolicited event for jack sensing */ |
| 2411 | static void cxt5066_thinkpad_event(struct hda_codec *codec, unsigned int res) |
| 2412 | { |
| 2413 | snd_printdd("CXT5066_thinkpad: unsol event %x (%x)\n", res, res >> 26); |
| 2414 | switch (res >> 26) { |
| 2415 | case CONEXANT_HP_EVENT: |
| 2416 | cxt5066_hp_automute(codec); |
| 2417 | break; |
| 2418 | case CONEXANT_MIC_EVENT: |
| 2419 | cxt5066_thinkpad_automic(codec); |
| 2420 | break; |
| 2421 | } |
| 2422 | } |
| 2423 | |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2424 | static const struct hda_input_mux cxt5066_analog_mic_boost = { |
| 2425 | .num_items = 5, |
| 2426 | .items = { |
| 2427 | { "0dB", 0 }, |
| 2428 | { "10dB", 1 }, |
| 2429 | { "20dB", 2 }, |
| 2430 | { "30dB", 3 }, |
| 2431 | { "40dB", 4 }, |
| 2432 | }, |
| 2433 | }; |
| 2434 | |
Greg Alexander | cfd3d8d | 2010-02-13 02:02:25 -0500 | [diff] [blame] | 2435 | static void cxt5066_set_mic_boost(struct hda_codec *codec) |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2436 | { |
| 2437 | struct conexant_spec *spec = codec->spec; |
Greg Alexander | cfd3d8d | 2010-02-13 02:02:25 -0500 | [diff] [blame] | 2438 | snd_hda_codec_write_cache(codec, 0x17, 0, |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2439 | AC_VERB_SET_AMP_GAIN_MUTE, |
| 2440 | AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_OUTPUT | |
| 2441 | cxt5066_analog_mic_boost.items[spec->mic_boost].index); |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 2442 | if (spec->ideapad || spec->thinkpad) { |
Greg Alexander | cfd3d8d | 2010-02-13 02:02:25 -0500 | [diff] [blame] | 2443 | /* adjust the internal mic as well...it is not through 0x17 */ |
| 2444 | snd_hda_codec_write_cache(codec, 0x23, 0, |
| 2445 | AC_VERB_SET_AMP_GAIN_MUTE, |
| 2446 | AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_INPUT | |
| 2447 | cxt5066_analog_mic_boost. |
| 2448 | items[spec->mic_boost].index); |
| 2449 | } |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2450 | } |
| 2451 | |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2452 | static int cxt5066_mic_boost_mux_enum_info(struct snd_kcontrol *kcontrol, |
| 2453 | struct snd_ctl_elem_info *uinfo) |
| 2454 | { |
| 2455 | return snd_hda_input_mux_info(&cxt5066_analog_mic_boost, uinfo); |
| 2456 | } |
| 2457 | |
| 2458 | static int cxt5066_mic_boost_mux_enum_get(struct snd_kcontrol *kcontrol, |
| 2459 | struct snd_ctl_elem_value *ucontrol) |
| 2460 | { |
| 2461 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2462 | struct conexant_spec *spec = codec->spec; |
| 2463 | ucontrol->value.enumerated.item[0] = spec->mic_boost; |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2464 | return 0; |
| 2465 | } |
| 2466 | |
| 2467 | static int cxt5066_mic_boost_mux_enum_put(struct snd_kcontrol *kcontrol, |
| 2468 | struct snd_ctl_elem_value *ucontrol) |
| 2469 | { |
| 2470 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2471 | struct conexant_spec *spec = codec->spec; |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2472 | const struct hda_input_mux *imux = &cxt5066_analog_mic_boost; |
| 2473 | unsigned int idx; |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2474 | idx = ucontrol->value.enumerated.item[0]; |
| 2475 | if (idx >= imux->num_items) |
| 2476 | idx = imux->num_items - 1; |
| 2477 | |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2478 | spec->mic_boost = idx; |
| 2479 | if (!spec->dc_enable) |
| 2480 | cxt5066_set_mic_boost(codec); |
| 2481 | return 1; |
| 2482 | } |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2483 | |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2484 | static void cxt5066_enable_dc(struct hda_codec *codec) |
| 2485 | { |
| 2486 | const struct hda_verb enable_dc_mode[] = { |
| 2487 | /* disable gain */ |
| 2488 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 2489 | |
| 2490 | /* switch to DC input */ |
| 2491 | {0x17, AC_VERB_SET_CONNECT_SEL, 3}, |
| 2492 | {} |
| 2493 | }; |
| 2494 | |
| 2495 | /* configure as input source */ |
| 2496 | snd_hda_sequence_write(codec, enable_dc_mode); |
| 2497 | cxt5066_olpc_select_mic(codec); /* also sets configured bias */ |
| 2498 | } |
| 2499 | |
| 2500 | static void cxt5066_disable_dc(struct hda_codec *codec) |
| 2501 | { |
| 2502 | /* reconfigure input source */ |
| 2503 | cxt5066_set_mic_boost(codec); |
| 2504 | /* automic also selects the right mic if we're recording */ |
| 2505 | cxt5066_olpc_automic(codec); |
| 2506 | } |
| 2507 | |
| 2508 | static int cxt5066_olpc_dc_get(struct snd_kcontrol *kcontrol, |
| 2509 | struct snd_ctl_elem_value *ucontrol) |
| 2510 | { |
| 2511 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2512 | struct conexant_spec *spec = codec->spec; |
| 2513 | ucontrol->value.integer.value[0] = spec->dc_enable; |
| 2514 | return 0; |
| 2515 | } |
| 2516 | |
| 2517 | static int cxt5066_olpc_dc_put(struct snd_kcontrol *kcontrol, |
| 2518 | struct snd_ctl_elem_value *ucontrol) |
| 2519 | { |
| 2520 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2521 | struct conexant_spec *spec = codec->spec; |
| 2522 | int dc_enable = !!ucontrol->value.integer.value[0]; |
| 2523 | |
| 2524 | if (dc_enable == spec->dc_enable) |
| 2525 | return 0; |
| 2526 | |
| 2527 | spec->dc_enable = dc_enable; |
| 2528 | if (dc_enable) |
| 2529 | cxt5066_enable_dc(codec); |
| 2530 | else |
| 2531 | cxt5066_disable_dc(codec); |
| 2532 | |
| 2533 | return 1; |
| 2534 | } |
| 2535 | |
| 2536 | static int cxt5066_olpc_dc_bias_enum_info(struct snd_kcontrol *kcontrol, |
| 2537 | struct snd_ctl_elem_info *uinfo) |
| 2538 | { |
| 2539 | return snd_hda_input_mux_info(&cxt5066_olpc_dc_bias, uinfo); |
| 2540 | } |
| 2541 | |
| 2542 | static int cxt5066_olpc_dc_bias_enum_get(struct snd_kcontrol *kcontrol, |
| 2543 | struct snd_ctl_elem_value *ucontrol) |
| 2544 | { |
| 2545 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2546 | struct conexant_spec *spec = codec->spec; |
| 2547 | ucontrol->value.enumerated.item[0] = spec->dc_input_bias; |
| 2548 | return 0; |
| 2549 | } |
| 2550 | |
| 2551 | static int cxt5066_olpc_dc_bias_enum_put(struct snd_kcontrol *kcontrol, |
| 2552 | struct snd_ctl_elem_value *ucontrol) |
| 2553 | { |
| 2554 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2555 | struct conexant_spec *spec = codec->spec; |
| 2556 | const struct hda_input_mux *imux = &cxt5066_analog_mic_boost; |
| 2557 | unsigned int idx; |
| 2558 | |
| 2559 | idx = ucontrol->value.enumerated.item[0]; |
| 2560 | if (idx >= imux->num_items) |
| 2561 | idx = imux->num_items - 1; |
| 2562 | |
| 2563 | spec->dc_input_bias = idx; |
| 2564 | if (spec->dc_enable) |
| 2565 | cxt5066_set_olpc_dc_bias(codec); |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2566 | return 1; |
| 2567 | } |
| 2568 | |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 2569 | static void cxt5066_olpc_capture_prepare(struct hda_codec *codec) |
| 2570 | { |
| 2571 | struct conexant_spec *spec = codec->spec; |
| 2572 | /* mark as recording and configure the microphone widget so that the |
| 2573 | * recording LED comes on. */ |
| 2574 | spec->recording = 1; |
| 2575 | cxt5066_olpc_select_mic(codec); |
| 2576 | } |
| 2577 | |
| 2578 | static void cxt5066_olpc_capture_cleanup(struct hda_codec *codec) |
| 2579 | { |
| 2580 | struct conexant_spec *spec = codec->spec; |
| 2581 | const struct hda_verb disable_mics[] = { |
| 2582 | /* disable external mic, port B */ |
| 2583 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2584 | |
| 2585 | /* disble internal mic, port C */ |
| 2586 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2587 | |
| 2588 | /* disable DC capture, port F */ |
| 2589 | {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 2590 | {}, |
| 2591 | }; |
| 2592 | |
| 2593 | snd_hda_sequence_write(codec, disable_mics); |
| 2594 | spec->recording = 0; |
| 2595 | } |
| 2596 | |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2597 | static struct hda_input_mux cxt5066_capture_source = { |
| 2598 | .num_items = 4, |
| 2599 | .items = { |
| 2600 | { "Mic B", 0 }, |
| 2601 | { "Mic C", 1 }, |
| 2602 | { "Mic E", 2 }, |
| 2603 | { "Mic F", 3 }, |
| 2604 | }, |
| 2605 | }; |
| 2606 | |
| 2607 | static struct hda_bind_ctls cxt5066_bind_capture_vol_others = { |
| 2608 | .ops = &snd_hda_bind_vol, |
| 2609 | .values = { |
| 2610 | HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT), |
| 2611 | HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT), |
| 2612 | 0 |
| 2613 | }, |
| 2614 | }; |
| 2615 | |
| 2616 | static struct hda_bind_ctls cxt5066_bind_capture_sw_others = { |
| 2617 | .ops = &snd_hda_bind_sw, |
| 2618 | .values = { |
| 2619 | HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT), |
| 2620 | HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT), |
| 2621 | 0 |
| 2622 | }, |
| 2623 | }; |
| 2624 | |
| 2625 | static struct snd_kcontrol_new cxt5066_mixer_master[] = { |
| 2626 | HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT), |
| 2627 | {} |
| 2628 | }; |
| 2629 | |
| 2630 | static struct snd_kcontrol_new cxt5066_mixer_master_olpc[] = { |
| 2631 | { |
| 2632 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2633 | .name = "Master Playback Volume", |
| 2634 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | |
| 2635 | SNDRV_CTL_ELEM_ACCESS_TLV_READ | |
| 2636 | SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 2637 | .subdevice = HDA_SUBDEV_AMP_FLAG, |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2638 | .info = snd_hda_mixer_amp_volume_info, |
| 2639 | .get = snd_hda_mixer_amp_volume_get, |
| 2640 | .put = snd_hda_mixer_amp_volume_put, |
| 2641 | .tlv = { .c = snd_hda_mixer_amp_tlv }, |
| 2642 | /* offset by 28 volume steps to limit minimum gain to -46dB */ |
| 2643 | .private_value = |
| 2644 | HDA_COMPOSE_AMP_VAL_OFS(0x10, 3, 0, HDA_OUTPUT, 28), |
| 2645 | }, |
| 2646 | {} |
| 2647 | }; |
| 2648 | |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2649 | static struct snd_kcontrol_new cxt5066_mixer_olpc_dc[] = { |
| 2650 | { |
| 2651 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2652 | .name = "DC Mode Enable Switch", |
| 2653 | .info = snd_ctl_boolean_mono_info, |
| 2654 | .get = cxt5066_olpc_dc_get, |
| 2655 | .put = cxt5066_olpc_dc_put, |
| 2656 | }, |
| 2657 | { |
| 2658 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2659 | .name = "DC Input Bias Enum", |
| 2660 | .info = cxt5066_olpc_dc_bias_enum_info, |
| 2661 | .get = cxt5066_olpc_dc_bias_enum_get, |
| 2662 | .put = cxt5066_olpc_dc_bias_enum_put, |
| 2663 | }, |
| 2664 | {} |
| 2665 | }; |
| 2666 | |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2667 | static struct snd_kcontrol_new cxt5066_mixers[] = { |
| 2668 | { |
| 2669 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2670 | .name = "Master Playback Switch", |
| 2671 | .info = cxt_eapd_info, |
| 2672 | .get = cxt_eapd_get, |
| 2673 | .put = cxt5066_hp_master_sw_put, |
| 2674 | .private_value = 0x1d, |
| 2675 | }, |
| 2676 | |
| 2677 | { |
| 2678 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2679 | .name = "Analog Mic Boost Capture Enum", |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2680 | .info = cxt5066_mic_boost_mux_enum_info, |
| 2681 | .get = cxt5066_mic_boost_mux_enum_get, |
| 2682 | .put = cxt5066_mic_boost_mux_enum_put, |
| 2683 | }, |
| 2684 | |
| 2685 | HDA_BIND_VOL("Capture Volume", &cxt5066_bind_capture_vol_others), |
| 2686 | HDA_BIND_SW("Capture Switch", &cxt5066_bind_capture_sw_others), |
| 2687 | {} |
| 2688 | }; |
| 2689 | |
Einar Rünkaru | 254bba6 | 2009-12-16 22:16:13 +0200 | [diff] [blame] | 2690 | static struct snd_kcontrol_new cxt5066_vostro_mixers[] = { |
| 2691 | { |
| 2692 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2693 | .name = "Int Mic Boost Capture Enum", |
| 2694 | .info = cxt5066_mic_boost_mux_enum_info, |
| 2695 | .get = cxt5066_mic_boost_mux_enum_get, |
| 2696 | .put = cxt5066_mic_boost_mux_enum_put, |
| 2697 | .private_value = 0x23 | 0x100, |
| 2698 | }, |
| 2699 | {} |
| 2700 | }; |
| 2701 | |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2702 | static struct hda_verb cxt5066_init_verbs[] = { |
| 2703 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */ |
| 2704 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */ |
| 2705 | {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */ |
| 2706 | {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */ |
| 2707 | |
| 2708 | /* Speakers */ |
| 2709 | {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 2710 | {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ |
| 2711 | |
| 2712 | /* HP, Amp */ |
| 2713 | {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 2714 | {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ |
| 2715 | |
| 2716 | {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 2717 | {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ |
| 2718 | |
| 2719 | /* DAC1 */ |
| 2720 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 2721 | |
| 2722 | /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */ |
| 2723 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50}, |
| 2724 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 2725 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50}, |
| 2726 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, |
| 2727 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, |
| 2728 | |
| 2729 | /* no digital microphone support yet */ |
| 2730 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2731 | |
| 2732 | /* Audio input selector */ |
| 2733 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3}, |
| 2734 | |
| 2735 | /* SPDIF route: PCM */ |
| 2736 | {0x20, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 2737 | {0x22, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 2738 | |
| 2739 | {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 2740 | {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 2741 | |
| 2742 | /* EAPD */ |
| 2743 | {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ |
| 2744 | |
| 2745 | /* not handling these yet */ |
| 2746 | {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, 0}, |
| 2747 | {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, 0}, |
| 2748 | {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, 0}, |
| 2749 | {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, 0}, |
| 2750 | {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE, 0}, |
| 2751 | {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, 0}, |
| 2752 | {0x20, AC_VERB_SET_UNSOLICITED_ENABLE, 0}, |
| 2753 | {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, 0}, |
| 2754 | { } /* end */ |
| 2755 | }; |
| 2756 | |
| 2757 | static struct hda_verb cxt5066_init_verbs_olpc[] = { |
| 2758 | /* Port A: headphones */ |
| 2759 | {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 2760 | {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ |
| 2761 | |
| 2762 | /* Port B: external microphone */ |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 2763 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2764 | |
| 2765 | /* Port C: internal microphone */ |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 2766 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2767 | |
| 2768 | /* Port D: unused */ |
| 2769 | {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2770 | |
| 2771 | /* Port E: unused, but has primary EAPD */ |
| 2772 | {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2773 | {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ |
| 2774 | |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 2775 | /* Port F: external DC input through microphone port */ |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2776 | {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2777 | |
| 2778 | /* Port G: internal speakers */ |
| 2779 | {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 2780 | {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ |
| 2781 | |
| 2782 | /* DAC1 */ |
| 2783 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 2784 | |
| 2785 | /* DAC2: unused */ |
| 2786 | {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, |
| 2787 | |
| 2788 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50}, |
| 2789 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 2790 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, |
| 2791 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, |
| 2792 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 2793 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 2794 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, |
| 2795 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, |
| 2796 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 2797 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 2798 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, |
| 2799 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, |
| 2800 | |
| 2801 | /* Disable digital microphone port */ |
| 2802 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2803 | |
| 2804 | /* Audio input selectors */ |
| 2805 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3}, |
| 2806 | {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE }, |
| 2807 | |
| 2808 | /* Disable SPDIF */ |
| 2809 | {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2810 | {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2811 | |
| 2812 | /* enable unsolicited events for Port A and B */ |
| 2813 | {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT}, |
| 2814 | {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT}, |
| 2815 | { } /* end */ |
| 2816 | }; |
| 2817 | |
Einar Rünkaru | 95a618b | 2009-11-23 22:23:49 +0200 | [diff] [blame] | 2818 | static struct hda_verb cxt5066_init_verbs_vostro[] = { |
| 2819 | /* Port A: headphones */ |
| 2820 | {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2821 | {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ |
| 2822 | |
| 2823 | /* Port B: external microphone */ |
| 2824 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2825 | |
| 2826 | /* Port C: unused */ |
| 2827 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2828 | |
| 2829 | /* Port D: unused */ |
| 2830 | {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2831 | |
| 2832 | /* Port E: unused, but has primary EAPD */ |
| 2833 | {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2834 | {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ |
| 2835 | |
| 2836 | /* Port F: unused */ |
| 2837 | {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2838 | |
| 2839 | /* Port G: internal speakers */ |
| 2840 | {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 2841 | {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ |
| 2842 | |
| 2843 | /* DAC1 */ |
| 2844 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 2845 | |
| 2846 | /* DAC2: unused */ |
| 2847 | {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, |
| 2848 | |
| 2849 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 2850 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 2851 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, |
| 2852 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, |
| 2853 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 2854 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 2855 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, |
| 2856 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, |
| 2857 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 2858 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 2859 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, |
| 2860 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, |
| 2861 | |
| 2862 | /* Digital microphone port */ |
| 2863 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, |
| 2864 | |
| 2865 | /* Audio input selectors */ |
| 2866 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3}, |
| 2867 | {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE }, |
| 2868 | |
| 2869 | /* Disable SPDIF */ |
| 2870 | {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2871 | {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2872 | |
| 2873 | /* enable unsolicited events for Port A and B */ |
| 2874 | {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT}, |
| 2875 | {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT}, |
| 2876 | { } /* end */ |
| 2877 | }; |
| 2878 | |
Greg Alexander | cfd3d8d | 2010-02-13 02:02:25 -0500 | [diff] [blame] | 2879 | static struct hda_verb cxt5066_init_verbs_ideapad[] = { |
| 2880 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */ |
| 2881 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */ |
| 2882 | {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */ |
| 2883 | {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */ |
| 2884 | |
| 2885 | /* Speakers */ |
| 2886 | {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 2887 | {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ |
| 2888 | |
| 2889 | /* HP, Amp */ |
| 2890 | {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 2891 | {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ |
| 2892 | |
| 2893 | {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 2894 | {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ |
| 2895 | |
| 2896 | /* DAC1 */ |
| 2897 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 2898 | |
| 2899 | /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */ |
| 2900 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50}, |
| 2901 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 2902 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50}, |
| 2903 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, |
| 2904 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, |
| 2905 | {0x14, AC_VERB_SET_CONNECT_SEL, 2}, /* default to internal mic */ |
| 2906 | |
| 2907 | /* Audio input selector */ |
| 2908 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x2}, |
| 2909 | {0x17, AC_VERB_SET_CONNECT_SEL, 1}, /* route ext mic */ |
| 2910 | |
| 2911 | /* SPDIF route: PCM */ |
| 2912 | {0x20, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 2913 | {0x22, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 2914 | |
| 2915 | {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 2916 | {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 2917 | |
| 2918 | /* internal microphone */ |
| 2919 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* enable int mic */ |
| 2920 | |
| 2921 | /* EAPD */ |
| 2922 | {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ |
| 2923 | |
| 2924 | {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT}, |
| 2925 | {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT}, |
| 2926 | { } /* end */ |
| 2927 | }; |
| 2928 | |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 2929 | static struct hda_verb cxt5066_init_verbs_thinkpad[] = { |
| 2930 | {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */ |
| 2931 | {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */ |
| 2932 | |
| 2933 | /* Port G: internal speakers */ |
| 2934 | {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 2935 | {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ |
| 2936 | |
| 2937 | /* Port A: HP, Amp */ |
| 2938 | {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2939 | {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ |
| 2940 | |
| 2941 | /* Port B: Mic Dock */ |
| 2942 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2943 | |
| 2944 | /* Port C: Mic */ |
| 2945 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2946 | |
| 2947 | /* Port D: HP Dock, Amp */ |
| 2948 | {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, |
| 2949 | {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ |
| 2950 | |
| 2951 | /* DAC1 */ |
| 2952 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 2953 | |
| 2954 | /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */ |
| 2955 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50}, |
| 2956 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 2957 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50}, |
| 2958 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, |
| 2959 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, |
| 2960 | {0x14, AC_VERB_SET_CONNECT_SEL, 2}, /* default to internal mic */ |
| 2961 | |
| 2962 | /* Audio input selector */ |
| 2963 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x2}, |
| 2964 | {0x17, AC_VERB_SET_CONNECT_SEL, 1}, /* route ext mic */ |
| 2965 | |
| 2966 | /* SPDIF route: PCM */ |
| 2967 | {0x20, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 2968 | {0x22, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 2969 | |
| 2970 | {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 2971 | {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 2972 | |
| 2973 | /* internal microphone */ |
| 2974 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* enable int mic */ |
| 2975 | |
| 2976 | /* EAPD */ |
| 2977 | {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ |
| 2978 | |
| 2979 | /* enable unsolicited events for Port A, B, C and D */ |
| 2980 | {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT}, |
| 2981 | {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT}, |
| 2982 | {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT}, |
| 2983 | {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT}, |
| 2984 | { } /* end */ |
| 2985 | }; |
| 2986 | |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2987 | static struct hda_verb cxt5066_init_verbs_portd_lo[] = { |
| 2988 | {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 2989 | { } /* end */ |
| 2990 | }; |
| 2991 | |
| 2992 | /* initialize jack-sensing, too */ |
| 2993 | static int cxt5066_init(struct hda_codec *codec) |
| 2994 | { |
Einar Rünkaru | 254bba6 | 2009-12-16 22:16:13 +0200 | [diff] [blame] | 2995 | struct conexant_spec *spec = codec->spec; |
| 2996 | |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 2997 | snd_printdd("CXT5066: init\n"); |
| 2998 | conexant_init(codec); |
| 2999 | if (codec->patch_ops.unsol_event) { |
| 3000 | cxt5066_hp_automute(codec); |
Einar Rünkaru | 254bba6 | 2009-12-16 22:16:13 +0200 | [diff] [blame] | 3001 | if (spec->dell_vostro) |
| 3002 | cxt5066_vostro_automic(codec); |
Greg Alexander | cfd3d8d | 2010-02-13 02:02:25 -0500 | [diff] [blame] | 3003 | else if (spec->ideapad) |
| 3004 | cxt5066_ideapad_automic(codec); |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 3005 | else if (spec->thinkpad) |
| 3006 | cxt5066_thinkpad_automic(codec); |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3007 | } |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 3008 | cxt5066_set_mic_boost(codec); |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3009 | return 0; |
| 3010 | } |
| 3011 | |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 3012 | static int cxt5066_olpc_init(struct hda_codec *codec) |
| 3013 | { |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 3014 | struct conexant_spec *spec = codec->spec; |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 3015 | snd_printdd("CXT5066: init\n"); |
| 3016 | conexant_init(codec); |
| 3017 | cxt5066_hp_automute(codec); |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 3018 | if (!spec->dc_enable) { |
| 3019 | cxt5066_set_mic_boost(codec); |
| 3020 | cxt5066_olpc_automic(codec); |
| 3021 | } else { |
| 3022 | cxt5066_enable_dc(codec); |
| 3023 | } |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 3024 | return 0; |
| 3025 | } |
| 3026 | |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3027 | enum { |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 3028 | CXT5066_LAPTOP, /* Laptops w/ EAPD support */ |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3029 | CXT5066_DELL_LAPTOP, /* Dell Laptop */ |
| 3030 | CXT5066_OLPC_XO_1_5, /* OLPC XO 1.5 */ |
Einar Rünkaru | 95a618b | 2009-11-23 22:23:49 +0200 | [diff] [blame] | 3031 | CXT5066_DELL_VOSTO, /* Dell Vostro 1015i */ |
Greg Alexander | cfd3d8d | 2010-02-13 02:02:25 -0500 | [diff] [blame] | 3032 | CXT5066_IDEAPAD, /* Lenovo IdeaPad U150 */ |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 3033 | CXT5066_THINKPAD, /* Lenovo ThinkPad T410s, others? */ |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3034 | CXT5066_MODELS |
| 3035 | }; |
| 3036 | |
| 3037 | static const char *cxt5066_models[CXT5066_MODELS] = { |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 3038 | [CXT5066_LAPTOP] = "laptop", |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3039 | [CXT5066_DELL_LAPTOP] = "dell-laptop", |
| 3040 | [CXT5066_OLPC_XO_1_5] = "olpc-xo-1_5", |
Greg Alexander | cfd3d8d | 2010-02-13 02:02:25 -0500 | [diff] [blame] | 3041 | [CXT5066_DELL_VOSTO] = "dell-vostro", |
| 3042 | [CXT5066_IDEAPAD] = "ideapad", |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 3043 | [CXT5066_THINKPAD] = "thinkpad", |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3044 | }; |
| 3045 | |
| 3046 | static struct snd_pci_quirk cxt5066_cfg_tbl[] = { |
| 3047 | SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board", |
| 3048 | CXT5066_LAPTOP), |
| 3049 | SND_PCI_QUIRK(0x1028, 0x02f5, "Dell", |
| 3050 | CXT5066_DELL_LAPTOP), |
Daniel Drake | 798a8a1 | 2009-11-04 10:11:07 +0000 | [diff] [blame] | 3051 | SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT5066_OLPC_XO_1_5), |
Einar Rünkaru | 95a618b | 2009-11-23 22:23:49 +0200 | [diff] [blame] | 3052 | SND_PCI_QUIRK(0x1028, 0x0402, "Dell Vostro", CXT5066_DELL_VOSTO), |
Anisse Astier | 231f50b | 2010-04-28 18:05:06 +0200 | [diff] [blame] | 3053 | SND_PCI_QUIRK(0x1028, 0x0408, "Dell Inspiron One 19T", CXT5066_IDEAPAD), |
Daniel T Chen | c536668 | 2010-05-04 22:07:58 -0400 | [diff] [blame] | 3054 | SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba Satellite P500-PSPGSC-01800T", CXT5066_OLPC_XO_1_5), |
Daniel T Chen | 4442dd4 | 2010-05-03 20:39:31 -0400 | [diff] [blame] | 3055 | SND_PCI_QUIRK(0x1179, 0xffe0, "Toshiba Satellite Pro T130-15F", CXT5066_OLPC_XO_1_5), |
Andrej Gelenberg | 0217f14 | 2010-05-09 22:10:41 +0200 | [diff] [blame] | 3056 | SND_PCI_QUIRK(0x17aa, 0x21b2, "Thinkpad X100e", CXT5066_IDEAPAD), |
Andreas Herrmann | badf18b | 2010-05-28 09:57:12 +0200 | [diff] [blame] | 3057 | SND_PCI_QUIRK(0x17aa, 0x21b3, "Thinkpad Edge 13 (197)", CXT5066_IDEAPAD), |
Jerone Young | a39e33e | 2010-05-26 10:06:01 -0500 | [diff] [blame] | 3058 | SND_PCI_QUIRK(0x17aa, 0x21b4, "Thinkpad Edge", CXT5066_IDEAPAD), |
Jerone Young | ab85457 | 2010-07-19 08:30:58 -0500 | [diff] [blame] | 3059 | SND_PCI_QUIRK(0x17aa, 0x215e, "Lenovo Thinkpad", CXT5066_THINKPAD), |
| 3060 | SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo G series", CXT5066_IDEAPAD), |
| 3061 | SND_PCI_QUIRK(0x17aa, 0x3938, "Lenovo G series (AMD)", CXT5066_IDEAPAD), |
Greg Alexander | cfd3d8d | 2010-02-13 02:02:25 -0500 | [diff] [blame] | 3062 | SND_PCI_QUIRK(0x17aa, 0x3a0d, "ideapad", CXT5066_IDEAPAD), |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3063 | {} |
| 3064 | }; |
| 3065 | |
| 3066 | static int patch_cxt5066(struct hda_codec *codec) |
| 3067 | { |
| 3068 | struct conexant_spec *spec; |
| 3069 | int board_config; |
| 3070 | |
| 3071 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 3072 | if (!spec) |
| 3073 | return -ENOMEM; |
| 3074 | codec->spec = spec; |
| 3075 | |
| 3076 | codec->patch_ops = conexant_patch_ops; |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 3077 | codec->patch_ops.init = conexant_init; |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3078 | |
| 3079 | spec->dell_automute = 0; |
| 3080 | spec->multiout.max_channels = 2; |
| 3081 | spec->multiout.num_dacs = ARRAY_SIZE(cxt5066_dac_nids); |
| 3082 | spec->multiout.dac_nids = cxt5066_dac_nids; |
| 3083 | spec->multiout.dig_out_nid = CXT5066_SPDIF_OUT; |
| 3084 | spec->num_adc_nids = 1; |
| 3085 | spec->adc_nids = cxt5066_adc_nids; |
| 3086 | spec->capsrc_nids = cxt5066_capsrc_nids; |
| 3087 | spec->input_mux = &cxt5066_capture_source; |
| 3088 | |
| 3089 | spec->port_d_mode = PIN_HP; |
| 3090 | |
| 3091 | spec->num_init_verbs = 1; |
| 3092 | spec->init_verbs[0] = cxt5066_init_verbs; |
| 3093 | spec->num_channel_mode = ARRAY_SIZE(cxt5066_modes); |
| 3094 | spec->channel_mode = cxt5066_modes; |
| 3095 | spec->cur_adc = 0; |
| 3096 | spec->cur_adc_idx = 0; |
| 3097 | |
Takashi Iwai | 3507e2a | 2010-07-08 18:39:00 +0200 | [diff] [blame] | 3098 | set_beep_amp(spec, 0x13, 0, HDA_OUTPUT); |
| 3099 | |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3100 | board_config = snd_hda_check_board_config(codec, CXT5066_MODELS, |
| 3101 | cxt5066_models, cxt5066_cfg_tbl); |
| 3102 | switch (board_config) { |
| 3103 | default: |
| 3104 | case CXT5066_LAPTOP: |
| 3105 | spec->mixers[spec->num_mixers++] = cxt5066_mixer_master; |
| 3106 | spec->mixers[spec->num_mixers++] = cxt5066_mixers; |
| 3107 | break; |
| 3108 | case CXT5066_DELL_LAPTOP: |
| 3109 | spec->mixers[spec->num_mixers++] = cxt5066_mixer_master; |
| 3110 | spec->mixers[spec->num_mixers++] = cxt5066_mixers; |
| 3111 | |
| 3112 | spec->port_d_mode = PIN_OUT; |
| 3113 | spec->init_verbs[spec->num_init_verbs] = cxt5066_init_verbs_portd_lo; |
| 3114 | spec->num_init_verbs++; |
| 3115 | spec->dell_automute = 1; |
| 3116 | break; |
| 3117 | case CXT5066_OLPC_XO_1_5: |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 3118 | codec->patch_ops.init = cxt5066_olpc_init; |
| 3119 | codec->patch_ops.unsol_event = cxt5066_olpc_unsol_event; |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3120 | spec->init_verbs[0] = cxt5066_init_verbs_olpc; |
| 3121 | spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc; |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 3122 | spec->mixers[spec->num_mixers++] = cxt5066_mixer_olpc_dc; |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3123 | spec->mixers[spec->num_mixers++] = cxt5066_mixers; |
| 3124 | spec->port_d_mode = 0; |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 3125 | spec->mic_boost = 3; /* default 30dB gain */ |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3126 | |
| 3127 | /* no S/PDIF out */ |
| 3128 | spec->multiout.dig_out_nid = 0; |
| 3129 | |
| 3130 | /* input source automatically selected */ |
| 3131 | spec->input_mux = NULL; |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 3132 | |
| 3133 | /* our capture hooks which allow us to turn on the microphone LED |
| 3134 | * at the right time */ |
| 3135 | spec->capture_prepare = cxt5066_olpc_capture_prepare; |
| 3136 | spec->capture_cleanup = cxt5066_olpc_capture_cleanup; |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3137 | break; |
Einar Rünkaru | 95a618b | 2009-11-23 22:23:49 +0200 | [diff] [blame] | 3138 | case CXT5066_DELL_VOSTO: |
Daniel Drake | 75f8991 | 2010-01-07 13:46:25 +0100 | [diff] [blame] | 3139 | codec->patch_ops.init = cxt5066_init; |
Einar Rünkaru | 95a618b | 2009-11-23 22:23:49 +0200 | [diff] [blame] | 3140 | codec->patch_ops.unsol_event = cxt5066_vostro_event; |
| 3141 | spec->init_verbs[0] = cxt5066_init_verbs_vostro; |
| 3142 | spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc; |
| 3143 | spec->mixers[spec->num_mixers++] = cxt5066_mixers; |
Einar Rünkaru | 254bba6 | 2009-12-16 22:16:13 +0200 | [diff] [blame] | 3144 | spec->mixers[spec->num_mixers++] = cxt5066_vostro_mixers; |
Einar Rünkaru | 95a618b | 2009-11-23 22:23:49 +0200 | [diff] [blame] | 3145 | spec->port_d_mode = 0; |
Einar Rünkaru | 254bba6 | 2009-12-16 22:16:13 +0200 | [diff] [blame] | 3146 | spec->dell_vostro = 1; |
Daniel Drake | c4cfe66 | 2010-01-07 13:47:04 +0100 | [diff] [blame] | 3147 | spec->mic_boost = 3; /* default 30dB gain */ |
Einar Rünkaru | 95a618b | 2009-11-23 22:23:49 +0200 | [diff] [blame] | 3148 | |
| 3149 | /* no S/PDIF out */ |
| 3150 | spec->multiout.dig_out_nid = 0; |
| 3151 | |
| 3152 | /* input source automatically selected */ |
| 3153 | spec->input_mux = NULL; |
| 3154 | break; |
Greg Alexander | cfd3d8d | 2010-02-13 02:02:25 -0500 | [diff] [blame] | 3155 | case CXT5066_IDEAPAD: |
| 3156 | codec->patch_ops.init = cxt5066_init; |
| 3157 | codec->patch_ops.unsol_event = cxt5066_ideapad_event; |
| 3158 | spec->mixers[spec->num_mixers++] = cxt5066_mixer_master; |
| 3159 | spec->mixers[spec->num_mixers++] = cxt5066_mixers; |
| 3160 | spec->init_verbs[0] = cxt5066_init_verbs_ideapad; |
| 3161 | spec->port_d_mode = 0; |
| 3162 | spec->ideapad = 1; |
| 3163 | spec->mic_boost = 2; /* default 20dB gain */ |
| 3164 | |
| 3165 | /* no S/PDIF out */ |
| 3166 | spec->multiout.dig_out_nid = 0; |
| 3167 | |
| 3168 | /* input source automatically selected */ |
| 3169 | spec->input_mux = NULL; |
| 3170 | break; |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 3171 | case CXT5066_THINKPAD: |
| 3172 | codec->patch_ops.init = cxt5066_init; |
| 3173 | codec->patch_ops.unsol_event = cxt5066_thinkpad_event; |
| 3174 | spec->mixers[spec->num_mixers++] = cxt5066_mixer_master; |
| 3175 | spec->mixers[spec->num_mixers++] = cxt5066_mixers; |
| 3176 | spec->init_verbs[0] = cxt5066_init_verbs_thinkpad; |
| 3177 | spec->thinkpad = 1; |
| 3178 | spec->port_d_mode = PIN_OUT; |
| 3179 | spec->mic_boost = 2; /* default 20dB gain */ |
| 3180 | |
| 3181 | /* no S/PDIF out */ |
| 3182 | spec->multiout.dig_out_nid = 0; |
| 3183 | |
| 3184 | /* input source automatically selected */ |
| 3185 | spec->input_mux = NULL; |
| 3186 | break; |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3187 | } |
| 3188 | |
Takashi Iwai | 3507e2a | 2010-07-08 18:39:00 +0200 | [diff] [blame] | 3189 | if (spec->beep_amp) |
| 3190 | snd_hda_attach_beep_device(codec, spec->beep_amp); |
| 3191 | |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3192 | return 0; |
| 3193 | } |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 3194 | |
| 3195 | /* |
| 3196 | */ |
| 3197 | |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 3198 | static struct hda_codec_preset snd_hda_preset_conexant[] = { |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 3199 | { .id = 0x14f15045, .name = "CX20549 (Venice)", |
| 3200 | .patch = patch_cxt5045 }, |
| 3201 | { .id = 0x14f15047, .name = "CX20551 (Waikiki)", |
| 3202 | .patch = patch_cxt5047 }, |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 3203 | { .id = 0x14f15051, .name = "CX20561 (Hermosa)", |
| 3204 | .patch = patch_cxt5051 }, |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3205 | { .id = 0x14f15066, .name = "CX20582 (Pebble)", |
| 3206 | .patch = patch_cxt5066 }, |
Einar Rünkaru | 95a618b | 2009-11-23 22:23:49 +0200 | [diff] [blame] | 3207 | { .id = 0x14f15067, .name = "CX20583 (Pebble HSF)", |
| 3208 | .patch = patch_cxt5066 }, |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 3209 | { .id = 0x14f15069, .name = "CX20585", |
| 3210 | .patch = patch_cxt5066 }, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 3211 | {} /* terminator */ |
| 3212 | }; |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 3213 | |
| 3214 | MODULE_ALIAS("snd-hda-codec-id:14f15045"); |
| 3215 | MODULE_ALIAS("snd-hda-codec-id:14f15047"); |
| 3216 | MODULE_ALIAS("snd-hda-codec-id:14f15051"); |
Daniel Drake | 0fb67e9 | 2009-07-16 14:46:57 +0100 | [diff] [blame] | 3217 | MODULE_ALIAS("snd-hda-codec-id:14f15066"); |
Einar Rünkaru | 95a618b | 2009-11-23 22:23:49 +0200 | [diff] [blame] | 3218 | MODULE_ALIAS("snd-hda-codec-id:14f15067"); |
Jens Taprogge | 7b2bfdb | 2010-04-14 23:42:04 +0200 | [diff] [blame] | 3219 | MODULE_ALIAS("snd-hda-codec-id:14f15069"); |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 3220 | |
| 3221 | MODULE_LICENSE("GPL"); |
| 3222 | MODULE_DESCRIPTION("Conexant HD-audio codec"); |
| 3223 | |
| 3224 | static struct hda_codec_preset_list conexant_list = { |
| 3225 | .preset = snd_hda_preset_conexant, |
| 3226 | .owner = THIS_MODULE, |
| 3227 | }; |
| 3228 | |
| 3229 | static int __init patch_conexant_init(void) |
| 3230 | { |
| 3231 | return snd_hda_add_codec_preset(&conexant_list); |
| 3232 | } |
| 3233 | |
| 3234 | static void __exit patch_conexant_exit(void) |
| 3235 | { |
| 3236 | snd_hda_delete_codec_preset(&conexant_list); |
| 3237 | } |
| 3238 | |
| 3239 | module_init(patch_conexant_init) |
| 3240 | module_exit(patch_conexant_exit) |