Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 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> |
Paul Gortmaker | da155d5 | 2011-07-15 12:38:28 -0400 | [diff] [blame] | 25 | #include <linux/module.h> |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 26 | #include <sound/core.h> |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 27 | #include <sound/tlv.h> |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 28 | #include "hda_codec.h" |
| 29 | #include "hda_local.h" |
Takashi Iwai | 128bc4b | 2012-05-07 17:42:31 +0200 | [diff] [blame] | 30 | #include "hda_auto_parser.h" |
Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 31 | #include "hda_jack.h" |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 32 | #include "hda_generic.h" |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 33 | |
| 34 | /* |
| 35 | */ |
| 36 | |
| 37 | struct cs_spec { |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 38 | struct hda_gen_spec gen; |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 39 | |
Takashi Iwai | ed20825 | 2009-07-07 09:04:26 +0200 | [diff] [blame] | 40 | unsigned int gpio_mask; |
| 41 | unsigned int gpio_dir; |
| 42 | unsigned int gpio_data; |
Takashi Iwai | 6dfeb703 | 2011-11-22 20:00:31 +0100 | [diff] [blame] | 43 | unsigned int gpio_eapd_hp; /* EAPD GPIO bit for headphones */ |
| 44 | unsigned int gpio_eapd_speaker; /* EAPD GPIO bit for speakers */ |
Takashi Iwai | ed20825 | 2009-07-07 09:04:26 +0200 | [diff] [blame] | 45 | |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 46 | /* CS421x */ |
| 47 | unsigned int spdif_detect:1; |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 48 | unsigned int spdif_present:1; |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 49 | unsigned int sense_b:1; |
| 50 | hda_nid_t vendor_nid; |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 51 | }; |
| 52 | |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 53 | /* available models with CS420x */ |
Takashi Iwai | a6bae20 | 2009-07-06 15:15:22 +0200 | [diff] [blame] | 54 | enum { |
Vince Weaver | 4e7d7c6 | 2010-09-22 17:31:37 -0400 | [diff] [blame] | 55 | CS420X_MBP53, |
Takashi Iwai | a6bae20 | 2009-07-06 15:15:22 +0200 | [diff] [blame] | 56 | CS420X_MBP55, |
Rafael Avila de Espindola | 1a5ba2e | 2009-12-22 07:59:37 +0100 | [diff] [blame] | 57 | CS420X_IMAC27, |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 58 | CS420X_GPIO_13, |
| 59 | CS420X_GPIO_23, |
Takashi Iwai | ef596a5 | 2012-09-11 16:53:08 +0200 | [diff] [blame] | 60 | CS420X_MBP101, |
Takashi Iwai | ffe4d12b | 2012-11-23 08:34:13 +0100 | [diff] [blame] | 61 | CS420X_MBP81, |
Takashi Iwai | a6bae20 | 2009-07-06 15:15:22 +0200 | [diff] [blame] | 62 | CS420X_AUTO, |
Takashi Iwai | 03efce7 | 2012-09-13 09:56:57 +0200 | [diff] [blame] | 63 | /* aliases */ |
| 64 | CS420X_IMAC27_122 = CS420X_GPIO_23, |
| 65 | CS420X_APPLE = CS420X_GPIO_13, |
Takashi Iwai | a6bae20 | 2009-07-06 15:15:22 +0200 | [diff] [blame] | 66 | }; |
| 67 | |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 68 | /* CS421x boards */ |
| 69 | enum { |
| 70 | CS421X_CDB4210, |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 71 | CS421X_SENSE_B, |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 72 | }; |
| 73 | |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 74 | /* 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 Blueman | 16337e0 | 2012-11-04 13:19:03 +0800 | [diff] [blame] | 78 | #define CS_DMIC1_PIN_NID 0x0e |
| 79 | #define CS_DMIC2_PIN_NID 0x12 |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 80 | |
| 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 Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 113 | /* |
| 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 Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 122 | #define CS4210_VENDOR_NID 0x0B |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 123 | #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 Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 132 | |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 133 | /* Cirrus Logic CS4213 is like CS4210 but does not have SPDIF input/output */ |
| 134 | #define CS4213_VENDOR_NID 0x09 |
| 135 | |
| 136 | |
Takashi Iwai | 277a57c | 2009-07-08 12:42:08 +0200 | [diff] [blame] | 137 | static inline int cs_vendor_coef_get(struct hda_codec *codec, unsigned int idx) |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 138 | { |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 139 | struct cs_spec *spec = codec->spec; |
| 140 | snd_hda_codec_write(codec, spec->vendor_nid, 0, |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 141 | AC_VERB_SET_COEF_INDEX, idx); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 142 | return snd_hda_codec_read(codec, spec->vendor_nid, 0, |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 143 | AC_VERB_GET_PROC_COEF, 0); |
| 144 | } |
| 145 | |
Takashi Iwai | 277a57c | 2009-07-08 12:42:08 +0200 | [diff] [blame] | 146 | static inline void cs_vendor_coef_set(struct hda_codec *codec, unsigned int idx, |
| 147 | unsigned int coef) |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 148 | { |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 149 | struct cs_spec *spec = codec->spec; |
| 150 | snd_hda_codec_write(codec, spec->vendor_nid, 0, |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 151 | AC_VERB_SET_COEF_INDEX, idx); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 152 | snd_hda_codec_write(codec, spec->vendor_nid, 0, |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 153 | AC_VERB_SET_PROC_COEF, coef); |
| 154 | } |
| 155 | |
Takashi Iwai | 21a4dc4 | 2009-07-06 12:55:46 +0200 | [diff] [blame] | 156 | /* |
| 157 | * auto-mute and auto-mic switching |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 158 | * CS421x auto-output redirecting |
| 159 | * HP/SPK/SPDIF |
Takashi Iwai | 21a4dc4 | 2009-07-06 12:55:46 +0200 | [diff] [blame] | 160 | */ |
| 161 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 162 | static void cs_automute(struct hda_codec *codec) |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 163 | { |
| 164 | struct cs_spec *spec = codec->spec; |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 165 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 166 | /* mute HPs if spdif jack (SENSE_B) is present */ |
| 167 | spec->gen.master_mute = !!(spec->spdif_present && spec->sense_b); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 168 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 169 | snd_hda_gen_update_outputs(codec); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 170 | |
Takashi Iwai | 6dfeb703 | 2011-11-22 20:00:31 +0100 | [diff] [blame] | 171 | if (spec->gpio_eapd_hp) { |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 172 | unsigned int gpio = spec->gen.hp_jack_present ? |
Takashi Iwai | 6dfeb703 | 2011-11-22 20:00:31 +0100 | [diff] [blame] | 173 | spec->gpio_eapd_hp : spec->gpio_eapd_speaker; |
Stelian Pop | 3a38516 | 2009-07-30 14:44:27 +0200 | [diff] [blame] | 174 | snd_hda_codec_write(codec, 0x01, 0, |
| 175 | AC_VERB_SET_GPIO_DATA, gpio); |
| 176 | } |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 177 | } |
| 178 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 179 | static bool is_active_pin(struct hda_codec *codec, hda_nid_t nid) |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 180 | { |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 181 | unsigned int val; |
| 182 | val = snd_hda_codec_get_pincfg(codec, nid); |
| 183 | return (get_defcfg_connect(val) != AC_JACK_PORT_NONE); |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 184 | } |
| 185 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 186 | static void init_input_coef(struct hda_codec *codec) |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 187 | { |
| 188 | struct cs_spec *spec = codec->spec; |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 189 | unsigned int coef; |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 190 | |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 191 | /* CS420x has multiple ADC, CS421x has single ADC */ |
| 192 | if (spec->vendor_nid == CS420X_VENDOR_NID) { |
Daniel J Blueman | 16337e0 | 2012-11-04 13:19:03 +0800 | [diff] [blame] | 193 | coef = cs_vendor_coef_get(codec, IDX_BEEP_CFG); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 194 | if (is_active_pin(codec, CS_DMIC2_PIN_NID)) |
Daniel J Blueman | 16337e0 | 2012-11-04 13:19:03 +0800 | [diff] [blame] | 195 | coef |= 1 << 4; /* DMIC2 2 chan on, GPIO1 off */ |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 196 | if (is_active_pin(codec, CS_DMIC1_PIN_NID)) |
Daniel J Blueman | 16337e0 | 2012-11-04 13:19:03 +0800 | [diff] [blame] | 197 | coef |= 1 << 3; /* DMIC1 2 chan on, GPIO0 off |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 198 | * No effect if SPDIF_OUT2 is |
| 199 | * selected in IDX_SPDIF_CTL. |
| 200 | */ |
Daniel J Blueman | 16337e0 | 2012-11-04 13:19:03 +0800 | [diff] [blame] | 201 | |
| 202 | cs_vendor_coef_set(codec, IDX_BEEP_CFG, coef); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 203 | } |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 204 | } |
| 205 | |
Takashi Iwai | c42d478 | 2011-05-02 11:36:09 +0200 | [diff] [blame] | 206 | static const struct hda_verb cs_coef_init_verbs[] = { |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 207 | {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 Iwai | 829e87e | 2012-11-23 08:25:25 +0100 | [diff] [blame] | 215 | /* 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 Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 218 | /* Beep */ |
Alexander Stein | 5a83b4b | 2012-11-01 13:42:37 +0100 | [diff] [blame] | 219 | {0x11, AC_VERB_SET_COEF_INDEX, IDX_BEEP_CFG}, |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 220 | {0x11, AC_VERB_SET_PROC_COEF, 0x0007}, /* Enable Beep thru DAC1/2/3 */ |
| 221 | |
| 222 | {} /* terminator */ |
| 223 | }; |
| 224 | |
Brian Austin | a769cbc | 2010-09-07 14:36:22 -0500 | [diff] [blame] | 225 | /* 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 Iwai | c42d478 | 2011-05-02 11:36:09 +0200 | [diff] [blame] | 243 | static const struct hda_verb cs_errata_init_verbs[] = { |
Brian Austin | a769cbc | 2010-09-07 14:36:22 -0500 | [diff] [blame] | 244 | {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 Iwai | 38c0764 | 2011-03-03 14:54:19 +0100 | [diff] [blame] | 265 | #if 0 /* Don't to set to D3 as we are in power-up sequence */ |
Brian Austin | a769cbc | 2010-09-07 14:36:22 -0500 | [diff] [blame] | 266 | {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 Iwai | 38c0764 | 2011-03-03 14:54:19 +0100 | [diff] [blame] | 269 | #endif |
Brian Austin | a769cbc | 2010-09-07 14:36:22 -0500 | [diff] [blame] | 270 | |
| 271 | {} /* terminator */ |
| 272 | }; |
| 273 | |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 274 | /* SPDIF setup */ |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 275 | static void init_digital_coef(struct hda_codec *codec) |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 276 | { |
| 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 Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | static int cs_init(struct hda_codec *codec) |
| 290 | { |
| 291 | struct cs_spec *spec = codec->spec; |
| 292 | |
Brian Austin | a769cbc | 2010-09-07 14:36:22 -0500 | [diff] [blame] | 293 | /* init_verb sequence for C0/C1/C2 errata*/ |
| 294 | snd_hda_sequence_write(codec, cs_errata_init_verbs); |
| 295 | |
Takashi Iwai | 40c20fa | 2009-07-06 13:00:57 +0200 | [diff] [blame] | 296 | snd_hda_sequence_write(codec, cs_coef_init_verbs); |
Takashi Iwai | ed20825 | 2009-07-07 09:04:26 +0200 | [diff] [blame] | 297 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 298 | snd_hda_gen_init(codec); |
Takashi Iwai | 98415ea | 2012-11-23 08:26:58 +0100 | [diff] [blame] | 299 | |
Takashi Iwai | ed20825 | 2009-07-07 09:04:26 +0200 | [diff] [blame] | 300 | 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 Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 309 | init_input_coef(codec); |
| 310 | init_digital_coef(codec); |
Takashi Iwai | 01a61e1 | 2011-10-28 00:03:22 +0200 | [diff] [blame] | 311 | |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 312 | return 0; |
| 313 | } |
| 314 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 315 | #define cs_free snd_hda_gen_free |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 316 | |
Takashi Iwai | c42d478 | 2011-05-02 11:36:09 +0200 | [diff] [blame] | 317 | static const struct hda_codec_ops cs_patch_ops = { |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 318 | .build_controls = snd_hda_gen_build_controls, |
| 319 | .build_pcms = snd_hda_gen_build_pcms, |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 320 | .init = cs_init, |
| 321 | .free = cs_free, |
David Henningsson | 5c2e4e0 | 2012-10-08 15:44:15 +0200 | [diff] [blame] | 322 | .unsol_event = snd_hda_jack_unsol_event, |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 323 | }; |
| 324 | |
| 325 | static int cs_parse_auto_config(struct hda_codec *codec) |
| 326 | { |
| 327 | struct cs_spec *spec = codec->spec; |
| 328 | int err; |
| 329 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 330 | err = snd_hda_parse_pin_defcfg(codec, &spec->gen.autocfg, NULL, 0); |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 331 | if (err < 0) |
| 332 | return err; |
Takashi Iwai | ed20825 | 2009-07-07 09:04:26 +0200 | [diff] [blame] | 333 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 334 | err = snd_hda_gen_parse_auto_config(codec, &spec->gen.autocfg); |
Takashi Iwai | ed20825 | 2009-07-07 09:04:26 +0200 | [diff] [blame] | 335 | if (err < 0) |
| 336 | return err; |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 337 | |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 338 | return 0; |
| 339 | } |
| 340 | |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 341 | static 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 Iwai | ef596a5 | 2012-09-11 16:53:08 +0200 | [diff] [blame] | 347 | { .id = CS420X_MBP101, .name = "mbp101" }, |
Takashi Iwai | ffe4d12b | 2012-11-23 08:34:13 +0100 | [diff] [blame] | 348 | { .id = CS420X_MBP81, .name = "mbp81" }, |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 349 | {} |
Takashi Iwai | a6bae20 | 2009-07-06 15:15:22 +0200 | [diff] [blame] | 350 | }; |
| 351 | |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 352 | static const struct snd_pci_quirk cs420x_fixup_tbl[] = { |
Vince Weaver | 4e7d7c6 | 2010-09-22 17:31:37 -0400 | [diff] [blame] | 353 | SND_PCI_QUIRK(0x10de, 0x0ac0, "MacBookPro 5,3", CS420X_MBP53), |
Edgar (gimli) Hucek | 87232dd | 2010-11-03 08:14:10 +0100 | [diff] [blame] | 354 | SND_PCI_QUIRK(0x10de, 0x0d94, "MacBookAir 3,1(2)", CS420X_MBP55), |
Takashi Iwai | a6bae20 | 2009-07-06 15:15:22 +0200 | [diff] [blame] | 355 | SND_PCI_QUIRK(0x10de, 0xcb79, "MacBookPro 5,5", CS420X_MBP55), |
Takashi Iwai | f46119b | 2010-10-11 14:46:35 +0200 | [diff] [blame] | 356 | SND_PCI_QUIRK(0x10de, 0xcb89, "MacBookPro 7,1", CS420X_MBP55), |
Takashi Iwai | 6dfeb703 | 2011-11-22 20:00:31 +0100 | [diff] [blame] | 357 | /* this conflicts with too many other models */ |
| 358 | /*SND_PCI_QUIRK(0x8086, 0x7270, "IMac 27 Inch", CS420X_IMAC27),*/ |
Takashi Iwai | 6dfeb703 | 2011-11-22 20:00:31 +0100 | [diff] [blame] | 359 | |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 360 | /* codec SSID */ |
Takashi Iwai | ffe4d12b | 2012-11-23 08:34:13 +0100 | [diff] [blame] | 361 | SND_PCI_QUIRK(0x106b, 0x1c00, "MacBookPro 8,1", CS420X_MBP81), |
Jérémy Lal | 7e5bea1 | 2012-01-09 17:19:45 +0100 | [diff] [blame] | 362 | SND_PCI_QUIRK(0x106b, 0x2000, "iMac 12,2", CS420X_IMAC27_122), |
Takashi Iwai | ef596a5 | 2012-09-11 16:53:08 +0200 | [diff] [blame] | 363 | SND_PCI_QUIRK(0x106b, 0x2800, "MacBookPro 10,1", CS420X_MBP101), |
Takashi Iwai | 6dfeb703 | 2011-11-22 20:00:31 +0100 | [diff] [blame] | 364 | SND_PCI_QUIRK_VENDOR(0x106b, "Apple", CS420X_APPLE), |
Takashi Iwai | a6bae20 | 2009-07-06 15:15:22 +0200 | [diff] [blame] | 365 | {} /* terminator */ |
| 366 | }; |
| 367 | |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 368 | static const struct hda_pintbl mbp53_pincfgs[] = { |
Vince Weaver | 4e7d7c6 | 2010-09-22 17:31:37 -0400 | [diff] [blame] | 369 | { 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 Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 382 | static const struct hda_pintbl mbp55_pincfgs[] = { |
Takashi Iwai | a6bae20 | 2009-07-06 15:15:22 +0200 | [diff] [blame] | 383 | { 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 Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 396 | static const struct hda_pintbl imac27_pincfgs[] = { |
Rafael Avila de Espindola | 1a5ba2e | 2009-12-22 07:59:37 +0100 | [diff] [blame] | 397 | { 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 Iwai | ef596a5 | 2012-09-11 16:53:08 +0200 | [diff] [blame] | 410 | static const struct hda_pintbl mbp101_pincfgs[] = { |
| 411 | { 0x0d, 0x40ab90f0 }, |
| 412 | { 0x0e, 0x90a600f0 }, |
| 413 | { 0x12, 0x50a600f0 }, |
| 414 | {} /* terminator */ |
| 415 | }; |
| 416 | |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 417 | static void cs420x_fixup_gpio_13(struct hda_codec *codec, |
| 418 | const struct hda_fixup *fix, int action) |
Takashi Iwai | a6bae20 | 2009-07-06 15:15:22 +0200 | [diff] [blame] | 419 | { |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 420 | 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 Iwai | a6bae20 | 2009-07-06 15:15:22 +0200 | [diff] [blame] | 427 | } |
| 428 | |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 429 | static 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 | |
| 441 | static 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 Iwai | ef596a5 | 2012-09-11 16:53:08 +0200 | [diff] [blame] | 468 | [CS420X_MBP101] = { |
| 469 | .type = HDA_FIXUP_PINS, |
| 470 | .v.pins = mbp101_pincfgs, |
| 471 | .chained = true, |
Takashi Iwai | ef596a5 | 2012-09-11 16:53:08 +0200 | [diff] [blame] | 472 | .chain_id = CS420X_GPIO_13, |
| 473 | }, |
Takashi Iwai | ffe4d12b | 2012-11-23 08:34:13 +0100 | [diff] [blame] | 474 | [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 Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 485 | }; |
| 486 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 487 | static 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 Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 501 | static int patch_cs420x(struct hda_codec *codec) |
| 502 | { |
| 503 | struct cs_spec *spec; |
| 504 | int err; |
| 505 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 506 | spec = cs_alloc_spec(codec, CS420X_VENDOR_NID); |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 507 | if (!spec) |
| 508 | return -ENOMEM; |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 509 | |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 510 | snd_hda_pick_fixup(codec, cs420x_models, cs420x_fixup_tbl, |
| 511 | cs420x_fixups); |
| 512 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 513 | |
Takashi Iwai | ed20825 | 2009-07-07 09:04:26 +0200 | [diff] [blame] | 514 | err = cs_parse_auto_config(codec); |
Takashi Iwai | 21a4dc4 | 2009-07-06 12:55:46 +0200 | [diff] [blame] | 515 | if (err < 0) |
| 516 | goto error; |
| 517 | |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 518 | codec->patch_ops = cs_patch_ops; |
| 519 | |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 520 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
| 521 | |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 522 | return 0; |
| 523 | |
| 524 | error: |
Takashi Iwai | c5e0b6d | 2012-10-10 08:50:35 +0200 | [diff] [blame] | 525 | cs_free(codec); |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 526 | return err; |
| 527 | } |
| 528 | |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 529 | /* |
| 530 | * Cirrus Logic CS4210 |
| 531 | * |
| 532 | * 1 DAC => HP(sense) / Speakers, |
| 533 | * 1 ADC <= LineIn(sense) / MicIn / DMicIn, |
| 534 | * 1 SPDIF OUT => SPDIF Trasmitter(sense) |
| 535 | */ |
| 536 | |
| 537 | /* CS4210 board names */ |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 538 | static const struct hda_model_fixup cs421x_models[] = { |
| 539 | { .id = CS421X_CDB4210, .name = "cdb4210" }, |
| 540 | {} |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 541 | }; |
| 542 | |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 543 | static const struct snd_pci_quirk cs421x_fixup_tbl[] = { |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 544 | /* Test Intel board + CDB2410 */ |
| 545 | SND_PCI_QUIRK(0x8086, 0x5001, "DP45SG/CDB4210", CS421X_CDB4210), |
| 546 | {} /* terminator */ |
| 547 | }; |
| 548 | |
| 549 | /* CS4210 board pinconfigs */ |
| 550 | /* Default CS4210 (CDB4210)*/ |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 551 | static const struct hda_pintbl cdb4210_pincfgs[] = { |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 552 | { 0x05, 0x0321401f }, |
| 553 | { 0x06, 0x90170010 }, |
| 554 | { 0x07, 0x03813031 }, |
| 555 | { 0x08, 0xb7a70037 }, |
| 556 | { 0x09, 0xb7a6003e }, |
| 557 | { 0x0a, 0x034510f0 }, |
| 558 | {} /* terminator */ |
| 559 | }; |
| 560 | |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 561 | /* Setup GPIO/SENSE for each board (if used) */ |
| 562 | static void cs421x_fixup_sense_b(struct hda_codec *codec, |
| 563 | const struct hda_fixup *fix, int action) |
| 564 | { |
| 565 | struct cs_spec *spec = codec->spec; |
| 566 | if (action == HDA_FIXUP_ACT_PRE_PROBE) |
| 567 | spec->sense_b = 1; |
| 568 | } |
| 569 | |
| 570 | static const struct hda_fixup cs421x_fixups[] = { |
| 571 | [CS421X_CDB4210] = { |
| 572 | .type = HDA_FIXUP_PINS, |
| 573 | .v.pins = cdb4210_pincfgs, |
| 574 | .chained = true, |
| 575 | .chain_id = CS421X_SENSE_B, |
| 576 | }, |
| 577 | [CS421X_SENSE_B] = { |
| 578 | .type = HDA_FIXUP_FUNC, |
| 579 | .v.func = cs421x_fixup_sense_b, |
| 580 | } |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 581 | }; |
| 582 | |
| 583 | static const struct hda_verb cs421x_coef_init_verbs[] = { |
| 584 | {0x0B, AC_VERB_SET_PROC_STATE, 1}, |
| 585 | {0x0B, AC_VERB_SET_COEF_INDEX, CS421X_IDX_DEV_CFG}, |
| 586 | /* |
| 587 | Disable Coefficient Index Auto-Increment(DAI)=1, |
| 588 | PDREF=0 |
| 589 | */ |
| 590 | {0x0B, AC_VERB_SET_PROC_COEF, 0x0001 }, |
| 591 | |
| 592 | {0x0B, AC_VERB_SET_COEF_INDEX, CS421X_IDX_ADC_CFG}, |
| 593 | /* ADC SZCMode = Digital Soft Ramp */ |
| 594 | {0x0B, AC_VERB_SET_PROC_COEF, 0x0002 }, |
| 595 | |
| 596 | {0x0B, AC_VERB_SET_COEF_INDEX, CS421X_IDX_DAC_CFG}, |
| 597 | {0x0B, AC_VERB_SET_PROC_COEF, |
| 598 | (0x0002 /* DAC SZCMode = Digital Soft Ramp */ |
| 599 | | 0x0004 /* Mute DAC on FIFO error */ |
| 600 | | 0x0008 /* Enable DAC High Pass Filter */ |
| 601 | )}, |
| 602 | {} /* terminator */ |
| 603 | }; |
| 604 | |
| 605 | /* Errata: CS4210 rev A1 Silicon |
| 606 | * |
| 607 | * http://www.cirrus.com/en/pubs/errata/ |
| 608 | * |
| 609 | * Description: |
| 610 | * 1. Performance degredation is present in the ADC. |
| 611 | * 2. Speaker output is not completely muted upon HP detect. |
| 612 | * 3. Noise is present when clipping occurs on the amplified |
| 613 | * speaker outputs. |
| 614 | * |
| 615 | * Workaround: |
| 616 | * The following verb sequence written to the registers during |
| 617 | * initialization will correct the issues listed above. |
| 618 | */ |
| 619 | |
| 620 | static const struct hda_verb cs421x_coef_init_verbs_A1_silicon_fixes[] = { |
| 621 | {0x0B, AC_VERB_SET_PROC_STATE, 0x01}, /* VPW: processing on */ |
| 622 | |
| 623 | {0x0B, AC_VERB_SET_COEF_INDEX, 0x0006}, |
| 624 | {0x0B, AC_VERB_SET_PROC_COEF, 0x9999}, /* Test mode: on */ |
| 625 | |
| 626 | {0x0B, AC_VERB_SET_COEF_INDEX, 0x000A}, |
| 627 | {0x0B, AC_VERB_SET_PROC_COEF, 0x14CB}, /* Chop double */ |
| 628 | |
| 629 | {0x0B, AC_VERB_SET_COEF_INDEX, 0x0011}, |
| 630 | {0x0B, AC_VERB_SET_PROC_COEF, 0xA2D0}, /* Increase ADC current */ |
| 631 | |
| 632 | {0x0B, AC_VERB_SET_COEF_INDEX, 0x001A}, |
| 633 | {0x0B, AC_VERB_SET_PROC_COEF, 0x02A9}, /* Mute speaker */ |
| 634 | |
| 635 | {0x0B, AC_VERB_SET_COEF_INDEX, 0x001B}, |
| 636 | {0x0B, AC_VERB_SET_PROC_COEF, 0X1006}, /* Remove noise */ |
| 637 | |
| 638 | {} /* terminator */ |
| 639 | }; |
| 640 | |
| 641 | /* Speaker Amp Gain is controlled by the vendor widget's coef 4 */ |
| 642 | static const DECLARE_TLV_DB_SCALE(cs421x_speaker_boost_db_scale, 900, 300, 0); |
| 643 | |
| 644 | static int cs421x_boost_vol_info(struct snd_kcontrol *kcontrol, |
| 645 | struct snd_ctl_elem_info *uinfo) |
| 646 | { |
| 647 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 648 | uinfo->count = 1; |
| 649 | uinfo->value.integer.min = 0; |
| 650 | uinfo->value.integer.max = 3; |
| 651 | return 0; |
| 652 | } |
| 653 | |
| 654 | static int cs421x_boost_vol_get(struct snd_kcontrol *kcontrol, |
| 655 | struct snd_ctl_elem_value *ucontrol) |
| 656 | { |
| 657 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 658 | |
| 659 | ucontrol->value.integer.value[0] = |
| 660 | cs_vendor_coef_get(codec, CS421X_IDX_SPK_CTL) & 0x0003; |
| 661 | return 0; |
| 662 | } |
| 663 | |
| 664 | static int cs421x_boost_vol_put(struct snd_kcontrol *kcontrol, |
| 665 | struct snd_ctl_elem_value *ucontrol) |
| 666 | { |
| 667 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 668 | |
| 669 | unsigned int vol = ucontrol->value.integer.value[0]; |
| 670 | unsigned int coef = |
| 671 | cs_vendor_coef_get(codec, CS421X_IDX_SPK_CTL); |
| 672 | unsigned int original_coef = coef; |
| 673 | |
| 674 | coef &= ~0x0003; |
| 675 | coef |= (vol & 0x0003); |
| 676 | if (original_coef == coef) |
| 677 | return 0; |
| 678 | else { |
| 679 | cs_vendor_coef_set(codec, CS421X_IDX_SPK_CTL, coef); |
| 680 | return 1; |
| 681 | } |
| 682 | } |
| 683 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 684 | static const struct snd_kcontrol_new cs421x_speaker_boost_ctl = { |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 685 | |
| 686 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 687 | .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | |
| 688 | SNDRV_CTL_ELEM_ACCESS_TLV_READ), |
| 689 | .name = "Speaker Boost Playback Volume", |
| 690 | .info = cs421x_boost_vol_info, |
| 691 | .get = cs421x_boost_vol_get, |
| 692 | .put = cs421x_boost_vol_put, |
| 693 | .tlv = { .p = cs421x_speaker_boost_db_scale }, |
| 694 | }; |
| 695 | |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 696 | static void cs4210_pinmux_init(struct hda_codec *codec) |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 697 | { |
| 698 | struct cs_spec *spec = codec->spec; |
| 699 | unsigned int def_conf, coef; |
| 700 | |
| 701 | /* GPIO, DMIC_SCL, DMIC_SDA and SENSE_B are multiplexed */ |
| 702 | coef = cs_vendor_coef_get(codec, CS421X_IDX_DEV_CFG); |
| 703 | |
| 704 | if (spec->gpio_mask) |
| 705 | coef |= 0x0008; /* B1,B2 are GPIOs */ |
| 706 | else |
| 707 | coef &= ~0x0008; |
| 708 | |
| 709 | if (spec->sense_b) |
| 710 | coef |= 0x0010; /* B2 is SENSE_B, not inverted */ |
| 711 | else |
| 712 | coef &= ~0x0010; |
| 713 | |
| 714 | cs_vendor_coef_set(codec, CS421X_IDX_DEV_CFG, coef); |
| 715 | |
| 716 | if ((spec->gpio_mask || spec->sense_b) && |
| 717 | is_active_pin(codec, CS421X_DMIC_PIN_NID)) { |
| 718 | |
| 719 | /* |
| 720 | GPIO or SENSE_B forced - disconnect the DMIC pin. |
| 721 | */ |
| 722 | def_conf = snd_hda_codec_get_pincfg(codec, CS421X_DMIC_PIN_NID); |
| 723 | def_conf &= ~AC_DEFCFG_PORT_CONN; |
| 724 | def_conf |= (AC_JACK_PORT_NONE << AC_DEFCFG_PORT_CONN_SHIFT); |
| 725 | snd_hda_codec_set_pincfg(codec, CS421X_DMIC_PIN_NID, def_conf); |
| 726 | } |
| 727 | } |
| 728 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 729 | static void cs4210_spdif_automute(struct hda_codec *codec, |
| 730 | struct hda_jack_tbl *tbl) |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 731 | { |
| 732 | struct cs_spec *spec = codec->spec; |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 733 | bool spdif_present = false; |
| 734 | hda_nid_t spdif_pin = spec->gen.autocfg.dig_out_pins[0]; |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 735 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 736 | /* detect on spdif is specific to CS4210 */ |
| 737 | if (!spec->spdif_detect || |
| 738 | spec->vendor_nid != CS4210_VENDOR_NID) |
| 739 | return; |
| 740 | |
| 741 | spdif_present = snd_hda_jack_detect(codec, spdif_pin); |
| 742 | if (spdif_present == spec->spdif_present) |
| 743 | return; |
| 744 | |
| 745 | spec->spdif_present = spdif_present; |
| 746 | /* SPDIF TX on/off */ |
| 747 | if (spdif_present) |
| 748 | snd_hda_set_pin_ctl(codec, spdif_pin, |
| 749 | spdif_present ? PIN_OUT : 0); |
| 750 | |
| 751 | cs_automute(codec); |
| 752 | } |
| 753 | |
| 754 | static void parse_cs421x_digital(struct hda_codec *codec) |
| 755 | { |
| 756 | struct cs_spec *spec = codec->spec; |
| 757 | struct auto_pin_cfg *cfg = &spec->gen.autocfg; |
| 758 | int i; |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 759 | |
| 760 | for (i = 0; i < cfg->dig_outs; i++) { |
| 761 | hda_nid_t nid = cfg->dig_out_pins[i]; |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 762 | if (get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP) { |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 763 | spec->spdif_detect = 1; |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 764 | snd_hda_jack_detect_enable_callback(codec, nid, |
| 765 | SPDIF_EVENT, |
| 766 | cs4210_spdif_automute); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 767 | } |
| 768 | } |
| 769 | } |
| 770 | |
| 771 | static int cs421x_init(struct hda_codec *codec) |
| 772 | { |
| 773 | struct cs_spec *spec = codec->spec; |
| 774 | |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 775 | if (spec->vendor_nid == CS4210_VENDOR_NID) { |
| 776 | snd_hda_sequence_write(codec, cs421x_coef_init_verbs); |
| 777 | snd_hda_sequence_write(codec, cs421x_coef_init_verbs_A1_silicon_fixes); |
| 778 | cs4210_pinmux_init(codec); |
| 779 | } |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 780 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 781 | snd_hda_gen_init(codec); |
| 782 | |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 783 | if (spec->gpio_mask) { |
| 784 | snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_MASK, |
| 785 | spec->gpio_mask); |
| 786 | snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DIRECTION, |
| 787 | spec->gpio_dir); |
| 788 | snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, |
| 789 | spec->gpio_data); |
| 790 | } |
| 791 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 792 | init_input_coef(codec); |
| 793 | |
| 794 | cs4210_spdif_automute(codec, NULL); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 795 | |
| 796 | return 0; |
| 797 | } |
| 798 | |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 799 | static int cs421x_build_controls(struct hda_codec *codec) |
| 800 | { |
Takashi Iwai | 01a61e1 | 2011-10-28 00:03:22 +0200 | [diff] [blame] | 801 | struct cs_spec *spec = codec->spec; |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 802 | int err; |
| 803 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 804 | err = snd_hda_gen_build_controls(codec); |
Takashi Iwai | 01a61e1 | 2011-10-28 00:03:22 +0200 | [diff] [blame] | 805 | if (err < 0) |
| 806 | return err; |
| 807 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 808 | if (spec->gen.autocfg.speaker_outs && |
| 809 | spec->vendor_nid == CS4210_VENDOR_NID) { |
| 810 | err = snd_hda_ctl_add(codec, 0, |
| 811 | snd_ctl_new1(&cs421x_speaker_boost_ctl, codec)); |
| 812 | if (err < 0) |
| 813 | return err; |
| 814 | } |
Takashi Iwai | 01a61e1 | 2011-10-28 00:03:22 +0200 | [diff] [blame] | 815 | return 0; |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 816 | } |
| 817 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 818 | static void fix_volume_caps(struct hda_codec *codec, hda_nid_t dac) |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 819 | { |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 820 | unsigned int caps; |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 821 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 822 | /* set the upper-limit for mixer amp to 0dB */ |
| 823 | caps = query_amp_caps(codec, dac, HDA_OUTPUT); |
| 824 | caps &= ~(0x7f << AC_AMPCAP_NUM_STEPS_SHIFT); |
| 825 | caps |= ((caps >> AC_AMPCAP_OFFSET_SHIFT) & 0x7f) |
| 826 | << AC_AMPCAP_NUM_STEPS_SHIFT; |
| 827 | snd_hda_override_amp_caps(codec, dac, HDA_OUTPUT, caps); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 828 | } |
| 829 | |
| 830 | static int cs421x_parse_auto_config(struct hda_codec *codec) |
| 831 | { |
| 832 | struct cs_spec *spec = codec->spec; |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 833 | hda_nid_t dac = CS4210_DAC_NID; |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 834 | int err; |
| 835 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 836 | fix_volume_caps(codec, dac); |
| 837 | |
| 838 | err = snd_hda_parse_pin_defcfg(codec, &spec->gen.autocfg, NULL, 0); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 839 | if (err < 0) |
| 840 | return err; |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 841 | |
| 842 | err = snd_hda_gen_parse_auto_config(codec, &spec->gen.autocfg); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 843 | if (err < 0) |
| 844 | return err; |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 845 | |
| 846 | parse_cs421x_digital(codec); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 847 | return 0; |
| 848 | } |
| 849 | |
| 850 | #ifdef CONFIG_PM |
| 851 | /* |
| 852 | Manage PDREF, when transitioning to D3hot |
| 853 | (DAC,ADC) -> D3, PDREF=1, AFG->D3 |
| 854 | */ |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 855 | static int cs421x_suspend(struct hda_codec *codec) |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 856 | { |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 857 | struct cs_spec *spec = codec->spec; |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 858 | unsigned int coef; |
| 859 | |
| 860 | snd_hda_shutup_pins(codec); |
| 861 | |
| 862 | snd_hda_codec_write(codec, CS4210_DAC_NID, 0, |
| 863 | AC_VERB_SET_POWER_STATE, AC_PWRST_D3); |
| 864 | snd_hda_codec_write(codec, CS4210_ADC_NID, 0, |
| 865 | AC_VERB_SET_POWER_STATE, AC_PWRST_D3); |
| 866 | |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 867 | if (spec->vendor_nid == CS4210_VENDOR_NID) { |
| 868 | coef = cs_vendor_coef_get(codec, CS421X_IDX_DEV_CFG); |
| 869 | coef |= 0x0004; /* PDREF */ |
| 870 | cs_vendor_coef_set(codec, CS421X_IDX_DEV_CFG, coef); |
| 871 | } |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 872 | |
| 873 | return 0; |
| 874 | } |
| 875 | #endif |
| 876 | |
Daniel J Blueman | 00e17f7 | 2012-11-04 13:19:04 +0800 | [diff] [blame] | 877 | static const struct hda_codec_ops cs421x_patch_ops = { |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 878 | .build_controls = cs421x_build_controls, |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 879 | .build_pcms = snd_hda_gen_build_pcms, |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 880 | .init = cs421x_init, |
| 881 | .free = cs_free, |
David Henningsson | 5c2e4e0 | 2012-10-08 15:44:15 +0200 | [diff] [blame] | 882 | .unsol_event = snd_hda_jack_unsol_event, |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 883 | #ifdef CONFIG_PM |
| 884 | .suspend = cs421x_suspend, |
| 885 | #endif |
| 886 | }; |
| 887 | |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 888 | static int patch_cs4210(struct hda_codec *codec) |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 889 | { |
| 890 | struct cs_spec *spec; |
| 891 | int err; |
| 892 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 893 | spec = cs_alloc_spec(codec, CS4210_VENDOR_NID); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 894 | if (!spec) |
| 895 | return -ENOMEM; |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 896 | |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 897 | snd_hda_pick_fixup(codec, cs421x_models, cs421x_fixup_tbl, |
| 898 | cs421x_fixups); |
| 899 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 900 | |
| 901 | /* |
| 902 | Update the GPIO/DMIC/SENSE_B pinmux before the configuration |
| 903 | is auto-parsed. If GPIO or SENSE_B is forced, DMIC input |
| 904 | is disabled. |
| 905 | */ |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 906 | cs4210_pinmux_init(codec); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 907 | |
| 908 | err = cs421x_parse_auto_config(codec); |
| 909 | if (err < 0) |
| 910 | goto error; |
| 911 | |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 912 | codec->patch_ops = cs421x_patch_ops; |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 913 | |
Takashi Iwai | b35aabd | 2012-08-24 19:09:45 +0200 | [diff] [blame] | 914 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
| 915 | |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 916 | return 0; |
| 917 | |
| 918 | error: |
Takashi Iwai | c5e0b6d | 2012-10-10 08:50:35 +0200 | [diff] [blame] | 919 | cs_free(codec); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 920 | return err; |
| 921 | } |
| 922 | |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 923 | static int patch_cs4213(struct hda_codec *codec) |
| 924 | { |
| 925 | struct cs_spec *spec; |
| 926 | int err; |
| 927 | |
Takashi Iwai | 1077a02 | 2012-12-19 16:39:18 +0100 | [diff] [blame^] | 928 | spec = cs_alloc_spec(codec, CS4213_VENDOR_NID); |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 929 | if (!spec) |
| 930 | return -ENOMEM; |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 931 | |
| 932 | err = cs421x_parse_auto_config(codec); |
| 933 | if (err < 0) |
| 934 | goto error; |
| 935 | |
| 936 | codec->patch_ops = cs421x_patch_ops; |
| 937 | return 0; |
| 938 | |
| 939 | error: |
Takashi Iwai | c5e0b6d | 2012-10-10 08:50:35 +0200 | [diff] [blame] | 940 | cs_free(codec); |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 941 | return err; |
| 942 | } |
| 943 | |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 944 | |
| 945 | /* |
| 946 | * patch entries |
| 947 | */ |
Takashi Iwai | c42d478 | 2011-05-02 11:36:09 +0200 | [diff] [blame] | 948 | static const struct hda_codec_preset snd_hda_preset_cirrus[] = { |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 949 | { .id = 0x10134206, .name = "CS4206", .patch = patch_cs420x }, |
| 950 | { .id = 0x10134207, .name = "CS4207", .patch = patch_cs420x }, |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 951 | { .id = 0x10134210, .name = "CS4210", .patch = patch_cs4210 }, |
| 952 | { .id = 0x10134213, .name = "CS4213", .patch = patch_cs4213 }, |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 953 | {} /* terminator */ |
| 954 | }; |
| 955 | |
| 956 | MODULE_ALIAS("snd-hda-codec-id:10134206"); |
| 957 | MODULE_ALIAS("snd-hda-codec-id:10134207"); |
Tim Howe | 56487c2 | 2011-07-22 16:41:00 -0500 | [diff] [blame] | 958 | MODULE_ALIAS("snd-hda-codec-id:10134210"); |
David Henningsson | 5660ffd | 2012-01-02 12:40:17 +0100 | [diff] [blame] | 959 | MODULE_ALIAS("snd-hda-codec-id:10134213"); |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 960 | |
| 961 | MODULE_LICENSE("GPL"); |
| 962 | MODULE_DESCRIPTION("Cirrus Logic HD-audio codec"); |
| 963 | |
| 964 | static struct hda_codec_preset_list cirrus_list = { |
| 965 | .preset = snd_hda_preset_cirrus, |
| 966 | .owner = THIS_MODULE, |
| 967 | }; |
| 968 | |
| 969 | static int __init patch_cirrus_init(void) |
| 970 | { |
| 971 | return snd_hda_add_codec_preset(&cirrus_list); |
| 972 | } |
| 973 | |
| 974 | static void __exit patch_cirrus_exit(void) |
| 975 | { |
| 976 | snd_hda_delete_codec_preset(&cirrus_list); |
| 977 | } |
| 978 | |
| 979 | module_init(patch_cirrus_init) |
| 980 | module_exit(patch_cirrus_exit) |