pandora: defconfig: update
[pandora-kernel.git] / sound / pci / hda / patch_cirrus.c
1 /*
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>
25 #include <linux/module.h>
26 #include <sound/core.h>
27 #include "hda_codec.h"
28 #include "hda_local.h"
29 #include <sound/tlv.h>
30
31 /*
32  */
33
34 struct cs_spec {
35         int board_config;
36         struct auto_pin_cfg autocfg;
37         struct hda_multi_out multiout;
38         struct snd_kcontrol *vmaster_sw;
39         struct snd_kcontrol *vmaster_vol;
40
41         hda_nid_t dac_nid[AUTO_CFG_MAX_OUTS];
42         hda_nid_t slave_dig_outs[2];
43
44         unsigned int input_idx[AUTO_PIN_LAST];
45         unsigned int capsrc_idx[AUTO_PIN_LAST];
46         hda_nid_t adc_nid[AUTO_PIN_LAST];
47         unsigned int adc_idx[AUTO_PIN_LAST];
48         unsigned int num_inputs;
49         unsigned int cur_input;
50         unsigned int automic_idx;
51         hda_nid_t cur_adc;
52         unsigned int cur_adc_stream_tag;
53         unsigned int cur_adc_format;
54         hda_nid_t dig_in;
55
56         const struct hda_bind_ctls *capture_bind[2];
57
58         unsigned int gpio_mask;
59         unsigned int gpio_dir;
60         unsigned int gpio_data;
61         unsigned int gpio_eapd_hp; /* EAPD GPIO bit for headphones */
62         unsigned int gpio_eapd_speaker; /* EAPD GPIO bit for speakers */
63
64         struct hda_pcm pcm_rec[2];      /* PCM information */
65
66         unsigned int hp_detect:1;
67         unsigned int mic_detect:1;
68         /* CS421x */
69         unsigned int spdif_detect:1;
70         unsigned int sense_b:1;
71         hda_nid_t vendor_nid;
72         struct hda_input_mux input_mux;
73         unsigned int last_input;
74 };
75
76 /* available models with CS420x */
77 enum {
78         CS420X_MBP53,
79         CS420X_MBP55,
80         CS420X_IMAC27,
81         CS420X_APPLE,
82         CS420X_AUTO,
83         CS420X_MODELS
84 };
85
86 /* CS421x boards */
87 enum {
88         CS421X_CDB4210,
89         CS421X_MODELS
90 };
91
92 /* Vendor-specific processing widget */
93 #define CS420X_VENDOR_NID       0x11
94 #define CS_DIG_OUT1_PIN_NID     0x10
95 #define CS_DIG_OUT2_PIN_NID     0x15
96 #define CS_DMIC1_PIN_NID        0x0e
97 #define CS_DMIC2_PIN_NID        0x12
98
99 /* coef indices */
100 #define IDX_SPDIF_STAT          0x0000
101 #define IDX_SPDIF_CTL           0x0001
102 #define IDX_ADC_CFG             0x0002
103 /* SZC bitmask, 4 modes below:
104  * 0 = immediate,
105  * 1 = digital immediate, analog zero-cross
106  * 2 = digtail & analog soft-ramp
107  * 3 = digital soft-ramp, analog zero-cross
108  */
109 #define   CS_COEF_ADC_SZC_MASK          (3 << 0)
110 #define   CS_COEF_ADC_MIC_SZC_MODE      (3 << 0) /* SZC setup for mic */
111 #define   CS_COEF_ADC_LI_SZC_MODE       (3 << 0) /* SZC setup for line-in */
112 /* PGA mode: 0 = differential, 1 = signle-ended */
113 #define   CS_COEF_ADC_MIC_PGA_MODE      (1 << 5) /* PGA setup for mic */
114 #define   CS_COEF_ADC_LI_PGA_MODE       (1 << 6) /* PGA setup for line-in */
115 #define IDX_DAC_CFG             0x0003
116 /* SZC bitmask, 4 modes below:
117  * 0 = Immediate
118  * 1 = zero-cross
119  * 2 = soft-ramp
120  * 3 = soft-ramp on zero-cross
121  */
122 #define   CS_COEF_DAC_HP_SZC_MODE       (3 << 0) /* nid 0x02 */
123 #define   CS_COEF_DAC_LO_SZC_MODE       (3 << 2) /* nid 0x03 */
124 #define   CS_COEF_DAC_SPK_SZC_MODE      (3 << 4) /* nid 0x04 */
125
126 #define IDX_BEEP_CFG            0x0004
127 /* 0x0008 - test reg key */
128 /* 0x0009 - 0x0014 -> 12 test regs */
129 /* 0x0015 - visibility reg */
130
131 /*
132  * Cirrus Logic CS4210
133  *
134  * 1 DAC => HP(sense) / Speakers,
135  * 1 ADC <= LineIn(sense) / MicIn / DMicIn,
136  * 1 SPDIF OUT => SPDIF Trasmitter(sense)
137 */
138 #define CS4210_DAC_NID          0x02
139 #define CS4210_ADC_NID          0x03
140 #define CS421X_VENDOR_NID       0x0B
141 #define CS421X_DMIC_PIN_NID     0x09 /* Port E */
142 #define CS421X_SPDIF_PIN_NID    0x0A /* Port H */
143
144 #define CS421X_IDX_DEV_CFG      0x01
145 #define CS421X_IDX_ADC_CFG      0x02
146 #define CS421X_IDX_DAC_CFG      0x03
147 #define CS421X_IDX_SPK_CTL      0x04
148
149 #define SPDIF_EVENT             0x04
150
151 static inline int cs_vendor_coef_get(struct hda_codec *codec, unsigned int idx)
152 {
153         struct cs_spec *spec = codec->spec;
154         snd_hda_codec_write(codec, spec->vendor_nid, 0,
155                             AC_VERB_SET_COEF_INDEX, idx);
156         return snd_hda_codec_read(codec, spec->vendor_nid, 0,
157                                   AC_VERB_GET_PROC_COEF, 0);
158 }
159
160 static inline void cs_vendor_coef_set(struct hda_codec *codec, unsigned int idx,
161                                       unsigned int coef)
162 {
163         struct cs_spec *spec = codec->spec;
164         snd_hda_codec_write(codec, spec->vendor_nid, 0,
165                             AC_VERB_SET_COEF_INDEX, idx);
166         snd_hda_codec_write(codec, spec->vendor_nid, 0,
167                             AC_VERB_SET_PROC_COEF, coef);
168 }
169
170
171 #define HP_EVENT        1
172 #define MIC_EVENT       2
173
174 /*
175  * PCM callbacks
176  */
177 static int cs_playback_pcm_open(struct hda_pcm_stream *hinfo,
178                                 struct hda_codec *codec,
179                                 struct snd_pcm_substream *substream)
180 {
181         struct cs_spec *spec = codec->spec;
182         return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
183                                              hinfo);
184 }
185
186 static int cs_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
187                                    struct hda_codec *codec,
188                                    unsigned int stream_tag,
189                                    unsigned int format,
190                                    struct snd_pcm_substream *substream)
191 {
192         struct cs_spec *spec = codec->spec;
193         return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
194                                                 stream_tag, format, substream);
195 }
196
197 static int cs_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
198                                    struct hda_codec *codec,
199                                    struct snd_pcm_substream *substream)
200 {
201         struct cs_spec *spec = codec->spec;
202         return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
203 }
204
205 /*
206  * Digital out
207  */
208 static int cs_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
209                                     struct hda_codec *codec,
210                                     struct snd_pcm_substream *substream)
211 {
212         struct cs_spec *spec = codec->spec;
213         return snd_hda_multi_out_dig_open(codec, &spec->multiout);
214 }
215
216 static int cs_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
217                                      struct hda_codec *codec,
218                                      struct snd_pcm_substream *substream)
219 {
220         struct cs_spec *spec = codec->spec;
221         return snd_hda_multi_out_dig_close(codec, &spec->multiout);
222 }
223
224 static int cs_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
225                                        struct hda_codec *codec,
226                                        unsigned int stream_tag,
227                                        unsigned int format,
228                                        struct snd_pcm_substream *substream)
229 {
230         struct cs_spec *spec = codec->spec;
231         return snd_hda_multi_out_dig_prepare(codec, &spec->multiout, stream_tag,
232                                              format, substream);
233 }
234
235 static int cs_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
236                                        struct hda_codec *codec,
237                                        struct snd_pcm_substream *substream)
238 {
239         struct cs_spec *spec = codec->spec;
240         return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
241 }
242
243 static void cs_update_input_select(struct hda_codec *codec)
244 {
245         struct cs_spec *spec = codec->spec;
246         if (spec->cur_adc)
247                 snd_hda_codec_write(codec, spec->cur_adc, 0,
248                                     AC_VERB_SET_CONNECT_SEL,
249                                     spec->adc_idx[spec->cur_input]);
250 }
251
252 /*
253  * Analog capture
254  */
255 static int cs_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
256                                   struct hda_codec *codec,
257                                   unsigned int stream_tag,
258                                   unsigned int format,
259                                   struct snd_pcm_substream *substream)
260 {
261         struct cs_spec *spec = codec->spec;
262         spec->cur_adc = spec->adc_nid[spec->cur_input];
263         spec->cur_adc_stream_tag = stream_tag;
264         spec->cur_adc_format = format;
265         cs_update_input_select(codec);
266         snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
267         return 0;
268 }
269
270 static int cs_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
271                                   struct hda_codec *codec,
272                                   struct snd_pcm_substream *substream)
273 {
274         struct cs_spec *spec = codec->spec;
275         snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
276         spec->cur_adc = 0;
277         return 0;
278 }
279
280 /*
281  */
282 static const struct hda_pcm_stream cs_pcm_analog_playback = {
283         .substreams = 1,
284         .channels_min = 2,
285         .channels_max = 2,
286         .ops = {
287                 .open = cs_playback_pcm_open,
288                 .prepare = cs_playback_pcm_prepare,
289                 .cleanup = cs_playback_pcm_cleanup
290         },
291 };
292
293 static const struct hda_pcm_stream cs_pcm_analog_capture = {
294         .substreams = 1,
295         .channels_min = 2,
296         .channels_max = 2,
297         .ops = {
298                 .prepare = cs_capture_pcm_prepare,
299                 .cleanup = cs_capture_pcm_cleanup
300         },
301 };
302
303 static const struct hda_pcm_stream cs_pcm_digital_playback = {
304         .substreams = 1,
305         .channels_min = 2,
306         .channels_max = 2,
307         .ops = {
308                 .open = cs_dig_playback_pcm_open,
309                 .close = cs_dig_playback_pcm_close,
310                 .prepare = cs_dig_playback_pcm_prepare,
311                 .cleanup = cs_dig_playback_pcm_cleanup
312         },
313 };
314
315 static const struct hda_pcm_stream cs_pcm_digital_capture = {
316         .substreams = 1,
317         .channels_min = 2,
318         .channels_max = 2,
319 };
320
321 static int cs_build_pcms(struct hda_codec *codec)
322 {
323         struct cs_spec *spec = codec->spec;
324         struct hda_pcm *info = spec->pcm_rec;
325
326         codec->pcm_info = info;
327         codec->num_pcms = 0;
328
329         info->name = "Cirrus Analog";
330         info->stream[SNDRV_PCM_STREAM_PLAYBACK] = cs_pcm_analog_playback;
331         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->dac_nid[0];
332         info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
333                 spec->multiout.max_channels;
334         info->stream[SNDRV_PCM_STREAM_CAPTURE] = cs_pcm_analog_capture;
335         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
336                 spec->adc_nid[spec->cur_input];
337         codec->num_pcms++;
338
339         if (!spec->multiout.dig_out_nid && !spec->dig_in)
340                 return 0;
341
342         info++;
343         info->name = "Cirrus Digital";
344         info->pcm_type = spec->autocfg.dig_out_type[0];
345         if (!info->pcm_type)
346                 info->pcm_type = HDA_PCM_TYPE_SPDIF;
347         if (spec->multiout.dig_out_nid) {
348                 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
349                         cs_pcm_digital_playback;
350                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
351                         spec->multiout.dig_out_nid;
352         }
353         if (spec->dig_in) {
354                 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
355                         cs_pcm_digital_capture;
356                 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in;
357         }
358         codec->num_pcms++;
359
360         return 0;
361 }
362
363 /*
364  * parse codec topology
365  */
366
367 static hda_nid_t get_dac(struct hda_codec *codec, hda_nid_t pin)
368 {
369         hda_nid_t dac;
370         if (!pin)
371                 return 0;
372         if (snd_hda_get_connections(codec, pin, &dac, 1) != 1)
373                 return 0;
374         return dac;
375 }
376
377 static int is_ext_mic(struct hda_codec *codec, unsigned int idx)
378 {
379         struct cs_spec *spec = codec->spec;
380         struct auto_pin_cfg *cfg = &spec->autocfg;
381         hda_nid_t pin = cfg->inputs[idx].pin;
382         unsigned int val;
383         if (!is_jack_detectable(codec, pin))
384                 return 0;
385         val = snd_hda_codec_get_pincfg(codec, pin);
386         return (snd_hda_get_input_pin_attr(val) != INPUT_PIN_ATTR_INT);
387 }
388
389 static hda_nid_t get_adc(struct hda_codec *codec, hda_nid_t pin,
390                          unsigned int *idxp)
391 {
392         int i, idx;
393         hda_nid_t nid;
394
395         nid = codec->start_nid;
396         for (i = 0; i < codec->num_nodes; i++, nid++) {
397                 unsigned int type;
398                 type = get_wcaps_type(get_wcaps(codec, nid));
399                 if (type != AC_WID_AUD_IN)
400                         continue;
401                 idx = snd_hda_get_conn_index(codec, nid, pin, false);
402                 if (idx >= 0) {
403                         *idxp = idx;
404                         return nid;
405                 }
406         }
407         return 0;
408 }
409
410 static int is_active_pin(struct hda_codec *codec, hda_nid_t nid)
411 {
412         unsigned int val;
413         val = snd_hda_codec_get_pincfg(codec, nid);
414         return (get_defcfg_connect(val) != AC_JACK_PORT_NONE);
415 }
416
417 static int parse_output(struct hda_codec *codec)
418 {
419         struct cs_spec *spec = codec->spec;
420         struct auto_pin_cfg *cfg = &spec->autocfg;
421         int i, extra_nids;
422         hda_nid_t dac;
423
424         for (i = 0; i < cfg->line_outs; i++) {
425                 dac = get_dac(codec, cfg->line_out_pins[i]);
426                 if (!dac)
427                         break;
428                 spec->dac_nid[i] = dac;
429         }
430         spec->multiout.num_dacs = i;
431         spec->multiout.dac_nids = spec->dac_nid;
432         spec->multiout.max_channels = i * 2;
433
434         /* add HP and speakers */
435         extra_nids = 0;
436         for (i = 0; i < cfg->hp_outs; i++) {
437                 dac = get_dac(codec, cfg->hp_pins[i]);
438                 if (!dac)
439                         break;
440                 if (!i)
441                         spec->multiout.hp_nid = dac;
442                 else
443                         spec->multiout.extra_out_nid[extra_nids++] = dac;
444         }
445         for (i = 0; i < cfg->speaker_outs; i++) {
446                 dac = get_dac(codec, cfg->speaker_pins[i]);
447                 if (!dac)
448                         break;
449                 spec->multiout.extra_out_nid[extra_nids++] = dac;
450         }
451
452         if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
453                 cfg->speaker_outs = cfg->line_outs;
454                 memcpy(cfg->speaker_pins, cfg->line_out_pins,
455                        sizeof(cfg->speaker_pins));
456                 cfg->line_outs = 0;
457         }
458
459         return 0;
460 }
461
462 static int parse_input(struct hda_codec *codec)
463 {
464         struct cs_spec *spec = codec->spec;
465         struct auto_pin_cfg *cfg = &spec->autocfg;
466         int i;
467
468         for (i = 0; i < cfg->num_inputs; i++) {
469                 hda_nid_t pin = cfg->inputs[i].pin;
470                 spec->input_idx[spec->num_inputs] = i;
471                 spec->capsrc_idx[i] = spec->num_inputs++;
472                 spec->cur_input = i;
473                 spec->adc_nid[i] = get_adc(codec, pin, &spec->adc_idx[i]);
474         }
475         if (!spec->num_inputs)
476                 return 0;
477
478         /* check whether the automatic mic switch is available */
479         if (spec->num_inputs == 2 &&
480             cfg->inputs[0].type == AUTO_PIN_MIC &&
481             cfg->inputs[1].type == AUTO_PIN_MIC) {
482                 if (is_ext_mic(codec, cfg->inputs[0].pin)) {
483                         if (!is_ext_mic(codec, cfg->inputs[1].pin)) {
484                                 spec->mic_detect = 1;
485                                 spec->automic_idx = 0;
486                         }
487                 } else {
488                         if (is_ext_mic(codec, cfg->inputs[1].pin)) {
489                                 spec->mic_detect = 1;
490                                 spec->automic_idx = 1;
491                         }
492                 }
493         }
494         return 0;
495 }
496
497
498 static int parse_digital_output(struct hda_codec *codec)
499 {
500         struct cs_spec *spec = codec->spec;
501         struct auto_pin_cfg *cfg = &spec->autocfg;
502         hda_nid_t nid;
503
504         if (!cfg->dig_outs)
505                 return 0;
506         if (snd_hda_get_connections(codec, cfg->dig_out_pins[0], &nid, 1) < 1)
507                 return 0;
508         spec->multiout.dig_out_nid = nid;
509         spec->multiout.share_spdif = 1;
510         if (cfg->dig_outs > 1 &&
511             snd_hda_get_connections(codec, cfg->dig_out_pins[1], &nid, 1) > 0) {
512                 spec->slave_dig_outs[0] = nid;
513                 codec->slave_dig_outs = spec->slave_dig_outs;
514         }
515         return 0;
516 }
517
518 static int parse_digital_input(struct hda_codec *codec)
519 {
520         struct cs_spec *spec = codec->spec;
521         struct auto_pin_cfg *cfg = &spec->autocfg;
522         int idx;
523
524         if (cfg->dig_in_pin)
525                 spec->dig_in = get_adc(codec, cfg->dig_in_pin, &idx);
526         return 0;
527 }
528
529 /*
530  * create mixer controls
531  */
532
533 static const char * const dir_sfx[2] = { "Playback", "Capture" };
534
535 static int add_mute(struct hda_codec *codec, const char *name, int index,
536                     unsigned int pval, int dir, struct snd_kcontrol **kctlp)
537 {
538         char tmp[44];
539         struct snd_kcontrol_new knew =
540                 HDA_CODEC_MUTE_IDX(tmp, index, 0, 0, HDA_OUTPUT);
541         knew.private_value = pval;
542         snprintf(tmp, sizeof(tmp), "%s %s Switch", name, dir_sfx[dir]);
543         *kctlp = snd_ctl_new1(&knew, codec);
544         (*kctlp)->id.subdevice = HDA_SUBDEV_AMP_FLAG;
545         return snd_hda_ctl_add(codec, 0, *kctlp);
546 }
547
548 static int add_volume(struct hda_codec *codec, const char *name,
549                       int index, unsigned int pval, int dir,
550                       struct snd_kcontrol **kctlp)
551 {
552         char tmp[44];
553         struct snd_kcontrol_new knew =
554                 HDA_CODEC_VOLUME_IDX(tmp, index, 0, 0, HDA_OUTPUT);
555         knew.private_value = pval;
556         snprintf(tmp, sizeof(tmp), "%s %s Volume", name, dir_sfx[dir]);
557         *kctlp = snd_ctl_new1(&knew, codec);
558         (*kctlp)->id.subdevice = HDA_SUBDEV_AMP_FLAG;
559         return snd_hda_ctl_add(codec, 0, *kctlp);
560 }
561
562 static void fix_volume_caps(struct hda_codec *codec, hda_nid_t dac)
563 {
564         unsigned int caps;
565
566         /* set the upper-limit for mixer amp to 0dB */
567         caps = query_amp_caps(codec, dac, HDA_OUTPUT);
568         caps &= ~(0x7f << AC_AMPCAP_NUM_STEPS_SHIFT);
569         caps |= ((caps >> AC_AMPCAP_OFFSET_SHIFT) & 0x7f)
570                 << AC_AMPCAP_NUM_STEPS_SHIFT;
571         snd_hda_override_amp_caps(codec, dac, HDA_OUTPUT, caps);
572 }
573
574 static int add_vmaster(struct hda_codec *codec, hda_nid_t dac)
575 {
576         struct cs_spec *spec = codec->spec;
577         unsigned int tlv[4];
578         int err;
579
580         spec->vmaster_sw =
581                 snd_ctl_make_virtual_master("Master Playback Switch", NULL);
582         err = snd_hda_ctl_add(codec, dac, spec->vmaster_sw);
583         if (err < 0)
584                 return err;
585
586         snd_hda_set_vmaster_tlv(codec, dac, HDA_OUTPUT, tlv);
587         spec->vmaster_vol =
588                 snd_ctl_make_virtual_master("Master Playback Volume", tlv);
589         err = snd_hda_ctl_add(codec, dac, spec->vmaster_vol);
590         if (err < 0)
591                 return err;
592         return 0;
593 }
594
595 static int add_output(struct hda_codec *codec, hda_nid_t dac, int idx,
596                       int num_ctls, int type)
597 {
598         struct cs_spec *spec = codec->spec;
599         const char *name;
600         int err, index;
601         struct snd_kcontrol *kctl;
602         static const char * const speakers[] = {
603                 "Front Speaker", "Surround Speaker", "Bass Speaker"
604         };
605         static const char * const line_outs[] = {
606                 "Front Line-Out", "Surround Line-Out", "Bass Line-Out"
607         };
608
609         fix_volume_caps(codec, dac);
610         if (!spec->vmaster_sw) {
611                 err = add_vmaster(codec, dac);
612                 if (err < 0)
613                         return err;
614         }
615
616         index = 0;
617         switch (type) {
618         case AUTO_PIN_HP_OUT:
619                 name = "Headphone";
620                 index = idx;
621                 break;
622         case AUTO_PIN_SPEAKER_OUT:
623                 if (num_ctls > 1)
624                         name = speakers[idx];
625                 else
626                         name = "Speaker";
627                 break;
628         default:
629                 if (num_ctls > 1)
630                         name = line_outs[idx];
631                 else
632                         name = "Line-Out";
633                 break;
634         }
635
636         err = add_mute(codec, name, index,
637                        HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT), 0, &kctl);
638         if (err < 0)
639                 return err;
640         err = snd_ctl_add_slave(spec->vmaster_sw, kctl);
641         if (err < 0)
642                 return err;
643
644         err = add_volume(codec, name, index,
645                          HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT), 0, &kctl);
646         if (err < 0)
647                 return err;
648         err = snd_ctl_add_slave(spec->vmaster_vol, kctl);
649         if (err < 0)
650                 return err;
651
652         return 0;
653 }               
654
655 static int build_output(struct hda_codec *codec)
656 {
657         struct cs_spec *spec = codec->spec;
658         struct auto_pin_cfg *cfg = &spec->autocfg;
659         int i, err;
660
661         for (i = 0; i < cfg->line_outs; i++) {
662                 err = add_output(codec, get_dac(codec, cfg->line_out_pins[i]),
663                                  i, cfg->line_outs, cfg->line_out_type);
664                 if (err < 0)
665                         return err;
666         }
667         for (i = 0; i < cfg->hp_outs; i++) {
668                 err = add_output(codec, get_dac(codec, cfg->hp_pins[i]),
669                                  i, cfg->hp_outs, AUTO_PIN_HP_OUT);
670                 if (err < 0)
671                         return err;
672         }
673         for (i = 0; i < cfg->speaker_outs; i++) {
674                 err = add_output(codec, get_dac(codec, cfg->speaker_pins[i]),
675                                  i, cfg->speaker_outs, AUTO_PIN_SPEAKER_OUT);
676                 if (err < 0)
677                         return err;
678         }
679         return 0;
680 }
681
682 /*
683  */
684
685 static const struct snd_kcontrol_new cs_capture_ctls[] = {
686         HDA_BIND_SW("Capture Switch", 0),
687         HDA_BIND_VOL("Capture Volume", 0),
688 };
689
690 static int change_cur_input(struct hda_codec *codec, unsigned int idx,
691                             int force)
692 {
693         struct cs_spec *spec = codec->spec;
694         
695         if (spec->cur_input == idx && !force)
696                 return 0;
697         if (spec->cur_adc && spec->cur_adc != spec->adc_nid[idx]) {
698                 /* stream is running, let's swap the current ADC */
699                 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
700                 spec->cur_adc = spec->adc_nid[idx];
701                 snd_hda_codec_setup_stream(codec, spec->cur_adc,
702                                            spec->cur_adc_stream_tag, 0,
703                                            spec->cur_adc_format);
704         }
705         spec->cur_input = idx;
706         cs_update_input_select(codec);
707         return 1;
708 }
709
710 static int cs_capture_source_info(struct snd_kcontrol *kcontrol,
711                                   struct snd_ctl_elem_info *uinfo)
712 {
713         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
714         struct cs_spec *spec = codec->spec;
715         struct auto_pin_cfg *cfg = &spec->autocfg;
716         unsigned int idx;
717
718         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
719         uinfo->count = 1;
720         uinfo->value.enumerated.items = spec->num_inputs;
721         if (uinfo->value.enumerated.item >= spec->num_inputs)
722                 uinfo->value.enumerated.item = spec->num_inputs - 1;
723         idx = spec->input_idx[uinfo->value.enumerated.item];
724         strcpy(uinfo->value.enumerated.name,
725                hda_get_input_pin_label(codec, cfg->inputs[idx].pin, 1));
726         return 0;
727 }
728
729 static int cs_capture_source_get(struct snd_kcontrol *kcontrol,
730                                  struct snd_ctl_elem_value *ucontrol)
731 {
732         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
733         struct cs_spec *spec = codec->spec;
734         ucontrol->value.enumerated.item[0] = spec->capsrc_idx[spec->cur_input];
735         return 0;
736 }
737
738 static int cs_capture_source_put(struct snd_kcontrol *kcontrol,
739                                  struct snd_ctl_elem_value *ucontrol)
740 {
741         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
742         struct cs_spec *spec = codec->spec;
743         unsigned int idx = ucontrol->value.enumerated.item[0];
744
745         if (idx >= spec->num_inputs)
746                 return -EINVAL;
747         idx = spec->input_idx[idx];
748         return change_cur_input(codec, idx, 0);
749 }
750
751 static const struct snd_kcontrol_new cs_capture_source = {
752         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
753         .name = "Capture Source",
754         .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
755         .info = cs_capture_source_info,
756         .get = cs_capture_source_get,
757         .put = cs_capture_source_put,
758 };
759
760 static const struct hda_bind_ctls *make_bind_capture(struct hda_codec *codec,
761                                                struct hda_ctl_ops *ops)
762 {
763         struct cs_spec *spec = codec->spec;
764         struct hda_bind_ctls *bind;
765         int i, n;
766
767         bind = kzalloc(sizeof(*bind) + sizeof(long) * (spec->num_inputs + 1),
768                        GFP_KERNEL);
769         if (!bind)
770                 return NULL;
771         bind->ops = ops;
772         n = 0;
773         for (i = 0; i < AUTO_PIN_LAST; i++) {
774                 if (!spec->adc_nid[i])
775                         continue;
776                 bind->values[n++] =
777                         HDA_COMPOSE_AMP_VAL(spec->adc_nid[i], 3,
778                                             spec->adc_idx[i], HDA_INPUT);
779         }
780         return bind;
781 }
782
783 /* add a (input-boost) volume control to the given input pin */
784 static int add_input_volume_control(struct hda_codec *codec,
785                                     struct auto_pin_cfg *cfg,
786                                     int item)
787 {
788         hda_nid_t pin = cfg->inputs[item].pin;
789         u32 caps;
790         const char *label;
791         struct snd_kcontrol *kctl;
792                 
793         if (!(get_wcaps(codec, pin) & AC_WCAP_IN_AMP))
794                 return 0;
795         caps = query_amp_caps(codec, pin, HDA_INPUT);
796         caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
797         if (caps <= 1)
798                 return 0;
799         label = hda_get_autocfg_input_label(codec, cfg, item);
800         return add_volume(codec, label, 0,
801                           HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_INPUT), 1, &kctl);
802 }
803
804 static int build_input(struct hda_codec *codec)
805 {
806         struct cs_spec *spec = codec->spec;
807         int i, err;
808
809         if (!spec->num_inputs)
810                 return 0;
811
812         /* make bind-capture */
813         spec->capture_bind[0] = make_bind_capture(codec, &snd_hda_bind_sw);
814         spec->capture_bind[1] = make_bind_capture(codec, &snd_hda_bind_vol);
815         for (i = 0; i < 2; i++) {
816                 struct snd_kcontrol *kctl;
817                 int n;
818                 if (!spec->capture_bind[i])
819                         return -ENOMEM;
820                 kctl = snd_ctl_new1(&cs_capture_ctls[i], codec);
821                 if (!kctl)
822                         return -ENOMEM;
823                 kctl->private_value = (long)spec->capture_bind[i];
824                 err = snd_hda_ctl_add(codec, 0, kctl);
825                 if (err < 0)
826                         return err;
827                 for (n = 0; n < AUTO_PIN_LAST; n++) {
828                         if (!spec->adc_nid[n])
829                                 continue;
830                         err = snd_hda_add_nid(codec, kctl, 0, spec->adc_nid[n]);
831                         if (err < 0)
832                                 return err;
833                 }
834         }
835         
836         if (spec->num_inputs > 1 && !spec->mic_detect) {
837                 err = snd_hda_ctl_add(codec, 0,
838                                       snd_ctl_new1(&cs_capture_source, codec));
839                 if (err < 0)
840                         return err;
841         }
842
843         for (i = 0; i < spec->num_inputs; i++) {
844                 err = add_input_volume_control(codec, &spec->autocfg, i);
845                 if (err < 0)
846                         return err;
847         }
848
849         return 0;
850 }
851
852 /*
853  */
854
855 static int build_digital_output(struct hda_codec *codec)
856 {
857         struct cs_spec *spec = codec->spec;
858         int err;
859
860         if (!spec->multiout.dig_out_nid)
861                 return 0;
862
863         err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid,
864                                             spec->multiout.dig_out_nid);
865         if (err < 0)
866                 return err;
867         err = snd_hda_create_spdif_share_sw(codec, &spec->multiout);
868         if (err < 0)
869                 return err;
870         return 0;
871 }
872
873 static int build_digital_input(struct hda_codec *codec)
874 {
875         struct cs_spec *spec = codec->spec;
876         if (spec->dig_in)
877                 return snd_hda_create_spdif_in_ctls(codec, spec->dig_in);
878         return 0;
879 }
880
881 /*
882  * auto-mute and auto-mic switching
883  * CS421x auto-output redirecting
884  * HP/SPK/SPDIF
885  */
886
887 static void cs_automute(struct hda_codec *codec)
888 {
889         struct cs_spec *spec = codec->spec;
890         struct auto_pin_cfg *cfg = &spec->autocfg;
891         unsigned int hp_present;
892         unsigned int spdif_present;
893         hda_nid_t nid;
894         int i;
895
896         spdif_present = 0;
897         if (cfg->dig_outs) {
898                 nid = cfg->dig_out_pins[0];
899                 if (is_jack_detectable(codec, nid)) {
900                         /*
901                         TODO: SPDIF output redirect when SENSE_B is enabled.
902                         Shared (SENSE_A) jack (e.g HP/mini-TOSLINK)
903                         assumed.
904                         */
905                         if (snd_hda_jack_detect(codec, nid)
906                                 /* && spec->sense_b */)
907                                 spdif_present = 1;
908                 }
909         }
910
911         hp_present = 0;
912         for (i = 0; i < cfg->hp_outs; i++) {
913                 nid = cfg->hp_pins[i];
914                 if (!is_jack_detectable(codec, nid))
915                         continue;
916                 hp_present = snd_hda_jack_detect(codec, nid);
917                 if (hp_present)
918                         break;
919         }
920
921         /* mute speakers if spdif or hp jack is plugged in */
922         for (i = 0; i < cfg->speaker_outs; i++) {
923                 int pin_ctl = hp_present ? 0 : PIN_OUT;
924                 /* detect on spdif is specific to CS421x */
925                 if (spdif_present && (spec->vendor_nid == CS421X_VENDOR_NID))
926                         pin_ctl = 0;
927
928                 nid = cfg->speaker_pins[i];
929                 snd_hda_codec_write(codec, nid, 0,
930                                     AC_VERB_SET_PIN_WIDGET_CONTROL, pin_ctl);
931         }
932         if (spec->gpio_eapd_hp) {
933                 unsigned int gpio = hp_present ?
934                         spec->gpio_eapd_hp : spec->gpio_eapd_speaker;
935                 snd_hda_codec_write(codec, 0x01, 0,
936                                     AC_VERB_SET_GPIO_DATA, gpio);
937         }
938
939         /* specific to CS421x */
940         if (spec->vendor_nid == CS421X_VENDOR_NID) {
941                 /* mute HPs if spdif jack (SENSE_B) is present */
942                 for (i = 0; i < cfg->hp_outs; i++) {
943                         nid = cfg->hp_pins[i];
944                         snd_hda_codec_write(codec, nid, 0,
945                                 AC_VERB_SET_PIN_WIDGET_CONTROL,
946                                 (spdif_present && spec->sense_b) ? 0 : PIN_HP);
947                 }
948
949                 /* SPDIF TX on/off */
950                 if (cfg->dig_outs) {
951                         nid = cfg->dig_out_pins[0];
952                         snd_hda_codec_write(codec, nid, 0,
953                                 AC_VERB_SET_PIN_WIDGET_CONTROL,
954                                 spdif_present ? PIN_OUT : 0);
955
956                 }
957                 /* Update board GPIOs if neccessary ... */
958         }
959 }
960
961 /*
962  * Auto-input redirect for CS421x
963  * Switch max 3 inputs of a single ADC (nid 3)
964 */
965
966 static void cs_automic(struct hda_codec *codec)
967 {
968         struct cs_spec *spec = codec->spec;
969         struct auto_pin_cfg *cfg = &spec->autocfg;
970         hda_nid_t nid;
971         unsigned int present;
972
973         nid = cfg->inputs[spec->automic_idx].pin;
974         present = snd_hda_jack_detect(codec, nid);
975
976         /* specific to CS421x, single ADC */
977         if (spec->vendor_nid == CS421X_VENDOR_NID) {
978                 if (present) {
979                         if (spec->cur_input != spec->automic_idx) {
980                                 spec->last_input = spec->cur_input;
981                                 spec->cur_input = spec->automic_idx;
982                         }
983                 } else  {
984                         spec->cur_input = spec->last_input;
985                 }
986                 cs_update_input_select(codec);
987         } else {
988                 if (present)
989                         change_cur_input(codec, spec->automic_idx, 0);
990                 else
991                         change_cur_input(codec, !spec->automic_idx, 0);
992         }
993 }
994
995 /*
996  */
997
998 static void init_output(struct hda_codec *codec)
999 {
1000         struct cs_spec *spec = codec->spec;
1001         struct auto_pin_cfg *cfg = &spec->autocfg;
1002         int i;
1003
1004         /* mute first */
1005         for (i = 0; i < spec->multiout.num_dacs; i++)
1006                 snd_hda_codec_write(codec, spec->multiout.dac_nids[i], 0,
1007                                     AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
1008         if (spec->multiout.hp_nid)
1009                 snd_hda_codec_write(codec, spec->multiout.hp_nid, 0,
1010                                     AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
1011         for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++) {
1012                 if (!spec->multiout.extra_out_nid[i])
1013                         break;
1014                 snd_hda_codec_write(codec, spec->multiout.extra_out_nid[i], 0,
1015                                     AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
1016         }
1017
1018         /* set appropriate pin controls */
1019         for (i = 0; i < cfg->line_outs; i++)
1020                 snd_hda_codec_write(codec, cfg->line_out_pins[i], 0,
1021                                     AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
1022         /* HP */
1023         for (i = 0; i < cfg->hp_outs; i++) {
1024                 hda_nid_t nid = cfg->hp_pins[i];
1025                 snd_hda_codec_write(codec, nid, 0,
1026                                     AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
1027                 if (!cfg->speaker_outs)
1028                         continue;
1029                 if (get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP) {
1030                         snd_hda_codec_write(codec, nid, 0,
1031                                             AC_VERB_SET_UNSOLICITED_ENABLE,
1032                                             AC_USRSP_EN | HP_EVENT);
1033                         spec->hp_detect = 1;
1034                 }
1035         }
1036
1037         /* Speaker */
1038         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);
1041
1042         /* SPDIF is enabled on presence detect for CS421x */
1043         if (spec->hp_detect || spec->spdif_detect)
1044                 cs_automute(codec);
1045 }
1046
1047 static void init_input(struct hda_codec *codec)
1048 {
1049         struct cs_spec *spec = codec->spec;
1050         struct auto_pin_cfg *cfg = &spec->autocfg;
1051         unsigned int coef;
1052         int i;
1053
1054         for (i = 0; i < cfg->num_inputs; i++) {
1055                 unsigned int ctl;
1056                 hda_nid_t pin = cfg->inputs[i].pin;
1057                 if (!spec->adc_nid[i])
1058                         continue;
1059                 /* set appropriate pin control and mute first */
1060                 ctl = PIN_IN;
1061                 if (cfg->inputs[i].type == AUTO_PIN_MIC) {
1062                         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)
1073                         snd_hda_codec_write(codec, pin, 0,
1074                                             AC_VERB_SET_UNSOLICITED_ENABLE,
1075                                             AC_USRSP_EN | MIC_EVENT);
1076         }
1077         /* specific to CS421x */
1078         if (spec->vendor_nid == CS421X_VENDOR_NID) {
1079                 if (spec->mic_detect)
1080                         cs_automic(codec);
1081                 else  {
1082                         spec->cur_adc = spec->adc_nid[spec->cur_input];
1083                         cs_update_input_select(codec);
1084                 }
1085         } else {
1086                 change_cur_input(codec, spec->cur_input, 1);
1087                 if (spec->mic_detect)
1088                         cs_automic(codec);
1089
1090                 coef = 0x000a; /* ADC1/2 - Digital and Analog Soft Ramp */
1091                 cs_vendor_coef_set(codec, IDX_ADC_CFG, coef);
1092
1093                 coef = cs_vendor_coef_get(codec, IDX_BEEP_CFG);
1094                 if (is_active_pin(codec, CS_DMIC2_PIN_NID))
1095                         coef |= 1 << 4; /* DMIC2 2 chan on, GPIO1 off */
1096                 if (is_active_pin(codec, CS_DMIC1_PIN_NID))
1097                         coef |= 1 << 3; /* DMIC1 2 chan on, GPIO0 off
1098                                          * No effect if SPDIF_OUT2 is
1099                                          * selected in IDX_SPDIF_CTL.
1100                                         */
1101
1102                 cs_vendor_coef_set(codec, IDX_BEEP_CFG, coef);
1103         }
1104 }
1105
1106 static const struct hda_verb cs_coef_init_verbs[] = {
1107         {0x11, AC_VERB_SET_PROC_STATE, 1},
1108         {0x11, AC_VERB_SET_COEF_INDEX, IDX_DAC_CFG},
1109         {0x11, AC_VERB_SET_PROC_COEF,
1110          (0x002a /* DAC1/2/3 SZCMode Soft Ramp */
1111           | 0x0040 /* Mute DACs on FIFO error */
1112           | 0x1000 /* Enable DACs High Pass Filter */
1113           | 0x0400 /* Disable Coefficient Auto increment */
1114           )},
1115         /* Beep */
1116         {0x11, AC_VERB_SET_COEF_INDEX, IDX_BEEP_CFG},
1117         {0x11, AC_VERB_SET_PROC_COEF, 0x0007}, /* Enable Beep thru DAC1/2/3 */
1118
1119         {} /* terminator */
1120 };
1121
1122 /* Errata: CS4207 rev C0/C1/C2 Silicon
1123  *
1124  * http://www.cirrus.com/en/pubs/errata/ER880C3.pdf
1125  *
1126  * 6. At high temperature (TA > +85°C), the digital supply current (IVD)
1127  * may be excessive (up to an additional 200 Î¼A), which is most easily
1128  * observed while the part is being held in reset (RESET# active low).
1129  *
1130  * Root Cause: At initial powerup of the device, the logic that drives
1131  * the clock and write enable to the S/PDIF SRC RAMs is not properly
1132  * initialized.
1133  * Certain random patterns will cause a steady leakage current in those
1134  * RAM cells. The issue will resolve once the SRCs are used (turned on).
1135  *
1136  * Workaround: The following verb sequence briefly turns on the S/PDIF SRC
1137  * blocks, which will alleviate the issue.
1138  */
1139
1140 static const struct hda_verb cs_errata_init_verbs[] = {
1141         {0x01, AC_VERB_SET_POWER_STATE, 0x00}, /* AFG: D0 */
1142         {0x11, AC_VERB_SET_PROC_STATE, 0x01},  /* VPW: processing on */
1143
1144         {0x11, AC_VERB_SET_COEF_INDEX, 0x0008},
1145         {0x11, AC_VERB_SET_PROC_COEF, 0x9999},
1146         {0x11, AC_VERB_SET_COEF_INDEX, 0x0017},
1147         {0x11, AC_VERB_SET_PROC_COEF, 0xa412},
1148         {0x11, AC_VERB_SET_COEF_INDEX, 0x0001},
1149         {0x11, AC_VERB_SET_PROC_COEF, 0x0009},
1150
1151         {0x07, AC_VERB_SET_POWER_STATE, 0x00}, /* S/PDIF Rx: D0 */
1152         {0x08, AC_VERB_SET_POWER_STATE, 0x00}, /* S/PDIF Tx: D0 */
1153
1154         {0x11, AC_VERB_SET_COEF_INDEX, 0x0017},
1155         {0x11, AC_VERB_SET_PROC_COEF, 0x2412},
1156         {0x11, AC_VERB_SET_COEF_INDEX, 0x0008},
1157         {0x11, AC_VERB_SET_PROC_COEF, 0x0000},
1158         {0x11, AC_VERB_SET_COEF_INDEX, 0x0001},
1159         {0x11, AC_VERB_SET_PROC_COEF, 0x0008},
1160         {0x11, AC_VERB_SET_PROC_STATE, 0x00},
1161
1162 #if 0 /* Don't to set to D3 as we are in power-up sequence */
1163         {0x07, AC_VERB_SET_POWER_STATE, 0x03}, /* S/PDIF Rx: D3 */
1164         {0x08, AC_VERB_SET_POWER_STATE, 0x03}, /* S/PDIF Tx: D3 */
1165         /*{0x01, AC_VERB_SET_POWER_STATE, 0x03},*/ /* AFG: D3 This is already handled */
1166 #endif
1167
1168         {} /* terminator */
1169 };
1170
1171 /* SPDIF setup */
1172 static void init_digital(struct hda_codec *codec)
1173 {
1174         unsigned int coef;
1175
1176         coef = 0x0002; /* SRC_MUTE soft-mute on SPDIF (if no lock) */
1177         coef |= 0x0008; /* Replace with mute on error */
1178         if (is_active_pin(codec, CS_DIG_OUT2_PIN_NID))
1179                 coef |= 0x4000; /* RX to TX1 or TX2 Loopthru / SPDIF2
1180                                  * SPDIF_OUT2 is shared with GPIO1 and
1181                                  * DMIC_SDA2.
1182                                  */
1183         cs_vendor_coef_set(codec, IDX_SPDIF_CTL, coef);
1184 }
1185
1186 static int cs_init(struct hda_codec *codec)
1187 {
1188         struct cs_spec *spec = codec->spec;
1189
1190         /* init_verb sequence for C0/C1/C2 errata*/
1191         snd_hda_sequence_write(codec, cs_errata_init_verbs);
1192
1193         snd_hda_sequence_write(codec, cs_coef_init_verbs);
1194
1195         if (spec->gpio_mask) {
1196                 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_MASK,
1197                                     spec->gpio_mask);
1198                 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DIRECTION,
1199                                     spec->gpio_dir);
1200                 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
1201                                     spec->gpio_data);
1202         }
1203
1204         init_output(codec);
1205         init_input(codec);
1206         init_digital(codec);
1207         return 0;
1208 }
1209
1210 static int cs_build_controls(struct hda_codec *codec)
1211 {
1212         int err;
1213
1214         err = build_output(codec);
1215         if (err < 0)
1216                 return err;
1217         err = build_input(codec);
1218         if (err < 0)
1219                 return err;
1220         err = build_digital_output(codec);
1221         if (err < 0)
1222                 return err;
1223         err = build_digital_input(codec);
1224         if (err < 0)
1225                 return err;
1226         return cs_init(codec);
1227 }
1228
1229 static void cs_free(struct hda_codec *codec)
1230 {
1231         struct cs_spec *spec = codec->spec;
1232         kfree(spec->capture_bind[0]);
1233         kfree(spec->capture_bind[1]);
1234         kfree(codec->spec);
1235 }
1236
1237 static void cs_unsol_event(struct hda_codec *codec, unsigned int res)
1238 {
1239         switch ((res >> 26) & 0x7f) {
1240         case HP_EVENT:
1241                 cs_automute(codec);
1242                 break;
1243         case MIC_EVENT:
1244                 cs_automic(codec);
1245                 break;
1246         }
1247 }
1248
1249 static const struct hda_codec_ops cs_patch_ops = {
1250         .build_controls = cs_build_controls,
1251         .build_pcms = cs_build_pcms,
1252         .init = cs_init,
1253         .free = cs_free,
1254         .unsol_event = cs_unsol_event,
1255 };
1256
1257 static int cs_parse_auto_config(struct hda_codec *codec)
1258 {
1259         struct cs_spec *spec = codec->spec;
1260         int err;
1261
1262         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
1263         if (err < 0)
1264                 return err;
1265
1266         err = parse_output(codec);
1267         if (err < 0)
1268                 return err;
1269         err = parse_input(codec);
1270         if (err < 0)
1271                 return err;
1272         err = parse_digital_output(codec);
1273         if (err < 0)
1274                 return err;
1275         err = parse_digital_input(codec);
1276         if (err < 0)
1277                 return err;
1278         return 0;
1279 }
1280
1281 static const char * const cs420x_models[CS420X_MODELS] = {
1282         [CS420X_MBP53] = "mbp53",
1283         [CS420X_MBP55] = "mbp55",
1284         [CS420X_IMAC27] = "imac27",
1285         [CS420X_APPLE] = "apple",
1286         [CS420X_AUTO] = "auto",
1287 };
1288
1289
1290 static const struct snd_pci_quirk cs420x_cfg_tbl[] = {
1291         SND_PCI_QUIRK(0x10de, 0x0ac0, "MacBookPro 5,3", CS420X_MBP53),
1292         SND_PCI_QUIRK(0x10de, 0x0d94, "MacBookAir 3,1(2)", CS420X_MBP55),
1293         SND_PCI_QUIRK(0x10de, 0xcb79, "MacBookPro 5,5", CS420X_MBP55),
1294         SND_PCI_QUIRK(0x10de, 0xcb89, "MacBookPro 7,1", CS420X_MBP55),
1295         /* this conflicts with too many other models */
1296         /*SND_PCI_QUIRK(0x8086, 0x7270, "IMac 27 Inch", CS420X_IMAC27),*/
1297         {} /* terminator */
1298 };
1299
1300 static const struct snd_pci_quirk cs420x_codec_cfg_tbl[] = {
1301         SND_PCI_QUIRK_VENDOR(0x106b, "Apple", CS420X_APPLE),
1302         {} /* terminator */
1303 };
1304
1305 struct cs_pincfg {
1306         hda_nid_t nid;
1307         u32 val;
1308 };
1309
1310 static const struct cs_pincfg mbp53_pincfgs[] = {
1311         { 0x09, 0x012b4050 },
1312         { 0x0a, 0x90100141 },
1313         { 0x0b, 0x90100140 },
1314         { 0x0c, 0x018b3020 },
1315         { 0x0d, 0x90a00110 },
1316         { 0x0e, 0x400000f0 },
1317         { 0x0f, 0x01cbe030 },
1318         { 0x10, 0x014be060 },
1319         { 0x12, 0x400000f0 },
1320         { 0x15, 0x400000f0 },
1321         {} /* terminator */
1322 };
1323
1324 static const struct cs_pincfg mbp55_pincfgs[] = {
1325         { 0x09, 0x012b4030 },
1326         { 0x0a, 0x90100121 },
1327         { 0x0b, 0x90100120 },
1328         { 0x0c, 0x400000f0 },
1329         { 0x0d, 0x90a00110 },
1330         { 0x0e, 0x400000f0 },
1331         { 0x0f, 0x400000f0 },
1332         { 0x10, 0x014be040 },
1333         { 0x12, 0x400000f0 },
1334         { 0x15, 0x400000f0 },
1335         {} /* terminator */
1336 };
1337
1338 static const struct cs_pincfg imac27_pincfgs[] = {
1339         { 0x09, 0x012b4050 },
1340         { 0x0a, 0x90100140 },
1341         { 0x0b, 0x90100142 },
1342         { 0x0c, 0x018b3020 },
1343         { 0x0d, 0x90a00110 },
1344         { 0x0e, 0x400000f0 },
1345         { 0x0f, 0x01cbe030 },
1346         { 0x10, 0x014be060 },
1347         { 0x12, 0x01ab9070 },
1348         { 0x15, 0x400000f0 },
1349         {} /* terminator */
1350 };
1351
1352 static const struct cs_pincfg *cs_pincfgs[CS420X_MODELS] = {
1353         [CS420X_MBP53] = mbp53_pincfgs,
1354         [CS420X_MBP55] = mbp55_pincfgs,
1355         [CS420X_IMAC27] = imac27_pincfgs,
1356 };
1357
1358 static void fix_pincfg(struct hda_codec *codec, int model,
1359                        const struct cs_pincfg **pin_configs)
1360 {
1361         const struct cs_pincfg *cfg = pin_configs[model];
1362         if (!cfg)
1363                 return;
1364         for (; cfg->nid; cfg++)
1365                 snd_hda_codec_set_pincfg(codec, cfg->nid, cfg->val);
1366 }
1367
1368 static int patch_cs420x(struct hda_codec *codec)
1369 {
1370         struct cs_spec *spec;
1371         int err;
1372
1373         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1374         if (!spec)
1375                 return -ENOMEM;
1376         codec->spec = spec;
1377
1378         spec->vendor_nid = CS420X_VENDOR_NID;
1379
1380         spec->board_config =
1381                 snd_hda_check_board_config(codec, CS420X_MODELS,
1382                                            cs420x_models, cs420x_cfg_tbl);
1383         if (spec->board_config < 0)
1384                 spec->board_config =
1385                         snd_hda_check_board_codec_sid_config(codec,
1386                                 CS420X_MODELS, NULL, cs420x_codec_cfg_tbl);
1387         if (spec->board_config >= 0)
1388                 fix_pincfg(codec, spec->board_config, cs_pincfgs);
1389
1390         switch (spec->board_config) {
1391         case CS420X_IMAC27:
1392         case CS420X_MBP53:
1393         case CS420X_MBP55:
1394         case CS420X_APPLE:
1395                 spec->gpio_eapd_hp = 2; /* GPIO1 = headphones */
1396                 spec->gpio_eapd_speaker = 8; /* GPIO3 = speakers */
1397                 spec->gpio_mask = spec->gpio_dir =
1398                         spec->gpio_eapd_hp | spec->gpio_eapd_speaker;
1399                 break;
1400         }
1401
1402         err = cs_parse_auto_config(codec);
1403         if (err < 0)
1404                 goto error;
1405
1406         codec->patch_ops = cs_patch_ops;
1407
1408         return 0;
1409
1410  error:
1411         cs_free(codec);
1412         codec->spec = NULL;
1413         return err;
1414 }
1415
1416 /*
1417  * Cirrus Logic CS4210
1418  *
1419  * 1 DAC => HP(sense) / Speakers,
1420  * 1 ADC <= LineIn(sense) / MicIn / DMicIn,
1421  * 1 SPDIF OUT => SPDIF Trasmitter(sense)
1422 */
1423
1424 /* CS4210 board names */
1425 static const char *cs421x_models[CS421X_MODELS] = {
1426         [CS421X_CDB4210] = "cdb4210",
1427 };
1428
1429 static const struct snd_pci_quirk cs421x_cfg_tbl[] = {
1430         /* Test Intel board + CDB2410  */
1431         SND_PCI_QUIRK(0x8086, 0x5001, "DP45SG/CDB4210", CS421X_CDB4210),
1432         {} /* terminator */
1433 };
1434
1435 /* CS4210 board pinconfigs */
1436 /* Default CS4210 (CDB4210)*/
1437 static const struct cs_pincfg cdb4210_pincfgs[] = {
1438         { 0x05, 0x0321401f },
1439         { 0x06, 0x90170010 },
1440         { 0x07, 0x03813031 },
1441         { 0x08, 0xb7a70037 },
1442         { 0x09, 0xb7a6003e },
1443         { 0x0a, 0x034510f0 },
1444         {} /* terminator */
1445 };
1446
1447 static const struct cs_pincfg *cs421x_pincfgs[CS421X_MODELS] = {
1448         [CS421X_CDB4210] = cdb4210_pincfgs,
1449 };
1450
1451 static const struct hda_verb cs421x_coef_init_verbs[] = {
1452         {0x0B, AC_VERB_SET_PROC_STATE, 1},
1453         {0x0B, AC_VERB_SET_COEF_INDEX, CS421X_IDX_DEV_CFG},
1454         /*
1455             Disable Coefficient Index Auto-Increment(DAI)=1,
1456             PDREF=0
1457         */
1458         {0x0B, AC_VERB_SET_PROC_COEF, 0x0001 },
1459
1460         {0x0B, AC_VERB_SET_COEF_INDEX, CS421X_IDX_ADC_CFG},
1461         /* ADC SZCMode = Digital Soft Ramp */
1462         {0x0B, AC_VERB_SET_PROC_COEF, 0x0002 },
1463
1464         {0x0B, AC_VERB_SET_COEF_INDEX, CS421X_IDX_DAC_CFG},
1465         {0x0B, AC_VERB_SET_PROC_COEF,
1466          (0x0002 /* DAC SZCMode = Digital Soft Ramp */
1467           | 0x0004 /* Mute DAC on FIFO error */
1468           | 0x0008 /* Enable DAC High Pass Filter */
1469           )},
1470         {} /* terminator */
1471 };
1472
1473 /* Errata: CS4210 rev A1 Silicon
1474  *
1475  * http://www.cirrus.com/en/pubs/errata/
1476  *
1477  * Description:
1478  * 1. Performance degredation is present in the ADC.
1479  * 2. Speaker output is not completely muted upon HP detect.
1480  * 3. Noise is present when clipping occurs on the amplified
1481  *    speaker outputs.
1482  *
1483  * Workaround:
1484  * The following verb sequence written to the registers during
1485  * initialization will correct the issues listed above.
1486  */
1487
1488 static const struct hda_verb cs421x_coef_init_verbs_A1_silicon_fixes[] = {
1489         {0x0B, AC_VERB_SET_PROC_STATE, 0x01},  /* VPW: processing on */
1490
1491         {0x0B, AC_VERB_SET_COEF_INDEX, 0x0006},
1492         {0x0B, AC_VERB_SET_PROC_COEF, 0x9999}, /* Test mode: on */
1493
1494         {0x0B, AC_VERB_SET_COEF_INDEX, 0x000A},
1495         {0x0B, AC_VERB_SET_PROC_COEF, 0x14CB}, /* Chop double */
1496
1497         {0x0B, AC_VERB_SET_COEF_INDEX, 0x0011},
1498         {0x0B, AC_VERB_SET_PROC_COEF, 0xA2D0}, /* Increase ADC current */
1499
1500         {0x0B, AC_VERB_SET_COEF_INDEX, 0x001A},
1501         {0x0B, AC_VERB_SET_PROC_COEF, 0x02A9}, /* Mute speaker */
1502
1503         {0x0B, AC_VERB_SET_COEF_INDEX, 0x001B},
1504         {0x0B, AC_VERB_SET_PROC_COEF, 0X1006}, /* Remove noise */
1505
1506         {} /* terminator */
1507 };
1508
1509 /* Speaker Amp Gain is controlled by the vendor widget's coef 4 */
1510 static const DECLARE_TLV_DB_SCALE(cs421x_speaker_boost_db_scale, 900, 300, 0);
1511
1512 static int cs421x_boost_vol_info(struct snd_kcontrol *kcontrol,
1513                                 struct snd_ctl_elem_info *uinfo)
1514 {
1515         uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1516         uinfo->count = 1;
1517         uinfo->value.integer.min = 0;
1518         uinfo->value.integer.max = 3;
1519         return 0;
1520 }
1521
1522 static int cs421x_boost_vol_get(struct snd_kcontrol *kcontrol,
1523                                 struct snd_ctl_elem_value *ucontrol)
1524 {
1525         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1526
1527         ucontrol->value.integer.value[0] =
1528                 cs_vendor_coef_get(codec, CS421X_IDX_SPK_CTL) & 0x0003;
1529         return 0;
1530 }
1531
1532 static int cs421x_boost_vol_put(struct snd_kcontrol *kcontrol,
1533                                 struct snd_ctl_elem_value *ucontrol)
1534 {
1535         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1536
1537         unsigned int vol = ucontrol->value.integer.value[0];
1538         unsigned int coef =
1539                 cs_vendor_coef_get(codec, CS421X_IDX_SPK_CTL);
1540         unsigned int original_coef = coef;
1541
1542         coef &= ~0x0003;
1543         coef |= (vol & 0x0003);
1544         if (original_coef == coef)
1545                 return 0;
1546         else {
1547                 cs_vendor_coef_set(codec, CS421X_IDX_SPK_CTL, coef);
1548                 return 1;
1549         }
1550 }
1551
1552 static const struct snd_kcontrol_new cs421x_speaker_bost_ctl = {
1553
1554         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1555         .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE |
1556                         SNDRV_CTL_ELEM_ACCESS_TLV_READ),
1557         .name = "Speaker Boost Playback Volume",
1558         .info = cs421x_boost_vol_info,
1559         .get = cs421x_boost_vol_get,
1560         .put = cs421x_boost_vol_put,
1561         .tlv = { .p = cs421x_speaker_boost_db_scale },
1562 };
1563
1564 static void cs421x_pinmux_init(struct hda_codec *codec)
1565 {
1566         struct cs_spec *spec = codec->spec;
1567         unsigned int def_conf, coef;
1568
1569         /* GPIO, DMIC_SCL, DMIC_SDA and SENSE_B are multiplexed */
1570         coef = cs_vendor_coef_get(codec, CS421X_IDX_DEV_CFG);
1571
1572         if (spec->gpio_mask)
1573                 coef |= 0x0008; /* B1,B2 are GPIOs */
1574         else
1575                 coef &= ~0x0008;
1576
1577         if (spec->sense_b)
1578                 coef |= 0x0010; /* B2 is SENSE_B, not inverted  */
1579         else
1580                 coef &= ~0x0010;
1581
1582         cs_vendor_coef_set(codec, CS421X_IDX_DEV_CFG, coef);
1583
1584         if ((spec->gpio_mask || spec->sense_b) &&
1585             is_active_pin(codec, CS421X_DMIC_PIN_NID)) {
1586
1587                 /*
1588                     GPIO or SENSE_B forced - disconnect the DMIC pin.
1589                 */
1590                 def_conf = snd_hda_codec_get_pincfg(codec, CS421X_DMIC_PIN_NID);
1591                 def_conf &= ~AC_DEFCFG_PORT_CONN;
1592                 def_conf |= (AC_JACK_PORT_NONE << AC_DEFCFG_PORT_CONN_SHIFT);
1593                 snd_hda_codec_set_pincfg(codec, CS421X_DMIC_PIN_NID, def_conf);
1594         }
1595 }
1596
1597 static void init_cs421x_digital(struct hda_codec *codec)
1598 {
1599         struct cs_spec *spec = codec->spec;
1600         struct auto_pin_cfg *cfg = &spec->autocfg;
1601         int i;
1602
1603
1604         for (i = 0; i < cfg->dig_outs; i++) {
1605                 hda_nid_t nid = cfg->dig_out_pins[i];
1606                 if (!cfg->speaker_outs)
1607                         continue;
1608                 if (get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP) {
1609
1610                         snd_hda_codec_write(codec, nid, 0,
1611                                     AC_VERB_SET_UNSOLICITED_ENABLE,
1612                                     AC_USRSP_EN | SPDIF_EVENT);
1613                         spec->spdif_detect = 1;
1614                 }
1615         }
1616 }
1617
1618 static int cs421x_init(struct hda_codec *codec)
1619 {
1620         struct cs_spec *spec = codec->spec;
1621
1622         snd_hda_sequence_write(codec, cs421x_coef_init_verbs);
1623         snd_hda_sequence_write(codec, cs421x_coef_init_verbs_A1_silicon_fixes);
1624
1625         cs421x_pinmux_init(codec);
1626
1627         if (spec->gpio_mask) {
1628                 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_MASK,
1629                                     spec->gpio_mask);
1630                 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DIRECTION,
1631                                     spec->gpio_dir);
1632                 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
1633                                     spec->gpio_data);
1634         }
1635
1636         init_output(codec);
1637         init_input(codec);
1638         init_cs421x_digital(codec);
1639
1640         return 0;
1641 }
1642
1643 /*
1644  * CS4210 Input MUX (1 ADC)
1645  */
1646 static int cs421x_mux_enum_info(struct snd_kcontrol *kcontrol,
1647                                         struct snd_ctl_elem_info *uinfo)
1648 {
1649         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1650         struct cs_spec *spec = codec->spec;
1651
1652         return snd_hda_input_mux_info(&spec->input_mux, uinfo);
1653 }
1654
1655 static int cs421x_mux_enum_get(struct snd_kcontrol *kcontrol,
1656                                         struct snd_ctl_elem_value *ucontrol)
1657 {
1658         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1659         struct cs_spec *spec = codec->spec;
1660
1661         ucontrol->value.enumerated.item[0] = spec->cur_input;
1662         return 0;
1663 }
1664
1665 static int cs421x_mux_enum_put(struct snd_kcontrol *kcontrol,
1666                                         struct snd_ctl_elem_value *ucontrol)
1667 {
1668         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1669         struct cs_spec *spec = codec->spec;
1670
1671         return snd_hda_input_mux_put(codec, &spec->input_mux, ucontrol,
1672                                 spec->adc_nid[0], &spec->cur_input);
1673
1674 }
1675
1676 static struct snd_kcontrol_new cs421x_capture_source = {
1677
1678         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1679         .name = "Capture Source",
1680         .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
1681         .info = cs421x_mux_enum_info,
1682         .get = cs421x_mux_enum_get,
1683         .put = cs421x_mux_enum_put,
1684 };
1685
1686 static int cs421x_add_input_volume_control(struct hda_codec *codec, int item)
1687 {
1688         struct cs_spec *spec = codec->spec;
1689         struct auto_pin_cfg *cfg = &spec->autocfg;
1690         const struct hda_input_mux *imux = &spec->input_mux;
1691         hda_nid_t pin = cfg->inputs[item].pin;
1692         struct snd_kcontrol *kctl;
1693         u32 caps;
1694
1695         if (!(get_wcaps(codec, pin) & AC_WCAP_IN_AMP))
1696                 return 0;
1697
1698         caps = query_amp_caps(codec, pin, HDA_INPUT);
1699         caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1700         if (caps <= 1)
1701                 return 0;
1702
1703         return add_volume(codec,  imux->items[item].label, 0,
1704                           HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_INPUT), 1, &kctl);
1705 }
1706
1707 /* add a (input-boost) volume control to the given input pin */
1708 static int build_cs421x_input(struct hda_codec *codec)
1709 {
1710         struct cs_spec *spec = codec->spec;
1711         struct auto_pin_cfg *cfg = &spec->autocfg;
1712         struct hda_input_mux *imux = &spec->input_mux;
1713         int i, err, type_idx;
1714         const char *label;
1715
1716         if (!spec->num_inputs)
1717                 return 0;
1718
1719         /* make bind-capture */
1720         spec->capture_bind[0] = make_bind_capture(codec, &snd_hda_bind_sw);
1721         spec->capture_bind[1] = make_bind_capture(codec, &snd_hda_bind_vol);
1722         for (i = 0; i < 2; i++) {
1723                 struct snd_kcontrol *kctl;
1724                 int n;
1725                 if (!spec->capture_bind[i])
1726                         return -ENOMEM;
1727                 kctl = snd_ctl_new1(&cs_capture_ctls[i], codec);
1728                 if (!kctl)
1729                         return -ENOMEM;
1730                 kctl->private_value = (long)spec->capture_bind[i];
1731                 err = snd_hda_ctl_add(codec, 0, kctl);
1732                 if (err < 0)
1733                         return err;
1734                 for (n = 0; n < AUTO_PIN_LAST; n++) {
1735                         if (!spec->adc_nid[n])
1736                                 continue;
1737                         err = snd_hda_add_nid(codec, kctl, 0, spec->adc_nid[n]);
1738                         if (err < 0)
1739                                 return err;
1740                 }
1741         }
1742
1743         /* Add Input MUX Items + Capture Volume/Switch */
1744         for (i = 0; i < spec->num_inputs; i++) {
1745                 label = hda_get_autocfg_input_label(codec, cfg, i);
1746                 snd_hda_add_imux_item(imux, label, spec->adc_idx[i], &type_idx);
1747
1748                 err = cs421x_add_input_volume_control(codec, i);
1749                 if (err < 0)
1750                         return err;
1751         }
1752
1753         /*
1754             Add 'Capture Source' Switch if
1755                 * 2 inputs and no mic detec
1756                 * 3 inputs
1757         */
1758         if ((spec->num_inputs == 2 && !spec->mic_detect) ||
1759             (spec->num_inputs == 3)) {
1760
1761                 err = snd_hda_ctl_add(codec, spec->adc_nid[0],
1762                               snd_ctl_new1(&cs421x_capture_source, codec));
1763                 if (err < 0)
1764                         return err;
1765         }
1766
1767         return 0;
1768 }
1769
1770 /* Single DAC (Mute/Gain) */
1771 static int build_cs421x_output(struct hda_codec *codec)
1772 {
1773         hda_nid_t dac = CS4210_DAC_NID;
1774         struct cs_spec *spec = codec->spec;
1775         struct auto_pin_cfg *cfg = &spec->autocfg;
1776         struct snd_kcontrol *kctl;
1777         int err;
1778         char *name = "Master";
1779
1780         fix_volume_caps(codec, dac);
1781
1782         err = add_mute(codec, name, 0,
1783                         HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT), 0, &kctl);
1784         if (err < 0)
1785                 return err;
1786
1787         err = add_volume(codec, name, 0,
1788                         HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT), 0, &kctl);
1789         if (err < 0)
1790                 return err;
1791
1792         if (cfg->speaker_outs) {
1793                 err = snd_hda_ctl_add(codec, 0,
1794                         snd_ctl_new1(&cs421x_speaker_bost_ctl, codec));
1795                 if (err < 0)
1796                         return err;
1797         }
1798         return err;
1799 }
1800
1801 static int cs421x_build_controls(struct hda_codec *codec)
1802 {
1803         int err;
1804
1805         err = build_cs421x_output(codec);
1806         if (err < 0)
1807                 return err;
1808         err = build_cs421x_input(codec);
1809         if (err < 0)
1810                 return err;
1811         err = build_digital_output(codec);
1812         if (err < 0)
1813                 return err;
1814         return cs421x_init(codec);
1815 }
1816
1817 static void cs421x_unsol_event(struct hda_codec *codec, unsigned int res)
1818 {
1819         switch ((res >> 26) & 0x3f) {
1820         case HP_EVENT:
1821         case SPDIF_EVENT:
1822                 cs_automute(codec);
1823                 break;
1824
1825         case MIC_EVENT:
1826                 cs_automic(codec);
1827                 break;
1828         }
1829 }
1830
1831 static int parse_cs421x_input(struct hda_codec *codec)
1832 {
1833         struct cs_spec *spec = codec->spec;
1834         struct auto_pin_cfg *cfg = &spec->autocfg;
1835         int i;
1836
1837         for (i = 0; i < cfg->num_inputs; i++) {
1838                 hda_nid_t pin = cfg->inputs[i].pin;
1839                 spec->adc_nid[i] = get_adc(codec, pin, &spec->adc_idx[i]);
1840                 spec->cur_input = spec->last_input = i;
1841                 spec->num_inputs++;
1842
1843                 /* check whether the automatic mic switch is available */
1844                 if (is_ext_mic(codec, i) && cfg->num_inputs >= 2) {
1845                         spec->mic_detect = 1;
1846                         spec->automic_idx = i;
1847                 }
1848         }
1849         return 0;
1850 }
1851
1852 static int cs421x_parse_auto_config(struct hda_codec *codec)
1853 {
1854         struct cs_spec *spec = codec->spec;
1855         int err;
1856
1857         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
1858         if (err < 0)
1859                 return err;
1860         err = parse_output(codec);
1861         if (err < 0)
1862                 return err;
1863         err = parse_cs421x_input(codec);
1864         if (err < 0)
1865                 return err;
1866         err = parse_digital_output(codec);
1867         if (err < 0)
1868                 return err;
1869         return 0;
1870 }
1871
1872 #ifdef CONFIG_PM
1873 /*
1874         Manage PDREF, when transitioning to D3hot
1875         (DAC,ADC) -> D3, PDREF=1, AFG->D3
1876 */
1877 static int cs421x_suspend(struct hda_codec *codec, pm_message_t state)
1878 {
1879         unsigned int coef;
1880
1881         snd_hda_shutup_pins(codec);
1882
1883         snd_hda_codec_write(codec, CS4210_DAC_NID, 0,
1884                             AC_VERB_SET_POWER_STATE,  AC_PWRST_D3);
1885         snd_hda_codec_write(codec, CS4210_ADC_NID, 0,
1886                             AC_VERB_SET_POWER_STATE,  AC_PWRST_D3);
1887
1888         coef = cs_vendor_coef_get(codec, CS421X_IDX_DEV_CFG);
1889         coef |= 0x0004; /* PDREF */
1890         cs_vendor_coef_set(codec, CS421X_IDX_DEV_CFG, coef);
1891
1892         return 0;
1893 }
1894 #endif
1895
1896 static struct hda_codec_ops cs4210_patch_ops = {
1897         .build_controls = cs421x_build_controls,
1898         .build_pcms = cs_build_pcms,
1899         .init = cs421x_init,
1900         .free = cs_free,
1901         .unsol_event = cs421x_unsol_event,
1902 #ifdef CONFIG_PM
1903         .suspend = cs421x_suspend,
1904 #endif
1905 };
1906
1907 static int patch_cs421x(struct hda_codec *codec)
1908 {
1909         struct cs_spec *spec;
1910         int err;
1911
1912         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1913         if (!spec)
1914                 return -ENOMEM;
1915         codec->spec = spec;
1916
1917         spec->vendor_nid = CS421X_VENDOR_NID;
1918
1919         spec->board_config =
1920                 snd_hda_check_board_config(codec, CS421X_MODELS,
1921                                            cs421x_models, cs421x_cfg_tbl);
1922         if (spec->board_config >= 0)
1923                 fix_pincfg(codec, spec->board_config, cs421x_pincfgs);
1924         /*
1925             Setup GPIO/SENSE for each board (if used)
1926         */
1927         switch (spec->board_config) {
1928         case CS421X_CDB4210:
1929                 snd_printd("CS4210 board: %s\n",
1930                         cs421x_models[spec->board_config]);
1931 /*              spec->gpio_mask = 3;
1932                 spec->gpio_dir = 3;
1933                 spec->gpio_data = 3;
1934 */
1935                 spec->sense_b = 1;
1936
1937                 break;
1938         }
1939
1940         /*
1941             Update the GPIO/DMIC/SENSE_B pinmux before the configuration
1942             is auto-parsed. If GPIO or SENSE_B is forced, DMIC input
1943             is disabled.
1944         */
1945         cs421x_pinmux_init(codec);
1946
1947         err = cs421x_parse_auto_config(codec);
1948         if (err < 0)
1949                 goto error;
1950
1951         codec->patch_ops = cs4210_patch_ops;
1952
1953         return 0;
1954
1955  error:
1956         cs_free(codec);
1957         codec->spec = NULL;
1958         return err;
1959 }
1960
1961
1962 /*
1963  * patch entries
1964  */
1965 static const struct hda_codec_preset snd_hda_preset_cirrus[] = {
1966         { .id = 0x10134206, .name = "CS4206", .patch = patch_cs420x },
1967         { .id = 0x10134207, .name = "CS4207", .patch = patch_cs420x },
1968         { .id = 0x10134210, .name = "CS4210", .patch = patch_cs421x },
1969         {} /* terminator */
1970 };
1971
1972 MODULE_ALIAS("snd-hda-codec-id:10134206");
1973 MODULE_ALIAS("snd-hda-codec-id:10134207");
1974 MODULE_ALIAS("snd-hda-codec-id:10134210");
1975
1976 MODULE_LICENSE("GPL");
1977 MODULE_DESCRIPTION("Cirrus Logic HD-audio codec");
1978
1979 static struct hda_codec_preset_list cirrus_list = {
1980         .preset = snd_hda_preset_cirrus,
1981         .owner = THIS_MODULE,
1982 };
1983
1984 static int __init patch_cirrus_init(void)
1985 {
1986         return snd_hda_add_codec_preset(&cirrus_list);
1987 }
1988
1989 static void __exit patch_cirrus_exit(void)
1990 {
1991         snd_hda_delete_codec_preset(&cirrus_list);
1992 }
1993
1994 module_init(patch_cirrus_init)
1995 module_exit(patch_cirrus_exit)