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" |
| 32 | |
| 33 | #define CXT_PIN_DIR_IN 0x00 |
| 34 | #define CXT_PIN_DIR_OUT 0x01 |
| 35 | #define CXT_PIN_DIR_INOUT 0x02 |
| 36 | #define CXT_PIN_DIR_IN_NOMICBIAS 0x03 |
| 37 | #define CXT_PIN_DIR_INOUT_NOMICBIAS 0x04 |
| 38 | |
| 39 | #define CONEXANT_HP_EVENT 0x37 |
| 40 | #define CONEXANT_MIC_EVENT 0x38 |
| 41 | |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 42 | /* Conexant 5051 specific */ |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 43 | |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 44 | #define CXT5051_SPDIF_OUT 0x1C |
| 45 | #define CXT5051_PORTB_EVENT 0x38 |
| 46 | #define CXT5051_PORTC_EVENT 0x39 |
| 47 | |
| 48 | |
| 49 | struct conexant_jack { |
| 50 | |
| 51 | hda_nid_t nid; |
| 52 | int type; |
| 53 | struct snd_jack *jack; |
| 54 | |
| 55 | }; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 56 | |
| 57 | struct conexant_spec { |
| 58 | |
| 59 | struct snd_kcontrol_new *mixers[5]; |
| 60 | int num_mixers; |
Takashi Iwai | dd5746a | 2009-03-10 14:30:40 +0100 | [diff] [blame] | 61 | hda_nid_t vmaster_nid; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 62 | |
| 63 | const struct hda_verb *init_verbs[5]; /* initialization verbs |
| 64 | * don't forget NULL |
| 65 | * termination! |
| 66 | */ |
| 67 | unsigned int num_init_verbs; |
| 68 | |
| 69 | /* playback */ |
| 70 | struct hda_multi_out multiout; /* playback set-up |
| 71 | * max_channels, dacs must be set |
| 72 | * dig_out_nid and hp_nid are optional |
| 73 | */ |
| 74 | unsigned int cur_eapd; |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 75 | unsigned int hp_present; |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 76 | unsigned int no_auto_mic; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 77 | unsigned int need_dac_fix; |
| 78 | |
| 79 | /* capture */ |
| 80 | unsigned int num_adc_nids; |
| 81 | hda_nid_t *adc_nids; |
| 82 | hda_nid_t dig_in_nid; /* digital-in NID; optional */ |
| 83 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 84 | unsigned int cur_adc_idx; |
| 85 | hda_nid_t cur_adc; |
| 86 | unsigned int cur_adc_stream_tag; |
| 87 | unsigned int cur_adc_format; |
| 88 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 89 | /* capture source */ |
| 90 | const struct hda_input_mux *input_mux; |
| 91 | hda_nid_t *capsrc_nids; |
| 92 | unsigned int cur_mux[3]; |
| 93 | |
| 94 | /* channel model */ |
| 95 | const struct hda_channel_mode *channel_mode; |
| 96 | int num_channel_mode; |
| 97 | |
| 98 | /* PCM information */ |
| 99 | struct hda_pcm pcm_rec[2]; /* used in build_pcms() */ |
| 100 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 101 | unsigned int spdif_route; |
| 102 | |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 103 | /* jack detection */ |
| 104 | struct snd_array jacks; |
| 105 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 106 | /* dynamic controls, init_verbs and input_mux */ |
| 107 | struct auto_pin_cfg autocfg; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 108 | struct hda_input_mux private_imux; |
Takashi Iwai | 41923e4 | 2007-10-22 17:20:10 +0200 | [diff] [blame] | 109 | hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS]; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 110 | |
| 111 | }; |
| 112 | |
| 113 | static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo, |
| 114 | struct hda_codec *codec, |
| 115 | struct snd_pcm_substream *substream) |
| 116 | { |
| 117 | struct conexant_spec *spec = codec->spec; |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 118 | return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream, |
| 119 | hinfo); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 123 | struct hda_codec *codec, |
| 124 | unsigned int stream_tag, |
| 125 | unsigned int format, |
| 126 | struct snd_pcm_substream *substream) |
| 127 | { |
| 128 | struct conexant_spec *spec = codec->spec; |
| 129 | return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, |
| 130 | stream_tag, |
| 131 | format, substream); |
| 132 | } |
| 133 | |
| 134 | static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo, |
| 135 | struct hda_codec *codec, |
| 136 | struct snd_pcm_substream *substream) |
| 137 | { |
| 138 | struct conexant_spec *spec = codec->spec; |
| 139 | return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout); |
| 140 | } |
| 141 | |
| 142 | /* |
| 143 | * Digital out |
| 144 | */ |
| 145 | static int conexant_dig_playback_pcm_open(struct hda_pcm_stream *hinfo, |
| 146 | struct hda_codec *codec, |
| 147 | struct snd_pcm_substream *substream) |
| 148 | { |
| 149 | struct conexant_spec *spec = codec->spec; |
| 150 | return snd_hda_multi_out_dig_open(codec, &spec->multiout); |
| 151 | } |
| 152 | |
| 153 | static int conexant_dig_playback_pcm_close(struct hda_pcm_stream *hinfo, |
| 154 | struct hda_codec *codec, |
| 155 | struct snd_pcm_substream *substream) |
| 156 | { |
| 157 | struct conexant_spec *spec = codec->spec; |
| 158 | return snd_hda_multi_out_dig_close(codec, &spec->multiout); |
| 159 | } |
| 160 | |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 161 | static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 162 | struct hda_codec *codec, |
| 163 | unsigned int stream_tag, |
| 164 | unsigned int format, |
| 165 | struct snd_pcm_substream *substream) |
| 166 | { |
| 167 | struct conexant_spec *spec = codec->spec; |
| 168 | return snd_hda_multi_out_dig_prepare(codec, &spec->multiout, |
| 169 | stream_tag, |
| 170 | format, substream); |
| 171 | } |
| 172 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 173 | /* |
| 174 | * Analog capture |
| 175 | */ |
| 176 | static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 177 | struct hda_codec *codec, |
| 178 | unsigned int stream_tag, |
| 179 | unsigned int format, |
| 180 | struct snd_pcm_substream *substream) |
| 181 | { |
| 182 | struct conexant_spec *spec = codec->spec; |
| 183 | snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number], |
| 184 | stream_tag, 0, format); |
| 185 | return 0; |
| 186 | } |
| 187 | |
| 188 | static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo, |
| 189 | struct hda_codec *codec, |
| 190 | struct snd_pcm_substream *substream) |
| 191 | { |
| 192 | struct conexant_spec *spec = codec->spec; |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 193 | snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 194 | return 0; |
| 195 | } |
| 196 | |
| 197 | |
| 198 | |
| 199 | static struct hda_pcm_stream conexant_pcm_analog_playback = { |
| 200 | .substreams = 1, |
| 201 | .channels_min = 2, |
| 202 | .channels_max = 2, |
| 203 | .nid = 0, /* fill later */ |
| 204 | .ops = { |
| 205 | .open = conexant_playback_pcm_open, |
| 206 | .prepare = conexant_playback_pcm_prepare, |
| 207 | .cleanup = conexant_playback_pcm_cleanup |
| 208 | }, |
| 209 | }; |
| 210 | |
| 211 | static struct hda_pcm_stream conexant_pcm_analog_capture = { |
| 212 | .substreams = 1, |
| 213 | .channels_min = 2, |
| 214 | .channels_max = 2, |
| 215 | .nid = 0, /* fill later */ |
| 216 | .ops = { |
| 217 | .prepare = conexant_capture_pcm_prepare, |
| 218 | .cleanup = conexant_capture_pcm_cleanup |
| 219 | }, |
| 220 | }; |
| 221 | |
| 222 | |
| 223 | static struct hda_pcm_stream conexant_pcm_digital_playback = { |
| 224 | .substreams = 1, |
| 225 | .channels_min = 2, |
| 226 | .channels_max = 2, |
| 227 | .nid = 0, /* fill later */ |
| 228 | .ops = { |
| 229 | .open = conexant_dig_playback_pcm_open, |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 230 | .close = conexant_dig_playback_pcm_close, |
| 231 | .prepare = conexant_dig_playback_pcm_prepare |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 232 | }, |
| 233 | }; |
| 234 | |
| 235 | static struct hda_pcm_stream conexant_pcm_digital_capture = { |
| 236 | .substreams = 1, |
| 237 | .channels_min = 2, |
| 238 | .channels_max = 2, |
| 239 | /* NID is set in alc_build_pcms */ |
| 240 | }; |
| 241 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 242 | static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 243 | struct hda_codec *codec, |
| 244 | unsigned int stream_tag, |
| 245 | unsigned int format, |
| 246 | struct snd_pcm_substream *substream) |
| 247 | { |
| 248 | struct conexant_spec *spec = codec->spec; |
| 249 | spec->cur_adc = spec->adc_nids[spec->cur_adc_idx]; |
| 250 | spec->cur_adc_stream_tag = stream_tag; |
| 251 | spec->cur_adc_format = format; |
| 252 | snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format); |
| 253 | return 0; |
| 254 | } |
| 255 | |
| 256 | static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo, |
| 257 | struct hda_codec *codec, |
| 258 | struct snd_pcm_substream *substream) |
| 259 | { |
| 260 | struct conexant_spec *spec = codec->spec; |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 261 | snd_hda_codec_cleanup_stream(codec, spec->cur_adc); |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 262 | spec->cur_adc = 0; |
| 263 | return 0; |
| 264 | } |
| 265 | |
| 266 | static struct hda_pcm_stream cx5051_pcm_analog_capture = { |
| 267 | .substreams = 1, |
| 268 | .channels_min = 2, |
| 269 | .channels_max = 2, |
| 270 | .nid = 0, /* fill later */ |
| 271 | .ops = { |
| 272 | .prepare = cx5051_capture_pcm_prepare, |
| 273 | .cleanup = cx5051_capture_pcm_cleanup |
| 274 | }, |
| 275 | }; |
| 276 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 277 | static int conexant_build_pcms(struct hda_codec *codec) |
| 278 | { |
| 279 | struct conexant_spec *spec = codec->spec; |
| 280 | struct hda_pcm *info = spec->pcm_rec; |
| 281 | |
| 282 | codec->num_pcms = 1; |
| 283 | codec->pcm_info = info; |
| 284 | |
| 285 | info->name = "CONEXANT Analog"; |
| 286 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = conexant_pcm_analog_playback; |
| 287 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = |
| 288 | spec->multiout.max_channels; |
| 289 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = |
| 290 | spec->multiout.dac_nids[0]; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 291 | if (codec->vendor_id == 0x14f15051) |
| 292 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = |
| 293 | cx5051_pcm_analog_capture; |
| 294 | else |
| 295 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = |
| 296 | conexant_pcm_analog_capture; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 297 | info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids; |
| 298 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0]; |
| 299 | |
| 300 | if (spec->multiout.dig_out_nid) { |
| 301 | info++; |
| 302 | codec->num_pcms++; |
| 303 | info->name = "Conexant Digital"; |
Takashi Iwai | 7ba72ba | 2008-02-06 14:03:20 +0100 | [diff] [blame] | 304 | info->pcm_type = HDA_PCM_TYPE_SPDIF; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 305 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = |
| 306 | conexant_pcm_digital_playback; |
| 307 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = |
| 308 | spec->multiout.dig_out_nid; |
| 309 | if (spec->dig_in_nid) { |
| 310 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = |
| 311 | conexant_pcm_digital_capture; |
| 312 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = |
| 313 | spec->dig_in_nid; |
| 314 | } |
| 315 | } |
| 316 | |
| 317 | return 0; |
| 318 | } |
| 319 | |
| 320 | static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol, |
| 321 | struct snd_ctl_elem_info *uinfo) |
| 322 | { |
| 323 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 324 | struct conexant_spec *spec = codec->spec; |
| 325 | |
| 326 | return snd_hda_input_mux_info(spec->input_mux, uinfo); |
| 327 | } |
| 328 | |
| 329 | static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol, |
| 330 | struct snd_ctl_elem_value *ucontrol) |
| 331 | { |
| 332 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 333 | struct conexant_spec *spec = codec->spec; |
| 334 | unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
| 335 | |
| 336 | ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx]; |
| 337 | return 0; |
| 338 | } |
| 339 | |
| 340 | static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol, |
| 341 | struct snd_ctl_elem_value *ucontrol) |
| 342 | { |
| 343 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 344 | struct conexant_spec *spec = codec->spec; |
| 345 | unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
| 346 | |
| 347 | return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol, |
| 348 | spec->capsrc_nids[adc_idx], |
| 349 | &spec->cur_mux[adc_idx]); |
| 350 | } |
| 351 | |
Takashi Iwai | 5801f99 | 2009-01-27 12:53:22 +0100 | [diff] [blame] | 352 | #ifdef CONFIG_SND_JACK |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 353 | static int conexant_add_jack(struct hda_codec *codec, |
| 354 | hda_nid_t nid, int type) |
| 355 | { |
| 356 | struct conexant_spec *spec; |
| 357 | struct conexant_jack *jack; |
| 358 | const char *name; |
| 359 | |
| 360 | spec = codec->spec; |
| 361 | snd_array_init(&spec->jacks, sizeof(*jack), 32); |
| 362 | jack = snd_array_new(&spec->jacks); |
| 363 | name = (type == SND_JACK_HEADPHONE) ? "Headphone" : "Mic" ; |
| 364 | |
| 365 | if (!jack) |
| 366 | return -ENOMEM; |
| 367 | |
| 368 | jack->nid = nid; |
| 369 | jack->type = type; |
| 370 | |
| 371 | return snd_jack_new(codec->bus->card, name, type, &jack->jack); |
| 372 | } |
| 373 | |
| 374 | static void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid) |
| 375 | { |
| 376 | struct conexant_spec *spec = codec->spec; |
| 377 | struct conexant_jack *jacks = spec->jacks.list; |
| 378 | |
| 379 | if (jacks) { |
| 380 | int i; |
| 381 | for (i = 0; i < spec->jacks.used; i++) { |
| 382 | if (jacks->nid == nid) { |
| 383 | unsigned int present; |
| 384 | present = snd_hda_codec_read(codec, nid, 0, |
| 385 | AC_VERB_GET_PIN_SENSE, 0) & |
| 386 | AC_PINSENSE_PRESENCE; |
| 387 | |
| 388 | present = (present) ? jacks->type : 0 ; |
| 389 | |
| 390 | snd_jack_report(jacks->jack, |
| 391 | present); |
| 392 | } |
| 393 | jacks++; |
| 394 | } |
| 395 | } |
| 396 | } |
| 397 | |
| 398 | static int conexant_init_jacks(struct hda_codec *codec) |
| 399 | { |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 400 | struct conexant_spec *spec = codec->spec; |
| 401 | int i; |
| 402 | |
| 403 | for (i = 0; i < spec->num_init_verbs; i++) { |
| 404 | const struct hda_verb *hv; |
| 405 | |
| 406 | hv = spec->init_verbs[i]; |
| 407 | while (hv->nid) { |
| 408 | int err = 0; |
| 409 | switch (hv->param ^ AC_USRSP_EN) { |
| 410 | case CONEXANT_HP_EVENT: |
| 411 | err = conexant_add_jack(codec, hv->nid, |
| 412 | SND_JACK_HEADPHONE); |
| 413 | conexant_report_jack(codec, hv->nid); |
| 414 | break; |
| 415 | case CXT5051_PORTC_EVENT: |
| 416 | case CONEXANT_MIC_EVENT: |
| 417 | err = conexant_add_jack(codec, hv->nid, |
| 418 | SND_JACK_MICROPHONE); |
| 419 | conexant_report_jack(codec, hv->nid); |
| 420 | break; |
| 421 | } |
| 422 | if (err < 0) |
| 423 | return err; |
| 424 | ++hv; |
| 425 | } |
| 426 | } |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 427 | return 0; |
| 428 | |
| 429 | } |
Takashi Iwai | 5801f99 | 2009-01-27 12:53:22 +0100 | [diff] [blame] | 430 | #else |
| 431 | static inline void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid) |
| 432 | { |
| 433 | } |
| 434 | |
| 435 | static inline int conexant_init_jacks(struct hda_codec *codec) |
| 436 | { |
| 437 | return 0; |
| 438 | } |
| 439 | #endif |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 440 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 441 | static int conexant_init(struct hda_codec *codec) |
| 442 | { |
| 443 | struct conexant_spec *spec = codec->spec; |
| 444 | int i; |
| 445 | |
| 446 | for (i = 0; i < spec->num_init_verbs; i++) |
| 447 | snd_hda_sequence_write(codec, spec->init_verbs[i]); |
| 448 | return 0; |
| 449 | } |
| 450 | |
| 451 | static void conexant_free(struct hda_codec *codec) |
| 452 | { |
Ulrich Dangel | bc7a166 | 2009-01-02 19:30:13 +0100 | [diff] [blame] | 453 | #ifdef CONFIG_SND_JACK |
| 454 | struct conexant_spec *spec = codec->spec; |
| 455 | if (spec->jacks.list) { |
| 456 | struct conexant_jack *jacks = spec->jacks.list; |
| 457 | int i; |
| 458 | for (i = 0; i < spec->jacks.used; i++) |
| 459 | snd_device_free(codec->bus->card, &jacks[i].jack); |
| 460 | snd_array_free(&spec->jacks); |
| 461 | } |
| 462 | #endif |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 463 | kfree(codec->spec); |
| 464 | } |
| 465 | |
Takashi Iwai | b880c74 | 2009-03-10 14:41:05 +0100 | [diff] [blame] | 466 | static struct snd_kcontrol_new cxt_capture_mixers[] = { |
| 467 | { |
| 468 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 469 | .name = "Capture Source", |
| 470 | .info = conexant_mux_enum_info, |
| 471 | .get = conexant_mux_enum_get, |
| 472 | .put = conexant_mux_enum_put |
| 473 | }, |
| 474 | {} |
| 475 | }; |
| 476 | |
Takashi Iwai | dd5746a | 2009-03-10 14:30:40 +0100 | [diff] [blame] | 477 | static const char *slave_vols[] = { |
| 478 | "Headphone Playback Volume", |
| 479 | "Speaker Playback Volume", |
| 480 | NULL |
| 481 | }; |
| 482 | |
| 483 | static const char *slave_sws[] = { |
| 484 | "Headphone Playback Switch", |
| 485 | "Speaker Playback Switch", |
| 486 | NULL |
| 487 | }; |
| 488 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 489 | static int conexant_build_controls(struct hda_codec *codec) |
| 490 | { |
| 491 | struct conexant_spec *spec = codec->spec; |
| 492 | unsigned int i; |
| 493 | int err; |
| 494 | |
| 495 | for (i = 0; i < spec->num_mixers; i++) { |
| 496 | err = snd_hda_add_new_ctls(codec, spec->mixers[i]); |
| 497 | if (err < 0) |
| 498 | return err; |
| 499 | } |
| 500 | if (spec->multiout.dig_out_nid) { |
| 501 | err = snd_hda_create_spdif_out_ctls(codec, |
| 502 | spec->multiout.dig_out_nid); |
| 503 | if (err < 0) |
| 504 | return err; |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 505 | err = snd_hda_create_spdif_share_sw(codec, |
| 506 | &spec->multiout); |
| 507 | if (err < 0) |
| 508 | return err; |
| 509 | spec->multiout.share_spdif = 1; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 510 | } |
| 511 | if (spec->dig_in_nid) { |
| 512 | err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid); |
| 513 | if (err < 0) |
| 514 | return err; |
| 515 | } |
Takashi Iwai | dd5746a | 2009-03-10 14:30:40 +0100 | [diff] [blame] | 516 | |
| 517 | /* if we have no master control, let's create it */ |
| 518 | if (spec->vmaster_nid && |
| 519 | !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) { |
| 520 | unsigned int vmaster_tlv[4]; |
| 521 | snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid, |
| 522 | HDA_OUTPUT, vmaster_tlv); |
| 523 | err = snd_hda_add_vmaster(codec, "Master Playback Volume", |
| 524 | vmaster_tlv, slave_vols); |
| 525 | if (err < 0) |
| 526 | return err; |
| 527 | } |
| 528 | if (spec->vmaster_nid && |
| 529 | !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) { |
| 530 | err = snd_hda_add_vmaster(codec, "Master Playback Switch", |
| 531 | NULL, slave_sws); |
| 532 | if (err < 0) |
| 533 | return err; |
| 534 | } |
| 535 | |
Takashi Iwai | b880c74 | 2009-03-10 14:41:05 +0100 | [diff] [blame] | 536 | if (spec->input_mux) { |
| 537 | err = snd_hda_add_new_ctls(codec, cxt_capture_mixers); |
| 538 | if (err < 0) |
| 539 | return err; |
| 540 | } |
| 541 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 542 | return 0; |
| 543 | } |
| 544 | |
| 545 | static struct hda_codec_ops conexant_patch_ops = { |
| 546 | .build_controls = conexant_build_controls, |
| 547 | .build_pcms = conexant_build_pcms, |
| 548 | .init = conexant_init, |
| 549 | .free = conexant_free, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 550 | }; |
| 551 | |
| 552 | /* |
| 553 | * EAPD control |
| 554 | * the private value = nid | (invert << 8) |
| 555 | */ |
| 556 | |
Takashi Iwai | a5ce889 | 2007-07-23 15:42:26 +0200 | [diff] [blame] | 557 | #define cxt_eapd_info snd_ctl_boolean_mono_info |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 558 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 559 | static int cxt_eapd_get(struct snd_kcontrol *kcontrol, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 560 | struct snd_ctl_elem_value *ucontrol) |
| 561 | { |
| 562 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 563 | struct conexant_spec *spec = codec->spec; |
| 564 | int invert = (kcontrol->private_value >> 8) & 1; |
| 565 | if (invert) |
| 566 | ucontrol->value.integer.value[0] = !spec->cur_eapd; |
| 567 | else |
| 568 | ucontrol->value.integer.value[0] = spec->cur_eapd; |
| 569 | return 0; |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 570 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 571 | } |
| 572 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 573 | static int cxt_eapd_put(struct snd_kcontrol *kcontrol, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 574 | struct snd_ctl_elem_value *ucontrol) |
| 575 | { |
| 576 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 577 | struct conexant_spec *spec = codec->spec; |
| 578 | int invert = (kcontrol->private_value >> 8) & 1; |
| 579 | hda_nid_t nid = kcontrol->private_value & 0xff; |
| 580 | unsigned int eapd; |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 581 | |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 582 | eapd = !!ucontrol->value.integer.value[0]; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 583 | if (invert) |
| 584 | eapd = !eapd; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 585 | if (eapd == spec->cur_eapd) |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 586 | return 0; |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 587 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 588 | spec->cur_eapd = eapd; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 589 | snd_hda_codec_write_cache(codec, nid, |
| 590 | 0, AC_VERB_SET_EAPD_BTLENABLE, |
| 591 | eapd ? 0x02 : 0x00); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 592 | return 1; |
| 593 | } |
| 594 | |
Takashi Iwai | 86d72bd | 2006-11-28 11:33:10 +0100 | [diff] [blame] | 595 | /* controls for test mode */ |
| 596 | #ifdef CONFIG_SND_DEBUG |
| 597 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 598 | #define CXT_EAPD_SWITCH(xname, nid, mask) \ |
| 599 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \ |
| 600 | .info = cxt_eapd_info, \ |
| 601 | .get = cxt_eapd_get, \ |
| 602 | .put = cxt_eapd_put, \ |
| 603 | .private_value = nid | (mask<<16) } |
| 604 | |
| 605 | |
| 606 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 607 | static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol, |
| 608 | struct snd_ctl_elem_info *uinfo) |
| 609 | { |
| 610 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 611 | struct conexant_spec *spec = codec->spec; |
| 612 | return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode, |
| 613 | spec->num_channel_mode); |
| 614 | } |
| 615 | |
| 616 | static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol, |
| 617 | struct snd_ctl_elem_value *ucontrol) |
| 618 | { |
| 619 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 620 | struct conexant_spec *spec = codec->spec; |
| 621 | return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode, |
| 622 | spec->num_channel_mode, |
| 623 | spec->multiout.max_channels); |
| 624 | } |
| 625 | |
| 626 | static int conexant_ch_mode_put(struct snd_kcontrol *kcontrol, |
| 627 | struct snd_ctl_elem_value *ucontrol) |
| 628 | { |
| 629 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 630 | struct conexant_spec *spec = codec->spec; |
| 631 | int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode, |
| 632 | spec->num_channel_mode, |
| 633 | &spec->multiout.max_channels); |
| 634 | if (err >= 0 && spec->need_dac_fix) |
| 635 | spec->multiout.num_dacs = spec->multiout.max_channels / 2; |
| 636 | return err; |
| 637 | } |
| 638 | |
| 639 | #define CXT_PIN_MODE(xname, nid, dir) \ |
| 640 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \ |
| 641 | .info = conexant_ch_mode_info, \ |
| 642 | .get = conexant_ch_mode_get, \ |
| 643 | .put = conexant_ch_mode_put, \ |
| 644 | .private_value = nid | (dir<<16) } |
| 645 | |
Takashi Iwai | 86d72bd | 2006-11-28 11:33:10 +0100 | [diff] [blame] | 646 | #endif /* CONFIG_SND_DEBUG */ |
| 647 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 648 | /* Conexant 5045 specific */ |
| 649 | |
| 650 | static hda_nid_t cxt5045_dac_nids[1] = { 0x19 }; |
| 651 | static hda_nid_t cxt5045_adc_nids[1] = { 0x1a }; |
| 652 | static hda_nid_t cxt5045_capsrc_nids[1] = { 0x1a }; |
Takashi Iwai | cbef978 | 2008-02-22 18:36:46 +0100 | [diff] [blame] | 653 | #define CXT5045_SPDIF_OUT 0x18 |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 654 | |
Tobin Davis | 5cd5752 | 2006-11-20 17:42:09 +0100 | [diff] [blame] | 655 | static struct hda_channel_mode cxt5045_modes[1] = { |
| 656 | { 2, NULL }, |
| 657 | }; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 658 | |
| 659 | static struct hda_input_mux cxt5045_capture_source = { |
| 660 | .num_items = 2, |
| 661 | .items = { |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 662 | { "IntMic", 0x1 }, |
Jiang zhe | f4beee9 | 2008-01-17 11:19:26 +0100 | [diff] [blame] | 663 | { "ExtMic", 0x2 }, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 664 | } |
| 665 | }; |
| 666 | |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 667 | static struct hda_input_mux cxt5045_capture_source_benq = { |
| 668 | .num_items = 3, |
| 669 | .items = { |
| 670 | { "IntMic", 0x1 }, |
| 671 | { "ExtMic", 0x2 }, |
| 672 | { "LineIn", 0x3 }, |
| 673 | } |
| 674 | }; |
| 675 | |
Jiang zhe | 2de3c23 | 2008-03-06 11:09:09 +0100 | [diff] [blame] | 676 | static struct hda_input_mux cxt5045_capture_source_hp530 = { |
| 677 | .num_items = 2, |
| 678 | .items = { |
| 679 | { "ExtMic", 0x1 }, |
| 680 | { "IntMic", 0x2 }, |
| 681 | } |
| 682 | }; |
| 683 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 684 | /* turn on/off EAPD (+ mute HP) as a master switch */ |
| 685 | static int cxt5045_hp_master_sw_put(struct snd_kcontrol *kcontrol, |
| 686 | struct snd_ctl_elem_value *ucontrol) |
| 687 | { |
| 688 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 689 | struct conexant_spec *spec = codec->spec; |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 690 | unsigned int bits; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 691 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 692 | if (!cxt_eapd_put(kcontrol, ucontrol)) |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 693 | return 0; |
| 694 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 695 | /* toggle internal speakers mute depending of presence of |
| 696 | * the headphone jack |
| 697 | */ |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 698 | bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE; |
| 699 | snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0, |
| 700 | HDA_AMP_MUTE, bits); |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 701 | |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 702 | bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE; |
| 703 | snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0, |
| 704 | HDA_AMP_MUTE, bits); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 705 | return 1; |
| 706 | } |
| 707 | |
| 708 | /* bind volumes of both NID 0x10 and 0x11 */ |
Takashi Iwai | cca3b37 | 2007-08-10 17:12:15 +0200 | [diff] [blame] | 709 | static struct hda_bind_ctls cxt5045_hp_bind_master_vol = { |
| 710 | .ops = &snd_hda_bind_vol, |
| 711 | .values = { |
| 712 | HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT), |
| 713 | HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT), |
| 714 | 0 |
| 715 | }, |
| 716 | }; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 717 | |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 718 | /* toggle input of built-in and mic jack appropriately */ |
| 719 | static void cxt5045_hp_automic(struct hda_codec *codec) |
| 720 | { |
| 721 | static struct hda_verb mic_jack_on[] = { |
| 722 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080}, |
| 723 | {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000}, |
| 724 | {} |
| 725 | }; |
| 726 | static struct hda_verb mic_jack_off[] = { |
| 727 | {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080}, |
| 728 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000}, |
| 729 | {} |
| 730 | }; |
| 731 | unsigned int present; |
| 732 | |
| 733 | present = snd_hda_codec_read(codec, 0x12, 0, |
| 734 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; |
| 735 | if (present) |
| 736 | snd_hda_sequence_write(codec, mic_jack_on); |
| 737 | else |
| 738 | snd_hda_sequence_write(codec, mic_jack_off); |
| 739 | } |
| 740 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 741 | |
| 742 | /* mute internal speaker if HP is plugged */ |
| 743 | static void cxt5045_hp_automute(struct hda_codec *codec) |
| 744 | { |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 745 | struct conexant_spec *spec = codec->spec; |
Tobin Davis | dd87da1 | 2007-02-26 16:07:42 +0100 | [diff] [blame] | 746 | unsigned int bits; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 747 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 748 | spec->hp_present = snd_hda_codec_read(codec, 0x11, 0, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 749 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; |
Tobin Davis | dd87da1 | 2007-02-26 16:07:42 +0100 | [diff] [blame] | 750 | |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 751 | bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0; |
| 752 | snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0, |
| 753 | HDA_AMP_MUTE, bits); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | /* unsolicited event for HP jack sensing */ |
| 757 | static void cxt5045_hp_unsol_event(struct hda_codec *codec, |
| 758 | unsigned int res) |
| 759 | { |
| 760 | res >>= 26; |
| 761 | switch (res) { |
| 762 | case CONEXANT_HP_EVENT: |
| 763 | cxt5045_hp_automute(codec); |
| 764 | break; |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 765 | case CONEXANT_MIC_EVENT: |
| 766 | cxt5045_hp_automic(codec); |
| 767 | break; |
| 768 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 769 | } |
| 770 | } |
| 771 | |
| 772 | static struct snd_kcontrol_new cxt5045_mixers[] = { |
Takashi Iwai | c8229c3 | 2007-10-19 08:06:21 +0200 | [diff] [blame] | 773 | HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x01, HDA_INPUT), |
| 774 | HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x01, HDA_INPUT), |
| 775 | HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x02, HDA_INPUT), |
| 776 | HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x02, HDA_INPUT), |
| 777 | HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT), |
| 778 | HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT), |
| 779 | HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x1, HDA_INPUT), |
| 780 | HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x1, HDA_INPUT), |
| 781 | HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x2, HDA_INPUT), |
| 782 | HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x2, HDA_INPUT), |
Takashi Iwai | cca3b37 | 2007-08-10 17:12:15 +0200 | [diff] [blame] | 783 | HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 784 | { |
| 785 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 786 | .name = "Master Playback Switch", |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 787 | .info = cxt_eapd_info, |
| 788 | .get = cxt_eapd_get, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 789 | .put = cxt5045_hp_master_sw_put, |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 790 | .private_value = 0x10, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 791 | }, |
| 792 | |
| 793 | {} |
| 794 | }; |
| 795 | |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 796 | static struct snd_kcontrol_new cxt5045_benq_mixers[] = { |
| 797 | HDA_CODEC_VOLUME("Line In Capture Volume", 0x1a, 0x03, HDA_INPUT), |
| 798 | HDA_CODEC_MUTE("Line In Capture Switch", 0x1a, 0x03, HDA_INPUT), |
| 799 | HDA_CODEC_VOLUME("Line In Playback Volume", 0x17, 0x3, HDA_INPUT), |
| 800 | HDA_CODEC_MUTE("Line In Playback Switch", 0x17, 0x3, HDA_INPUT), |
| 801 | |
| 802 | {} |
| 803 | }; |
| 804 | |
Jiang zhe | 2de3c23 | 2008-03-06 11:09:09 +0100 | [diff] [blame] | 805 | static struct snd_kcontrol_new cxt5045_mixers_hp530[] = { |
Jiang zhe | 2de3c23 | 2008-03-06 11:09:09 +0100 | [diff] [blame] | 806 | HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x02, HDA_INPUT), |
| 807 | HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x02, HDA_INPUT), |
| 808 | HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x01, HDA_INPUT), |
| 809 | HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x01, HDA_INPUT), |
| 810 | HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT), |
| 811 | HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT), |
| 812 | HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x2, HDA_INPUT), |
| 813 | HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x2, HDA_INPUT), |
| 814 | HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x1, HDA_INPUT), |
| 815 | HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x1, HDA_INPUT), |
| 816 | HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol), |
| 817 | { |
| 818 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 819 | .name = "Master Playback Switch", |
| 820 | .info = cxt_eapd_info, |
| 821 | .get = cxt_eapd_get, |
| 822 | .put = cxt5045_hp_master_sw_put, |
| 823 | .private_value = 0x10, |
| 824 | }, |
| 825 | |
| 826 | {} |
| 827 | }; |
| 828 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 829 | static struct hda_verb cxt5045_init_verbs[] = { |
| 830 | /* Line in, Mic */ |
Takashi Iwai | 4090dff | 2008-07-12 12:02:45 +0200 | [diff] [blame] | 831 | {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] | 832 | {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] | 833 | /* HP, Amp */ |
Takashi Iwai | c8229c3 | 2007-10-19 08:06:21 +0200 | [diff] [blame] | 834 | {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 835 | {0x10, AC_VERB_SET_CONNECT_SEL, 0x1}, |
| 836 | {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 837 | {0x11, AC_VERB_SET_CONNECT_SEL, 0x1}, |
| 838 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 839 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 840 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, |
| 841 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, |
| 842 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 843 | /* Record selector: Int mic */ |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 844 | {0x1a, AC_VERB_SET_CONNECT_SEL,0x1}, |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 845 | {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 846 | AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17}, |
| 847 | /* SPDIF route: PCM */ |
Takashi Iwai | cbef978 | 2008-02-22 18:36:46 +0100 | [diff] [blame] | 848 | {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 849 | { 0x13, AC_VERB_SET_CONNECT_SEL, 0x0 }, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 850 | /* EAPD */ |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 851 | {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2 }, /* default on */ |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 852 | { } /* end */ |
| 853 | }; |
| 854 | |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 855 | static struct hda_verb cxt5045_benq_init_verbs[] = { |
| 856 | /* Int Mic, Mic */ |
| 857 | {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 }, |
| 858 | {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 }, |
| 859 | /* Line In,HP, Amp */ |
| 860 | {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 861 | {0x10, AC_VERB_SET_CONNECT_SEL, 0x1}, |
| 862 | {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, |
| 863 | {0x11, AC_VERB_SET_CONNECT_SEL, 0x1}, |
| 864 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 865 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 866 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, |
| 867 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, |
| 868 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, |
| 869 | /* Record selector: Int mic */ |
| 870 | {0x1a, AC_VERB_SET_CONNECT_SEL, 0x1}, |
| 871 | {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, |
| 872 | AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17}, |
| 873 | /* SPDIF route: PCM */ |
Takashi Iwai | cbef978 | 2008-02-22 18:36:46 +0100 | [diff] [blame] | 874 | {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 875 | {0x13, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 876 | /* EAPD */ |
| 877 | {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ |
| 878 | { } /* end */ |
| 879 | }; |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 880 | |
| 881 | static struct hda_verb cxt5045_hp_sense_init_verbs[] = { |
| 882 | /* pin sensing on HP jack */ |
| 883 | {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT}, |
Takashi Iwai | d3091fa | 2007-03-28 15:11:53 +0200 | [diff] [blame] | 884 | { } /* end */ |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 885 | }; |
| 886 | |
| 887 | static struct hda_verb cxt5045_mic_sense_init_verbs[] = { |
| 888 | /* pin sensing on HP jack */ |
| 889 | {0x12, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT}, |
Takashi Iwai | d3091fa | 2007-03-28 15:11:53 +0200 | [diff] [blame] | 890 | { } /* end */ |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 891 | }; |
| 892 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 893 | #ifdef CONFIG_SND_DEBUG |
| 894 | /* Test configuration for debugging, modelled after the ALC260 test |
| 895 | * configuration. |
| 896 | */ |
| 897 | static struct hda_input_mux cxt5045_test_capture_source = { |
| 898 | .num_items = 5, |
| 899 | .items = { |
| 900 | { "MIXER", 0x0 }, |
| 901 | { "MIC1 pin", 0x1 }, |
| 902 | { "LINE1 pin", 0x2 }, |
| 903 | { "HP-OUT pin", 0x3 }, |
| 904 | { "CD pin", 0x4 }, |
| 905 | }, |
| 906 | }; |
| 907 | |
| 908 | static struct snd_kcontrol_new cxt5045_test_mixer[] = { |
| 909 | |
| 910 | /* Output controls */ |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 911 | HDA_CODEC_VOLUME("Speaker Playback Volume", 0x10, 0x0, HDA_OUTPUT), |
| 912 | HDA_CODEC_MUTE("Speaker Playback Switch", 0x10, 0x0, HDA_OUTPUT), |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 913 | HDA_CODEC_VOLUME("Node 11 Playback Volume", 0x11, 0x0, HDA_OUTPUT), |
| 914 | HDA_CODEC_MUTE("Node 11 Playback Switch", 0x11, 0x0, HDA_OUTPUT), |
| 915 | HDA_CODEC_VOLUME("Node 12 Playback Volume", 0x12, 0x0, HDA_OUTPUT), |
| 916 | HDA_CODEC_MUTE("Node 12 Playback Switch", 0x12, 0x0, HDA_OUTPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 917 | |
| 918 | /* Modes for retasking pin widgets */ |
| 919 | CXT_PIN_MODE("HP-OUT pin mode", 0x11, CXT_PIN_DIR_INOUT), |
| 920 | CXT_PIN_MODE("LINE1 pin mode", 0x12, CXT_PIN_DIR_INOUT), |
| 921 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 922 | /* EAPD Switch Control */ |
| 923 | CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0), |
| 924 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 925 | /* Loopback mixer controls */ |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 926 | |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 927 | HDA_CODEC_VOLUME("Mixer-1 Volume", 0x17, 0x0, HDA_INPUT), |
| 928 | HDA_CODEC_MUTE("Mixer-1 Switch", 0x17, 0x0, HDA_INPUT), |
| 929 | HDA_CODEC_VOLUME("Mixer-2 Volume", 0x17, 0x1, HDA_INPUT), |
| 930 | HDA_CODEC_MUTE("Mixer-2 Switch", 0x17, 0x1, HDA_INPUT), |
| 931 | HDA_CODEC_VOLUME("Mixer-3 Volume", 0x17, 0x2, HDA_INPUT), |
| 932 | HDA_CODEC_MUTE("Mixer-3 Switch", 0x17, 0x2, HDA_INPUT), |
| 933 | HDA_CODEC_VOLUME("Mixer-4 Volume", 0x17, 0x3, HDA_INPUT), |
| 934 | HDA_CODEC_MUTE("Mixer-4 Switch", 0x17, 0x3, HDA_INPUT), |
| 935 | HDA_CODEC_VOLUME("Mixer-5 Volume", 0x17, 0x4, HDA_INPUT), |
| 936 | HDA_CODEC_MUTE("Mixer-5 Switch", 0x17, 0x4, HDA_INPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 937 | { |
| 938 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 939 | .name = "Input Source", |
| 940 | .info = conexant_mux_enum_info, |
| 941 | .get = conexant_mux_enum_get, |
| 942 | .put = conexant_mux_enum_put, |
| 943 | }, |
Tobin Davis | fb3409e | 2007-05-17 09:40:47 +0200 | [diff] [blame] | 944 | /* Audio input controls */ |
| 945 | HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT), |
| 946 | HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT), |
| 947 | HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT), |
| 948 | HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT), |
| 949 | HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT), |
| 950 | HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT), |
| 951 | HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT), |
| 952 | HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT), |
| 953 | HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT), |
| 954 | HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 955 | { } /* end */ |
| 956 | }; |
| 957 | |
| 958 | static struct hda_verb cxt5045_test_init_verbs[] = { |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 959 | /* Set connections */ |
| 960 | { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 }, |
| 961 | { 0x11, AC_VERB_SET_CONNECT_SEL, 0x0 }, |
| 962 | { 0x12, AC_VERB_SET_CONNECT_SEL, 0x0 }, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 963 | /* Enable retasking pins as output, initially without power amp */ |
| 964 | {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 965 | {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 966 | |
| 967 | /* Disable digital (SPDIF) pins initially, but users can enable |
| 968 | * them via a mixer switch. In the case of SPDIF-out, this initverb |
| 969 | * payload also sets the generation to 0, output to be in "consumer" |
| 970 | * PCM format, copyright asserted, no pre-emphasis and no validity |
| 971 | * control. |
| 972 | */ |
Takashi Iwai | cbef978 | 2008-02-22 18:36:46 +0100 | [diff] [blame] | 973 | {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 974 | {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 975 | |
| 976 | /* Start with output sum widgets muted and their output gains at min */ |
| 977 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 978 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 979 | |
| 980 | /* Unmute retasking pin widget output buffers since the default |
| 981 | * state appears to be output. As the pin mode is changed by the |
| 982 | * user the pin mode control will take care of enabling the pin's |
| 983 | * input/output buffers as needed. |
| 984 | */ |
| 985 | {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 986 | {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 987 | |
| 988 | /* Mute capture amp left and right */ |
| 989 | {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 990 | |
| 991 | /* Set ADC connection select to match default mixer setting (mic1 |
| 992 | * pin) |
| 993 | */ |
| 994 | {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00}, |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 995 | {0x17, AC_VERB_SET_CONNECT_SEL, 0x00}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 996 | |
| 997 | /* Mute all inputs to mixer widget (even unconnected ones) */ |
| 998 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* Mixer pin */ |
| 999 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* Mic1 pin */ |
| 1000 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* Line pin */ |
| 1001 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* HP pin */ |
| 1002 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */ |
| 1003 | |
| 1004 | { } |
| 1005 | }; |
| 1006 | #endif |
| 1007 | |
| 1008 | |
| 1009 | /* initialize jack-sensing, too */ |
| 1010 | static int cxt5045_init(struct hda_codec *codec) |
| 1011 | { |
| 1012 | conexant_init(codec); |
| 1013 | cxt5045_hp_automute(codec); |
| 1014 | return 0; |
| 1015 | } |
| 1016 | |
| 1017 | |
| 1018 | enum { |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1019 | CXT5045_LAPTOP_HPSENSE, |
| 1020 | CXT5045_LAPTOP_MICSENSE, |
| 1021 | CXT5045_LAPTOP_HPMICSENSE, |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 1022 | CXT5045_BENQ, |
Jiang zhe | 2de3c23 | 2008-03-06 11:09:09 +0100 | [diff] [blame] | 1023 | CXT5045_LAPTOP_HP530, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1024 | #ifdef CONFIG_SND_DEBUG |
| 1025 | CXT5045_TEST, |
| 1026 | #endif |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1027 | CXT5045_MODELS |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1028 | }; |
| 1029 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1030 | static const char *cxt5045_models[CXT5045_MODELS] = { |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1031 | [CXT5045_LAPTOP_HPSENSE] = "laptop-hpsense", |
| 1032 | [CXT5045_LAPTOP_MICSENSE] = "laptop-micsense", |
| 1033 | [CXT5045_LAPTOP_HPMICSENSE] = "laptop-hpmicsense", |
| 1034 | [CXT5045_BENQ] = "benq", |
Jiang zhe | 2de3c23 | 2008-03-06 11:09:09 +0100 | [diff] [blame] | 1035 | [CXT5045_LAPTOP_HP530] = "laptop-hp530", |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1036 | #ifdef CONFIG_SND_DEBUG |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1037 | [CXT5045_TEST] = "test", |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1038 | #endif |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1039 | }; |
| 1040 | |
| 1041 | static struct snd_pci_quirk cxt5045_cfg_tbl[] = { |
Jiang zhe | 2de3c23 | 2008-03-06 11:09:09 +0100 | [diff] [blame] | 1042 | SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530), |
Takashi Iwai | dea0a50 | 2009-02-09 17:14:52 +0100 | [diff] [blame] | 1043 | SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series", |
| 1044 | CXT5045_LAPTOP_HPSENSE), |
Takashi Iwai | 6a9dccd | 2008-07-01 14:52:05 +0200 | [diff] [blame] | 1045 | SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P105", CXT5045_LAPTOP_MICSENSE), |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 1046 | SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ), |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1047 | SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE), |
| 1048 | SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE), |
Takashi Iwai | 9e46415 | 2008-07-12 12:05:25 +0200 | [diff] [blame] | 1049 | SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505", |
| 1050 | CXT5045_LAPTOP_HPMICSENSE), |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1051 | SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE), |
| 1052 | SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE), |
| 1053 | SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE), |
Takashi Iwai | dea0a50 | 2009-02-09 17:14:52 +0100 | [diff] [blame] | 1054 | SND_PCI_QUIRK_MASK(0x1631, 0xff00, 0xc100, "Packard Bell", |
| 1055 | CXT5045_LAPTOP_HPMICSENSE), |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1056 | SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1057 | {} |
| 1058 | }; |
| 1059 | |
| 1060 | static int patch_cxt5045(struct hda_codec *codec) |
| 1061 | { |
| 1062 | struct conexant_spec *spec; |
| 1063 | int board_config; |
| 1064 | |
| 1065 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 1066 | if (!spec) |
| 1067 | return -ENOMEM; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1068 | codec->spec = spec; |
| 1069 | |
| 1070 | spec->multiout.max_channels = 2; |
| 1071 | spec->multiout.num_dacs = ARRAY_SIZE(cxt5045_dac_nids); |
| 1072 | spec->multiout.dac_nids = cxt5045_dac_nids; |
| 1073 | spec->multiout.dig_out_nid = CXT5045_SPDIF_OUT; |
| 1074 | spec->num_adc_nids = 1; |
| 1075 | spec->adc_nids = cxt5045_adc_nids; |
| 1076 | spec->capsrc_nids = cxt5045_capsrc_nids; |
| 1077 | spec->input_mux = &cxt5045_capture_source; |
| 1078 | spec->num_mixers = 1; |
| 1079 | spec->mixers[0] = cxt5045_mixers; |
| 1080 | spec->num_init_verbs = 1; |
| 1081 | spec->init_verbs[0] = cxt5045_init_verbs; |
| 1082 | spec->spdif_route = 0; |
Tobin Davis | 5cd5752 | 2006-11-20 17:42:09 +0100 | [diff] [blame] | 1083 | spec->num_channel_mode = ARRAY_SIZE(cxt5045_modes), |
| 1084 | spec->channel_mode = cxt5045_modes, |
| 1085 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1086 | |
| 1087 | codec->patch_ops = conexant_patch_ops; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1088 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1089 | board_config = snd_hda_check_board_config(codec, CXT5045_MODELS, |
| 1090 | cxt5045_models, |
| 1091 | cxt5045_cfg_tbl); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1092 | switch (board_config) { |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1093 | case CXT5045_LAPTOP_HPSENSE: |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1094 | codec->patch_ops.unsol_event = cxt5045_hp_unsol_event; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1095 | spec->input_mux = &cxt5045_capture_source; |
| 1096 | spec->num_init_verbs = 2; |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1097 | spec->init_verbs[1] = cxt5045_hp_sense_init_verbs; |
| 1098 | spec->mixers[0] = cxt5045_mixers; |
| 1099 | codec->patch_ops.init = cxt5045_init; |
| 1100 | break; |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1101 | case CXT5045_LAPTOP_MICSENSE: |
Takashi Iwai | 86376df | 2008-07-12 12:04:05 +0200 | [diff] [blame] | 1102 | codec->patch_ops.unsol_event = cxt5045_hp_unsol_event; |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1103 | spec->input_mux = &cxt5045_capture_source; |
| 1104 | spec->num_init_verbs = 2; |
| 1105 | spec->init_verbs[1] = cxt5045_mic_sense_init_verbs; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1106 | spec->mixers[0] = cxt5045_mixers; |
| 1107 | codec->patch_ops.init = cxt5045_init; |
| 1108 | break; |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1109 | default: |
| 1110 | case CXT5045_LAPTOP_HPMICSENSE: |
| 1111 | codec->patch_ops.unsol_event = cxt5045_hp_unsol_event; |
| 1112 | spec->input_mux = &cxt5045_capture_source; |
| 1113 | spec->num_init_verbs = 3; |
| 1114 | spec->init_verbs[1] = cxt5045_hp_sense_init_verbs; |
| 1115 | spec->init_verbs[2] = cxt5045_mic_sense_init_verbs; |
| 1116 | spec->mixers[0] = cxt5045_mixers; |
| 1117 | codec->patch_ops.init = cxt5045_init; |
| 1118 | break; |
Jiang Zhe | 5218c89 | 2008-01-17 11:18:41 +0100 | [diff] [blame] | 1119 | case CXT5045_BENQ: |
| 1120 | codec->patch_ops.unsol_event = cxt5045_hp_unsol_event; |
| 1121 | spec->input_mux = &cxt5045_capture_source_benq; |
| 1122 | spec->num_init_verbs = 1; |
| 1123 | spec->init_verbs[0] = cxt5045_benq_init_verbs; |
| 1124 | spec->mixers[0] = cxt5045_mixers; |
| 1125 | spec->mixers[1] = cxt5045_benq_mixers; |
| 1126 | spec->num_mixers = 2; |
| 1127 | codec->patch_ops.init = cxt5045_init; |
| 1128 | break; |
Jiang zhe | 2de3c23 | 2008-03-06 11:09:09 +0100 | [diff] [blame] | 1129 | case CXT5045_LAPTOP_HP530: |
| 1130 | codec->patch_ops.unsol_event = cxt5045_hp_unsol_event; |
| 1131 | spec->input_mux = &cxt5045_capture_source_hp530; |
| 1132 | spec->num_init_verbs = 2; |
| 1133 | spec->init_verbs[1] = cxt5045_hp_sense_init_verbs; |
| 1134 | spec->mixers[0] = cxt5045_mixers_hp530; |
| 1135 | codec->patch_ops.init = cxt5045_init; |
| 1136 | break; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1137 | #ifdef CONFIG_SND_DEBUG |
| 1138 | case CXT5045_TEST: |
| 1139 | spec->input_mux = &cxt5045_test_capture_source; |
| 1140 | spec->mixers[0] = cxt5045_test_mixer; |
| 1141 | spec->init_verbs[0] = cxt5045_test_init_verbs; |
Marc Boucher | 15908c3 | 2008-01-22 15:15:59 +0100 | [diff] [blame] | 1142 | break; |
| 1143 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1144 | #endif |
| 1145 | } |
Takashi Iwai | 48ecb7e | 2007-12-17 14:32:49 +0100 | [diff] [blame] | 1146 | |
Takashi Iwai | 031005f | 2008-06-26 14:49:58 +0200 | [diff] [blame] | 1147 | switch (codec->subsystem_id >> 16) { |
| 1148 | case 0x103c: |
| 1149 | /* HP laptop has a really bad sound over 0dB on NID 0x17. |
| 1150 | * Fix max PCM level to 0 dB |
| 1151 | * (originall it has 0x2b steps with 0dB offset 0x14) |
| 1152 | */ |
| 1153 | snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT, |
| 1154 | (0x14 << AC_AMPCAP_OFFSET_SHIFT) | |
| 1155 | (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) | |
| 1156 | (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) | |
| 1157 | (1 << AC_AMPCAP_MUTE_SHIFT)); |
| 1158 | break; |
| 1159 | } |
Takashi Iwai | 48ecb7e | 2007-12-17 14:32:49 +0100 | [diff] [blame] | 1160 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1161 | return 0; |
| 1162 | } |
| 1163 | |
| 1164 | |
| 1165 | /* Conexant 5047 specific */ |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1166 | #define CXT5047_SPDIF_OUT 0x11 |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1167 | |
Takashi Iwai | 5b3a744 | 2009-03-10 15:10:55 +0100 | [diff] [blame] | 1168 | static hda_nid_t cxt5047_dac_nids[1] = { 0x10 }; /* 0x1c */ |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1169 | static hda_nid_t cxt5047_adc_nids[1] = { 0x12 }; |
| 1170 | static hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a }; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1171 | |
Tobin Davis | 5cd5752 | 2006-11-20 17:42:09 +0100 | [diff] [blame] | 1172 | static struct hda_channel_mode cxt5047_modes[1] = { |
| 1173 | { 2, NULL }, |
| 1174 | }; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1175 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1176 | static struct hda_input_mux cxt5047_toshiba_capture_source = { |
| 1177 | .num_items = 2, |
| 1178 | .items = { |
| 1179 | { "ExtMic", 0x2 }, |
| 1180 | { "Line-In", 0x1 }, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1181 | } |
| 1182 | }; |
| 1183 | |
| 1184 | /* turn on/off EAPD (+ mute HP) as a master switch */ |
| 1185 | static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol, |
| 1186 | struct snd_ctl_elem_value *ucontrol) |
| 1187 | { |
| 1188 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1189 | struct conexant_spec *spec = codec->spec; |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1190 | unsigned int bits; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1191 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1192 | if (!cxt_eapd_put(kcontrol, ucontrol)) |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1193 | return 0; |
| 1194 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1195 | /* toggle internal speakers mute depending of presence of |
| 1196 | * the headphone jack |
| 1197 | */ |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1198 | bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE; |
Gregorio Guidi | 5d75bc5 | 2009-03-12 16:41:51 +0100 | [diff] [blame^] | 1199 | snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01, |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1200 | HDA_AMP_MUTE, bits); |
| 1201 | bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE; |
| 1202 | snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0, |
| 1203 | HDA_AMP_MUTE, bits); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1204 | return 1; |
| 1205 | } |
| 1206 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1207 | /* mute internal speaker if HP is plugged */ |
| 1208 | static void cxt5047_hp_automute(struct hda_codec *codec) |
| 1209 | { |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1210 | struct conexant_spec *spec = codec->spec; |
Tobin Davis | dd87da1 | 2007-02-26 16:07:42 +0100 | [diff] [blame] | 1211 | unsigned int bits; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1212 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1213 | spec->hp_present = snd_hda_codec_read(codec, 0x13, 0, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1214 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; |
Tobin Davis | dd87da1 | 2007-02-26 16:07:42 +0100 | [diff] [blame] | 1215 | |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1216 | bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0; |
Gregorio Guidi | 5d75bc5 | 2009-03-12 16:41:51 +0100 | [diff] [blame^] | 1217 | snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01, |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1218 | HDA_AMP_MUTE, bits); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1219 | } |
| 1220 | |
| 1221 | /* toggle input of built-in and mic jack appropriately */ |
| 1222 | static void cxt5047_hp_automic(struct hda_codec *codec) |
| 1223 | { |
| 1224 | static struct hda_verb mic_jack_on[] = { |
Marc Boucher | 9f113e0 | 2008-01-22 15:18:08 +0100 | [diff] [blame] | 1225 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, |
| 1226 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1227 | {} |
| 1228 | }; |
| 1229 | static struct hda_verb mic_jack_off[] = { |
Marc Boucher | 9f113e0 | 2008-01-22 15:18:08 +0100 | [diff] [blame] | 1230 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, |
| 1231 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1232 | {} |
| 1233 | }; |
| 1234 | unsigned int present; |
| 1235 | |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1236 | present = snd_hda_codec_read(codec, 0x15, 0, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1237 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; |
| 1238 | if (present) |
| 1239 | snd_hda_sequence_write(codec, mic_jack_on); |
| 1240 | else |
| 1241 | snd_hda_sequence_write(codec, mic_jack_off); |
| 1242 | } |
| 1243 | |
| 1244 | /* unsolicited event for HP jack sensing */ |
| 1245 | static void cxt5047_hp_unsol_event(struct hda_codec *codec, |
| 1246 | unsigned int res) |
| 1247 | { |
Marc Boucher | 9f113e0 | 2008-01-22 15:18:08 +0100 | [diff] [blame] | 1248 | switch (res >> 26) { |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1249 | case CONEXANT_HP_EVENT: |
| 1250 | cxt5047_hp_automute(codec); |
| 1251 | break; |
| 1252 | case CONEXANT_MIC_EVENT: |
| 1253 | cxt5047_hp_automic(codec); |
| 1254 | break; |
| 1255 | } |
| 1256 | } |
| 1257 | |
Takashi Iwai | df481e4 | 2009-03-10 15:35:35 +0100 | [diff] [blame] | 1258 | static struct snd_kcontrol_new cxt5047_base_mixers[] = { |
| 1259 | HDA_CODEC_VOLUME("Mic Playback Volume", 0x19, 0x02, HDA_INPUT), |
| 1260 | HDA_CODEC_MUTE("Mic Playback Switch", 0x19, 0x02, HDA_INPUT), |
| 1261 | HDA_CODEC_VOLUME("Mic Boost", 0x1a, 0x0, HDA_OUTPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1262 | HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT), |
| 1263 | HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT), |
| 1264 | HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT), |
| 1265 | HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT), |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1266 | { |
| 1267 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1268 | .name = "Master Playback Switch", |
| 1269 | .info = cxt_eapd_info, |
| 1270 | .get = cxt_eapd_get, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1271 | .put = cxt5047_hp_master_sw_put, |
| 1272 | .private_value = 0x13, |
| 1273 | }, |
| 1274 | |
| 1275 | {} |
| 1276 | }; |
| 1277 | |
Takashi Iwai | df481e4 | 2009-03-10 15:35:35 +0100 | [diff] [blame] | 1278 | static struct snd_kcontrol_new cxt5047_hp_spk_mixers[] = { |
Gregorio Guidi | 5d75bc5 | 2009-03-12 16:41:51 +0100 | [diff] [blame^] | 1279 | HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x01, HDA_OUTPUT), |
Takashi Iwai | df481e4 | 2009-03-10 15:35:35 +0100 | [diff] [blame] | 1280 | HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT), |
| 1281 | {} |
| 1282 | }; |
| 1283 | |
| 1284 | static struct snd_kcontrol_new cxt5047_hp_only_mixers[] = { |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1285 | HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1286 | { } /* end */ |
| 1287 | }; |
| 1288 | |
| 1289 | static struct hda_verb cxt5047_init_verbs[] = { |
| 1290 | /* Line in, Mic, Built-in Mic */ |
| 1291 | {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, |
| 1292 | {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 }, |
| 1293 | {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] | 1294 | /* HP, Speaker */ |
Tobin Davis | b7589ce | 2007-04-24 17:56:55 +0200 | [diff] [blame] | 1295 | {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, |
Takashi Iwai | 5b3a744 | 2009-03-10 15:10:55 +0100 | [diff] [blame] | 1296 | {0x13, AC_VERB_SET_CONNECT_SEL, 0x0}, /* mixer(0x19) */ |
| 1297 | {0x1d, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mixer(0x19) */ |
Tobin Davis | 7f29673 | 2007-03-12 11:39:01 +0100 | [diff] [blame] | 1298 | /* Record selector: Mic */ |
| 1299 | {0x12, AC_VERB_SET_CONNECT_SEL,0x03}, |
| 1300 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, |
| 1301 | AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17}, |
| 1302 | {0x1A, AC_VERB_SET_CONNECT_SEL,0x02}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1303 | {0x1A, AC_VERB_SET_AMP_GAIN_MUTE, |
| 1304 | AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00}, |
| 1305 | {0x1A, AC_VERB_SET_AMP_GAIN_MUTE, |
| 1306 | 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] | 1307 | /* SPDIF route: PCM */ |
| 1308 | { 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 }, |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1309 | /* Enable unsolicited events */ |
| 1310 | {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT}, |
| 1311 | {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT}, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1312 | { } /* end */ |
| 1313 | }; |
| 1314 | |
| 1315 | /* configuration for Toshiba Laptops */ |
| 1316 | static struct hda_verb cxt5047_toshiba_init_verbs[] = { |
Takashi Iwai | 3b62886 | 2009-03-10 14:53:54 +0100 | [diff] [blame] | 1317 | {0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0}, /* default off */ |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1318 | {} |
| 1319 | }; |
| 1320 | |
| 1321 | /* Test configuration for debugging, modelled after the ALC260 test |
| 1322 | * configuration. |
| 1323 | */ |
| 1324 | #ifdef CONFIG_SND_DEBUG |
| 1325 | static struct hda_input_mux cxt5047_test_capture_source = { |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1326 | .num_items = 4, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1327 | .items = { |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1328 | { "LINE1 pin", 0x0 }, |
| 1329 | { "MIC1 pin", 0x1 }, |
| 1330 | { "MIC2 pin", 0x2 }, |
| 1331 | { "CD pin", 0x3 }, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1332 | }, |
| 1333 | }; |
| 1334 | |
| 1335 | static struct snd_kcontrol_new cxt5047_test_mixer[] = { |
| 1336 | |
| 1337 | /* Output only controls */ |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1338 | HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT), |
| 1339 | HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT), |
| 1340 | HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT), |
| 1341 | HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1342 | HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT), |
| 1343 | HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT), |
| 1344 | HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT), |
| 1345 | HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT), |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1346 | HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT), |
| 1347 | HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT), |
| 1348 | HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT), |
| 1349 | HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1350 | |
| 1351 | /* Modes for retasking pin widgets */ |
| 1352 | CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT), |
| 1353 | CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT), |
| 1354 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1355 | /* EAPD Switch Control */ |
| 1356 | CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0), |
| 1357 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1358 | /* Loopback mixer controls */ |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1359 | HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT), |
| 1360 | HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT), |
| 1361 | HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT), |
| 1362 | HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT), |
| 1363 | HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT), |
| 1364 | HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT), |
| 1365 | HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT), |
| 1366 | HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1367 | |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1368 | HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT), |
| 1369 | HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT), |
| 1370 | HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT), |
| 1371 | HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT), |
| 1372 | HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT), |
| 1373 | HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT), |
| 1374 | HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT), |
| 1375 | HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1376 | { |
| 1377 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1378 | .name = "Input Source", |
| 1379 | .info = conexant_mux_enum_info, |
| 1380 | .get = conexant_mux_enum_get, |
| 1381 | .put = conexant_mux_enum_put, |
| 1382 | }, |
Marc Boucher | 9f113e0 | 2008-01-22 15:18:08 +0100 | [diff] [blame] | 1383 | HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT), |
| 1384 | HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT), |
| 1385 | HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT), |
| 1386 | HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT), |
| 1387 | HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT), |
| 1388 | HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT), |
| 1389 | HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT), |
| 1390 | HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT), |
| 1391 | HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT), |
| 1392 | HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT), |
| 1393 | |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1394 | { } /* end */ |
| 1395 | }; |
| 1396 | |
| 1397 | static struct hda_verb cxt5047_test_init_verbs[] = { |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1398 | /* Enable retasking pins as output, initially without power amp */ |
| 1399 | {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1400 | {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1401 | {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1402 | |
| 1403 | /* Disable digital (SPDIF) pins initially, but users can enable |
| 1404 | * them via a mixer switch. In the case of SPDIF-out, this initverb |
| 1405 | * payload also sets the generation to 0, output to be in "consumer" |
| 1406 | * PCM format, copyright asserted, no pre-emphasis and no validity |
| 1407 | * control. |
| 1408 | */ |
| 1409 | {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0}, |
| 1410 | |
| 1411 | /* Ensure mic1, mic2, line1 pin widgets take input from the |
| 1412 | * OUT1 sum bus when acting as an output. |
| 1413 | */ |
| 1414 | {0x1a, AC_VERB_SET_CONNECT_SEL, 0}, |
| 1415 | {0x1b, AC_VERB_SET_CONNECT_SEL, 0}, |
| 1416 | |
| 1417 | /* Start with output sum widgets muted and their output gains at min */ |
| 1418 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 1419 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, |
| 1420 | |
| 1421 | /* Unmute retasking pin widget output buffers since the default |
| 1422 | * state appears to be output. As the pin mode is changed by the |
| 1423 | * user the pin mode control will take care of enabling the pin's |
| 1424 | * input/output buffers as needed. |
| 1425 | */ |
| 1426 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1427 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1428 | {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1429 | |
| 1430 | /* Mute capture amp left and right */ |
| 1431 | {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
| 1432 | |
| 1433 | /* Set ADC connection select to match default mixer setting (mic1 |
| 1434 | * pin) |
| 1435 | */ |
| 1436 | {0x12, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1437 | |
| 1438 | /* Mute all inputs to mixer widget (even unconnected ones) */ |
| 1439 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */ |
| 1440 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */ |
| 1441 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */ |
| 1442 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */ |
| 1443 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */ |
| 1444 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */ |
| 1445 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */ |
| 1446 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */ |
| 1447 | |
| 1448 | { } |
| 1449 | }; |
| 1450 | #endif |
| 1451 | |
| 1452 | |
| 1453 | /* initialize jack-sensing, too */ |
| 1454 | static int cxt5047_hp_init(struct hda_codec *codec) |
| 1455 | { |
| 1456 | conexant_init(codec); |
| 1457 | cxt5047_hp_automute(codec); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1458 | return 0; |
| 1459 | } |
| 1460 | |
| 1461 | |
| 1462 | enum { |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1463 | CXT5047_LAPTOP, /* Laptops w/o EAPD support */ |
| 1464 | CXT5047_LAPTOP_HP, /* Some HP laptops */ |
| 1465 | CXT5047_LAPTOP_EAPD, /* Laptops with EAPD support */ |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1466 | #ifdef CONFIG_SND_DEBUG |
| 1467 | CXT5047_TEST, |
| 1468 | #endif |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1469 | CXT5047_MODELS |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1470 | }; |
| 1471 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1472 | static const char *cxt5047_models[CXT5047_MODELS] = { |
| 1473 | [CXT5047_LAPTOP] = "laptop", |
| 1474 | [CXT5047_LAPTOP_HP] = "laptop-hp", |
| 1475 | [CXT5047_LAPTOP_EAPD] = "laptop-eapd", |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1476 | #ifdef CONFIG_SND_DEBUG |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1477 | [CXT5047_TEST] = "test", |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1478 | #endif |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1479 | }; |
| 1480 | |
| 1481 | static struct snd_pci_quirk cxt5047_cfg_tbl[] = { |
Takashi Iwai | ac3e374 | 2007-12-17 17:14:18 +0100 | [diff] [blame] | 1482 | SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP), |
Takashi Iwai | dea0a50 | 2009-02-09 17:14:52 +0100 | [diff] [blame] | 1483 | SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series", |
| 1484 | CXT5047_LAPTOP), |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1485 | SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD), |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1486 | {} |
| 1487 | }; |
| 1488 | |
| 1489 | static int patch_cxt5047(struct hda_codec *codec) |
| 1490 | { |
| 1491 | struct conexant_spec *spec; |
| 1492 | int board_config; |
| 1493 | |
| 1494 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 1495 | if (!spec) |
| 1496 | return -ENOMEM; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1497 | codec->spec = spec; |
| 1498 | |
| 1499 | spec->multiout.max_channels = 2; |
| 1500 | spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids); |
| 1501 | spec->multiout.dac_nids = cxt5047_dac_nids; |
| 1502 | spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT; |
| 1503 | spec->num_adc_nids = 1; |
| 1504 | spec->adc_nids = cxt5047_adc_nids; |
| 1505 | spec->capsrc_nids = cxt5047_capsrc_nids; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1506 | spec->num_mixers = 1; |
Takashi Iwai | df481e4 | 2009-03-10 15:35:35 +0100 | [diff] [blame] | 1507 | spec->mixers[0] = cxt5047_base_mixers; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1508 | spec->num_init_verbs = 1; |
| 1509 | spec->init_verbs[0] = cxt5047_init_verbs; |
| 1510 | spec->spdif_route = 0; |
Tobin Davis | 5cd5752 | 2006-11-20 17:42:09 +0100 | [diff] [blame] | 1511 | spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes), |
| 1512 | spec->channel_mode = cxt5047_modes, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1513 | |
| 1514 | codec->patch_ops = conexant_patch_ops; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1515 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1516 | board_config = snd_hda_check_board_config(codec, CXT5047_MODELS, |
| 1517 | cxt5047_models, |
| 1518 | cxt5047_cfg_tbl); |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1519 | switch (board_config) { |
| 1520 | case CXT5047_LAPTOP: |
Takashi Iwai | df481e4 | 2009-03-10 15:35:35 +0100 | [diff] [blame] | 1521 | spec->num_mixers = 2; |
| 1522 | spec->mixers[1] = cxt5047_hp_spk_mixers; |
| 1523 | codec->patch_ops.unsol_event = cxt5047_hp_unsol_event; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1524 | break; |
| 1525 | case CXT5047_LAPTOP_HP: |
Takashi Iwai | df481e4 | 2009-03-10 15:35:35 +0100 | [diff] [blame] | 1526 | spec->num_mixers = 2; |
| 1527 | spec->mixers[1] = cxt5047_hp_only_mixers; |
Tobin Davis | fb3409e | 2007-05-17 09:40:47 +0200 | [diff] [blame] | 1528 | codec->patch_ops.unsol_event = cxt5047_hp_unsol_event; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1529 | codec->patch_ops.init = cxt5047_hp_init; |
| 1530 | break; |
| 1531 | case CXT5047_LAPTOP_EAPD: |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1532 | spec->input_mux = &cxt5047_toshiba_capture_source; |
Takashi Iwai | df481e4 | 2009-03-10 15:35:35 +0100 | [diff] [blame] | 1533 | spec->num_mixers = 2; |
| 1534 | spec->mixers[1] = cxt5047_hp_spk_mixers; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1535 | spec->num_init_verbs = 2; |
| 1536 | spec->init_verbs[1] = cxt5047_toshiba_init_verbs; |
Tobin Davis | fb3409e | 2007-05-17 09:40:47 +0200 | [diff] [blame] | 1537 | codec->patch_ops.unsol_event = cxt5047_hp_unsol_event; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1538 | break; |
| 1539 | #ifdef CONFIG_SND_DEBUG |
| 1540 | case CXT5047_TEST: |
| 1541 | spec->input_mux = &cxt5047_test_capture_source; |
| 1542 | spec->mixers[0] = cxt5047_test_mixer; |
| 1543 | spec->init_verbs[0] = cxt5047_test_init_verbs; |
Tobin Davis | fb3409e | 2007-05-17 09:40:47 +0200 | [diff] [blame] | 1544 | codec->patch_ops.unsol_event = cxt5047_hp_unsol_event; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1545 | #endif |
| 1546 | } |
Takashi Iwai | dd5746a | 2009-03-10 14:30:40 +0100 | [diff] [blame] | 1547 | spec->vmaster_nid = 0x13; |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1548 | return 0; |
| 1549 | } |
| 1550 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1551 | /* Conexant 5051 specific */ |
| 1552 | static hda_nid_t cxt5051_dac_nids[1] = { 0x10 }; |
| 1553 | static hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 }; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1554 | |
| 1555 | static struct hda_channel_mode cxt5051_modes[1] = { |
| 1556 | { 2, NULL }, |
| 1557 | }; |
| 1558 | |
| 1559 | static void cxt5051_update_speaker(struct hda_codec *codec) |
| 1560 | { |
| 1561 | struct conexant_spec *spec = codec->spec; |
| 1562 | unsigned int pinctl; |
| 1563 | pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0; |
| 1564 | snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 1565 | pinctl); |
| 1566 | } |
| 1567 | |
| 1568 | /* turn on/off EAPD (+ mute HP) as a master switch */ |
| 1569 | static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol, |
| 1570 | struct snd_ctl_elem_value *ucontrol) |
| 1571 | { |
| 1572 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1573 | |
| 1574 | if (!cxt_eapd_put(kcontrol, ucontrol)) |
| 1575 | return 0; |
| 1576 | cxt5051_update_speaker(codec); |
| 1577 | return 1; |
| 1578 | } |
| 1579 | |
| 1580 | /* toggle input of built-in and mic jack appropriately */ |
| 1581 | static void cxt5051_portb_automic(struct hda_codec *codec) |
| 1582 | { |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1583 | struct conexant_spec *spec = codec->spec; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1584 | unsigned int present; |
| 1585 | |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1586 | if (spec->no_auto_mic) |
| 1587 | return; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1588 | present = snd_hda_codec_read(codec, 0x17, 0, |
| 1589 | AC_VERB_GET_PIN_SENSE, 0) & |
| 1590 | AC_PINSENSE_PRESENCE; |
| 1591 | snd_hda_codec_write(codec, 0x14, 0, |
| 1592 | AC_VERB_SET_CONNECT_SEL, |
| 1593 | present ? 0x01 : 0x00); |
| 1594 | } |
| 1595 | |
| 1596 | /* switch the current ADC according to the jack state */ |
| 1597 | static void cxt5051_portc_automic(struct hda_codec *codec) |
| 1598 | { |
| 1599 | struct conexant_spec *spec = codec->spec; |
| 1600 | unsigned int present; |
| 1601 | hda_nid_t new_adc; |
| 1602 | |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1603 | if (spec->no_auto_mic) |
| 1604 | return; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1605 | present = snd_hda_codec_read(codec, 0x18, 0, |
| 1606 | AC_VERB_GET_PIN_SENSE, 0) & |
| 1607 | AC_PINSENSE_PRESENCE; |
| 1608 | if (present) |
| 1609 | spec->cur_adc_idx = 1; |
| 1610 | else |
| 1611 | spec->cur_adc_idx = 0; |
| 1612 | new_adc = spec->adc_nids[spec->cur_adc_idx]; |
| 1613 | if (spec->cur_adc && spec->cur_adc != new_adc) { |
| 1614 | /* stream is running, let's swap the current ADC */ |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1615 | snd_hda_codec_cleanup_stream(codec, spec->cur_adc); |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1616 | spec->cur_adc = new_adc; |
| 1617 | snd_hda_codec_setup_stream(codec, new_adc, |
| 1618 | spec->cur_adc_stream_tag, 0, |
| 1619 | spec->cur_adc_format); |
| 1620 | } |
| 1621 | } |
| 1622 | |
| 1623 | /* mute internal speaker if HP is plugged */ |
| 1624 | static void cxt5051_hp_automute(struct hda_codec *codec) |
| 1625 | { |
| 1626 | struct conexant_spec *spec = codec->spec; |
| 1627 | |
| 1628 | spec->hp_present = snd_hda_codec_read(codec, 0x16, 0, |
| 1629 | AC_VERB_GET_PIN_SENSE, 0) & |
| 1630 | AC_PINSENSE_PRESENCE; |
| 1631 | cxt5051_update_speaker(codec); |
| 1632 | } |
| 1633 | |
| 1634 | /* unsolicited event for HP jack sensing */ |
| 1635 | static void cxt5051_hp_unsol_event(struct hda_codec *codec, |
| 1636 | unsigned int res) |
| 1637 | { |
Ulrich Dangel | acf26c0 | 2009-01-02 19:30:14 +0100 | [diff] [blame] | 1638 | int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1639 | switch (res >> 26) { |
| 1640 | case CONEXANT_HP_EVENT: |
| 1641 | cxt5051_hp_automute(codec); |
| 1642 | break; |
| 1643 | case CXT5051_PORTB_EVENT: |
| 1644 | cxt5051_portb_automic(codec); |
| 1645 | break; |
| 1646 | case CXT5051_PORTC_EVENT: |
| 1647 | cxt5051_portc_automic(codec); |
| 1648 | break; |
| 1649 | } |
Ulrich Dangel | acf26c0 | 2009-01-02 19:30:14 +0100 | [diff] [blame] | 1650 | conexant_report_jack(codec, nid); |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1651 | } |
| 1652 | |
| 1653 | static struct snd_kcontrol_new cxt5051_mixers[] = { |
| 1654 | HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT), |
| 1655 | HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT), |
| 1656 | HDA_CODEC_VOLUME("External Mic Volume", 0x14, 0x01, HDA_INPUT), |
| 1657 | HDA_CODEC_MUTE("External Mic Switch", 0x14, 0x01, HDA_INPUT), |
| 1658 | HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT), |
| 1659 | HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT), |
| 1660 | HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT), |
| 1661 | { |
| 1662 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1663 | .name = "Master Playback Switch", |
| 1664 | .info = cxt_eapd_info, |
| 1665 | .get = cxt_eapd_get, |
| 1666 | .put = cxt5051_hp_master_sw_put, |
| 1667 | .private_value = 0x1a, |
| 1668 | }, |
| 1669 | |
| 1670 | {} |
| 1671 | }; |
| 1672 | |
| 1673 | static struct snd_kcontrol_new cxt5051_hp_mixers[] = { |
| 1674 | HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT), |
| 1675 | HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT), |
| 1676 | HDA_CODEC_VOLUME("External Mic Volume", 0x15, 0x00, HDA_INPUT), |
| 1677 | HDA_CODEC_MUTE("External Mic Switch", 0x15, 0x00, HDA_INPUT), |
| 1678 | HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT), |
| 1679 | { |
| 1680 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1681 | .name = "Master Playback Switch", |
| 1682 | .info = cxt_eapd_info, |
| 1683 | .get = cxt_eapd_get, |
| 1684 | .put = cxt5051_hp_master_sw_put, |
| 1685 | .private_value = 0x1a, |
| 1686 | }, |
| 1687 | |
| 1688 | {} |
| 1689 | }; |
| 1690 | |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1691 | static struct snd_kcontrol_new cxt5051_hp_dv6736_mixers[] = { |
| 1692 | HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x00, HDA_INPUT), |
| 1693 | HDA_CODEC_MUTE("Mic Switch", 0x14, 0x00, HDA_INPUT), |
| 1694 | HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT), |
| 1695 | { |
| 1696 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1697 | .name = "Master Playback Switch", |
| 1698 | .info = cxt_eapd_info, |
| 1699 | .get = cxt_eapd_get, |
| 1700 | .put = cxt5051_hp_master_sw_put, |
| 1701 | .private_value = 0x1a, |
| 1702 | }, |
| 1703 | |
| 1704 | {} |
| 1705 | }; |
| 1706 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1707 | static struct hda_verb cxt5051_init_verbs[] = { |
| 1708 | /* Line in, Mic */ |
| 1709 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
| 1710 | {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
| 1711 | {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
| 1712 | {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
| 1713 | {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, |
| 1714 | {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
| 1715 | /* SPK */ |
| 1716 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1717 | {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1718 | /* HP, Amp */ |
| 1719 | {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 1720 | {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1721 | /* DAC1 */ |
| 1722 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1723 | /* Record selector: Int mic */ |
| 1724 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44}, |
| 1725 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44}, |
| 1726 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44}, |
| 1727 | /* SPDIF route: PCM */ |
| 1728 | {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 1729 | /* EAPD */ |
| 1730 | {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ |
| 1731 | {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT}, |
| 1732 | {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT}, |
| 1733 | {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT}, |
| 1734 | { } /* end */ |
| 1735 | }; |
| 1736 | |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1737 | static struct hda_verb cxt5051_hp_dv6736_init_verbs[] = { |
| 1738 | /* Line in, Mic */ |
| 1739 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
| 1740 | {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
| 1741 | {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0}, |
| 1742 | {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0}, |
| 1743 | /* SPK */ |
| 1744 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1745 | {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1746 | /* HP, Amp */ |
| 1747 | {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 1748 | {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1749 | /* DAC1 */ |
| 1750 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1751 | /* Record selector: Int mic */ |
| 1752 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44}, |
| 1753 | {0x14, AC_VERB_SET_CONNECT_SEL, 0x1}, |
| 1754 | /* SPDIF route: PCM */ |
| 1755 | {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 1756 | /* EAPD */ |
| 1757 | {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ |
| 1758 | {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT}, |
| 1759 | {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT}, |
| 1760 | { } /* end */ |
| 1761 | }; |
| 1762 | |
Aristeu Sergio Rozanski Filho | 27e0898 | 2009-02-12 17:50:37 -0500 | [diff] [blame] | 1763 | static struct hda_verb cxt5051_lenovo_x200_init_verbs[] = { |
| 1764 | /* Line in, Mic */ |
| 1765 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
| 1766 | {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
| 1767 | {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
| 1768 | {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
| 1769 | {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, |
| 1770 | {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03}, |
| 1771 | /* SPK */ |
| 1772 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 1773 | {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1774 | /* HP, Amp */ |
| 1775 | {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 1776 | {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1777 | /* Docking HP */ |
| 1778 | {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, |
| 1779 | {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 1780 | /* DAC1 */ |
| 1781 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, |
| 1782 | /* Record selector: Int mic */ |
| 1783 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44}, |
| 1784 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44}, |
| 1785 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44}, |
| 1786 | /* SPDIF route: PCM */ |
| 1787 | {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 1788 | /* EAPD */ |
| 1789 | {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ |
| 1790 | {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT}, |
| 1791 | {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT}, |
| 1792 | {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT}, |
| 1793 | {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT}, |
| 1794 | { } /* end */ |
| 1795 | }; |
| 1796 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1797 | /* initialize jack-sensing, too */ |
| 1798 | static int cxt5051_init(struct hda_codec *codec) |
| 1799 | { |
| 1800 | conexant_init(codec); |
Ulrich Dangel | acf26c0 | 2009-01-02 19:30:14 +0100 | [diff] [blame] | 1801 | conexant_init_jacks(codec); |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1802 | if (codec->patch_ops.unsol_event) { |
| 1803 | cxt5051_hp_automute(codec); |
| 1804 | cxt5051_portb_automic(codec); |
| 1805 | cxt5051_portc_automic(codec); |
| 1806 | } |
| 1807 | return 0; |
| 1808 | } |
| 1809 | |
| 1810 | |
| 1811 | enum { |
| 1812 | CXT5051_LAPTOP, /* Laptops w/ EAPD support */ |
| 1813 | CXT5051_HP, /* no docking */ |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1814 | CXT5051_HP_DV6736, /* HP without mic switch */ |
Aristeu Sergio Rozanski Filho | 27e0898 | 2009-02-12 17:50:37 -0500 | [diff] [blame] | 1815 | CXT5051_LENOVO_X200, /* Lenovo X200 laptop */ |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1816 | CXT5051_MODELS |
| 1817 | }; |
| 1818 | |
| 1819 | static const char *cxt5051_models[CXT5051_MODELS] = { |
| 1820 | [CXT5051_LAPTOP] = "laptop", |
| 1821 | [CXT5051_HP] = "hp", |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1822 | [CXT5051_HP_DV6736] = "hp-dv6736", |
Aristeu Sergio Rozanski Filho | 27e0898 | 2009-02-12 17:50:37 -0500 | [diff] [blame] | 1823 | [CXT5051_LENOVO_X200] = "lenovo-x200", |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1824 | }; |
| 1825 | |
| 1826 | static struct snd_pci_quirk cxt5051_cfg_tbl[] = { |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1827 | SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV6736", CXT5051_HP_DV6736), |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1828 | SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board", |
| 1829 | CXT5051_LAPTOP), |
| 1830 | 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] | 1831 | SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo X200", CXT5051_LENOVO_X200), |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1832 | {} |
| 1833 | }; |
| 1834 | |
| 1835 | static int patch_cxt5051(struct hda_codec *codec) |
| 1836 | { |
| 1837 | struct conexant_spec *spec; |
| 1838 | int board_config; |
| 1839 | |
| 1840 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 1841 | if (!spec) |
| 1842 | return -ENOMEM; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1843 | codec->spec = spec; |
| 1844 | |
| 1845 | codec->patch_ops = conexant_patch_ops; |
| 1846 | codec->patch_ops.init = cxt5051_init; |
| 1847 | |
| 1848 | spec->multiout.max_channels = 2; |
| 1849 | spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids); |
| 1850 | spec->multiout.dac_nids = cxt5051_dac_nids; |
| 1851 | spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT; |
| 1852 | spec->num_adc_nids = 1; /* not 2; via auto-mic switch */ |
| 1853 | spec->adc_nids = cxt5051_adc_nids; |
| 1854 | spec->num_mixers = 1; |
| 1855 | spec->mixers[0] = cxt5051_mixers; |
| 1856 | spec->num_init_verbs = 1; |
| 1857 | spec->init_verbs[0] = cxt5051_init_verbs; |
| 1858 | spec->spdif_route = 0; |
| 1859 | spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes); |
| 1860 | spec->channel_mode = cxt5051_modes; |
| 1861 | spec->cur_adc = 0; |
| 1862 | spec->cur_adc_idx = 0; |
| 1863 | |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1864 | codec->patch_ops.unsol_event = cxt5051_hp_unsol_event; |
| 1865 | |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1866 | board_config = snd_hda_check_board_config(codec, CXT5051_MODELS, |
| 1867 | cxt5051_models, |
| 1868 | cxt5051_cfg_tbl); |
| 1869 | switch (board_config) { |
| 1870 | case CXT5051_HP: |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1871 | spec->mixers[0] = cxt5051_hp_mixers; |
| 1872 | break; |
Takashi Iwai | 79d7d53 | 2009-03-04 09:03:50 +0100 | [diff] [blame] | 1873 | case CXT5051_HP_DV6736: |
| 1874 | spec->init_verbs[0] = cxt5051_hp_dv6736_init_verbs; |
| 1875 | spec->mixers[0] = cxt5051_hp_dv6736_mixers; |
| 1876 | spec->no_auto_mic = 1; |
| 1877 | break; |
Aristeu Sergio Rozanski Filho | 27e0898 | 2009-02-12 17:50:37 -0500 | [diff] [blame] | 1878 | case CXT5051_LENOVO_X200: |
| 1879 | spec->init_verbs[0] = cxt5051_lenovo_x200_init_verbs; |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1880 | break; |
| 1881 | } |
| 1882 | |
| 1883 | return 0; |
| 1884 | } |
| 1885 | |
| 1886 | |
| 1887 | /* |
| 1888 | */ |
| 1889 | |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 1890 | static struct hda_codec_preset snd_hda_preset_conexant[] = { |
Tobin Davis | 82f3004 | 2007-02-13 12:45:44 +0100 | [diff] [blame] | 1891 | { .id = 0x14f15045, .name = "CX20549 (Venice)", |
| 1892 | .patch = patch_cxt5045 }, |
| 1893 | { .id = 0x14f15047, .name = "CX20551 (Waikiki)", |
| 1894 | .patch = patch_cxt5047 }, |
Takashi Iwai | 461e2c7 | 2008-01-25 11:35:17 +0100 | [diff] [blame] | 1895 | { .id = 0x14f15051, .name = "CX20561 (Hermosa)", |
| 1896 | .patch = patch_cxt5051 }, |
Tobin Davis | c9b443d | 2006-11-14 12:13:39 +0100 | [diff] [blame] | 1897 | {} /* terminator */ |
| 1898 | }; |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 1899 | |
| 1900 | MODULE_ALIAS("snd-hda-codec-id:14f15045"); |
| 1901 | MODULE_ALIAS("snd-hda-codec-id:14f15047"); |
| 1902 | MODULE_ALIAS("snd-hda-codec-id:14f15051"); |
| 1903 | |
| 1904 | MODULE_LICENSE("GPL"); |
| 1905 | MODULE_DESCRIPTION("Conexant HD-audio codec"); |
| 1906 | |
| 1907 | static struct hda_codec_preset_list conexant_list = { |
| 1908 | .preset = snd_hda_preset_conexant, |
| 1909 | .owner = THIS_MODULE, |
| 1910 | }; |
| 1911 | |
| 1912 | static int __init patch_conexant_init(void) |
| 1913 | { |
| 1914 | return snd_hda_add_codec_preset(&conexant_list); |
| 1915 | } |
| 1916 | |
| 1917 | static void __exit patch_conexant_exit(void) |
| 1918 | { |
| 1919 | snd_hda_delete_codec_preset(&conexant_list); |
| 1920 | } |
| 1921 | |
| 1922 | module_init(patch_conexant_init) |
| 1923 | module_exit(patch_conexant_exit) |