blob: 0b097fa5421fdd3798e79f8a957ff72e8035a619 [file] [log] [blame]
Tobin Davisc9b443d2006-11-14 12:13:39 +01001/*
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 Davisc9b443d2006-11-14 12:13:39 +010023#include <linux/init.h>
24#include <linux/delay.h>
25#include <linux/slab.h>
26#include <linux/pci.h>
27#include <sound/core.h>
Ulrich Dangelbc7a1662009-01-02 19:30:13 +010028#include <sound/jack.h>
29
Tobin Davisc9b443d2006-11-14 12:13:39 +010030#include "hda_codec.h"
31#include "hda_local.h"
32
33#define CXT_PIN_DIR_IN 0x00
34#define CXT_PIN_DIR_OUT 0x01
35#define CXT_PIN_DIR_INOUT 0x02
36#define CXT_PIN_DIR_IN_NOMICBIAS 0x03
37#define CXT_PIN_DIR_INOUT_NOMICBIAS 0x04
38
39#define CONEXANT_HP_EVENT 0x37
40#define CONEXANT_MIC_EVENT 0x38
41
Ulrich Dangelbc7a1662009-01-02 19:30:13 +010042/* Conexant 5051 specific */
Tobin Davisc9b443d2006-11-14 12:13:39 +010043
Ulrich Dangelbc7a1662009-01-02 19:30:13 +010044#define CXT5051_SPDIF_OUT 0x1C
45#define CXT5051_PORTB_EVENT 0x38
46#define CXT5051_PORTC_EVENT 0x39
47
48
49struct conexant_jack {
50
51 hda_nid_t nid;
52 int type;
53 struct snd_jack *jack;
54
55};
Tobin Davisc9b443d2006-11-14 12:13:39 +010056
57struct conexant_spec {
58
59 struct snd_kcontrol_new *mixers[5];
60 int num_mixers;
Takashi Iwaidd5746a2009-03-10 14:30:40 +010061 hda_nid_t vmaster_nid;
Tobin Davisc9b443d2006-11-14 12:13:39 +010062
63 const struct hda_verb *init_verbs[5]; /* initialization verbs
64 * don't forget NULL
65 * termination!
66 */
67 unsigned int num_init_verbs;
68
69 /* playback */
70 struct hda_multi_out multiout; /* playback set-up
71 * max_channels, dacs must be set
72 * dig_out_nid and hp_nid are optional
73 */
74 unsigned int cur_eapd;
Tobin Davis82f30042007-02-13 12:45:44 +010075 unsigned int hp_present;
Takashi Iwai79d7d532009-03-04 09:03:50 +010076 unsigned int no_auto_mic;
Tobin Davisc9b443d2006-11-14 12:13:39 +010077 unsigned int need_dac_fix;
78
79 /* capture */
80 unsigned int num_adc_nids;
81 hda_nid_t *adc_nids;
82 hda_nid_t dig_in_nid; /* digital-in NID; optional */
83
Takashi Iwai461e2c72008-01-25 11:35:17 +010084 unsigned int cur_adc_idx;
85 hda_nid_t cur_adc;
86 unsigned int cur_adc_stream_tag;
87 unsigned int cur_adc_format;
88
Tobin Davisc9b443d2006-11-14 12:13:39 +010089 /* capture source */
90 const struct hda_input_mux *input_mux;
91 hda_nid_t *capsrc_nids;
92 unsigned int cur_mux[3];
93
94 /* channel model */
95 const struct hda_channel_mode *channel_mode;
96 int num_channel_mode;
97
98 /* PCM information */
99 struct hda_pcm pcm_rec[2]; /* used in build_pcms() */
100
Tobin Davisc9b443d2006-11-14 12:13:39 +0100101 unsigned int spdif_route;
102
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100103 /* jack detection */
104 struct snd_array jacks;
105
Tobin Davisc9b443d2006-11-14 12:13:39 +0100106 /* dynamic controls, init_verbs and input_mux */
107 struct auto_pin_cfg autocfg;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100108 struct hda_input_mux private_imux;
Takashi Iwai41923e42007-10-22 17:20:10 +0200109 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
Tobin Davisc9b443d2006-11-14 12:13:39 +0100110
Daniel Drake0fb67e92009-07-16 14:46:57 +0100111 unsigned int dell_automute;
112 unsigned int port_d_mode;
Daniel Drakedbaccc02009-11-09 15:17:24 +0000113 unsigned char ext_mic_bias;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100114};
115
116static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo,
117 struct hda_codec *codec,
118 struct snd_pcm_substream *substream)
119{
120 struct conexant_spec *spec = codec->spec;
Takashi Iwai9a081602008-02-12 18:37:26 +0100121 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
122 hinfo);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100123}
124
125static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
126 struct hda_codec *codec,
127 unsigned int stream_tag,
128 unsigned int format,
129 struct snd_pcm_substream *substream)
130{
131 struct conexant_spec *spec = codec->spec;
132 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
133 stream_tag,
134 format, substream);
135}
136
137static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
138 struct hda_codec *codec,
139 struct snd_pcm_substream *substream)
140{
141 struct conexant_spec *spec = codec->spec;
142 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
143}
144
145/*
146 * Digital out
147 */
148static int conexant_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
149 struct hda_codec *codec,
150 struct snd_pcm_substream *substream)
151{
152 struct conexant_spec *spec = codec->spec;
153 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
154}
155
156static int conexant_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
157 struct hda_codec *codec,
158 struct snd_pcm_substream *substream)
159{
160 struct conexant_spec *spec = codec->spec;
161 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
162}
163
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200164static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
165 struct hda_codec *codec,
166 unsigned int stream_tag,
167 unsigned int format,
168 struct snd_pcm_substream *substream)
169{
170 struct conexant_spec *spec = codec->spec;
171 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
172 stream_tag,
173 format, substream);
174}
175
Tobin Davisc9b443d2006-11-14 12:13:39 +0100176/*
177 * Analog capture
178 */
179static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
180 struct hda_codec *codec,
181 unsigned int stream_tag,
182 unsigned int format,
183 struct snd_pcm_substream *substream)
184{
185 struct conexant_spec *spec = codec->spec;
186 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
187 stream_tag, 0, format);
188 return 0;
189}
190
191static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
192 struct hda_codec *codec,
193 struct snd_pcm_substream *substream)
194{
195 struct conexant_spec *spec = codec->spec;
Takashi Iwai888afa12008-03-18 09:57:50 +0100196 snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100197 return 0;
198}
199
200
201
202static struct hda_pcm_stream conexant_pcm_analog_playback = {
203 .substreams = 1,
204 .channels_min = 2,
205 .channels_max = 2,
206 .nid = 0, /* fill later */
207 .ops = {
208 .open = conexant_playback_pcm_open,
209 .prepare = conexant_playback_pcm_prepare,
210 .cleanup = conexant_playback_pcm_cleanup
211 },
212};
213
214static struct hda_pcm_stream conexant_pcm_analog_capture = {
215 .substreams = 1,
216 .channels_min = 2,
217 .channels_max = 2,
218 .nid = 0, /* fill later */
219 .ops = {
220 .prepare = conexant_capture_pcm_prepare,
221 .cleanup = conexant_capture_pcm_cleanup
222 },
223};
224
225
226static struct hda_pcm_stream conexant_pcm_digital_playback = {
227 .substreams = 1,
228 .channels_min = 2,
229 .channels_max = 2,
230 .nid = 0, /* fill later */
231 .ops = {
232 .open = conexant_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200233 .close = conexant_dig_playback_pcm_close,
234 .prepare = conexant_dig_playback_pcm_prepare
Tobin Davisc9b443d2006-11-14 12:13:39 +0100235 },
236};
237
238static struct hda_pcm_stream conexant_pcm_digital_capture = {
239 .substreams = 1,
240 .channels_min = 2,
241 .channels_max = 2,
242 /* NID is set in alc_build_pcms */
243};
244
Takashi Iwai461e2c72008-01-25 11:35:17 +0100245static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
246 struct hda_codec *codec,
247 unsigned int stream_tag,
248 unsigned int format,
249 struct snd_pcm_substream *substream)
250{
251 struct conexant_spec *spec = codec->spec;
252 spec->cur_adc = spec->adc_nids[spec->cur_adc_idx];
253 spec->cur_adc_stream_tag = stream_tag;
254 spec->cur_adc_format = format;
255 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
256 return 0;
257}
258
259static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
260 struct hda_codec *codec,
261 struct snd_pcm_substream *substream)
262{
263 struct conexant_spec *spec = codec->spec;
Takashi Iwai888afa12008-03-18 09:57:50 +0100264 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
Takashi Iwai461e2c72008-01-25 11:35:17 +0100265 spec->cur_adc = 0;
266 return 0;
267}
268
269static struct hda_pcm_stream cx5051_pcm_analog_capture = {
270 .substreams = 1,
271 .channels_min = 2,
272 .channels_max = 2,
273 .nid = 0, /* fill later */
274 .ops = {
275 .prepare = cx5051_capture_pcm_prepare,
276 .cleanup = cx5051_capture_pcm_cleanup
277 },
278};
279
Tobin Davisc9b443d2006-11-14 12:13:39 +0100280static int conexant_build_pcms(struct hda_codec *codec)
281{
282 struct conexant_spec *spec = codec->spec;
283 struct hda_pcm *info = spec->pcm_rec;
284
285 codec->num_pcms = 1;
286 codec->pcm_info = info;
287
288 info->name = "CONEXANT Analog";
289 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = conexant_pcm_analog_playback;
290 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
291 spec->multiout.max_channels;
292 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
293 spec->multiout.dac_nids[0];
Takashi Iwai461e2c72008-01-25 11:35:17 +0100294 if (codec->vendor_id == 0x14f15051)
295 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
296 cx5051_pcm_analog_capture;
297 else
298 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
299 conexant_pcm_analog_capture;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100300 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids;
301 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
302
303 if (spec->multiout.dig_out_nid) {
304 info++;
305 codec->num_pcms++;
306 info->name = "Conexant Digital";
Takashi Iwai7ba72ba2008-02-06 14:03:20 +0100307 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100308 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
309 conexant_pcm_digital_playback;
310 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
311 spec->multiout.dig_out_nid;
312 if (spec->dig_in_nid) {
313 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
314 conexant_pcm_digital_capture;
315 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
316 spec->dig_in_nid;
317 }
318 }
319
320 return 0;
321}
322
323static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol,
324 struct snd_ctl_elem_info *uinfo)
325{
326 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
327 struct conexant_spec *spec = codec->spec;
328
329 return snd_hda_input_mux_info(spec->input_mux, uinfo);
330}
331
332static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol,
333 struct snd_ctl_elem_value *ucontrol)
334{
335 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
336 struct conexant_spec *spec = codec->spec;
337 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
338
339 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
340 return 0;
341}
342
343static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol,
344 struct snd_ctl_elem_value *ucontrol)
345{
346 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
347 struct conexant_spec *spec = codec->spec;
348 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
349
350 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
351 spec->capsrc_nids[adc_idx],
352 &spec->cur_mux[adc_idx]);
353}
354
Takashi Iwai8c8145b2009-06-22 17:00:38 +0200355#ifdef CONFIG_SND_HDA_INPUT_JACK
Takashi Iwai95c09092009-04-14 16:15:29 +0200356static void conexant_free_jack_priv(struct snd_jack *jack)
357{
358 struct conexant_jack *jacks = jack->private_data;
359 jacks->nid = 0;
360 jacks->jack = NULL;
361}
362
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100363static int conexant_add_jack(struct hda_codec *codec,
364 hda_nid_t nid, int type)
365{
366 struct conexant_spec *spec;
367 struct conexant_jack *jack;
368 const char *name;
Takashi Iwai95c09092009-04-14 16:15:29 +0200369 int err;
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100370
371 spec = codec->spec;
372 snd_array_init(&spec->jacks, sizeof(*jack), 32);
373 jack = snd_array_new(&spec->jacks);
374 name = (type == SND_JACK_HEADPHONE) ? "Headphone" : "Mic" ;
375
376 if (!jack)
377 return -ENOMEM;
378
379 jack->nid = nid;
380 jack->type = type;
381
Takashi Iwai95c09092009-04-14 16:15:29 +0200382 err = snd_jack_new(codec->bus->card, name, type, &jack->jack);
383 if (err < 0)
384 return err;
385 jack->jack->private_data = jack;
386 jack->jack->private_free = conexant_free_jack_priv;
387 return 0;
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100388}
389
390static void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid)
391{
392 struct conexant_spec *spec = codec->spec;
393 struct conexant_jack *jacks = spec->jacks.list;
394
395 if (jacks) {
396 int i;
397 for (i = 0; i < spec->jacks.used; i++) {
398 if (jacks->nid == nid) {
399 unsigned int present;
Takashi Iwaid56757a2009-11-18 08:00:14 +0100400 present = snd_hda_jack_detect(codec, nid);
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100401
402 present = (present) ? jacks->type : 0 ;
403
404 snd_jack_report(jacks->jack,
405 present);
406 }
407 jacks++;
408 }
409 }
410}
411
412static int conexant_init_jacks(struct hda_codec *codec)
413{
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100414 struct conexant_spec *spec = codec->spec;
415 int i;
416
417 for (i = 0; i < spec->num_init_verbs; i++) {
418 const struct hda_verb *hv;
419
420 hv = spec->init_verbs[i];
421 while (hv->nid) {
422 int err = 0;
423 switch (hv->param ^ AC_USRSP_EN) {
424 case CONEXANT_HP_EVENT:
425 err = conexant_add_jack(codec, hv->nid,
426 SND_JACK_HEADPHONE);
427 conexant_report_jack(codec, hv->nid);
428 break;
429 case CXT5051_PORTC_EVENT:
430 case CONEXANT_MIC_EVENT:
431 err = conexant_add_jack(codec, hv->nid,
432 SND_JACK_MICROPHONE);
433 conexant_report_jack(codec, hv->nid);
434 break;
435 }
436 if (err < 0)
437 return err;
438 ++hv;
439 }
440 }
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100441 return 0;
442
443}
Takashi Iwai5801f992009-01-27 12:53:22 +0100444#else
445static inline void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid)
446{
447}
448
449static inline int conexant_init_jacks(struct hda_codec *codec)
450{
451 return 0;
452}
453#endif
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100454
Tobin Davisc9b443d2006-11-14 12:13:39 +0100455static int conexant_init(struct hda_codec *codec)
456{
457 struct conexant_spec *spec = codec->spec;
458 int i;
459
460 for (i = 0; i < spec->num_init_verbs; i++)
461 snd_hda_sequence_write(codec, spec->init_verbs[i]);
462 return 0;
463}
464
465static void conexant_free(struct hda_codec *codec)
466{
Takashi Iwai8c8145b2009-06-22 17:00:38 +0200467#ifdef CONFIG_SND_HDA_INPUT_JACK
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100468 struct conexant_spec *spec = codec->spec;
469 if (spec->jacks.list) {
470 struct conexant_jack *jacks = spec->jacks.list;
471 int i;
Takashi Iwai95c09092009-04-14 16:15:29 +0200472 for (i = 0; i < spec->jacks.used; i++, jacks++) {
473 if (jacks->jack)
474 snd_device_free(codec->bus->card, jacks->jack);
475 }
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100476 snd_array_free(&spec->jacks);
477 }
478#endif
Tobin Davisc9b443d2006-11-14 12:13:39 +0100479 kfree(codec->spec);
480}
481
Takashi Iwaib880c742009-03-10 14:41:05 +0100482static struct snd_kcontrol_new cxt_capture_mixers[] = {
483 {
484 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
485 .name = "Capture Source",
486 .info = conexant_mux_enum_info,
487 .get = conexant_mux_enum_get,
488 .put = conexant_mux_enum_put
489 },
490 {}
491};
492
Takashi Iwaidd5746a2009-03-10 14:30:40 +0100493static const char *slave_vols[] = {
494 "Headphone Playback Volume",
495 "Speaker Playback Volume",
496 NULL
497};
498
499static const char *slave_sws[] = {
500 "Headphone Playback Switch",
501 "Speaker Playback Switch",
502 NULL
503};
504
Tobin Davisc9b443d2006-11-14 12:13:39 +0100505static int conexant_build_controls(struct hda_codec *codec)
506{
507 struct conexant_spec *spec = codec->spec;
508 unsigned int i;
509 int err;
510
511 for (i = 0; i < spec->num_mixers; i++) {
512 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
513 if (err < 0)
514 return err;
515 }
516 if (spec->multiout.dig_out_nid) {
517 err = snd_hda_create_spdif_out_ctls(codec,
518 spec->multiout.dig_out_nid);
519 if (err < 0)
520 return err;
Takashi Iwai9a081602008-02-12 18:37:26 +0100521 err = snd_hda_create_spdif_share_sw(codec,
522 &spec->multiout);
523 if (err < 0)
524 return err;
525 spec->multiout.share_spdif = 1;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100526 }
527 if (spec->dig_in_nid) {
528 err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid);
529 if (err < 0)
530 return err;
531 }
Takashi Iwaidd5746a2009-03-10 14:30:40 +0100532
533 /* if we have no master control, let's create it */
534 if (spec->vmaster_nid &&
535 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
536 unsigned int vmaster_tlv[4];
537 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
538 HDA_OUTPUT, vmaster_tlv);
539 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
540 vmaster_tlv, slave_vols);
541 if (err < 0)
542 return err;
543 }
544 if (spec->vmaster_nid &&
545 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
546 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
547 NULL, slave_sws);
548 if (err < 0)
549 return err;
550 }
551
Takashi Iwaib880c742009-03-10 14:41:05 +0100552 if (spec->input_mux) {
553 err = snd_hda_add_new_ctls(codec, cxt_capture_mixers);
554 if (err < 0)
555 return err;
556 }
557
Tobin Davisc9b443d2006-11-14 12:13:39 +0100558 return 0;
559}
560
561static struct hda_codec_ops conexant_patch_ops = {
562 .build_controls = conexant_build_controls,
563 .build_pcms = conexant_build_pcms,
564 .init = conexant_init,
565 .free = conexant_free,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100566};
567
568/*
569 * EAPD control
570 * the private value = nid | (invert << 8)
571 */
572
Takashi Iwaia5ce8892007-07-23 15:42:26 +0200573#define cxt_eapd_info snd_ctl_boolean_mono_info
Tobin Davisc9b443d2006-11-14 12:13:39 +0100574
Tobin Davis82f30042007-02-13 12:45:44 +0100575static int cxt_eapd_get(struct snd_kcontrol *kcontrol,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100576 struct snd_ctl_elem_value *ucontrol)
577{
578 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
579 struct conexant_spec *spec = codec->spec;
580 int invert = (kcontrol->private_value >> 8) & 1;
581 if (invert)
582 ucontrol->value.integer.value[0] = !spec->cur_eapd;
583 else
584 ucontrol->value.integer.value[0] = spec->cur_eapd;
585 return 0;
Tobin Davis82f30042007-02-13 12:45:44 +0100586
Tobin Davisc9b443d2006-11-14 12:13:39 +0100587}
588
Tobin Davis82f30042007-02-13 12:45:44 +0100589static int cxt_eapd_put(struct snd_kcontrol *kcontrol,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100590 struct snd_ctl_elem_value *ucontrol)
591{
592 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
593 struct conexant_spec *spec = codec->spec;
594 int invert = (kcontrol->private_value >> 8) & 1;
595 hda_nid_t nid = kcontrol->private_value & 0xff;
596 unsigned int eapd;
Tobin Davis82f30042007-02-13 12:45:44 +0100597
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100598 eapd = !!ucontrol->value.integer.value[0];
Tobin Davisc9b443d2006-11-14 12:13:39 +0100599 if (invert)
600 eapd = !eapd;
Takashi Iwai82beb8f2007-08-10 17:09:26 +0200601 if (eapd == spec->cur_eapd)
Tobin Davisc9b443d2006-11-14 12:13:39 +0100602 return 0;
Tobin Davis82f30042007-02-13 12:45:44 +0100603
Tobin Davisc9b443d2006-11-14 12:13:39 +0100604 spec->cur_eapd = eapd;
Takashi Iwai82beb8f2007-08-10 17:09:26 +0200605 snd_hda_codec_write_cache(codec, nid,
606 0, AC_VERB_SET_EAPD_BTLENABLE,
607 eapd ? 0x02 : 0x00);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100608 return 1;
609}
610
Takashi Iwai86d72bd2006-11-28 11:33:10 +0100611/* controls for test mode */
612#ifdef CONFIG_SND_DEBUG
613
Tobin Davis82f30042007-02-13 12:45:44 +0100614#define CXT_EAPD_SWITCH(xname, nid, mask) \
615 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
616 .info = cxt_eapd_info, \
617 .get = cxt_eapd_get, \
618 .put = cxt_eapd_put, \
619 .private_value = nid | (mask<<16) }
620
621
622
Tobin Davisc9b443d2006-11-14 12:13:39 +0100623static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol,
624 struct snd_ctl_elem_info *uinfo)
625{
626 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
627 struct conexant_spec *spec = codec->spec;
628 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
629 spec->num_channel_mode);
630}
631
632static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol,
633 struct snd_ctl_elem_value *ucontrol)
634{
635 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
636 struct conexant_spec *spec = codec->spec;
637 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
638 spec->num_channel_mode,
639 spec->multiout.max_channels);
640}
641
642static int conexant_ch_mode_put(struct snd_kcontrol *kcontrol,
643 struct snd_ctl_elem_value *ucontrol)
644{
645 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
646 struct conexant_spec *spec = codec->spec;
647 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
648 spec->num_channel_mode,
649 &spec->multiout.max_channels);
650 if (err >= 0 && spec->need_dac_fix)
651 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
652 return err;
653}
654
655#define CXT_PIN_MODE(xname, nid, dir) \
656 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
657 .info = conexant_ch_mode_info, \
658 .get = conexant_ch_mode_get, \
659 .put = conexant_ch_mode_put, \
660 .private_value = nid | (dir<<16) }
661
Takashi Iwai86d72bd2006-11-28 11:33:10 +0100662#endif /* CONFIG_SND_DEBUG */
663
Tobin Davisc9b443d2006-11-14 12:13:39 +0100664/* Conexant 5045 specific */
665
666static hda_nid_t cxt5045_dac_nids[1] = { 0x19 };
667static hda_nid_t cxt5045_adc_nids[1] = { 0x1a };
668static hda_nid_t cxt5045_capsrc_nids[1] = { 0x1a };
Takashi Iwaicbef9782008-02-22 18:36:46 +0100669#define CXT5045_SPDIF_OUT 0x18
Tobin Davisc9b443d2006-11-14 12:13:39 +0100670
Tobin Davis5cd57522006-11-20 17:42:09 +0100671static struct hda_channel_mode cxt5045_modes[1] = {
672 { 2, NULL },
673};
Tobin Davisc9b443d2006-11-14 12:13:39 +0100674
675static struct hda_input_mux cxt5045_capture_source = {
676 .num_items = 2,
677 .items = {
Tobin Davis82f30042007-02-13 12:45:44 +0100678 { "IntMic", 0x1 },
Jiang zhef4beee92008-01-17 11:19:26 +0100679 { "ExtMic", 0x2 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100680 }
681};
682
Jiang Zhe5218c892008-01-17 11:18:41 +0100683static struct hda_input_mux cxt5045_capture_source_benq = {
Lukasz Marcinowski22e14132009-09-22 21:42:40 +0200684 .num_items = 5,
Jiang Zhe5218c892008-01-17 11:18:41 +0100685 .items = {
686 { "IntMic", 0x1 },
687 { "ExtMic", 0x2 },
688 { "LineIn", 0x3 },
Lukasz Marcinowski22e14132009-09-22 21:42:40 +0200689 { "CD", 0x4 },
690 { "Mixer", 0x0 },
Jiang Zhe5218c892008-01-17 11:18:41 +0100691 }
692};
693
Jiang zhe2de3c232008-03-06 11:09:09 +0100694static struct hda_input_mux cxt5045_capture_source_hp530 = {
695 .num_items = 2,
696 .items = {
697 { "ExtMic", 0x1 },
698 { "IntMic", 0x2 },
699 }
700};
701
Tobin Davisc9b443d2006-11-14 12:13:39 +0100702/* turn on/off EAPD (+ mute HP) as a master switch */
703static int cxt5045_hp_master_sw_put(struct snd_kcontrol *kcontrol,
704 struct snd_ctl_elem_value *ucontrol)
705{
706 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
707 struct conexant_spec *spec = codec->spec;
Tobin Davis82f30042007-02-13 12:45:44 +0100708 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100709
Tobin Davis82f30042007-02-13 12:45:44 +0100710 if (!cxt_eapd_put(kcontrol, ucontrol))
Tobin Davisc9b443d2006-11-14 12:13:39 +0100711 return 0;
712
Tobin Davis82f30042007-02-13 12:45:44 +0100713 /* toggle internal speakers mute depending of presence of
714 * the headphone jack
715 */
Takashi Iwai47fd8302007-08-10 17:11:07 +0200716 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
717 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
718 HDA_AMP_MUTE, bits);
Tobin Davis7f296732007-03-12 11:39:01 +0100719
Takashi Iwai47fd8302007-08-10 17:11:07 +0200720 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
721 snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0,
722 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100723 return 1;
724}
725
726/* bind volumes of both NID 0x10 and 0x11 */
Takashi Iwaicca3b372007-08-10 17:12:15 +0200727static struct hda_bind_ctls cxt5045_hp_bind_master_vol = {
728 .ops = &snd_hda_bind_vol,
729 .values = {
730 HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT),
731 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT),
732 0
733 },
734};
Tobin Davisc9b443d2006-11-14 12:13:39 +0100735
Tobin Davis7f296732007-03-12 11:39:01 +0100736/* toggle input of built-in and mic jack appropriately */
737static void cxt5045_hp_automic(struct hda_codec *codec)
738{
739 static struct hda_verb mic_jack_on[] = {
740 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
741 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
742 {}
743 };
744 static struct hda_verb mic_jack_off[] = {
745 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
746 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
747 {}
748 };
749 unsigned int present;
750
Takashi Iwaid56757a2009-11-18 08:00:14 +0100751 present = snd_hda_jack_detect(codec, 0x12);
Tobin Davis7f296732007-03-12 11:39:01 +0100752 if (present)
753 snd_hda_sequence_write(codec, mic_jack_on);
754 else
755 snd_hda_sequence_write(codec, mic_jack_off);
756}
757
Tobin Davisc9b443d2006-11-14 12:13:39 +0100758
759/* mute internal speaker if HP is plugged */
760static void cxt5045_hp_automute(struct hda_codec *codec)
761{
Tobin Davis82f30042007-02-13 12:45:44 +0100762 struct conexant_spec *spec = codec->spec;
Tobin Davisdd87da12007-02-26 16:07:42 +0100763 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100764
Takashi Iwaid56757a2009-11-18 08:00:14 +0100765 spec->hp_present = snd_hda_jack_detect(codec, 0x11);
Tobin Davisdd87da12007-02-26 16:07:42 +0100766
Takashi Iwai47fd8302007-08-10 17:11:07 +0200767 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
768 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
769 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100770}
771
772/* unsolicited event for HP jack sensing */
773static void cxt5045_hp_unsol_event(struct hda_codec *codec,
774 unsigned int res)
775{
776 res >>= 26;
777 switch (res) {
778 case CONEXANT_HP_EVENT:
779 cxt5045_hp_automute(codec);
780 break;
Tobin Davis7f296732007-03-12 11:39:01 +0100781 case CONEXANT_MIC_EVENT:
782 cxt5045_hp_automic(codec);
783 break;
784
Tobin Davisc9b443d2006-11-14 12:13:39 +0100785 }
786}
787
788static struct snd_kcontrol_new cxt5045_mixers[] = {
Takashi Iwaic8229c32007-10-19 08:06:21 +0200789 HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
790 HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
791 HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
792 HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
793 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
794 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
795 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
796 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
797 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
798 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
Takashi Iwaicca3b372007-08-10 17:12:15 +0200799 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100800 {
801 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
802 .name = "Master Playback Switch",
Tobin Davis82f30042007-02-13 12:45:44 +0100803 .info = cxt_eapd_info,
804 .get = cxt_eapd_get,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100805 .put = cxt5045_hp_master_sw_put,
Tobin Davis82f30042007-02-13 12:45:44 +0100806 .private_value = 0x10,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100807 },
808
809 {}
810};
811
Jiang Zhe5218c892008-01-17 11:18:41 +0100812static struct snd_kcontrol_new cxt5045_benq_mixers[] = {
Lukasz Marcinowski22e14132009-09-22 21:42:40 +0200813 HDA_CODEC_VOLUME("CD Capture Volume", 0x1a, 0x04, HDA_INPUT),
814 HDA_CODEC_MUTE("CD Capture Switch", 0x1a, 0x04, HDA_INPUT),
815 HDA_CODEC_VOLUME("CD Playback Volume", 0x17, 0x4, HDA_INPUT),
816 HDA_CODEC_MUTE("CD Playback Switch", 0x17, 0x4, HDA_INPUT),
817
Jiang Zhe5218c892008-01-17 11:18:41 +0100818 HDA_CODEC_VOLUME("Line In Capture Volume", 0x1a, 0x03, HDA_INPUT),
819 HDA_CODEC_MUTE("Line In Capture Switch", 0x1a, 0x03, HDA_INPUT),
820 HDA_CODEC_VOLUME("Line In Playback Volume", 0x17, 0x3, HDA_INPUT),
821 HDA_CODEC_MUTE("Line In Playback Switch", 0x17, 0x3, HDA_INPUT),
822
Lukasz Marcinowski22e14132009-09-22 21:42:40 +0200823 HDA_CODEC_VOLUME("Mixer Capture Volume", 0x1a, 0x0, HDA_INPUT),
824 HDA_CODEC_MUTE("Mixer Capture Switch", 0x1a, 0x0, HDA_INPUT),
825
Jiang Zhe5218c892008-01-17 11:18:41 +0100826 {}
827};
828
Jiang zhe2de3c232008-03-06 11:09:09 +0100829static struct snd_kcontrol_new cxt5045_mixers_hp530[] = {
Jiang zhe2de3c232008-03-06 11:09:09 +0100830 HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
831 HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
832 HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
833 HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
834 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
835 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
836 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
837 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
838 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
839 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
840 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
841 {
842 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
843 .name = "Master Playback Switch",
844 .info = cxt_eapd_info,
845 .get = cxt_eapd_get,
846 .put = cxt5045_hp_master_sw_put,
847 .private_value = 0x10,
848 },
849
850 {}
851};
852
Tobin Davisc9b443d2006-11-14 12:13:39 +0100853static struct hda_verb cxt5045_init_verbs[] = {
854 /* Line in, Mic */
Takashi Iwai4090dff2008-07-12 12:02:45 +0200855 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
Tobin Davis7f296732007-03-12 11:39:01 +0100856 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100857 /* HP, Amp */
Takashi Iwaic8229c32007-10-19 08:06:21 +0200858 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
859 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
860 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
861 {0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
862 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
863 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
864 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
865 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
866 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
Tobin Davis82f30042007-02-13 12:45:44 +0100867 /* Record selector: Int mic */
Tobin Davis7f296732007-03-12 11:39:01 +0100868 {0x1a, AC_VERB_SET_CONNECT_SEL,0x1},
Tobin Davis82f30042007-02-13 12:45:44 +0100869 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100870 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
871 /* SPDIF route: PCM */
Takashi Iwaicbef9782008-02-22 18:36:46 +0100872 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Tobin Davisc9b443d2006-11-14 12:13:39 +0100873 { 0x13, AC_VERB_SET_CONNECT_SEL, 0x0 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100874 /* EAPD */
Tobin Davis82f30042007-02-13 12:45:44 +0100875 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2 }, /* default on */
Tobin Davisc9b443d2006-11-14 12:13:39 +0100876 { } /* end */
877};
878
Jiang Zhe5218c892008-01-17 11:18:41 +0100879static struct hda_verb cxt5045_benq_init_verbs[] = {
880 /* Int Mic, Mic */
881 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
882 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
883 /* Line In,HP, Amp */
884 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
885 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
886 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
887 {0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
888 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
889 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
890 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
891 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
892 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
893 /* Record selector: Int mic */
894 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x1},
895 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
896 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
897 /* SPDIF route: PCM */
Takashi Iwaicbef9782008-02-22 18:36:46 +0100898 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Jiang Zhe5218c892008-01-17 11:18:41 +0100899 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
900 /* EAPD */
901 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
902 { } /* end */
903};
Tobin Davis7f296732007-03-12 11:39:01 +0100904
905static struct hda_verb cxt5045_hp_sense_init_verbs[] = {
906 /* pin sensing on HP jack */
907 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
Takashi Iwaid3091fa2007-03-28 15:11:53 +0200908 { } /* end */
Tobin Davis7f296732007-03-12 11:39:01 +0100909};
910
911static struct hda_verb cxt5045_mic_sense_init_verbs[] = {
912 /* pin sensing on HP jack */
913 {0x12, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
Takashi Iwaid3091fa2007-03-28 15:11:53 +0200914 { } /* end */
Tobin Davis7f296732007-03-12 11:39:01 +0100915};
916
Tobin Davisc9b443d2006-11-14 12:13:39 +0100917#ifdef CONFIG_SND_DEBUG
918/* Test configuration for debugging, modelled after the ALC260 test
919 * configuration.
920 */
921static struct hda_input_mux cxt5045_test_capture_source = {
922 .num_items = 5,
923 .items = {
924 { "MIXER", 0x0 },
925 { "MIC1 pin", 0x1 },
926 { "LINE1 pin", 0x2 },
927 { "HP-OUT pin", 0x3 },
928 { "CD pin", 0x4 },
929 },
930};
931
932static struct snd_kcontrol_new cxt5045_test_mixer[] = {
933
934 /* Output controls */
Tobin Davisc9b443d2006-11-14 12:13:39 +0100935 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x10, 0x0, HDA_OUTPUT),
936 HDA_CODEC_MUTE("Speaker Playback Switch", 0x10, 0x0, HDA_OUTPUT),
Tobin Davis7f296732007-03-12 11:39:01 +0100937 HDA_CODEC_VOLUME("Node 11 Playback Volume", 0x11, 0x0, HDA_OUTPUT),
938 HDA_CODEC_MUTE("Node 11 Playback Switch", 0x11, 0x0, HDA_OUTPUT),
939 HDA_CODEC_VOLUME("Node 12 Playback Volume", 0x12, 0x0, HDA_OUTPUT),
940 HDA_CODEC_MUTE("Node 12 Playback Switch", 0x12, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100941
942 /* Modes for retasking pin widgets */
943 CXT_PIN_MODE("HP-OUT pin mode", 0x11, CXT_PIN_DIR_INOUT),
944 CXT_PIN_MODE("LINE1 pin mode", 0x12, CXT_PIN_DIR_INOUT),
945
Tobin Davis82f30042007-02-13 12:45:44 +0100946 /* EAPD Switch Control */
947 CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0),
948
Tobin Davisc9b443d2006-11-14 12:13:39 +0100949 /* Loopback mixer controls */
Tobin Davisc9b443d2006-11-14 12:13:39 +0100950
Tobin Davis7f296732007-03-12 11:39:01 +0100951 HDA_CODEC_VOLUME("Mixer-1 Volume", 0x17, 0x0, HDA_INPUT),
952 HDA_CODEC_MUTE("Mixer-1 Switch", 0x17, 0x0, HDA_INPUT),
953 HDA_CODEC_VOLUME("Mixer-2 Volume", 0x17, 0x1, HDA_INPUT),
954 HDA_CODEC_MUTE("Mixer-2 Switch", 0x17, 0x1, HDA_INPUT),
955 HDA_CODEC_VOLUME("Mixer-3 Volume", 0x17, 0x2, HDA_INPUT),
956 HDA_CODEC_MUTE("Mixer-3 Switch", 0x17, 0x2, HDA_INPUT),
957 HDA_CODEC_VOLUME("Mixer-4 Volume", 0x17, 0x3, HDA_INPUT),
958 HDA_CODEC_MUTE("Mixer-4 Switch", 0x17, 0x3, HDA_INPUT),
959 HDA_CODEC_VOLUME("Mixer-5 Volume", 0x17, 0x4, HDA_INPUT),
960 HDA_CODEC_MUTE("Mixer-5 Switch", 0x17, 0x4, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100961 {
962 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
963 .name = "Input Source",
964 .info = conexant_mux_enum_info,
965 .get = conexant_mux_enum_get,
966 .put = conexant_mux_enum_put,
967 },
Tobin Davisfb3409e2007-05-17 09:40:47 +0200968 /* Audio input controls */
969 HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
970 HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
971 HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
972 HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
973 HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
974 HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
975 HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
976 HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
977 HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
978 HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100979 { } /* end */
980};
981
982static struct hda_verb cxt5045_test_init_verbs[] = {
Tobin Davis7f296732007-03-12 11:39:01 +0100983 /* Set connections */
984 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
985 { 0x11, AC_VERB_SET_CONNECT_SEL, 0x0 },
986 { 0x12, AC_VERB_SET_CONNECT_SEL, 0x0 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100987 /* Enable retasking pins as output, initially without power amp */
988 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Tobin Davis7f296732007-03-12 11:39:01 +0100989 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Tobin Davisc9b443d2006-11-14 12:13:39 +0100990
991 /* Disable digital (SPDIF) pins initially, but users can enable
992 * them via a mixer switch. In the case of SPDIF-out, this initverb
993 * payload also sets the generation to 0, output to be in "consumer"
994 * PCM format, copyright asserted, no pre-emphasis and no validity
995 * control.
996 */
Takashi Iwaicbef9782008-02-22 18:36:46 +0100997 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
998 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
Tobin Davisc9b443d2006-11-14 12:13:39 +0100999
1000 /* Start with output sum widgets muted and their output gains at min */
1001 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1002 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1003
1004 /* Unmute retasking pin widget output buffers since the default
1005 * state appears to be output. As the pin mode is changed by the
1006 * user the pin mode control will take care of enabling the pin's
1007 * input/output buffers as needed.
1008 */
1009 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1010 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1011
1012 /* Mute capture amp left and right */
1013 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1014
1015 /* Set ADC connection select to match default mixer setting (mic1
1016 * pin)
1017 */
1018 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
Tobin Davis7f296732007-03-12 11:39:01 +01001019 {0x17, AC_VERB_SET_CONNECT_SEL, 0x00},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001020
1021 /* Mute all inputs to mixer widget (even unconnected ones) */
1022 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* Mixer pin */
1023 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* Mic1 pin */
1024 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* Line pin */
1025 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* HP pin */
1026 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1027
1028 { }
1029};
1030#endif
1031
1032
1033/* initialize jack-sensing, too */
1034static int cxt5045_init(struct hda_codec *codec)
1035{
1036 conexant_init(codec);
1037 cxt5045_hp_automute(codec);
1038 return 0;
1039}
1040
1041
1042enum {
Marc Boucher15908c32008-01-22 15:15:59 +01001043 CXT5045_LAPTOP_HPSENSE,
1044 CXT5045_LAPTOP_MICSENSE,
1045 CXT5045_LAPTOP_HPMICSENSE,
Jiang Zhe5218c892008-01-17 11:18:41 +01001046 CXT5045_BENQ,
Jiang zhe2de3c232008-03-06 11:09:09 +01001047 CXT5045_LAPTOP_HP530,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001048#ifdef CONFIG_SND_DEBUG
1049 CXT5045_TEST,
1050#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001051 CXT5045_MODELS
Tobin Davisc9b443d2006-11-14 12:13:39 +01001052};
1053
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001054static const char *cxt5045_models[CXT5045_MODELS] = {
Marc Boucher15908c32008-01-22 15:15:59 +01001055 [CXT5045_LAPTOP_HPSENSE] = "laptop-hpsense",
1056 [CXT5045_LAPTOP_MICSENSE] = "laptop-micsense",
1057 [CXT5045_LAPTOP_HPMICSENSE] = "laptop-hpmicsense",
1058 [CXT5045_BENQ] = "benq",
Jiang zhe2de3c232008-03-06 11:09:09 +01001059 [CXT5045_LAPTOP_HP530] = "laptop-hp530",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001060#ifdef CONFIG_SND_DEBUG
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001061 [CXT5045_TEST] = "test",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001062#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001063};
1064
1065static struct snd_pci_quirk cxt5045_cfg_tbl[] = {
Jiang zhe2de3c232008-03-06 11:09:09 +01001066 SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530),
Takashi Iwaidea0a502009-02-09 17:14:52 +01001067 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1068 CXT5045_LAPTOP_HPSENSE),
Takashi Iwai6a9dccd2008-07-01 14:52:05 +02001069 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P105", CXT5045_LAPTOP_MICSENSE),
Jiang Zhe5218c892008-01-17 11:18:41 +01001070 SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ),
Marc Boucher15908c32008-01-22 15:15:59 +01001071 SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE),
1072 SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE),
Takashi Iwai9e464152008-07-12 12:05:25 +02001073 SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505",
1074 CXT5045_LAPTOP_HPMICSENSE),
Marc Boucher15908c32008-01-22 15:15:59 +01001075 SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1076 SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1077 SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE),
Takashi Iwaidea0a502009-02-09 17:14:52 +01001078 SND_PCI_QUIRK_MASK(0x1631, 0xff00, 0xc100, "Packard Bell",
1079 CXT5045_LAPTOP_HPMICSENSE),
Marc Boucher15908c32008-01-22 15:15:59 +01001080 SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001081 {}
1082};
1083
1084static int patch_cxt5045(struct hda_codec *codec)
1085{
1086 struct conexant_spec *spec;
1087 int board_config;
1088
1089 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1090 if (!spec)
1091 return -ENOMEM;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001092 codec->spec = spec;
Takashi Iwai9421f952009-03-12 17:06:07 +01001093 codec->pin_amp_workaround = 1;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001094
1095 spec->multiout.max_channels = 2;
1096 spec->multiout.num_dacs = ARRAY_SIZE(cxt5045_dac_nids);
1097 spec->multiout.dac_nids = cxt5045_dac_nids;
1098 spec->multiout.dig_out_nid = CXT5045_SPDIF_OUT;
1099 spec->num_adc_nids = 1;
1100 spec->adc_nids = cxt5045_adc_nids;
1101 spec->capsrc_nids = cxt5045_capsrc_nids;
1102 spec->input_mux = &cxt5045_capture_source;
1103 spec->num_mixers = 1;
1104 spec->mixers[0] = cxt5045_mixers;
1105 spec->num_init_verbs = 1;
1106 spec->init_verbs[0] = cxt5045_init_verbs;
1107 spec->spdif_route = 0;
Tobin Davis5cd57522006-11-20 17:42:09 +01001108 spec->num_channel_mode = ARRAY_SIZE(cxt5045_modes),
1109 spec->channel_mode = cxt5045_modes,
1110
Tobin Davisc9b443d2006-11-14 12:13:39 +01001111
1112 codec->patch_ops = conexant_patch_ops;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001113
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001114 board_config = snd_hda_check_board_config(codec, CXT5045_MODELS,
1115 cxt5045_models,
1116 cxt5045_cfg_tbl);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001117 switch (board_config) {
Marc Boucher15908c32008-01-22 15:15:59 +01001118 case CXT5045_LAPTOP_HPSENSE:
Tobin Davis7f296732007-03-12 11:39:01 +01001119 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001120 spec->input_mux = &cxt5045_capture_source;
1121 spec->num_init_verbs = 2;
Tobin Davis7f296732007-03-12 11:39:01 +01001122 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1123 spec->mixers[0] = cxt5045_mixers;
1124 codec->patch_ops.init = cxt5045_init;
1125 break;
Marc Boucher15908c32008-01-22 15:15:59 +01001126 case CXT5045_LAPTOP_MICSENSE:
Takashi Iwai86376df2008-07-12 12:04:05 +02001127 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
Tobin Davis7f296732007-03-12 11:39:01 +01001128 spec->input_mux = &cxt5045_capture_source;
1129 spec->num_init_verbs = 2;
1130 spec->init_verbs[1] = cxt5045_mic_sense_init_verbs;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001131 spec->mixers[0] = cxt5045_mixers;
1132 codec->patch_ops.init = cxt5045_init;
1133 break;
Marc Boucher15908c32008-01-22 15:15:59 +01001134 default:
1135 case CXT5045_LAPTOP_HPMICSENSE:
1136 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1137 spec->input_mux = &cxt5045_capture_source;
1138 spec->num_init_verbs = 3;
1139 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1140 spec->init_verbs[2] = cxt5045_mic_sense_init_verbs;
1141 spec->mixers[0] = cxt5045_mixers;
1142 codec->patch_ops.init = cxt5045_init;
1143 break;
Jiang Zhe5218c892008-01-17 11:18:41 +01001144 case CXT5045_BENQ:
1145 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1146 spec->input_mux = &cxt5045_capture_source_benq;
1147 spec->num_init_verbs = 1;
1148 spec->init_verbs[0] = cxt5045_benq_init_verbs;
1149 spec->mixers[0] = cxt5045_mixers;
1150 spec->mixers[1] = cxt5045_benq_mixers;
1151 spec->num_mixers = 2;
1152 codec->patch_ops.init = cxt5045_init;
1153 break;
Jiang zhe2de3c232008-03-06 11:09:09 +01001154 case CXT5045_LAPTOP_HP530:
1155 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1156 spec->input_mux = &cxt5045_capture_source_hp530;
1157 spec->num_init_verbs = 2;
1158 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1159 spec->mixers[0] = cxt5045_mixers_hp530;
1160 codec->patch_ops.init = cxt5045_init;
1161 break;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001162#ifdef CONFIG_SND_DEBUG
1163 case CXT5045_TEST:
1164 spec->input_mux = &cxt5045_test_capture_source;
1165 spec->mixers[0] = cxt5045_test_mixer;
1166 spec->init_verbs[0] = cxt5045_test_init_verbs;
Marc Boucher15908c32008-01-22 15:15:59 +01001167 break;
1168
Tobin Davisc9b443d2006-11-14 12:13:39 +01001169#endif
1170 }
Takashi Iwai48ecb7e2007-12-17 14:32:49 +01001171
Takashi Iwai031005f2008-06-26 14:49:58 +02001172 switch (codec->subsystem_id >> 16) {
1173 case 0x103c:
1174 /* HP laptop has a really bad sound over 0dB on NID 0x17.
1175 * Fix max PCM level to 0 dB
1176 * (originall it has 0x2b steps with 0dB offset 0x14)
1177 */
1178 snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT,
1179 (0x14 << AC_AMPCAP_OFFSET_SHIFT) |
1180 (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) |
1181 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
1182 (1 << AC_AMPCAP_MUTE_SHIFT));
1183 break;
1184 }
Takashi Iwai48ecb7e2007-12-17 14:32:49 +01001185
Tobin Davisc9b443d2006-11-14 12:13:39 +01001186 return 0;
1187}
1188
1189
1190/* Conexant 5047 specific */
Tobin Davis82f30042007-02-13 12:45:44 +01001191#define CXT5047_SPDIF_OUT 0x11
Tobin Davisc9b443d2006-11-14 12:13:39 +01001192
Takashi Iwai5b3a7442009-03-10 15:10:55 +01001193static hda_nid_t cxt5047_dac_nids[1] = { 0x10 }; /* 0x1c */
Tobin Davisc9b443d2006-11-14 12:13:39 +01001194static hda_nid_t cxt5047_adc_nids[1] = { 0x12 };
1195static hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a };
Tobin Davisc9b443d2006-11-14 12:13:39 +01001196
Tobin Davis5cd57522006-11-20 17:42:09 +01001197static struct hda_channel_mode cxt5047_modes[1] = {
1198 { 2, NULL },
1199};
Tobin Davisc9b443d2006-11-14 12:13:39 +01001200
Tobin Davis82f30042007-02-13 12:45:44 +01001201static struct hda_input_mux cxt5047_toshiba_capture_source = {
1202 .num_items = 2,
1203 .items = {
1204 { "ExtMic", 0x2 },
1205 { "Line-In", 0x1 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01001206 }
1207};
1208
1209/* turn on/off EAPD (+ mute HP) as a master switch */
1210static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1211 struct snd_ctl_elem_value *ucontrol)
1212{
1213 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1214 struct conexant_spec *spec = codec->spec;
Tobin Davis82f30042007-02-13 12:45:44 +01001215 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001216
Tobin Davis82f30042007-02-13 12:45:44 +01001217 if (!cxt_eapd_put(kcontrol, ucontrol))
Tobin Davisc9b443d2006-11-14 12:13:39 +01001218 return 0;
1219
Tobin Davis82f30042007-02-13 12:45:44 +01001220 /* toggle internal speakers mute depending of presence of
1221 * the headphone jack
1222 */
Takashi Iwai47fd8302007-08-10 17:11:07 +02001223 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
Takashi Iwai3b7523f2009-03-12 16:45:01 +01001224 /* NOTE: Conexat codec needs the index for *OUTPUT* amp of
1225 * pin widgets unlike other codecs. In this case, we need to
1226 * set index 0x01 for the volume from the mixer amp 0x19.
1227 */
Gregorio Guidi5d75bc52009-03-12 16:41:51 +01001228 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001229 HDA_AMP_MUTE, bits);
1230 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
1231 snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0,
1232 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001233 return 1;
1234}
1235
Tobin Davisc9b443d2006-11-14 12:13:39 +01001236/* mute internal speaker if HP is plugged */
1237static void cxt5047_hp_automute(struct hda_codec *codec)
1238{
Tobin Davis82f30042007-02-13 12:45:44 +01001239 struct conexant_spec *spec = codec->spec;
Tobin Davisdd87da12007-02-26 16:07:42 +01001240 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001241
Takashi Iwaid56757a2009-11-18 08:00:14 +01001242 spec->hp_present = snd_hda_jack_detect(codec, 0x13);
Tobin Davisdd87da12007-02-26 16:07:42 +01001243
Takashi Iwai47fd8302007-08-10 17:11:07 +02001244 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
Takashi Iwai3b7523f2009-03-12 16:45:01 +01001245 /* See the note in cxt5047_hp_master_sw_put */
Gregorio Guidi5d75bc52009-03-12 16:41:51 +01001246 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001247 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001248}
1249
1250/* toggle input of built-in and mic jack appropriately */
1251static void cxt5047_hp_automic(struct hda_codec *codec)
1252{
1253 static struct hda_verb mic_jack_on[] = {
Marc Boucher9f113e02008-01-22 15:18:08 +01001254 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1255 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001256 {}
1257 };
1258 static struct hda_verb mic_jack_off[] = {
Marc Boucher9f113e02008-01-22 15:18:08 +01001259 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1260 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001261 {}
1262 };
1263 unsigned int present;
1264
Takashi Iwaid56757a2009-11-18 08:00:14 +01001265 present = snd_hda_jack_detect(codec, 0x15);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001266 if (present)
1267 snd_hda_sequence_write(codec, mic_jack_on);
1268 else
1269 snd_hda_sequence_write(codec, mic_jack_off);
1270}
1271
1272/* unsolicited event for HP jack sensing */
1273static void cxt5047_hp_unsol_event(struct hda_codec *codec,
1274 unsigned int res)
1275{
Marc Boucher9f113e02008-01-22 15:18:08 +01001276 switch (res >> 26) {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001277 case CONEXANT_HP_EVENT:
1278 cxt5047_hp_automute(codec);
1279 break;
1280 case CONEXANT_MIC_EVENT:
1281 cxt5047_hp_automic(codec);
1282 break;
1283 }
1284}
1285
Takashi Iwaidf481e42009-03-10 15:35:35 +01001286static struct snd_kcontrol_new cxt5047_base_mixers[] = {
1287 HDA_CODEC_VOLUME("Mic Playback Volume", 0x19, 0x02, HDA_INPUT),
1288 HDA_CODEC_MUTE("Mic Playback Switch", 0x19, 0x02, HDA_INPUT),
1289 HDA_CODEC_VOLUME("Mic Boost", 0x1a, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001290 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1291 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1292 HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1293 HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
Tobin Davis82f30042007-02-13 12:45:44 +01001294 {
1295 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1296 .name = "Master Playback Switch",
1297 .info = cxt_eapd_info,
1298 .get = cxt_eapd_get,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001299 .put = cxt5047_hp_master_sw_put,
1300 .private_value = 0x13,
1301 },
1302
1303 {}
1304};
1305
Takashi Iwaidf481e42009-03-10 15:35:35 +01001306static struct snd_kcontrol_new cxt5047_hp_spk_mixers[] = {
Takashi Iwai3b7523f2009-03-12 16:45:01 +01001307 /* See the note in cxt5047_hp_master_sw_put */
Gregorio Guidi5d75bc52009-03-12 16:41:51 +01001308 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x01, HDA_OUTPUT),
Takashi Iwaidf481e42009-03-10 15:35:35 +01001309 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1310 {}
1311};
1312
1313static struct snd_kcontrol_new cxt5047_hp_only_mixers[] = {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001314 HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001315 { } /* end */
1316};
1317
1318static struct hda_verb cxt5047_init_verbs[] = {
1319 /* Line in, Mic, Built-in Mic */
1320 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1321 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1322 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
Tobin Davis7f296732007-03-12 11:39:01 +01001323 /* HP, Speaker */
Tobin Davisb7589ce2007-04-24 17:56:55 +02001324 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Takashi Iwai5b3a7442009-03-10 15:10:55 +01001325 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0}, /* mixer(0x19) */
1326 {0x1d, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mixer(0x19) */
Tobin Davis7f296732007-03-12 11:39:01 +01001327 /* Record selector: Mic */
1328 {0x12, AC_VERB_SET_CONNECT_SEL,0x03},
1329 {0x19, AC_VERB_SET_AMP_GAIN_MUTE,
1330 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
1331 {0x1A, AC_VERB_SET_CONNECT_SEL,0x02},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001332 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1333 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00},
1334 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1335 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x03},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001336 /* SPDIF route: PCM */
1337 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 },
Tobin Davis82f30042007-02-13 12:45:44 +01001338 /* Enable unsolicited events */
1339 {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1340 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001341 { } /* end */
1342};
1343
1344/* configuration for Toshiba Laptops */
1345static struct hda_verb cxt5047_toshiba_init_verbs[] = {
Takashi Iwai3b628862009-03-10 14:53:54 +01001346 {0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0}, /* default off */
Tobin Davisc9b443d2006-11-14 12:13:39 +01001347 {}
1348};
1349
1350/* Test configuration for debugging, modelled after the ALC260 test
1351 * configuration.
1352 */
1353#ifdef CONFIG_SND_DEBUG
1354static struct hda_input_mux cxt5047_test_capture_source = {
Tobin Davis82f30042007-02-13 12:45:44 +01001355 .num_items = 4,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001356 .items = {
Tobin Davis82f30042007-02-13 12:45:44 +01001357 { "LINE1 pin", 0x0 },
1358 { "MIC1 pin", 0x1 },
1359 { "MIC2 pin", 0x2 },
1360 { "CD pin", 0x3 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01001361 },
1362};
1363
1364static struct snd_kcontrol_new cxt5047_test_mixer[] = {
1365
1366 /* Output only controls */
Tobin Davis82f30042007-02-13 12:45:44 +01001367 HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT),
1368 HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT),
1369 HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT),
1370 HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001371 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1372 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1373 HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1374 HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT),
Tobin Davis82f30042007-02-13 12:45:44 +01001375 HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT),
1376 HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1377 HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT),
1378 HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001379
1380 /* Modes for retasking pin widgets */
1381 CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT),
1382 CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT),
1383
Tobin Davis82f30042007-02-13 12:45:44 +01001384 /* EAPD Switch Control */
1385 CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0),
1386
Tobin Davisc9b443d2006-11-14 12:13:39 +01001387 /* Loopback mixer controls */
Tobin Davis82f30042007-02-13 12:45:44 +01001388 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT),
1389 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT),
1390 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT),
1391 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT),
1392 HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT),
1393 HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT),
1394 HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT),
1395 HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001396
Tobin Davis82f30042007-02-13 12:45:44 +01001397 HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT),
1398 HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT),
1399 HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT),
1400 HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT),
1401 HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT),
1402 HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT),
1403 HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT),
1404 HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001405 {
1406 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1407 .name = "Input Source",
1408 .info = conexant_mux_enum_info,
1409 .get = conexant_mux_enum_get,
1410 .put = conexant_mux_enum_put,
1411 },
Marc Boucher9f113e02008-01-22 15:18:08 +01001412 HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
1413 HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
1414 HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
1415 HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
1416 HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
1417 HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
1418 HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
1419 HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
1420 HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
1421 HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
1422
Tobin Davisc9b443d2006-11-14 12:13:39 +01001423 { } /* end */
1424};
1425
1426static struct hda_verb cxt5047_test_init_verbs[] = {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001427 /* Enable retasking pins as output, initially without power amp */
1428 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1429 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1430 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1431
1432 /* Disable digital (SPDIF) pins initially, but users can enable
1433 * them via a mixer switch. In the case of SPDIF-out, this initverb
1434 * payload also sets the generation to 0, output to be in "consumer"
1435 * PCM format, copyright asserted, no pre-emphasis and no validity
1436 * control.
1437 */
1438 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1439
1440 /* Ensure mic1, mic2, line1 pin widgets take input from the
1441 * OUT1 sum bus when acting as an output.
1442 */
1443 {0x1a, AC_VERB_SET_CONNECT_SEL, 0},
1444 {0x1b, AC_VERB_SET_CONNECT_SEL, 0},
1445
1446 /* Start with output sum widgets muted and their output gains at min */
1447 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1448 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1449
1450 /* Unmute retasking pin widget output buffers since the default
1451 * state appears to be output. As the pin mode is changed by the
1452 * user the pin mode control will take care of enabling the pin's
1453 * input/output buffers as needed.
1454 */
1455 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1456 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1457 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1458
1459 /* Mute capture amp left and right */
1460 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1461
1462 /* Set ADC connection select to match default mixer setting (mic1
1463 * pin)
1464 */
1465 {0x12, AC_VERB_SET_CONNECT_SEL, 0x00},
1466
1467 /* Mute all inputs to mixer widget (even unconnected ones) */
1468 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
1469 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
1470 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
1471 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
1472 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1473 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
1474 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
1475 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
1476
1477 { }
1478};
1479#endif
1480
1481
1482/* initialize jack-sensing, too */
1483static int cxt5047_hp_init(struct hda_codec *codec)
1484{
1485 conexant_init(codec);
1486 cxt5047_hp_automute(codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001487 return 0;
1488}
1489
1490
1491enum {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001492 CXT5047_LAPTOP, /* Laptops w/o EAPD support */
1493 CXT5047_LAPTOP_HP, /* Some HP laptops */
1494 CXT5047_LAPTOP_EAPD, /* Laptops with EAPD support */
Tobin Davisc9b443d2006-11-14 12:13:39 +01001495#ifdef CONFIG_SND_DEBUG
1496 CXT5047_TEST,
1497#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001498 CXT5047_MODELS
Tobin Davisc9b443d2006-11-14 12:13:39 +01001499};
1500
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001501static const char *cxt5047_models[CXT5047_MODELS] = {
1502 [CXT5047_LAPTOP] = "laptop",
1503 [CXT5047_LAPTOP_HP] = "laptop-hp",
1504 [CXT5047_LAPTOP_EAPD] = "laptop-eapd",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001505#ifdef CONFIG_SND_DEBUG
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001506 [CXT5047_TEST] = "test",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001507#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001508};
1509
1510static struct snd_pci_quirk cxt5047_cfg_tbl[] = {
Takashi Iwaiac3e3742007-12-17 17:14:18 +01001511 SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP),
Takashi Iwaidea0a502009-02-09 17:14:52 +01001512 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1513 CXT5047_LAPTOP),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001514 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001515 {}
1516};
1517
1518static int patch_cxt5047(struct hda_codec *codec)
1519{
1520 struct conexant_spec *spec;
1521 int board_config;
1522
1523 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1524 if (!spec)
1525 return -ENOMEM;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001526 codec->spec = spec;
Takashi Iwai9421f952009-03-12 17:06:07 +01001527 codec->pin_amp_workaround = 1;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001528
1529 spec->multiout.max_channels = 2;
1530 spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids);
1531 spec->multiout.dac_nids = cxt5047_dac_nids;
1532 spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT;
1533 spec->num_adc_nids = 1;
1534 spec->adc_nids = cxt5047_adc_nids;
1535 spec->capsrc_nids = cxt5047_capsrc_nids;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001536 spec->num_mixers = 1;
Takashi Iwaidf481e42009-03-10 15:35:35 +01001537 spec->mixers[0] = cxt5047_base_mixers;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001538 spec->num_init_verbs = 1;
1539 spec->init_verbs[0] = cxt5047_init_verbs;
1540 spec->spdif_route = 0;
Tobin Davis5cd57522006-11-20 17:42:09 +01001541 spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes),
1542 spec->channel_mode = cxt5047_modes,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001543
1544 codec->patch_ops = conexant_patch_ops;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001545
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001546 board_config = snd_hda_check_board_config(codec, CXT5047_MODELS,
1547 cxt5047_models,
1548 cxt5047_cfg_tbl);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001549 switch (board_config) {
1550 case CXT5047_LAPTOP:
Takashi Iwaidf481e42009-03-10 15:35:35 +01001551 spec->num_mixers = 2;
1552 spec->mixers[1] = cxt5047_hp_spk_mixers;
1553 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001554 break;
1555 case CXT5047_LAPTOP_HP:
Takashi Iwaidf481e42009-03-10 15:35:35 +01001556 spec->num_mixers = 2;
1557 spec->mixers[1] = cxt5047_hp_only_mixers;
Tobin Davisfb3409e2007-05-17 09:40:47 +02001558 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001559 codec->patch_ops.init = cxt5047_hp_init;
1560 break;
1561 case CXT5047_LAPTOP_EAPD:
Tobin Davis82f30042007-02-13 12:45:44 +01001562 spec->input_mux = &cxt5047_toshiba_capture_source;
Takashi Iwaidf481e42009-03-10 15:35:35 +01001563 spec->num_mixers = 2;
1564 spec->mixers[1] = cxt5047_hp_spk_mixers;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001565 spec->num_init_verbs = 2;
1566 spec->init_verbs[1] = cxt5047_toshiba_init_verbs;
Tobin Davisfb3409e2007-05-17 09:40:47 +02001567 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001568 break;
1569#ifdef CONFIG_SND_DEBUG
1570 case CXT5047_TEST:
1571 spec->input_mux = &cxt5047_test_capture_source;
1572 spec->mixers[0] = cxt5047_test_mixer;
1573 spec->init_verbs[0] = cxt5047_test_init_verbs;
Tobin Davisfb3409e2007-05-17 09:40:47 +02001574 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001575#endif
1576 }
Takashi Iwaidd5746a2009-03-10 14:30:40 +01001577 spec->vmaster_nid = 0x13;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001578 return 0;
1579}
1580
Takashi Iwai461e2c72008-01-25 11:35:17 +01001581/* Conexant 5051 specific */
1582static hda_nid_t cxt5051_dac_nids[1] = { 0x10 };
1583static hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 };
Takashi Iwai461e2c72008-01-25 11:35:17 +01001584
1585static struct hda_channel_mode cxt5051_modes[1] = {
1586 { 2, NULL },
1587};
1588
1589static void cxt5051_update_speaker(struct hda_codec *codec)
1590{
1591 struct conexant_spec *spec = codec->spec;
1592 unsigned int pinctl;
1593 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
1594 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1595 pinctl);
1596}
1597
1598/* turn on/off EAPD (+ mute HP) as a master switch */
1599static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1600 struct snd_ctl_elem_value *ucontrol)
1601{
1602 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1603
1604 if (!cxt_eapd_put(kcontrol, ucontrol))
1605 return 0;
1606 cxt5051_update_speaker(codec);
1607 return 1;
1608}
1609
1610/* toggle input of built-in and mic jack appropriately */
1611static void cxt5051_portb_automic(struct hda_codec *codec)
1612{
Takashi Iwai79d7d532009-03-04 09:03:50 +01001613 struct conexant_spec *spec = codec->spec;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001614 unsigned int present;
1615
Takashi Iwai79d7d532009-03-04 09:03:50 +01001616 if (spec->no_auto_mic)
1617 return;
Takashi Iwaid56757a2009-11-18 08:00:14 +01001618 present = snd_hda_jack_detect(codec, 0x17);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001619 snd_hda_codec_write(codec, 0x14, 0,
1620 AC_VERB_SET_CONNECT_SEL,
1621 present ? 0x01 : 0x00);
1622}
1623
1624/* switch the current ADC according to the jack state */
1625static void cxt5051_portc_automic(struct hda_codec *codec)
1626{
1627 struct conexant_spec *spec = codec->spec;
1628 unsigned int present;
1629 hda_nid_t new_adc;
1630
Takashi Iwai79d7d532009-03-04 09:03:50 +01001631 if (spec->no_auto_mic)
1632 return;
Takashi Iwaid56757a2009-11-18 08:00:14 +01001633 present = snd_hda_jack_detect(codec, 0x18);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001634 if (present)
1635 spec->cur_adc_idx = 1;
1636 else
1637 spec->cur_adc_idx = 0;
1638 new_adc = spec->adc_nids[spec->cur_adc_idx];
1639 if (spec->cur_adc && spec->cur_adc != new_adc) {
1640 /* stream is running, let's swap the current ADC */
Takashi Iwai888afa12008-03-18 09:57:50 +01001641 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001642 spec->cur_adc = new_adc;
1643 snd_hda_codec_setup_stream(codec, new_adc,
1644 spec->cur_adc_stream_tag, 0,
1645 spec->cur_adc_format);
1646 }
1647}
1648
1649/* mute internal speaker if HP is plugged */
1650static void cxt5051_hp_automute(struct hda_codec *codec)
1651{
1652 struct conexant_spec *spec = codec->spec;
1653
Takashi Iwaid56757a2009-11-18 08:00:14 +01001654 spec->hp_present = snd_hda_jack_detect(codec, 0x16);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001655 cxt5051_update_speaker(codec);
1656}
1657
1658/* unsolicited event for HP jack sensing */
1659static void cxt5051_hp_unsol_event(struct hda_codec *codec,
1660 unsigned int res)
1661{
Ulrich Dangelacf26c02009-01-02 19:30:14 +01001662 int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001663 switch (res >> 26) {
1664 case CONEXANT_HP_EVENT:
1665 cxt5051_hp_automute(codec);
1666 break;
1667 case CXT5051_PORTB_EVENT:
1668 cxt5051_portb_automic(codec);
1669 break;
1670 case CXT5051_PORTC_EVENT:
1671 cxt5051_portc_automic(codec);
1672 break;
1673 }
Ulrich Dangelacf26c02009-01-02 19:30:14 +01001674 conexant_report_jack(codec, nid);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001675}
1676
1677static struct snd_kcontrol_new cxt5051_mixers[] = {
1678 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1679 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1680 HDA_CODEC_VOLUME("External Mic Volume", 0x14, 0x01, HDA_INPUT),
1681 HDA_CODEC_MUTE("External Mic Switch", 0x14, 0x01, HDA_INPUT),
1682 HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT),
1683 HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT),
1684 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1685 {
1686 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1687 .name = "Master Playback Switch",
1688 .info = cxt_eapd_info,
1689 .get = cxt_eapd_get,
1690 .put = cxt5051_hp_master_sw_put,
1691 .private_value = 0x1a,
1692 },
1693
1694 {}
1695};
1696
1697static struct snd_kcontrol_new cxt5051_hp_mixers[] = {
1698 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1699 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1700 HDA_CODEC_VOLUME("External Mic Volume", 0x15, 0x00, HDA_INPUT),
1701 HDA_CODEC_MUTE("External Mic Switch", 0x15, 0x00, HDA_INPUT),
1702 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1703 {
1704 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1705 .name = "Master Playback Switch",
1706 .info = cxt_eapd_info,
1707 .get = cxt_eapd_get,
1708 .put = cxt5051_hp_master_sw_put,
1709 .private_value = 0x1a,
1710 },
1711
1712 {}
1713};
1714
Takashi Iwai79d7d532009-03-04 09:03:50 +01001715static struct snd_kcontrol_new cxt5051_hp_dv6736_mixers[] = {
1716 HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x00, HDA_INPUT),
1717 HDA_CODEC_MUTE("Mic Switch", 0x14, 0x00, HDA_INPUT),
1718 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1719 {
1720 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1721 .name = "Master Playback Switch",
1722 .info = cxt_eapd_info,
1723 .get = cxt_eapd_get,
1724 .put = cxt5051_hp_master_sw_put,
1725 .private_value = 0x1a,
1726 },
1727
1728 {}
1729};
1730
Takashi Iwai461e2c72008-01-25 11:35:17 +01001731static struct hda_verb cxt5051_init_verbs[] = {
1732 /* Line in, Mic */
1733 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1734 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1735 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1736 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1737 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1738 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1739 /* SPK */
1740 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1741 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1742 /* HP, Amp */
1743 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1744 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1745 /* DAC1 */
1746 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1747 /* Record selector: Int mic */
1748 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1749 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1750 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1751 /* SPDIF route: PCM */
1752 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1753 /* EAPD */
1754 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1755 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1756 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1757 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT},
1758 { } /* end */
1759};
1760
Takashi Iwai79d7d532009-03-04 09:03:50 +01001761static struct hda_verb cxt5051_hp_dv6736_init_verbs[] = {
1762 /* Line in, Mic */
1763 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1764 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1765 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1766 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1767 /* SPK */
1768 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1769 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1770 /* HP, Amp */
1771 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1772 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1773 /* DAC1 */
1774 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1775 /* Record selector: Int mic */
1776 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1777 {0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
1778 /* SPDIF route: PCM */
1779 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1780 /* EAPD */
1781 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1782 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1783 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1784 { } /* end */
1785};
1786
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001787static struct hda_verb cxt5051_lenovo_x200_init_verbs[] = {
1788 /* Line in, Mic */
1789 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1790 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1791 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1792 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1793 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1794 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1795 /* SPK */
1796 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1797 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1798 /* HP, Amp */
1799 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1800 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1801 /* Docking HP */
1802 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1803 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00},
1804 /* DAC1 */
1805 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1806 /* Record selector: Int mic */
1807 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1808 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1809 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1810 /* SPDIF route: PCM */
1811 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1812 /* EAPD */
1813 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1814 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1815 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1816 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT},
1817 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1818 { } /* end */
1819};
1820
Takashi Iwai461e2c72008-01-25 11:35:17 +01001821/* initialize jack-sensing, too */
1822static int cxt5051_init(struct hda_codec *codec)
1823{
1824 conexant_init(codec);
Ulrich Dangelacf26c02009-01-02 19:30:14 +01001825 conexant_init_jacks(codec);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001826 if (codec->patch_ops.unsol_event) {
1827 cxt5051_hp_automute(codec);
1828 cxt5051_portb_automic(codec);
1829 cxt5051_portc_automic(codec);
1830 }
1831 return 0;
1832}
1833
1834
1835enum {
1836 CXT5051_LAPTOP, /* Laptops w/ EAPD support */
1837 CXT5051_HP, /* no docking */
Takashi Iwai79d7d532009-03-04 09:03:50 +01001838 CXT5051_HP_DV6736, /* HP without mic switch */
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001839 CXT5051_LENOVO_X200, /* Lenovo X200 laptop */
Takashi Iwai461e2c72008-01-25 11:35:17 +01001840 CXT5051_MODELS
1841};
1842
1843static const char *cxt5051_models[CXT5051_MODELS] = {
1844 [CXT5051_LAPTOP] = "laptop",
1845 [CXT5051_HP] = "hp",
Takashi Iwai79d7d532009-03-04 09:03:50 +01001846 [CXT5051_HP_DV6736] = "hp-dv6736",
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001847 [CXT5051_LENOVO_X200] = "lenovo-x200",
Takashi Iwai461e2c72008-01-25 11:35:17 +01001848};
1849
1850static struct snd_pci_quirk cxt5051_cfg_tbl[] = {
Takashi Iwai79d7d532009-03-04 09:03:50 +01001851 SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV6736", CXT5051_HP_DV6736),
Tony Vroon1812e672009-05-27 21:00:41 +01001852 SND_PCI_QUIRK(0x103c, 0x360b, "Compaq Presario CQ60", CXT5051_HP),
Takashi Iwai461e2c72008-01-25 11:35:17 +01001853 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
1854 CXT5051_LAPTOP),
1855 SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP),
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001856 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo X200", CXT5051_LENOVO_X200),
Takashi Iwai461e2c72008-01-25 11:35:17 +01001857 {}
1858};
1859
1860static int patch_cxt5051(struct hda_codec *codec)
1861{
1862 struct conexant_spec *spec;
1863 int board_config;
1864
1865 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1866 if (!spec)
1867 return -ENOMEM;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001868 codec->spec = spec;
Takashi Iwai9421f952009-03-12 17:06:07 +01001869 codec->pin_amp_workaround = 1;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001870
1871 codec->patch_ops = conexant_patch_ops;
1872 codec->patch_ops.init = cxt5051_init;
1873
1874 spec->multiout.max_channels = 2;
1875 spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids);
1876 spec->multiout.dac_nids = cxt5051_dac_nids;
1877 spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT;
1878 spec->num_adc_nids = 1; /* not 2; via auto-mic switch */
1879 spec->adc_nids = cxt5051_adc_nids;
1880 spec->num_mixers = 1;
1881 spec->mixers[0] = cxt5051_mixers;
1882 spec->num_init_verbs = 1;
1883 spec->init_verbs[0] = cxt5051_init_verbs;
1884 spec->spdif_route = 0;
1885 spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes);
1886 spec->channel_mode = cxt5051_modes;
1887 spec->cur_adc = 0;
1888 spec->cur_adc_idx = 0;
1889
Takashi Iwai79d7d532009-03-04 09:03:50 +01001890 codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
1891
Takashi Iwai461e2c72008-01-25 11:35:17 +01001892 board_config = snd_hda_check_board_config(codec, CXT5051_MODELS,
1893 cxt5051_models,
1894 cxt5051_cfg_tbl);
1895 switch (board_config) {
1896 case CXT5051_HP:
Takashi Iwai461e2c72008-01-25 11:35:17 +01001897 spec->mixers[0] = cxt5051_hp_mixers;
1898 break;
Takashi Iwai79d7d532009-03-04 09:03:50 +01001899 case CXT5051_HP_DV6736:
1900 spec->init_verbs[0] = cxt5051_hp_dv6736_init_verbs;
1901 spec->mixers[0] = cxt5051_hp_dv6736_mixers;
1902 spec->no_auto_mic = 1;
1903 break;
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001904 case CXT5051_LENOVO_X200:
1905 spec->init_verbs[0] = cxt5051_lenovo_x200_init_verbs;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001906 break;
1907 }
1908
1909 return 0;
1910}
1911
Daniel Drake0fb67e92009-07-16 14:46:57 +01001912/* Conexant 5066 specific */
1913
1914static hda_nid_t cxt5066_dac_nids[1] = { 0x10 };
1915static hda_nid_t cxt5066_adc_nids[3] = { 0x14, 0x15, 0x16 };
1916static hda_nid_t cxt5066_capsrc_nids[1] = { 0x17 };
1917#define CXT5066_SPDIF_OUT 0x21
1918
Daniel Drakedbaccc02009-11-09 15:17:24 +00001919/* OLPC's microphone port is DC coupled for use with external sensors,
1920 * therefore we use a 50% mic bias in order to center the input signal with
1921 * the DC input range of the codec. */
1922#define CXT5066_OLPC_EXT_MIC_BIAS PIN_VREF50
1923
Daniel Drake0fb67e92009-07-16 14:46:57 +01001924static struct hda_channel_mode cxt5066_modes[1] = {
1925 { 2, NULL },
1926};
1927
1928static void cxt5066_update_speaker(struct hda_codec *codec)
1929{
1930 struct conexant_spec *spec = codec->spec;
1931 unsigned int pinctl;
1932
1933 snd_printdd("CXT5066: update speaker, hp_present=%d\n",
1934 spec->hp_present);
1935
1936 /* Port A (HP) */
1937 pinctl = ((spec->hp_present & 1) && spec->cur_eapd) ? PIN_HP : 0;
1938 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1939 pinctl);
1940
1941 /* Port D (HP/LO) */
1942 pinctl = ((spec->hp_present & 2) && spec->cur_eapd)
1943 ? spec->port_d_mode : 0;
1944 snd_hda_codec_write(codec, 0x1c, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1945 pinctl);
1946
1947 /* CLASS_D AMP */
1948 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
1949 snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1950 pinctl);
1951
1952 if (spec->dell_automute) {
1953 /* DELL AIO Port Rule: PortA > PortD > IntSpk */
1954 pinctl = (!(spec->hp_present & 1) && spec->cur_eapd)
1955 ? PIN_OUT : 0;
1956 snd_hda_codec_write(codec, 0x1c, 0,
1957 AC_VERB_SET_PIN_WIDGET_CONTROL, pinctl);
1958 }
1959}
1960
1961/* turn on/off EAPD (+ mute HP) as a master switch */
1962static int cxt5066_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1963 struct snd_ctl_elem_value *ucontrol)
1964{
1965 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1966
1967 if (!cxt_eapd_put(kcontrol, ucontrol))
1968 return 0;
1969
1970 cxt5066_update_speaker(codec);
1971 return 1;
1972}
1973
1974/* toggle input of built-in and mic jack appropriately */
1975static void cxt5066_automic(struct hda_codec *codec)
1976{
Daniel Drakedbaccc02009-11-09 15:17:24 +00001977 struct conexant_spec *spec = codec->spec;
1978 struct hda_verb ext_mic_present[] = {
Daniel Drake0fb67e92009-07-16 14:46:57 +01001979 /* enable external mic, port B */
Daniel Drakedbaccc02009-11-09 15:17:24 +00001980 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, spec->ext_mic_bias},
Daniel Drake0fb67e92009-07-16 14:46:57 +01001981
1982 /* switch to external mic input */
1983 {0x17, AC_VERB_SET_CONNECT_SEL, 0},
1984
1985 /* disable internal mic, port C */
1986 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
1987 {}
1988 };
1989 static struct hda_verb ext_mic_absent[] = {
1990 /* enable internal mic, port C */
1991 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1992
1993 /* switch to internal mic input */
1994 {0x17, AC_VERB_SET_CONNECT_SEL, 1},
1995
1996 /* disable external mic, port B */
1997 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
1998 {}
1999 };
2000 unsigned int present;
2001
Takashi Iwaid56757a2009-11-18 08:00:14 +01002002 present = snd_hda_jack_detect(codec, 0x1a);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002003 if (present) {
2004 snd_printdd("CXT5066: external microphone detected\n");
2005 snd_hda_sequence_write(codec, ext_mic_present);
2006 } else {
2007 snd_printdd("CXT5066: external microphone absent\n");
2008 snd_hda_sequence_write(codec, ext_mic_absent);
2009 }
2010}
2011
2012/* mute internal speaker if HP is plugged */
2013static void cxt5066_hp_automute(struct hda_codec *codec)
2014{
2015 struct conexant_spec *spec = codec->spec;
2016 unsigned int portA, portD;
2017
2018 /* Port A */
Takashi Iwaid56757a2009-11-18 08:00:14 +01002019 portA = snd_hda_jack_detect(codec, 0x19);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002020
2021 /* Port D */
Takashi Iwaid56757a2009-11-18 08:00:14 +01002022 portD = snd_hda_jack_detect(codec, 0x1c);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002023
2024 spec->hp_present = !!(portA | portD);
2025 snd_printdd("CXT5066: hp automute portA=%x portD=%x present=%d\n",
2026 portA, portD, spec->hp_present);
2027 cxt5066_update_speaker(codec);
2028}
2029
2030/* unsolicited event for jack sensing */
2031static void cxt5066_unsol_event(struct hda_codec *codec, unsigned int res)
2032{
2033 snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26);
2034 switch (res >> 26) {
2035 case CONEXANT_HP_EVENT:
2036 cxt5066_hp_automute(codec);
2037 break;
2038 case CONEXANT_MIC_EVENT:
2039 cxt5066_automic(codec);
2040 break;
2041 }
2042}
2043
2044static const struct hda_input_mux cxt5066_analog_mic_boost = {
2045 .num_items = 5,
2046 .items = {
2047 { "0dB", 0 },
2048 { "10dB", 1 },
2049 { "20dB", 2 },
2050 { "30dB", 3 },
2051 { "40dB", 4 },
2052 },
2053};
2054
2055static int cxt5066_mic_boost_mux_enum_info(struct snd_kcontrol *kcontrol,
2056 struct snd_ctl_elem_info *uinfo)
2057{
2058 return snd_hda_input_mux_info(&cxt5066_analog_mic_boost, uinfo);
2059}
2060
2061static int cxt5066_mic_boost_mux_enum_get(struct snd_kcontrol *kcontrol,
2062 struct snd_ctl_elem_value *ucontrol)
2063{
2064 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2065 int val;
2066
2067 val = snd_hda_codec_read(codec, 0x17, 0,
2068 AC_VERB_GET_AMP_GAIN_MUTE, AC_AMP_GET_OUTPUT);
2069
2070 ucontrol->value.enumerated.item[0] = val & AC_AMP_GAIN;
2071 return 0;
2072}
2073
2074static int cxt5066_mic_boost_mux_enum_put(struct snd_kcontrol *kcontrol,
2075 struct snd_ctl_elem_value *ucontrol)
2076{
2077 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2078 const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
2079 unsigned int idx;
2080
2081 if (!imux->num_items)
2082 return 0;
2083 idx = ucontrol->value.enumerated.item[0];
2084 if (idx >= imux->num_items)
2085 idx = imux->num_items - 1;
2086
2087 snd_hda_codec_write_cache(codec, 0x17, 0,
2088 AC_VERB_SET_AMP_GAIN_MUTE,
2089 AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_OUTPUT |
2090 imux->items[idx].index);
2091
2092 return 1;
2093}
2094
2095static struct hda_input_mux cxt5066_capture_source = {
2096 .num_items = 4,
2097 .items = {
2098 { "Mic B", 0 },
2099 { "Mic C", 1 },
2100 { "Mic E", 2 },
2101 { "Mic F", 3 },
2102 },
2103};
2104
2105static struct hda_bind_ctls cxt5066_bind_capture_vol_others = {
2106 .ops = &snd_hda_bind_vol,
2107 .values = {
2108 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2109 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2110 0
2111 },
2112};
2113
2114static struct hda_bind_ctls cxt5066_bind_capture_sw_others = {
2115 .ops = &snd_hda_bind_sw,
2116 .values = {
2117 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2118 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2119 0
2120 },
2121};
2122
2123static struct snd_kcontrol_new cxt5066_mixer_master[] = {
2124 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
2125 {}
2126};
2127
2128static struct snd_kcontrol_new cxt5066_mixer_master_olpc[] = {
2129 {
2130 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2131 .name = "Master Playback Volume",
2132 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
2133 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
2134 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
2135 .info = snd_hda_mixer_amp_volume_info,
2136 .get = snd_hda_mixer_amp_volume_get,
2137 .put = snd_hda_mixer_amp_volume_put,
2138 .tlv = { .c = snd_hda_mixer_amp_tlv },
2139 /* offset by 28 volume steps to limit minimum gain to -46dB */
2140 .private_value =
2141 HDA_COMPOSE_AMP_VAL_OFS(0x10, 3, 0, HDA_OUTPUT, 28),
2142 },
2143 {}
2144};
2145
2146static struct snd_kcontrol_new cxt5066_mixers[] = {
2147 {
2148 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2149 .name = "Master Playback Switch",
2150 .info = cxt_eapd_info,
2151 .get = cxt_eapd_get,
2152 .put = cxt5066_hp_master_sw_put,
2153 .private_value = 0x1d,
2154 },
2155
2156 {
2157 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2158 .name = "Analog Mic Boost Capture Enum",
2159 .info = cxt5066_mic_boost_mux_enum_info,
2160 .get = cxt5066_mic_boost_mux_enum_get,
2161 .put = cxt5066_mic_boost_mux_enum_put,
2162 },
2163
2164 HDA_BIND_VOL("Capture Volume", &cxt5066_bind_capture_vol_others),
2165 HDA_BIND_SW("Capture Switch", &cxt5066_bind_capture_sw_others),
2166 {}
2167};
2168
2169static struct hda_verb cxt5066_init_verbs[] = {
2170 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
2171 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
2172 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2173 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2174
2175 /* Speakers */
2176 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2177 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2178
2179 /* HP, Amp */
2180 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2181 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2182
2183 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2184 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2185
2186 /* DAC1 */
2187 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2188
2189 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2190 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2191 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2192 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2193 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2194 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2195
2196 /* no digital microphone support yet */
2197 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2198
2199 /* Audio input selector */
2200 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2201
2202 /* SPDIF route: PCM */
2203 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2204 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2205
2206 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2207 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2208
2209 /* EAPD */
2210 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2211
2212 /* not handling these yet */
2213 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2214 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2215 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2216 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2217 {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2218 {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2219 {0x20, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2220 {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2221 { } /* end */
2222};
2223
2224static struct hda_verb cxt5066_init_verbs_olpc[] = {
2225 /* Port A: headphones */
2226 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2227 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2228
2229 /* Port B: external microphone */
Daniel Drakedbaccc02009-11-09 15:17:24 +00002230 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, CXT5066_OLPC_EXT_MIC_BIAS},
Daniel Drake0fb67e92009-07-16 14:46:57 +01002231
2232 /* Port C: internal microphone */
2233 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2234
2235 /* Port D: unused */
2236 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2237
2238 /* Port E: unused, but has primary EAPD */
2239 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2240 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2241
2242 /* Port F: unused */
2243 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2244
2245 /* Port G: internal speakers */
2246 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2247 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2248
2249 /* DAC1 */
2250 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2251
2252 /* DAC2: unused */
2253 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2254
2255 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2256 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2257 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2258 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2259 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2260 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2261 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2262 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2263 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2264 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2265 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2266 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2267
2268 /* Disable digital microphone port */
2269 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2270
2271 /* Audio input selectors */
2272 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2273 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2274
2275 /* Disable SPDIF */
2276 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2277 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2278
2279 /* enable unsolicited events for Port A and B */
2280 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2281 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2282 { } /* end */
2283};
2284
2285static struct hda_verb cxt5066_init_verbs_portd_lo[] = {
2286 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2287 { } /* end */
2288};
2289
2290/* initialize jack-sensing, too */
2291static int cxt5066_init(struct hda_codec *codec)
2292{
2293 snd_printdd("CXT5066: init\n");
2294 conexant_init(codec);
2295 if (codec->patch_ops.unsol_event) {
2296 cxt5066_hp_automute(codec);
2297 cxt5066_automic(codec);
2298 }
2299 return 0;
2300}
2301
2302enum {
2303 CXT5066_LAPTOP, /* Laptops w/ EAPD support */
2304 CXT5066_DELL_LAPTOP, /* Dell Laptop */
2305 CXT5066_OLPC_XO_1_5, /* OLPC XO 1.5 */
2306 CXT5066_MODELS
2307};
2308
2309static const char *cxt5066_models[CXT5066_MODELS] = {
2310 [CXT5066_LAPTOP] = "laptop",
2311 [CXT5066_DELL_LAPTOP] = "dell-laptop",
2312 [CXT5066_OLPC_XO_1_5] = "olpc-xo-1_5",
2313};
2314
2315static struct snd_pci_quirk cxt5066_cfg_tbl[] = {
2316 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
2317 CXT5066_LAPTOP),
2318 SND_PCI_QUIRK(0x1028, 0x02f5, "Dell",
2319 CXT5066_DELL_LAPTOP),
Daniel Drake798a8a12009-11-04 10:11:07 +00002320 SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT5066_OLPC_XO_1_5),
Daniel Drake0fb67e92009-07-16 14:46:57 +01002321 {}
2322};
2323
2324static int patch_cxt5066(struct hda_codec *codec)
2325{
2326 struct conexant_spec *spec;
2327 int board_config;
2328
2329 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2330 if (!spec)
2331 return -ENOMEM;
2332 codec->spec = spec;
2333
2334 codec->patch_ops = conexant_patch_ops;
2335 codec->patch_ops.init = cxt5066_init;
2336
2337 spec->dell_automute = 0;
2338 spec->multiout.max_channels = 2;
2339 spec->multiout.num_dacs = ARRAY_SIZE(cxt5066_dac_nids);
2340 spec->multiout.dac_nids = cxt5066_dac_nids;
2341 spec->multiout.dig_out_nid = CXT5066_SPDIF_OUT;
2342 spec->num_adc_nids = 1;
2343 spec->adc_nids = cxt5066_adc_nids;
2344 spec->capsrc_nids = cxt5066_capsrc_nids;
2345 spec->input_mux = &cxt5066_capture_source;
2346
2347 spec->port_d_mode = PIN_HP;
Daniel Drakedbaccc02009-11-09 15:17:24 +00002348 spec->ext_mic_bias = PIN_VREF80;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002349
2350 spec->num_init_verbs = 1;
2351 spec->init_verbs[0] = cxt5066_init_verbs;
2352 spec->num_channel_mode = ARRAY_SIZE(cxt5066_modes);
2353 spec->channel_mode = cxt5066_modes;
2354 spec->cur_adc = 0;
2355 spec->cur_adc_idx = 0;
2356
2357 board_config = snd_hda_check_board_config(codec, CXT5066_MODELS,
2358 cxt5066_models, cxt5066_cfg_tbl);
2359 switch (board_config) {
2360 default:
2361 case CXT5066_LAPTOP:
2362 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
2363 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
2364 break;
2365 case CXT5066_DELL_LAPTOP:
2366 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
2367 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
2368
2369 spec->port_d_mode = PIN_OUT;
2370 spec->init_verbs[spec->num_init_verbs] = cxt5066_init_verbs_portd_lo;
2371 spec->num_init_verbs++;
2372 spec->dell_automute = 1;
2373 break;
2374 case CXT5066_OLPC_XO_1_5:
2375 codec->patch_ops.unsol_event = cxt5066_unsol_event;
2376 spec->init_verbs[0] = cxt5066_init_verbs_olpc;
2377 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
2378 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
2379 spec->port_d_mode = 0;
Daniel Drakedbaccc02009-11-09 15:17:24 +00002380 spec->ext_mic_bias = CXT5066_OLPC_EXT_MIC_BIAS;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002381
2382 /* no S/PDIF out */
2383 spec->multiout.dig_out_nid = 0;
2384
2385 /* input source automatically selected */
2386 spec->input_mux = NULL;
2387 break;
2388 }
2389
2390 return 0;
2391}
Takashi Iwai461e2c72008-01-25 11:35:17 +01002392
2393/*
2394 */
2395
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002396static struct hda_codec_preset snd_hda_preset_conexant[] = {
Tobin Davis82f30042007-02-13 12:45:44 +01002397 { .id = 0x14f15045, .name = "CX20549 (Venice)",
2398 .patch = patch_cxt5045 },
2399 { .id = 0x14f15047, .name = "CX20551 (Waikiki)",
2400 .patch = patch_cxt5047 },
Takashi Iwai461e2c72008-01-25 11:35:17 +01002401 { .id = 0x14f15051, .name = "CX20561 (Hermosa)",
2402 .patch = patch_cxt5051 },
Daniel Drake0fb67e92009-07-16 14:46:57 +01002403 { .id = 0x14f15066, .name = "CX20582 (Pebble)",
2404 .patch = patch_cxt5066 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01002405 {} /* terminator */
2406};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002407
2408MODULE_ALIAS("snd-hda-codec-id:14f15045");
2409MODULE_ALIAS("snd-hda-codec-id:14f15047");
2410MODULE_ALIAS("snd-hda-codec-id:14f15051");
Daniel Drake0fb67e92009-07-16 14:46:57 +01002411MODULE_ALIAS("snd-hda-codec-id:14f15066");
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002412
2413MODULE_LICENSE("GPL");
2414MODULE_DESCRIPTION("Conexant HD-audio codec");
2415
2416static struct hda_codec_preset_list conexant_list = {
2417 .preset = snd_hda_preset_conexant,
2418 .owner = THIS_MODULE,
2419};
2420
2421static int __init patch_conexant_init(void)
2422{
2423 return snd_hda_add_codec_preset(&conexant_list);
2424}
2425
2426static void __exit patch_conexant_exit(void)
2427{
2428 snd_hda_delete_codec_preset(&conexant_list);
2429}
2430
2431module_init(patch_conexant_init)
2432module_exit(patch_conexant_exit)