blob: 56dda9c7f899870cdfa68e3bfe7123b7e9e0a7b0 [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"
Einar Rünkaruc0f8faf2009-12-16 22:41:36 +020032#include "hda_beep.h"
Tobin Davisc9b443d2006-11-14 12:13:39 +010033
34#define CXT_PIN_DIR_IN 0x00
35#define CXT_PIN_DIR_OUT 0x01
36#define CXT_PIN_DIR_INOUT 0x02
37#define CXT_PIN_DIR_IN_NOMICBIAS 0x03
38#define CXT_PIN_DIR_INOUT_NOMICBIAS 0x04
39
40#define CONEXANT_HP_EVENT 0x37
41#define CONEXANT_MIC_EVENT 0x38
42
Ulrich Dangelbc7a1662009-01-02 19:30:13 +010043/* Conexant 5051 specific */
Tobin Davisc9b443d2006-11-14 12:13:39 +010044
Ulrich Dangelbc7a1662009-01-02 19:30:13 +010045#define CXT5051_SPDIF_OUT 0x1C
46#define CXT5051_PORTB_EVENT 0x38
47#define CXT5051_PORTC_EVENT 0x39
48
Takashi Iwaifaddaa52010-01-23 22:31:36 +010049#define AUTO_MIC_PORTB (1 << 1)
50#define AUTO_MIC_PORTC (1 << 2)
Ulrich Dangelbc7a1662009-01-02 19:30:13 +010051
52struct conexant_jack {
53
54 hda_nid_t nid;
55 int type;
56 struct snd_jack *jack;
57
58};
Tobin Davisc9b443d2006-11-14 12:13:39 +010059
60struct conexant_spec {
61
62 struct snd_kcontrol_new *mixers[5];
63 int num_mixers;
Takashi Iwaidd5746a2009-03-10 14:30:40 +010064 hda_nid_t vmaster_nid;
Tobin Davisc9b443d2006-11-14 12:13:39 +010065
66 const struct hda_verb *init_verbs[5]; /* initialization verbs
67 * don't forget NULL
68 * termination!
69 */
70 unsigned int num_init_verbs;
71
72 /* playback */
73 struct hda_multi_out multiout; /* playback set-up
74 * max_channels, dacs must be set
75 * dig_out_nid and hp_nid are optional
76 */
77 unsigned int cur_eapd;
Tobin Davis82f30042007-02-13 12:45:44 +010078 unsigned int hp_present;
Takashi Iwaifaddaa52010-01-23 22:31:36 +010079 unsigned int auto_mic;
Tobin Davisc9b443d2006-11-14 12:13:39 +010080 unsigned int need_dac_fix;
81
82 /* capture */
83 unsigned int num_adc_nids;
84 hda_nid_t *adc_nids;
85 hda_nid_t dig_in_nid; /* digital-in NID; optional */
86
Takashi Iwai461e2c72008-01-25 11:35:17 +010087 unsigned int cur_adc_idx;
88 hda_nid_t cur_adc;
89 unsigned int cur_adc_stream_tag;
90 unsigned int cur_adc_format;
91
Tobin Davisc9b443d2006-11-14 12:13:39 +010092 /* capture source */
93 const struct hda_input_mux *input_mux;
94 hda_nid_t *capsrc_nids;
95 unsigned int cur_mux[3];
96
97 /* channel model */
98 const struct hda_channel_mode *channel_mode;
99 int num_channel_mode;
100
101 /* PCM information */
102 struct hda_pcm pcm_rec[2]; /* used in build_pcms() */
103
Tobin Davisc9b443d2006-11-14 12:13:39 +0100104 unsigned int spdif_route;
105
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100106 /* jack detection */
107 struct snd_array jacks;
108
Tobin Davisc9b443d2006-11-14 12:13:39 +0100109 /* dynamic controls, init_verbs and input_mux */
110 struct auto_pin_cfg autocfg;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100111 struct hda_input_mux private_imux;
Takashi Iwai41923e42007-10-22 17:20:10 +0200112 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
Tobin Davisc9b443d2006-11-14 12:13:39 +0100113
Daniel Drake0fb67e92009-07-16 14:46:57 +0100114 unsigned int dell_automute;
115 unsigned int port_d_mode;
Einar Rünkaru254bba62009-12-16 22:16:13 +0200116 unsigned int dell_vostro;
Daniel Drake75f89912010-01-07 13:46:25 +0100117
118 unsigned int ext_mic_present;
119 unsigned int recording;
120 void (*capture_prepare)(struct hda_codec *codec);
121 void (*capture_cleanup)(struct hda_codec *codec);
Daniel Drakec4cfe662010-01-07 13:47:04 +0100122
123 /* OLPC XO-1.5 supports DC input mode (e.g. for use with analog sensors)
124 * through the microphone jack.
125 * When the user enables this through a mixer switch, both internal and
126 * external microphones are disabled. Gain is fixed at 0dB. In this mode,
127 * we also allow the bias to be configured through a separate mixer
128 * control. */
129 unsigned int dc_enable;
130 unsigned int dc_input_bias; /* offset into cxt5066_olpc_dc_bias */
131 unsigned int mic_boost; /* offset into cxt5066_analog_mic_boost */
Tobin Davisc9b443d2006-11-14 12:13:39 +0100132};
133
134static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo,
135 struct hda_codec *codec,
136 struct snd_pcm_substream *substream)
137{
138 struct conexant_spec *spec = codec->spec;
Takashi Iwai9a081602008-02-12 18:37:26 +0100139 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
140 hinfo);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100141}
142
143static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
144 struct hda_codec *codec,
145 unsigned int stream_tag,
146 unsigned int format,
147 struct snd_pcm_substream *substream)
148{
149 struct conexant_spec *spec = codec->spec;
150 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
151 stream_tag,
152 format, substream);
153}
154
155static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
156 struct hda_codec *codec,
157 struct snd_pcm_substream *substream)
158{
159 struct conexant_spec *spec = codec->spec;
160 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
161}
162
163/*
164 * Digital out
165 */
166static int conexant_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
167 struct hda_codec *codec,
168 struct snd_pcm_substream *substream)
169{
170 struct conexant_spec *spec = codec->spec;
171 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
172}
173
174static int conexant_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
175 struct hda_codec *codec,
176 struct snd_pcm_substream *substream)
177{
178 struct conexant_spec *spec = codec->spec;
179 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
180}
181
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200182static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
183 struct hda_codec *codec,
184 unsigned int stream_tag,
185 unsigned int format,
186 struct snd_pcm_substream *substream)
187{
188 struct conexant_spec *spec = codec->spec;
189 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
190 stream_tag,
191 format, substream);
192}
193
Tobin Davisc9b443d2006-11-14 12:13:39 +0100194/*
195 * Analog capture
196 */
197static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
198 struct hda_codec *codec,
199 unsigned int stream_tag,
200 unsigned int format,
201 struct snd_pcm_substream *substream)
202{
203 struct conexant_spec *spec = codec->spec;
Daniel Drake75f89912010-01-07 13:46:25 +0100204 if (spec->capture_prepare)
205 spec->capture_prepare(codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100206 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
207 stream_tag, 0, format);
208 return 0;
209}
210
211static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
212 struct hda_codec *codec,
213 struct snd_pcm_substream *substream)
214{
215 struct conexant_spec *spec = codec->spec;
Takashi Iwai888afa12008-03-18 09:57:50 +0100216 snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
Daniel Drake75f89912010-01-07 13:46:25 +0100217 if (spec->capture_cleanup)
218 spec->capture_cleanup(codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100219 return 0;
220}
221
222
223
224static struct hda_pcm_stream conexant_pcm_analog_playback = {
225 .substreams = 1,
226 .channels_min = 2,
227 .channels_max = 2,
228 .nid = 0, /* fill later */
229 .ops = {
230 .open = conexant_playback_pcm_open,
231 .prepare = conexant_playback_pcm_prepare,
232 .cleanup = conexant_playback_pcm_cleanup
233 },
234};
235
236static struct hda_pcm_stream conexant_pcm_analog_capture = {
237 .substreams = 1,
238 .channels_min = 2,
239 .channels_max = 2,
240 .nid = 0, /* fill later */
241 .ops = {
242 .prepare = conexant_capture_pcm_prepare,
243 .cleanup = conexant_capture_pcm_cleanup
244 },
245};
246
247
248static struct hda_pcm_stream conexant_pcm_digital_playback = {
249 .substreams = 1,
250 .channels_min = 2,
251 .channels_max = 2,
252 .nid = 0, /* fill later */
253 .ops = {
254 .open = conexant_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200255 .close = conexant_dig_playback_pcm_close,
256 .prepare = conexant_dig_playback_pcm_prepare
Tobin Davisc9b443d2006-11-14 12:13:39 +0100257 },
258};
259
260static struct hda_pcm_stream conexant_pcm_digital_capture = {
261 .substreams = 1,
262 .channels_min = 2,
263 .channels_max = 2,
264 /* NID is set in alc_build_pcms */
265};
266
Takashi Iwai461e2c72008-01-25 11:35:17 +0100267static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
268 struct hda_codec *codec,
269 unsigned int stream_tag,
270 unsigned int format,
271 struct snd_pcm_substream *substream)
272{
273 struct conexant_spec *spec = codec->spec;
274 spec->cur_adc = spec->adc_nids[spec->cur_adc_idx];
275 spec->cur_adc_stream_tag = stream_tag;
276 spec->cur_adc_format = format;
277 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
278 return 0;
279}
280
281static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
282 struct hda_codec *codec,
283 struct snd_pcm_substream *substream)
284{
285 struct conexant_spec *spec = codec->spec;
Takashi Iwai888afa12008-03-18 09:57:50 +0100286 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
Takashi Iwai461e2c72008-01-25 11:35:17 +0100287 spec->cur_adc = 0;
288 return 0;
289}
290
291static struct hda_pcm_stream cx5051_pcm_analog_capture = {
292 .substreams = 1,
293 .channels_min = 2,
294 .channels_max = 2,
295 .nid = 0, /* fill later */
296 .ops = {
297 .prepare = cx5051_capture_pcm_prepare,
298 .cleanup = cx5051_capture_pcm_cleanup
299 },
300};
301
Tobin Davisc9b443d2006-11-14 12:13:39 +0100302static int conexant_build_pcms(struct hda_codec *codec)
303{
304 struct conexant_spec *spec = codec->spec;
305 struct hda_pcm *info = spec->pcm_rec;
306
307 codec->num_pcms = 1;
308 codec->pcm_info = info;
309
310 info->name = "CONEXANT Analog";
311 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = conexant_pcm_analog_playback;
312 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
313 spec->multiout.max_channels;
314 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
315 spec->multiout.dac_nids[0];
Takashi Iwai461e2c72008-01-25 11:35:17 +0100316 if (codec->vendor_id == 0x14f15051)
317 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
318 cx5051_pcm_analog_capture;
319 else
320 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
321 conexant_pcm_analog_capture;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100322 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids;
323 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
324
325 if (spec->multiout.dig_out_nid) {
326 info++;
327 codec->num_pcms++;
328 info->name = "Conexant Digital";
Takashi Iwai7ba72ba2008-02-06 14:03:20 +0100329 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100330 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
331 conexant_pcm_digital_playback;
332 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
333 spec->multiout.dig_out_nid;
334 if (spec->dig_in_nid) {
335 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
336 conexant_pcm_digital_capture;
337 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
338 spec->dig_in_nid;
339 }
340 }
341
342 return 0;
343}
344
345static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol,
346 struct snd_ctl_elem_info *uinfo)
347{
348 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
349 struct conexant_spec *spec = codec->spec;
350
351 return snd_hda_input_mux_info(spec->input_mux, uinfo);
352}
353
354static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol,
355 struct snd_ctl_elem_value *ucontrol)
356{
357 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
358 struct conexant_spec *spec = codec->spec;
359 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
360
361 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
362 return 0;
363}
364
365static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol,
366 struct snd_ctl_elem_value *ucontrol)
367{
368 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
369 struct conexant_spec *spec = codec->spec;
370 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
371
372 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
373 spec->capsrc_nids[adc_idx],
374 &spec->cur_mux[adc_idx]);
375}
376
Takashi Iwai8c8145b2009-06-22 17:00:38 +0200377#ifdef CONFIG_SND_HDA_INPUT_JACK
Takashi Iwai95c09092009-04-14 16:15:29 +0200378static void conexant_free_jack_priv(struct snd_jack *jack)
379{
380 struct conexant_jack *jacks = jack->private_data;
381 jacks->nid = 0;
382 jacks->jack = NULL;
383}
384
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100385static int conexant_add_jack(struct hda_codec *codec,
386 hda_nid_t nid, int type)
387{
388 struct conexant_spec *spec;
389 struct conexant_jack *jack;
390 const char *name;
Takashi Iwai95c09092009-04-14 16:15:29 +0200391 int err;
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100392
393 spec = codec->spec;
394 snd_array_init(&spec->jacks, sizeof(*jack), 32);
395 jack = snd_array_new(&spec->jacks);
396 name = (type == SND_JACK_HEADPHONE) ? "Headphone" : "Mic" ;
397
398 if (!jack)
399 return -ENOMEM;
400
401 jack->nid = nid;
402 jack->type = type;
403
Takashi Iwai95c09092009-04-14 16:15:29 +0200404 err = snd_jack_new(codec->bus->card, name, type, &jack->jack);
405 if (err < 0)
406 return err;
407 jack->jack->private_data = jack;
408 jack->jack->private_free = conexant_free_jack_priv;
409 return 0;
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100410}
411
412static void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid)
413{
414 struct conexant_spec *spec = codec->spec;
415 struct conexant_jack *jacks = spec->jacks.list;
416
417 if (jacks) {
418 int i;
419 for (i = 0; i < spec->jacks.used; i++) {
420 if (jacks->nid == nid) {
421 unsigned int present;
Takashi Iwaid56757a2009-11-18 08:00:14 +0100422 present = snd_hda_jack_detect(codec, nid);
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100423
424 present = (present) ? jacks->type : 0 ;
425
426 snd_jack_report(jacks->jack,
427 present);
428 }
429 jacks++;
430 }
431 }
432}
433
434static int conexant_init_jacks(struct hda_codec *codec)
435{
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100436 struct conexant_spec *spec = codec->spec;
437 int i;
438
439 for (i = 0; i < spec->num_init_verbs; i++) {
440 const struct hda_verb *hv;
441
442 hv = spec->init_verbs[i];
443 while (hv->nid) {
444 int err = 0;
445 switch (hv->param ^ AC_USRSP_EN) {
446 case CONEXANT_HP_EVENT:
447 err = conexant_add_jack(codec, hv->nid,
448 SND_JACK_HEADPHONE);
449 conexant_report_jack(codec, hv->nid);
450 break;
451 case CXT5051_PORTC_EVENT:
452 case CONEXANT_MIC_EVENT:
453 err = conexant_add_jack(codec, hv->nid,
454 SND_JACK_MICROPHONE);
455 conexant_report_jack(codec, hv->nid);
456 break;
457 }
458 if (err < 0)
459 return err;
460 ++hv;
461 }
462 }
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100463 return 0;
464
465}
Takashi Iwai5801f992009-01-27 12:53:22 +0100466#else
467static inline void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid)
468{
469}
470
471static inline int conexant_init_jacks(struct hda_codec *codec)
472{
473 return 0;
474}
475#endif
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100476
Tobin Davisc9b443d2006-11-14 12:13:39 +0100477static int conexant_init(struct hda_codec *codec)
478{
479 struct conexant_spec *spec = codec->spec;
480 int i;
481
482 for (i = 0; i < spec->num_init_verbs; i++)
483 snd_hda_sequence_write(codec, spec->init_verbs[i]);
484 return 0;
485}
486
487static void conexant_free(struct hda_codec *codec)
488{
Takashi Iwai8c8145b2009-06-22 17:00:38 +0200489#ifdef CONFIG_SND_HDA_INPUT_JACK
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100490 struct conexant_spec *spec = codec->spec;
491 if (spec->jacks.list) {
492 struct conexant_jack *jacks = spec->jacks.list;
493 int i;
Takashi Iwai95c09092009-04-14 16:15:29 +0200494 for (i = 0; i < spec->jacks.used; i++, jacks++) {
495 if (jacks->jack)
496 snd_device_free(codec->bus->card, jacks->jack);
497 }
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100498 snd_array_free(&spec->jacks);
499 }
500#endif
Einar Rünkaruc0f8faf2009-12-16 22:41:36 +0200501 snd_hda_detach_beep_device(codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100502 kfree(codec->spec);
503}
504
Takashi Iwaib880c742009-03-10 14:41:05 +0100505static struct snd_kcontrol_new cxt_capture_mixers[] = {
506 {
507 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
508 .name = "Capture Source",
509 .info = conexant_mux_enum_info,
510 .get = conexant_mux_enum_get,
511 .put = conexant_mux_enum_put
512 },
513 {}
514};
515
Takashi Iwaidd5746a2009-03-10 14:30:40 +0100516static const char *slave_vols[] = {
517 "Headphone Playback Volume",
518 "Speaker Playback Volume",
519 NULL
520};
521
522static const char *slave_sws[] = {
523 "Headphone Playback Switch",
524 "Speaker Playback Switch",
525 NULL
526};
527
Tobin Davisc9b443d2006-11-14 12:13:39 +0100528static int conexant_build_controls(struct hda_codec *codec)
529{
530 struct conexant_spec *spec = codec->spec;
531 unsigned int i;
532 int err;
533
534 for (i = 0; i < spec->num_mixers; i++) {
535 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
536 if (err < 0)
537 return err;
538 }
539 if (spec->multiout.dig_out_nid) {
540 err = snd_hda_create_spdif_out_ctls(codec,
541 spec->multiout.dig_out_nid);
542 if (err < 0)
543 return err;
Takashi Iwai9a081602008-02-12 18:37:26 +0100544 err = snd_hda_create_spdif_share_sw(codec,
545 &spec->multiout);
546 if (err < 0)
547 return err;
548 spec->multiout.share_spdif = 1;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100549 }
550 if (spec->dig_in_nid) {
551 err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid);
552 if (err < 0)
553 return err;
554 }
Takashi Iwaidd5746a2009-03-10 14:30:40 +0100555
556 /* if we have no master control, let's create it */
557 if (spec->vmaster_nid &&
558 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
559 unsigned int vmaster_tlv[4];
560 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
561 HDA_OUTPUT, vmaster_tlv);
562 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
563 vmaster_tlv, slave_vols);
564 if (err < 0)
565 return err;
566 }
567 if (spec->vmaster_nid &&
568 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
569 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
570 NULL, slave_sws);
571 if (err < 0)
572 return err;
573 }
574
Takashi Iwaib880c742009-03-10 14:41:05 +0100575 if (spec->input_mux) {
576 err = snd_hda_add_new_ctls(codec, cxt_capture_mixers);
577 if (err < 0)
578 return err;
579 }
580
Tobin Davisc9b443d2006-11-14 12:13:39 +0100581 return 0;
582}
583
584static struct hda_codec_ops conexant_patch_ops = {
585 .build_controls = conexant_build_controls,
586 .build_pcms = conexant_build_pcms,
587 .init = conexant_init,
588 .free = conexant_free,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100589};
590
591/*
592 * EAPD control
593 * the private value = nid | (invert << 8)
594 */
595
Takashi Iwaia5ce8892007-07-23 15:42:26 +0200596#define cxt_eapd_info snd_ctl_boolean_mono_info
Tobin Davisc9b443d2006-11-14 12:13:39 +0100597
Tobin Davis82f30042007-02-13 12:45:44 +0100598static int cxt_eapd_get(struct snd_kcontrol *kcontrol,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100599 struct snd_ctl_elem_value *ucontrol)
600{
601 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
602 struct conexant_spec *spec = codec->spec;
603 int invert = (kcontrol->private_value >> 8) & 1;
604 if (invert)
605 ucontrol->value.integer.value[0] = !spec->cur_eapd;
606 else
607 ucontrol->value.integer.value[0] = spec->cur_eapd;
608 return 0;
Tobin Davis82f30042007-02-13 12:45:44 +0100609
Tobin Davisc9b443d2006-11-14 12:13:39 +0100610}
611
Tobin Davis82f30042007-02-13 12:45:44 +0100612static int cxt_eapd_put(struct snd_kcontrol *kcontrol,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100613 struct snd_ctl_elem_value *ucontrol)
614{
615 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
616 struct conexant_spec *spec = codec->spec;
617 int invert = (kcontrol->private_value >> 8) & 1;
618 hda_nid_t nid = kcontrol->private_value & 0xff;
619 unsigned int eapd;
Tobin Davis82f30042007-02-13 12:45:44 +0100620
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100621 eapd = !!ucontrol->value.integer.value[0];
Tobin Davisc9b443d2006-11-14 12:13:39 +0100622 if (invert)
623 eapd = !eapd;
Takashi Iwai82beb8f2007-08-10 17:09:26 +0200624 if (eapd == spec->cur_eapd)
Tobin Davisc9b443d2006-11-14 12:13:39 +0100625 return 0;
Tobin Davis82f30042007-02-13 12:45:44 +0100626
Tobin Davisc9b443d2006-11-14 12:13:39 +0100627 spec->cur_eapd = eapd;
Takashi Iwai82beb8f2007-08-10 17:09:26 +0200628 snd_hda_codec_write_cache(codec, nid,
629 0, AC_VERB_SET_EAPD_BTLENABLE,
630 eapd ? 0x02 : 0x00);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100631 return 1;
632}
633
Takashi Iwai86d72bd2006-11-28 11:33:10 +0100634/* controls for test mode */
635#ifdef CONFIG_SND_DEBUG
636
Tobin Davis82f30042007-02-13 12:45:44 +0100637#define CXT_EAPD_SWITCH(xname, nid, mask) \
638 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
639 .info = cxt_eapd_info, \
640 .get = cxt_eapd_get, \
641 .put = cxt_eapd_put, \
642 .private_value = nid | (mask<<16) }
643
644
645
Tobin Davisc9b443d2006-11-14 12:13:39 +0100646static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol,
647 struct snd_ctl_elem_info *uinfo)
648{
649 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
650 struct conexant_spec *spec = codec->spec;
651 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
652 spec->num_channel_mode);
653}
654
655static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol,
656 struct snd_ctl_elem_value *ucontrol)
657{
658 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
659 struct conexant_spec *spec = codec->spec;
660 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
661 spec->num_channel_mode,
662 spec->multiout.max_channels);
663}
664
665static int conexant_ch_mode_put(struct snd_kcontrol *kcontrol,
666 struct snd_ctl_elem_value *ucontrol)
667{
668 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
669 struct conexant_spec *spec = codec->spec;
670 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
671 spec->num_channel_mode,
672 &spec->multiout.max_channels);
673 if (err >= 0 && spec->need_dac_fix)
674 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
675 return err;
676}
677
678#define CXT_PIN_MODE(xname, nid, dir) \
679 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
680 .info = conexant_ch_mode_info, \
681 .get = conexant_ch_mode_get, \
682 .put = conexant_ch_mode_put, \
683 .private_value = nid | (dir<<16) }
684
Takashi Iwai86d72bd2006-11-28 11:33:10 +0100685#endif /* CONFIG_SND_DEBUG */
686
Tobin Davisc9b443d2006-11-14 12:13:39 +0100687/* Conexant 5045 specific */
688
689static hda_nid_t cxt5045_dac_nids[1] = { 0x19 };
690static hda_nid_t cxt5045_adc_nids[1] = { 0x1a };
691static hda_nid_t cxt5045_capsrc_nids[1] = { 0x1a };
Takashi Iwaicbef9782008-02-22 18:36:46 +0100692#define CXT5045_SPDIF_OUT 0x18
Tobin Davisc9b443d2006-11-14 12:13:39 +0100693
Tobin Davis5cd57522006-11-20 17:42:09 +0100694static struct hda_channel_mode cxt5045_modes[1] = {
695 { 2, NULL },
696};
Tobin Davisc9b443d2006-11-14 12:13:39 +0100697
698static struct hda_input_mux cxt5045_capture_source = {
699 .num_items = 2,
700 .items = {
Tobin Davis82f30042007-02-13 12:45:44 +0100701 { "IntMic", 0x1 },
Jiang zhef4beee92008-01-17 11:19:26 +0100702 { "ExtMic", 0x2 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100703 }
704};
705
Jiang Zhe5218c892008-01-17 11:18:41 +0100706static struct hda_input_mux cxt5045_capture_source_benq = {
Lukasz Marcinowski22e14132009-09-22 21:42:40 +0200707 .num_items = 5,
Jiang Zhe5218c892008-01-17 11:18:41 +0100708 .items = {
709 { "IntMic", 0x1 },
710 { "ExtMic", 0x2 },
711 { "LineIn", 0x3 },
Lukasz Marcinowski22e14132009-09-22 21:42:40 +0200712 { "CD", 0x4 },
713 { "Mixer", 0x0 },
Jiang Zhe5218c892008-01-17 11:18:41 +0100714 }
715};
716
Jiang zhe2de3c232008-03-06 11:09:09 +0100717static struct hda_input_mux cxt5045_capture_source_hp530 = {
718 .num_items = 2,
719 .items = {
720 { "ExtMic", 0x1 },
721 { "IntMic", 0x2 },
722 }
723};
724
Tobin Davisc9b443d2006-11-14 12:13:39 +0100725/* turn on/off EAPD (+ mute HP) as a master switch */
726static int cxt5045_hp_master_sw_put(struct snd_kcontrol *kcontrol,
727 struct snd_ctl_elem_value *ucontrol)
728{
729 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
730 struct conexant_spec *spec = codec->spec;
Tobin Davis82f30042007-02-13 12:45:44 +0100731 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100732
Tobin Davis82f30042007-02-13 12:45:44 +0100733 if (!cxt_eapd_put(kcontrol, ucontrol))
Tobin Davisc9b443d2006-11-14 12:13:39 +0100734 return 0;
735
Tobin Davis82f30042007-02-13 12:45:44 +0100736 /* toggle internal speakers mute depending of presence of
737 * the headphone jack
738 */
Takashi Iwai47fd8302007-08-10 17:11:07 +0200739 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
740 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
741 HDA_AMP_MUTE, bits);
Tobin Davis7f296732007-03-12 11:39:01 +0100742
Takashi Iwai47fd8302007-08-10 17:11:07 +0200743 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
744 snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0,
745 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100746 return 1;
747}
748
749/* bind volumes of both NID 0x10 and 0x11 */
Takashi Iwaicca3b372007-08-10 17:12:15 +0200750static struct hda_bind_ctls cxt5045_hp_bind_master_vol = {
751 .ops = &snd_hda_bind_vol,
752 .values = {
753 HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT),
754 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT),
755 0
756 },
757};
Tobin Davisc9b443d2006-11-14 12:13:39 +0100758
Tobin Davis7f296732007-03-12 11:39:01 +0100759/* toggle input of built-in and mic jack appropriately */
760static void cxt5045_hp_automic(struct hda_codec *codec)
761{
762 static struct hda_verb mic_jack_on[] = {
763 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
764 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
765 {}
766 };
767 static struct hda_verb mic_jack_off[] = {
768 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
769 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
770 {}
771 };
772 unsigned int present;
773
Takashi Iwaid56757a2009-11-18 08:00:14 +0100774 present = snd_hda_jack_detect(codec, 0x12);
Tobin Davis7f296732007-03-12 11:39:01 +0100775 if (present)
776 snd_hda_sequence_write(codec, mic_jack_on);
777 else
778 snd_hda_sequence_write(codec, mic_jack_off);
779}
780
Tobin Davisc9b443d2006-11-14 12:13:39 +0100781
782/* mute internal speaker if HP is plugged */
783static void cxt5045_hp_automute(struct hda_codec *codec)
784{
Tobin Davis82f30042007-02-13 12:45:44 +0100785 struct conexant_spec *spec = codec->spec;
Tobin Davisdd87da12007-02-26 16:07:42 +0100786 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100787
Takashi Iwaid56757a2009-11-18 08:00:14 +0100788 spec->hp_present = snd_hda_jack_detect(codec, 0x11);
Tobin Davisdd87da12007-02-26 16:07:42 +0100789
Takashi Iwai47fd8302007-08-10 17:11:07 +0200790 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
791 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
792 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100793}
794
795/* unsolicited event for HP jack sensing */
796static void cxt5045_hp_unsol_event(struct hda_codec *codec,
797 unsigned int res)
798{
799 res >>= 26;
800 switch (res) {
801 case CONEXANT_HP_EVENT:
802 cxt5045_hp_automute(codec);
803 break;
Tobin Davis7f296732007-03-12 11:39:01 +0100804 case CONEXANT_MIC_EVENT:
805 cxt5045_hp_automic(codec);
806 break;
807
Tobin Davisc9b443d2006-11-14 12:13:39 +0100808 }
809}
810
811static struct snd_kcontrol_new cxt5045_mixers[] = {
Takashi Iwaic8229c32007-10-19 08:06:21 +0200812 HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
813 HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
814 HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
815 HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
816 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
817 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
818 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
819 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
820 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
821 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
Takashi Iwaicca3b372007-08-10 17:12:15 +0200822 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100823 {
824 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
825 .name = "Master Playback Switch",
Tobin Davis82f30042007-02-13 12:45:44 +0100826 .info = cxt_eapd_info,
827 .get = cxt_eapd_get,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100828 .put = cxt5045_hp_master_sw_put,
Tobin Davis82f30042007-02-13 12:45:44 +0100829 .private_value = 0x10,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100830 },
831
832 {}
833};
834
Jiang Zhe5218c892008-01-17 11:18:41 +0100835static struct snd_kcontrol_new cxt5045_benq_mixers[] = {
Lukasz Marcinowski22e14132009-09-22 21:42:40 +0200836 HDA_CODEC_VOLUME("CD Capture Volume", 0x1a, 0x04, HDA_INPUT),
837 HDA_CODEC_MUTE("CD Capture Switch", 0x1a, 0x04, HDA_INPUT),
838 HDA_CODEC_VOLUME("CD Playback Volume", 0x17, 0x4, HDA_INPUT),
839 HDA_CODEC_MUTE("CD Playback Switch", 0x17, 0x4, HDA_INPUT),
840
Jiang Zhe5218c892008-01-17 11:18:41 +0100841 HDA_CODEC_VOLUME("Line In Capture Volume", 0x1a, 0x03, HDA_INPUT),
842 HDA_CODEC_MUTE("Line In Capture Switch", 0x1a, 0x03, HDA_INPUT),
843 HDA_CODEC_VOLUME("Line In Playback Volume", 0x17, 0x3, HDA_INPUT),
844 HDA_CODEC_MUTE("Line In Playback Switch", 0x17, 0x3, HDA_INPUT),
845
Lukasz Marcinowski22e14132009-09-22 21:42:40 +0200846 HDA_CODEC_VOLUME("Mixer Capture Volume", 0x1a, 0x0, HDA_INPUT),
847 HDA_CODEC_MUTE("Mixer Capture Switch", 0x1a, 0x0, HDA_INPUT),
848
Jiang Zhe5218c892008-01-17 11:18:41 +0100849 {}
850};
851
Jiang zhe2de3c232008-03-06 11:09:09 +0100852static struct snd_kcontrol_new cxt5045_mixers_hp530[] = {
Jiang zhe2de3c232008-03-06 11:09:09 +0100853 HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
854 HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
855 HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
856 HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
857 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
858 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
859 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
860 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
861 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
862 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
863 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
864 {
865 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
866 .name = "Master Playback Switch",
867 .info = cxt_eapd_info,
868 .get = cxt_eapd_get,
869 .put = cxt5045_hp_master_sw_put,
870 .private_value = 0x10,
871 },
872
873 {}
874};
875
Tobin Davisc9b443d2006-11-14 12:13:39 +0100876static struct hda_verb cxt5045_init_verbs[] = {
877 /* Line in, Mic */
Takashi Iwai4090dff2008-07-12 12:02:45 +0200878 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
Tobin Davis7f296732007-03-12 11:39:01 +0100879 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100880 /* HP, Amp */
Takashi Iwaic8229c32007-10-19 08:06:21 +0200881 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
882 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
883 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
884 {0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
885 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
886 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
887 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
888 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
889 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
Tobin Davis82f30042007-02-13 12:45:44 +0100890 /* Record selector: Int mic */
Tobin Davis7f296732007-03-12 11:39:01 +0100891 {0x1a, AC_VERB_SET_CONNECT_SEL,0x1},
Tobin Davis82f30042007-02-13 12:45:44 +0100892 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100893 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
894 /* SPDIF route: PCM */
Takashi Iwaicbef9782008-02-22 18:36:46 +0100895 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Tobin Davisc9b443d2006-11-14 12:13:39 +0100896 { 0x13, AC_VERB_SET_CONNECT_SEL, 0x0 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100897 /* EAPD */
Tobin Davis82f30042007-02-13 12:45:44 +0100898 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2 }, /* default on */
Tobin Davisc9b443d2006-11-14 12:13:39 +0100899 { } /* end */
900};
901
Jiang Zhe5218c892008-01-17 11:18:41 +0100902static struct hda_verb cxt5045_benq_init_verbs[] = {
903 /* Int Mic, Mic */
904 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
905 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
906 /* Line In,HP, Amp */
907 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
908 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
909 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
910 {0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
911 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
912 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
913 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
914 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
915 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
916 /* Record selector: Int mic */
917 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x1},
918 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
919 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
920 /* SPDIF route: PCM */
Takashi Iwaicbef9782008-02-22 18:36:46 +0100921 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Jiang Zhe5218c892008-01-17 11:18:41 +0100922 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
923 /* EAPD */
924 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
925 { } /* end */
926};
Tobin Davis7f296732007-03-12 11:39:01 +0100927
928static struct hda_verb cxt5045_hp_sense_init_verbs[] = {
929 /* pin sensing on HP jack */
930 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
Takashi Iwaid3091fa2007-03-28 15:11:53 +0200931 { } /* end */
Tobin Davis7f296732007-03-12 11:39:01 +0100932};
933
934static struct hda_verb cxt5045_mic_sense_init_verbs[] = {
935 /* pin sensing on HP jack */
936 {0x12, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
Takashi Iwaid3091fa2007-03-28 15:11:53 +0200937 { } /* end */
Tobin Davis7f296732007-03-12 11:39:01 +0100938};
939
Tobin Davisc9b443d2006-11-14 12:13:39 +0100940#ifdef CONFIG_SND_DEBUG
941/* Test configuration for debugging, modelled after the ALC260 test
942 * configuration.
943 */
944static struct hda_input_mux cxt5045_test_capture_source = {
945 .num_items = 5,
946 .items = {
947 { "MIXER", 0x0 },
948 { "MIC1 pin", 0x1 },
949 { "LINE1 pin", 0x2 },
950 { "HP-OUT pin", 0x3 },
951 { "CD pin", 0x4 },
952 },
953};
954
955static struct snd_kcontrol_new cxt5045_test_mixer[] = {
956
957 /* Output controls */
Tobin Davisc9b443d2006-11-14 12:13:39 +0100958 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x10, 0x0, HDA_OUTPUT),
959 HDA_CODEC_MUTE("Speaker Playback Switch", 0x10, 0x0, HDA_OUTPUT),
Tobin Davis7f296732007-03-12 11:39:01 +0100960 HDA_CODEC_VOLUME("Node 11 Playback Volume", 0x11, 0x0, HDA_OUTPUT),
961 HDA_CODEC_MUTE("Node 11 Playback Switch", 0x11, 0x0, HDA_OUTPUT),
962 HDA_CODEC_VOLUME("Node 12 Playback Volume", 0x12, 0x0, HDA_OUTPUT),
963 HDA_CODEC_MUTE("Node 12 Playback Switch", 0x12, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100964
965 /* Modes for retasking pin widgets */
966 CXT_PIN_MODE("HP-OUT pin mode", 0x11, CXT_PIN_DIR_INOUT),
967 CXT_PIN_MODE("LINE1 pin mode", 0x12, CXT_PIN_DIR_INOUT),
968
Tobin Davis82f30042007-02-13 12:45:44 +0100969 /* EAPD Switch Control */
970 CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0),
971
Tobin Davisc9b443d2006-11-14 12:13:39 +0100972 /* Loopback mixer controls */
Tobin Davisc9b443d2006-11-14 12:13:39 +0100973
Tobin Davis7f296732007-03-12 11:39:01 +0100974 HDA_CODEC_VOLUME("Mixer-1 Volume", 0x17, 0x0, HDA_INPUT),
975 HDA_CODEC_MUTE("Mixer-1 Switch", 0x17, 0x0, HDA_INPUT),
976 HDA_CODEC_VOLUME("Mixer-2 Volume", 0x17, 0x1, HDA_INPUT),
977 HDA_CODEC_MUTE("Mixer-2 Switch", 0x17, 0x1, HDA_INPUT),
978 HDA_CODEC_VOLUME("Mixer-3 Volume", 0x17, 0x2, HDA_INPUT),
979 HDA_CODEC_MUTE("Mixer-3 Switch", 0x17, 0x2, HDA_INPUT),
980 HDA_CODEC_VOLUME("Mixer-4 Volume", 0x17, 0x3, HDA_INPUT),
981 HDA_CODEC_MUTE("Mixer-4 Switch", 0x17, 0x3, HDA_INPUT),
982 HDA_CODEC_VOLUME("Mixer-5 Volume", 0x17, 0x4, HDA_INPUT),
983 HDA_CODEC_MUTE("Mixer-5 Switch", 0x17, 0x4, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100984 {
985 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
986 .name = "Input Source",
987 .info = conexant_mux_enum_info,
988 .get = conexant_mux_enum_get,
989 .put = conexant_mux_enum_put,
990 },
Tobin Davisfb3409e2007-05-17 09:40:47 +0200991 /* Audio input controls */
992 HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
993 HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
994 HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
995 HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
996 HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
997 HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
998 HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
999 HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
1000 HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
1001 HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001002 { } /* end */
1003};
1004
1005static struct hda_verb cxt5045_test_init_verbs[] = {
Tobin Davis7f296732007-03-12 11:39:01 +01001006 /* Set connections */
1007 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
1008 { 0x11, AC_VERB_SET_CONNECT_SEL, 0x0 },
1009 { 0x12, AC_VERB_SET_CONNECT_SEL, 0x0 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01001010 /* Enable retasking pins as output, initially without power amp */
1011 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Tobin Davis7f296732007-03-12 11:39:01 +01001012 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001013
1014 /* Disable digital (SPDIF) pins initially, but users can enable
1015 * them via a mixer switch. In the case of SPDIF-out, this initverb
1016 * payload also sets the generation to 0, output to be in "consumer"
1017 * PCM format, copyright asserted, no pre-emphasis and no validity
1018 * control.
1019 */
Takashi Iwaicbef9782008-02-22 18:36:46 +01001020 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1021 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001022
1023 /* Start with output sum widgets muted and their output gains at min */
1024 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1025 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1026
1027 /* Unmute retasking pin widget output buffers since the default
1028 * state appears to be output. As the pin mode is changed by the
1029 * user the pin mode control will take care of enabling the pin's
1030 * input/output buffers as needed.
1031 */
1032 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1033 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1034
1035 /* Mute capture amp left and right */
1036 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1037
1038 /* Set ADC connection select to match default mixer setting (mic1
1039 * pin)
1040 */
1041 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
Tobin Davis7f296732007-03-12 11:39:01 +01001042 {0x17, AC_VERB_SET_CONNECT_SEL, 0x00},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001043
1044 /* Mute all inputs to mixer widget (even unconnected ones) */
1045 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* Mixer pin */
1046 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* Mic1 pin */
1047 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* Line pin */
1048 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* HP pin */
1049 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1050
1051 { }
1052};
1053#endif
1054
1055
1056/* initialize jack-sensing, too */
1057static int cxt5045_init(struct hda_codec *codec)
1058{
1059 conexant_init(codec);
1060 cxt5045_hp_automute(codec);
1061 return 0;
1062}
1063
1064
1065enum {
Marc Boucher15908c32008-01-22 15:15:59 +01001066 CXT5045_LAPTOP_HPSENSE,
1067 CXT5045_LAPTOP_MICSENSE,
1068 CXT5045_LAPTOP_HPMICSENSE,
Jiang Zhe5218c892008-01-17 11:18:41 +01001069 CXT5045_BENQ,
Jiang zhe2de3c232008-03-06 11:09:09 +01001070 CXT5045_LAPTOP_HP530,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001071#ifdef CONFIG_SND_DEBUG
1072 CXT5045_TEST,
1073#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001074 CXT5045_MODELS
Tobin Davisc9b443d2006-11-14 12:13:39 +01001075};
1076
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001077static const char *cxt5045_models[CXT5045_MODELS] = {
Marc Boucher15908c32008-01-22 15:15:59 +01001078 [CXT5045_LAPTOP_HPSENSE] = "laptop-hpsense",
1079 [CXT5045_LAPTOP_MICSENSE] = "laptop-micsense",
1080 [CXT5045_LAPTOP_HPMICSENSE] = "laptop-hpmicsense",
1081 [CXT5045_BENQ] = "benq",
Jiang zhe2de3c232008-03-06 11:09:09 +01001082 [CXT5045_LAPTOP_HP530] = "laptop-hp530",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001083#ifdef CONFIG_SND_DEBUG
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001084 [CXT5045_TEST] = "test",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001085#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001086};
1087
1088static struct snd_pci_quirk cxt5045_cfg_tbl[] = {
Jiang zhe2de3c232008-03-06 11:09:09 +01001089 SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530),
Takashi Iwaidea0a502009-02-09 17:14:52 +01001090 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1091 CXT5045_LAPTOP_HPSENSE),
Takashi Iwai6a9dccd2008-07-01 14:52:05 +02001092 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P105", CXT5045_LAPTOP_MICSENSE),
Jiang Zhe5218c892008-01-17 11:18:41 +01001093 SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ),
Marc Boucher15908c32008-01-22 15:15:59 +01001094 SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE),
1095 SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE),
Takashi Iwai9e464152008-07-12 12:05:25 +02001096 SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505",
1097 CXT5045_LAPTOP_HPMICSENSE),
Marc Boucher15908c32008-01-22 15:15:59 +01001098 SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1099 SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1100 SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE),
Takashi Iwaidea0a502009-02-09 17:14:52 +01001101 SND_PCI_QUIRK_MASK(0x1631, 0xff00, 0xc100, "Packard Bell",
1102 CXT5045_LAPTOP_HPMICSENSE),
Marc Boucher15908c32008-01-22 15:15:59 +01001103 SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001104 {}
1105};
1106
1107static int patch_cxt5045(struct hda_codec *codec)
1108{
1109 struct conexant_spec *spec;
1110 int board_config;
1111
1112 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1113 if (!spec)
1114 return -ENOMEM;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001115 codec->spec = spec;
Takashi Iwai9421f952009-03-12 17:06:07 +01001116 codec->pin_amp_workaround = 1;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001117
1118 spec->multiout.max_channels = 2;
1119 spec->multiout.num_dacs = ARRAY_SIZE(cxt5045_dac_nids);
1120 spec->multiout.dac_nids = cxt5045_dac_nids;
1121 spec->multiout.dig_out_nid = CXT5045_SPDIF_OUT;
1122 spec->num_adc_nids = 1;
1123 spec->adc_nids = cxt5045_adc_nids;
1124 spec->capsrc_nids = cxt5045_capsrc_nids;
1125 spec->input_mux = &cxt5045_capture_source;
1126 spec->num_mixers = 1;
1127 spec->mixers[0] = cxt5045_mixers;
1128 spec->num_init_verbs = 1;
1129 spec->init_verbs[0] = cxt5045_init_verbs;
1130 spec->spdif_route = 0;
Tobin Davis5cd57522006-11-20 17:42:09 +01001131 spec->num_channel_mode = ARRAY_SIZE(cxt5045_modes),
1132 spec->channel_mode = cxt5045_modes,
1133
Tobin Davisc9b443d2006-11-14 12:13:39 +01001134
1135 codec->patch_ops = conexant_patch_ops;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001136
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001137 board_config = snd_hda_check_board_config(codec, CXT5045_MODELS,
1138 cxt5045_models,
1139 cxt5045_cfg_tbl);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001140 switch (board_config) {
Marc Boucher15908c32008-01-22 15:15:59 +01001141 case CXT5045_LAPTOP_HPSENSE:
Tobin Davis7f296732007-03-12 11:39:01 +01001142 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001143 spec->input_mux = &cxt5045_capture_source;
1144 spec->num_init_verbs = 2;
Tobin Davis7f296732007-03-12 11:39:01 +01001145 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1146 spec->mixers[0] = cxt5045_mixers;
1147 codec->patch_ops.init = cxt5045_init;
1148 break;
Marc Boucher15908c32008-01-22 15:15:59 +01001149 case CXT5045_LAPTOP_MICSENSE:
Takashi Iwai86376df2008-07-12 12:04:05 +02001150 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
Tobin Davis7f296732007-03-12 11:39:01 +01001151 spec->input_mux = &cxt5045_capture_source;
1152 spec->num_init_verbs = 2;
1153 spec->init_verbs[1] = cxt5045_mic_sense_init_verbs;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001154 spec->mixers[0] = cxt5045_mixers;
1155 codec->patch_ops.init = cxt5045_init;
1156 break;
Marc Boucher15908c32008-01-22 15:15:59 +01001157 default:
1158 case CXT5045_LAPTOP_HPMICSENSE:
1159 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1160 spec->input_mux = &cxt5045_capture_source;
1161 spec->num_init_verbs = 3;
1162 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1163 spec->init_verbs[2] = cxt5045_mic_sense_init_verbs;
1164 spec->mixers[0] = cxt5045_mixers;
1165 codec->patch_ops.init = cxt5045_init;
1166 break;
Jiang Zhe5218c892008-01-17 11:18:41 +01001167 case CXT5045_BENQ:
1168 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1169 spec->input_mux = &cxt5045_capture_source_benq;
1170 spec->num_init_verbs = 1;
1171 spec->init_verbs[0] = cxt5045_benq_init_verbs;
1172 spec->mixers[0] = cxt5045_mixers;
1173 spec->mixers[1] = cxt5045_benq_mixers;
1174 spec->num_mixers = 2;
1175 codec->patch_ops.init = cxt5045_init;
1176 break;
Jiang zhe2de3c232008-03-06 11:09:09 +01001177 case CXT5045_LAPTOP_HP530:
1178 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1179 spec->input_mux = &cxt5045_capture_source_hp530;
1180 spec->num_init_verbs = 2;
1181 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1182 spec->mixers[0] = cxt5045_mixers_hp530;
1183 codec->patch_ops.init = cxt5045_init;
1184 break;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001185#ifdef CONFIG_SND_DEBUG
1186 case CXT5045_TEST:
1187 spec->input_mux = &cxt5045_test_capture_source;
1188 spec->mixers[0] = cxt5045_test_mixer;
1189 spec->init_verbs[0] = cxt5045_test_init_verbs;
Marc Boucher15908c32008-01-22 15:15:59 +01001190 break;
1191
Tobin Davisc9b443d2006-11-14 12:13:39 +01001192#endif
1193 }
Takashi Iwai48ecb7e2007-12-17 14:32:49 +01001194
Takashi Iwai031005f2008-06-26 14:49:58 +02001195 switch (codec->subsystem_id >> 16) {
1196 case 0x103c:
Daniel T Chen0b587fc2009-11-25 18:27:20 -05001197 case 0x1734:
1198 /* HP & Fujitsu-Siemens laptops have really bad sound over 0dB
1199 * on NID 0x17. Fix max PCM level to 0 dB
1200 * (originally it has 0x2b steps with 0dB offset 0x14)
Takashi Iwai031005f2008-06-26 14:49:58 +02001201 */
1202 snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT,
1203 (0x14 << AC_AMPCAP_OFFSET_SHIFT) |
1204 (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) |
1205 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
1206 (1 << AC_AMPCAP_MUTE_SHIFT));
1207 break;
1208 }
Takashi Iwai48ecb7e2007-12-17 14:32:49 +01001209
Tobin Davisc9b443d2006-11-14 12:13:39 +01001210 return 0;
1211}
1212
1213
1214/* Conexant 5047 specific */
Tobin Davis82f30042007-02-13 12:45:44 +01001215#define CXT5047_SPDIF_OUT 0x11
Tobin Davisc9b443d2006-11-14 12:13:39 +01001216
Takashi Iwai5b3a7442009-03-10 15:10:55 +01001217static hda_nid_t cxt5047_dac_nids[1] = { 0x10 }; /* 0x1c */
Tobin Davisc9b443d2006-11-14 12:13:39 +01001218static hda_nid_t cxt5047_adc_nids[1] = { 0x12 };
1219static hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a };
Tobin Davisc9b443d2006-11-14 12:13:39 +01001220
Tobin Davis5cd57522006-11-20 17:42:09 +01001221static struct hda_channel_mode cxt5047_modes[1] = {
1222 { 2, NULL },
1223};
Tobin Davisc9b443d2006-11-14 12:13:39 +01001224
Tobin Davis82f30042007-02-13 12:45:44 +01001225static struct hda_input_mux cxt5047_toshiba_capture_source = {
1226 .num_items = 2,
1227 .items = {
1228 { "ExtMic", 0x2 },
1229 { "Line-In", 0x1 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01001230 }
1231};
1232
1233/* turn on/off EAPD (+ mute HP) as a master switch */
1234static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1235 struct snd_ctl_elem_value *ucontrol)
1236{
1237 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1238 struct conexant_spec *spec = codec->spec;
Tobin Davis82f30042007-02-13 12:45:44 +01001239 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001240
Tobin Davis82f30042007-02-13 12:45:44 +01001241 if (!cxt_eapd_put(kcontrol, ucontrol))
Tobin Davisc9b443d2006-11-14 12:13:39 +01001242 return 0;
1243
Tobin Davis82f30042007-02-13 12:45:44 +01001244 /* toggle internal speakers mute depending of presence of
1245 * the headphone jack
1246 */
Takashi Iwai47fd8302007-08-10 17:11:07 +02001247 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
Takashi Iwai3b7523f2009-03-12 16:45:01 +01001248 /* NOTE: Conexat codec needs the index for *OUTPUT* amp of
1249 * pin widgets unlike other codecs. In this case, we need to
1250 * set index 0x01 for the volume from the mixer amp 0x19.
1251 */
Gregorio Guidi5d75bc52009-03-12 16:41:51 +01001252 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001253 HDA_AMP_MUTE, bits);
1254 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
1255 snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0,
1256 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001257 return 1;
1258}
1259
Tobin Davisc9b443d2006-11-14 12:13:39 +01001260/* mute internal speaker if HP is plugged */
1261static void cxt5047_hp_automute(struct hda_codec *codec)
1262{
Tobin Davis82f30042007-02-13 12:45:44 +01001263 struct conexant_spec *spec = codec->spec;
Tobin Davisdd87da12007-02-26 16:07:42 +01001264 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001265
Takashi Iwaid56757a2009-11-18 08:00:14 +01001266 spec->hp_present = snd_hda_jack_detect(codec, 0x13);
Tobin Davisdd87da12007-02-26 16:07:42 +01001267
Takashi Iwai47fd8302007-08-10 17:11:07 +02001268 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
Takashi Iwai3b7523f2009-03-12 16:45:01 +01001269 /* See the note in cxt5047_hp_master_sw_put */
Gregorio Guidi5d75bc52009-03-12 16:41:51 +01001270 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001271 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001272}
1273
1274/* toggle input of built-in and mic jack appropriately */
1275static void cxt5047_hp_automic(struct hda_codec *codec)
1276{
1277 static struct hda_verb mic_jack_on[] = {
Marc Boucher9f113e02008-01-22 15:18:08 +01001278 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1279 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001280 {}
1281 };
1282 static struct hda_verb mic_jack_off[] = {
Marc Boucher9f113e02008-01-22 15:18:08 +01001283 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1284 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001285 {}
1286 };
1287 unsigned int present;
1288
Takashi Iwaid56757a2009-11-18 08:00:14 +01001289 present = snd_hda_jack_detect(codec, 0x15);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001290 if (present)
1291 snd_hda_sequence_write(codec, mic_jack_on);
1292 else
1293 snd_hda_sequence_write(codec, mic_jack_off);
1294}
1295
1296/* unsolicited event for HP jack sensing */
1297static void cxt5047_hp_unsol_event(struct hda_codec *codec,
1298 unsigned int res)
1299{
Marc Boucher9f113e02008-01-22 15:18:08 +01001300 switch (res >> 26) {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001301 case CONEXANT_HP_EVENT:
1302 cxt5047_hp_automute(codec);
1303 break;
1304 case CONEXANT_MIC_EVENT:
1305 cxt5047_hp_automic(codec);
1306 break;
1307 }
1308}
1309
Takashi Iwaidf481e42009-03-10 15:35:35 +01001310static struct snd_kcontrol_new cxt5047_base_mixers[] = {
1311 HDA_CODEC_VOLUME("Mic Playback Volume", 0x19, 0x02, HDA_INPUT),
1312 HDA_CODEC_MUTE("Mic Playback Switch", 0x19, 0x02, HDA_INPUT),
1313 HDA_CODEC_VOLUME("Mic Boost", 0x1a, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001314 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1315 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1316 HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1317 HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
Tobin Davis82f30042007-02-13 12:45:44 +01001318 {
1319 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1320 .name = "Master Playback Switch",
1321 .info = cxt_eapd_info,
1322 .get = cxt_eapd_get,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001323 .put = cxt5047_hp_master_sw_put,
1324 .private_value = 0x13,
1325 },
1326
1327 {}
1328};
1329
Takashi Iwaidf481e42009-03-10 15:35:35 +01001330static struct snd_kcontrol_new cxt5047_hp_spk_mixers[] = {
Takashi Iwai3b7523f2009-03-12 16:45:01 +01001331 /* See the note in cxt5047_hp_master_sw_put */
Gregorio Guidi5d75bc52009-03-12 16:41:51 +01001332 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x01, HDA_OUTPUT),
Takashi Iwaidf481e42009-03-10 15:35:35 +01001333 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1334 {}
1335};
1336
1337static struct snd_kcontrol_new cxt5047_hp_only_mixers[] = {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001338 HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001339 { } /* end */
1340};
1341
1342static struct hda_verb cxt5047_init_verbs[] = {
1343 /* Line in, Mic, Built-in Mic */
1344 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1345 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1346 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
Tobin Davis7f296732007-03-12 11:39:01 +01001347 /* HP, Speaker */
Tobin Davisb7589ce2007-04-24 17:56:55 +02001348 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Takashi Iwai5b3a7442009-03-10 15:10:55 +01001349 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0}, /* mixer(0x19) */
1350 {0x1d, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mixer(0x19) */
Tobin Davis7f296732007-03-12 11:39:01 +01001351 /* Record selector: Mic */
1352 {0x12, AC_VERB_SET_CONNECT_SEL,0x03},
1353 {0x19, AC_VERB_SET_AMP_GAIN_MUTE,
1354 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
1355 {0x1A, AC_VERB_SET_CONNECT_SEL,0x02},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001356 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1357 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00},
1358 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1359 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x03},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001360 /* SPDIF route: PCM */
1361 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 },
Tobin Davis82f30042007-02-13 12:45:44 +01001362 /* Enable unsolicited events */
1363 {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1364 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001365 { } /* end */
1366};
1367
1368/* configuration for Toshiba Laptops */
1369static struct hda_verb cxt5047_toshiba_init_verbs[] = {
Takashi Iwai3b628862009-03-10 14:53:54 +01001370 {0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0}, /* default off */
Tobin Davisc9b443d2006-11-14 12:13:39 +01001371 {}
1372};
1373
1374/* Test configuration for debugging, modelled after the ALC260 test
1375 * configuration.
1376 */
1377#ifdef CONFIG_SND_DEBUG
1378static struct hda_input_mux cxt5047_test_capture_source = {
Tobin Davis82f30042007-02-13 12:45:44 +01001379 .num_items = 4,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001380 .items = {
Tobin Davis82f30042007-02-13 12:45:44 +01001381 { "LINE1 pin", 0x0 },
1382 { "MIC1 pin", 0x1 },
1383 { "MIC2 pin", 0x2 },
1384 { "CD pin", 0x3 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01001385 },
1386};
1387
1388static struct snd_kcontrol_new cxt5047_test_mixer[] = {
1389
1390 /* Output only controls */
Tobin Davis82f30042007-02-13 12:45:44 +01001391 HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT),
1392 HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT),
1393 HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT),
1394 HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001395 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1396 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1397 HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1398 HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT),
Tobin Davis82f30042007-02-13 12:45:44 +01001399 HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT),
1400 HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1401 HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT),
1402 HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001403
1404 /* Modes for retasking pin widgets */
1405 CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT),
1406 CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT),
1407
Tobin Davis82f30042007-02-13 12:45:44 +01001408 /* EAPD Switch Control */
1409 CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0),
1410
Tobin Davisc9b443d2006-11-14 12:13:39 +01001411 /* Loopback mixer controls */
Tobin Davis82f30042007-02-13 12:45:44 +01001412 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT),
1413 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT),
1414 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT),
1415 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT),
1416 HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT),
1417 HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT),
1418 HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT),
1419 HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001420
Tobin Davis82f30042007-02-13 12:45:44 +01001421 HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT),
1422 HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT),
1423 HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT),
1424 HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT),
1425 HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT),
1426 HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT),
1427 HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT),
1428 HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001429 {
1430 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1431 .name = "Input Source",
1432 .info = conexant_mux_enum_info,
1433 .get = conexant_mux_enum_get,
1434 .put = conexant_mux_enum_put,
1435 },
Takashi Iwai854206b2009-11-30 18:22:04 +01001436 HDA_CODEC_VOLUME("Mic Boost Volume", 0x1a, 0x0, HDA_OUTPUT),
Marc Boucher9f113e02008-01-22 15:18:08 +01001437
Tobin Davisc9b443d2006-11-14 12:13:39 +01001438 { } /* end */
1439};
1440
1441static struct hda_verb cxt5047_test_init_verbs[] = {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001442 /* Enable retasking pins as output, initially without power amp */
1443 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1444 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1445 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1446
1447 /* Disable digital (SPDIF) pins initially, but users can enable
1448 * them via a mixer switch. In the case of SPDIF-out, this initverb
1449 * payload also sets the generation to 0, output to be in "consumer"
1450 * PCM format, copyright asserted, no pre-emphasis and no validity
1451 * control.
1452 */
1453 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1454
1455 /* Ensure mic1, mic2, line1 pin widgets take input from the
1456 * OUT1 sum bus when acting as an output.
1457 */
1458 {0x1a, AC_VERB_SET_CONNECT_SEL, 0},
1459 {0x1b, AC_VERB_SET_CONNECT_SEL, 0},
1460
1461 /* Start with output sum widgets muted and their output gains at min */
1462 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1463 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1464
1465 /* Unmute retasking pin widget output buffers since the default
1466 * state appears to be output. As the pin mode is changed by the
1467 * user the pin mode control will take care of enabling the pin's
1468 * input/output buffers as needed.
1469 */
1470 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1471 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1472 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1473
1474 /* Mute capture amp left and right */
1475 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1476
1477 /* Set ADC connection select to match default mixer setting (mic1
1478 * pin)
1479 */
1480 {0x12, AC_VERB_SET_CONNECT_SEL, 0x00},
1481
1482 /* Mute all inputs to mixer widget (even unconnected ones) */
1483 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
1484 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
1485 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
1486 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
1487 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1488 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
1489 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
1490 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
1491
1492 { }
1493};
1494#endif
1495
1496
1497/* initialize jack-sensing, too */
1498static int cxt5047_hp_init(struct hda_codec *codec)
1499{
1500 conexant_init(codec);
1501 cxt5047_hp_automute(codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001502 return 0;
1503}
1504
1505
1506enum {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001507 CXT5047_LAPTOP, /* Laptops w/o EAPD support */
1508 CXT5047_LAPTOP_HP, /* Some HP laptops */
1509 CXT5047_LAPTOP_EAPD, /* Laptops with EAPD support */
Tobin Davisc9b443d2006-11-14 12:13:39 +01001510#ifdef CONFIG_SND_DEBUG
1511 CXT5047_TEST,
1512#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001513 CXT5047_MODELS
Tobin Davisc9b443d2006-11-14 12:13:39 +01001514};
1515
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001516static const char *cxt5047_models[CXT5047_MODELS] = {
1517 [CXT5047_LAPTOP] = "laptop",
1518 [CXT5047_LAPTOP_HP] = "laptop-hp",
1519 [CXT5047_LAPTOP_EAPD] = "laptop-eapd",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001520#ifdef CONFIG_SND_DEBUG
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001521 [CXT5047_TEST] = "test",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001522#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001523};
1524
1525static struct snd_pci_quirk cxt5047_cfg_tbl[] = {
Takashi Iwaiac3e3742007-12-17 17:14:18 +01001526 SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP),
Takashi Iwaidea0a502009-02-09 17:14:52 +01001527 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1528 CXT5047_LAPTOP),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001529 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001530 {}
1531};
1532
1533static int patch_cxt5047(struct hda_codec *codec)
1534{
1535 struct conexant_spec *spec;
1536 int board_config;
1537
1538 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1539 if (!spec)
1540 return -ENOMEM;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001541 codec->spec = spec;
Takashi Iwai9421f952009-03-12 17:06:07 +01001542 codec->pin_amp_workaround = 1;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001543
1544 spec->multiout.max_channels = 2;
1545 spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids);
1546 spec->multiout.dac_nids = cxt5047_dac_nids;
1547 spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT;
1548 spec->num_adc_nids = 1;
1549 spec->adc_nids = cxt5047_adc_nids;
1550 spec->capsrc_nids = cxt5047_capsrc_nids;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001551 spec->num_mixers = 1;
Takashi Iwaidf481e42009-03-10 15:35:35 +01001552 spec->mixers[0] = cxt5047_base_mixers;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001553 spec->num_init_verbs = 1;
1554 spec->init_verbs[0] = cxt5047_init_verbs;
1555 spec->spdif_route = 0;
Tobin Davis5cd57522006-11-20 17:42:09 +01001556 spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes),
1557 spec->channel_mode = cxt5047_modes,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001558
1559 codec->patch_ops = conexant_patch_ops;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001560
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001561 board_config = snd_hda_check_board_config(codec, CXT5047_MODELS,
1562 cxt5047_models,
1563 cxt5047_cfg_tbl);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001564 switch (board_config) {
1565 case CXT5047_LAPTOP:
Takashi Iwaidf481e42009-03-10 15:35:35 +01001566 spec->num_mixers = 2;
1567 spec->mixers[1] = cxt5047_hp_spk_mixers;
1568 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001569 break;
1570 case CXT5047_LAPTOP_HP:
Takashi Iwaidf481e42009-03-10 15:35:35 +01001571 spec->num_mixers = 2;
1572 spec->mixers[1] = cxt5047_hp_only_mixers;
Tobin Davisfb3409e2007-05-17 09:40:47 +02001573 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001574 codec->patch_ops.init = cxt5047_hp_init;
1575 break;
1576 case CXT5047_LAPTOP_EAPD:
Tobin Davis82f30042007-02-13 12:45:44 +01001577 spec->input_mux = &cxt5047_toshiba_capture_source;
Takashi Iwaidf481e42009-03-10 15:35:35 +01001578 spec->num_mixers = 2;
1579 spec->mixers[1] = cxt5047_hp_spk_mixers;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001580 spec->num_init_verbs = 2;
1581 spec->init_verbs[1] = cxt5047_toshiba_init_verbs;
Tobin Davisfb3409e2007-05-17 09:40:47 +02001582 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001583 break;
1584#ifdef CONFIG_SND_DEBUG
1585 case CXT5047_TEST:
1586 spec->input_mux = &cxt5047_test_capture_source;
1587 spec->mixers[0] = cxt5047_test_mixer;
1588 spec->init_verbs[0] = cxt5047_test_init_verbs;
Tobin Davisfb3409e2007-05-17 09:40:47 +02001589 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001590#endif
1591 }
Takashi Iwaidd5746a2009-03-10 14:30:40 +01001592 spec->vmaster_nid = 0x13;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001593 return 0;
1594}
1595
Takashi Iwai461e2c72008-01-25 11:35:17 +01001596/* Conexant 5051 specific */
1597static hda_nid_t cxt5051_dac_nids[1] = { 0x10 };
1598static hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 };
Takashi Iwai461e2c72008-01-25 11:35:17 +01001599
1600static struct hda_channel_mode cxt5051_modes[1] = {
1601 { 2, NULL },
1602};
1603
1604static void cxt5051_update_speaker(struct hda_codec *codec)
1605{
1606 struct conexant_spec *spec = codec->spec;
1607 unsigned int pinctl;
1608 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
1609 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1610 pinctl);
1611}
1612
1613/* turn on/off EAPD (+ mute HP) as a master switch */
1614static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1615 struct snd_ctl_elem_value *ucontrol)
1616{
1617 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1618
1619 if (!cxt_eapd_put(kcontrol, ucontrol))
1620 return 0;
1621 cxt5051_update_speaker(codec);
1622 return 1;
1623}
1624
1625/* toggle input of built-in and mic jack appropriately */
1626static void cxt5051_portb_automic(struct hda_codec *codec)
1627{
Takashi Iwai79d7d532009-03-04 09:03:50 +01001628 struct conexant_spec *spec = codec->spec;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001629 unsigned int present;
1630
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001631 if (!(spec->auto_mic & AUTO_MIC_PORTB))
Takashi Iwai79d7d532009-03-04 09:03:50 +01001632 return;
Takashi Iwaid56757a2009-11-18 08:00:14 +01001633 present = snd_hda_jack_detect(codec, 0x17);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001634 snd_hda_codec_write(codec, 0x14, 0,
1635 AC_VERB_SET_CONNECT_SEL,
1636 present ? 0x01 : 0x00);
1637}
1638
1639/* switch the current ADC according to the jack state */
1640static void cxt5051_portc_automic(struct hda_codec *codec)
1641{
1642 struct conexant_spec *spec = codec->spec;
1643 unsigned int present;
1644 hda_nid_t new_adc;
1645
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001646 if (!(spec->auto_mic & AUTO_MIC_PORTC))
Takashi Iwai79d7d532009-03-04 09:03:50 +01001647 return;
Takashi Iwaid56757a2009-11-18 08:00:14 +01001648 present = snd_hda_jack_detect(codec, 0x18);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001649 if (present)
1650 spec->cur_adc_idx = 1;
1651 else
1652 spec->cur_adc_idx = 0;
1653 new_adc = spec->adc_nids[spec->cur_adc_idx];
1654 if (spec->cur_adc && spec->cur_adc != new_adc) {
1655 /* stream is running, let's swap the current ADC */
Takashi Iwai888afa12008-03-18 09:57:50 +01001656 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001657 spec->cur_adc = new_adc;
1658 snd_hda_codec_setup_stream(codec, new_adc,
1659 spec->cur_adc_stream_tag, 0,
1660 spec->cur_adc_format);
1661 }
1662}
1663
1664/* mute internal speaker if HP is plugged */
1665static void cxt5051_hp_automute(struct hda_codec *codec)
1666{
1667 struct conexant_spec *spec = codec->spec;
1668
Takashi Iwaid56757a2009-11-18 08:00:14 +01001669 spec->hp_present = snd_hda_jack_detect(codec, 0x16);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001670 cxt5051_update_speaker(codec);
1671}
1672
1673/* unsolicited event for HP jack sensing */
1674static void cxt5051_hp_unsol_event(struct hda_codec *codec,
1675 unsigned int res)
1676{
Ulrich Dangelacf26c02009-01-02 19:30:14 +01001677 int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001678 switch (res >> 26) {
1679 case CONEXANT_HP_EVENT:
1680 cxt5051_hp_automute(codec);
1681 break;
1682 case CXT5051_PORTB_EVENT:
1683 cxt5051_portb_automic(codec);
1684 break;
1685 case CXT5051_PORTC_EVENT:
1686 cxt5051_portc_automic(codec);
1687 break;
1688 }
Ulrich Dangelacf26c02009-01-02 19:30:14 +01001689 conexant_report_jack(codec, nid);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001690}
1691
1692static struct snd_kcontrol_new cxt5051_mixers[] = {
1693 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1694 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1695 HDA_CODEC_VOLUME("External Mic Volume", 0x14, 0x01, HDA_INPUT),
1696 HDA_CODEC_MUTE("External Mic Switch", 0x14, 0x01, HDA_INPUT),
1697 HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT),
1698 HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT),
1699 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1700 {
1701 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1702 .name = "Master Playback Switch",
1703 .info = cxt_eapd_info,
1704 .get = cxt_eapd_get,
1705 .put = cxt5051_hp_master_sw_put,
1706 .private_value = 0x1a,
1707 },
1708
1709 {}
1710};
1711
1712static struct snd_kcontrol_new cxt5051_hp_mixers[] = {
1713 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1714 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1715 HDA_CODEC_VOLUME("External Mic Volume", 0x15, 0x00, HDA_INPUT),
1716 HDA_CODEC_MUTE("External Mic Switch", 0x15, 0x00, HDA_INPUT),
1717 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1718 {
1719 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1720 .name = "Master Playback Switch",
1721 .info = cxt_eapd_info,
1722 .get = cxt_eapd_get,
1723 .put = cxt5051_hp_master_sw_put,
1724 .private_value = 0x1a,
1725 },
1726
1727 {}
1728};
1729
Takashi Iwai79d7d532009-03-04 09:03:50 +01001730static struct snd_kcontrol_new cxt5051_hp_dv6736_mixers[] = {
Takashi Iwai4e4ac602010-01-23 22:29:54 +01001731 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x00, HDA_INPUT),
1732 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x00, HDA_INPUT),
Takashi Iwai79d7d532009-03-04 09:03:50 +01001733 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1734 {
1735 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1736 .name = "Master Playback Switch",
1737 .info = cxt_eapd_info,
1738 .get = cxt_eapd_get,
1739 .put = cxt5051_hp_master_sw_put,
1740 .private_value = 0x1a,
1741 },
1742
1743 {}
1744};
1745
Ken Proxcd9d95a2010-01-08 09:01:47 +01001746static struct snd_kcontrol_new cxt5051_f700_mixers[] = {
Takashi Iwai5f6c3de2010-01-23 22:19:29 +01001747 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x01, HDA_INPUT),
1748 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x01, HDA_INPUT),
Ken Proxcd9d95a2010-01-08 09:01:47 +01001749 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1750 {
1751 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1752 .name = "Master Playback Switch",
1753 .info = cxt_eapd_info,
1754 .get = cxt_eapd_get,
1755 .put = cxt5051_hp_master_sw_put,
1756 .private_value = 0x1a,
1757 },
1758
1759 {}
1760};
1761
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001762static struct snd_kcontrol_new cxt5051_toshiba_mixers[] = {
1763 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1764 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1765 HDA_CODEC_VOLUME("External Mic Volume", 0x14, 0x01, HDA_INPUT),
1766 HDA_CODEC_MUTE("External Mic Switch", 0x14, 0x01, HDA_INPUT),
1767 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1768 {
1769 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1770 .name = "Master Playback Switch",
1771 .info = cxt_eapd_info,
1772 .get = cxt_eapd_get,
1773 .put = cxt5051_hp_master_sw_put,
1774 .private_value = 0x1a,
1775 },
1776
1777 {}
1778};
1779
Takashi Iwai461e2c72008-01-25 11:35:17 +01001780static struct hda_verb cxt5051_init_verbs[] = {
1781 /* Line in, Mic */
1782 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1783 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1784 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1785 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1786 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1787 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1788 /* SPK */
1789 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1790 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1791 /* HP, Amp */
1792 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1793 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1794 /* DAC1 */
1795 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1796 /* Record selector: Int mic */
1797 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1798 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1799 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1800 /* SPDIF route: PCM */
1801 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1802 /* EAPD */
1803 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1804 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1805 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1806 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT},
1807 { } /* end */
1808};
1809
Takashi Iwai79d7d532009-03-04 09:03:50 +01001810static struct hda_verb cxt5051_hp_dv6736_init_verbs[] = {
1811 /* Line in, Mic */
1812 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1813 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1814 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1815 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1816 /* SPK */
1817 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1818 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1819 /* HP, Amp */
1820 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1821 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1822 /* DAC1 */
1823 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1824 /* Record selector: Int mic */
1825 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1826 {0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
1827 /* SPDIF route: PCM */
1828 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1829 /* EAPD */
1830 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1831 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1832 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1833 { } /* end */
1834};
1835
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001836static struct hda_verb cxt5051_lenovo_x200_init_verbs[] = {
1837 /* Line in, Mic */
1838 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1839 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1840 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1841 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1842 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1843 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1844 /* SPK */
1845 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1846 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1847 /* HP, Amp */
1848 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1849 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1850 /* Docking HP */
1851 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1852 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00},
1853 /* DAC1 */
1854 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1855 /* Record selector: Int mic */
1856 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1857 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1858 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1859 /* SPDIF route: PCM */
1860 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1861 /* EAPD */
1862 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1863 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1864 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1865 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT},
1866 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1867 { } /* end */
1868};
1869
Ken Proxcd9d95a2010-01-08 09:01:47 +01001870static struct hda_verb cxt5051_f700_init_verbs[] = {
1871 /* Line in, Mic */
1872 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x03},
1873 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1874 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1875 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1876 /* SPK */
1877 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1878 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1879 /* HP, Amp */
1880 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1881 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1882 /* DAC1 */
1883 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1884 /* Record selector: Int mic */
1885 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1886 {0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
1887 /* SPDIF route: PCM */
1888 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1889 /* EAPD */
1890 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1891 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1892 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1893 { } /* end */
1894};
1895
Takashi Iwai461e2c72008-01-25 11:35:17 +01001896/* initialize jack-sensing, too */
1897static int cxt5051_init(struct hda_codec *codec)
1898{
1899 conexant_init(codec);
Ulrich Dangelacf26c02009-01-02 19:30:14 +01001900 conexant_init_jacks(codec);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001901 if (codec->patch_ops.unsol_event) {
1902 cxt5051_hp_automute(codec);
1903 cxt5051_portb_automic(codec);
1904 cxt5051_portc_automic(codec);
1905 }
1906 return 0;
1907}
1908
1909
1910enum {
1911 CXT5051_LAPTOP, /* Laptops w/ EAPD support */
1912 CXT5051_HP, /* no docking */
Takashi Iwai79d7d532009-03-04 09:03:50 +01001913 CXT5051_HP_DV6736, /* HP without mic switch */
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001914 CXT5051_LENOVO_X200, /* Lenovo X200 laptop */
Ken Proxcd9d95a2010-01-08 09:01:47 +01001915 CXT5051_F700, /* HP Compaq Presario F700 */
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001916 CXT5051_TOSHIBA, /* Toshiba M300 & co */
Takashi Iwai461e2c72008-01-25 11:35:17 +01001917 CXT5051_MODELS
1918};
1919
1920static const char *cxt5051_models[CXT5051_MODELS] = {
1921 [CXT5051_LAPTOP] = "laptop",
1922 [CXT5051_HP] = "hp",
Takashi Iwai79d7d532009-03-04 09:03:50 +01001923 [CXT5051_HP_DV6736] = "hp-dv6736",
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001924 [CXT5051_LENOVO_X200] = "lenovo-x200",
Takashi Iwai5f6c3de2010-01-23 22:19:29 +01001925 [CXT5051_F700] = "hp-700",
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001926 [CXT5051_TOSHIBA] = "toshiba",
Takashi Iwai461e2c72008-01-25 11:35:17 +01001927};
1928
1929static struct snd_pci_quirk cxt5051_cfg_tbl[] = {
Takashi Iwai79d7d532009-03-04 09:03:50 +01001930 SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV6736", CXT5051_HP_DV6736),
Tony Vroon1812e672009-05-27 21:00:41 +01001931 SND_PCI_QUIRK(0x103c, 0x360b, "Compaq Presario CQ60", CXT5051_HP),
Takashi Iwai5f6c3de2010-01-23 22:19:29 +01001932 SND_PCI_QUIRK(0x103c, 0x30ea, "Compaq Presario F700", CXT5051_F700),
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001933 SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba M30x", CXT5051_TOSHIBA),
Takashi Iwai461e2c72008-01-25 11:35:17 +01001934 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
1935 CXT5051_LAPTOP),
1936 SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP),
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001937 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo X200", CXT5051_LENOVO_X200),
Takashi Iwai461e2c72008-01-25 11:35:17 +01001938 {}
1939};
1940
1941static int patch_cxt5051(struct hda_codec *codec)
1942{
1943 struct conexant_spec *spec;
1944 int board_config;
1945
1946 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1947 if (!spec)
1948 return -ENOMEM;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001949 codec->spec = spec;
Takashi Iwai9421f952009-03-12 17:06:07 +01001950 codec->pin_amp_workaround = 1;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001951
1952 codec->patch_ops = conexant_patch_ops;
1953 codec->patch_ops.init = cxt5051_init;
1954
1955 spec->multiout.max_channels = 2;
1956 spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids);
1957 spec->multiout.dac_nids = cxt5051_dac_nids;
1958 spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT;
1959 spec->num_adc_nids = 1; /* not 2; via auto-mic switch */
1960 spec->adc_nids = cxt5051_adc_nids;
1961 spec->num_mixers = 1;
1962 spec->mixers[0] = cxt5051_mixers;
1963 spec->num_init_verbs = 1;
1964 spec->init_verbs[0] = cxt5051_init_verbs;
1965 spec->spdif_route = 0;
1966 spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes);
1967 spec->channel_mode = cxt5051_modes;
1968 spec->cur_adc = 0;
1969 spec->cur_adc_idx = 0;
1970
Takashi Iwai79d7d532009-03-04 09:03:50 +01001971 codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
1972
Takashi Iwai461e2c72008-01-25 11:35:17 +01001973 board_config = snd_hda_check_board_config(codec, CXT5051_MODELS,
1974 cxt5051_models,
1975 cxt5051_cfg_tbl);
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001976 spec->auto_mic = AUTO_MIC_PORTB | AUTO_MIC_PORTC;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001977 switch (board_config) {
1978 case CXT5051_HP:
Takashi Iwai461e2c72008-01-25 11:35:17 +01001979 spec->mixers[0] = cxt5051_hp_mixers;
1980 break;
Takashi Iwai79d7d532009-03-04 09:03:50 +01001981 case CXT5051_HP_DV6736:
1982 spec->init_verbs[0] = cxt5051_hp_dv6736_init_verbs;
1983 spec->mixers[0] = cxt5051_hp_dv6736_mixers;
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001984 spec->auto_mic = 0;
Takashi Iwai79d7d532009-03-04 09:03:50 +01001985 break;
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001986 case CXT5051_LENOVO_X200:
1987 spec->init_verbs[0] = cxt5051_lenovo_x200_init_verbs;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001988 break;
Ken Proxcd9d95a2010-01-08 09:01:47 +01001989 case CXT5051_F700:
1990 spec->init_verbs[0] = cxt5051_f700_init_verbs;
1991 spec->mixers[0] = cxt5051_f700_mixers;
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001992 spec->auto_mic = 0;
1993 break;
1994 case CXT5051_TOSHIBA:
1995 spec->mixers[0] = cxt5051_toshiba_mixers;
1996 spec->auto_mic = AUTO_MIC_PORTB;
Ken Proxcd9d95a2010-01-08 09:01:47 +01001997 break;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001998 }
1999
2000 return 0;
2001}
2002
Daniel Drake0fb67e92009-07-16 14:46:57 +01002003/* Conexant 5066 specific */
2004
2005static hda_nid_t cxt5066_dac_nids[1] = { 0x10 };
2006static hda_nid_t cxt5066_adc_nids[3] = { 0x14, 0x15, 0x16 };
2007static hda_nid_t cxt5066_capsrc_nids[1] = { 0x17 };
2008#define CXT5066_SPDIF_OUT 0x21
2009
Daniel Drakedbaccc02009-11-09 15:17:24 +00002010/* OLPC's microphone port is DC coupled for use with external sensors,
2011 * therefore we use a 50% mic bias in order to center the input signal with
2012 * the DC input range of the codec. */
2013#define CXT5066_OLPC_EXT_MIC_BIAS PIN_VREF50
2014
Daniel Drake0fb67e92009-07-16 14:46:57 +01002015static struct hda_channel_mode cxt5066_modes[1] = {
2016 { 2, NULL },
2017};
2018
2019static void cxt5066_update_speaker(struct hda_codec *codec)
2020{
2021 struct conexant_spec *spec = codec->spec;
2022 unsigned int pinctl;
2023
2024 snd_printdd("CXT5066: update speaker, hp_present=%d\n",
2025 spec->hp_present);
2026
2027 /* Port A (HP) */
2028 pinctl = ((spec->hp_present & 1) && spec->cur_eapd) ? PIN_HP : 0;
2029 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2030 pinctl);
2031
2032 /* Port D (HP/LO) */
2033 pinctl = ((spec->hp_present & 2) && spec->cur_eapd)
2034 ? spec->port_d_mode : 0;
2035 snd_hda_codec_write(codec, 0x1c, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2036 pinctl);
2037
2038 /* CLASS_D AMP */
2039 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
2040 snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2041 pinctl);
2042
2043 if (spec->dell_automute) {
2044 /* DELL AIO Port Rule: PortA > PortD > IntSpk */
2045 pinctl = (!(spec->hp_present & 1) && spec->cur_eapd)
2046 ? PIN_OUT : 0;
2047 snd_hda_codec_write(codec, 0x1c, 0,
2048 AC_VERB_SET_PIN_WIDGET_CONTROL, pinctl);
2049 }
2050}
2051
2052/* turn on/off EAPD (+ mute HP) as a master switch */
2053static int cxt5066_hp_master_sw_put(struct snd_kcontrol *kcontrol,
2054 struct snd_ctl_elem_value *ucontrol)
2055{
2056 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2057
2058 if (!cxt_eapd_put(kcontrol, ucontrol))
2059 return 0;
2060
2061 cxt5066_update_speaker(codec);
2062 return 1;
2063}
2064
Daniel Drakec4cfe662010-01-07 13:47:04 +01002065static const struct hda_input_mux cxt5066_olpc_dc_bias = {
2066 .num_items = 3,
2067 .items = {
2068 { "Off", PIN_IN },
2069 { "50%", PIN_VREF50 },
2070 { "80%", PIN_VREF80 },
2071 },
2072};
2073
2074static int cxt5066_set_olpc_dc_bias(struct hda_codec *codec)
2075{
2076 struct conexant_spec *spec = codec->spec;
2077 /* Even though port F is the DC input, the bias is controlled on port B.
2078 * we also leave that port as an active input (but unselected) in DC mode
2079 * just in case that is necessary to make the bias setting take effect. */
2080 return snd_hda_codec_write_cache(codec, 0x1a, 0,
2081 AC_VERB_SET_PIN_WIDGET_CONTROL,
2082 cxt5066_olpc_dc_bias.items[spec->dc_input_bias].index);
2083}
2084
Daniel Drake75f89912010-01-07 13:46:25 +01002085/* OLPC defers mic widget control until when capture is started because the
2086 * microphone LED comes on as soon as these settings are put in place. if we
2087 * did this before recording, it would give the false indication that recording
2088 * is happening when it is not. */
2089static void cxt5066_olpc_select_mic(struct hda_codec *codec)
Daniel Drake0fb67e92009-07-16 14:46:57 +01002090{
Daniel Drakedbaccc02009-11-09 15:17:24 +00002091 struct conexant_spec *spec = codec->spec;
Daniel Drake75f89912010-01-07 13:46:25 +01002092 if (!spec->recording)
2093 return;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002094
Daniel Drakec4cfe662010-01-07 13:47:04 +01002095 if (spec->dc_enable) {
2096 /* in DC mode we ignore presence detection and just use the jack
2097 * through our special DC port */
2098 const struct hda_verb enable_dc_mode[] = {
2099 /* disble internal mic, port C */
2100 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2101
2102 /* enable DC capture, port F */
2103 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2104 {},
2105 };
2106
2107 snd_hda_sequence_write(codec, enable_dc_mode);
2108 /* port B input disabled (and bias set) through the following call */
2109 cxt5066_set_olpc_dc_bias(codec);
2110 return;
2111 }
2112
2113 /* disable DC (port F) */
2114 snd_hda_codec_write(codec, 0x1e, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
2115
Daniel Drake75f89912010-01-07 13:46:25 +01002116 /* external mic, port B */
2117 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2118 spec->ext_mic_present ? CXT5066_OLPC_EXT_MIC_BIAS : 0);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002119
Daniel Drake75f89912010-01-07 13:46:25 +01002120 /* internal mic, port C */
2121 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2122 spec->ext_mic_present ? 0 : PIN_VREF80);
2123}
Daniel Drake0fb67e92009-07-16 14:46:57 +01002124
Daniel Drake75f89912010-01-07 13:46:25 +01002125/* toggle input of built-in and mic jack appropriately */
2126static void cxt5066_olpc_automic(struct hda_codec *codec)
2127{
2128 struct conexant_spec *spec = codec->spec;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002129 unsigned int present;
2130
Daniel Drakec4cfe662010-01-07 13:47:04 +01002131 if (spec->dc_enable) /* don't do presence detection in DC mode */
2132 return;
2133
Daniel Drake75f89912010-01-07 13:46:25 +01002134 present = snd_hda_codec_read(codec, 0x1a, 0,
2135 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
2136 if (present)
Daniel Drake0fb67e92009-07-16 14:46:57 +01002137 snd_printdd("CXT5066: external microphone detected\n");
Daniel Drake75f89912010-01-07 13:46:25 +01002138 else
Daniel Drake0fb67e92009-07-16 14:46:57 +01002139 snd_printdd("CXT5066: external microphone absent\n");
Daniel Drake75f89912010-01-07 13:46:25 +01002140
2141 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL,
2142 present ? 0 : 1);
2143 spec->ext_mic_present = !!present;
2144
2145 cxt5066_olpc_select_mic(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002146}
2147
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002148/* toggle input of built-in digital mic and mic jack appropriately */
2149static void cxt5066_vostro_automic(struct hda_codec *codec)
2150{
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002151 unsigned int present;
2152
2153 struct hda_verb ext_mic_present[] = {
2154 /* enable external mic, port B */
Daniel Drake75f89912010-01-07 13:46:25 +01002155 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002156
2157 /* switch to external mic input */
2158 {0x17, AC_VERB_SET_CONNECT_SEL, 0},
2159 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2160
2161 /* disable internal digital mic */
2162 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2163 {}
2164 };
2165 static struct hda_verb ext_mic_absent[] = {
2166 /* enable internal mic, port C */
2167 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2168
2169 /* switch to internal mic input */
2170 {0x14, AC_VERB_SET_CONNECT_SEL, 2},
2171
2172 /* disable external mic, port B */
2173 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2174 {}
2175 };
2176
2177 present = snd_hda_jack_detect(codec, 0x1a);
2178 if (present) {
2179 snd_printdd("CXT5066: external microphone detected\n");
2180 snd_hda_sequence_write(codec, ext_mic_present);
2181 } else {
2182 snd_printdd("CXT5066: external microphone absent\n");
2183 snd_hda_sequence_write(codec, ext_mic_absent);
2184 }
2185}
2186
Daniel Drake0fb67e92009-07-16 14:46:57 +01002187/* mute internal speaker if HP is plugged */
2188static void cxt5066_hp_automute(struct hda_codec *codec)
2189{
2190 struct conexant_spec *spec = codec->spec;
2191 unsigned int portA, portD;
2192
2193 /* Port A */
Takashi Iwaid56757a2009-11-18 08:00:14 +01002194 portA = snd_hda_jack_detect(codec, 0x19);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002195
2196 /* Port D */
Takashi Iwaid56757a2009-11-18 08:00:14 +01002197 portD = snd_hda_jack_detect(codec, 0x1c);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002198
2199 spec->hp_present = !!(portA | portD);
2200 snd_printdd("CXT5066: hp automute portA=%x portD=%x present=%d\n",
2201 portA, portD, spec->hp_present);
2202 cxt5066_update_speaker(codec);
2203}
2204
2205/* unsolicited event for jack sensing */
Daniel Drake75f89912010-01-07 13:46:25 +01002206static void cxt5066_olpc_unsol_event(struct hda_codec *codec, unsigned int res)
Daniel Drake0fb67e92009-07-16 14:46:57 +01002207{
Daniel Drakec4cfe662010-01-07 13:47:04 +01002208 struct conexant_spec *spec = codec->spec;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002209 snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26);
2210 switch (res >> 26) {
2211 case CONEXANT_HP_EVENT:
2212 cxt5066_hp_automute(codec);
2213 break;
2214 case CONEXANT_MIC_EVENT:
Daniel Drakec4cfe662010-01-07 13:47:04 +01002215 /* ignore mic events in DC mode; we're always using the jack */
2216 if (!spec->dc_enable)
2217 cxt5066_olpc_automic(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002218 break;
2219 }
2220}
2221
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002222/* unsolicited event for jack sensing */
2223static void cxt5066_vostro_event(struct hda_codec *codec, unsigned int res)
2224{
2225 snd_printdd("CXT5066_vostro: unsol event %x (%x)\n", res, res >> 26);
2226 switch (res >> 26) {
2227 case CONEXANT_HP_EVENT:
2228 cxt5066_hp_automute(codec);
2229 break;
2230 case CONEXANT_MIC_EVENT:
2231 cxt5066_vostro_automic(codec);
2232 break;
2233 }
2234}
2235
Daniel Drake0fb67e92009-07-16 14:46:57 +01002236static const struct hda_input_mux cxt5066_analog_mic_boost = {
2237 .num_items = 5,
2238 .items = {
2239 { "0dB", 0 },
2240 { "10dB", 1 },
2241 { "20dB", 2 },
2242 { "30dB", 3 },
2243 { "40dB", 4 },
2244 },
2245};
2246
Daniel Drakec4cfe662010-01-07 13:47:04 +01002247static int cxt5066_set_mic_boost(struct hda_codec *codec)
2248{
2249 struct conexant_spec *spec = codec->spec;
2250 return snd_hda_codec_write_cache(codec, 0x17, 0,
2251 AC_VERB_SET_AMP_GAIN_MUTE,
2252 AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_OUTPUT |
2253 cxt5066_analog_mic_boost.items[spec->mic_boost].index);
2254}
2255
Daniel Drake0fb67e92009-07-16 14:46:57 +01002256static int cxt5066_mic_boost_mux_enum_info(struct snd_kcontrol *kcontrol,
2257 struct snd_ctl_elem_info *uinfo)
2258{
2259 return snd_hda_input_mux_info(&cxt5066_analog_mic_boost, uinfo);
2260}
2261
2262static int cxt5066_mic_boost_mux_enum_get(struct snd_kcontrol *kcontrol,
2263 struct snd_ctl_elem_value *ucontrol)
2264{
2265 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Daniel Drakec4cfe662010-01-07 13:47:04 +01002266 struct conexant_spec *spec = codec->spec;
2267 ucontrol->value.enumerated.item[0] = spec->mic_boost;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002268 return 0;
2269}
2270
2271static int cxt5066_mic_boost_mux_enum_put(struct snd_kcontrol *kcontrol,
2272 struct snd_ctl_elem_value *ucontrol)
2273{
2274 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Daniel Drakec4cfe662010-01-07 13:47:04 +01002275 struct conexant_spec *spec = codec->spec;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002276 const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
2277 unsigned int idx;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002278 idx = ucontrol->value.enumerated.item[0];
2279 if (idx >= imux->num_items)
2280 idx = imux->num_items - 1;
2281
Daniel Drakec4cfe662010-01-07 13:47:04 +01002282 spec->mic_boost = idx;
2283 if (!spec->dc_enable)
2284 cxt5066_set_mic_boost(codec);
2285 return 1;
2286}
Daniel Drake0fb67e92009-07-16 14:46:57 +01002287
Daniel Drakec4cfe662010-01-07 13:47:04 +01002288static void cxt5066_enable_dc(struct hda_codec *codec)
2289{
2290 const struct hda_verb enable_dc_mode[] = {
2291 /* disable gain */
2292 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2293
2294 /* switch to DC input */
2295 {0x17, AC_VERB_SET_CONNECT_SEL, 3},
2296 {}
2297 };
2298
2299 /* configure as input source */
2300 snd_hda_sequence_write(codec, enable_dc_mode);
2301 cxt5066_olpc_select_mic(codec); /* also sets configured bias */
2302}
2303
2304static void cxt5066_disable_dc(struct hda_codec *codec)
2305{
2306 /* reconfigure input source */
2307 cxt5066_set_mic_boost(codec);
2308 /* automic also selects the right mic if we're recording */
2309 cxt5066_olpc_automic(codec);
2310}
2311
2312static int cxt5066_olpc_dc_get(struct snd_kcontrol *kcontrol,
2313 struct snd_ctl_elem_value *ucontrol)
2314{
2315 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2316 struct conexant_spec *spec = codec->spec;
2317 ucontrol->value.integer.value[0] = spec->dc_enable;
2318 return 0;
2319}
2320
2321static int cxt5066_olpc_dc_put(struct snd_kcontrol *kcontrol,
2322 struct snd_ctl_elem_value *ucontrol)
2323{
2324 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2325 struct conexant_spec *spec = codec->spec;
2326 int dc_enable = !!ucontrol->value.integer.value[0];
2327
2328 if (dc_enable == spec->dc_enable)
2329 return 0;
2330
2331 spec->dc_enable = dc_enable;
2332 if (dc_enable)
2333 cxt5066_enable_dc(codec);
2334 else
2335 cxt5066_disable_dc(codec);
2336
2337 return 1;
2338}
2339
2340static int cxt5066_olpc_dc_bias_enum_info(struct snd_kcontrol *kcontrol,
2341 struct snd_ctl_elem_info *uinfo)
2342{
2343 return snd_hda_input_mux_info(&cxt5066_olpc_dc_bias, uinfo);
2344}
2345
2346static int cxt5066_olpc_dc_bias_enum_get(struct snd_kcontrol *kcontrol,
2347 struct snd_ctl_elem_value *ucontrol)
2348{
2349 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2350 struct conexant_spec *spec = codec->spec;
2351 ucontrol->value.enumerated.item[0] = spec->dc_input_bias;
2352 return 0;
2353}
2354
2355static int cxt5066_olpc_dc_bias_enum_put(struct snd_kcontrol *kcontrol,
2356 struct snd_ctl_elem_value *ucontrol)
2357{
2358 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2359 struct conexant_spec *spec = codec->spec;
2360 const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
2361 unsigned int idx;
2362
2363 idx = ucontrol->value.enumerated.item[0];
2364 if (idx >= imux->num_items)
2365 idx = imux->num_items - 1;
2366
2367 spec->dc_input_bias = idx;
2368 if (spec->dc_enable)
2369 cxt5066_set_olpc_dc_bias(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002370 return 1;
2371}
2372
Daniel Drake75f89912010-01-07 13:46:25 +01002373static void cxt5066_olpc_capture_prepare(struct hda_codec *codec)
2374{
2375 struct conexant_spec *spec = codec->spec;
2376 /* mark as recording and configure the microphone widget so that the
2377 * recording LED comes on. */
2378 spec->recording = 1;
2379 cxt5066_olpc_select_mic(codec);
2380}
2381
2382static void cxt5066_olpc_capture_cleanup(struct hda_codec *codec)
2383{
2384 struct conexant_spec *spec = codec->spec;
2385 const struct hda_verb disable_mics[] = {
2386 /* disable external mic, port B */
2387 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2388
2389 /* disble internal mic, port C */
2390 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Daniel Drakec4cfe662010-01-07 13:47:04 +01002391
2392 /* disable DC capture, port F */
2393 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Daniel Drake75f89912010-01-07 13:46:25 +01002394 {},
2395 };
2396
2397 snd_hda_sequence_write(codec, disable_mics);
2398 spec->recording = 0;
2399}
2400
Daniel Drake0fb67e92009-07-16 14:46:57 +01002401static struct hda_input_mux cxt5066_capture_source = {
2402 .num_items = 4,
2403 .items = {
2404 { "Mic B", 0 },
2405 { "Mic C", 1 },
2406 { "Mic E", 2 },
2407 { "Mic F", 3 },
2408 },
2409};
2410
2411static struct hda_bind_ctls cxt5066_bind_capture_vol_others = {
2412 .ops = &snd_hda_bind_vol,
2413 .values = {
2414 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2415 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2416 0
2417 },
2418};
2419
2420static struct hda_bind_ctls cxt5066_bind_capture_sw_others = {
2421 .ops = &snd_hda_bind_sw,
2422 .values = {
2423 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2424 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2425 0
2426 },
2427};
2428
2429static struct snd_kcontrol_new cxt5066_mixer_master[] = {
2430 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
2431 {}
2432};
2433
2434static struct snd_kcontrol_new cxt5066_mixer_master_olpc[] = {
2435 {
2436 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2437 .name = "Master Playback Volume",
2438 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
2439 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
2440 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002441 .subdevice = HDA_SUBDEV_AMP_FLAG,
Daniel Drake0fb67e92009-07-16 14:46:57 +01002442 .info = snd_hda_mixer_amp_volume_info,
2443 .get = snd_hda_mixer_amp_volume_get,
2444 .put = snd_hda_mixer_amp_volume_put,
2445 .tlv = { .c = snd_hda_mixer_amp_tlv },
2446 /* offset by 28 volume steps to limit minimum gain to -46dB */
2447 .private_value =
2448 HDA_COMPOSE_AMP_VAL_OFS(0x10, 3, 0, HDA_OUTPUT, 28),
2449 },
2450 {}
2451};
2452
Daniel Drakec4cfe662010-01-07 13:47:04 +01002453static struct snd_kcontrol_new cxt5066_mixer_olpc_dc[] = {
2454 {
2455 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2456 .name = "DC Mode Enable Switch",
2457 .info = snd_ctl_boolean_mono_info,
2458 .get = cxt5066_olpc_dc_get,
2459 .put = cxt5066_olpc_dc_put,
2460 },
2461 {
2462 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2463 .name = "DC Input Bias Enum",
2464 .info = cxt5066_olpc_dc_bias_enum_info,
2465 .get = cxt5066_olpc_dc_bias_enum_get,
2466 .put = cxt5066_olpc_dc_bias_enum_put,
2467 },
2468 {}
2469};
2470
Daniel Drake0fb67e92009-07-16 14:46:57 +01002471static struct snd_kcontrol_new cxt5066_mixers[] = {
2472 {
2473 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2474 .name = "Master Playback Switch",
2475 .info = cxt_eapd_info,
2476 .get = cxt_eapd_get,
2477 .put = cxt5066_hp_master_sw_put,
2478 .private_value = 0x1d,
2479 },
2480
2481 {
2482 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Daniel Drakec4cfe662010-01-07 13:47:04 +01002483 .name = "Analog Mic Boost Capture Enum",
Daniel Drake0fb67e92009-07-16 14:46:57 +01002484 .info = cxt5066_mic_boost_mux_enum_info,
2485 .get = cxt5066_mic_boost_mux_enum_get,
2486 .put = cxt5066_mic_boost_mux_enum_put,
2487 },
2488
2489 HDA_BIND_VOL("Capture Volume", &cxt5066_bind_capture_vol_others),
2490 HDA_BIND_SW("Capture Switch", &cxt5066_bind_capture_sw_others),
2491 {}
2492};
2493
Einar Rünkaru254bba62009-12-16 22:16:13 +02002494static struct snd_kcontrol_new cxt5066_vostro_mixers[] = {
2495 {
2496 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2497 .name = "Int Mic Boost Capture Enum",
2498 .info = cxt5066_mic_boost_mux_enum_info,
2499 .get = cxt5066_mic_boost_mux_enum_get,
2500 .put = cxt5066_mic_boost_mux_enum_put,
2501 .private_value = 0x23 | 0x100,
2502 },
Einar Rünkaruc0f8faf2009-12-16 22:41:36 +02002503 HDA_CODEC_VOLUME_MONO("Beep Playback Volume", 0x13, 1, 0x0, HDA_OUTPUT),
Einar Rünkaru254bba62009-12-16 22:16:13 +02002504 {}
2505};
2506
Daniel Drake0fb67e92009-07-16 14:46:57 +01002507static struct hda_verb cxt5066_init_verbs[] = {
2508 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
2509 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
2510 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2511 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2512
2513 /* Speakers */
2514 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2515 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2516
2517 /* HP, Amp */
2518 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2519 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2520
2521 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2522 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2523
2524 /* DAC1 */
2525 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2526
2527 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2528 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2529 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2530 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2531 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2532 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2533
2534 /* no digital microphone support yet */
2535 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2536
2537 /* Audio input selector */
2538 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2539
2540 /* SPDIF route: PCM */
2541 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2542 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2543
2544 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2545 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2546
2547 /* EAPD */
2548 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2549
2550 /* not handling these yet */
2551 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2552 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2553 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2554 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2555 {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2556 {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2557 {0x20, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2558 {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2559 { } /* end */
2560};
2561
2562static struct hda_verb cxt5066_init_verbs_olpc[] = {
2563 /* Port A: headphones */
2564 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2565 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2566
2567 /* Port B: external microphone */
Daniel Drake75f89912010-01-07 13:46:25 +01002568 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Daniel Drake0fb67e92009-07-16 14:46:57 +01002569
2570 /* Port C: internal microphone */
Daniel Drake75f89912010-01-07 13:46:25 +01002571 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Daniel Drake0fb67e92009-07-16 14:46:57 +01002572
2573 /* Port D: unused */
2574 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2575
2576 /* Port E: unused, but has primary EAPD */
2577 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2578 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2579
Daniel Drakec4cfe662010-01-07 13:47:04 +01002580 /* Port F: external DC input through microphone port */
Daniel Drake0fb67e92009-07-16 14:46:57 +01002581 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2582
2583 /* Port G: internal speakers */
2584 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2585 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2586
2587 /* DAC1 */
2588 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2589
2590 /* DAC2: unused */
2591 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2592
2593 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2594 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2595 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2596 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2597 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2598 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2599 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2600 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2601 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2602 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2603 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2604 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2605
2606 /* Disable digital microphone port */
2607 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2608
2609 /* Audio input selectors */
2610 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2611 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2612
2613 /* Disable SPDIF */
2614 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2615 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2616
2617 /* enable unsolicited events for Port A and B */
2618 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2619 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2620 { } /* end */
2621};
2622
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002623static struct hda_verb cxt5066_init_verbs_vostro[] = {
2624 /* Port A: headphones */
2625 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2626 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2627
2628 /* Port B: external microphone */
2629 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2630
2631 /* Port C: unused */
2632 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2633
2634 /* Port D: unused */
2635 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2636
2637 /* Port E: unused, but has primary EAPD */
2638 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2639 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2640
2641 /* Port F: unused */
2642 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2643
2644 /* Port G: internal speakers */
2645 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2646 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2647
2648 /* DAC1 */
2649 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2650
2651 /* DAC2: unused */
2652 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2653
2654 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2655 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2656 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2657 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2658 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2659 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2660 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2661 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2662 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2663 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2664 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2665 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2666
2667 /* Digital microphone port */
2668 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2669
2670 /* Audio input selectors */
2671 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2672 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2673
2674 /* Disable SPDIF */
2675 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2676 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2677
2678 /* enable unsolicited events for Port A and B */
2679 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2680 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2681 { } /* end */
2682};
2683
Daniel Drake0fb67e92009-07-16 14:46:57 +01002684static struct hda_verb cxt5066_init_verbs_portd_lo[] = {
2685 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2686 { } /* end */
2687};
2688
2689/* initialize jack-sensing, too */
2690static int cxt5066_init(struct hda_codec *codec)
2691{
Einar Rünkaru254bba62009-12-16 22:16:13 +02002692 struct conexant_spec *spec = codec->spec;
2693
Daniel Drake0fb67e92009-07-16 14:46:57 +01002694 snd_printdd("CXT5066: init\n");
2695 conexant_init(codec);
2696 if (codec->patch_ops.unsol_event) {
2697 cxt5066_hp_automute(codec);
Einar Rünkaru254bba62009-12-16 22:16:13 +02002698 if (spec->dell_vostro)
2699 cxt5066_vostro_automic(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002700 }
Daniel Drakec4cfe662010-01-07 13:47:04 +01002701 cxt5066_set_mic_boost(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002702 return 0;
2703}
2704
Daniel Drake75f89912010-01-07 13:46:25 +01002705static int cxt5066_olpc_init(struct hda_codec *codec)
2706{
Daniel Drakec4cfe662010-01-07 13:47:04 +01002707 struct conexant_spec *spec = codec->spec;
Daniel Drake75f89912010-01-07 13:46:25 +01002708 snd_printdd("CXT5066: init\n");
2709 conexant_init(codec);
2710 cxt5066_hp_automute(codec);
Daniel Drakec4cfe662010-01-07 13:47:04 +01002711 if (!spec->dc_enable) {
2712 cxt5066_set_mic_boost(codec);
2713 cxt5066_olpc_automic(codec);
2714 } else {
2715 cxt5066_enable_dc(codec);
2716 }
Daniel Drake75f89912010-01-07 13:46:25 +01002717 return 0;
2718}
2719
Daniel Drake0fb67e92009-07-16 14:46:57 +01002720enum {
2721 CXT5066_LAPTOP, /* Laptops w/ EAPD support */
2722 CXT5066_DELL_LAPTOP, /* Dell Laptop */
2723 CXT5066_OLPC_XO_1_5, /* OLPC XO 1.5 */
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002724 CXT5066_DELL_VOSTO, /* Dell Vostro 1015i */
Daniel Drake0fb67e92009-07-16 14:46:57 +01002725 CXT5066_MODELS
2726};
2727
2728static const char *cxt5066_models[CXT5066_MODELS] = {
2729 [CXT5066_LAPTOP] = "laptop",
2730 [CXT5066_DELL_LAPTOP] = "dell-laptop",
2731 [CXT5066_OLPC_XO_1_5] = "olpc-xo-1_5",
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002732 [CXT5066_DELL_VOSTO] = "dell-vostro"
Daniel Drake0fb67e92009-07-16 14:46:57 +01002733};
2734
2735static struct snd_pci_quirk cxt5066_cfg_tbl[] = {
2736 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
2737 CXT5066_LAPTOP),
2738 SND_PCI_QUIRK(0x1028, 0x02f5, "Dell",
2739 CXT5066_DELL_LAPTOP),
Daniel Drake798a8a12009-11-04 10:11:07 +00002740 SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT5066_OLPC_XO_1_5),
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002741 SND_PCI_QUIRK(0x1028, 0x0402, "Dell Vostro", CXT5066_DELL_VOSTO),
Daniel Drake0fb67e92009-07-16 14:46:57 +01002742 {}
2743};
2744
2745static int patch_cxt5066(struct hda_codec *codec)
2746{
2747 struct conexant_spec *spec;
2748 int board_config;
2749
2750 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2751 if (!spec)
2752 return -ENOMEM;
2753 codec->spec = spec;
2754
2755 codec->patch_ops = conexant_patch_ops;
Daniel Drake75f89912010-01-07 13:46:25 +01002756 codec->patch_ops.init = conexant_init;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002757
2758 spec->dell_automute = 0;
2759 spec->multiout.max_channels = 2;
2760 spec->multiout.num_dacs = ARRAY_SIZE(cxt5066_dac_nids);
2761 spec->multiout.dac_nids = cxt5066_dac_nids;
2762 spec->multiout.dig_out_nid = CXT5066_SPDIF_OUT;
2763 spec->num_adc_nids = 1;
2764 spec->adc_nids = cxt5066_adc_nids;
2765 spec->capsrc_nids = cxt5066_capsrc_nids;
2766 spec->input_mux = &cxt5066_capture_source;
2767
2768 spec->port_d_mode = PIN_HP;
2769
2770 spec->num_init_verbs = 1;
2771 spec->init_verbs[0] = cxt5066_init_verbs;
2772 spec->num_channel_mode = ARRAY_SIZE(cxt5066_modes);
2773 spec->channel_mode = cxt5066_modes;
2774 spec->cur_adc = 0;
2775 spec->cur_adc_idx = 0;
2776
2777 board_config = snd_hda_check_board_config(codec, CXT5066_MODELS,
2778 cxt5066_models, cxt5066_cfg_tbl);
2779 switch (board_config) {
2780 default:
2781 case CXT5066_LAPTOP:
2782 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
2783 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
2784 break;
2785 case CXT5066_DELL_LAPTOP:
2786 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
2787 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
2788
2789 spec->port_d_mode = PIN_OUT;
2790 spec->init_verbs[spec->num_init_verbs] = cxt5066_init_verbs_portd_lo;
2791 spec->num_init_verbs++;
2792 spec->dell_automute = 1;
2793 break;
2794 case CXT5066_OLPC_XO_1_5:
Daniel Drake75f89912010-01-07 13:46:25 +01002795 codec->patch_ops.init = cxt5066_olpc_init;
2796 codec->patch_ops.unsol_event = cxt5066_olpc_unsol_event;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002797 spec->init_verbs[0] = cxt5066_init_verbs_olpc;
2798 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
Daniel Drakec4cfe662010-01-07 13:47:04 +01002799 spec->mixers[spec->num_mixers++] = cxt5066_mixer_olpc_dc;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002800 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
2801 spec->port_d_mode = 0;
Daniel Drakec4cfe662010-01-07 13:47:04 +01002802 spec->mic_boost = 3; /* default 30dB gain */
Daniel Drake0fb67e92009-07-16 14:46:57 +01002803
2804 /* no S/PDIF out */
2805 spec->multiout.dig_out_nid = 0;
2806
2807 /* input source automatically selected */
2808 spec->input_mux = NULL;
Daniel Drake75f89912010-01-07 13:46:25 +01002809
2810 /* our capture hooks which allow us to turn on the microphone LED
2811 * at the right time */
2812 spec->capture_prepare = cxt5066_olpc_capture_prepare;
2813 spec->capture_cleanup = cxt5066_olpc_capture_cleanup;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002814 break;
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002815 case CXT5066_DELL_VOSTO:
Daniel Drake75f89912010-01-07 13:46:25 +01002816 codec->patch_ops.init = cxt5066_init;
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002817 codec->patch_ops.unsol_event = cxt5066_vostro_event;
2818 spec->init_verbs[0] = cxt5066_init_verbs_vostro;
2819 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
2820 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
Einar Rünkaru254bba62009-12-16 22:16:13 +02002821 spec->mixers[spec->num_mixers++] = cxt5066_vostro_mixers;
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002822 spec->port_d_mode = 0;
Einar Rünkaru254bba62009-12-16 22:16:13 +02002823 spec->dell_vostro = 1;
Daniel Drakec4cfe662010-01-07 13:47:04 +01002824 spec->mic_boost = 3; /* default 30dB gain */
Einar Rünkaruc0f8faf2009-12-16 22:41:36 +02002825 snd_hda_attach_beep_device(codec, 0x13);
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002826
2827 /* no S/PDIF out */
2828 spec->multiout.dig_out_nid = 0;
2829
2830 /* input source automatically selected */
2831 spec->input_mux = NULL;
2832 break;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002833 }
2834
2835 return 0;
2836}
Takashi Iwai461e2c72008-01-25 11:35:17 +01002837
2838/*
2839 */
2840
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002841static struct hda_codec_preset snd_hda_preset_conexant[] = {
Tobin Davis82f30042007-02-13 12:45:44 +01002842 { .id = 0x14f15045, .name = "CX20549 (Venice)",
2843 .patch = patch_cxt5045 },
2844 { .id = 0x14f15047, .name = "CX20551 (Waikiki)",
2845 .patch = patch_cxt5047 },
Takashi Iwai461e2c72008-01-25 11:35:17 +01002846 { .id = 0x14f15051, .name = "CX20561 (Hermosa)",
2847 .patch = patch_cxt5051 },
Daniel Drake0fb67e92009-07-16 14:46:57 +01002848 { .id = 0x14f15066, .name = "CX20582 (Pebble)",
2849 .patch = patch_cxt5066 },
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002850 { .id = 0x14f15067, .name = "CX20583 (Pebble HSF)",
2851 .patch = patch_cxt5066 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01002852 {} /* terminator */
2853};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002854
2855MODULE_ALIAS("snd-hda-codec-id:14f15045");
2856MODULE_ALIAS("snd-hda-codec-id:14f15047");
2857MODULE_ALIAS("snd-hda-codec-id:14f15051");
Daniel Drake0fb67e92009-07-16 14:46:57 +01002858MODULE_ALIAS("snd-hda-codec-id:14f15066");
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002859MODULE_ALIAS("snd-hda-codec-id:14f15067");
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002860
2861MODULE_LICENSE("GPL");
2862MODULE_DESCRIPTION("Conexant HD-audio codec");
2863
2864static struct hda_codec_preset_list conexant_list = {
2865 .preset = snd_hda_preset_conexant,
2866 .owner = THIS_MODULE,
2867};
2868
2869static int __init patch_conexant_init(void)
2870{
2871 return snd_hda_add_codec_preset(&conexant_list);
2872}
2873
2874static void __exit patch_conexant_exit(void)
2875{
2876 snd_hda_delete_codec_preset(&conexant_list);
2877}
2878
2879module_init(patch_conexant_init)
2880module_exit(patch_conexant_exit)