blob: 36fd852600352244c17e10f6b49c72e284840ea0 [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>
28#include "hda_codec.h"
29#include "hda_local.h"
Harvey Harrison3c9a3202008-02-29 11:59:26 +010030#include "hda_patch.h"
Tobin Davisc9b443d2006-11-14 12:13:39 +010031
32#define CXT_PIN_DIR_IN 0x00
33#define CXT_PIN_DIR_OUT 0x01
34#define CXT_PIN_DIR_INOUT 0x02
35#define CXT_PIN_DIR_IN_NOMICBIAS 0x03
36#define CXT_PIN_DIR_INOUT_NOMICBIAS 0x04
37
38#define CONEXANT_HP_EVENT 0x37
39#define CONEXANT_MIC_EVENT 0x38
40
41
42
43struct conexant_spec {
44
45 struct snd_kcontrol_new *mixers[5];
46 int num_mixers;
47
48 const struct hda_verb *init_verbs[5]; /* initialization verbs
49 * don't forget NULL
50 * termination!
51 */
52 unsigned int num_init_verbs;
53
54 /* playback */
55 struct hda_multi_out multiout; /* playback set-up
56 * max_channels, dacs must be set
57 * dig_out_nid and hp_nid are optional
58 */
59 unsigned int cur_eapd;
Tobin Davis82f30042007-02-13 12:45:44 +010060 unsigned int hp_present;
Tobin Davisc9b443d2006-11-14 12:13:39 +010061 unsigned int need_dac_fix;
62
63 /* capture */
64 unsigned int num_adc_nids;
65 hda_nid_t *adc_nids;
66 hda_nid_t dig_in_nid; /* digital-in NID; optional */
67
Takashi Iwai461e2c72008-01-25 11:35:17 +010068 unsigned int cur_adc_idx;
69 hda_nid_t cur_adc;
70 unsigned int cur_adc_stream_tag;
71 unsigned int cur_adc_format;
72
Tobin Davisc9b443d2006-11-14 12:13:39 +010073 /* capture source */
74 const struct hda_input_mux *input_mux;
75 hda_nid_t *capsrc_nids;
76 unsigned int cur_mux[3];
77
78 /* channel model */
79 const struct hda_channel_mode *channel_mode;
80 int num_channel_mode;
81
82 /* PCM information */
83 struct hda_pcm pcm_rec[2]; /* used in build_pcms() */
84
85 struct mutex amp_mutex; /* PCM volume/mute control mutex */
86 unsigned int spdif_route;
87
88 /* dynamic controls, init_verbs and input_mux */
89 struct auto_pin_cfg autocfg;
90 unsigned int num_kctl_alloc, num_kctl_used;
91 struct snd_kcontrol_new *kctl_alloc;
92 struct hda_input_mux private_imux;
Takashi Iwai41923e42007-10-22 17:20:10 +020093 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
Tobin Davisc9b443d2006-11-14 12:13:39 +010094
95};
96
97static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo,
98 struct hda_codec *codec,
99 struct snd_pcm_substream *substream)
100{
101 struct conexant_spec *spec = codec->spec;
Takashi Iwai9a081602008-02-12 18:37:26 +0100102 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
103 hinfo);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100104}
105
106static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
107 struct hda_codec *codec,
108 unsigned int stream_tag,
109 unsigned int format,
110 struct snd_pcm_substream *substream)
111{
112 struct conexant_spec *spec = codec->spec;
113 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
114 stream_tag,
115 format, substream);
116}
117
118static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
119 struct hda_codec *codec,
120 struct snd_pcm_substream *substream)
121{
122 struct conexant_spec *spec = codec->spec;
123 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
124}
125
126/*
127 * Digital out
128 */
129static int conexant_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
130 struct hda_codec *codec,
131 struct snd_pcm_substream *substream)
132{
133 struct conexant_spec *spec = codec->spec;
134 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
135}
136
137static int conexant_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
138 struct hda_codec *codec,
139 struct snd_pcm_substream *substream)
140{
141 struct conexant_spec *spec = codec->spec;
142 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
143}
144
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200145static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
146 struct hda_codec *codec,
147 unsigned int stream_tag,
148 unsigned int format,
149 struct snd_pcm_substream *substream)
150{
151 struct conexant_spec *spec = codec->spec;
152 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
153 stream_tag,
154 format, substream);
155}
156
Tobin Davisc9b443d2006-11-14 12:13:39 +0100157/*
158 * Analog capture
159 */
160static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
161 struct hda_codec *codec,
162 unsigned int stream_tag,
163 unsigned int format,
164 struct snd_pcm_substream *substream)
165{
166 struct conexant_spec *spec = codec->spec;
167 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
168 stream_tag, 0, format);
169 return 0;
170}
171
172static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
173 struct hda_codec *codec,
174 struct snd_pcm_substream *substream)
175{
176 struct conexant_spec *spec = codec->spec;
Takashi Iwai888afa12008-03-18 09:57:50 +0100177 snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100178 return 0;
179}
180
181
182
183static struct hda_pcm_stream conexant_pcm_analog_playback = {
184 .substreams = 1,
185 .channels_min = 2,
186 .channels_max = 2,
187 .nid = 0, /* fill later */
188 .ops = {
189 .open = conexant_playback_pcm_open,
190 .prepare = conexant_playback_pcm_prepare,
191 .cleanup = conexant_playback_pcm_cleanup
192 },
193};
194
195static struct hda_pcm_stream conexant_pcm_analog_capture = {
196 .substreams = 1,
197 .channels_min = 2,
198 .channels_max = 2,
199 .nid = 0, /* fill later */
200 .ops = {
201 .prepare = conexant_capture_pcm_prepare,
202 .cleanup = conexant_capture_pcm_cleanup
203 },
204};
205
206
207static struct hda_pcm_stream conexant_pcm_digital_playback = {
208 .substreams = 1,
209 .channels_min = 2,
210 .channels_max = 2,
211 .nid = 0, /* fill later */
212 .ops = {
213 .open = conexant_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200214 .close = conexant_dig_playback_pcm_close,
215 .prepare = conexant_dig_playback_pcm_prepare
Tobin Davisc9b443d2006-11-14 12:13:39 +0100216 },
217};
218
219static struct hda_pcm_stream conexant_pcm_digital_capture = {
220 .substreams = 1,
221 .channels_min = 2,
222 .channels_max = 2,
223 /* NID is set in alc_build_pcms */
224};
225
Takashi Iwai461e2c72008-01-25 11:35:17 +0100226static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
227 struct hda_codec *codec,
228 unsigned int stream_tag,
229 unsigned int format,
230 struct snd_pcm_substream *substream)
231{
232 struct conexant_spec *spec = codec->spec;
233 spec->cur_adc = spec->adc_nids[spec->cur_adc_idx];
234 spec->cur_adc_stream_tag = stream_tag;
235 spec->cur_adc_format = format;
236 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
237 return 0;
238}
239
240static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
241 struct hda_codec *codec,
242 struct snd_pcm_substream *substream)
243{
244 struct conexant_spec *spec = codec->spec;
Takashi Iwai888afa12008-03-18 09:57:50 +0100245 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
Takashi Iwai461e2c72008-01-25 11:35:17 +0100246 spec->cur_adc = 0;
247 return 0;
248}
249
250static struct hda_pcm_stream cx5051_pcm_analog_capture = {
251 .substreams = 1,
252 .channels_min = 2,
253 .channels_max = 2,
254 .nid = 0, /* fill later */
255 .ops = {
256 .prepare = cx5051_capture_pcm_prepare,
257 .cleanup = cx5051_capture_pcm_cleanup
258 },
259};
260
Tobin Davisc9b443d2006-11-14 12:13:39 +0100261static int conexant_build_pcms(struct hda_codec *codec)
262{
263 struct conexant_spec *spec = codec->spec;
264 struct hda_pcm *info = spec->pcm_rec;
265
266 codec->num_pcms = 1;
267 codec->pcm_info = info;
268
269 info->name = "CONEXANT Analog";
270 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = conexant_pcm_analog_playback;
271 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
272 spec->multiout.max_channels;
273 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
274 spec->multiout.dac_nids[0];
Takashi Iwai461e2c72008-01-25 11:35:17 +0100275 if (codec->vendor_id == 0x14f15051)
276 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
277 cx5051_pcm_analog_capture;
278 else
279 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
280 conexant_pcm_analog_capture;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100281 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids;
282 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
283
284 if (spec->multiout.dig_out_nid) {
285 info++;
286 codec->num_pcms++;
287 info->name = "Conexant Digital";
Takashi Iwai7ba72ba2008-02-06 14:03:20 +0100288 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100289 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
290 conexant_pcm_digital_playback;
291 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
292 spec->multiout.dig_out_nid;
293 if (spec->dig_in_nid) {
294 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
295 conexant_pcm_digital_capture;
296 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
297 spec->dig_in_nid;
298 }
299 }
300
301 return 0;
302}
303
304static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol,
305 struct snd_ctl_elem_info *uinfo)
306{
307 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
308 struct conexant_spec *spec = codec->spec;
309
310 return snd_hda_input_mux_info(spec->input_mux, uinfo);
311}
312
313static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol,
314 struct snd_ctl_elem_value *ucontrol)
315{
316 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
317 struct conexant_spec *spec = codec->spec;
318 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
319
320 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
321 return 0;
322}
323
324static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol,
325 struct snd_ctl_elem_value *ucontrol)
326{
327 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
328 struct conexant_spec *spec = codec->spec;
329 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
330
331 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
332 spec->capsrc_nids[adc_idx],
333 &spec->cur_mux[adc_idx]);
334}
335
336static int conexant_init(struct hda_codec *codec)
337{
338 struct conexant_spec *spec = codec->spec;
339 int i;
340
341 for (i = 0; i < spec->num_init_verbs; i++)
342 snd_hda_sequence_write(codec, spec->init_verbs[i]);
343 return 0;
344}
345
346static void conexant_free(struct hda_codec *codec)
347{
348 struct conexant_spec *spec = codec->spec;
349 unsigned int i;
350
351 if (spec->kctl_alloc) {
352 for (i = 0; i < spec->num_kctl_used; i++)
353 kfree(spec->kctl_alloc[i].name);
354 kfree(spec->kctl_alloc);
355 }
356
357 kfree(codec->spec);
358}
359
Tobin Davisc9b443d2006-11-14 12:13:39 +0100360static int conexant_build_controls(struct hda_codec *codec)
361{
362 struct conexant_spec *spec = codec->spec;
363 unsigned int i;
364 int err;
365
366 for (i = 0; i < spec->num_mixers; i++) {
367 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
368 if (err < 0)
369 return err;
370 }
371 if (spec->multiout.dig_out_nid) {
372 err = snd_hda_create_spdif_out_ctls(codec,
373 spec->multiout.dig_out_nid);
374 if (err < 0)
375 return err;
Takashi Iwai9a081602008-02-12 18:37:26 +0100376 err = snd_hda_create_spdif_share_sw(codec,
377 &spec->multiout);
378 if (err < 0)
379 return err;
380 spec->multiout.share_spdif = 1;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100381 }
382 if (spec->dig_in_nid) {
383 err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid);
384 if (err < 0)
385 return err;
386 }
387 return 0;
388}
389
390static struct hda_codec_ops conexant_patch_ops = {
391 .build_controls = conexant_build_controls,
392 .build_pcms = conexant_build_pcms,
393 .init = conexant_init,
394 .free = conexant_free,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100395};
396
397/*
398 * EAPD control
399 * the private value = nid | (invert << 8)
400 */
401
Takashi Iwaia5ce8892007-07-23 15:42:26 +0200402#define cxt_eapd_info snd_ctl_boolean_mono_info
Tobin Davisc9b443d2006-11-14 12:13:39 +0100403
Tobin Davis82f30042007-02-13 12:45:44 +0100404static int cxt_eapd_get(struct snd_kcontrol *kcontrol,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100405 struct snd_ctl_elem_value *ucontrol)
406{
407 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
408 struct conexant_spec *spec = codec->spec;
409 int invert = (kcontrol->private_value >> 8) & 1;
410 if (invert)
411 ucontrol->value.integer.value[0] = !spec->cur_eapd;
412 else
413 ucontrol->value.integer.value[0] = spec->cur_eapd;
414 return 0;
Tobin Davis82f30042007-02-13 12:45:44 +0100415
Tobin Davisc9b443d2006-11-14 12:13:39 +0100416}
417
Tobin Davis82f30042007-02-13 12:45:44 +0100418static int cxt_eapd_put(struct snd_kcontrol *kcontrol,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100419 struct snd_ctl_elem_value *ucontrol)
420{
421 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
422 struct conexant_spec *spec = codec->spec;
423 int invert = (kcontrol->private_value >> 8) & 1;
424 hda_nid_t nid = kcontrol->private_value & 0xff;
425 unsigned int eapd;
Tobin Davis82f30042007-02-13 12:45:44 +0100426
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100427 eapd = !!ucontrol->value.integer.value[0];
Tobin Davisc9b443d2006-11-14 12:13:39 +0100428 if (invert)
429 eapd = !eapd;
Takashi Iwai82beb8f2007-08-10 17:09:26 +0200430 if (eapd == spec->cur_eapd)
Tobin Davisc9b443d2006-11-14 12:13:39 +0100431 return 0;
Tobin Davis82f30042007-02-13 12:45:44 +0100432
Tobin Davisc9b443d2006-11-14 12:13:39 +0100433 spec->cur_eapd = eapd;
Takashi Iwai82beb8f2007-08-10 17:09:26 +0200434 snd_hda_codec_write_cache(codec, nid,
435 0, AC_VERB_SET_EAPD_BTLENABLE,
436 eapd ? 0x02 : 0x00);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100437 return 1;
438}
439
Takashi Iwai86d72bd2006-11-28 11:33:10 +0100440/* controls for test mode */
441#ifdef CONFIG_SND_DEBUG
442
Tobin Davis82f30042007-02-13 12:45:44 +0100443#define CXT_EAPD_SWITCH(xname, nid, mask) \
444 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
445 .info = cxt_eapd_info, \
446 .get = cxt_eapd_get, \
447 .put = cxt_eapd_put, \
448 .private_value = nid | (mask<<16) }
449
450
451
Tobin Davisc9b443d2006-11-14 12:13:39 +0100452static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol,
453 struct snd_ctl_elem_info *uinfo)
454{
455 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
456 struct conexant_spec *spec = codec->spec;
457 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
458 spec->num_channel_mode);
459}
460
461static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol,
462 struct snd_ctl_elem_value *ucontrol)
463{
464 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
465 struct conexant_spec *spec = codec->spec;
466 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
467 spec->num_channel_mode,
468 spec->multiout.max_channels);
469}
470
471static int conexant_ch_mode_put(struct snd_kcontrol *kcontrol,
472 struct snd_ctl_elem_value *ucontrol)
473{
474 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
475 struct conexant_spec *spec = codec->spec;
476 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
477 spec->num_channel_mode,
478 &spec->multiout.max_channels);
479 if (err >= 0 && spec->need_dac_fix)
480 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
481 return err;
482}
483
484#define CXT_PIN_MODE(xname, nid, dir) \
485 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
486 .info = conexant_ch_mode_info, \
487 .get = conexant_ch_mode_get, \
488 .put = conexant_ch_mode_put, \
489 .private_value = nid | (dir<<16) }
490
Takashi Iwai86d72bd2006-11-28 11:33:10 +0100491#endif /* CONFIG_SND_DEBUG */
492
Tobin Davisc9b443d2006-11-14 12:13:39 +0100493/* Conexant 5045 specific */
494
495static hda_nid_t cxt5045_dac_nids[1] = { 0x19 };
496static hda_nid_t cxt5045_adc_nids[1] = { 0x1a };
497static hda_nid_t cxt5045_capsrc_nids[1] = { 0x1a };
Takashi Iwaicbef9782008-02-22 18:36:46 +0100498#define CXT5045_SPDIF_OUT 0x18
Tobin Davisc9b443d2006-11-14 12:13:39 +0100499
Tobin Davis5cd57522006-11-20 17:42:09 +0100500static struct hda_channel_mode cxt5045_modes[1] = {
501 { 2, NULL },
502};
Tobin Davisc9b443d2006-11-14 12:13:39 +0100503
504static struct hda_input_mux cxt5045_capture_source = {
505 .num_items = 2,
506 .items = {
Tobin Davis82f30042007-02-13 12:45:44 +0100507 { "IntMic", 0x1 },
Jiang zhef4beee92008-01-17 11:19:26 +0100508 { "ExtMic", 0x2 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100509 }
510};
511
Jiang Zhe5218c892008-01-17 11:18:41 +0100512static struct hda_input_mux cxt5045_capture_source_benq = {
513 .num_items = 3,
514 .items = {
515 { "IntMic", 0x1 },
516 { "ExtMic", 0x2 },
517 { "LineIn", 0x3 },
518 }
519};
520
Jiang zhe2de3c232008-03-06 11:09:09 +0100521static struct hda_input_mux cxt5045_capture_source_hp530 = {
522 .num_items = 2,
523 .items = {
524 { "ExtMic", 0x1 },
525 { "IntMic", 0x2 },
526 }
527};
528
Tobin Davisc9b443d2006-11-14 12:13:39 +0100529/* turn on/off EAPD (+ mute HP) as a master switch */
530static int cxt5045_hp_master_sw_put(struct snd_kcontrol *kcontrol,
531 struct snd_ctl_elem_value *ucontrol)
532{
533 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
534 struct conexant_spec *spec = codec->spec;
Tobin Davis82f30042007-02-13 12:45:44 +0100535 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100536
Tobin Davis82f30042007-02-13 12:45:44 +0100537 if (!cxt_eapd_put(kcontrol, ucontrol))
Tobin Davisc9b443d2006-11-14 12:13:39 +0100538 return 0;
539
Tobin Davis82f30042007-02-13 12:45:44 +0100540 /* toggle internal speakers mute depending of presence of
541 * the headphone jack
542 */
Takashi Iwai47fd8302007-08-10 17:11:07 +0200543 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
544 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
545 HDA_AMP_MUTE, bits);
Tobin Davis7f296732007-03-12 11:39:01 +0100546
Takashi Iwai47fd8302007-08-10 17:11:07 +0200547 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
548 snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0,
549 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100550 return 1;
551}
552
553/* bind volumes of both NID 0x10 and 0x11 */
Takashi Iwaicca3b372007-08-10 17:12:15 +0200554static struct hda_bind_ctls cxt5045_hp_bind_master_vol = {
555 .ops = &snd_hda_bind_vol,
556 .values = {
557 HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT),
558 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT),
559 0
560 },
561};
Tobin Davisc9b443d2006-11-14 12:13:39 +0100562
Tobin Davis7f296732007-03-12 11:39:01 +0100563/* toggle input of built-in and mic jack appropriately */
564static void cxt5045_hp_automic(struct hda_codec *codec)
565{
566 static struct hda_verb mic_jack_on[] = {
567 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
568 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
569 {}
570 };
571 static struct hda_verb mic_jack_off[] = {
572 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
573 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
574 {}
575 };
576 unsigned int present;
577
578 present = snd_hda_codec_read(codec, 0x12, 0,
579 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
580 if (present)
581 snd_hda_sequence_write(codec, mic_jack_on);
582 else
583 snd_hda_sequence_write(codec, mic_jack_off);
584}
585
Tobin Davisc9b443d2006-11-14 12:13:39 +0100586
587/* mute internal speaker if HP is plugged */
588static void cxt5045_hp_automute(struct hda_codec *codec)
589{
Tobin Davis82f30042007-02-13 12:45:44 +0100590 struct conexant_spec *spec = codec->spec;
Tobin Davisdd87da12007-02-26 16:07:42 +0100591 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100592
Tobin Davis82f30042007-02-13 12:45:44 +0100593 spec->hp_present = snd_hda_codec_read(codec, 0x11, 0,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100594 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
Tobin Davisdd87da12007-02-26 16:07:42 +0100595
Takashi Iwai47fd8302007-08-10 17:11:07 +0200596 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
597 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
598 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100599}
600
601/* unsolicited event for HP jack sensing */
602static void cxt5045_hp_unsol_event(struct hda_codec *codec,
603 unsigned int res)
604{
605 res >>= 26;
606 switch (res) {
607 case CONEXANT_HP_EVENT:
608 cxt5045_hp_automute(codec);
609 break;
Tobin Davis7f296732007-03-12 11:39:01 +0100610 case CONEXANT_MIC_EVENT:
611 cxt5045_hp_automic(codec);
612 break;
613
Tobin Davisc9b443d2006-11-14 12:13:39 +0100614 }
615}
616
617static struct snd_kcontrol_new cxt5045_mixers[] = {
618 {
619 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
620 .name = "Capture Source",
621 .info = conexant_mux_enum_info,
622 .get = conexant_mux_enum_get,
623 .put = conexant_mux_enum_put
624 },
Takashi Iwaic8229c32007-10-19 08:06:21 +0200625 HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
626 HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
627 HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
628 HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
629 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
630 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
631 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
632 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
633 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
634 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
Takashi Iwaicca3b372007-08-10 17:12:15 +0200635 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100636 {
637 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
638 .name = "Master Playback Switch",
Tobin Davis82f30042007-02-13 12:45:44 +0100639 .info = cxt_eapd_info,
640 .get = cxt_eapd_get,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100641 .put = cxt5045_hp_master_sw_put,
Tobin Davis82f30042007-02-13 12:45:44 +0100642 .private_value = 0x10,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100643 },
644
645 {}
646};
647
Jiang Zhe5218c892008-01-17 11:18:41 +0100648static struct snd_kcontrol_new cxt5045_benq_mixers[] = {
649 HDA_CODEC_VOLUME("Line In Capture Volume", 0x1a, 0x03, HDA_INPUT),
650 HDA_CODEC_MUTE("Line In Capture Switch", 0x1a, 0x03, HDA_INPUT),
651 HDA_CODEC_VOLUME("Line In Playback Volume", 0x17, 0x3, HDA_INPUT),
652 HDA_CODEC_MUTE("Line In Playback Switch", 0x17, 0x3, HDA_INPUT),
653
654 {}
655};
656
Jiang zhe2de3c232008-03-06 11:09:09 +0100657static struct snd_kcontrol_new cxt5045_mixers_hp530[] = {
658 {
659 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
660 .name = "Capture Source",
661 .info = conexant_mux_enum_info,
662 .get = conexant_mux_enum_get,
663 .put = conexant_mux_enum_put
664 },
665 HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
666 HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
667 HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
668 HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
669 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
670 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
671 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
672 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
673 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
674 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
675 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
676 {
677 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
678 .name = "Master Playback Switch",
679 .info = cxt_eapd_info,
680 .get = cxt_eapd_get,
681 .put = cxt5045_hp_master_sw_put,
682 .private_value = 0x10,
683 },
684
685 {}
686};
687
Tobin Davisc9b443d2006-11-14 12:13:39 +0100688static struct hda_verb cxt5045_init_verbs[] = {
689 /* Line in, Mic */
690 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Tobin Davis7f296732007-03-12 11:39:01 +0100691 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100692 /* HP, Amp */
Takashi Iwaic8229c32007-10-19 08:06:21 +0200693 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
694 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
695 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
696 {0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
697 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
698 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
699 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
700 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
701 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
Tobin Davis82f30042007-02-13 12:45:44 +0100702 /* Record selector: Int mic */
Tobin Davis7f296732007-03-12 11:39:01 +0100703 {0x1a, AC_VERB_SET_CONNECT_SEL,0x1},
Tobin Davis82f30042007-02-13 12:45:44 +0100704 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100705 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
706 /* SPDIF route: PCM */
Takashi Iwaicbef9782008-02-22 18:36:46 +0100707 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Tobin Davisc9b443d2006-11-14 12:13:39 +0100708 { 0x13, AC_VERB_SET_CONNECT_SEL, 0x0 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100709 /* EAPD */
Tobin Davis82f30042007-02-13 12:45:44 +0100710 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2 }, /* default on */
Tobin Davisc9b443d2006-11-14 12:13:39 +0100711 { } /* end */
712};
713
Jiang Zhe5218c892008-01-17 11:18:41 +0100714static struct hda_verb cxt5045_benq_init_verbs[] = {
715 /* Int Mic, Mic */
716 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
717 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
718 /* Line In,HP, Amp */
719 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
720 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
721 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
722 {0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
723 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
724 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
725 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
726 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
727 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
728 /* Record selector: Int mic */
729 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x1},
730 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
731 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
732 /* SPDIF route: PCM */
Takashi Iwaicbef9782008-02-22 18:36:46 +0100733 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Jiang Zhe5218c892008-01-17 11:18:41 +0100734 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
735 /* EAPD */
736 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
737 { } /* end */
738};
Tobin Davis7f296732007-03-12 11:39:01 +0100739
740static struct hda_verb cxt5045_hp_sense_init_verbs[] = {
741 /* pin sensing on HP jack */
742 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
Takashi Iwaid3091fa2007-03-28 15:11:53 +0200743 { } /* end */
Tobin Davis7f296732007-03-12 11:39:01 +0100744};
745
746static struct hda_verb cxt5045_mic_sense_init_verbs[] = {
747 /* pin sensing on HP jack */
748 {0x12, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
Takashi Iwaid3091fa2007-03-28 15:11:53 +0200749 { } /* end */
Tobin Davis7f296732007-03-12 11:39:01 +0100750};
751
Tobin Davisc9b443d2006-11-14 12:13:39 +0100752#ifdef CONFIG_SND_DEBUG
753/* Test configuration for debugging, modelled after the ALC260 test
754 * configuration.
755 */
756static struct hda_input_mux cxt5045_test_capture_source = {
757 .num_items = 5,
758 .items = {
759 { "MIXER", 0x0 },
760 { "MIC1 pin", 0x1 },
761 { "LINE1 pin", 0x2 },
762 { "HP-OUT pin", 0x3 },
763 { "CD pin", 0x4 },
764 },
765};
766
767static struct snd_kcontrol_new cxt5045_test_mixer[] = {
768
769 /* Output controls */
Tobin Davisc9b443d2006-11-14 12:13:39 +0100770 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x10, 0x0, HDA_OUTPUT),
771 HDA_CODEC_MUTE("Speaker Playback Switch", 0x10, 0x0, HDA_OUTPUT),
Tobin Davis7f296732007-03-12 11:39:01 +0100772 HDA_CODEC_VOLUME("Node 11 Playback Volume", 0x11, 0x0, HDA_OUTPUT),
773 HDA_CODEC_MUTE("Node 11 Playback Switch", 0x11, 0x0, HDA_OUTPUT),
774 HDA_CODEC_VOLUME("Node 12 Playback Volume", 0x12, 0x0, HDA_OUTPUT),
775 HDA_CODEC_MUTE("Node 12 Playback Switch", 0x12, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100776
777 /* Modes for retasking pin widgets */
778 CXT_PIN_MODE("HP-OUT pin mode", 0x11, CXT_PIN_DIR_INOUT),
779 CXT_PIN_MODE("LINE1 pin mode", 0x12, CXT_PIN_DIR_INOUT),
780
Tobin Davis82f30042007-02-13 12:45:44 +0100781 /* EAPD Switch Control */
782 CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0),
783
Tobin Davisc9b443d2006-11-14 12:13:39 +0100784 /* Loopback mixer controls */
Tobin Davisc9b443d2006-11-14 12:13:39 +0100785
Tobin Davis7f296732007-03-12 11:39:01 +0100786 HDA_CODEC_VOLUME("Mixer-1 Volume", 0x17, 0x0, HDA_INPUT),
787 HDA_CODEC_MUTE("Mixer-1 Switch", 0x17, 0x0, HDA_INPUT),
788 HDA_CODEC_VOLUME("Mixer-2 Volume", 0x17, 0x1, HDA_INPUT),
789 HDA_CODEC_MUTE("Mixer-2 Switch", 0x17, 0x1, HDA_INPUT),
790 HDA_CODEC_VOLUME("Mixer-3 Volume", 0x17, 0x2, HDA_INPUT),
791 HDA_CODEC_MUTE("Mixer-3 Switch", 0x17, 0x2, HDA_INPUT),
792 HDA_CODEC_VOLUME("Mixer-4 Volume", 0x17, 0x3, HDA_INPUT),
793 HDA_CODEC_MUTE("Mixer-4 Switch", 0x17, 0x3, HDA_INPUT),
794 HDA_CODEC_VOLUME("Mixer-5 Volume", 0x17, 0x4, HDA_INPUT),
795 HDA_CODEC_MUTE("Mixer-5 Switch", 0x17, 0x4, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100796 {
797 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
798 .name = "Input Source",
799 .info = conexant_mux_enum_info,
800 .get = conexant_mux_enum_get,
801 .put = conexant_mux_enum_put,
802 },
Tobin Davisfb3409e2007-05-17 09:40:47 +0200803 /* Audio input controls */
804 HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
805 HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
806 HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
807 HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
808 HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
809 HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
810 HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
811 HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
812 HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
813 HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100814 { } /* end */
815};
816
817static struct hda_verb cxt5045_test_init_verbs[] = {
Tobin Davis7f296732007-03-12 11:39:01 +0100818 /* Set connections */
819 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
820 { 0x11, AC_VERB_SET_CONNECT_SEL, 0x0 },
821 { 0x12, AC_VERB_SET_CONNECT_SEL, 0x0 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100822 /* Enable retasking pins as output, initially without power amp */
823 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Tobin Davis7f296732007-03-12 11:39:01 +0100824 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Tobin Davisc9b443d2006-11-14 12:13:39 +0100825
826 /* Disable digital (SPDIF) pins initially, but users can enable
827 * them via a mixer switch. In the case of SPDIF-out, this initverb
828 * payload also sets the generation to 0, output to be in "consumer"
829 * PCM format, copyright asserted, no pre-emphasis and no validity
830 * control.
831 */
Takashi Iwaicbef9782008-02-22 18:36:46 +0100832 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
833 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
Tobin Davisc9b443d2006-11-14 12:13:39 +0100834
835 /* Start with output sum widgets muted and their output gains at min */
836 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
837 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
838
839 /* Unmute retasking pin widget output buffers since the default
840 * state appears to be output. As the pin mode is changed by the
841 * user the pin mode control will take care of enabling the pin's
842 * input/output buffers as needed.
843 */
844 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
845 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
846
847 /* Mute capture amp left and right */
848 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
849
850 /* Set ADC connection select to match default mixer setting (mic1
851 * pin)
852 */
853 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
Tobin Davis7f296732007-03-12 11:39:01 +0100854 {0x17, AC_VERB_SET_CONNECT_SEL, 0x00},
Tobin Davisc9b443d2006-11-14 12:13:39 +0100855
856 /* Mute all inputs to mixer widget (even unconnected ones) */
857 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* Mixer pin */
858 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* Mic1 pin */
859 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* Line pin */
860 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* HP pin */
861 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
862
863 { }
864};
865#endif
866
867
868/* initialize jack-sensing, too */
869static int cxt5045_init(struct hda_codec *codec)
870{
871 conexant_init(codec);
872 cxt5045_hp_automute(codec);
873 return 0;
874}
875
876
877enum {
Marc Boucher15908c32008-01-22 15:15:59 +0100878 CXT5045_LAPTOP_HPSENSE,
879 CXT5045_LAPTOP_MICSENSE,
880 CXT5045_LAPTOP_HPMICSENSE,
Jiang Zhe5218c892008-01-17 11:18:41 +0100881 CXT5045_BENQ,
Jiang zhe2de3c232008-03-06 11:09:09 +0100882 CXT5045_LAPTOP_HP530,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100883#ifdef CONFIG_SND_DEBUG
884 CXT5045_TEST,
885#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100886 CXT5045_MODELS
Tobin Davisc9b443d2006-11-14 12:13:39 +0100887};
888
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100889static const char *cxt5045_models[CXT5045_MODELS] = {
Marc Boucher15908c32008-01-22 15:15:59 +0100890 [CXT5045_LAPTOP_HPSENSE] = "laptop-hpsense",
891 [CXT5045_LAPTOP_MICSENSE] = "laptop-micsense",
892 [CXT5045_LAPTOP_HPMICSENSE] = "laptop-hpmicsense",
893 [CXT5045_BENQ] = "benq",
Jiang zhe2de3c232008-03-06 11:09:09 +0100894 [CXT5045_LAPTOP_HP530] = "laptop-hp530",
Tobin Davisc9b443d2006-11-14 12:13:39 +0100895#ifdef CONFIG_SND_DEBUG
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100896 [CXT5045_TEST] = "test",
Tobin Davisc9b443d2006-11-14 12:13:39 +0100897#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100898};
899
900static struct snd_pci_quirk cxt5045_cfg_tbl[] = {
Marc Boucher15908c32008-01-22 15:15:59 +0100901 SND_PCI_QUIRK(0x103c, 0x30a5, "HP", CXT5045_LAPTOP_HPSENSE),
902 SND_PCI_QUIRK(0x103c, 0x30b2, "HP DV Series", CXT5045_LAPTOP_HPSENSE),
903 SND_PCI_QUIRK(0x103c, 0x30b5, "HP DV2120", CXT5045_LAPTOP_HPSENSE),
904 SND_PCI_QUIRK(0x103c, 0x30b7, "HP DV6000Z", CXT5045_LAPTOP_HPSENSE),
905 SND_PCI_QUIRK(0x103c, 0x30bb, "HP DV8000", CXT5045_LAPTOP_HPSENSE),
906 SND_PCI_QUIRK(0x103c, 0x30cd, "HP DV Series", CXT5045_LAPTOP_HPSENSE),
Takashi Iwai0f6a5152008-01-29 13:26:04 +0100907 SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV9533EG", CXT5045_LAPTOP_HPSENSE),
Jiang zhe2de3c232008-03-06 11:09:09 +0100908 SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530),
Marc Boucher15908c32008-01-22 15:15:59 +0100909 SND_PCI_QUIRK(0x103c, 0x30d9, "HP Spartan", CXT5045_LAPTOP_HPSENSE),
Jiang Zhe5218c892008-01-17 11:18:41 +0100910 SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ),
Marc Boucher15908c32008-01-22 15:15:59 +0100911 SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE),
912 SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE),
913 SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505", CXT5045_LAPTOP_HPSENSE),
914 SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE),
915 SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE),
916 SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE),
917 SND_PCI_QUIRK(0x1631, 0xc106, "Packard Bell", CXT5045_LAPTOP_HPMICSENSE),
918 SND_PCI_QUIRK(0x1631, 0xc107, "Packard Bell", CXT5045_LAPTOP_HPMICSENSE),
919 SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100920 {}
921};
922
923static int patch_cxt5045(struct hda_codec *codec)
924{
925 struct conexant_spec *spec;
926 int board_config;
927
928 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
929 if (!spec)
930 return -ENOMEM;
931 mutex_init(&spec->amp_mutex);
932 codec->spec = spec;
933
934 spec->multiout.max_channels = 2;
935 spec->multiout.num_dacs = ARRAY_SIZE(cxt5045_dac_nids);
936 spec->multiout.dac_nids = cxt5045_dac_nids;
937 spec->multiout.dig_out_nid = CXT5045_SPDIF_OUT;
938 spec->num_adc_nids = 1;
939 spec->adc_nids = cxt5045_adc_nids;
940 spec->capsrc_nids = cxt5045_capsrc_nids;
941 spec->input_mux = &cxt5045_capture_source;
942 spec->num_mixers = 1;
943 spec->mixers[0] = cxt5045_mixers;
944 spec->num_init_verbs = 1;
945 spec->init_verbs[0] = cxt5045_init_verbs;
946 spec->spdif_route = 0;
Tobin Davis5cd57522006-11-20 17:42:09 +0100947 spec->num_channel_mode = ARRAY_SIZE(cxt5045_modes),
948 spec->channel_mode = cxt5045_modes,
949
Tobin Davisc9b443d2006-11-14 12:13:39 +0100950
951 codec->patch_ops = conexant_patch_ops;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100952
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100953 board_config = snd_hda_check_board_config(codec, CXT5045_MODELS,
954 cxt5045_models,
955 cxt5045_cfg_tbl);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100956 switch (board_config) {
Marc Boucher15908c32008-01-22 15:15:59 +0100957 case CXT5045_LAPTOP_HPSENSE:
Tobin Davis7f296732007-03-12 11:39:01 +0100958 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100959 spec->input_mux = &cxt5045_capture_source;
960 spec->num_init_verbs = 2;
Tobin Davis7f296732007-03-12 11:39:01 +0100961 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
962 spec->mixers[0] = cxt5045_mixers;
963 codec->patch_ops.init = cxt5045_init;
964 break;
Marc Boucher15908c32008-01-22 15:15:59 +0100965 case CXT5045_LAPTOP_MICSENSE:
Tobin Davis7f296732007-03-12 11:39:01 +0100966 spec->input_mux = &cxt5045_capture_source;
967 spec->num_init_verbs = 2;
968 spec->init_verbs[1] = cxt5045_mic_sense_init_verbs;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100969 spec->mixers[0] = cxt5045_mixers;
970 codec->patch_ops.init = cxt5045_init;
971 break;
Marc Boucher15908c32008-01-22 15:15:59 +0100972 default:
973 case CXT5045_LAPTOP_HPMICSENSE:
974 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
975 spec->input_mux = &cxt5045_capture_source;
976 spec->num_init_verbs = 3;
977 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
978 spec->init_verbs[2] = cxt5045_mic_sense_init_verbs;
979 spec->mixers[0] = cxt5045_mixers;
980 codec->patch_ops.init = cxt5045_init;
981 break;
Jiang Zhe5218c892008-01-17 11:18:41 +0100982 case CXT5045_BENQ:
983 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
984 spec->input_mux = &cxt5045_capture_source_benq;
985 spec->num_init_verbs = 1;
986 spec->init_verbs[0] = cxt5045_benq_init_verbs;
987 spec->mixers[0] = cxt5045_mixers;
988 spec->mixers[1] = cxt5045_benq_mixers;
989 spec->num_mixers = 2;
990 codec->patch_ops.init = cxt5045_init;
991 break;
Jiang zhe2de3c232008-03-06 11:09:09 +0100992 case CXT5045_LAPTOP_HP530:
993 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
994 spec->input_mux = &cxt5045_capture_source_hp530;
995 spec->num_init_verbs = 2;
996 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
997 spec->mixers[0] = cxt5045_mixers_hp530;
998 codec->patch_ops.init = cxt5045_init;
999 break;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001000#ifdef CONFIG_SND_DEBUG
1001 case CXT5045_TEST:
1002 spec->input_mux = &cxt5045_test_capture_source;
1003 spec->mixers[0] = cxt5045_test_mixer;
1004 spec->init_verbs[0] = cxt5045_test_init_verbs;
Marc Boucher15908c32008-01-22 15:15:59 +01001005 break;
1006
Tobin Davisc9b443d2006-11-14 12:13:39 +01001007#endif
1008 }
Takashi Iwai48ecb7e2007-12-17 14:32:49 +01001009
1010 /*
1011 * Fix max PCM level to 0 dB
1012 * (originall it has 0x2b steps with 0dB offset 0x14)
1013 */
1014 snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT,
1015 (0x14 << AC_AMPCAP_OFFSET_SHIFT) |
1016 (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) |
1017 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
1018 (1 << AC_AMPCAP_MUTE_SHIFT));
1019
Tobin Davisc9b443d2006-11-14 12:13:39 +01001020 return 0;
1021}
1022
1023
1024/* Conexant 5047 specific */
Tobin Davis82f30042007-02-13 12:45:44 +01001025#define CXT5047_SPDIF_OUT 0x11
Tobin Davisc9b443d2006-11-14 12:13:39 +01001026
Tobin Davis82f30042007-02-13 12:45:44 +01001027static hda_nid_t cxt5047_dac_nids[2] = { 0x10, 0x1c };
Tobin Davisc9b443d2006-11-14 12:13:39 +01001028static hda_nid_t cxt5047_adc_nids[1] = { 0x12 };
1029static hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a };
Tobin Davisc9b443d2006-11-14 12:13:39 +01001030
Tobin Davis5cd57522006-11-20 17:42:09 +01001031static struct hda_channel_mode cxt5047_modes[1] = {
1032 { 2, NULL },
1033};
Tobin Davisc9b443d2006-11-14 12:13:39 +01001034
1035static struct hda_input_mux cxt5047_capture_source = {
Tobin Davis7f296732007-03-12 11:39:01 +01001036 .num_items = 1,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001037 .items = {
Tobin Davis7f296732007-03-12 11:39:01 +01001038 { "Mic", 0x2 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01001039 }
1040};
1041
1042static struct hda_input_mux cxt5047_hp_capture_source = {
1043 .num_items = 1,
1044 .items = {
Tobin Davis82f30042007-02-13 12:45:44 +01001045 { "ExtMic", 0x2 },
1046 }
1047};
1048
1049static struct hda_input_mux cxt5047_toshiba_capture_source = {
1050 .num_items = 2,
1051 .items = {
1052 { "ExtMic", 0x2 },
1053 { "Line-In", 0x1 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01001054 }
1055};
1056
1057/* turn on/off EAPD (+ mute HP) as a master switch */
1058static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1059 struct snd_ctl_elem_value *ucontrol)
1060{
1061 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1062 struct conexant_spec *spec = codec->spec;
Tobin Davis82f30042007-02-13 12:45:44 +01001063 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001064
Tobin Davis82f30042007-02-13 12:45:44 +01001065 if (!cxt_eapd_put(kcontrol, ucontrol))
Tobin Davisc9b443d2006-11-14 12:13:39 +01001066 return 0;
1067
Tobin Davis82f30042007-02-13 12:45:44 +01001068 /* toggle internal speakers mute depending of presence of
1069 * the headphone jack
1070 */
Takashi Iwai47fd8302007-08-10 17:11:07 +02001071 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
1072 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0,
1073 HDA_AMP_MUTE, bits);
1074 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
1075 snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0,
1076 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001077 return 1;
1078}
1079
Tobin Davis82f30042007-02-13 12:45:44 +01001080/* bind volumes of both NID 0x13 (Headphones) and 0x1d (Speakers) */
Takashi Iwaicca3b372007-08-10 17:12:15 +02001081static struct hda_bind_ctls cxt5047_bind_master_vol = {
1082 .ops = &snd_hda_bind_vol,
1083 .values = {
1084 HDA_COMPOSE_AMP_VAL(0x13, 3, 0, HDA_OUTPUT),
1085 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
1086 0
1087 },
1088};
Tobin Davisc9b443d2006-11-14 12:13:39 +01001089
1090/* mute internal speaker if HP is plugged */
1091static void cxt5047_hp_automute(struct hda_codec *codec)
1092{
Tobin Davis82f30042007-02-13 12:45:44 +01001093 struct conexant_spec *spec = codec->spec;
Tobin Davisdd87da12007-02-26 16:07:42 +01001094 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001095
Tobin Davis82f30042007-02-13 12:45:44 +01001096 spec->hp_present = snd_hda_codec_read(codec, 0x13, 0,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001097 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
Tobin Davisdd87da12007-02-26 16:07:42 +01001098
Takashi Iwai47fd8302007-08-10 17:11:07 +02001099 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
1100 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0,
1101 HDA_AMP_MUTE, bits);
Tobin Davis82f30042007-02-13 12:45:44 +01001102 /* Mute/Unmute PCM 2 for good measure - some systems need this */
Takashi Iwai47fd8302007-08-10 17:11:07 +02001103 snd_hda_codec_amp_stereo(codec, 0x1c, HDA_OUTPUT, 0,
1104 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001105}
1106
Tobin Davisfb3409e2007-05-17 09:40:47 +02001107/* mute internal speaker if HP is plugged */
1108static void cxt5047_hp2_automute(struct hda_codec *codec)
1109{
1110 struct conexant_spec *spec = codec->spec;
1111 unsigned int bits;
1112
1113 spec->hp_present = snd_hda_codec_read(codec, 0x13, 0,
1114 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1115
Takashi Iwai47fd8302007-08-10 17:11:07 +02001116 bits = spec->hp_present ? HDA_AMP_MUTE : 0;
1117 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0,
1118 HDA_AMP_MUTE, bits);
Tobin Davisfb3409e2007-05-17 09:40:47 +02001119 /* Mute/Unmute PCM 2 for good measure - some systems need this */
Takashi Iwai47fd8302007-08-10 17:11:07 +02001120 snd_hda_codec_amp_stereo(codec, 0x1c, HDA_OUTPUT, 0,
1121 HDA_AMP_MUTE, bits);
Tobin Davisfb3409e2007-05-17 09:40:47 +02001122}
1123
Tobin Davisc9b443d2006-11-14 12:13:39 +01001124/* toggle input of built-in and mic jack appropriately */
1125static void cxt5047_hp_automic(struct hda_codec *codec)
1126{
1127 static struct hda_verb mic_jack_on[] = {
Marc Boucher9f113e02008-01-22 15:18:08 +01001128 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1129 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001130 {}
1131 };
1132 static struct hda_verb mic_jack_off[] = {
Marc Boucher9f113e02008-01-22 15:18:08 +01001133 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1134 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001135 {}
1136 };
1137 unsigned int present;
1138
Tobin Davis7f296732007-03-12 11:39:01 +01001139 present = snd_hda_codec_read(codec, 0x15, 0,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001140 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1141 if (present)
1142 snd_hda_sequence_write(codec, mic_jack_on);
1143 else
1144 snd_hda_sequence_write(codec, mic_jack_off);
1145}
1146
1147/* unsolicited event for HP jack sensing */
1148static void cxt5047_hp_unsol_event(struct hda_codec *codec,
1149 unsigned int res)
1150{
Marc Boucher9f113e02008-01-22 15:18:08 +01001151 switch (res >> 26) {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001152 case CONEXANT_HP_EVENT:
1153 cxt5047_hp_automute(codec);
1154 break;
1155 case CONEXANT_MIC_EVENT:
1156 cxt5047_hp_automic(codec);
1157 break;
1158 }
1159}
1160
Tobin Davisfb3409e2007-05-17 09:40:47 +02001161/* unsolicited event for HP jack sensing - non-EAPD systems */
1162static void cxt5047_hp2_unsol_event(struct hda_codec *codec,
1163 unsigned int res)
1164{
1165 res >>= 26;
1166 switch (res) {
1167 case CONEXANT_HP_EVENT:
1168 cxt5047_hp2_automute(codec);
1169 break;
1170 case CONEXANT_MIC_EVENT:
1171 cxt5047_hp_automic(codec);
1172 break;
1173 }
1174}
1175
Tobin Davisc9b443d2006-11-14 12:13:39 +01001176static struct snd_kcontrol_new cxt5047_mixers[] = {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001177 HDA_CODEC_VOLUME("Mic Bypass Capture Volume", 0x19, 0x02, HDA_INPUT),
1178 HDA_CODEC_MUTE("Mic Bypass Capture Switch", 0x19, 0x02, HDA_INPUT),
Tobin Davis7f296732007-03-12 11:39:01 +01001179 HDA_CODEC_VOLUME("Mic Gain Volume", 0x1a, 0x0, HDA_OUTPUT),
1180 HDA_CODEC_MUTE("Mic Gain Switch", 0x1a, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001181 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1182 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1183 HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1184 HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
Tobin Davis82f30042007-02-13 12:45:44 +01001185 HDA_CODEC_VOLUME("PCM-2 Volume", 0x1c, 0x00, HDA_OUTPUT),
1186 HDA_CODEC_MUTE("PCM-2 Switch", 0x1c, 0x00, HDA_OUTPUT),
Tobin Davisb7589ce2007-04-24 17:56:55 +02001187 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x00, HDA_OUTPUT),
1188 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x00, HDA_OUTPUT),
1189 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1190 HDA_CODEC_MUTE("Headphone Playback Switch", 0x13, 0x00, HDA_OUTPUT),
Tobin Davis82f30042007-02-13 12:45:44 +01001191
1192 {}
1193};
1194
1195static struct snd_kcontrol_new cxt5047_toshiba_mixers[] = {
1196 {
1197 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1198 .name = "Capture Source",
1199 .info = conexant_mux_enum_info,
1200 .get = conexant_mux_enum_get,
1201 .put = conexant_mux_enum_put
1202 },
1203 HDA_CODEC_VOLUME("Mic Bypass Capture Volume", 0x19, 0x02, HDA_INPUT),
1204 HDA_CODEC_MUTE("Mic Bypass Capture Switch", 0x19, 0x02, HDA_INPUT),
1205 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1206 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1207 HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1208 HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
Takashi Iwaicca3b372007-08-10 17:12:15 +02001209 HDA_BIND_VOL("Master Playback Volume", &cxt5047_bind_master_vol),
Tobin Davis82f30042007-02-13 12:45:44 +01001210 {
1211 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1212 .name = "Master Playback Switch",
1213 .info = cxt_eapd_info,
1214 .get = cxt_eapd_get,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001215 .put = cxt5047_hp_master_sw_put,
1216 .private_value = 0x13,
1217 },
1218
1219 {}
1220};
1221
1222static struct snd_kcontrol_new cxt5047_hp_mixers[] = {
1223 {
1224 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1225 .name = "Capture Source",
1226 .info = conexant_mux_enum_info,
1227 .get = conexant_mux_enum_get,
1228 .put = conexant_mux_enum_put
1229 },
1230 HDA_CODEC_VOLUME("Mic Bypass Capture Volume", 0x19, 0x02, HDA_INPUT),
1231 HDA_CODEC_MUTE("Mic Bypass Capture Switch", 0x19,0x02,HDA_INPUT),
1232 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1233 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1234 HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1235 HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
1236 HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1237 {
1238 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1239 .name = "Master Playback Switch",
Tobin Davis82f30042007-02-13 12:45:44 +01001240 .info = cxt_eapd_info,
1241 .get = cxt_eapd_get,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001242 .put = cxt5047_hp_master_sw_put,
1243 .private_value = 0x13,
1244 },
1245 { } /* end */
1246};
1247
1248static struct hda_verb cxt5047_init_verbs[] = {
1249 /* Line in, Mic, Built-in Mic */
1250 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1251 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1252 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
Tobin Davis7f296732007-03-12 11:39:01 +01001253 /* HP, Speaker */
Tobin Davisb7589ce2007-04-24 17:56:55 +02001254 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1255 {0x13, AC_VERB_SET_CONNECT_SEL,0x1},
Tobin Davis7f296732007-03-12 11:39:01 +01001256 {0x1d, AC_VERB_SET_CONNECT_SEL,0x0},
1257 /* Record selector: Mic */
1258 {0x12, AC_VERB_SET_CONNECT_SEL,0x03},
1259 {0x19, AC_VERB_SET_AMP_GAIN_MUTE,
1260 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
1261 {0x1A, AC_VERB_SET_CONNECT_SEL,0x02},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001262 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1263 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00},
1264 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1265 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x03},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001266 /* SPDIF route: PCM */
1267 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 },
Tobin Davis82f30042007-02-13 12:45:44 +01001268 /* Enable unsolicited events */
1269 {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1270 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001271 { } /* end */
1272};
1273
1274/* configuration for Toshiba Laptops */
1275static struct hda_verb cxt5047_toshiba_init_verbs[] = {
1276 {0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0 }, /* default on */
1277 /* pin sensing on HP and Mic jacks */
1278 {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1279 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
Tobin Davis82f30042007-02-13 12:45:44 +01001280 /* Speaker routing */
1281 {0x1d, AC_VERB_SET_CONNECT_SEL,0x1},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001282 {}
1283};
1284
1285/* configuration for HP Laptops */
1286static struct hda_verb cxt5047_hp_init_verbs[] = {
Tobin Davis82f30042007-02-13 12:45:44 +01001287 /* pin sensing on HP jack */
Tobin Davisc9b443d2006-11-14 12:13:39 +01001288 {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
Takashi Iwaib84f08d2008-02-18 12:36:11 +01001289 /* 0x13 is actually shared by both HP and speaker;
1290 * setting the connection to 0 (=0x19) makes the master volume control
1291 * working mysteriouslly...
1292 */
1293 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
Tobin Davis82f30042007-02-13 12:45:44 +01001294 /* Record selector: Ext Mic */
1295 {0x12, AC_VERB_SET_CONNECT_SEL,0x03},
Tobin Davis82f30042007-02-13 12:45:44 +01001296 {0x19, AC_VERB_SET_AMP_GAIN_MUTE,
1297 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
1298 /* Speaker routing */
1299 {0x1d, AC_VERB_SET_CONNECT_SEL,0x1},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001300 {}
1301};
1302
1303/* Test configuration for debugging, modelled after the ALC260 test
1304 * configuration.
1305 */
1306#ifdef CONFIG_SND_DEBUG
1307static struct hda_input_mux cxt5047_test_capture_source = {
Tobin Davis82f30042007-02-13 12:45:44 +01001308 .num_items = 4,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001309 .items = {
Tobin Davis82f30042007-02-13 12:45:44 +01001310 { "LINE1 pin", 0x0 },
1311 { "MIC1 pin", 0x1 },
1312 { "MIC2 pin", 0x2 },
1313 { "CD pin", 0x3 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01001314 },
1315};
1316
1317static struct snd_kcontrol_new cxt5047_test_mixer[] = {
1318
1319 /* Output only controls */
Tobin Davis82f30042007-02-13 12:45:44 +01001320 HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT),
1321 HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT),
1322 HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT),
1323 HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001324 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1325 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1326 HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1327 HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT),
Tobin Davis82f30042007-02-13 12:45:44 +01001328 HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT),
1329 HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1330 HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT),
1331 HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001332
1333 /* Modes for retasking pin widgets */
1334 CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT),
1335 CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT),
1336
Tobin Davis82f30042007-02-13 12:45:44 +01001337 /* EAPD Switch Control */
1338 CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0),
1339
Tobin Davisc9b443d2006-11-14 12:13:39 +01001340 /* Loopback mixer controls */
Tobin Davis82f30042007-02-13 12:45:44 +01001341 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT),
1342 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT),
1343 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT),
1344 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT),
1345 HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT),
1346 HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT),
1347 HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT),
1348 HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001349
Tobin Davis82f30042007-02-13 12:45:44 +01001350 HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT),
1351 HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT),
1352 HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT),
1353 HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT),
1354 HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT),
1355 HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT),
1356 HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT),
1357 HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001358 {
1359 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1360 .name = "Input Source",
1361 .info = conexant_mux_enum_info,
1362 .get = conexant_mux_enum_get,
1363 .put = conexant_mux_enum_put,
1364 },
Marc Boucher9f113e02008-01-22 15:18:08 +01001365 HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
1366 HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
1367 HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
1368 HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
1369 HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
1370 HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
1371 HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
1372 HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
1373 HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
1374 HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
1375
Tobin Davisc9b443d2006-11-14 12:13:39 +01001376 { } /* end */
1377};
1378
1379static struct hda_verb cxt5047_test_init_verbs[] = {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001380 /* Enable retasking pins as output, initially without power amp */
1381 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1382 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1383 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1384
1385 /* Disable digital (SPDIF) pins initially, but users can enable
1386 * them via a mixer switch. In the case of SPDIF-out, this initverb
1387 * payload also sets the generation to 0, output to be in "consumer"
1388 * PCM format, copyright asserted, no pre-emphasis and no validity
1389 * control.
1390 */
1391 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1392
1393 /* Ensure mic1, mic2, line1 pin widgets take input from the
1394 * OUT1 sum bus when acting as an output.
1395 */
1396 {0x1a, AC_VERB_SET_CONNECT_SEL, 0},
1397 {0x1b, AC_VERB_SET_CONNECT_SEL, 0},
1398
1399 /* Start with output sum widgets muted and their output gains at min */
1400 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1401 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1402
1403 /* Unmute retasking pin widget output buffers since the default
1404 * state appears to be output. As the pin mode is changed by the
1405 * user the pin mode control will take care of enabling the pin's
1406 * input/output buffers as needed.
1407 */
1408 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1409 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1410 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1411
1412 /* Mute capture amp left and right */
1413 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1414
1415 /* Set ADC connection select to match default mixer setting (mic1
1416 * pin)
1417 */
1418 {0x12, AC_VERB_SET_CONNECT_SEL, 0x00},
1419
1420 /* Mute all inputs to mixer widget (even unconnected ones) */
1421 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
1422 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
1423 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
1424 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
1425 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1426 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
1427 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
1428 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
1429
1430 { }
1431};
1432#endif
1433
1434
1435/* initialize jack-sensing, too */
1436static int cxt5047_hp_init(struct hda_codec *codec)
1437{
1438 conexant_init(codec);
1439 cxt5047_hp_automute(codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001440 return 0;
1441}
1442
1443
1444enum {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001445 CXT5047_LAPTOP, /* Laptops w/o EAPD support */
1446 CXT5047_LAPTOP_HP, /* Some HP laptops */
1447 CXT5047_LAPTOP_EAPD, /* Laptops with EAPD support */
Tobin Davisc9b443d2006-11-14 12:13:39 +01001448#ifdef CONFIG_SND_DEBUG
1449 CXT5047_TEST,
1450#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001451 CXT5047_MODELS
Tobin Davisc9b443d2006-11-14 12:13:39 +01001452};
1453
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001454static const char *cxt5047_models[CXT5047_MODELS] = {
1455 [CXT5047_LAPTOP] = "laptop",
1456 [CXT5047_LAPTOP_HP] = "laptop-hp",
1457 [CXT5047_LAPTOP_EAPD] = "laptop-eapd",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001458#ifdef CONFIG_SND_DEBUG
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001459 [CXT5047_TEST] = "test",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001460#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001461};
1462
1463static struct snd_pci_quirk cxt5047_cfg_tbl[] = {
1464 SND_PCI_QUIRK(0x103c, 0x30a0, "HP DV1000", CXT5047_LAPTOP),
Takashi Iwaiac3e3742007-12-17 17:14:18 +01001465 SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001466 SND_PCI_QUIRK(0x103c, 0x30b2, "HP DV2000T/DV3000T", CXT5047_LAPTOP),
Tobin Davis82f30042007-02-13 12:45:44 +01001467 SND_PCI_QUIRK(0x103c, 0x30b5, "HP DV2000Z", CXT5047_LAPTOP),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001468 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001469 {}
1470};
1471
1472static int patch_cxt5047(struct hda_codec *codec)
1473{
1474 struct conexant_spec *spec;
1475 int board_config;
1476
1477 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1478 if (!spec)
1479 return -ENOMEM;
1480 mutex_init(&spec->amp_mutex);
1481 codec->spec = spec;
1482
1483 spec->multiout.max_channels = 2;
1484 spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids);
1485 spec->multiout.dac_nids = cxt5047_dac_nids;
1486 spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT;
1487 spec->num_adc_nids = 1;
1488 spec->adc_nids = cxt5047_adc_nids;
1489 spec->capsrc_nids = cxt5047_capsrc_nids;
1490 spec->input_mux = &cxt5047_capture_source;
1491 spec->num_mixers = 1;
1492 spec->mixers[0] = cxt5047_mixers;
1493 spec->num_init_verbs = 1;
1494 spec->init_verbs[0] = cxt5047_init_verbs;
1495 spec->spdif_route = 0;
Tobin Davis5cd57522006-11-20 17:42:09 +01001496 spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes),
1497 spec->channel_mode = cxt5047_modes,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001498
1499 codec->patch_ops = conexant_patch_ops;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001500
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001501 board_config = snd_hda_check_board_config(codec, CXT5047_MODELS,
1502 cxt5047_models,
1503 cxt5047_cfg_tbl);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001504 switch (board_config) {
1505 case CXT5047_LAPTOP:
Tobin Davisfb3409e2007-05-17 09:40:47 +02001506 codec->patch_ops.unsol_event = cxt5047_hp2_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001507 break;
1508 case CXT5047_LAPTOP_HP:
1509 spec->input_mux = &cxt5047_hp_capture_source;
1510 spec->num_init_verbs = 2;
1511 spec->init_verbs[1] = cxt5047_hp_init_verbs;
1512 spec->mixers[0] = cxt5047_hp_mixers;
Tobin Davisfb3409e2007-05-17 09:40:47 +02001513 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001514 codec->patch_ops.init = cxt5047_hp_init;
1515 break;
1516 case CXT5047_LAPTOP_EAPD:
Tobin Davis82f30042007-02-13 12:45:44 +01001517 spec->input_mux = &cxt5047_toshiba_capture_source;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001518 spec->num_init_verbs = 2;
1519 spec->init_verbs[1] = cxt5047_toshiba_init_verbs;
Tobin Davis82f30042007-02-13 12:45:44 +01001520 spec->mixers[0] = cxt5047_toshiba_mixers;
Tobin Davisfb3409e2007-05-17 09:40:47 +02001521 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001522 break;
1523#ifdef CONFIG_SND_DEBUG
1524 case CXT5047_TEST:
1525 spec->input_mux = &cxt5047_test_capture_source;
1526 spec->mixers[0] = cxt5047_test_mixer;
1527 spec->init_verbs[0] = cxt5047_test_init_verbs;
Tobin Davisfb3409e2007-05-17 09:40:47 +02001528 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001529#endif
1530 }
1531 return 0;
1532}
1533
Takashi Iwai461e2c72008-01-25 11:35:17 +01001534/* Conexant 5051 specific */
1535static hda_nid_t cxt5051_dac_nids[1] = { 0x10 };
1536static hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 };
1537#define CXT5051_SPDIF_OUT 0x1C
1538#define CXT5051_PORTB_EVENT 0x38
1539#define CXT5051_PORTC_EVENT 0x39
1540
1541static struct hda_channel_mode cxt5051_modes[1] = {
1542 { 2, NULL },
1543};
1544
1545static void cxt5051_update_speaker(struct hda_codec *codec)
1546{
1547 struct conexant_spec *spec = codec->spec;
1548 unsigned int pinctl;
1549 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
1550 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1551 pinctl);
1552}
1553
1554/* turn on/off EAPD (+ mute HP) as a master switch */
1555static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1556 struct snd_ctl_elem_value *ucontrol)
1557{
1558 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1559
1560 if (!cxt_eapd_put(kcontrol, ucontrol))
1561 return 0;
1562 cxt5051_update_speaker(codec);
1563 return 1;
1564}
1565
1566/* toggle input of built-in and mic jack appropriately */
1567static void cxt5051_portb_automic(struct hda_codec *codec)
1568{
1569 unsigned int present;
1570
1571 present = snd_hda_codec_read(codec, 0x17, 0,
1572 AC_VERB_GET_PIN_SENSE, 0) &
1573 AC_PINSENSE_PRESENCE;
1574 snd_hda_codec_write(codec, 0x14, 0,
1575 AC_VERB_SET_CONNECT_SEL,
1576 present ? 0x01 : 0x00);
1577}
1578
1579/* switch the current ADC according to the jack state */
1580static void cxt5051_portc_automic(struct hda_codec *codec)
1581{
1582 struct conexant_spec *spec = codec->spec;
1583 unsigned int present;
1584 hda_nid_t new_adc;
1585
1586 present = snd_hda_codec_read(codec, 0x18, 0,
1587 AC_VERB_GET_PIN_SENSE, 0) &
1588 AC_PINSENSE_PRESENCE;
1589 if (present)
1590 spec->cur_adc_idx = 1;
1591 else
1592 spec->cur_adc_idx = 0;
1593 new_adc = spec->adc_nids[spec->cur_adc_idx];
1594 if (spec->cur_adc && spec->cur_adc != new_adc) {
1595 /* stream is running, let's swap the current ADC */
Takashi Iwai888afa12008-03-18 09:57:50 +01001596 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001597 spec->cur_adc = new_adc;
1598 snd_hda_codec_setup_stream(codec, new_adc,
1599 spec->cur_adc_stream_tag, 0,
1600 spec->cur_adc_format);
1601 }
1602}
1603
1604/* mute internal speaker if HP is plugged */
1605static void cxt5051_hp_automute(struct hda_codec *codec)
1606{
1607 struct conexant_spec *spec = codec->spec;
1608
1609 spec->hp_present = snd_hda_codec_read(codec, 0x16, 0,
1610 AC_VERB_GET_PIN_SENSE, 0) &
1611 AC_PINSENSE_PRESENCE;
1612 cxt5051_update_speaker(codec);
1613}
1614
1615/* unsolicited event for HP jack sensing */
1616static void cxt5051_hp_unsol_event(struct hda_codec *codec,
1617 unsigned int res)
1618{
1619 switch (res >> 26) {
1620 case CONEXANT_HP_EVENT:
1621 cxt5051_hp_automute(codec);
1622 break;
1623 case CXT5051_PORTB_EVENT:
1624 cxt5051_portb_automic(codec);
1625 break;
1626 case CXT5051_PORTC_EVENT:
1627 cxt5051_portc_automic(codec);
1628 break;
1629 }
1630}
1631
1632static struct snd_kcontrol_new cxt5051_mixers[] = {
1633 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1634 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1635 HDA_CODEC_VOLUME("External Mic Volume", 0x14, 0x01, HDA_INPUT),
1636 HDA_CODEC_MUTE("External Mic Switch", 0x14, 0x01, HDA_INPUT),
1637 HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT),
1638 HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT),
1639 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1640 {
1641 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1642 .name = "Master Playback Switch",
1643 .info = cxt_eapd_info,
1644 .get = cxt_eapd_get,
1645 .put = cxt5051_hp_master_sw_put,
1646 .private_value = 0x1a,
1647 },
1648
1649 {}
1650};
1651
1652static struct snd_kcontrol_new cxt5051_hp_mixers[] = {
1653 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1654 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1655 HDA_CODEC_VOLUME("External Mic Volume", 0x15, 0x00, HDA_INPUT),
1656 HDA_CODEC_MUTE("External Mic Switch", 0x15, 0x00, HDA_INPUT),
1657 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1658 {
1659 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1660 .name = "Master Playback Switch",
1661 .info = cxt_eapd_info,
1662 .get = cxt_eapd_get,
1663 .put = cxt5051_hp_master_sw_put,
1664 .private_value = 0x1a,
1665 },
1666
1667 {}
1668};
1669
1670static struct hda_verb cxt5051_init_verbs[] = {
1671 /* Line in, Mic */
1672 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1673 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1674 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1675 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1676 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1677 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1678 /* SPK */
1679 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1680 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1681 /* HP, Amp */
1682 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1683 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1684 /* DAC1 */
1685 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1686 /* Record selector: Int mic */
1687 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1688 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1689 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1690 /* SPDIF route: PCM */
1691 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1692 /* EAPD */
1693 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1694 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1695 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1696 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT},
1697 { } /* end */
1698};
1699
1700/* initialize jack-sensing, too */
1701static int cxt5051_init(struct hda_codec *codec)
1702{
1703 conexant_init(codec);
1704 if (codec->patch_ops.unsol_event) {
1705 cxt5051_hp_automute(codec);
1706 cxt5051_portb_automic(codec);
1707 cxt5051_portc_automic(codec);
1708 }
1709 return 0;
1710}
1711
1712
1713enum {
1714 CXT5051_LAPTOP, /* Laptops w/ EAPD support */
1715 CXT5051_HP, /* no docking */
1716 CXT5051_MODELS
1717};
1718
1719static const char *cxt5051_models[CXT5051_MODELS] = {
1720 [CXT5051_LAPTOP] = "laptop",
1721 [CXT5051_HP] = "hp",
1722};
1723
1724static struct snd_pci_quirk cxt5051_cfg_tbl[] = {
1725 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
1726 CXT5051_LAPTOP),
1727 SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP),
1728 {}
1729};
1730
1731static int patch_cxt5051(struct hda_codec *codec)
1732{
1733 struct conexant_spec *spec;
1734 int board_config;
1735
1736 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1737 if (!spec)
1738 return -ENOMEM;
1739 mutex_init(&spec->amp_mutex);
1740 codec->spec = spec;
1741
1742 codec->patch_ops = conexant_patch_ops;
1743 codec->patch_ops.init = cxt5051_init;
1744
1745 spec->multiout.max_channels = 2;
1746 spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids);
1747 spec->multiout.dac_nids = cxt5051_dac_nids;
1748 spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT;
1749 spec->num_adc_nids = 1; /* not 2; via auto-mic switch */
1750 spec->adc_nids = cxt5051_adc_nids;
1751 spec->num_mixers = 1;
1752 spec->mixers[0] = cxt5051_mixers;
1753 spec->num_init_verbs = 1;
1754 spec->init_verbs[0] = cxt5051_init_verbs;
1755 spec->spdif_route = 0;
1756 spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes);
1757 spec->channel_mode = cxt5051_modes;
1758 spec->cur_adc = 0;
1759 spec->cur_adc_idx = 0;
1760
1761 board_config = snd_hda_check_board_config(codec, CXT5051_MODELS,
1762 cxt5051_models,
1763 cxt5051_cfg_tbl);
1764 switch (board_config) {
1765 case CXT5051_HP:
1766 codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
1767 spec->mixers[0] = cxt5051_hp_mixers;
1768 break;
1769 default:
1770 case CXT5051_LAPTOP:
1771 codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
1772 break;
1773 }
1774
1775 return 0;
1776}
1777
1778
1779/*
1780 */
1781
Tobin Davisc9b443d2006-11-14 12:13:39 +01001782struct hda_codec_preset snd_hda_preset_conexant[] = {
Tobin Davis82f30042007-02-13 12:45:44 +01001783 { .id = 0x14f15045, .name = "CX20549 (Venice)",
1784 .patch = patch_cxt5045 },
1785 { .id = 0x14f15047, .name = "CX20551 (Waikiki)",
1786 .patch = patch_cxt5047 },
Takashi Iwai461e2c72008-01-25 11:35:17 +01001787 { .id = 0x14f15051, .name = "CX20561 (Hermosa)",
1788 .patch = patch_cxt5051 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01001789 {} /* terminator */
1790};