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