blob: 9139558950941ed7dcbc583e189b00d96abf06dc [file] [log] [blame]
Takashi Iwaie5f14242009-07-01 18:11:44 +02001/*
2 * HD audio interface patch for Cirrus Logic CS420x chip
3 *
4 * Copyright (c) 2009 Takashi Iwai <tiwai@suse.de>
5 *
6 * This driver is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This driver is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <linux/init.h>
22#include <linux/delay.h>
23#include <linux/slab.h>
24#include <linux/pci.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040025#include <linux/module.h>
Takashi Iwaie5f14242009-07-01 18:11:44 +020026#include <sound/core.h>
27#include "hda_codec.h"
28#include "hda_local.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020029#include "hda_jack.h"
Tim Howe56487c22011-07-22 16:41:00 -050030#include <sound/tlv.h>
Takashi Iwaie5f14242009-07-01 18:11:44 +020031
32/*
33 */
34
35struct cs_spec {
Takashi Iwaia6bae202009-07-06 15:15:22 +020036 int board_config;
Takashi Iwaie5f14242009-07-01 18:11:44 +020037 struct auto_pin_cfg autocfg;
38 struct hda_multi_out multiout;
39 struct snd_kcontrol *vmaster_sw;
40 struct snd_kcontrol *vmaster_vol;
41
42 hda_nid_t dac_nid[AUTO_CFG_MAX_OUTS];
43 hda_nid_t slave_dig_outs[2];
44
45 unsigned int input_idx[AUTO_PIN_LAST];
46 unsigned int capsrc_idx[AUTO_PIN_LAST];
47 hda_nid_t adc_nid[AUTO_PIN_LAST];
48 unsigned int adc_idx[AUTO_PIN_LAST];
49 unsigned int num_inputs;
50 unsigned int cur_input;
51 unsigned int automic_idx;
52 hda_nid_t cur_adc;
53 unsigned int cur_adc_stream_tag;
54 unsigned int cur_adc_format;
55 hda_nid_t dig_in;
56
Takashi Iwaic42d4782011-05-02 11:36:09 +020057 const struct hda_bind_ctls *capture_bind[2];
Takashi Iwaie5f14242009-07-01 18:11:44 +020058
Takashi Iwaied208252009-07-07 09:04:26 +020059 unsigned int gpio_mask;
60 unsigned int gpio_dir;
61 unsigned int gpio_data;
Takashi Iwai6dfeb7032011-11-22 20:00:31 +010062 unsigned int gpio_eapd_hp; /* EAPD GPIO bit for headphones */
63 unsigned int gpio_eapd_speaker; /* EAPD GPIO bit for speakers */
Takashi Iwaied208252009-07-07 09:04:26 +020064
Takashi Iwaie5f14242009-07-01 18:11:44 +020065 struct hda_pcm pcm_rec[2]; /* PCM information */
66
67 unsigned int hp_detect:1;
68 unsigned int mic_detect:1;
Tim Howe56487c22011-07-22 16:41:00 -050069 /* CS421x */
70 unsigned int spdif_detect:1;
71 unsigned int sense_b:1;
72 hda_nid_t vendor_nid;
73 struct hda_input_mux input_mux;
74 unsigned int last_input;
Takashi Iwaie5f14242009-07-01 18:11:44 +020075};
76
Tim Howe56487c22011-07-22 16:41:00 -050077/* available models with CS420x */
Takashi Iwaia6bae202009-07-06 15:15:22 +020078enum {
Vince Weaver4e7d7c62010-09-22 17:31:37 -040079 CS420X_MBP53,
Takashi Iwaia6bae202009-07-06 15:15:22 +020080 CS420X_MBP55,
Rafael Avila de Espindola1a5ba2e2009-12-22 07:59:37 +010081 CS420X_IMAC27,
Takashi Iwai6dfeb7032011-11-22 20:00:31 +010082 CS420X_APPLE,
Takashi Iwaia6bae202009-07-06 15:15:22 +020083 CS420X_AUTO,
84 CS420X_MODELS
85};
86
Tim Howe56487c22011-07-22 16:41:00 -050087/* CS421x boards */
88enum {
89 CS421X_CDB4210,
90 CS421X_MODELS
91};
92
Takashi Iwai40c20fa2009-07-06 13:00:57 +020093/* Vendor-specific processing widget */
94#define CS420X_VENDOR_NID 0x11
95#define CS_DIG_OUT1_PIN_NID 0x10
96#define CS_DIG_OUT2_PIN_NID 0x15
97#define CS_DMIC1_PIN_NID 0x12
98#define CS_DMIC2_PIN_NID 0x0e
99
100/* coef indices */
101#define IDX_SPDIF_STAT 0x0000
102#define IDX_SPDIF_CTL 0x0001
103#define IDX_ADC_CFG 0x0002
104/* SZC bitmask, 4 modes below:
105 * 0 = immediate,
106 * 1 = digital immediate, analog zero-cross
107 * 2 = digtail & analog soft-ramp
108 * 3 = digital soft-ramp, analog zero-cross
109 */
110#define CS_COEF_ADC_SZC_MASK (3 << 0)
111#define CS_COEF_ADC_MIC_SZC_MODE (3 << 0) /* SZC setup for mic */
112#define CS_COEF_ADC_LI_SZC_MODE (3 << 0) /* SZC setup for line-in */
113/* PGA mode: 0 = differential, 1 = signle-ended */
114#define CS_COEF_ADC_MIC_PGA_MODE (1 << 5) /* PGA setup for mic */
115#define CS_COEF_ADC_LI_PGA_MODE (1 << 6) /* PGA setup for line-in */
116#define IDX_DAC_CFG 0x0003
117/* SZC bitmask, 4 modes below:
118 * 0 = Immediate
119 * 1 = zero-cross
120 * 2 = soft-ramp
121 * 3 = soft-ramp on zero-cross
122 */
123#define CS_COEF_DAC_HP_SZC_MODE (3 << 0) /* nid 0x02 */
124#define CS_COEF_DAC_LO_SZC_MODE (3 << 2) /* nid 0x03 */
125#define CS_COEF_DAC_SPK_SZC_MODE (3 << 4) /* nid 0x04 */
126
127#define IDX_BEEP_CFG 0x0004
128/* 0x0008 - test reg key */
129/* 0x0009 - 0x0014 -> 12 test regs */
130/* 0x0015 - visibility reg */
131
Tim Howe56487c22011-07-22 16:41:00 -0500132/*
133 * Cirrus Logic CS4210
134 *
135 * 1 DAC => HP(sense) / Speakers,
136 * 1 ADC <= LineIn(sense) / MicIn / DMicIn,
137 * 1 SPDIF OUT => SPDIF Trasmitter(sense)
138*/
139#define CS4210_DAC_NID 0x02
140#define CS4210_ADC_NID 0x03
141#define CS421X_VENDOR_NID 0x0B
142#define CS421X_DMIC_PIN_NID 0x09 /* Port E */
143#define CS421X_SPDIF_PIN_NID 0x0A /* Port H */
144
145#define CS421X_IDX_DEV_CFG 0x01
146#define CS421X_IDX_ADC_CFG 0x02
147#define CS421X_IDX_DAC_CFG 0x03
148#define CS421X_IDX_SPK_CTL 0x04
149
150#define SPDIF_EVENT 0x04
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200151
Takashi Iwai277a57c2009-07-08 12:42:08 +0200152static inline int cs_vendor_coef_get(struct hda_codec *codec, unsigned int idx)
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200153{
Tim Howe56487c22011-07-22 16:41:00 -0500154 struct cs_spec *spec = codec->spec;
155 snd_hda_codec_write(codec, spec->vendor_nid, 0,
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200156 AC_VERB_SET_COEF_INDEX, idx);
Tim Howe56487c22011-07-22 16:41:00 -0500157 return snd_hda_codec_read(codec, spec->vendor_nid, 0,
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200158 AC_VERB_GET_PROC_COEF, 0);
159}
160
Takashi Iwai277a57c2009-07-08 12:42:08 +0200161static inline void cs_vendor_coef_set(struct hda_codec *codec, unsigned int idx,
162 unsigned int coef)
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200163{
Tim Howe56487c22011-07-22 16:41:00 -0500164 struct cs_spec *spec = codec->spec;
165 snd_hda_codec_write(codec, spec->vendor_nid, 0,
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200166 AC_VERB_SET_COEF_INDEX, idx);
Tim Howe56487c22011-07-22 16:41:00 -0500167 snd_hda_codec_write(codec, spec->vendor_nid, 0,
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200168 AC_VERB_SET_PROC_COEF, coef);
169}
170
171
Takashi Iwaie5f14242009-07-01 18:11:44 +0200172#define HP_EVENT 1
173#define MIC_EVENT 2
174
175/*
176 * PCM callbacks
177 */
178static int cs_playback_pcm_open(struct hda_pcm_stream *hinfo,
179 struct hda_codec *codec,
180 struct snd_pcm_substream *substream)
181{
182 struct cs_spec *spec = codec->spec;
183 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
184 hinfo);
185}
186
187static int cs_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
188 struct hda_codec *codec,
189 unsigned int stream_tag,
190 unsigned int format,
191 struct snd_pcm_substream *substream)
192{
193 struct cs_spec *spec = codec->spec;
194 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
195 stream_tag, format, substream);
196}
197
198static int cs_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
199 struct hda_codec *codec,
200 struct snd_pcm_substream *substream)
201{
202 struct cs_spec *spec = codec->spec;
203 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
204}
205
206/*
207 * Digital out
208 */
209static int cs_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
210 struct hda_codec *codec,
211 struct snd_pcm_substream *substream)
212{
213 struct cs_spec *spec = codec->spec;
214 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
215}
216
217static int cs_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
218 struct hda_codec *codec,
219 struct snd_pcm_substream *substream)
220{
221 struct cs_spec *spec = codec->spec;
222 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
223}
224
225static int cs_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
226 struct hda_codec *codec,
227 unsigned int stream_tag,
228 unsigned int format,
229 struct snd_pcm_substream *substream)
230{
231 struct cs_spec *spec = codec->spec;
232 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout, stream_tag,
233 format, substream);
234}
235
236static int cs_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
237 struct hda_codec *codec,
238 struct snd_pcm_substream *substream)
239{
240 struct cs_spec *spec = codec->spec;
241 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
242}
243
Takashi Iwai05ee7962011-11-16 18:05:11 +0100244static void cs_update_input_select(struct hda_codec *codec)
245{
246 struct cs_spec *spec = codec->spec;
247 if (spec->cur_adc)
248 snd_hda_codec_write(codec, spec->cur_adc, 0,
249 AC_VERB_SET_CONNECT_SEL,
250 spec->adc_idx[spec->cur_input]);
251}
252
Takashi Iwaie5f14242009-07-01 18:11:44 +0200253/*
254 * Analog capture
255 */
256static int cs_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
257 struct hda_codec *codec,
258 unsigned int stream_tag,
259 unsigned int format,
260 struct snd_pcm_substream *substream)
261{
262 struct cs_spec *spec = codec->spec;
263 spec->cur_adc = spec->adc_nid[spec->cur_input];
264 spec->cur_adc_stream_tag = stream_tag;
265 spec->cur_adc_format = format;
Takashi Iwai05ee7962011-11-16 18:05:11 +0100266 cs_update_input_select(codec);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200267 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
268 return 0;
269}
270
271static int cs_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
272 struct hda_codec *codec,
273 struct snd_pcm_substream *substream)
274{
275 struct cs_spec *spec = codec->spec;
276 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
277 spec->cur_adc = 0;
278 return 0;
279}
280
281/*
282 */
Takashi Iwaic42d4782011-05-02 11:36:09 +0200283static const struct hda_pcm_stream cs_pcm_analog_playback = {
Takashi Iwaie5f14242009-07-01 18:11:44 +0200284 .substreams = 1,
285 .channels_min = 2,
286 .channels_max = 2,
287 .ops = {
288 .open = cs_playback_pcm_open,
289 .prepare = cs_playback_pcm_prepare,
290 .cleanup = cs_playback_pcm_cleanup
291 },
292};
293
Takashi Iwaic42d4782011-05-02 11:36:09 +0200294static const struct hda_pcm_stream cs_pcm_analog_capture = {
Takashi Iwaie5f14242009-07-01 18:11:44 +0200295 .substreams = 1,
296 .channels_min = 2,
297 .channels_max = 2,
298 .ops = {
299 .prepare = cs_capture_pcm_prepare,
300 .cleanup = cs_capture_pcm_cleanup
301 },
302};
303
Takashi Iwaic42d4782011-05-02 11:36:09 +0200304static const struct hda_pcm_stream cs_pcm_digital_playback = {
Takashi Iwaie5f14242009-07-01 18:11:44 +0200305 .substreams = 1,
306 .channels_min = 2,
307 .channels_max = 2,
308 .ops = {
309 .open = cs_dig_playback_pcm_open,
310 .close = cs_dig_playback_pcm_close,
311 .prepare = cs_dig_playback_pcm_prepare,
312 .cleanup = cs_dig_playback_pcm_cleanup
313 },
314};
315
Takashi Iwaic42d4782011-05-02 11:36:09 +0200316static const struct hda_pcm_stream cs_pcm_digital_capture = {
Takashi Iwaie5f14242009-07-01 18:11:44 +0200317 .substreams = 1,
318 .channels_min = 2,
319 .channels_max = 2,
320};
321
322static int cs_build_pcms(struct hda_codec *codec)
323{
324 struct cs_spec *spec = codec->spec;
325 struct hda_pcm *info = spec->pcm_rec;
326
327 codec->pcm_info = info;
328 codec->num_pcms = 0;
329
330 info->name = "Cirrus Analog";
331 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = cs_pcm_analog_playback;
332 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->dac_nid[0];
333 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
334 spec->multiout.max_channels;
335 info->stream[SNDRV_PCM_STREAM_CAPTURE] = cs_pcm_analog_capture;
Takashi Iwaie5f14242009-07-01 18:11:44 +0200336 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
337 spec->adc_nid[spec->cur_input];
338 codec->num_pcms++;
339
340 if (!spec->multiout.dig_out_nid && !spec->dig_in)
341 return 0;
342
343 info++;
344 info->name = "Cirrus Digital";
345 info->pcm_type = spec->autocfg.dig_out_type[0];
346 if (!info->pcm_type)
347 info->pcm_type = HDA_PCM_TYPE_SPDIF;
348 if (spec->multiout.dig_out_nid) {
349 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
350 cs_pcm_digital_playback;
351 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
352 spec->multiout.dig_out_nid;
353 }
354 if (spec->dig_in) {
355 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
356 cs_pcm_digital_capture;
357 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in;
358 }
359 codec->num_pcms++;
360
361 return 0;
362}
363
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200364/*
365 * parse codec topology
366 */
367
Takashi Iwaie5f14242009-07-01 18:11:44 +0200368static hda_nid_t get_dac(struct hda_codec *codec, hda_nid_t pin)
369{
370 hda_nid_t dac;
371 if (!pin)
372 return 0;
373 if (snd_hda_get_connections(codec, pin, &dac, 1) != 1)
374 return 0;
375 return dac;
376}
377
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200378static int is_ext_mic(struct hda_codec *codec, unsigned int idx)
379{
380 struct cs_spec *spec = codec->spec;
381 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaic1e0bb92010-08-30 13:05:30 +0200382 hda_nid_t pin = cfg->inputs[idx].pin;
Takashi Iwai06dec222011-05-17 10:00:16 +0200383 unsigned int val;
384 if (!is_jack_detectable(codec, pin))
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200385 return 0;
386 val = snd_hda_codec_get_pincfg(codec, pin);
Takashi Iwai99ae28b2010-09-17 14:42:34 +0200387 return (snd_hda_get_input_pin_attr(val) != INPUT_PIN_ATTR_INT);
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200388}
389
390static hda_nid_t get_adc(struct hda_codec *codec, hda_nid_t pin,
391 unsigned int *idxp)
392{
Takashi Iwai1b004d02011-08-20 09:19:59 +0200393 int i, idx;
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200394 hda_nid_t nid;
395
396 nid = codec->start_nid;
397 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200398 unsigned int type;
Takashi Iwai1682c812011-05-17 10:02:27 +0200399 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200400 if (type != AC_WID_AUD_IN)
401 continue;
Takashi Iwai1b004d02011-08-20 09:19:59 +0200402 idx = snd_hda_get_conn_index(codec, nid, pin, false);
403 if (idx >= 0) {
404 *idxp = idx;
Takashi Iwai8d087c72011-06-28 12:45:47 +0200405 return nid;
Takashi Iwai1b004d02011-08-20 09:19:59 +0200406 }
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200407 }
408 return 0;
409}
410
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200411static int is_active_pin(struct hda_codec *codec, hda_nid_t nid)
412{
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200413 unsigned int val;
414 val = snd_hda_codec_get_pincfg(codec, nid);
415 return (get_defcfg_connect(val) != AC_JACK_PORT_NONE);
416}
417
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200418static int parse_output(struct hda_codec *codec)
419{
420 struct cs_spec *spec = codec->spec;
421 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai277a57c2009-07-08 12:42:08 +0200422 int i, extra_nids;
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200423 hda_nid_t dac;
424
425 for (i = 0; i < cfg->line_outs; i++) {
426 dac = get_dac(codec, cfg->line_out_pins[i]);
427 if (!dac)
428 break;
429 spec->dac_nid[i] = dac;
430 }
431 spec->multiout.num_dacs = i;
432 spec->multiout.dac_nids = spec->dac_nid;
433 spec->multiout.max_channels = i * 2;
434
435 /* add HP and speakers */
436 extra_nids = 0;
437 for (i = 0; i < cfg->hp_outs; i++) {
438 dac = get_dac(codec, cfg->hp_pins[i]);
439 if (!dac)
440 break;
441 if (!i)
442 spec->multiout.hp_nid = dac;
443 else
444 spec->multiout.extra_out_nid[extra_nids++] = dac;
445 }
446 for (i = 0; i < cfg->speaker_outs; i++) {
447 dac = get_dac(codec, cfg->speaker_pins[i]);
448 if (!dac)
449 break;
450 spec->multiout.extra_out_nid[extra_nids++] = dac;
451 }
452
453 if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
454 cfg->speaker_outs = cfg->line_outs;
455 memcpy(cfg->speaker_pins, cfg->line_out_pins,
456 sizeof(cfg->speaker_pins));
457 cfg->line_outs = 0;
458 }
459
460 return 0;
461}
462
463static int parse_input(struct hda_codec *codec)
464{
465 struct cs_spec *spec = codec->spec;
466 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai277a57c2009-07-08 12:42:08 +0200467 int i;
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200468
Takashi Iwaic1e0bb92010-08-30 13:05:30 +0200469 for (i = 0; i < cfg->num_inputs; i++) {
470 hda_nid_t pin = cfg->inputs[i].pin;
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200471 spec->input_idx[spec->num_inputs] = i;
472 spec->capsrc_idx[i] = spec->num_inputs++;
473 spec->cur_input = i;
474 spec->adc_nid[i] = get_adc(codec, pin, &spec->adc_idx[i]);
475 }
476 if (!spec->num_inputs)
477 return 0;
478
479 /* check whether the automatic mic switch is available */
480 if (spec->num_inputs == 2 &&
Takashi Iwai86e29592010-09-09 14:50:17 +0200481 cfg->inputs[0].type == AUTO_PIN_MIC &&
482 cfg->inputs[1].type == AUTO_PIN_MIC) {
Takashi Iwaic1e0bb92010-08-30 13:05:30 +0200483 if (is_ext_mic(codec, cfg->inputs[0].pin)) {
484 if (!is_ext_mic(codec, cfg->inputs[1].pin)) {
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200485 spec->mic_detect = 1;
Takashi Iwaic1e0bb92010-08-30 13:05:30 +0200486 spec->automic_idx = 0;
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200487 }
488 } else {
Takashi Iwaic1e0bb92010-08-30 13:05:30 +0200489 if (is_ext_mic(codec, cfg->inputs[1].pin)) {
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200490 spec->mic_detect = 1;
Takashi Iwaic1e0bb92010-08-30 13:05:30 +0200491 spec->automic_idx = 1;
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200492 }
493 }
494 }
495 return 0;
496}
497
498
499static int parse_digital_output(struct hda_codec *codec)
500{
501 struct cs_spec *spec = codec->spec;
502 struct auto_pin_cfg *cfg = &spec->autocfg;
503 hda_nid_t nid;
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200504
505 if (!cfg->dig_outs)
506 return 0;
507 if (snd_hda_get_connections(codec, cfg->dig_out_pins[0], &nid, 1) < 1)
508 return 0;
509 spec->multiout.dig_out_nid = nid;
510 spec->multiout.share_spdif = 1;
511 if (cfg->dig_outs > 1 &&
512 snd_hda_get_connections(codec, cfg->dig_out_pins[1], &nid, 1) > 0) {
513 spec->slave_dig_outs[0] = nid;
514 codec->slave_dig_outs = spec->slave_dig_outs;
515 }
516 return 0;
517}
518
519static int parse_digital_input(struct hda_codec *codec)
520{
521 struct cs_spec *spec = codec->spec;
522 struct auto_pin_cfg *cfg = &spec->autocfg;
523 int idx;
524
Takashi Iwai60e53882009-07-06 15:01:09 +0200525 if (cfg->dig_in_pin)
526 spec->dig_in = get_adc(codec, cfg->dig_in_pin, &idx);
527 return 0;
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200528}
529
530/*
531 * create mixer controls
532 */
533
Takashi Iwaiea734962011-01-17 11:29:34 +0100534static const char * const dir_sfx[2] = { "Playback", "Capture" };
Takashi Iwaie5f14242009-07-01 18:11:44 +0200535
536static int add_mute(struct hda_codec *codec, const char *name, int index,
537 unsigned int pval, int dir, struct snd_kcontrol **kctlp)
538{
Takashi Iwaib4dabfc2009-07-07 09:05:07 +0200539 char tmp[44];
Takashi Iwaie5f14242009-07-01 18:11:44 +0200540 struct snd_kcontrol_new knew =
541 HDA_CODEC_MUTE_IDX(tmp, index, 0, 0, HDA_OUTPUT);
542 knew.private_value = pval;
543 snprintf(tmp, sizeof(tmp), "%s %s Switch", name, dir_sfx[dir]);
544 *kctlp = snd_ctl_new1(&knew, codec);
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +0100545 (*kctlp)->id.subdevice = HDA_SUBDEV_AMP_FLAG;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +0100546 return snd_hda_ctl_add(codec, 0, *kctlp);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200547}
548
549static int add_volume(struct hda_codec *codec, const char *name,
550 int index, unsigned int pval, int dir,
551 struct snd_kcontrol **kctlp)
552{
David Henningsson2e1210b2011-09-14 13:22:54 +0200553 char tmp[44];
Takashi Iwaie5f14242009-07-01 18:11:44 +0200554 struct snd_kcontrol_new knew =
555 HDA_CODEC_VOLUME_IDX(tmp, index, 0, 0, HDA_OUTPUT);
556 knew.private_value = pval;
557 snprintf(tmp, sizeof(tmp), "%s %s Volume", name, dir_sfx[dir]);
558 *kctlp = snd_ctl_new1(&knew, codec);
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +0100559 (*kctlp)->id.subdevice = HDA_SUBDEV_AMP_FLAG;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +0100560 return snd_hda_ctl_add(codec, 0, *kctlp);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200561}
562
563static void fix_volume_caps(struct hda_codec *codec, hda_nid_t dac)
564{
565 unsigned int caps;
566
567 /* set the upper-limit for mixer amp to 0dB */
568 caps = query_amp_caps(codec, dac, HDA_OUTPUT);
569 caps &= ~(0x7f << AC_AMPCAP_NUM_STEPS_SHIFT);
570 caps |= ((caps >> AC_AMPCAP_OFFSET_SHIFT) & 0x7f)
571 << AC_AMPCAP_NUM_STEPS_SHIFT;
572 snd_hda_override_amp_caps(codec, dac, HDA_OUTPUT, caps);
573}
574
575static int add_vmaster(struct hda_codec *codec, hda_nid_t dac)
576{
577 struct cs_spec *spec = codec->spec;
578 unsigned int tlv[4];
579 int err;
580
581 spec->vmaster_sw =
582 snd_ctl_make_virtual_master("Master Playback Switch", NULL);
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +0100583 err = snd_hda_ctl_add(codec, dac, spec->vmaster_sw);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200584 if (err < 0)
585 return err;
586
587 snd_hda_set_vmaster_tlv(codec, dac, HDA_OUTPUT, tlv);
588 spec->vmaster_vol =
589 snd_ctl_make_virtual_master("Master Playback Volume", tlv);
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +0100590 err = snd_hda_ctl_add(codec, dac, spec->vmaster_vol);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200591 if (err < 0)
592 return err;
593 return 0;
594}
595
596static int add_output(struct hda_codec *codec, hda_nid_t dac, int idx,
597 int num_ctls, int type)
598{
599 struct cs_spec *spec = codec->spec;
600 const char *name;
601 int err, index;
602 struct snd_kcontrol *kctl;
Takashi Iwaic42d4782011-05-02 11:36:09 +0200603 static const char * const speakers[] = {
Takashi Iwaie5f14242009-07-01 18:11:44 +0200604 "Front Speaker", "Surround Speaker", "Bass Speaker"
605 };
Takashi Iwaic42d4782011-05-02 11:36:09 +0200606 static const char * const line_outs[] = {
Takashi Iwaie5f14242009-07-01 18:11:44 +0200607 "Front Line-Out", "Surround Line-Out", "Bass Line-Out"
608 };
609
610 fix_volume_caps(codec, dac);
611 if (!spec->vmaster_sw) {
612 err = add_vmaster(codec, dac);
613 if (err < 0)
614 return err;
615 }
616
617 index = 0;
618 switch (type) {
619 case AUTO_PIN_HP_OUT:
620 name = "Headphone";
621 index = idx;
622 break;
623 case AUTO_PIN_SPEAKER_OUT:
624 if (num_ctls > 1)
625 name = speakers[idx];
626 else
627 name = "Speaker";
628 break;
629 default:
630 if (num_ctls > 1)
631 name = line_outs[idx];
632 else
633 name = "Line-Out";
634 break;
635 }
636
637 err = add_mute(codec, name, index,
638 HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT), 0, &kctl);
639 if (err < 0)
640 return err;
641 err = snd_ctl_add_slave(spec->vmaster_sw, kctl);
642 if (err < 0)
643 return err;
644
645 err = add_volume(codec, name, index,
646 HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT), 0, &kctl);
647 if (err < 0)
648 return err;
649 err = snd_ctl_add_slave(spec->vmaster_vol, kctl);
650 if (err < 0)
651 return err;
652
653 return 0;
654}
655
656static int build_output(struct hda_codec *codec)
657{
658 struct cs_spec *spec = codec->spec;
659 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200660 int i, err;
Takashi Iwaie5f14242009-07-01 18:11:44 +0200661
662 for (i = 0; i < cfg->line_outs; i++) {
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200663 err = add_output(codec, get_dac(codec, cfg->line_out_pins[i]),
664 i, cfg->line_outs, cfg->line_out_type);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200665 if (err < 0)
666 return err;
667 }
Takashi Iwaie5f14242009-07-01 18:11:44 +0200668 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200669 err = add_output(codec, get_dac(codec, cfg->hp_pins[i]),
670 i, cfg->hp_outs, AUTO_PIN_HP_OUT);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200671 if (err < 0)
672 return err;
673 }
674 for (i = 0; i < cfg->speaker_outs; i++) {
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200675 err = add_output(codec, get_dac(codec, cfg->speaker_pins[i]),
676 i, cfg->speaker_outs, AUTO_PIN_SPEAKER_OUT);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200677 if (err < 0)
678 return err;
679 }
Takashi Iwaie5f14242009-07-01 18:11:44 +0200680 return 0;
681}
682
683/*
684 */
685
Takashi Iwaic42d4782011-05-02 11:36:09 +0200686static const struct snd_kcontrol_new cs_capture_ctls[] = {
Takashi Iwaie5f14242009-07-01 18:11:44 +0200687 HDA_BIND_SW("Capture Switch", 0),
688 HDA_BIND_VOL("Capture Volume", 0),
689};
690
Takashi Iwaiea359292009-07-06 12:58:59 +0200691static int change_cur_input(struct hda_codec *codec, unsigned int idx,
692 int force)
Takashi Iwaie5f14242009-07-01 18:11:44 +0200693{
694 struct cs_spec *spec = codec->spec;
Takashi Iwaie5f14242009-07-01 18:11:44 +0200695
Takashi Iwaiea359292009-07-06 12:58:59 +0200696 if (spec->cur_input == idx && !force)
Takashi Iwaie5f14242009-07-01 18:11:44 +0200697 return 0;
698 if (spec->cur_adc && spec->cur_adc != spec->adc_nid[idx]) {
699 /* stream is running, let's swap the current ADC */
Takashi Iwaif0cea792010-08-13 11:56:53 +0200700 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200701 spec->cur_adc = spec->adc_nid[idx];
702 snd_hda_codec_setup_stream(codec, spec->cur_adc,
703 spec->cur_adc_stream_tag, 0,
704 spec->cur_adc_format);
705 }
Takashi Iwaie5f14242009-07-01 18:11:44 +0200706 spec->cur_input = idx;
Takashi Iwai05ee7962011-11-16 18:05:11 +0100707 cs_update_input_select(codec);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200708 return 1;
709}
710
711static int cs_capture_source_info(struct snd_kcontrol *kcontrol,
712 struct snd_ctl_elem_info *uinfo)
713{
714 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
715 struct cs_spec *spec = codec->spec;
Takashi Iwai10a20af2010-09-09 16:28:02 +0200716 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaie5f14242009-07-01 18:11:44 +0200717 unsigned int idx;
718
719 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
720 uinfo->count = 1;
721 uinfo->value.enumerated.items = spec->num_inputs;
722 if (uinfo->value.enumerated.item >= spec->num_inputs)
723 uinfo->value.enumerated.item = spec->num_inputs - 1;
724 idx = spec->input_idx[uinfo->value.enumerated.item];
Takashi Iwai201e06f2011-11-16 15:33:26 +0100725 snd_hda_get_pin_label(codec, cfg->inputs[idx].pin, cfg,
726 uinfo->value.enumerated.name,
727 sizeof(uinfo->value.enumerated.name), NULL);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200728 return 0;
729}
730
731static int cs_capture_source_get(struct snd_kcontrol *kcontrol,
732 struct snd_ctl_elem_value *ucontrol)
733{
734 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
735 struct cs_spec *spec = codec->spec;
736 ucontrol->value.enumerated.item[0] = spec->capsrc_idx[spec->cur_input];
737 return 0;
738}
739
740static int cs_capture_source_put(struct snd_kcontrol *kcontrol,
741 struct snd_ctl_elem_value *ucontrol)
742{
743 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
744 struct cs_spec *spec = codec->spec;
745 unsigned int idx = ucontrol->value.enumerated.item[0];
746
747 if (idx >= spec->num_inputs)
748 return -EINVAL;
749 idx = spec->input_idx[idx];
Takashi Iwaiea359292009-07-06 12:58:59 +0200750 return change_cur_input(codec, idx, 0);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200751}
752
Takashi Iwaic42d4782011-05-02 11:36:09 +0200753static const struct snd_kcontrol_new cs_capture_source = {
Takashi Iwaie5f14242009-07-01 18:11:44 +0200754 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
755 .name = "Capture Source",
756 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
757 .info = cs_capture_source_info,
758 .get = cs_capture_source_get,
759 .put = cs_capture_source_put,
760};
761
Takashi Iwaic42d4782011-05-02 11:36:09 +0200762static const struct hda_bind_ctls *make_bind_capture(struct hda_codec *codec,
Takashi Iwaie5f14242009-07-01 18:11:44 +0200763 struct hda_ctl_ops *ops)
764{
765 struct cs_spec *spec = codec->spec;
766 struct hda_bind_ctls *bind;
767 int i, n;
768
769 bind = kzalloc(sizeof(*bind) + sizeof(long) * (spec->num_inputs + 1),
770 GFP_KERNEL);
771 if (!bind)
772 return NULL;
773 bind->ops = ops;
774 n = 0;
775 for (i = 0; i < AUTO_PIN_LAST; i++) {
776 if (!spec->adc_nid[i])
777 continue;
778 bind->values[n++] =
779 HDA_COMPOSE_AMP_VAL(spec->adc_nid[i], 3,
780 spec->adc_idx[i], HDA_INPUT);
781 }
782 return bind;
783}
784
Takashi Iwai6a929342010-10-11 15:16:20 +0200785/* add a (input-boost) volume control to the given input pin */
786static int add_input_volume_control(struct hda_codec *codec,
787 struct auto_pin_cfg *cfg,
788 int item)
789{
790 hda_nid_t pin = cfg->inputs[item].pin;
791 u32 caps;
792 const char *label;
793 struct snd_kcontrol *kctl;
794
795 if (!(get_wcaps(codec, pin) & AC_WCAP_IN_AMP))
796 return 0;
797 caps = query_amp_caps(codec, pin, HDA_INPUT);
798 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
799 if (caps <= 1)
800 return 0;
801 label = hda_get_autocfg_input_label(codec, cfg, item);
802 return add_volume(codec, label, 0,
803 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_INPUT), 1, &kctl);
804}
805
Takashi Iwaie5f14242009-07-01 18:11:44 +0200806static int build_input(struct hda_codec *codec)
807{
808 struct cs_spec *spec = codec->spec;
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200809 int i, err;
Takashi Iwaie5f14242009-07-01 18:11:44 +0200810
Takashi Iwaie5f14242009-07-01 18:11:44 +0200811 if (!spec->num_inputs)
812 return 0;
813
Takashi Iwaie5f14242009-07-01 18:11:44 +0200814 /* make bind-capture */
815 spec->capture_bind[0] = make_bind_capture(codec, &snd_hda_bind_sw);
816 spec->capture_bind[1] = make_bind_capture(codec, &snd_hda_bind_vol);
817 for (i = 0; i < 2; i++) {
818 struct snd_kcontrol *kctl;
Takashi Iwai21949f02009-12-23 08:31:59 +0100819 int n;
Takashi Iwaie5f14242009-07-01 18:11:44 +0200820 if (!spec->capture_bind[i])
821 return -ENOMEM;
822 kctl = snd_ctl_new1(&cs_capture_ctls[i], codec);
823 if (!kctl)
824 return -ENOMEM;
825 kctl->private_value = (long)spec->capture_bind[i];
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +0100826 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200827 if (err < 0)
828 return err;
Takashi Iwai21949f02009-12-23 08:31:59 +0100829 for (n = 0; n < AUTO_PIN_LAST; n++) {
830 if (!spec->adc_nid[n])
831 continue;
Brian J. Tarricone8dd34ab2010-05-02 17:32:10 -0700832 err = snd_hda_add_nid(codec, kctl, 0, spec->adc_nid[n]);
Takashi Iwai21949f02009-12-23 08:31:59 +0100833 if (err < 0)
834 return err;
835 }
Takashi Iwaie5f14242009-07-01 18:11:44 +0200836 }
837
838 if (spec->num_inputs > 1 && !spec->mic_detect) {
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +0100839 err = snd_hda_ctl_add(codec, 0,
Takashi Iwaie5f14242009-07-01 18:11:44 +0200840 snd_ctl_new1(&cs_capture_source, codec));
841 if (err < 0)
842 return err;
843 }
844
Takashi Iwai6a929342010-10-11 15:16:20 +0200845 for (i = 0; i < spec->num_inputs; i++) {
846 err = add_input_volume_control(codec, &spec->autocfg, i);
847 if (err < 0)
848 return err;
849 }
850
Takashi Iwaie5f14242009-07-01 18:11:44 +0200851 return 0;
852}
853
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200854/*
855 */
856
Takashi Iwaie5f14242009-07-01 18:11:44 +0200857static int build_digital_output(struct hda_codec *codec)
858{
859 struct cs_spec *spec = codec->spec;
Takashi Iwaie5f14242009-07-01 18:11:44 +0200860 int err;
861
Takashi Iwai63b24132009-07-09 11:45:59 +0200862 if (!spec->multiout.dig_out_nid)
863 return 0;
864
Stephen Warren74b654c2011-06-01 11:14:18 -0600865 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid,
866 spec->multiout.dig_out_nid);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200867 if (err < 0)
868 return err;
869 err = snd_hda_create_spdif_share_sw(codec, &spec->multiout);
870 if (err < 0)
871 return err;
Takashi Iwaie5f14242009-07-01 18:11:44 +0200872 return 0;
873}
874
875static int build_digital_input(struct hda_codec *codec)
876{
877 struct cs_spec *spec = codec->spec;
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200878 if (spec->dig_in)
879 return snd_hda_create_spdif_in_ctls(codec, spec->dig_in);
880 return 0;
Takashi Iwaie5f14242009-07-01 18:11:44 +0200881}
882
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200883/*
884 * auto-mute and auto-mic switching
Tim Howe56487c22011-07-22 16:41:00 -0500885 * CS421x auto-output redirecting
886 * HP/SPK/SPDIF
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200887 */
888
Takashi Iwaie5f14242009-07-01 18:11:44 +0200889static void cs_automute(struct hda_codec *codec)
890{
891 struct cs_spec *spec = codec->spec;
892 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai06dec222011-05-17 10:00:16 +0200893 unsigned int hp_present;
Tim Howe56487c22011-07-22 16:41:00 -0500894 unsigned int spdif_present;
Takashi Iwaie5f14242009-07-01 18:11:44 +0200895 hda_nid_t nid;
896 int i;
897
Tim Howe56487c22011-07-22 16:41:00 -0500898 spdif_present = 0;
899 if (cfg->dig_outs) {
900 nid = cfg->dig_out_pins[0];
901 if (is_jack_detectable(codec, nid)) {
902 /*
903 TODO: SPDIF output redirect when SENSE_B is enabled.
904 Shared (SENSE_A) jack (e.g HP/mini-TOSLINK)
905 assumed.
906 */
907 if (snd_hda_jack_detect(codec, nid)
908 /* && spec->sense_b */)
909 spdif_present = 1;
910 }
911 }
912
Takashi Iwaie5f14242009-07-01 18:11:44 +0200913 hp_present = 0;
914 for (i = 0; i < cfg->hp_outs; i++) {
915 nid = cfg->hp_pins[i];
Takashi Iwai06dec222011-05-17 10:00:16 +0200916 if (!is_jack_detectable(codec, nid))
Takashi Iwaie5f14242009-07-01 18:11:44 +0200917 continue;
Wu Fengguang864f92b2009-11-18 12:38:02 +0800918 hp_present = snd_hda_jack_detect(codec, nid);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200919 if (hp_present)
920 break;
921 }
Tim Howe56487c22011-07-22 16:41:00 -0500922
923 /* mute speakers if spdif or hp jack is plugged in */
Takashi Iwaie5f14242009-07-01 18:11:44 +0200924 for (i = 0; i < cfg->speaker_outs; i++) {
925 nid = cfg->speaker_pins[i];
926 snd_hda_codec_write(codec, nid, 0,
927 AC_VERB_SET_PIN_WIDGET_CONTROL,
928 hp_present ? 0 : PIN_OUT);
Tim Howe56487c22011-07-22 16:41:00 -0500929 /* detect on spdif is specific to CS421x */
930 if (spec->vendor_nid == CS421X_VENDOR_NID) {
931 snd_hda_codec_write(codec, nid, 0,
932 AC_VERB_SET_PIN_WIDGET_CONTROL,
933 spdif_present ? 0 : PIN_OUT);
934 }
Takashi Iwaie5f14242009-07-01 18:11:44 +0200935 }
Takashi Iwai6dfeb7032011-11-22 20:00:31 +0100936 if (spec->gpio_eapd_hp) {
937 unsigned int gpio = hp_present ?
938 spec->gpio_eapd_hp : spec->gpio_eapd_speaker;
Stelian Pop3a385162009-07-30 14:44:27 +0200939 snd_hda_codec_write(codec, 0x01, 0,
940 AC_VERB_SET_GPIO_DATA, gpio);
941 }
Tim Howe56487c22011-07-22 16:41:00 -0500942
943 /* specific to CS421x */
944 if (spec->vendor_nid == CS421X_VENDOR_NID) {
945 /* mute HPs if spdif jack (SENSE_B) is present */
946 for (i = 0; i < cfg->hp_outs; i++) {
947 nid = cfg->hp_pins[i];
948 snd_hda_codec_write(codec, nid, 0,
949 AC_VERB_SET_PIN_WIDGET_CONTROL,
950 (spdif_present && spec->sense_b) ? 0 : PIN_HP);
951 }
952
953 /* SPDIF TX on/off */
954 if (cfg->dig_outs) {
955 nid = cfg->dig_out_pins[0];
956 snd_hda_codec_write(codec, nid, 0,
957 AC_VERB_SET_PIN_WIDGET_CONTROL,
958 spdif_present ? PIN_OUT : 0);
959
960 }
961 /* Update board GPIOs if neccessary ... */
962 }
Takashi Iwaie5f14242009-07-01 18:11:44 +0200963}
964
Tim Howe56487c22011-07-22 16:41:00 -0500965/*
966 * Auto-input redirect for CS421x
967 * Switch max 3 inputs of a single ADC (nid 3)
968*/
969
Takashi Iwaie5f14242009-07-01 18:11:44 +0200970static void cs_automic(struct hda_codec *codec)
971{
972 struct cs_spec *spec = codec->spec;
973 struct auto_pin_cfg *cfg = &spec->autocfg;
974 hda_nid_t nid;
Wu Fengguang864f92b2009-11-18 12:38:02 +0800975 unsigned int present;
Tim Howe56487c22011-07-22 16:41:00 -0500976
Takashi Iwaic1e0bb92010-08-30 13:05:30 +0200977 nid = cfg->inputs[spec->automic_idx].pin;
Wu Fengguang864f92b2009-11-18 12:38:02 +0800978 present = snd_hda_jack_detect(codec, nid);
Tim Howe56487c22011-07-22 16:41:00 -0500979
980 /* specific to CS421x, single ADC */
981 if (spec->vendor_nid == CS421X_VENDOR_NID) {
982 if (present) {
983 spec->last_input = spec->cur_input;
984 spec->cur_input = spec->automic_idx;
985 } else {
986 spec->cur_input = spec->last_input;
987 }
Takashi Iwai05ee7962011-11-16 18:05:11 +0100988 cs_update_input_select(codec);
Tim Howe56487c22011-07-22 16:41:00 -0500989 } else {
990 if (present)
991 change_cur_input(codec, spec->automic_idx, 0);
992 else
993 change_cur_input(codec, !spec->automic_idx, 0);
994 }
Takashi Iwaie5f14242009-07-01 18:11:44 +0200995}
996
997/*
998 */
999
1000static void init_output(struct hda_codec *codec)
1001{
1002 struct cs_spec *spec = codec->spec;
1003 struct auto_pin_cfg *cfg = &spec->autocfg;
1004 int i;
1005
1006 /* mute first */
1007 for (i = 0; i < spec->multiout.num_dacs; i++)
1008 snd_hda_codec_write(codec, spec->multiout.dac_nids[i], 0,
1009 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
1010 if (spec->multiout.hp_nid)
1011 snd_hda_codec_write(codec, spec->multiout.hp_nid, 0,
1012 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
1013 for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++) {
1014 if (!spec->multiout.extra_out_nid[i])
1015 break;
1016 snd_hda_codec_write(codec, spec->multiout.extra_out_nid[i], 0,
1017 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
1018 }
1019
1020 /* set appropriate pin controls */
1021 for (i = 0; i < cfg->line_outs; i++)
1022 snd_hda_codec_write(codec, cfg->line_out_pins[i], 0,
1023 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
Tim Howe56487c22011-07-22 16:41:00 -05001024 /* HP */
Takashi Iwaie5f14242009-07-01 18:11:44 +02001025 for (i = 0; i < cfg->hp_outs; i++) {
1026 hda_nid_t nid = cfg->hp_pins[i];
1027 snd_hda_codec_write(codec, nid, 0,
1028 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
1029 if (!cfg->speaker_outs)
1030 continue;
Tim Howe56487c22011-07-22 16:41:00 -05001031 if (get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP) {
Takashi Iwai1835a0f2011-10-27 22:12:46 +02001032 snd_hda_jack_detect_enable(codec, nid, HP_EVENT);
Takashi Iwaie5f14242009-07-01 18:11:44 +02001033 spec->hp_detect = 1;
1034 }
1035 }
Tim Howe56487c22011-07-22 16:41:00 -05001036
1037 /* Speaker */
Takashi Iwaie5f14242009-07-01 18:11:44 +02001038 for (i = 0; i < cfg->speaker_outs; i++)
1039 snd_hda_codec_write(codec, cfg->speaker_pins[i], 0,
1040 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
Tim Howe56487c22011-07-22 16:41:00 -05001041
1042 /* SPDIF is enabled on presence detect for CS421x */
1043 if (spec->hp_detect || spec->spdif_detect)
Takashi Iwaie5f14242009-07-01 18:11:44 +02001044 cs_automute(codec);
1045}
1046
1047static void init_input(struct hda_codec *codec)
1048{
1049 struct cs_spec *spec = codec->spec;
1050 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai40c20fa2009-07-06 13:00:57 +02001051 unsigned int coef;
Takashi Iwaie5f14242009-07-01 18:11:44 +02001052 int i;
1053
Takashi Iwaic1e0bb92010-08-30 13:05:30 +02001054 for (i = 0; i < cfg->num_inputs; i++) {
Takashi Iwaie5f14242009-07-01 18:11:44 +02001055 unsigned int ctl;
Takashi Iwaic1e0bb92010-08-30 13:05:30 +02001056 hda_nid_t pin = cfg->inputs[i].pin;
1057 if (!spec->adc_nid[i])
Takashi Iwaie5f14242009-07-01 18:11:44 +02001058 continue;
1059 /* set appropriate pin control and mute first */
1060 ctl = PIN_IN;
Takashi Iwai86e29592010-09-09 14:50:17 +02001061 if (cfg->inputs[i].type == AUTO_PIN_MIC) {
Takashi Iwaie5f14242009-07-01 18:11:44 +02001062 unsigned int caps = snd_hda_query_pin_caps(codec, pin);
1063 caps >>= AC_PINCAP_VREF_SHIFT;
1064 if (caps & AC_PINCAP_VREF_80)
1065 ctl = PIN_VREF80;
1066 }
1067 snd_hda_codec_write(codec, pin, 0,
1068 AC_VERB_SET_PIN_WIDGET_CONTROL, ctl);
1069 snd_hda_codec_write(codec, spec->adc_nid[i], 0,
1070 AC_VERB_SET_AMP_GAIN_MUTE,
1071 AMP_IN_MUTE(spec->adc_idx[i]));
1072 if (spec->mic_detect && spec->automic_idx == i)
Takashi Iwai1835a0f2011-10-27 22:12:46 +02001073 snd_hda_jack_detect_enable(codec, pin, MIC_EVENT);
Takashi Iwaie5f14242009-07-01 18:11:44 +02001074 }
Tim Howe56487c22011-07-22 16:41:00 -05001075 /* specific to CS421x */
1076 if (spec->vendor_nid == CS421X_VENDOR_NID) {
1077 if (spec->mic_detect)
1078 cs_automic(codec);
1079 else {
1080 spec->cur_adc = spec->adc_nid[spec->cur_input];
Takashi Iwai05ee7962011-11-16 18:05:11 +01001081 cs_update_input_select(codec);
Tim Howe56487c22011-07-22 16:41:00 -05001082 }
1083 } else {
1084 change_cur_input(codec, spec->cur_input, 1);
1085 if (spec->mic_detect)
1086 cs_automic(codec);
Takashi Iwai40c20fa2009-07-06 13:00:57 +02001087
Tim Howe56487c22011-07-22 16:41:00 -05001088 coef = 0x000a; /* ADC1/2 - Digital and Analog Soft Ramp */
1089 if (is_active_pin(codec, CS_DMIC2_PIN_NID))
1090 coef |= 0x0500; /* DMIC2 2 chan on, GPIO1 off */
1091 if (is_active_pin(codec, CS_DMIC1_PIN_NID))
1092 coef |= 0x1800; /* DMIC1 2 chan on, GPIO0 off
1093 * No effect if SPDIF_OUT2 is
1094 * selected in IDX_SPDIF_CTL.
1095 */
1096 cs_vendor_coef_set(codec, IDX_ADC_CFG, coef);
1097 }
Takashi Iwai40c20fa2009-07-06 13:00:57 +02001098}
1099
Takashi Iwaic42d4782011-05-02 11:36:09 +02001100static const struct hda_verb cs_coef_init_verbs[] = {
Takashi Iwai40c20fa2009-07-06 13:00:57 +02001101 {0x11, AC_VERB_SET_PROC_STATE, 1},
1102 {0x11, AC_VERB_SET_COEF_INDEX, IDX_DAC_CFG},
1103 {0x11, AC_VERB_SET_PROC_COEF,
1104 (0x002a /* DAC1/2/3 SZCMode Soft Ramp */
1105 | 0x0040 /* Mute DACs on FIFO error */
1106 | 0x1000 /* Enable DACs High Pass Filter */
1107 | 0x0400 /* Disable Coefficient Auto increment */
1108 )},
1109 /* Beep */
1110 {0x11, AC_VERB_SET_COEF_INDEX, IDX_DAC_CFG},
1111 {0x11, AC_VERB_SET_PROC_COEF, 0x0007}, /* Enable Beep thru DAC1/2/3 */
1112
1113 {} /* terminator */
1114};
1115
Brian Austina769cbc2010-09-07 14:36:22 -05001116/* Errata: CS4207 rev C0/C1/C2 Silicon
1117 *
1118 * http://www.cirrus.com/en/pubs/errata/ER880C3.pdf
1119 *
1120 * 6. At high temperature (TA > +85°C), the digital supply current (IVD)
1121 * may be excessive (up to an additional 200 μA), which is most easily
1122 * observed while the part is being held in reset (RESET# active low).
1123 *
1124 * Root Cause: At initial powerup of the device, the logic that drives
1125 * the clock and write enable to the S/PDIF SRC RAMs is not properly
1126 * initialized.
1127 * Certain random patterns will cause a steady leakage current in those
1128 * RAM cells. The issue will resolve once the SRCs are used (turned on).
1129 *
1130 * Workaround: The following verb sequence briefly turns on the S/PDIF SRC
1131 * blocks, which will alleviate the issue.
1132 */
1133
Takashi Iwaic42d4782011-05-02 11:36:09 +02001134static const struct hda_verb cs_errata_init_verbs[] = {
Brian Austina769cbc2010-09-07 14:36:22 -05001135 {0x01, AC_VERB_SET_POWER_STATE, 0x00}, /* AFG: D0 */
1136 {0x11, AC_VERB_SET_PROC_STATE, 0x01}, /* VPW: processing on */
1137
1138 {0x11, AC_VERB_SET_COEF_INDEX, 0x0008},
1139 {0x11, AC_VERB_SET_PROC_COEF, 0x9999},
1140 {0x11, AC_VERB_SET_COEF_INDEX, 0x0017},
1141 {0x11, AC_VERB_SET_PROC_COEF, 0xa412},
1142 {0x11, AC_VERB_SET_COEF_INDEX, 0x0001},
1143 {0x11, AC_VERB_SET_PROC_COEF, 0x0009},
1144
1145 {0x07, AC_VERB_SET_POWER_STATE, 0x00}, /* S/PDIF Rx: D0 */
1146 {0x08, AC_VERB_SET_POWER_STATE, 0x00}, /* S/PDIF Tx: D0 */
1147
1148 {0x11, AC_VERB_SET_COEF_INDEX, 0x0017},
1149 {0x11, AC_VERB_SET_PROC_COEF, 0x2412},
1150 {0x11, AC_VERB_SET_COEF_INDEX, 0x0008},
1151 {0x11, AC_VERB_SET_PROC_COEF, 0x0000},
1152 {0x11, AC_VERB_SET_COEF_INDEX, 0x0001},
1153 {0x11, AC_VERB_SET_PROC_COEF, 0x0008},
1154 {0x11, AC_VERB_SET_PROC_STATE, 0x00},
1155
Takashi Iwai38c07642011-03-03 14:54:19 +01001156#if 0 /* Don't to set to D3 as we are in power-up sequence */
Brian Austina769cbc2010-09-07 14:36:22 -05001157 {0x07, AC_VERB_SET_POWER_STATE, 0x03}, /* S/PDIF Rx: D3 */
1158 {0x08, AC_VERB_SET_POWER_STATE, 0x03}, /* S/PDIF Tx: D3 */
1159 /*{0x01, AC_VERB_SET_POWER_STATE, 0x03},*/ /* AFG: D3 This is already handled */
Takashi Iwai38c07642011-03-03 14:54:19 +01001160#endif
Brian Austina769cbc2010-09-07 14:36:22 -05001161
1162 {} /* terminator */
1163};
1164
Takashi Iwai40c20fa2009-07-06 13:00:57 +02001165/* SPDIF setup */
1166static void init_digital(struct hda_codec *codec)
1167{
1168 unsigned int coef;
1169
1170 coef = 0x0002; /* SRC_MUTE soft-mute on SPDIF (if no lock) */
1171 coef |= 0x0008; /* Replace with mute on error */
1172 if (is_active_pin(codec, CS_DIG_OUT2_PIN_NID))
1173 coef |= 0x4000; /* RX to TX1 or TX2 Loopthru / SPDIF2
1174 * SPDIF_OUT2 is shared with GPIO1 and
1175 * DMIC_SDA2.
1176 */
1177 cs_vendor_coef_set(codec, IDX_SPDIF_CTL, coef);
Takashi Iwaie5f14242009-07-01 18:11:44 +02001178}
1179
1180static int cs_init(struct hda_codec *codec)
1181{
1182 struct cs_spec *spec = codec->spec;
1183
Brian Austina769cbc2010-09-07 14:36:22 -05001184 /* init_verb sequence for C0/C1/C2 errata*/
1185 snd_hda_sequence_write(codec, cs_errata_init_verbs);
1186
Takashi Iwai40c20fa2009-07-06 13:00:57 +02001187 snd_hda_sequence_write(codec, cs_coef_init_verbs);
Takashi Iwaied208252009-07-07 09:04:26 +02001188
1189 if (spec->gpio_mask) {
1190 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_MASK,
1191 spec->gpio_mask);
1192 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DIRECTION,
1193 spec->gpio_dir);
1194 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
1195 spec->gpio_data);
1196 }
1197
Takashi Iwaie5f14242009-07-01 18:11:44 +02001198 init_output(codec);
1199 init_input(codec);
Takashi Iwai40c20fa2009-07-06 13:00:57 +02001200 init_digital(codec);
Takashi Iwai01a61e12011-10-28 00:03:22 +02001201 snd_hda_jack_report_sync(codec);
1202
Takashi Iwaie5f14242009-07-01 18:11:44 +02001203 return 0;
1204}
1205
1206static int cs_build_controls(struct hda_codec *codec)
1207{
Takashi Iwai01a61e12011-10-28 00:03:22 +02001208 struct cs_spec *spec = codec->spec;
Takashi Iwaie5f14242009-07-01 18:11:44 +02001209 int err;
1210
1211 err = build_output(codec);
1212 if (err < 0)
1213 return err;
1214 err = build_input(codec);
1215 if (err < 0)
1216 return err;
1217 err = build_digital_output(codec);
1218 if (err < 0)
1219 return err;
1220 err = build_digital_input(codec);
1221 if (err < 0)
1222 return err;
Takashi Iwai01a61e12011-10-28 00:03:22 +02001223 err = cs_init(codec);
1224 if (err < 0)
1225 return err;
1226
1227 err = snd_hda_jack_add_kctls(codec, &spec->autocfg);
1228 if (err < 0)
1229 return err;
1230
1231 return 0;
Takashi Iwaie5f14242009-07-01 18:11:44 +02001232}
1233
1234static void cs_free(struct hda_codec *codec)
1235{
1236 struct cs_spec *spec = codec->spec;
1237 kfree(spec->capture_bind[0]);
1238 kfree(spec->capture_bind[1]);
1239 kfree(codec->spec);
1240}
1241
1242static void cs_unsol_event(struct hda_codec *codec, unsigned int res)
1243{
Takashi Iwai3a938972011-10-28 01:16:55 +02001244 switch (snd_hda_jack_get_action(codec, res >> 26)) {
Takashi Iwaie5f14242009-07-01 18:11:44 +02001245 case HP_EVENT:
1246 cs_automute(codec);
1247 break;
1248 case MIC_EVENT:
1249 cs_automic(codec);
1250 break;
1251 }
Takashi Iwai01a61e12011-10-28 00:03:22 +02001252 snd_hda_jack_report_sync(codec);
Takashi Iwaie5f14242009-07-01 18:11:44 +02001253}
1254
Takashi Iwaic42d4782011-05-02 11:36:09 +02001255static const struct hda_codec_ops cs_patch_ops = {
Takashi Iwaie5f14242009-07-01 18:11:44 +02001256 .build_controls = cs_build_controls,
1257 .build_pcms = cs_build_pcms,
1258 .init = cs_init,
1259 .free = cs_free,
1260 .unsol_event = cs_unsol_event,
1261};
1262
1263static int cs_parse_auto_config(struct hda_codec *codec)
1264{
1265 struct cs_spec *spec = codec->spec;
1266 int err;
1267
1268 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
1269 if (err < 0)
1270 return err;
Takashi Iwaied208252009-07-07 09:04:26 +02001271
1272 err = parse_output(codec);
1273 if (err < 0)
1274 return err;
1275 err = parse_input(codec);
1276 if (err < 0)
1277 return err;
1278 err = parse_digital_output(codec);
1279 if (err < 0)
1280 return err;
1281 err = parse_digital_input(codec);
1282 if (err < 0)
1283 return err;
Takashi Iwaie5f14242009-07-01 18:11:44 +02001284 return 0;
1285}
1286
Takashi Iwaiea734962011-01-17 11:29:34 +01001287static const char * const cs420x_models[CS420X_MODELS] = {
Vince Weaver4e7d7c62010-09-22 17:31:37 -04001288 [CS420X_MBP53] = "mbp53",
Takashi Iwaia6bae202009-07-06 15:15:22 +02001289 [CS420X_MBP55] = "mbp55",
Rafael Avila de Espindola1a5ba2e2009-12-22 07:59:37 +01001290 [CS420X_IMAC27] = "imac27",
Dan Carpenter92bb43e2011-11-24 14:48:24 +03001291 [CS420X_APPLE] = "apple",
Takashi Iwaia6bae202009-07-06 15:15:22 +02001292 [CS420X_AUTO] = "auto",
1293};
1294
1295
Takashi Iwaic42d4782011-05-02 11:36:09 +02001296static const struct snd_pci_quirk cs420x_cfg_tbl[] = {
Vince Weaver4e7d7c62010-09-22 17:31:37 -04001297 SND_PCI_QUIRK(0x10de, 0x0ac0, "MacBookPro 5,3", CS420X_MBP53),
Edgar (gimli) Hucek87232dd2010-11-03 08:14:10 +01001298 SND_PCI_QUIRK(0x10de, 0x0d94, "MacBookAir 3,1(2)", CS420X_MBP55),
Takashi Iwaia6bae202009-07-06 15:15:22 +02001299 SND_PCI_QUIRK(0x10de, 0xcb79, "MacBookPro 5,5", CS420X_MBP55),
Takashi Iwaif46119b2010-10-11 14:46:35 +02001300 SND_PCI_QUIRK(0x10de, 0xcb89, "MacBookPro 7,1", CS420X_MBP55),
Takashi Iwai6dfeb7032011-11-22 20:00:31 +01001301 /* this conflicts with too many other models */
1302 /*SND_PCI_QUIRK(0x8086, 0x7270, "IMac 27 Inch", CS420X_IMAC27),*/
1303 {} /* terminator */
1304};
1305
1306static const struct snd_pci_quirk cs420x_codec_cfg_tbl[] = {
1307 SND_PCI_QUIRK_VENDOR(0x106b, "Apple", CS420X_APPLE),
Takashi Iwaia6bae202009-07-06 15:15:22 +02001308 {} /* terminator */
1309};
1310
1311struct cs_pincfg {
1312 hda_nid_t nid;
1313 u32 val;
1314};
1315
Takashi Iwaic42d4782011-05-02 11:36:09 +02001316static const struct cs_pincfg mbp53_pincfgs[] = {
Vince Weaver4e7d7c62010-09-22 17:31:37 -04001317 { 0x09, 0x012b4050 },
1318 { 0x0a, 0x90100141 },
1319 { 0x0b, 0x90100140 },
1320 { 0x0c, 0x018b3020 },
1321 { 0x0d, 0x90a00110 },
1322 { 0x0e, 0x400000f0 },
1323 { 0x0f, 0x01cbe030 },
1324 { 0x10, 0x014be060 },
1325 { 0x12, 0x400000f0 },
1326 { 0x15, 0x400000f0 },
1327 {} /* terminator */
1328};
1329
Takashi Iwaic42d4782011-05-02 11:36:09 +02001330static const struct cs_pincfg mbp55_pincfgs[] = {
Takashi Iwaia6bae202009-07-06 15:15:22 +02001331 { 0x09, 0x012b4030 },
1332 { 0x0a, 0x90100121 },
1333 { 0x0b, 0x90100120 },
1334 { 0x0c, 0x400000f0 },
1335 { 0x0d, 0x90a00110 },
1336 { 0x0e, 0x400000f0 },
1337 { 0x0f, 0x400000f0 },
1338 { 0x10, 0x014be040 },
1339 { 0x12, 0x400000f0 },
1340 { 0x15, 0x400000f0 },
1341 {} /* terminator */
1342};
1343
Takashi Iwaic42d4782011-05-02 11:36:09 +02001344static const struct cs_pincfg imac27_pincfgs[] = {
Rafael Avila de Espindola1a5ba2e2009-12-22 07:59:37 +01001345 { 0x09, 0x012b4050 },
1346 { 0x0a, 0x90100140 },
1347 { 0x0b, 0x90100142 },
1348 { 0x0c, 0x018b3020 },
1349 { 0x0d, 0x90a00110 },
1350 { 0x0e, 0x400000f0 },
1351 { 0x0f, 0x01cbe030 },
1352 { 0x10, 0x014be060 },
1353 { 0x12, 0x01ab9070 },
1354 { 0x15, 0x400000f0 },
1355 {} /* terminator */
1356};
1357
Takashi Iwaic42d4782011-05-02 11:36:09 +02001358static const struct cs_pincfg *cs_pincfgs[CS420X_MODELS] = {
Vince Weaver4e7d7c62010-09-22 17:31:37 -04001359 [CS420X_MBP53] = mbp53_pincfgs,
Takashi Iwaia6bae202009-07-06 15:15:22 +02001360 [CS420X_MBP55] = mbp55_pincfgs,
Rafael Avila de Espindola1a5ba2e2009-12-22 07:59:37 +01001361 [CS420X_IMAC27] = imac27_pincfgs,
Takashi Iwaia6bae202009-07-06 15:15:22 +02001362};
1363
Tim Howe56487c22011-07-22 16:41:00 -05001364static void fix_pincfg(struct hda_codec *codec, int model,
1365 const struct cs_pincfg **pin_configs)
Takashi Iwaia6bae202009-07-06 15:15:22 +02001366{
Tim Howe56487c22011-07-22 16:41:00 -05001367 const struct cs_pincfg *cfg = pin_configs[model];
Takashi Iwaia6bae202009-07-06 15:15:22 +02001368 if (!cfg)
1369 return;
1370 for (; cfg->nid; cfg++)
1371 snd_hda_codec_set_pincfg(codec, cfg->nid, cfg->val);
1372}
1373
Takashi Iwaie5f14242009-07-01 18:11:44 +02001374static int patch_cs420x(struct hda_codec *codec)
1375{
1376 struct cs_spec *spec;
1377 int err;
1378
1379 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1380 if (!spec)
1381 return -ENOMEM;
1382 codec->spec = spec;
1383
Tim Howe56487c22011-07-22 16:41:00 -05001384 spec->vendor_nid = CS420X_VENDOR_NID;
1385
Takashi Iwaia6bae202009-07-06 15:15:22 +02001386 spec->board_config =
1387 snd_hda_check_board_config(codec, CS420X_MODELS,
1388 cs420x_models, cs420x_cfg_tbl);
Takashi Iwai6dfeb7032011-11-22 20:00:31 +01001389 if (spec->board_config < 0)
1390 spec->board_config =
1391 snd_hda_check_board_codec_sid_config(codec,
1392 CS420X_MODELS, NULL, cs420x_codec_cfg_tbl);
Takashi Iwaia6bae202009-07-06 15:15:22 +02001393 if (spec->board_config >= 0)
Tim Howe56487c22011-07-22 16:41:00 -05001394 fix_pincfg(codec, spec->board_config, cs_pincfgs);
Takashi Iwaia6bae202009-07-06 15:15:22 +02001395
Takashi Iwaied208252009-07-07 09:04:26 +02001396 switch (spec->board_config) {
Rafael Avila de Espindola1a5ba2e2009-12-22 07:59:37 +01001397 case CS420X_IMAC27:
Vince Weaver4e7d7c62010-09-22 17:31:37 -04001398 case CS420X_MBP53:
Takashi Iwaied208252009-07-07 09:04:26 +02001399 case CS420X_MBP55:
Takashi Iwai6dfeb7032011-11-22 20:00:31 +01001400 case CS420X_APPLE:
1401 spec->gpio_eapd_hp = 2; /* GPIO1 = headphones */
1402 spec->gpio_eapd_speaker = 8; /* GPIO3 = speakers */
1403 spec->gpio_mask = spec->gpio_dir =
1404 spec->gpio_eapd_hp | spec->gpio_eapd_speaker;
Takashi Iwaied208252009-07-07 09:04:26 +02001405 break;
1406 }
Takashi Iwaie5f14242009-07-01 18:11:44 +02001407
Takashi Iwaied208252009-07-07 09:04:26 +02001408 err = cs_parse_auto_config(codec);
Takashi Iwai21a4dc42009-07-06 12:55:46 +02001409 if (err < 0)
1410 goto error;
1411
Takashi Iwaie5f14242009-07-01 18:11:44 +02001412 codec->patch_ops = cs_patch_ops;
1413
1414 return 0;
1415
1416 error:
1417 kfree(codec->spec);
1418 codec->spec = NULL;
1419 return err;
1420}
1421
Tim Howe56487c22011-07-22 16:41:00 -05001422/*
1423 * Cirrus Logic CS4210
1424 *
1425 * 1 DAC => HP(sense) / Speakers,
1426 * 1 ADC <= LineIn(sense) / MicIn / DMicIn,
1427 * 1 SPDIF OUT => SPDIF Trasmitter(sense)
1428*/
1429
1430/* CS4210 board names */
1431static const char *cs421x_models[CS421X_MODELS] = {
1432 [CS421X_CDB4210] = "cdb4210",
1433};
1434
1435static const struct snd_pci_quirk cs421x_cfg_tbl[] = {
1436 /* Test Intel board + CDB2410 */
1437 SND_PCI_QUIRK(0x8086, 0x5001, "DP45SG/CDB4210", CS421X_CDB4210),
1438 {} /* terminator */
1439};
1440
1441/* CS4210 board pinconfigs */
1442/* Default CS4210 (CDB4210)*/
1443static const struct cs_pincfg cdb4210_pincfgs[] = {
1444 { 0x05, 0x0321401f },
1445 { 0x06, 0x90170010 },
1446 { 0x07, 0x03813031 },
1447 { 0x08, 0xb7a70037 },
1448 { 0x09, 0xb7a6003e },
1449 { 0x0a, 0x034510f0 },
1450 {} /* terminator */
1451};
1452
1453static const struct cs_pincfg *cs421x_pincfgs[CS421X_MODELS] = {
1454 [CS421X_CDB4210] = cdb4210_pincfgs,
1455};
1456
1457static const struct hda_verb cs421x_coef_init_verbs[] = {
1458 {0x0B, AC_VERB_SET_PROC_STATE, 1},
1459 {0x0B, AC_VERB_SET_COEF_INDEX, CS421X_IDX_DEV_CFG},
1460 /*
1461 Disable Coefficient Index Auto-Increment(DAI)=1,
1462 PDREF=0
1463 */
1464 {0x0B, AC_VERB_SET_PROC_COEF, 0x0001 },
1465
1466 {0x0B, AC_VERB_SET_COEF_INDEX, CS421X_IDX_ADC_CFG},
1467 /* ADC SZCMode = Digital Soft Ramp */
1468 {0x0B, AC_VERB_SET_PROC_COEF, 0x0002 },
1469
1470 {0x0B, AC_VERB_SET_COEF_INDEX, CS421X_IDX_DAC_CFG},
1471 {0x0B, AC_VERB_SET_PROC_COEF,
1472 (0x0002 /* DAC SZCMode = Digital Soft Ramp */
1473 | 0x0004 /* Mute DAC on FIFO error */
1474 | 0x0008 /* Enable DAC High Pass Filter */
1475 )},
1476 {} /* terminator */
1477};
1478
1479/* Errata: CS4210 rev A1 Silicon
1480 *
1481 * http://www.cirrus.com/en/pubs/errata/
1482 *
1483 * Description:
1484 * 1. Performance degredation is present in the ADC.
1485 * 2. Speaker output is not completely muted upon HP detect.
1486 * 3. Noise is present when clipping occurs on the amplified
1487 * speaker outputs.
1488 *
1489 * Workaround:
1490 * The following verb sequence written to the registers during
1491 * initialization will correct the issues listed above.
1492 */
1493
1494static const struct hda_verb cs421x_coef_init_verbs_A1_silicon_fixes[] = {
1495 {0x0B, AC_VERB_SET_PROC_STATE, 0x01}, /* VPW: processing on */
1496
1497 {0x0B, AC_VERB_SET_COEF_INDEX, 0x0006},
1498 {0x0B, AC_VERB_SET_PROC_COEF, 0x9999}, /* Test mode: on */
1499
1500 {0x0B, AC_VERB_SET_COEF_INDEX, 0x000A},
1501 {0x0B, AC_VERB_SET_PROC_COEF, 0x14CB}, /* Chop double */
1502
1503 {0x0B, AC_VERB_SET_COEF_INDEX, 0x0011},
1504 {0x0B, AC_VERB_SET_PROC_COEF, 0xA2D0}, /* Increase ADC current */
1505
1506 {0x0B, AC_VERB_SET_COEF_INDEX, 0x001A},
1507 {0x0B, AC_VERB_SET_PROC_COEF, 0x02A9}, /* Mute speaker */
1508
1509 {0x0B, AC_VERB_SET_COEF_INDEX, 0x001B},
1510 {0x0B, AC_VERB_SET_PROC_COEF, 0X1006}, /* Remove noise */
1511
1512 {} /* terminator */
1513};
1514
1515/* Speaker Amp Gain is controlled by the vendor widget's coef 4 */
1516static const DECLARE_TLV_DB_SCALE(cs421x_speaker_boost_db_scale, 900, 300, 0);
1517
1518static int cs421x_boost_vol_info(struct snd_kcontrol *kcontrol,
1519 struct snd_ctl_elem_info *uinfo)
1520{
1521 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1522 uinfo->count = 1;
1523 uinfo->value.integer.min = 0;
1524 uinfo->value.integer.max = 3;
1525 return 0;
1526}
1527
1528static int cs421x_boost_vol_get(struct snd_kcontrol *kcontrol,
1529 struct snd_ctl_elem_value *ucontrol)
1530{
1531 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1532
1533 ucontrol->value.integer.value[0] =
1534 cs_vendor_coef_get(codec, CS421X_IDX_SPK_CTL) & 0x0003;
1535 return 0;
1536}
1537
1538static int cs421x_boost_vol_put(struct snd_kcontrol *kcontrol,
1539 struct snd_ctl_elem_value *ucontrol)
1540{
1541 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1542
1543 unsigned int vol = ucontrol->value.integer.value[0];
1544 unsigned int coef =
1545 cs_vendor_coef_get(codec, CS421X_IDX_SPK_CTL);
1546 unsigned int original_coef = coef;
1547
1548 coef &= ~0x0003;
1549 coef |= (vol & 0x0003);
1550 if (original_coef == coef)
1551 return 0;
1552 else {
1553 cs_vendor_coef_set(codec, CS421X_IDX_SPK_CTL, coef);
1554 return 1;
1555 }
1556}
1557
1558static const struct snd_kcontrol_new cs421x_speaker_bost_ctl = {
1559
1560 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1561 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE |
1562 SNDRV_CTL_ELEM_ACCESS_TLV_READ),
1563 .name = "Speaker Boost Playback Volume",
1564 .info = cs421x_boost_vol_info,
1565 .get = cs421x_boost_vol_get,
1566 .put = cs421x_boost_vol_put,
1567 .tlv = { .p = cs421x_speaker_boost_db_scale },
1568};
1569
1570static void cs421x_pinmux_init(struct hda_codec *codec)
1571{
1572 struct cs_spec *spec = codec->spec;
1573 unsigned int def_conf, coef;
1574
1575 /* GPIO, DMIC_SCL, DMIC_SDA and SENSE_B are multiplexed */
1576 coef = cs_vendor_coef_get(codec, CS421X_IDX_DEV_CFG);
1577
1578 if (spec->gpio_mask)
1579 coef |= 0x0008; /* B1,B2 are GPIOs */
1580 else
1581 coef &= ~0x0008;
1582
1583 if (spec->sense_b)
1584 coef |= 0x0010; /* B2 is SENSE_B, not inverted */
1585 else
1586 coef &= ~0x0010;
1587
1588 cs_vendor_coef_set(codec, CS421X_IDX_DEV_CFG, coef);
1589
1590 if ((spec->gpio_mask || spec->sense_b) &&
1591 is_active_pin(codec, CS421X_DMIC_PIN_NID)) {
1592
1593 /*
1594 GPIO or SENSE_B forced - disconnect the DMIC pin.
1595 */
1596 def_conf = snd_hda_codec_get_pincfg(codec, CS421X_DMIC_PIN_NID);
1597 def_conf &= ~AC_DEFCFG_PORT_CONN;
1598 def_conf |= (AC_JACK_PORT_NONE << AC_DEFCFG_PORT_CONN_SHIFT);
1599 snd_hda_codec_set_pincfg(codec, CS421X_DMIC_PIN_NID, def_conf);
1600 }
1601}
1602
1603static void init_cs421x_digital(struct hda_codec *codec)
1604{
1605 struct cs_spec *spec = codec->spec;
1606 struct auto_pin_cfg *cfg = &spec->autocfg;
1607 int i;
1608
1609
1610 for (i = 0; i < cfg->dig_outs; i++) {
1611 hda_nid_t nid = cfg->dig_out_pins[i];
1612 if (!cfg->speaker_outs)
1613 continue;
1614 if (get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP) {
Takashi Iwai1835a0f2011-10-27 22:12:46 +02001615 snd_hda_jack_detect_enable(codec, nid, SPDIF_EVENT);
Tim Howe56487c22011-07-22 16:41:00 -05001616 spec->spdif_detect = 1;
1617 }
1618 }
1619}
1620
1621static int cs421x_init(struct hda_codec *codec)
1622{
1623 struct cs_spec *spec = codec->spec;
1624
1625 snd_hda_sequence_write(codec, cs421x_coef_init_verbs);
1626 snd_hda_sequence_write(codec, cs421x_coef_init_verbs_A1_silicon_fixes);
1627
1628 cs421x_pinmux_init(codec);
1629
1630 if (spec->gpio_mask) {
1631 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_MASK,
1632 spec->gpio_mask);
1633 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DIRECTION,
1634 spec->gpio_dir);
1635 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
1636 spec->gpio_data);
1637 }
1638
1639 init_output(codec);
1640 init_input(codec);
1641 init_cs421x_digital(codec);
Takashi Iwai01a61e12011-10-28 00:03:22 +02001642 snd_hda_jack_report_sync(codec);
Tim Howe56487c22011-07-22 16:41:00 -05001643
1644 return 0;
1645}
1646
1647/*
1648 * CS4210 Input MUX (1 ADC)
1649 */
1650static int cs421x_mux_enum_info(struct snd_kcontrol *kcontrol,
1651 struct snd_ctl_elem_info *uinfo)
1652{
1653 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1654 struct cs_spec *spec = codec->spec;
1655
1656 return snd_hda_input_mux_info(&spec->input_mux, uinfo);
1657}
1658
1659static int cs421x_mux_enum_get(struct snd_kcontrol *kcontrol,
1660 struct snd_ctl_elem_value *ucontrol)
1661{
1662 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1663 struct cs_spec *spec = codec->spec;
1664
1665 ucontrol->value.enumerated.item[0] = spec->cur_input;
1666 return 0;
1667}
1668
1669static int cs421x_mux_enum_put(struct snd_kcontrol *kcontrol,
1670 struct snd_ctl_elem_value *ucontrol)
1671{
1672 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1673 struct cs_spec *spec = codec->spec;
1674
1675 return snd_hda_input_mux_put(codec, &spec->input_mux, ucontrol,
1676 spec->adc_nid[0], &spec->cur_input);
1677
1678}
1679
1680static struct snd_kcontrol_new cs421x_capture_source = {
1681
1682 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1683 .name = "Capture Source",
1684 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
1685 .info = cs421x_mux_enum_info,
1686 .get = cs421x_mux_enum_get,
1687 .put = cs421x_mux_enum_put,
1688};
1689
1690static int cs421x_add_input_volume_control(struct hda_codec *codec, int item)
1691{
1692 struct cs_spec *spec = codec->spec;
1693 struct auto_pin_cfg *cfg = &spec->autocfg;
1694 const struct hda_input_mux *imux = &spec->input_mux;
1695 hda_nid_t pin = cfg->inputs[item].pin;
1696 struct snd_kcontrol *kctl;
1697 u32 caps;
1698
1699 if (!(get_wcaps(codec, pin) & AC_WCAP_IN_AMP))
1700 return 0;
1701
1702 caps = query_amp_caps(codec, pin, HDA_INPUT);
1703 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1704 if (caps <= 1)
1705 return 0;
1706
1707 return add_volume(codec, imux->items[item].label, 0,
1708 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_INPUT), 1, &kctl);
1709}
1710
1711/* add a (input-boost) volume control to the given input pin */
1712static int build_cs421x_input(struct hda_codec *codec)
1713{
1714 struct cs_spec *spec = codec->spec;
1715 struct auto_pin_cfg *cfg = &spec->autocfg;
1716 struct hda_input_mux *imux = &spec->input_mux;
1717 int i, err, type_idx;
1718 const char *label;
1719
1720 if (!spec->num_inputs)
1721 return 0;
1722
1723 /* make bind-capture */
1724 spec->capture_bind[0] = make_bind_capture(codec, &snd_hda_bind_sw);
1725 spec->capture_bind[1] = make_bind_capture(codec, &snd_hda_bind_vol);
1726 for (i = 0; i < 2; i++) {
1727 struct snd_kcontrol *kctl;
1728 int n;
1729 if (!spec->capture_bind[i])
1730 return -ENOMEM;
1731 kctl = snd_ctl_new1(&cs_capture_ctls[i], codec);
1732 if (!kctl)
1733 return -ENOMEM;
1734 kctl->private_value = (long)spec->capture_bind[i];
1735 err = snd_hda_ctl_add(codec, 0, kctl);
1736 if (err < 0)
1737 return err;
1738 for (n = 0; n < AUTO_PIN_LAST; n++) {
1739 if (!spec->adc_nid[n])
1740 continue;
1741 err = snd_hda_add_nid(codec, kctl, 0, spec->adc_nid[n]);
1742 if (err < 0)
1743 return err;
1744 }
1745 }
1746
1747 /* Add Input MUX Items + Capture Volume/Switch */
1748 for (i = 0; i < spec->num_inputs; i++) {
1749 label = hda_get_autocfg_input_label(codec, cfg, i);
1750 snd_hda_add_imux_item(imux, label, spec->adc_idx[i], &type_idx);
1751
1752 err = cs421x_add_input_volume_control(codec, i);
1753 if (err < 0)
1754 return err;
1755 }
1756
1757 /*
1758 Add 'Capture Source' Switch if
1759 * 2 inputs and no mic detec
1760 * 3 inputs
1761 */
1762 if ((spec->num_inputs == 2 && !spec->mic_detect) ||
1763 (spec->num_inputs == 3)) {
1764
1765 err = snd_hda_ctl_add(codec, spec->adc_nid[0],
1766 snd_ctl_new1(&cs421x_capture_source, codec));
1767 if (err < 0)
1768 return err;
1769 }
1770
1771 return 0;
1772}
1773
1774/* Single DAC (Mute/Gain) */
1775static int build_cs421x_output(struct hda_codec *codec)
1776{
1777 hda_nid_t dac = CS4210_DAC_NID;
1778 struct cs_spec *spec = codec->spec;
1779 struct auto_pin_cfg *cfg = &spec->autocfg;
1780 struct snd_kcontrol *kctl;
1781 int err;
David Henningsson40d03e62012-01-02 12:40:15 +01001782 char *name = "Master";
Tim Howe56487c22011-07-22 16:41:00 -05001783
1784 fix_volume_caps(codec, dac);
Tim Howe56487c22011-07-22 16:41:00 -05001785
1786 err = add_mute(codec, name, 0,
1787 HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT), 0, &kctl);
1788 if (err < 0)
1789 return err;
Tim Howe56487c22011-07-22 16:41:00 -05001790
1791 err = add_volume(codec, name, 0,
1792 HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT), 0, &kctl);
1793 if (err < 0)
1794 return err;
Tim Howe56487c22011-07-22 16:41:00 -05001795
1796 if (cfg->speaker_outs) {
1797 err = snd_hda_ctl_add(codec, 0,
1798 snd_ctl_new1(&cs421x_speaker_bost_ctl, codec));
1799 if (err < 0)
1800 return err;
1801 }
1802 return err;
1803}
1804
1805static int cs421x_build_controls(struct hda_codec *codec)
1806{
Takashi Iwai01a61e12011-10-28 00:03:22 +02001807 struct cs_spec *spec = codec->spec;
Tim Howe56487c22011-07-22 16:41:00 -05001808 int err;
1809
1810 err = build_cs421x_output(codec);
1811 if (err < 0)
1812 return err;
1813 err = build_cs421x_input(codec);
1814 if (err < 0)
1815 return err;
1816 err = build_digital_output(codec);
1817 if (err < 0)
1818 return err;
Takashi Iwai01a61e12011-10-28 00:03:22 +02001819 err = cs421x_init(codec);
1820 if (err < 0)
1821 return err;
1822
1823 err = snd_hda_jack_add_kctls(codec, &spec->autocfg);
1824 if (err < 0)
1825 return err;
1826
1827 return 0;
Tim Howe56487c22011-07-22 16:41:00 -05001828}
1829
1830static void cs421x_unsol_event(struct hda_codec *codec, unsigned int res)
1831{
Takashi Iwai3a938972011-10-28 01:16:55 +02001832 switch (snd_hda_jack_get_action(codec, res >> 26)) {
Tim Howe56487c22011-07-22 16:41:00 -05001833 case HP_EVENT:
1834 case SPDIF_EVENT:
1835 cs_automute(codec);
1836 break;
1837
1838 case MIC_EVENT:
1839 cs_automic(codec);
1840 break;
1841 }
Takashi Iwai01a61e12011-10-28 00:03:22 +02001842 snd_hda_jack_report_sync(codec);
Tim Howe56487c22011-07-22 16:41:00 -05001843}
1844
1845static int parse_cs421x_input(struct hda_codec *codec)
1846{
1847 struct cs_spec *spec = codec->spec;
1848 struct auto_pin_cfg *cfg = &spec->autocfg;
1849 int i;
1850
1851 for (i = 0; i < cfg->num_inputs; i++) {
1852 hda_nid_t pin = cfg->inputs[i].pin;
1853 spec->adc_nid[i] = get_adc(codec, pin, &spec->adc_idx[i]);
1854 spec->cur_input = spec->last_input = i;
1855 spec->num_inputs++;
1856
1857 /* check whether the automatic mic switch is available */
1858 if (is_ext_mic(codec, i) && cfg->num_inputs >= 2) {
1859 spec->mic_detect = 1;
1860 spec->automic_idx = i;
1861 }
1862 }
1863 return 0;
1864}
1865
1866static int cs421x_parse_auto_config(struct hda_codec *codec)
1867{
1868 struct cs_spec *spec = codec->spec;
1869 int err;
1870
1871 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
1872 if (err < 0)
1873 return err;
1874 err = parse_output(codec);
1875 if (err < 0)
1876 return err;
1877 err = parse_cs421x_input(codec);
1878 if (err < 0)
1879 return err;
1880 err = parse_digital_output(codec);
1881 if (err < 0)
1882 return err;
1883 return 0;
1884}
1885
1886#ifdef CONFIG_PM
1887/*
1888 Manage PDREF, when transitioning to D3hot
1889 (DAC,ADC) -> D3, PDREF=1, AFG->D3
1890*/
1891static int cs421x_suspend(struct hda_codec *codec, pm_message_t state)
1892{
1893 unsigned int coef;
1894
1895 snd_hda_shutup_pins(codec);
1896
1897 snd_hda_codec_write(codec, CS4210_DAC_NID, 0,
1898 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
1899 snd_hda_codec_write(codec, CS4210_ADC_NID, 0,
1900 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
1901
1902 coef = cs_vendor_coef_get(codec, CS421X_IDX_DEV_CFG);
1903 coef |= 0x0004; /* PDREF */
1904 cs_vendor_coef_set(codec, CS421X_IDX_DEV_CFG, coef);
1905
1906 return 0;
1907}
1908#endif
1909
1910static struct hda_codec_ops cs4210_patch_ops = {
1911 .build_controls = cs421x_build_controls,
1912 .build_pcms = cs_build_pcms,
1913 .init = cs421x_init,
1914 .free = cs_free,
1915 .unsol_event = cs421x_unsol_event,
1916#ifdef CONFIG_PM
1917 .suspend = cs421x_suspend,
1918#endif
1919};
1920
1921static int patch_cs421x(struct hda_codec *codec)
1922{
1923 struct cs_spec *spec;
1924 int err;
1925
1926 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1927 if (!spec)
1928 return -ENOMEM;
1929 codec->spec = spec;
1930
1931 spec->vendor_nid = CS421X_VENDOR_NID;
1932
1933 spec->board_config =
1934 snd_hda_check_board_config(codec, CS421X_MODELS,
1935 cs421x_models, cs421x_cfg_tbl);
1936 if (spec->board_config >= 0)
1937 fix_pincfg(codec, spec->board_config, cs421x_pincfgs);
1938 /*
1939 Setup GPIO/SENSE for each board (if used)
1940 */
1941 switch (spec->board_config) {
1942 case CS421X_CDB4210:
1943 snd_printd("CS4210 board: %s\n",
1944 cs421x_models[spec->board_config]);
1945/* spec->gpio_mask = 3;
1946 spec->gpio_dir = 3;
1947 spec->gpio_data = 3;
1948*/
1949 spec->sense_b = 1;
1950
1951 break;
1952 }
1953
1954 /*
1955 Update the GPIO/DMIC/SENSE_B pinmux before the configuration
1956 is auto-parsed. If GPIO or SENSE_B is forced, DMIC input
1957 is disabled.
1958 */
1959 cs421x_pinmux_init(codec);
1960
1961 err = cs421x_parse_auto_config(codec);
1962 if (err < 0)
1963 goto error;
1964
1965 codec->patch_ops = cs4210_patch_ops;
1966
1967 return 0;
1968
1969 error:
1970 kfree(codec->spec);
1971 codec->spec = NULL;
1972 return err;
1973}
1974
Takashi Iwaie5f14242009-07-01 18:11:44 +02001975
1976/*
1977 * patch entries
1978 */
Takashi Iwaic42d4782011-05-02 11:36:09 +02001979static const struct hda_codec_preset snd_hda_preset_cirrus[] = {
Takashi Iwaie5f14242009-07-01 18:11:44 +02001980 { .id = 0x10134206, .name = "CS4206", .patch = patch_cs420x },
1981 { .id = 0x10134207, .name = "CS4207", .patch = patch_cs420x },
Tim Howe56487c22011-07-22 16:41:00 -05001982 { .id = 0x10134210, .name = "CS4210", .patch = patch_cs421x },
Takashi Iwaie5f14242009-07-01 18:11:44 +02001983 {} /* terminator */
1984};
1985
1986MODULE_ALIAS("snd-hda-codec-id:10134206");
1987MODULE_ALIAS("snd-hda-codec-id:10134207");
Tim Howe56487c22011-07-22 16:41:00 -05001988MODULE_ALIAS("snd-hda-codec-id:10134210");
Takashi Iwaie5f14242009-07-01 18:11:44 +02001989
1990MODULE_LICENSE("GPL");
1991MODULE_DESCRIPTION("Cirrus Logic HD-audio codec");
1992
1993static struct hda_codec_preset_list cirrus_list = {
1994 .preset = snd_hda_preset_cirrus,
1995 .owner = THIS_MODULE,
1996};
1997
1998static int __init patch_cirrus_init(void)
1999{
2000 return snd_hda_add_codec_preset(&cirrus_list);
2001}
2002
2003static void __exit patch_cirrus_exit(void)
2004{
2005 snd_hda_delete_codec_preset(&cirrus_list);
2006}
2007
2008module_init(patch_cirrus_init)
2009module_exit(patch_cirrus_exit)