blob: bd8d46cca2b3132b71a0fc5da99f31f0763d3cc9 [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>
Takashi Iwaie5f14242009-07-01 18:11:44 +020022#include <linux/slab.h>
23#include <linux/pci.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040024#include <linux/module.h>
Takashi Iwaie5f14242009-07-01 18:11:44 +020025#include <sound/core.h>
Takashi Iwai1077a022012-12-19 16:39:18 +010026#include <sound/tlv.h>
Takashi Iwaie5f14242009-07-01 18:11:44 +020027#include "hda_codec.h"
28#include "hda_local.h"
Takashi Iwai128bc4b2012-05-07 17:42:31 +020029#include "hda_auto_parser.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020030#include "hda_jack.h"
Takashi Iwai1077a022012-12-19 16:39:18 +010031#include "hda_generic.h"
Takashi Iwaie5f14242009-07-01 18:11:44 +020032
33/*
34 */
35
36struct cs_spec {
Takashi Iwai1077a022012-12-19 16:39:18 +010037 struct hda_gen_spec gen;
Takashi Iwaie5f14242009-07-01 18:11:44 +020038
Takashi Iwaied208252009-07-07 09:04:26 +020039 unsigned int gpio_mask;
40 unsigned int gpio_dir;
41 unsigned int gpio_data;
Takashi Iwai6dfeb7032011-11-22 20:00:31 +010042 unsigned int gpio_eapd_hp; /* EAPD GPIO bit for headphones */
43 unsigned int gpio_eapd_speaker; /* EAPD GPIO bit for speakers */
Takashi Iwaied208252009-07-07 09:04:26 +020044
Tim Howe56487c22011-07-22 16:41:00 -050045 /* CS421x */
46 unsigned int spdif_detect:1;
Takashi Iwai1077a022012-12-19 16:39:18 +010047 unsigned int spdif_present:1;
Tim Howe56487c22011-07-22 16:41:00 -050048 unsigned int sense_b:1;
49 hda_nid_t vendor_nid;
Takashi Iwaie5f14242009-07-01 18:11:44 +020050};
51
Tim Howe56487c22011-07-22 16:41:00 -050052/* available models with CS420x */
Takashi Iwaia6bae202009-07-06 15:15:22 +020053enum {
Vince Weaver4e7d7c62010-09-22 17:31:37 -040054 CS420X_MBP53,
Takashi Iwaia6bae202009-07-06 15:15:22 +020055 CS420X_MBP55,
Rafael Avila de Espindola1a5ba2e2009-12-22 07:59:37 +010056 CS420X_IMAC27,
Takashi Iwaib35aabd2012-08-24 19:09:45 +020057 CS420X_GPIO_13,
58 CS420X_GPIO_23,
Takashi Iwaief596a52012-09-11 16:53:08 +020059 CS420X_MBP101,
Takashi Iwaiffe4d12b2012-11-23 08:34:13 +010060 CS420X_MBP81,
Takashi Iwaia6bae202009-07-06 15:15:22 +020061 CS420X_AUTO,
Takashi Iwai03efce72012-09-13 09:56:57 +020062 /* aliases */
63 CS420X_IMAC27_122 = CS420X_GPIO_23,
64 CS420X_APPLE = CS420X_GPIO_13,
Takashi Iwaia6bae202009-07-06 15:15:22 +020065};
66
Tim Howe56487c22011-07-22 16:41:00 -050067/* CS421x boards */
68enum {
69 CS421X_CDB4210,
Takashi Iwaib35aabd2012-08-24 19:09:45 +020070 CS421X_SENSE_B,
Dylan Reid4af16102013-04-04 15:35:31 -070071 CS421X_STUMPY,
Tim Howe56487c22011-07-22 16:41:00 -050072};
73
Takashi Iwai40c20fa2009-07-06 13:00:57 +020074/* Vendor-specific processing widget */
75#define CS420X_VENDOR_NID 0x11
76#define CS_DIG_OUT1_PIN_NID 0x10
77#define CS_DIG_OUT2_PIN_NID 0x15
Daniel J Blueman16337e02012-11-04 13:19:03 +080078#define CS_DMIC1_PIN_NID 0x0e
79#define CS_DMIC2_PIN_NID 0x12
Takashi Iwai40c20fa2009-07-06 13:00:57 +020080
81/* coef indices */
82#define IDX_SPDIF_STAT 0x0000
83#define IDX_SPDIF_CTL 0x0001
84#define IDX_ADC_CFG 0x0002
85/* SZC bitmask, 4 modes below:
86 * 0 = immediate,
87 * 1 = digital immediate, analog zero-cross
88 * 2 = digtail & analog soft-ramp
89 * 3 = digital soft-ramp, analog zero-cross
90 */
91#define CS_COEF_ADC_SZC_MASK (3 << 0)
92#define CS_COEF_ADC_MIC_SZC_MODE (3 << 0) /* SZC setup for mic */
93#define CS_COEF_ADC_LI_SZC_MODE (3 << 0) /* SZC setup for line-in */
94/* PGA mode: 0 = differential, 1 = signle-ended */
95#define CS_COEF_ADC_MIC_PGA_MODE (1 << 5) /* PGA setup for mic */
96#define CS_COEF_ADC_LI_PGA_MODE (1 << 6) /* PGA setup for line-in */
97#define IDX_DAC_CFG 0x0003
98/* SZC bitmask, 4 modes below:
99 * 0 = Immediate
100 * 1 = zero-cross
101 * 2 = soft-ramp
102 * 3 = soft-ramp on zero-cross
103 */
104#define CS_COEF_DAC_HP_SZC_MODE (3 << 0) /* nid 0x02 */
105#define CS_COEF_DAC_LO_SZC_MODE (3 << 2) /* nid 0x03 */
106#define CS_COEF_DAC_SPK_SZC_MODE (3 << 4) /* nid 0x04 */
107
108#define IDX_BEEP_CFG 0x0004
109/* 0x0008 - test reg key */
110/* 0x0009 - 0x0014 -> 12 test regs */
111/* 0x0015 - visibility reg */
112
Tim Howe56487c22011-07-22 16:41:00 -0500113/*
114 * Cirrus Logic CS4210
115 *
116 * 1 DAC => HP(sense) / Speakers,
117 * 1 ADC <= LineIn(sense) / MicIn / DMicIn,
118 * 1 SPDIF OUT => SPDIF Trasmitter(sense)
119*/
120#define CS4210_DAC_NID 0x02
121#define CS4210_ADC_NID 0x03
David Henningsson5660ffd2012-01-02 12:40:17 +0100122#define CS4210_VENDOR_NID 0x0B
Tim Howe56487c22011-07-22 16:41:00 -0500123#define CS421X_DMIC_PIN_NID 0x09 /* Port E */
124#define CS421X_SPDIF_PIN_NID 0x0A /* Port H */
125
126#define CS421X_IDX_DEV_CFG 0x01
127#define CS421X_IDX_ADC_CFG 0x02
128#define CS421X_IDX_DAC_CFG 0x03
129#define CS421X_IDX_SPK_CTL 0x04
130
131#define SPDIF_EVENT 0x04
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200132
David Henningsson5660ffd2012-01-02 12:40:17 +0100133/* Cirrus Logic CS4213 is like CS4210 but does not have SPDIF input/output */
134#define CS4213_VENDOR_NID 0x09
135
136
Takashi Iwai277a57c2009-07-08 12:42:08 +0200137static inline int cs_vendor_coef_get(struct hda_codec *codec, unsigned int idx)
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200138{
Tim Howe56487c22011-07-22 16:41:00 -0500139 struct cs_spec *spec = codec->spec;
140 snd_hda_codec_write(codec, spec->vendor_nid, 0,
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200141 AC_VERB_SET_COEF_INDEX, idx);
Tim Howe56487c22011-07-22 16:41:00 -0500142 return snd_hda_codec_read(codec, spec->vendor_nid, 0,
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200143 AC_VERB_GET_PROC_COEF, 0);
144}
145
Takashi Iwai277a57c2009-07-08 12:42:08 +0200146static inline void cs_vendor_coef_set(struct hda_codec *codec, unsigned int idx,
147 unsigned int coef)
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200148{
Tim Howe56487c22011-07-22 16:41:00 -0500149 struct cs_spec *spec = codec->spec;
150 snd_hda_codec_write(codec, spec->vendor_nid, 0,
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200151 AC_VERB_SET_COEF_INDEX, idx);
Tim Howe56487c22011-07-22 16:41:00 -0500152 snd_hda_codec_write(codec, spec->vendor_nid, 0,
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200153 AC_VERB_SET_PROC_COEF, coef);
154}
155
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200156/*
157 * auto-mute and auto-mic switching
Tim Howe56487c22011-07-22 16:41:00 -0500158 * CS421x auto-output redirecting
159 * HP/SPK/SPDIF
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200160 */
161
Takashi Iwai1077a022012-12-19 16:39:18 +0100162static void cs_automute(struct hda_codec *codec)
Takashi Iwaie5f14242009-07-01 18:11:44 +0200163{
164 struct cs_spec *spec = codec->spec;
Takashi Iwaie5f14242009-07-01 18:11:44 +0200165
Takashi Iwai1077a022012-12-19 16:39:18 +0100166 /* mute HPs if spdif jack (SENSE_B) is present */
167 spec->gen.master_mute = !!(spec->spdif_present && spec->sense_b);
Tim Howe56487c22011-07-22 16:41:00 -0500168
Takashi Iwai1077a022012-12-19 16:39:18 +0100169 snd_hda_gen_update_outputs(codec);
Tim Howe56487c22011-07-22 16:41:00 -0500170
Takashi Iwai6dfeb7032011-11-22 20:00:31 +0100171 if (spec->gpio_eapd_hp) {
Takashi Iwai039eb752013-03-18 16:55:49 +0100172 spec->gpio_data = spec->gen.hp_jack_present ?
Takashi Iwai6dfeb7032011-11-22 20:00:31 +0100173 spec->gpio_eapd_hp : spec->gpio_eapd_speaker;
Stelian Pop3a385162009-07-30 14:44:27 +0200174 snd_hda_codec_write(codec, 0x01, 0,
Takashi Iwai039eb752013-03-18 16:55:49 +0100175 AC_VERB_SET_GPIO_DATA, spec->gpio_data);
Stelian Pop3a385162009-07-30 14:44:27 +0200176 }
Takashi Iwaie5f14242009-07-01 18:11:44 +0200177}
178
Takashi Iwai1077a022012-12-19 16:39:18 +0100179static bool is_active_pin(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaie5f14242009-07-01 18:11:44 +0200180{
Takashi Iwai1077a022012-12-19 16:39:18 +0100181 unsigned int val;
182 val = snd_hda_codec_get_pincfg(codec, nid);
183 return (get_defcfg_connect(val) != AC_JACK_PORT_NONE);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200184}
185
Takashi Iwai1077a022012-12-19 16:39:18 +0100186static void init_input_coef(struct hda_codec *codec)
Takashi Iwaie5f14242009-07-01 18:11:44 +0200187{
188 struct cs_spec *spec = codec->spec;
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200189 unsigned int coef;
Takashi Iwaie5f14242009-07-01 18:11:44 +0200190
David Henningsson5660ffd2012-01-02 12:40:17 +0100191 /* CS420x has multiple ADC, CS421x has single ADC */
192 if (spec->vendor_nid == CS420X_VENDOR_NID) {
Daniel J Blueman16337e02012-11-04 13:19:03 +0800193 coef = cs_vendor_coef_get(codec, IDX_BEEP_CFG);
Tim Howe56487c22011-07-22 16:41:00 -0500194 if (is_active_pin(codec, CS_DMIC2_PIN_NID))
Daniel J Blueman16337e02012-11-04 13:19:03 +0800195 coef |= 1 << 4; /* DMIC2 2 chan on, GPIO1 off */
Tim Howe56487c22011-07-22 16:41:00 -0500196 if (is_active_pin(codec, CS_DMIC1_PIN_NID))
Daniel J Blueman16337e02012-11-04 13:19:03 +0800197 coef |= 1 << 3; /* DMIC1 2 chan on, GPIO0 off
Tim Howe56487c22011-07-22 16:41:00 -0500198 * No effect if SPDIF_OUT2 is
199 * selected in IDX_SPDIF_CTL.
200 */
Daniel J Blueman16337e02012-11-04 13:19:03 +0800201
202 cs_vendor_coef_set(codec, IDX_BEEP_CFG, coef);
Tim Howe56487c22011-07-22 16:41:00 -0500203 }
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200204}
205
Takashi Iwaic42d4782011-05-02 11:36:09 +0200206static const struct hda_verb cs_coef_init_verbs[] = {
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200207 {0x11, AC_VERB_SET_PROC_STATE, 1},
208 {0x11, AC_VERB_SET_COEF_INDEX, IDX_DAC_CFG},
209 {0x11, AC_VERB_SET_PROC_COEF,
210 (0x002a /* DAC1/2/3 SZCMode Soft Ramp */
211 | 0x0040 /* Mute DACs on FIFO error */
212 | 0x1000 /* Enable DACs High Pass Filter */
213 | 0x0400 /* Disable Coefficient Auto increment */
214 )},
Takashi Iwai829e87e2012-11-23 08:25:25 +0100215 /* ADC1/2 - Digital and Analog Soft Ramp */
216 {0x11, AC_VERB_SET_COEF_INDEX, IDX_ADC_CFG},
217 {0x11, AC_VERB_SET_PROC_COEF, 0x000a},
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200218 /* Beep */
Alexander Stein5a83b4b2012-11-01 13:42:37 +0100219 {0x11, AC_VERB_SET_COEF_INDEX, IDX_BEEP_CFG},
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200220 {0x11, AC_VERB_SET_PROC_COEF, 0x0007}, /* Enable Beep thru DAC1/2/3 */
221
222 {} /* terminator */
223};
224
Brian Austina769cbc2010-09-07 14:36:22 -0500225/* Errata: CS4207 rev C0/C1/C2 Silicon
226 *
227 * http://www.cirrus.com/en/pubs/errata/ER880C3.pdf
228 *
229 * 6. At high temperature (TA > +85°C), the digital supply current (IVD)
230 * may be excessive (up to an additional 200 μA), which is most easily
231 * observed while the part is being held in reset (RESET# active low).
232 *
233 * Root Cause: At initial powerup of the device, the logic that drives
234 * the clock and write enable to the S/PDIF SRC RAMs is not properly
235 * initialized.
236 * Certain random patterns will cause a steady leakage current in those
237 * RAM cells. The issue will resolve once the SRCs are used (turned on).
238 *
239 * Workaround: The following verb sequence briefly turns on the S/PDIF SRC
240 * blocks, which will alleviate the issue.
241 */
242
Takashi Iwaic42d4782011-05-02 11:36:09 +0200243static const struct hda_verb cs_errata_init_verbs[] = {
Brian Austina769cbc2010-09-07 14:36:22 -0500244 {0x01, AC_VERB_SET_POWER_STATE, 0x00}, /* AFG: D0 */
245 {0x11, AC_VERB_SET_PROC_STATE, 0x01}, /* VPW: processing on */
246
247 {0x11, AC_VERB_SET_COEF_INDEX, 0x0008},
248 {0x11, AC_VERB_SET_PROC_COEF, 0x9999},
249 {0x11, AC_VERB_SET_COEF_INDEX, 0x0017},
250 {0x11, AC_VERB_SET_PROC_COEF, 0xa412},
251 {0x11, AC_VERB_SET_COEF_INDEX, 0x0001},
252 {0x11, AC_VERB_SET_PROC_COEF, 0x0009},
253
254 {0x07, AC_VERB_SET_POWER_STATE, 0x00}, /* S/PDIF Rx: D0 */
255 {0x08, AC_VERB_SET_POWER_STATE, 0x00}, /* S/PDIF Tx: D0 */
256
257 {0x11, AC_VERB_SET_COEF_INDEX, 0x0017},
258 {0x11, AC_VERB_SET_PROC_COEF, 0x2412},
259 {0x11, AC_VERB_SET_COEF_INDEX, 0x0008},
260 {0x11, AC_VERB_SET_PROC_COEF, 0x0000},
261 {0x11, AC_VERB_SET_COEF_INDEX, 0x0001},
262 {0x11, AC_VERB_SET_PROC_COEF, 0x0008},
263 {0x11, AC_VERB_SET_PROC_STATE, 0x00},
264
Takashi Iwai38c07642011-03-03 14:54:19 +0100265#if 0 /* Don't to set to D3 as we are in power-up sequence */
Brian Austina769cbc2010-09-07 14:36:22 -0500266 {0x07, AC_VERB_SET_POWER_STATE, 0x03}, /* S/PDIF Rx: D3 */
267 {0x08, AC_VERB_SET_POWER_STATE, 0x03}, /* S/PDIF Tx: D3 */
268 /*{0x01, AC_VERB_SET_POWER_STATE, 0x03},*/ /* AFG: D3 This is already handled */
Takashi Iwai38c07642011-03-03 14:54:19 +0100269#endif
Brian Austina769cbc2010-09-07 14:36:22 -0500270
271 {} /* terminator */
272};
273
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200274/* SPDIF setup */
Takashi Iwai1077a022012-12-19 16:39:18 +0100275static void init_digital_coef(struct hda_codec *codec)
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200276{
277 unsigned int coef;
278
279 coef = 0x0002; /* SRC_MUTE soft-mute on SPDIF (if no lock) */
280 coef |= 0x0008; /* Replace with mute on error */
281 if (is_active_pin(codec, CS_DIG_OUT2_PIN_NID))
282 coef |= 0x4000; /* RX to TX1 or TX2 Loopthru / SPDIF2
283 * SPDIF_OUT2 is shared with GPIO1 and
284 * DMIC_SDA2.
285 */
286 cs_vendor_coef_set(codec, IDX_SPDIF_CTL, coef);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200287}
288
289static int cs_init(struct hda_codec *codec)
290{
291 struct cs_spec *spec = codec->spec;
292
Brian Austina769cbc2010-09-07 14:36:22 -0500293 /* init_verb sequence for C0/C1/C2 errata*/
294 snd_hda_sequence_write(codec, cs_errata_init_verbs);
295
Takashi Iwai40c20fa2009-07-06 13:00:57 +0200296 snd_hda_sequence_write(codec, cs_coef_init_verbs);
Takashi Iwaied208252009-07-07 09:04:26 +0200297
Takashi Iwai1077a022012-12-19 16:39:18 +0100298 snd_hda_gen_init(codec);
Takashi Iwai98415ea2012-11-23 08:26:58 +0100299
Takashi Iwaied208252009-07-07 09:04:26 +0200300 if (spec->gpio_mask) {
301 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_MASK,
302 spec->gpio_mask);
303 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DIRECTION,
304 spec->gpio_dir);
305 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
306 spec->gpio_data);
307 }
308
Takashi Iwai1077a022012-12-19 16:39:18 +0100309 init_input_coef(codec);
310 init_digital_coef(codec);
Takashi Iwai01a61e12011-10-28 00:03:22 +0200311
Takashi Iwaie5f14242009-07-01 18:11:44 +0200312 return 0;
313}
314
Takashi Iwai1077a022012-12-19 16:39:18 +0100315#define cs_free snd_hda_gen_free
Takashi Iwaie5f14242009-07-01 18:11:44 +0200316
Takashi Iwaic42d4782011-05-02 11:36:09 +0200317static const struct hda_codec_ops cs_patch_ops = {
Takashi Iwai1077a022012-12-19 16:39:18 +0100318 .build_controls = snd_hda_gen_build_controls,
319 .build_pcms = snd_hda_gen_build_pcms,
Takashi Iwaie5f14242009-07-01 18:11:44 +0200320 .init = cs_init,
321 .free = cs_free,
David Henningsson5c2e4e02012-10-08 15:44:15 +0200322 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwaie5f14242009-07-01 18:11:44 +0200323};
324
325static int cs_parse_auto_config(struct hda_codec *codec)
326{
327 struct cs_spec *spec = codec->spec;
328 int err;
329
Takashi Iwai1077a022012-12-19 16:39:18 +0100330 err = snd_hda_parse_pin_defcfg(codec, &spec->gen.autocfg, NULL, 0);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200331 if (err < 0)
332 return err;
Takashi Iwaied208252009-07-07 09:04:26 +0200333
Takashi Iwai1077a022012-12-19 16:39:18 +0100334 err = snd_hda_gen_parse_auto_config(codec, &spec->gen.autocfg);
Takashi Iwaied208252009-07-07 09:04:26 +0200335 if (err < 0)
336 return err;
Takashi Iwai1077a022012-12-19 16:39:18 +0100337
Takashi Iwaie5f14242009-07-01 18:11:44 +0200338 return 0;
339}
340
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200341static const struct hda_model_fixup cs420x_models[] = {
342 { .id = CS420X_MBP53, .name = "mbp53" },
343 { .id = CS420X_MBP55, .name = "mbp55" },
344 { .id = CS420X_IMAC27, .name = "imac27" },
345 { .id = CS420X_IMAC27_122, .name = "imac27_122" },
346 { .id = CS420X_APPLE, .name = "apple" },
Takashi Iwaief596a52012-09-11 16:53:08 +0200347 { .id = CS420X_MBP101, .name = "mbp101" },
Takashi Iwaiffe4d12b2012-11-23 08:34:13 +0100348 { .id = CS420X_MBP81, .name = "mbp81" },
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200349 {}
Takashi Iwaia6bae202009-07-06 15:15:22 +0200350};
351
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200352static const struct snd_pci_quirk cs420x_fixup_tbl[] = {
Vince Weaver4e7d7c62010-09-22 17:31:37 -0400353 SND_PCI_QUIRK(0x10de, 0x0ac0, "MacBookPro 5,3", CS420X_MBP53),
Edgar (gimli) Hucek87232dd2010-11-03 08:14:10 +0100354 SND_PCI_QUIRK(0x10de, 0x0d94, "MacBookAir 3,1(2)", CS420X_MBP55),
Takashi Iwaia6bae202009-07-06 15:15:22 +0200355 SND_PCI_QUIRK(0x10de, 0xcb79, "MacBookPro 5,5", CS420X_MBP55),
Takashi Iwaif46119b2010-10-11 14:46:35 +0200356 SND_PCI_QUIRK(0x10de, 0xcb89, "MacBookPro 7,1", CS420X_MBP55),
Takashi Iwai6dfeb7032011-11-22 20:00:31 +0100357 /* this conflicts with too many other models */
358 /*SND_PCI_QUIRK(0x8086, 0x7270, "IMac 27 Inch", CS420X_IMAC27),*/
Takashi Iwai6dfeb7032011-11-22 20:00:31 +0100359
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200360 /* codec SSID */
Takashi Iwaiffe4d12b2012-11-23 08:34:13 +0100361 SND_PCI_QUIRK(0x106b, 0x1c00, "MacBookPro 8,1", CS420X_MBP81),
Jérémy Lal7e5bea12012-01-09 17:19:45 +0100362 SND_PCI_QUIRK(0x106b, 0x2000, "iMac 12,2", CS420X_IMAC27_122),
Takashi Iwaief596a52012-09-11 16:53:08 +0200363 SND_PCI_QUIRK(0x106b, 0x2800, "MacBookPro 10,1", CS420X_MBP101),
Takashi Iwai6dfeb7032011-11-22 20:00:31 +0100364 SND_PCI_QUIRK_VENDOR(0x106b, "Apple", CS420X_APPLE),
Takashi Iwaia6bae202009-07-06 15:15:22 +0200365 {} /* terminator */
366};
367
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200368static const struct hda_pintbl mbp53_pincfgs[] = {
Vince Weaver4e7d7c62010-09-22 17:31:37 -0400369 { 0x09, 0x012b4050 },
370 { 0x0a, 0x90100141 },
371 { 0x0b, 0x90100140 },
372 { 0x0c, 0x018b3020 },
373 { 0x0d, 0x90a00110 },
374 { 0x0e, 0x400000f0 },
375 { 0x0f, 0x01cbe030 },
376 { 0x10, 0x014be060 },
377 { 0x12, 0x400000f0 },
378 { 0x15, 0x400000f0 },
379 {} /* terminator */
380};
381
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200382static const struct hda_pintbl mbp55_pincfgs[] = {
Takashi Iwaia6bae202009-07-06 15:15:22 +0200383 { 0x09, 0x012b4030 },
384 { 0x0a, 0x90100121 },
385 { 0x0b, 0x90100120 },
386 { 0x0c, 0x400000f0 },
387 { 0x0d, 0x90a00110 },
388 { 0x0e, 0x400000f0 },
389 { 0x0f, 0x400000f0 },
390 { 0x10, 0x014be040 },
391 { 0x12, 0x400000f0 },
392 { 0x15, 0x400000f0 },
393 {} /* terminator */
394};
395
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200396static const struct hda_pintbl imac27_pincfgs[] = {
Rafael Avila de Espindola1a5ba2e2009-12-22 07:59:37 +0100397 { 0x09, 0x012b4050 },
398 { 0x0a, 0x90100140 },
399 { 0x0b, 0x90100142 },
400 { 0x0c, 0x018b3020 },
401 { 0x0d, 0x90a00110 },
402 { 0x0e, 0x400000f0 },
403 { 0x0f, 0x01cbe030 },
404 { 0x10, 0x014be060 },
405 { 0x12, 0x01ab9070 },
406 { 0x15, 0x400000f0 },
407 {} /* terminator */
408};
409
Takashi Iwaief596a52012-09-11 16:53:08 +0200410static const struct hda_pintbl mbp101_pincfgs[] = {
411 { 0x0d, 0x40ab90f0 },
412 { 0x0e, 0x90a600f0 },
413 { 0x12, 0x50a600f0 },
414 {} /* terminator */
415};
416
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200417static void cs420x_fixup_gpio_13(struct hda_codec *codec,
418 const struct hda_fixup *fix, int action)
Takashi Iwaia6bae202009-07-06 15:15:22 +0200419{
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200420 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
421 struct cs_spec *spec = codec->spec;
422 spec->gpio_eapd_hp = 2; /* GPIO1 = headphones */
423 spec->gpio_eapd_speaker = 8; /* GPIO3 = speakers */
424 spec->gpio_mask = spec->gpio_dir =
425 spec->gpio_eapd_hp | spec->gpio_eapd_speaker;
426 }
Takashi Iwaia6bae202009-07-06 15:15:22 +0200427}
428
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200429static void cs420x_fixup_gpio_23(struct hda_codec *codec,
430 const struct hda_fixup *fix, int action)
431{
432 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
433 struct cs_spec *spec = codec->spec;
434 spec->gpio_eapd_hp = 4; /* GPIO2 = headphones */
435 spec->gpio_eapd_speaker = 8; /* GPIO3 = speakers */
436 spec->gpio_mask = spec->gpio_dir =
437 spec->gpio_eapd_hp | spec->gpio_eapd_speaker;
438 }
439}
440
441static const struct hda_fixup cs420x_fixups[] = {
442 [CS420X_MBP53] = {
443 .type = HDA_FIXUP_PINS,
444 .v.pins = mbp53_pincfgs,
445 .chained = true,
446 .chain_id = CS420X_APPLE,
447 },
448 [CS420X_MBP55] = {
449 .type = HDA_FIXUP_PINS,
450 .v.pins = mbp55_pincfgs,
451 .chained = true,
452 .chain_id = CS420X_GPIO_13,
453 },
454 [CS420X_IMAC27] = {
455 .type = HDA_FIXUP_PINS,
456 .v.pins = imac27_pincfgs,
457 .chained = true,
458 .chain_id = CS420X_GPIO_13,
459 },
460 [CS420X_GPIO_13] = {
461 .type = HDA_FIXUP_FUNC,
462 .v.func = cs420x_fixup_gpio_13,
463 },
464 [CS420X_GPIO_23] = {
465 .type = HDA_FIXUP_FUNC,
466 .v.func = cs420x_fixup_gpio_23,
467 },
Takashi Iwaief596a52012-09-11 16:53:08 +0200468 [CS420X_MBP101] = {
469 .type = HDA_FIXUP_PINS,
470 .v.pins = mbp101_pincfgs,
471 .chained = true,
Takashi Iwaief596a52012-09-11 16:53:08 +0200472 .chain_id = CS420X_GPIO_13,
473 },
Takashi Iwaiffe4d12b2012-11-23 08:34:13 +0100474 [CS420X_MBP81] = {
475 .type = HDA_FIXUP_VERBS,
476 .v.verbs = (const struct hda_verb[]) {
477 /* internal mic ADC2: right only, single ended */
478 {0x11, AC_VERB_SET_COEF_INDEX, IDX_ADC_CFG},
479 {0x11, AC_VERB_SET_PROC_COEF, 0x102a},
480 {}
481 },
482 .chained = true,
483 .chain_id = CS420X_GPIO_13,
484 },
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200485};
486
Takashi Iwai1077a022012-12-19 16:39:18 +0100487static struct cs_spec *cs_alloc_spec(struct hda_codec *codec, int vendor_nid)
488{
489 struct cs_spec *spec;
490
491 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
492 if (!spec)
493 return NULL;
494 codec->spec = spec;
495 spec->vendor_nid = vendor_nid;
496 snd_hda_gen_spec_init(&spec->gen);
497
498 return spec;
499}
500
Takashi Iwaie5f14242009-07-01 18:11:44 +0200501static int patch_cs420x(struct hda_codec *codec)
502{
503 struct cs_spec *spec;
504 int err;
505
Takashi Iwai1077a022012-12-19 16:39:18 +0100506 spec = cs_alloc_spec(codec, CS420X_VENDOR_NID);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200507 if (!spec)
508 return -ENOMEM;
Tim Howe56487c22011-07-22 16:41:00 -0500509
Takashi Iwai6d3073e2013-03-15 14:23:32 +0100510 spec->gen.automute_hook = cs_automute;
511
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200512 snd_hda_pick_fixup(codec, cs420x_models, cs420x_fixup_tbl,
513 cs420x_fixups);
514 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200515
Takashi Iwaied208252009-07-07 09:04:26 +0200516 err = cs_parse_auto_config(codec);
Takashi Iwai21a4dc42009-07-06 12:55:46 +0200517 if (err < 0)
518 goto error;
519
Takashi Iwaie5f14242009-07-01 18:11:44 +0200520 codec->patch_ops = cs_patch_ops;
521
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200522 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
523
Takashi Iwaie5f14242009-07-01 18:11:44 +0200524 return 0;
525
526 error:
Takashi Iwaic5e0b6d2012-10-10 08:50:35 +0200527 cs_free(codec);
Takashi Iwaie5f14242009-07-01 18:11:44 +0200528 return err;
529}
530
Tim Howe56487c22011-07-22 16:41:00 -0500531/*
532 * Cirrus Logic CS4210
533 *
534 * 1 DAC => HP(sense) / Speakers,
535 * 1 ADC <= LineIn(sense) / MicIn / DMicIn,
536 * 1 SPDIF OUT => SPDIF Trasmitter(sense)
537*/
538
539/* CS4210 board names */
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200540static const struct hda_model_fixup cs421x_models[] = {
541 { .id = CS421X_CDB4210, .name = "cdb4210" },
Dylan Reid4af16102013-04-04 15:35:31 -0700542 { .id = CS421X_STUMPY, .name = "stumpy" },
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200543 {}
Tim Howe56487c22011-07-22 16:41:00 -0500544};
545
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200546static const struct snd_pci_quirk cs421x_fixup_tbl[] = {
Tim Howe56487c22011-07-22 16:41:00 -0500547 /* Test Intel board + CDB2410 */
548 SND_PCI_QUIRK(0x8086, 0x5001, "DP45SG/CDB4210", CS421X_CDB4210),
549 {} /* terminator */
550};
551
552/* CS4210 board pinconfigs */
553/* Default CS4210 (CDB4210)*/
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200554static const struct hda_pintbl cdb4210_pincfgs[] = {
Tim Howe56487c22011-07-22 16:41:00 -0500555 { 0x05, 0x0321401f },
556 { 0x06, 0x90170010 },
557 { 0x07, 0x03813031 },
558 { 0x08, 0xb7a70037 },
559 { 0x09, 0xb7a6003e },
560 { 0x0a, 0x034510f0 },
561 {} /* terminator */
562};
563
Dylan Reid4af16102013-04-04 15:35:31 -0700564/* Stumpy ChromeBox */
565static const struct hda_pintbl stumpy_pincfgs[] = {
566 { 0x05, 0x022120f0 },
567 { 0x06, 0x901700f0 },
568 { 0x07, 0x02a120f0 },
569 { 0x08, 0x77a70037 },
570 { 0x09, 0x77a6003e },
571 { 0x0a, 0x434510f0 },
572 {} /* terminator */
573};
574
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200575/* Setup GPIO/SENSE for each board (if used) */
576static void cs421x_fixup_sense_b(struct hda_codec *codec,
577 const struct hda_fixup *fix, int action)
578{
579 struct cs_spec *spec = codec->spec;
580 if (action == HDA_FIXUP_ACT_PRE_PROBE)
581 spec->sense_b = 1;
582}
583
584static const struct hda_fixup cs421x_fixups[] = {
585 [CS421X_CDB4210] = {
586 .type = HDA_FIXUP_PINS,
587 .v.pins = cdb4210_pincfgs,
588 .chained = true,
589 .chain_id = CS421X_SENSE_B,
590 },
591 [CS421X_SENSE_B] = {
592 .type = HDA_FIXUP_FUNC,
593 .v.func = cs421x_fixup_sense_b,
Dylan Reid4af16102013-04-04 15:35:31 -0700594 },
595 [CS421X_STUMPY] = {
596 .type = HDA_FIXUP_PINS,
597 .v.pins = stumpy_pincfgs,
598 },
Tim Howe56487c22011-07-22 16:41:00 -0500599};
600
601static const struct hda_verb cs421x_coef_init_verbs[] = {
602 {0x0B, AC_VERB_SET_PROC_STATE, 1},
603 {0x0B, AC_VERB_SET_COEF_INDEX, CS421X_IDX_DEV_CFG},
604 /*
605 Disable Coefficient Index Auto-Increment(DAI)=1,
606 PDREF=0
607 */
608 {0x0B, AC_VERB_SET_PROC_COEF, 0x0001 },
609
610 {0x0B, AC_VERB_SET_COEF_INDEX, CS421X_IDX_ADC_CFG},
611 /* ADC SZCMode = Digital Soft Ramp */
612 {0x0B, AC_VERB_SET_PROC_COEF, 0x0002 },
613
614 {0x0B, AC_VERB_SET_COEF_INDEX, CS421X_IDX_DAC_CFG},
615 {0x0B, AC_VERB_SET_PROC_COEF,
616 (0x0002 /* DAC SZCMode = Digital Soft Ramp */
617 | 0x0004 /* Mute DAC on FIFO error */
618 | 0x0008 /* Enable DAC High Pass Filter */
619 )},
620 {} /* terminator */
621};
622
623/* Errata: CS4210 rev A1 Silicon
624 *
625 * http://www.cirrus.com/en/pubs/errata/
626 *
627 * Description:
628 * 1. Performance degredation is present in the ADC.
629 * 2. Speaker output is not completely muted upon HP detect.
630 * 3. Noise is present when clipping occurs on the amplified
631 * speaker outputs.
632 *
633 * Workaround:
634 * The following verb sequence written to the registers during
635 * initialization will correct the issues listed above.
636 */
637
638static const struct hda_verb cs421x_coef_init_verbs_A1_silicon_fixes[] = {
639 {0x0B, AC_VERB_SET_PROC_STATE, 0x01}, /* VPW: processing on */
640
641 {0x0B, AC_VERB_SET_COEF_INDEX, 0x0006},
642 {0x0B, AC_VERB_SET_PROC_COEF, 0x9999}, /* Test mode: on */
643
644 {0x0B, AC_VERB_SET_COEF_INDEX, 0x000A},
645 {0x0B, AC_VERB_SET_PROC_COEF, 0x14CB}, /* Chop double */
646
647 {0x0B, AC_VERB_SET_COEF_INDEX, 0x0011},
648 {0x0B, AC_VERB_SET_PROC_COEF, 0xA2D0}, /* Increase ADC current */
649
650 {0x0B, AC_VERB_SET_COEF_INDEX, 0x001A},
651 {0x0B, AC_VERB_SET_PROC_COEF, 0x02A9}, /* Mute speaker */
652
653 {0x0B, AC_VERB_SET_COEF_INDEX, 0x001B},
654 {0x0B, AC_VERB_SET_PROC_COEF, 0X1006}, /* Remove noise */
655
656 {} /* terminator */
657};
658
659/* Speaker Amp Gain is controlled by the vendor widget's coef 4 */
660static const DECLARE_TLV_DB_SCALE(cs421x_speaker_boost_db_scale, 900, 300, 0);
661
662static int cs421x_boost_vol_info(struct snd_kcontrol *kcontrol,
663 struct snd_ctl_elem_info *uinfo)
664{
665 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
666 uinfo->count = 1;
667 uinfo->value.integer.min = 0;
668 uinfo->value.integer.max = 3;
669 return 0;
670}
671
672static int cs421x_boost_vol_get(struct snd_kcontrol *kcontrol,
673 struct snd_ctl_elem_value *ucontrol)
674{
675 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
676
677 ucontrol->value.integer.value[0] =
678 cs_vendor_coef_get(codec, CS421X_IDX_SPK_CTL) & 0x0003;
679 return 0;
680}
681
682static int cs421x_boost_vol_put(struct snd_kcontrol *kcontrol,
683 struct snd_ctl_elem_value *ucontrol)
684{
685 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
686
687 unsigned int vol = ucontrol->value.integer.value[0];
688 unsigned int coef =
689 cs_vendor_coef_get(codec, CS421X_IDX_SPK_CTL);
690 unsigned int original_coef = coef;
691
692 coef &= ~0x0003;
693 coef |= (vol & 0x0003);
694 if (original_coef == coef)
695 return 0;
696 else {
697 cs_vendor_coef_set(codec, CS421X_IDX_SPK_CTL, coef);
698 return 1;
699 }
700}
701
Takashi Iwai1077a022012-12-19 16:39:18 +0100702static const struct snd_kcontrol_new cs421x_speaker_boost_ctl = {
Tim Howe56487c22011-07-22 16:41:00 -0500703
704 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
705 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE |
706 SNDRV_CTL_ELEM_ACCESS_TLV_READ),
707 .name = "Speaker Boost Playback Volume",
708 .info = cs421x_boost_vol_info,
709 .get = cs421x_boost_vol_get,
710 .put = cs421x_boost_vol_put,
711 .tlv = { .p = cs421x_speaker_boost_db_scale },
712};
713
David Henningsson5660ffd2012-01-02 12:40:17 +0100714static void cs4210_pinmux_init(struct hda_codec *codec)
Tim Howe56487c22011-07-22 16:41:00 -0500715{
716 struct cs_spec *spec = codec->spec;
717 unsigned int def_conf, coef;
718
719 /* GPIO, DMIC_SCL, DMIC_SDA and SENSE_B are multiplexed */
720 coef = cs_vendor_coef_get(codec, CS421X_IDX_DEV_CFG);
721
722 if (spec->gpio_mask)
723 coef |= 0x0008; /* B1,B2 are GPIOs */
724 else
725 coef &= ~0x0008;
726
727 if (spec->sense_b)
728 coef |= 0x0010; /* B2 is SENSE_B, not inverted */
729 else
730 coef &= ~0x0010;
731
732 cs_vendor_coef_set(codec, CS421X_IDX_DEV_CFG, coef);
733
734 if ((spec->gpio_mask || spec->sense_b) &&
735 is_active_pin(codec, CS421X_DMIC_PIN_NID)) {
736
737 /*
738 GPIO or SENSE_B forced - disconnect the DMIC pin.
739 */
740 def_conf = snd_hda_codec_get_pincfg(codec, CS421X_DMIC_PIN_NID);
741 def_conf &= ~AC_DEFCFG_PORT_CONN;
742 def_conf |= (AC_JACK_PORT_NONE << AC_DEFCFG_PORT_CONN_SHIFT);
743 snd_hda_codec_set_pincfg(codec, CS421X_DMIC_PIN_NID, def_conf);
744 }
745}
746
Takashi Iwai1077a022012-12-19 16:39:18 +0100747static void cs4210_spdif_automute(struct hda_codec *codec,
748 struct hda_jack_tbl *tbl)
Tim Howe56487c22011-07-22 16:41:00 -0500749{
750 struct cs_spec *spec = codec->spec;
Takashi Iwai1077a022012-12-19 16:39:18 +0100751 bool spdif_present = false;
752 hda_nid_t spdif_pin = spec->gen.autocfg.dig_out_pins[0];
Tim Howe56487c22011-07-22 16:41:00 -0500753
Takashi Iwai1077a022012-12-19 16:39:18 +0100754 /* detect on spdif is specific to CS4210 */
755 if (!spec->spdif_detect ||
756 spec->vendor_nid != CS4210_VENDOR_NID)
757 return;
758
759 spdif_present = snd_hda_jack_detect(codec, spdif_pin);
760 if (spdif_present == spec->spdif_present)
761 return;
762
763 spec->spdif_present = spdif_present;
764 /* SPDIF TX on/off */
765 if (spdif_present)
766 snd_hda_set_pin_ctl(codec, spdif_pin,
767 spdif_present ? PIN_OUT : 0);
768
769 cs_automute(codec);
770}
771
772static void parse_cs421x_digital(struct hda_codec *codec)
773{
774 struct cs_spec *spec = codec->spec;
775 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
776 int i;
Tim Howe56487c22011-07-22 16:41:00 -0500777
778 for (i = 0; i < cfg->dig_outs; i++) {
779 hda_nid_t nid = cfg->dig_out_pins[i];
Tim Howe56487c22011-07-22 16:41:00 -0500780 if (get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP) {
Tim Howe56487c22011-07-22 16:41:00 -0500781 spec->spdif_detect = 1;
Takashi Iwai1077a022012-12-19 16:39:18 +0100782 snd_hda_jack_detect_enable_callback(codec, nid,
783 SPDIF_EVENT,
784 cs4210_spdif_automute);
Tim Howe56487c22011-07-22 16:41:00 -0500785 }
786 }
787}
788
789static int cs421x_init(struct hda_codec *codec)
790{
791 struct cs_spec *spec = codec->spec;
792
David Henningsson5660ffd2012-01-02 12:40:17 +0100793 if (spec->vendor_nid == CS4210_VENDOR_NID) {
794 snd_hda_sequence_write(codec, cs421x_coef_init_verbs);
795 snd_hda_sequence_write(codec, cs421x_coef_init_verbs_A1_silicon_fixes);
796 cs4210_pinmux_init(codec);
797 }
Tim Howe56487c22011-07-22 16:41:00 -0500798
Takashi Iwai1077a022012-12-19 16:39:18 +0100799 snd_hda_gen_init(codec);
800
Tim Howe56487c22011-07-22 16:41:00 -0500801 if (spec->gpio_mask) {
802 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_MASK,
803 spec->gpio_mask);
804 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DIRECTION,
805 spec->gpio_dir);
806 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
807 spec->gpio_data);
808 }
809
Takashi Iwai1077a022012-12-19 16:39:18 +0100810 init_input_coef(codec);
811
812 cs4210_spdif_automute(codec, NULL);
Tim Howe56487c22011-07-22 16:41:00 -0500813
814 return 0;
815}
816
Tim Howe56487c22011-07-22 16:41:00 -0500817static int cs421x_build_controls(struct hda_codec *codec)
818{
Takashi Iwai01a61e12011-10-28 00:03:22 +0200819 struct cs_spec *spec = codec->spec;
Tim Howe56487c22011-07-22 16:41:00 -0500820 int err;
821
Takashi Iwai1077a022012-12-19 16:39:18 +0100822 err = snd_hda_gen_build_controls(codec);
Takashi Iwai01a61e12011-10-28 00:03:22 +0200823 if (err < 0)
824 return err;
825
Takashi Iwai1077a022012-12-19 16:39:18 +0100826 if (spec->gen.autocfg.speaker_outs &&
827 spec->vendor_nid == CS4210_VENDOR_NID) {
828 err = snd_hda_ctl_add(codec, 0,
829 snd_ctl_new1(&cs421x_speaker_boost_ctl, codec));
830 if (err < 0)
831 return err;
832 }
Takashi Iwai01a61e12011-10-28 00:03:22 +0200833 return 0;
Tim Howe56487c22011-07-22 16:41:00 -0500834}
835
Takashi Iwai1077a022012-12-19 16:39:18 +0100836static void fix_volume_caps(struct hda_codec *codec, hda_nid_t dac)
Tim Howe56487c22011-07-22 16:41:00 -0500837{
Takashi Iwai1077a022012-12-19 16:39:18 +0100838 unsigned int caps;
Tim Howe56487c22011-07-22 16:41:00 -0500839
Takashi Iwai1077a022012-12-19 16:39:18 +0100840 /* set the upper-limit for mixer amp to 0dB */
841 caps = query_amp_caps(codec, dac, HDA_OUTPUT);
842 caps &= ~(0x7f << AC_AMPCAP_NUM_STEPS_SHIFT);
843 caps |= ((caps >> AC_AMPCAP_OFFSET_SHIFT) & 0x7f)
844 << AC_AMPCAP_NUM_STEPS_SHIFT;
845 snd_hda_override_amp_caps(codec, dac, HDA_OUTPUT, caps);
Tim Howe56487c22011-07-22 16:41:00 -0500846}
847
848static int cs421x_parse_auto_config(struct hda_codec *codec)
849{
850 struct cs_spec *spec = codec->spec;
Takashi Iwai1077a022012-12-19 16:39:18 +0100851 hda_nid_t dac = CS4210_DAC_NID;
Tim Howe56487c22011-07-22 16:41:00 -0500852 int err;
853
Takashi Iwai1077a022012-12-19 16:39:18 +0100854 fix_volume_caps(codec, dac);
855
856 err = snd_hda_parse_pin_defcfg(codec, &spec->gen.autocfg, NULL, 0);
Tim Howe56487c22011-07-22 16:41:00 -0500857 if (err < 0)
858 return err;
Takashi Iwai1077a022012-12-19 16:39:18 +0100859
860 err = snd_hda_gen_parse_auto_config(codec, &spec->gen.autocfg);
Tim Howe56487c22011-07-22 16:41:00 -0500861 if (err < 0)
862 return err;
Takashi Iwai1077a022012-12-19 16:39:18 +0100863
864 parse_cs421x_digital(codec);
Tim Howe56487c22011-07-22 16:41:00 -0500865 return 0;
866}
867
868#ifdef CONFIG_PM
869/*
870 Manage PDREF, when transitioning to D3hot
871 (DAC,ADC) -> D3, PDREF=1, AFG->D3
872*/
Takashi Iwai68cb2b52012-07-02 15:20:37 +0200873static int cs421x_suspend(struct hda_codec *codec)
Tim Howe56487c22011-07-22 16:41:00 -0500874{
David Henningsson5660ffd2012-01-02 12:40:17 +0100875 struct cs_spec *spec = codec->spec;
Tim Howe56487c22011-07-22 16:41:00 -0500876 unsigned int coef;
877
878 snd_hda_shutup_pins(codec);
879
880 snd_hda_codec_write(codec, CS4210_DAC_NID, 0,
881 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
882 snd_hda_codec_write(codec, CS4210_ADC_NID, 0,
883 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
884
David Henningsson5660ffd2012-01-02 12:40:17 +0100885 if (spec->vendor_nid == CS4210_VENDOR_NID) {
886 coef = cs_vendor_coef_get(codec, CS421X_IDX_DEV_CFG);
887 coef |= 0x0004; /* PDREF */
888 cs_vendor_coef_set(codec, CS421X_IDX_DEV_CFG, coef);
889 }
Tim Howe56487c22011-07-22 16:41:00 -0500890
891 return 0;
892}
893#endif
894
Daniel J Blueman00e17f72012-11-04 13:19:04 +0800895static const struct hda_codec_ops cs421x_patch_ops = {
Tim Howe56487c22011-07-22 16:41:00 -0500896 .build_controls = cs421x_build_controls,
Takashi Iwai1077a022012-12-19 16:39:18 +0100897 .build_pcms = snd_hda_gen_build_pcms,
Tim Howe56487c22011-07-22 16:41:00 -0500898 .init = cs421x_init,
899 .free = cs_free,
David Henningsson5c2e4e02012-10-08 15:44:15 +0200900 .unsol_event = snd_hda_jack_unsol_event,
Tim Howe56487c22011-07-22 16:41:00 -0500901#ifdef CONFIG_PM
902 .suspend = cs421x_suspend,
903#endif
904};
905
David Henningsson5660ffd2012-01-02 12:40:17 +0100906static int patch_cs4210(struct hda_codec *codec)
Tim Howe56487c22011-07-22 16:41:00 -0500907{
908 struct cs_spec *spec;
909 int err;
910
Takashi Iwai1077a022012-12-19 16:39:18 +0100911 spec = cs_alloc_spec(codec, CS4210_VENDOR_NID);
Tim Howe56487c22011-07-22 16:41:00 -0500912 if (!spec)
913 return -ENOMEM;
Tim Howe56487c22011-07-22 16:41:00 -0500914
Takashi Iwai6d3073e2013-03-15 14:23:32 +0100915 spec->gen.automute_hook = cs_automute;
916
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200917 snd_hda_pick_fixup(codec, cs421x_models, cs421x_fixup_tbl,
918 cs421x_fixups);
919 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Tim Howe56487c22011-07-22 16:41:00 -0500920
921 /*
922 Update the GPIO/DMIC/SENSE_B pinmux before the configuration
923 is auto-parsed. If GPIO or SENSE_B is forced, DMIC input
924 is disabled.
925 */
David Henningsson5660ffd2012-01-02 12:40:17 +0100926 cs4210_pinmux_init(codec);
Tim Howe56487c22011-07-22 16:41:00 -0500927
928 err = cs421x_parse_auto_config(codec);
929 if (err < 0)
930 goto error;
931
David Henningsson5660ffd2012-01-02 12:40:17 +0100932 codec->patch_ops = cs421x_patch_ops;
Tim Howe56487c22011-07-22 16:41:00 -0500933
Takashi Iwaib35aabd2012-08-24 19:09:45 +0200934 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
935
Tim Howe56487c22011-07-22 16:41:00 -0500936 return 0;
937
938 error:
Takashi Iwaic5e0b6d2012-10-10 08:50:35 +0200939 cs_free(codec);
Tim Howe56487c22011-07-22 16:41:00 -0500940 return err;
941}
942
David Henningsson5660ffd2012-01-02 12:40:17 +0100943static int patch_cs4213(struct hda_codec *codec)
944{
945 struct cs_spec *spec;
946 int err;
947
Takashi Iwai1077a022012-12-19 16:39:18 +0100948 spec = cs_alloc_spec(codec, CS4213_VENDOR_NID);
David Henningsson5660ffd2012-01-02 12:40:17 +0100949 if (!spec)
950 return -ENOMEM;
David Henningsson5660ffd2012-01-02 12:40:17 +0100951
952 err = cs421x_parse_auto_config(codec);
953 if (err < 0)
954 goto error;
955
956 codec->patch_ops = cs421x_patch_ops;
957 return 0;
958
959 error:
Takashi Iwaic5e0b6d2012-10-10 08:50:35 +0200960 cs_free(codec);
David Henningsson5660ffd2012-01-02 12:40:17 +0100961 return err;
962}
963
Takashi Iwaie5f14242009-07-01 18:11:44 +0200964
965/*
966 * patch entries
967 */
Takashi Iwaic42d4782011-05-02 11:36:09 +0200968static const struct hda_codec_preset snd_hda_preset_cirrus[] = {
Takashi Iwaie5f14242009-07-01 18:11:44 +0200969 { .id = 0x10134206, .name = "CS4206", .patch = patch_cs420x },
970 { .id = 0x10134207, .name = "CS4207", .patch = patch_cs420x },
David Henningsson5660ffd2012-01-02 12:40:17 +0100971 { .id = 0x10134210, .name = "CS4210", .patch = patch_cs4210 },
972 { .id = 0x10134213, .name = "CS4213", .patch = patch_cs4213 },
Takashi Iwaie5f14242009-07-01 18:11:44 +0200973 {} /* terminator */
974};
975
976MODULE_ALIAS("snd-hda-codec-id:10134206");
977MODULE_ALIAS("snd-hda-codec-id:10134207");
Tim Howe56487c22011-07-22 16:41:00 -0500978MODULE_ALIAS("snd-hda-codec-id:10134210");
David Henningsson5660ffd2012-01-02 12:40:17 +0100979MODULE_ALIAS("snd-hda-codec-id:10134213");
Takashi Iwaie5f14242009-07-01 18:11:44 +0200980
981MODULE_LICENSE("GPL");
982MODULE_DESCRIPTION("Cirrus Logic HD-audio codec");
983
984static struct hda_codec_preset_list cirrus_list = {
985 .preset = snd_hda_preset_cirrus,
986 .owner = THIS_MODULE,
987};
988
989static int __init patch_cirrus_init(void)
990{
991 return snd_hda_add_codec_preset(&cirrus_list);
992}
993
994static void __exit patch_cirrus_exit(void)
995{
996 snd_hda_delete_codec_preset(&cirrus_list);
997}
998
999module_init(patch_cirrus_init)
1000module_exit(patch_cirrus_exit)