blob: 0c521b7752b2ef708384c985a0286927c8f3c468 [file] [log] [blame]
Matt2f2f4252005-04-13 14:45:30 +02001/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
4 * HD audio interface patch for SigmaTel STAC92xx
5 *
6 * Copyright (c) 2005 Embedded Alley Solutions, Inc.
Matt Porter403d1942005-11-29 15:00:51 +01007 * Matt Porter <mporter@embeddedalley.com>
Matt2f2f4252005-04-13 14:45:30 +02008 *
9 * Based on patch_cmedia.c and patch_realtek.c
10 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
11 *
12 * This driver is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This driver is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 */
26
Matt2f2f4252005-04-13 14:45:30 +020027#include <linux/init.h>
28#include <linux/delay.h>
29#include <linux/slab.h>
30#include <linux/pci.h>
Vitaliy Kulikov5bdaaad2009-11-04 07:57:45 +010031#include <linux/dmi.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040032#include <linux/module.h>
Matt2f2f4252005-04-13 14:45:30 +020033#include <sound/core.h>
Matthew Ranostay45a6ac12008-10-15 14:45:38 -040034#include <sound/jack.h>
Clemens Ladischa74ccea2010-10-22 15:52:34 +020035#include <sound/tlv.h>
Matt2f2f4252005-04-13 14:45:30 +020036#include "hda_codec.h"
37#include "hda_local.h"
Takashi Iwai128bc4b2012-05-07 17:42:31 +020038#include "hda_auto_parser.h"
Matthew Ranostay1cd22242008-07-18 18:20:52 +020039#include "hda_beep.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020040#include "hda_jack.h"
Takashi Iwai36c9db72013-01-17 17:07:59 +010041#include "hda_generic.h"
Matt2f2f4252005-04-13 14:45:30 +020042
Takashi Iwaic6e4c662008-11-25 11:58:19 +010043enum {
Takashi Iwai36c9db72013-01-17 17:07:59 +010044 STAC_VREF_EVENT = 8,
Takashi Iwaic6e4c662008-11-25 11:58:19 +010045 STAC_PWR_EVENT,
Takashi Iwaic6e4c662008-11-25 11:58:19 +010046};
Matt4e550962005-07-04 17:51:39 +020047
Takashi Iwaif5fcc132006-11-24 17:07:44 +010048enum {
49 STAC_REF,
Tobin Davisbf277782008-02-03 20:31:47 +010050 STAC_9200_OQO,
Takashi Iwaidfe495d2007-08-23 19:04:28 +020051 STAC_9200_DELL_D21,
52 STAC_9200_DELL_D22,
53 STAC_9200_DELL_D23,
54 STAC_9200_DELL_M21,
55 STAC_9200_DELL_M22,
56 STAC_9200_DELL_M23,
57 STAC_9200_DELL_M24,
58 STAC_9200_DELL_M25,
59 STAC_9200_DELL_M26,
60 STAC_9200_DELL_M27,
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +020061 STAC_9200_M4,
62 STAC_9200_M4_2,
Takashi Iwai117f2572008-03-18 09:53:23 +010063 STAC_9200_PANASONIC,
Takashi Iwaid39a3ae2013-01-14 14:06:26 +010064 STAC_9200_EAPD_INIT,
Takashi Iwaif5fcc132006-11-24 17:07:44 +010065 STAC_9200_MODELS
66};
67
68enum {
69 STAC_9205_REF,
Takashi Iwaidfe495d2007-08-23 19:04:28 +020070 STAC_9205_DELL_M42,
Tobin Davisae0a8ed2007-08-13 15:50:29 +020071 STAC_9205_DELL_M43,
72 STAC_9205_DELL_M44,
Takashi Iwaid9a42682009-01-22 17:40:18 +010073 STAC_9205_EAPD,
Takashi Iwaif5fcc132006-11-24 17:07:44 +010074 STAC_9205_MODELS
75};
76
77enum {
Takashi Iwai9e43f0d2008-12-17 14:51:01 +010078 STAC_92HD73XX_NO_JD, /* no jack-detection */
Matthew Ranostaye1f0d662007-12-13 17:47:21 +010079 STAC_92HD73XX_REF,
Wu Fengguangae709442009-08-19 17:05:11 +080080 STAC_92HD73XX_INTEL,
Takashi Iwai661cd8f2008-11-25 15:18:29 +010081 STAC_DELL_M6_AMIC,
82 STAC_DELL_M6_DMIC,
83 STAC_DELL_M6_BOTH,
Matthew Ranostay6b3ab212008-11-03 08:12:43 -050084 STAC_DELL_EQ,
Takashi Iwai842ae632009-09-02 07:43:08 +020085 STAC_ALIENWARE_M17X,
Hui Wang80c24502014-02-20 11:47:21 +080086 STAC_92HD89XX_HP_FRONT_JACK,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +010087 STAC_92HD73XX_MODELS
88};
89
90enum {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +020091 STAC_92HD83XXX_REF,
Matthew Ranostay32ed3f42009-01-22 20:53:29 -050092 STAC_92HD83XXX_PWR_REF,
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -050093 STAC_DELL_S14,
Julian Wollrathf7f9bdf2011-11-09 10:02:40 +010094 STAC_DELL_VOSTRO_3500,
Vitaliy Kulikov0c27c182011-07-22 17:50:37 -050095 STAC_92HD83XXX_HP_cNB11_INTQUAD,
Steven Eastland48315592010-08-06 15:07:35 -060096 STAC_HP_DV7_4000,
Vitaliy Kulikov5556e142012-02-27 16:47:37 -060097 STAC_HP_ZEPHYR,
Takashi Iwaia3e19972012-07-26 08:17:20 +020098 STAC_92HD83XXX_HP_LED,
Takashi Iwaiff8a1e22012-07-31 10:16:59 +020099 STAC_92HD83XXX_HP_INV_LED,
Takashi Iwai62cbde12012-09-14 11:58:54 +0200100 STAC_92HD83XXX_HP_MIC_LED,
Takashi Iwaif5556a62014-02-24 15:23:10 +0100101 STAC_HP_LED_GPIO10,
David Henningsson8d032a82012-10-09 12:48:40 +0200102 STAC_92HD83XXX_HEADSET_JACK,
Takashi Iwai372f8c72013-01-14 18:06:34 +0100103 STAC_92HD83XXX_HP,
Takashi Iwai49920422013-01-18 14:28:07 +0100104 STAC_HP_ENVY_BASS,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200105 STAC_92HD83XXX_MODELS
106};
107
108enum {
Matthew Ranostaye035b842007-11-06 11:53:55 +0100109 STAC_92HD71BXX_REF,
Matthew Ranostaya7662642008-02-21 07:51:14 +0100110 STAC_DELL_M4_1,
111 STAC_DELL_M4_2,
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -0500112 STAC_DELL_M4_3,
Matthew Ranostay6a14f582008-09-12 12:02:30 -0400113 STAC_HP_M4,
Takashi Iwai2a6ce6e2010-05-12 10:16:20 +0200114 STAC_HP_DV4,
Takashi Iwai1b0652e2009-01-14 08:27:35 +0100115 STAC_HP_DV5,
Christoph Plattnerae6241f2009-03-08 23:19:05 +0100116 STAC_HP_HDX,
Takashi Iwai0f6fcb72013-01-14 17:05:25 +0100117 STAC_92HD71BXX_HP,
118 STAC_92HD71BXX_NO_DMIC,
119 STAC_92HD71BXX_NO_SMUX,
Matthew Ranostaye035b842007-11-06 11:53:55 +0100120 STAC_92HD71BXX_MODELS
121};
122
123enum {
Tobin Davis8e21c342007-01-08 11:04:17 +0100124 STAC_925x_REF,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +0200125 STAC_M1,
126 STAC_M1_2,
127 STAC_M2,
Tobin Davis8e21c342007-01-08 11:04:17 +0100128 STAC_M2_2,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +0200129 STAC_M3,
130 STAC_M5,
131 STAC_M6,
Tobin Davis8e21c342007-01-08 11:04:17 +0100132 STAC_925x_MODELS
133};
134
135enum {
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100136 STAC_D945_REF,
137 STAC_D945GTP3,
138 STAC_D945GTP5,
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +0200139 STAC_INTEL_MAC_V1,
140 STAC_INTEL_MAC_V2,
141 STAC_INTEL_MAC_V3,
142 STAC_INTEL_MAC_V4,
143 STAC_INTEL_MAC_V5,
Takashi Iwai0a42784642013-01-14 15:20:13 +0100144 STAC_INTEL_MAC_AUTO,
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -0300145 STAC_ECS_202,
Takashi Iwaidfe495d2007-08-23 19:04:28 +0200146 STAC_922X_DELL_D81,
147 STAC_922X_DELL_D82,
148 STAC_922X_DELL_M81,
149 STAC_922X_DELL_M82,
Takashi Iwai0a42784642013-01-14 15:20:13 +0100150 STAC_922X_INTEL_MAC_GPIO,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100151 STAC_922X_MODELS
152};
153
154enum {
Takashi Iwaie28d8322008-12-17 13:48:29 +0100155 STAC_D965_REF_NO_JD, /* no jack-detection */
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100156 STAC_D965_REF,
157 STAC_D965_3ST,
158 STAC_D965_5ST,
Takashi Iwai679d92e2009-05-24 19:00:08 +0200159 STAC_D965_5ST_NO_FP,
Takashi Iwai29ac8362013-01-14 16:03:38 +0100160 STAC_D965_VERBS,
Tobin Davis4ff076e2007-08-07 11:48:12 +0200161 STAC_DELL_3ST,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +0100162 STAC_DELL_BIOS,
Takashi Iwai29ac8362013-01-14 16:03:38 +0100163 STAC_DELL_BIOS_SPDIF,
164 STAC_927X_DELL_DMIC,
Takashi Iwai54930532009-10-11 17:38:29 +0200165 STAC_927X_VOLKNOB,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100166 STAC_927X_MODELS
167};
Matt Porter403d1942005-11-29 15:00:51 +0100168
Takashi Iwai307282c2009-03-12 18:17:58 +0100169enum {
Takashi Iwai307282c2009-03-12 18:17:58 +0100170 STAC_9872_VAIO,
171 STAC_9872_MODELS
172};
173
Matt2f2f4252005-04-13 14:45:30 +0200174struct sigmatel_spec {
Takashi Iwai36c9db72013-01-17 17:07:59 +0100175 struct hda_gen_spec gen;
Mattc7d4b2f2005-06-27 14:59:41 +0200176
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -0500177 unsigned int eapd_switch: 1;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +0100178 unsigned int linear_tone_beep:1;
David Henningsson8d032a82012-10-09 12:48:40 +0200179 unsigned int headset_jack:1; /* 4-pin headset jack (hp + mono mic) */
Takashi Iwai29ac8362013-01-14 16:03:38 +0100180 unsigned int volknob_init:1; /* special volume-knob initialization */
Takashi Iwai36c9db72013-01-17 17:07:59 +0100181 unsigned int powerdown_adcs:1;
Takashi Iwai42875472013-01-22 09:34:48 +0100182 unsigned int have_spdif_mux:1;
Mattc7d4b2f2005-06-27 14:59:41 +0200183
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100184 /* gpio lines */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +0200185 unsigned int eapd_mask;
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100186 unsigned int gpio_mask;
187 unsigned int gpio_dir;
188 unsigned int gpio_data;
189 unsigned int gpio_mute;
Takashi Iwai86d190e2009-05-26 15:18:58 +0200190 unsigned int gpio_led;
Vitaliy Kulikovc357aab2009-12-11 07:51:54 +0100191 unsigned int gpio_led_polarity;
Takashi Iwaif1a73742011-12-04 13:44:06 +0100192 unsigned int vref_mute_led_nid; /* pin NID for mute-LED vref control */
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -0500193 unsigned int vref_led;
Takashi Iwai372f8c72013-01-14 18:06:34 +0100194 int default_polarity;
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100195
Takashi Iwai62cbde12012-09-14 11:58:54 +0200196 unsigned int mic_mute_led_gpio; /* capture mute LED GPIO */
197 bool mic_mute_led_on; /* current mic mute state */
198
Matthew Ranostay8daaaa92008-08-15 07:45:52 +0200199 /* stream */
200 unsigned int stream_delay;
201
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100202 /* analog loopback */
Takashi Iwai2b635362011-05-02 12:33:43 +0200203 const struct snd_kcontrol_new *aloopback_ctl;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100204 unsigned int aloopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100205 unsigned char aloopback_mask;
206 unsigned char aloopback_shift;
Takashi Iwai82599802007-07-31 15:56:24 +0200207
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100208 /* power management */
Takashi Iwaic8822462012-05-15 09:11:36 +0200209 unsigned int power_map_bits;
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100210 unsigned int num_pwrs;
Takashi Iwai2b635362011-05-02 12:33:43 +0200211 const hda_nid_t *pwr_nids;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100212 unsigned int active_adcs;
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100213
Takashi Iwai36c9db72013-01-17 17:07:59 +0100214 /* beep widgets */
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200215 hda_nid_t anabeep_nid;
Takashi Iwai42875472013-01-22 09:34:48 +0100216
217 /* SPDIF-out mux */
218 const char * const *spdif_labels;
219 struct hda_input_mux spdif_mux;
220 unsigned int cur_smux[2];
Matt2f2f4252005-04-13 14:45:30 +0200221};
222
Takashi Iwaic8822462012-05-15 09:11:36 +0200223#define AC_VERB_IDT_SET_POWER_MAP 0x7ec
224#define AC_VERB_IDT_GET_POWER_MAP 0xfec
225
Takashi Iwai2b635362011-05-02 12:33:43 +0200226static const hda_nid_t stac92hd73xx_pwr_nids[8] = {
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100227 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
228 0x0f, 0x10, 0x11
229};
230
Charles Chinafef2cf2011-11-11 08:05:28 +0100231static const hda_nid_t stac92hd83xxx_pwr_nids[7] = {
232 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
233 0x0f, 0x10
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200234};
235
Takashi Iwai2b635362011-05-02 12:33:43 +0200236static const hda_nid_t stac92hd71bxx_pwr_nids[3] = {
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100237 0x0a, 0x0d, 0x0f
238};
239
Matthew Ranostaye035b842007-11-06 11:53:55 +0100240
Takashi Iwai36c9db72013-01-17 17:07:59 +0100241/*
242 * PCM hooks
243 */
244static void stac_playback_pcm_hook(struct hda_pcm_stream *hinfo,
245 struct hda_codec *codec,
246 struct snd_pcm_substream *substream,
247 int action)
Matt Porter8b657272006-10-26 17:12:59 +0200248{
Matt Porter8b657272006-10-26 17:12:59 +0200249 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100250 if (action == HDA_GEN_PCM_ACT_OPEN && spec->stream_delay)
251 msleep(spec->stream_delay);
Matt Porter8b657272006-10-26 17:12:59 +0200252}
253
Takashi Iwai36c9db72013-01-17 17:07:59 +0100254static void stac_capture_pcm_hook(struct hda_pcm_stream *hinfo,
255 struct hda_codec *codec,
256 struct snd_pcm_substream *substream,
257 int action)
Matt Porter8b657272006-10-26 17:12:59 +0200258{
Matt Porter8b657272006-10-26 17:12:59 +0200259 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100260 int i, idx = 0;
Matt Porter8b657272006-10-26 17:12:59 +0200261
Takashi Iwai36c9db72013-01-17 17:07:59 +0100262 if (!spec->powerdown_adcs)
263 return;
Matt Porter8b657272006-10-26 17:12:59 +0200264
Takashi Iwai36c9db72013-01-17 17:07:59 +0100265 for (i = 0; i < spec->gen.num_all_adcs; i++) {
266 if (spec->gen.all_adcs[i] == hinfo->nid) {
267 idx = i;
268 break;
269 }
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400270 }
Takashi Iwai36c9db72013-01-17 17:07:59 +0100271
272 switch (action) {
273 case HDA_GEN_PCM_ACT_OPEN:
274 msleep(40);
275 snd_hda_codec_write(codec, hinfo->nid, 0,
276 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
277 spec->active_adcs |= (1 << idx);
278 break;
279 case HDA_GEN_PCM_ACT_CLOSE:
280 snd_hda_codec_write(codec, hinfo->nid, 0,
281 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
282 spec->active_adcs &= ~(1 << idx);
283 break;
284 }
285}
286
287/*
288 * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
289 * funky external mute control using GPIO pins.
290 */
291
292static void stac_gpio_set(struct hda_codec *codec, unsigned int mask,
293 unsigned int dir_mask, unsigned int data)
294{
295 unsigned int gpiostate, gpiomask, gpiodir;
296
297 snd_printdd("%s msk %x dir %x gpio %x\n", __func__, mask, dir_mask, data);
298
299 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
300 AC_VERB_GET_GPIO_DATA, 0);
301 gpiostate = (gpiostate & ~dir_mask) | (data & dir_mask);
302
303 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
304 AC_VERB_GET_GPIO_MASK, 0);
305 gpiomask |= mask;
306
307 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
308 AC_VERB_GET_GPIO_DIRECTION, 0);
309 gpiodir |= dir_mask;
310
311 /* Configure GPIOx as CMOS */
312 snd_hda_codec_write(codec, codec->afg, 0, 0x7e7, 0);
313
314 snd_hda_codec_write(codec, codec->afg, 0,
315 AC_VERB_SET_GPIO_MASK, gpiomask);
316 snd_hda_codec_read(codec, codec->afg, 0,
317 AC_VERB_SET_GPIO_DIRECTION, gpiodir); /* sync */
318
319 msleep(1);
320
321 snd_hda_codec_read(codec, codec->afg, 0,
322 AC_VERB_SET_GPIO_DATA, gpiostate); /* sync */
323}
324
325/* hook for controlling mic-mute LED GPIO */
Takashi Iwaia90229e2013-01-18 14:10:00 +0100326static void stac_capture_led_hook(struct hda_codec *codec,
327 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai36c9db72013-01-17 17:07:59 +0100328{
329 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaia90229e2013-01-18 14:10:00 +0100330 bool mute;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100331
Takashi Iwaia90229e2013-01-18 14:10:00 +0100332 if (!ucontrol)
333 return;
334
335 mute = !(ucontrol->value.integer.value[0] ||
336 ucontrol->value.integer.value[1]);
Takashi Iwai36c9db72013-01-17 17:07:59 +0100337 if (spec->mic_mute_led_on != mute) {
338 spec->mic_mute_led_on = mute;
339 if (mute)
340 spec->gpio_data |= spec->mic_mute_led_gpio;
341 else
342 spec->gpio_data &= ~spec->mic_mute_led_gpio;
343 stac_gpio_set(codec, spec->gpio_mask,
344 spec->gpio_dir, spec->gpio_data);
345 }
Matthew Ranostayd9737752008-09-07 12:03:41 +0200346}
347
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -0500348static int stac_vrefout_set(struct hda_codec *codec,
349 hda_nid_t nid, unsigned int new_vref)
350{
351 int error, pinctl;
352
353 snd_printdd("%s, nid %x ctl %x\n", __func__, nid, new_vref);
354 pinctl = snd_hda_codec_read(codec, nid, 0,
355 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
356
357 if (pinctl < 0)
358 return pinctl;
359
360 pinctl &= 0xff;
361 pinctl &= ~AC_PINCTL_VREFEN;
362 pinctl |= (new_vref & AC_PINCTL_VREFEN);
363
Takashi Iwaicdd03ce2012-04-20 12:34:50 +0200364 error = snd_hda_set_pin_ctl_cache(codec, nid, pinctl);
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -0500365 if (error < 0)
366 return error;
367
368 return 1;
369}
370
Takashi Iwai36c9db72013-01-17 17:07:59 +0100371/* update mute-LED accoring to the master switch */
372static void stac_update_led_status(struct hda_codec *codec, int enabled)
Nickolas Lloyd2fc99892009-05-15 15:33:30 +0200373{
Matt2f2f4252005-04-13 14:45:30 +0200374 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100375 int muted = !enabled;
Matt2f2f4252005-04-13 14:45:30 +0200376
Takashi Iwai36c9db72013-01-17 17:07:59 +0100377 if (!spec->gpio_led)
378 return;
Matt2f2f4252005-04-13 14:45:30 +0200379
Takashi Iwai36c9db72013-01-17 17:07:59 +0100380 /* LED state is inverted on these systems */
381 if (spec->gpio_led_polarity)
382 muted = !muted;
Matt2f2f4252005-04-13 14:45:30 +0200383
Takashi Iwai36c9db72013-01-17 17:07:59 +0100384 if (!spec->vref_mute_led_nid) {
385 if (muted)
386 spec->gpio_data |= spec->gpio_led;
387 else
388 spec->gpio_data &= ~spec->gpio_led;
389 stac_gpio_set(codec, spec->gpio_mask,
390 spec->gpio_dir, spec->gpio_data);
Takashi Iwai5207e102009-07-30 13:09:08 +0200391 } else {
Takashi Iwai36c9db72013-01-17 17:07:59 +0100392 spec->vref_led = muted ? AC_PINCTL_VREF_50 : AC_PINCTL_VREF_GRD;
393 stac_vrefout_set(codec, spec->vref_mute_led_nid,
394 spec->vref_led);
Takashi Iwai5207e102009-07-30 13:09:08 +0200395 }
Matt2f2f4252005-04-13 14:45:30 +0200396}
397
Takashi Iwai36c9db72013-01-17 17:07:59 +0100398/* vmaster hook to update mute LED */
399static void stac_vmaster_hook(void *private_data, int val)
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100400{
Takashi Iwai36c9db72013-01-17 17:07:59 +0100401 stac_update_led_status(private_data, val);
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100402}
403
Takashi Iwai36c9db72013-01-17 17:07:59 +0100404/* automute hook to handle GPIO mute and EAPD updates */
405static void stac_update_outputs(struct hda_codec *codec)
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100406{
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100407 struct sigmatel_spec *spec = codec->spec;
408
Takashi Iwai36c9db72013-01-17 17:07:59 +0100409 if (spec->gpio_mute)
410 spec->gen.master_mute =
411 !(snd_hda_codec_read(codec, codec->afg, 0,
412 AC_VERB_GET_GPIO_DATA, 0) & spec->gpio_mute);
413
414 snd_hda_gen_update_outputs(codec);
415
416 if (spec->eapd_mask && spec->eapd_switch) {
417 unsigned int val = spec->gpio_data;
418 if (spec->gen.speaker_muted)
419 val &= ~spec->eapd_mask;
420 else
421 val |= spec->eapd_mask;
Takashi Iwai9c563a52013-07-19 07:58:02 +0200422 if (spec->gpio_data != val) {
423 spec->gpio_data = val;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100424 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir,
425 val);
Takashi Iwai9c563a52013-07-19 07:58:02 +0200426 }
Takashi Iwai36c9db72013-01-17 17:07:59 +0100427 }
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100428}
429
Takashi Iwai36c9db72013-01-17 17:07:59 +0100430static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
431 bool enable, bool do_write)
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100432{
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100433 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100434 unsigned int idx, val;
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100435
Takashi Iwai36c9db72013-01-17 17:07:59 +0100436 for (idx = 0; idx < spec->num_pwrs; idx++) {
437 if (spec->pwr_nids[idx] == nid)
438 break;
439 }
440 if (idx >= spec->num_pwrs)
441 return;
442
443 idx = 1 << idx;
444
445 val = spec->power_map_bits;
446 if (enable)
447 val &= ~idx;
448 else
449 val |= idx;
450
451 /* power down unused output ports */
452 if (val != spec->power_map_bits) {
453 spec->power_map_bits = val;
454 if (do_write)
455 snd_hda_codec_write(codec, codec->afg, 0,
456 AC_VERB_IDT_SET_POWER_MAP, val);
457 }
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100458}
459
Takashi Iwai36c9db72013-01-17 17:07:59 +0100460/* update power bit per jack plug/unplug */
461static void jack_update_power(struct hda_codec *codec,
462 struct hda_jack_tbl *jack)
463{
464 struct sigmatel_spec *spec = codec->spec;
465 int i;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200466
Takashi Iwai36c9db72013-01-17 17:07:59 +0100467 if (!spec->num_pwrs)
468 return;
469
470 if (jack && jack->nid) {
471 stac_toggle_power_map(codec, jack->nid,
472 snd_hda_jack_detect(codec, jack->nid),
473 true);
474 return;
475 }
476
477 /* update all jacks */
478 for (i = 0; i < spec->num_pwrs; i++) {
479 hda_nid_t nid = spec->pwr_nids[i];
480 jack = snd_hda_jack_tbl_get(codec, nid);
481 if (!jack || !jack->action)
482 continue;
483 if (jack->action == STAC_PWR_EVENT ||
484 jack->action <= HDA_GEN_LAST_EVENT)
485 stac_toggle_power_map(codec, nid,
486 snd_hda_jack_detect(codec, nid),
487 false);
488 }
489
490 snd_hda_codec_write(codec, codec->afg, 0, AC_VERB_IDT_SET_POWER_MAP,
491 spec->power_map_bits);
492}
493
494static void stac_hp_automute(struct hda_codec *codec,
495 struct hda_jack_tbl *jack)
496{
497 snd_hda_gen_hp_automute(codec, jack);
498 jack_update_power(codec, jack);
499}
500
501static void stac_line_automute(struct hda_codec *codec,
502 struct hda_jack_tbl *jack)
503{
504 snd_hda_gen_line_automute(codec, jack);
505 jack_update_power(codec, jack);
506}
507
David Henningsson664389d2013-01-28 11:29:17 +0100508static void stac_mic_autoswitch(struct hda_codec *codec,
509 struct hda_jack_tbl *jack)
510{
511 snd_hda_gen_mic_autoswitch(codec, jack);
512 jack_update_power(codec, jack);
513}
514
Takashi Iwai36c9db72013-01-17 17:07:59 +0100515static void stac_vref_event(struct hda_codec *codec, struct hda_jack_tbl *event)
516{
517 unsigned int data;
518
519 data = snd_hda_codec_read(codec, codec->afg, 0,
520 AC_VERB_GET_GPIO_DATA, 0);
521 /* toggle VREF state based on GPIOx status */
522 snd_hda_codec_write(codec, codec->afg, 0, 0x7e0,
523 !!(data & (1 << event->private_data)));
524}
525
526/* initialize the power map and enable the power event to jacks that
527 * haven't been assigned to automute
528 */
529static void stac_init_power_map(struct hda_codec *codec)
530{
531 struct sigmatel_spec *spec = codec->spec;
532 int i;
533
534 for (i = 0; i < spec->num_pwrs; i++) {
535 hda_nid_t nid = spec->pwr_nids[i];
536 unsigned int def_conf = snd_hda_codec_get_pincfg(codec, nid);
537 def_conf = get_defcfg_connect(def_conf);
538 if (snd_hda_jack_tbl_get(codec, nid))
539 continue;
540 if (def_conf == AC_JACK_PORT_COMPLEX &&
541 !(spec->vref_mute_led_nid == nid ||
542 is_jack_detectable(codec, nid))) {
543 snd_hda_jack_detect_enable_callback(codec, nid,
544 STAC_PWR_EVENT,
545 jack_update_power);
546 } else {
547 if (def_conf == AC_JACK_PORT_NONE)
548 stac_toggle_power_map(codec, nid, false, false);
549 else
550 stac_toggle_power_map(codec, nid, true, false);
551 }
552 }
553}
554
555/*
556 */
557
558static inline bool get_int_hint(struct hda_codec *codec, const char *key,
559 int *valp)
560{
561 return !snd_hda_get_int_hint(codec, key, valp);
562}
563
564/* override some hints from the hwdep entry */
565static void stac_store_hints(struct hda_codec *codec)
566{
567 struct sigmatel_spec *spec = codec->spec;
568 int val;
569
570 if (get_int_hint(codec, "gpio_mask", &spec->gpio_mask)) {
571 spec->eapd_mask = spec->gpio_dir = spec->gpio_data =
572 spec->gpio_mask;
573 }
574 if (get_int_hint(codec, "gpio_dir", &spec->gpio_dir))
575 spec->gpio_mask &= spec->gpio_mask;
576 if (get_int_hint(codec, "gpio_data", &spec->gpio_data))
577 spec->gpio_dir &= spec->gpio_mask;
578 if (get_int_hint(codec, "eapd_mask", &spec->eapd_mask))
579 spec->eapd_mask &= spec->gpio_mask;
580 if (get_int_hint(codec, "gpio_mute", &spec->gpio_mute))
581 spec->gpio_mute &= spec->gpio_mask;
582 val = snd_hda_get_bool_hint(codec, "eapd_switch");
583 if (val >= 0)
584 spec->eapd_switch = val;
585}
586
587/*
588 * loopback controls
589 */
590
591#define stac_aloopback_info snd_ctl_boolean_mono_info
592
593static int stac_aloopback_get(struct snd_kcontrol *kcontrol,
594 struct snd_ctl_elem_value *ucontrol)
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200595{
596 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100597 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200598 struct sigmatel_spec *spec = codec->spec;
599
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100600 ucontrol->value.integer.value[0] = !!(spec->aloopback &
601 (spec->aloopback_mask << idx));
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200602 return 0;
603}
604
Takashi Iwai36c9db72013-01-17 17:07:59 +0100605static int stac_aloopback_put(struct snd_kcontrol *kcontrol,
606 struct snd_ctl_elem_value *ucontrol)
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200607{
608 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
609 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100610 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200611 unsigned int dac_mode;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100612 unsigned int val, idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200613
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100614 idx_val = spec->aloopback_mask << idx;
615 if (ucontrol->value.integer.value[0])
616 val = spec->aloopback | idx_val;
617 else
618 val = spec->aloopback & ~idx_val;
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100619 if (spec->aloopback == val)
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200620 return 0;
621
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100622 spec->aloopback = val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200623
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100624 /* Only return the bits defined by the shift value of the
625 * first two bytes of the mask
626 */
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200627 dac_mode = snd_hda_codec_read(codec, codec->afg, 0,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100628 kcontrol->private_value & 0xFFFF, 0x0);
629 dac_mode >>= spec->aloopback_shift;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200630
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100631 if (spec->aloopback & idx_val) {
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200632 snd_hda_power_up(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100633 dac_mode |= idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200634 } else {
635 snd_hda_power_down(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100636 dac_mode &= ~idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200637 }
638
639 snd_hda_codec_write_cache(codec, codec->afg, 0,
640 kcontrol->private_value >> 16, dac_mode);
641
642 return 1;
643}
644
Takashi Iwai36c9db72013-01-17 17:07:59 +0100645#define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
646 { \
647 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
648 .name = "Analog Loopback", \
649 .count = cnt, \
650 .info = stac_aloopback_info, \
651 .get = stac_aloopback_get, \
652 .put = stac_aloopback_put, \
653 .private_value = verb_read | (verb_write << 16), \
654 }
655
656/*
657 * Mute LED handling on HP laptops
658 */
659
660/* check whether it's a HP laptop with a docking port */
661static bool hp_bnb2011_with_dock(struct hda_codec *codec)
662{
663 if (codec->vendor_id != 0x111d7605 &&
664 codec->vendor_id != 0x111d76d1)
665 return false;
666
667 switch (codec->subsystem_id) {
668 case 0x103c1618:
669 case 0x103c1619:
670 case 0x103c161a:
671 case 0x103c161b:
672 case 0x103c161c:
673 case 0x103c161d:
674 case 0x103c161e:
675 case 0x103c161f:
676
677 case 0x103c162a:
678 case 0x103c162b:
679
680 case 0x103c1630:
681 case 0x103c1631:
682
683 case 0x103c1633:
684 case 0x103c1634:
685 case 0x103c1635:
686
687 case 0x103c3587:
688 case 0x103c3588:
689 case 0x103c3589:
690 case 0x103c358a:
691
692 case 0x103c3667:
693 case 0x103c3668:
694 case 0x103c3669:
695
696 return true;
697 }
698 return false;
699}
700
701static bool hp_blike_system(u32 subsystem_id)
702{
703 switch (subsystem_id) {
704 case 0x103c1520:
705 case 0x103c1521:
706 case 0x103c1523:
707 case 0x103c1524:
708 case 0x103c1525:
709 case 0x103c1722:
710 case 0x103c1723:
711 case 0x103c1724:
712 case 0x103c1725:
713 case 0x103c1726:
714 case 0x103c1727:
715 case 0x103c1728:
716 case 0x103c1729:
717 case 0x103c172a:
718 case 0x103c172b:
719 case 0x103c307e:
720 case 0x103c307f:
721 case 0x103c3080:
722 case 0x103c3081:
723 case 0x103c7007:
724 case 0x103c7008:
725 return true;
726 }
727 return false;
728}
729
730static void set_hp_led_gpio(struct hda_codec *codec)
731{
732 struct sigmatel_spec *spec = codec->spec;
733 unsigned int gpio;
734
735 if (spec->gpio_led)
736 return;
737
738 gpio = snd_hda_param_read(codec, codec->afg, AC_PAR_GPIO_CAP);
739 gpio &= AC_GPIO_IO_COUNT;
740 if (gpio > 3)
741 spec->gpio_led = 0x08; /* GPIO 3 */
742 else
743 spec->gpio_led = 0x01; /* GPIO 0 */
744}
745
746/*
747 * This method searches for the mute LED GPIO configuration
748 * provided as OEM string in SMBIOS. The format of that string
749 * is HP_Mute_LED_P_G or HP_Mute_LED_P
750 * where P can be 0 or 1 and defines mute LED GPIO control state (low/high)
751 * that corresponds to the NOT muted state of the master volume
752 * and G is the index of the GPIO to use as the mute LED control (0..9)
753 * If _G portion is missing it is assigned based on the codec ID
754 *
755 * So, HP B-series like systems may have HP_Mute_LED_0 (current models)
756 * or HP_Mute_LED_0_3 (future models) OEM SMBIOS strings
757 *
758 *
759 * The dv-series laptops don't seem to have the HP_Mute_LED* strings in
760 * SMBIOS - at least the ones I have seen do not have them - which include
761 * my own system (HP Pavilion dv6-1110ax) and my cousin's
762 * HP Pavilion dv9500t CTO.
763 * Need more information on whether it is true across the entire series.
764 * -- kunal
765 */
766static int find_mute_led_cfg(struct hda_codec *codec, int default_polarity)
767{
768 struct sigmatel_spec *spec = codec->spec;
769 const struct dmi_device *dev = NULL;
770
771 if (get_int_hint(codec, "gpio_led", &spec->gpio_led)) {
772 get_int_hint(codec, "gpio_led_polarity",
773 &spec->gpio_led_polarity);
774 return 1;
775 }
776
777 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
778 if (sscanf(dev->name, "HP_Mute_LED_%d_%x",
779 &spec->gpio_led_polarity,
780 &spec->gpio_led) == 2) {
781 unsigned int max_gpio;
782 max_gpio = snd_hda_param_read(codec, codec->afg,
783 AC_PAR_GPIO_CAP);
784 max_gpio &= AC_GPIO_IO_COUNT;
785 if (spec->gpio_led < max_gpio)
786 spec->gpio_led = 1 << spec->gpio_led;
787 else
788 spec->vref_mute_led_nid = spec->gpio_led;
789 return 1;
790 }
791 if (sscanf(dev->name, "HP_Mute_LED_%d",
792 &spec->gpio_led_polarity) == 1) {
793 set_hp_led_gpio(codec);
794 return 1;
795 }
796 /* BIOS bug: unfilled OEM string */
797 if (strstr(dev->name, "HP_Mute_LED_P_G")) {
798 set_hp_led_gpio(codec);
799 if (default_polarity >= 0)
800 spec->gpio_led_polarity = default_polarity;
801 else
802 spec->gpio_led_polarity = 1;
803 return 1;
804 }
805 }
806
807 /*
808 * Fallback case - if we don't find the DMI strings,
809 * we statically set the GPIO - if not a B-series system
810 * and default polarity is provided
811 */
812 if (!hp_blike_system(codec->subsystem_id) &&
813 (default_polarity == 0 || default_polarity == 1)) {
814 set_hp_led_gpio(codec);
815 spec->gpio_led_polarity = default_polarity;
816 return 1;
817 }
818 return 0;
819}
820
David Henningsson303985f2013-03-14 15:28:29 +0100821/* check whether a built-in speaker is included in parsed pins */
822static bool has_builtin_speaker(struct hda_codec *codec)
823{
824 struct sigmatel_spec *spec = codec->spec;
825 hda_nid_t *nid_pin;
826 int nids, i;
827
828 if (spec->gen.autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT) {
829 nid_pin = spec->gen.autocfg.line_out_pins;
830 nids = spec->gen.autocfg.line_outs;
831 } else {
832 nid_pin = spec->gen.autocfg.speaker_pins;
833 nids = spec->gen.autocfg.speaker_outs;
834 }
835
836 for (i = 0; i < nids; i++) {
837 unsigned int def_conf = snd_hda_codec_get_pincfg(codec, nid_pin[i]);
838 if (snd_hda_get_input_pin_attr(def_conf) == INPUT_PIN_ATTR_INT)
839 return true;
840 }
841 return false;
842}
843
Takashi Iwai36c9db72013-01-17 17:07:59 +0100844/*
845 * PC beep controls
846 */
847
848/* create PC beep volume controls */
849static int stac_auto_create_beep_ctls(struct hda_codec *codec,
850 hda_nid_t nid)
851{
852 struct sigmatel_spec *spec = codec->spec;
853 u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
854 struct snd_kcontrol_new *knew;
855 static struct snd_kcontrol_new abeep_mute_ctl =
856 HDA_CODEC_MUTE(NULL, 0, 0, 0);
857 static struct snd_kcontrol_new dbeep_mute_ctl =
858 HDA_CODEC_MUTE_BEEP(NULL, 0, 0, 0);
859 static struct snd_kcontrol_new beep_vol_ctl =
860 HDA_CODEC_VOLUME(NULL, 0, 0, 0);
861
862 /* check for mute support for the the amp */
863 if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) {
864 const struct snd_kcontrol_new *temp;
865 if (spec->anabeep_nid == nid)
866 temp = &abeep_mute_ctl;
867 else
868 temp = &dbeep_mute_ctl;
869 knew = snd_hda_gen_add_kctl(&spec->gen,
870 "Beep Playback Switch", temp);
871 if (!knew)
872 return -ENOMEM;
873 knew->private_value =
874 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT);
875 }
876
877 /* check to see if there is volume support for the amp */
878 if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) {
879 knew = snd_hda_gen_add_kctl(&spec->gen,
880 "Beep Playback Volume",
881 &beep_vol_ctl);
882 if (!knew)
883 return -ENOMEM;
884 knew->private_value =
885 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT);
886 }
887 return 0;
888}
889
890#ifdef CONFIG_SND_HDA_INPUT_BEEP
891#define stac_dig_beep_switch_info snd_ctl_boolean_mono_info
892
893static int stac_dig_beep_switch_get(struct snd_kcontrol *kcontrol,
894 struct snd_ctl_elem_value *ucontrol)
895{
896 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
897 ucontrol->value.integer.value[0] = codec->beep->enabled;
898 return 0;
899}
900
901static int stac_dig_beep_switch_put(struct snd_kcontrol *kcontrol,
902 struct snd_ctl_elem_value *ucontrol)
903{
904 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
905 return snd_hda_enable_beep_device(codec, ucontrol->value.integer.value[0]);
906}
907
908static const struct snd_kcontrol_new stac_dig_beep_ctrl = {
909 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
910 .name = "Beep Playback Switch",
911 .info = stac_dig_beep_switch_info,
912 .get = stac_dig_beep_switch_get,
913 .put = stac_dig_beep_switch_put,
914};
915
916static int stac_beep_switch_ctl(struct hda_codec *codec)
917{
918 struct sigmatel_spec *spec = codec->spec;
919
920 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, &stac_dig_beep_ctrl))
921 return -ENOMEM;
922 return 0;
923}
924#endif
925
926/*
Takashi Iwai42875472013-01-22 09:34:48 +0100927 * SPDIF-out mux controls
928 */
929
930static int stac_smux_enum_info(struct snd_kcontrol *kcontrol,
931 struct snd_ctl_elem_info *uinfo)
932{
933 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
934 struct sigmatel_spec *spec = codec->spec;
935 return snd_hda_input_mux_info(&spec->spdif_mux, uinfo);
936}
937
938static int stac_smux_enum_get(struct snd_kcontrol *kcontrol,
939 struct snd_ctl_elem_value *ucontrol)
940{
941 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
942 struct sigmatel_spec *spec = codec->spec;
943 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
944
945 ucontrol->value.enumerated.item[0] = spec->cur_smux[smux_idx];
946 return 0;
947}
948
949static int stac_smux_enum_put(struct snd_kcontrol *kcontrol,
950 struct snd_ctl_elem_value *ucontrol)
951{
952 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
953 struct sigmatel_spec *spec = codec->spec;
954 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
955
956 return snd_hda_input_mux_put(codec, &spec->spdif_mux, ucontrol,
957 spec->gen.autocfg.dig_out_pins[smux_idx],
958 &spec->cur_smux[smux_idx]);
959}
960
961static struct snd_kcontrol_new stac_smux_mixer = {
962 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
963 .name = "IEC958 Playback Source",
964 /* count set later */
965 .info = stac_smux_enum_info,
966 .get = stac_smux_enum_get,
967 .put = stac_smux_enum_put,
968};
969
970static const char * const stac_spdif_labels[] = {
971 "Digital Playback", "Analog Mux 1", "Analog Mux 2", NULL
972};
973
974static int stac_create_spdif_mux_ctls(struct hda_codec *codec)
975{
976 struct sigmatel_spec *spec = codec->spec;
977 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
978 const char * const *labels = spec->spdif_labels;
979 struct snd_kcontrol_new *kctl;
980 int i, num_cons;
981
982 if (cfg->dig_outs < 1)
983 return 0;
984
985 num_cons = snd_hda_get_num_conns(codec, cfg->dig_out_pins[0]);
986 if (num_cons <= 1)
987 return 0;
988
989 if (!labels)
990 labels = stac_spdif_labels;
991 for (i = 0; i < num_cons; i++) {
992 if (snd_BUG_ON(!labels[i]))
993 return -EINVAL;
994 snd_hda_add_imux_item(&spec->spdif_mux, labels[i], i, NULL);
995 }
996
997 kctl = snd_hda_gen_add_kctl(&spec->gen, NULL, &stac_smux_mixer);
998 if (!kctl)
999 return -ENOMEM;
1000 kctl->count = cfg->dig_outs;
1001
1002 return 0;
1003}
1004
1005/*
Takashi Iwai36c9db72013-01-17 17:07:59 +01001006 */
1007
Takashi Iwai2b635362011-05-02 12:33:43 +02001008static const struct hda_verb stac9200_core_init[] = {
Matt2f2f4252005-04-13 14:45:30 +02001009 /* set dac0mux for dac converter */
Mattc7d4b2f2005-06-27 14:59:41 +02001010 { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
Matt2f2f4252005-04-13 14:45:30 +02001011 {}
1012};
1013
Takashi Iwai2b635362011-05-02 12:33:43 +02001014static const struct hda_verb stac9200_eapd_init[] = {
Takashi Iwai1194b5b2007-10-10 10:04:26 +02001015 /* set dac0mux for dac converter */
1016 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1017 {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
1018 {}
1019};
1020
Takashi Iwai2b635362011-05-02 12:33:43 +02001021static const struct hda_verb dell_eq_core_init[] = {
Matthew Ranostayd654a662008-03-14 08:46:51 +01001022 /* set master volume to max value without distortion
1023 * and direct control */
1024 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec},
Matthew Ranostayd654a662008-03-14 08:46:51 +01001025 {}
1026};
1027
Takashi Iwai2b635362011-05-02 12:33:43 +02001028static const struct hda_verb stac92hd73xx_core_init[] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001029 /* set master volume and direct control */
1030 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001031 {}
1032};
1033
Takashi Iwai2b635362011-05-02 12:33:43 +02001034static const struct hda_verb stac92hd83xxx_core_init[] = {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001035 /* power state controls amps */
1036 { 0x01, AC_VERB_SET_EAPD, 1 << 2},
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -02001037 {}
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001038};
1039
Vitaliy Kulikov5556e142012-02-27 16:47:37 -06001040static const struct hda_verb stac92hd83xxx_hp_zephyr_init[] = {
1041 { 0x22, 0x785, 0x43 },
1042 { 0x22, 0x782, 0xe0 },
1043 { 0x22, 0x795, 0x00 },
1044 {}
1045};
1046
Takashi Iwai2b635362011-05-02 12:33:43 +02001047static const struct hda_verb stac92hd71bxx_core_init[] = {
Matthew Ranostaye035b842007-11-06 11:53:55 +01001048 /* set master volume and direct control */
1049 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -02001050 {}
Matthew Ranostay541eee82007-12-14 12:08:04 +01001051};
1052
Takashi Iwai2b635362011-05-02 12:33:43 +02001053static const struct hda_verb stac92hd71bxx_unmute_core_init[] = {
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05001054 /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */
1055 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Matthew Ranostaye035b842007-11-06 11:53:55 +01001056 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1057 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Matthew Ranostaye035b842007-11-06 11:53:55 +01001058 {}
1059};
1060
Takashi Iwai2b635362011-05-02 12:33:43 +02001061static const struct hda_verb stac925x_core_init[] = {
Tobin Davis8e21c342007-01-08 11:04:17 +01001062 /* set dac0mux for dac converter */
1063 { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwaic9280d62009-01-15 17:31:00 +01001064 /* mute the master volume */
1065 { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
Tobin Davis8e21c342007-01-08 11:04:17 +01001066 {}
1067};
1068
Takashi Iwai2b635362011-05-02 12:33:43 +02001069static const struct hda_verb stac922x_core_init[] = {
Takashi Iwai36c9db72013-01-17 17:07:59 +01001070 /* set master volume and direct control */
Mattc7d4b2f2005-06-27 14:59:41 +02001071 { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matt2f2f4252005-04-13 14:45:30 +02001072 {}
1073};
1074
Takashi Iwai2b635362011-05-02 12:33:43 +02001075static const struct hda_verb d965_core_init[] = {
Takashi Iwai19039bd2006-06-28 15:52:16 +02001076 /* unmute node 0x1b */
1077 { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
Takashi Iwai36c9db72013-01-17 17:07:59 +01001078 /* select node 0x03 as DAC */
Takashi Iwai19039bd2006-06-28 15:52:16 +02001079 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
1080 {}
1081};
1082
Takashi Iwai2b635362011-05-02 12:33:43 +02001083static const struct hda_verb dell_3st_core_init[] = {
Takashi Iwaiccca7cd2009-10-13 15:32:21 +02001084 /* don't set delta bit */
1085 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
1086 /* unmute node 0x1b */
1087 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1088 /* select node 0x03 as DAC */
1089 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
1090 {}
1091};
1092
Takashi Iwai2b635362011-05-02 12:33:43 +02001093static const struct hda_verb stac927x_core_init[] = {
Takashi Iwai36c9db72013-01-17 17:07:59 +01001094 /* set master volume and direct control */
Matt Porter3cc08dc2006-01-23 15:27:49 +01001095 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostay1cd22242008-07-18 18:20:52 +02001096 /* enable analog pc beep path */
1097 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
Matt Porter3cc08dc2006-01-23 15:27:49 +01001098 {}
1099};
1100
Takashi Iwai2b635362011-05-02 12:33:43 +02001101static const struct hda_verb stac927x_volknob_core_init[] = {
Takashi Iwai54930532009-10-11 17:38:29 +02001102 /* don't set delta bit */
1103 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
1104 /* enable analog pc beep path */
1105 {0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
1106 {}
1107};
1108
Takashi Iwai2b635362011-05-02 12:33:43 +02001109static const struct hda_verb stac9205_core_init[] = {
Takashi Iwai36c9db72013-01-17 17:07:59 +01001110 /* set master volume and direct control */
Matt Porterf3302a52006-07-31 12:49:34 +02001111 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001112 /* enable analog pc beep path */
1113 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
Matt Porterf3302a52006-07-31 12:49:34 +02001114 {}
1115};
1116
Takashi Iwai36c9db72013-01-17 17:07:59 +01001117static const struct snd_kcontrol_new stac92hd73xx_6ch_loopback =
1118 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3);
Matthew Ranostayb22b4822008-01-22 12:32:30 +01001119
Takashi Iwai36c9db72013-01-17 17:07:59 +01001120static const struct snd_kcontrol_new stac92hd73xx_8ch_loopback =
1121 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4);
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +02001122
Takashi Iwai36c9db72013-01-17 17:07:59 +01001123static const struct snd_kcontrol_new stac92hd73xx_10ch_loopback =
1124 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5);
Nickolas Lloyd2fc99892009-05-15 15:33:30 +02001125
Takashi Iwai36c9db72013-01-17 17:07:59 +01001126static const struct snd_kcontrol_new stac92hd71bxx_loopback =
1127 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2);
Matt2f2f4252005-04-13 14:45:30 +02001128
Takashi Iwai36c9db72013-01-17 17:07:59 +01001129static const struct snd_kcontrol_new stac9205_loopback =
1130 STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001131
Takashi Iwai36c9db72013-01-17 17:07:59 +01001132static const struct snd_kcontrol_new stac927x_loopback =
1133 STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1);
Matt2f2f4252005-04-13 14:45:30 +02001134
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001135static const struct hda_pintbl ref9200_pin_configs[] = {
1136 { 0x08, 0x01c47010 },
1137 { 0x09, 0x01447010 },
1138 { 0x0d, 0x0221401f },
1139 { 0x0e, 0x01114010 },
1140 { 0x0f, 0x02a19020 },
1141 { 0x10, 0x01a19021 },
1142 { 0x11, 0x90100140 },
1143 { 0x12, 0x01813122 },
1144 {}
Matt2f2f4252005-04-13 14:45:30 +02001145};
1146
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001147static const struct hda_pintbl gateway9200_m4_pin_configs[] = {
1148 { 0x08, 0x400000fe },
1149 { 0x09, 0x404500f4 },
1150 { 0x0d, 0x400100f0 },
1151 { 0x0e, 0x90110010 },
1152 { 0x0f, 0x400100f1 },
1153 { 0x10, 0x02a1902e },
1154 { 0x11, 0x500000f2 },
1155 { 0x12, 0x500000f3 },
1156 {}
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001157};
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001158
1159static const struct hda_pintbl gateway9200_m4_2_pin_configs[] = {
1160 { 0x08, 0x400000fe },
1161 { 0x09, 0x404500f4 },
1162 { 0x0d, 0x400100f0 },
1163 { 0x0e, 0x90110010 },
1164 { 0x0f, 0x400100f1 },
1165 { 0x10, 0x02a1902e },
1166 { 0x11, 0x500000f2 },
1167 { 0x12, 0x500000f3 },
1168 {}
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001169};
1170
1171/*
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001172 STAC 9200 pin configs for
1173 102801A8
1174 102801DE
1175 102801E8
1176*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001177static const struct hda_pintbl dell9200_d21_pin_configs[] = {
1178 { 0x08, 0x400001f0 },
1179 { 0x09, 0x400001f1 },
1180 { 0x0d, 0x02214030 },
1181 { 0x0e, 0x01014010 },
1182 { 0x0f, 0x02a19020 },
1183 { 0x10, 0x01a19021 },
1184 { 0x11, 0x90100140 },
1185 { 0x12, 0x01813122 },
1186 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001187};
1188
Takashi Iwai36c9db72013-01-17 17:07:59 +01001189/*
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001190 STAC 9200 pin configs for
1191 102801C0
1192 102801C1
1193*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001194static const struct hda_pintbl dell9200_d22_pin_configs[] = {
1195 { 0x08, 0x400001f0 },
1196 { 0x09, 0x400001f1 },
1197 { 0x0d, 0x0221401f },
1198 { 0x0e, 0x01014010 },
1199 { 0x0f, 0x01813020 },
1200 { 0x10, 0x02a19021 },
1201 { 0x11, 0x90100140 },
1202 { 0x12, 0x400001f2 },
1203 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001204};
1205
Takashi Iwai36c9db72013-01-17 17:07:59 +01001206/*
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001207 STAC 9200 pin configs for
1208 102801C4 (Dell Dimension E310)
1209 102801C5
1210 102801C7
1211 102801D9
1212 102801DA
1213 102801E3
1214*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001215static const struct hda_pintbl dell9200_d23_pin_configs[] = {
1216 { 0x08, 0x400001f0 },
1217 { 0x09, 0x400001f1 },
1218 { 0x0d, 0x0221401f },
1219 { 0x0e, 0x01014010 },
1220 { 0x0f, 0x01813020 },
1221 { 0x10, 0x01a19021 },
1222 { 0x11, 0x90100140 },
1223 { 0x12, 0x400001f2 },
1224 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001225};
1226
1227
1228/*
1229 STAC 9200-32 pin configs for
1230 102801B5 (Dell Inspiron 630m)
1231 102801D8 (Dell Inspiron 640m)
1232*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001233static const struct hda_pintbl dell9200_m21_pin_configs[] = {
1234 { 0x08, 0x40c003fa },
1235 { 0x09, 0x03441340 },
1236 { 0x0d, 0x0321121f },
1237 { 0x0e, 0x90170310 },
1238 { 0x0f, 0x408003fb },
1239 { 0x10, 0x03a11020 },
1240 { 0x11, 0x401003fc },
1241 { 0x12, 0x403003fd },
1242 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001243};
1244
1245/*
1246 STAC 9200-32 pin configs for
1247 102801C2 (Dell Latitude D620)
1248 102801C8
1249 102801CC (Dell Latitude D820)
1250 102801D4
1251 102801D6
1252*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001253static const struct hda_pintbl dell9200_m22_pin_configs[] = {
1254 { 0x08, 0x40c003fa },
1255 { 0x09, 0x0144131f },
1256 { 0x0d, 0x0321121f },
1257 { 0x0e, 0x90170310 },
1258 { 0x0f, 0x90a70321 },
1259 { 0x10, 0x03a11020 },
1260 { 0x11, 0x401003fb },
1261 { 0x12, 0x40f000fc },
1262 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001263};
1264
1265/*
1266 STAC 9200-32 pin configs for
1267 102801CE (Dell XPS M1710)
1268 102801CF (Dell Precision M90)
1269*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001270static const struct hda_pintbl dell9200_m23_pin_configs[] = {
1271 { 0x08, 0x40c003fa },
1272 { 0x09, 0x01441340 },
1273 { 0x0d, 0x0421421f },
1274 { 0x0e, 0x90170310 },
1275 { 0x0f, 0x408003fb },
1276 { 0x10, 0x04a1102e },
1277 { 0x11, 0x90170311 },
1278 { 0x12, 0x403003fc },
1279 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001280};
1281
1282/*
1283 STAC 9200-32 pin configs for
1284 102801C9
1285 102801CA
1286 102801CB (Dell Latitude 120L)
1287 102801D3
1288*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001289static const struct hda_pintbl dell9200_m24_pin_configs[] = {
1290 { 0x08, 0x40c003fa },
1291 { 0x09, 0x404003fb },
1292 { 0x0d, 0x0321121f },
1293 { 0x0e, 0x90170310 },
1294 { 0x0f, 0x408003fc },
1295 { 0x10, 0x03a11020 },
1296 { 0x11, 0x401003fd },
1297 { 0x12, 0x403003fe },
1298 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001299};
1300
1301/*
1302 STAC 9200-32 pin configs for
1303 102801BD (Dell Inspiron E1505n)
1304 102801EE
1305 102801EF
1306*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001307static const struct hda_pintbl dell9200_m25_pin_configs[] = {
1308 { 0x08, 0x40c003fa },
1309 { 0x09, 0x01441340 },
1310 { 0x0d, 0x0421121f },
1311 { 0x0e, 0x90170310 },
1312 { 0x0f, 0x408003fb },
1313 { 0x10, 0x04a11020 },
1314 { 0x11, 0x401003fc },
1315 { 0x12, 0x403003fd },
1316 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001317};
1318
1319/*
1320 STAC 9200-32 pin configs for
1321 102801F5 (Dell Inspiron 1501)
1322 102801F6
1323*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001324static const struct hda_pintbl dell9200_m26_pin_configs[] = {
1325 { 0x08, 0x40c003fa },
1326 { 0x09, 0x404003fb },
1327 { 0x0d, 0x0421121f },
1328 { 0x0e, 0x90170310 },
1329 { 0x0f, 0x408003fc },
1330 { 0x10, 0x04a11020 },
1331 { 0x11, 0x401003fd },
1332 { 0x12, 0x403003fe },
1333 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001334};
1335
1336/*
1337 STAC 9200-32
1338 102801CD (Dell Inspiron E1705/9400)
1339*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001340static const struct hda_pintbl dell9200_m27_pin_configs[] = {
1341 { 0x08, 0x40c003fa },
1342 { 0x09, 0x01441340 },
1343 { 0x0d, 0x0421121f },
1344 { 0x0e, 0x90170310 },
1345 { 0x0f, 0x90170310 },
1346 { 0x10, 0x04a11020 },
1347 { 0x11, 0x90170310 },
1348 { 0x12, 0x40f003fc },
1349 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001350};
1351
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001352static const struct hda_pintbl oqo9200_pin_configs[] = {
1353 { 0x08, 0x40c000f0 },
1354 { 0x09, 0x404000f1 },
1355 { 0x0d, 0x0221121f },
1356 { 0x0e, 0x02211210 },
1357 { 0x0f, 0x90170111 },
1358 { 0x10, 0x90a70120 },
1359 { 0x11, 0x400000f2 },
1360 { 0x12, 0x400000f3 },
1361 {}
Tobin Davisbf277782008-02-03 20:31:47 +01001362};
1363
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001364
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001365static void stac9200_fixup_panasonic(struct hda_codec *codec,
1366 const struct hda_fixup *fix, int action)
1367{
1368 struct sigmatel_spec *spec = codec->spec;
1369
Takashi Iwai36c9db72013-01-17 17:07:59 +01001370 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001371 spec->gpio_mask = spec->gpio_dir = 0x09;
1372 spec->gpio_data = 0x00;
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001373 /* CF-74 has no headphone detection, and the driver should *NOT*
1374 * do detection and HP/speaker toggle because the hardware does it.
1375 */
Takashi Iwai36c9db72013-01-17 17:07:59 +01001376 spec->gen.suppress_auto_mute = 1;
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001377 }
1378}
1379
1380
1381static const struct hda_fixup stac9200_fixups[] = {
1382 [STAC_REF] = {
1383 .type = HDA_FIXUP_PINS,
1384 .v.pins = ref9200_pin_configs,
1385 },
1386 [STAC_9200_OQO] = {
1387 .type = HDA_FIXUP_PINS,
1388 .v.pins = oqo9200_pin_configs,
1389 .chained = true,
1390 .chain_id = STAC_9200_EAPD_INIT,
1391 },
1392 [STAC_9200_DELL_D21] = {
1393 .type = HDA_FIXUP_PINS,
1394 .v.pins = dell9200_d21_pin_configs,
1395 },
1396 [STAC_9200_DELL_D22] = {
1397 .type = HDA_FIXUP_PINS,
1398 .v.pins = dell9200_d22_pin_configs,
1399 },
1400 [STAC_9200_DELL_D23] = {
1401 .type = HDA_FIXUP_PINS,
1402 .v.pins = dell9200_d23_pin_configs,
1403 },
1404 [STAC_9200_DELL_M21] = {
1405 .type = HDA_FIXUP_PINS,
1406 .v.pins = dell9200_m21_pin_configs,
1407 },
1408 [STAC_9200_DELL_M22] = {
1409 .type = HDA_FIXUP_PINS,
1410 .v.pins = dell9200_m22_pin_configs,
1411 },
1412 [STAC_9200_DELL_M23] = {
1413 .type = HDA_FIXUP_PINS,
1414 .v.pins = dell9200_m23_pin_configs,
1415 },
1416 [STAC_9200_DELL_M24] = {
1417 .type = HDA_FIXUP_PINS,
1418 .v.pins = dell9200_m24_pin_configs,
1419 },
1420 [STAC_9200_DELL_M25] = {
1421 .type = HDA_FIXUP_PINS,
1422 .v.pins = dell9200_m25_pin_configs,
1423 },
1424 [STAC_9200_DELL_M26] = {
1425 .type = HDA_FIXUP_PINS,
1426 .v.pins = dell9200_m26_pin_configs,
1427 },
1428 [STAC_9200_DELL_M27] = {
1429 .type = HDA_FIXUP_PINS,
1430 .v.pins = dell9200_m27_pin_configs,
1431 },
1432 [STAC_9200_M4] = {
1433 .type = HDA_FIXUP_PINS,
1434 .v.pins = gateway9200_m4_pin_configs,
1435 .chained = true,
1436 .chain_id = STAC_9200_EAPD_INIT,
1437 },
1438 [STAC_9200_M4_2] = {
1439 .type = HDA_FIXUP_PINS,
1440 .v.pins = gateway9200_m4_2_pin_configs,
1441 .chained = true,
1442 .chain_id = STAC_9200_EAPD_INIT,
1443 },
1444 [STAC_9200_PANASONIC] = {
1445 .type = HDA_FIXUP_FUNC,
1446 .v.func = stac9200_fixup_panasonic,
1447 },
1448 [STAC_9200_EAPD_INIT] = {
1449 .type = HDA_FIXUP_VERBS,
1450 .v.verbs = (const struct hda_verb[]) {
1451 {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
1452 {}
1453 },
1454 },
Matt Porter403d1942005-11-29 15:00:51 +01001455};
1456
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001457static const struct hda_model_fixup stac9200_models[] = {
1458 { .id = STAC_REF, .name = "ref" },
1459 { .id = STAC_9200_OQO, .name = "oqo" },
1460 { .id = STAC_9200_DELL_D21, .name = "dell-d21" },
1461 { .id = STAC_9200_DELL_D22, .name = "dell-d22" },
1462 { .id = STAC_9200_DELL_D23, .name = "dell-d23" },
1463 { .id = STAC_9200_DELL_M21, .name = "dell-m21" },
1464 { .id = STAC_9200_DELL_M22, .name = "dell-m22" },
1465 { .id = STAC_9200_DELL_M23, .name = "dell-m23" },
1466 { .id = STAC_9200_DELL_M24, .name = "dell-m24" },
1467 { .id = STAC_9200_DELL_M25, .name = "dell-m25" },
1468 { .id = STAC_9200_DELL_M26, .name = "dell-m26" },
1469 { .id = STAC_9200_DELL_M27, .name = "dell-m27" },
1470 { .id = STAC_9200_M4, .name = "gateway-m4" },
1471 { .id = STAC_9200_M4_2, .name = "gateway-m4-2" },
1472 { .id = STAC_9200_PANASONIC, .name = "panasonic" },
1473 {}
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001474};
1475
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001476static const struct snd_pci_quirk stac9200_fixup_tbl[] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001477 /* SigmaTel reference board */
1478 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1479 "DFI LanParty", STAC_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001480 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1481 "DFI LanParty", STAC_REF),
Matt Portere7377072006-11-06 11:20:38 +01001482 /* Dell laptops have BIOS problem */
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001483 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8,
1484 "unknown Dell", STAC_9200_DELL_D21),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001485 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001486 "Dell Inspiron 630m", STAC_9200_DELL_M21),
1487 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd,
1488 "Dell Inspiron E1505n", STAC_9200_DELL_M25),
1489 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0,
1490 "unknown Dell", STAC_9200_DELL_D22),
1491 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1,
1492 "unknown Dell", STAC_9200_DELL_D22),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001493 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001494 "Dell Latitude D620", STAC_9200_DELL_M22),
1495 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5,
1496 "unknown Dell", STAC_9200_DELL_D23),
1497 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7,
1498 "unknown Dell", STAC_9200_DELL_D23),
1499 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8,
1500 "unknown Dell", STAC_9200_DELL_M22),
1501 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9,
1502 "unknown Dell", STAC_9200_DELL_M24),
1503 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca,
1504 "unknown Dell", STAC_9200_DELL_M24),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001505 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001506 "Dell Latitude 120L", STAC_9200_DELL_M24),
Cory T. Tusar877b8662007-01-30 17:30:55 +01001507 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001508 "Dell Latitude D820", STAC_9200_DELL_M22),
Mikael Nilsson46f02ca2007-02-13 12:46:16 +01001509 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001510 "Dell Inspiron E1705/9400", STAC_9200_DELL_M27),
Mikael Nilsson46f02ca2007-02-13 12:46:16 +01001511 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001512 "Dell XPS M1710", STAC_9200_DELL_M23),
Takashi Iwaif0f96742007-02-14 00:59:17 +01001513 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001514 "Dell Precision M90", STAC_9200_DELL_M23),
1515 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3,
1516 "unknown Dell", STAC_9200_DELL_M22),
1517 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4,
1518 "unknown Dell", STAC_9200_DELL_M22),
Daniel T Chen8286c532007-05-15 11:46:23 +02001519 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001520 "unknown Dell", STAC_9200_DELL_M22),
Tobin Davis49c605d2007-05-17 09:38:24 +02001521 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001522 "Dell Inspiron 640m", STAC_9200_DELL_M21),
1523 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9,
1524 "unknown Dell", STAC_9200_DELL_D23),
1525 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da,
1526 "unknown Dell", STAC_9200_DELL_D23),
1527 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de,
1528 "unknown Dell", STAC_9200_DELL_D21),
1529 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3,
1530 "unknown Dell", STAC_9200_DELL_D23),
1531 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8,
1532 "unknown Dell", STAC_9200_DELL_D21),
1533 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee,
1534 "unknown Dell", STAC_9200_DELL_M25),
1535 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef,
1536 "unknown Dell", STAC_9200_DELL_M25),
Tobin Davis49c605d2007-05-17 09:38:24 +02001537 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001538 "Dell Inspiron 1501", STAC_9200_DELL_M26),
1539 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6,
1540 "unknown Dell", STAC_9200_DELL_M26),
Tobin Davis49c605d2007-05-17 09:38:24 +02001541 /* Panasonic */
Takashi Iwai117f2572008-03-18 09:53:23 +01001542 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC),
Takashi Iwai1194b5b2007-10-10 10:04:26 +02001543 /* Gateway machines needs EAPD to be set on resume */
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001544 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4),
1545 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2),
1546 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2),
Tobin Davisbf277782008-02-03 20:31:47 +01001547 /* OQO Mobile */
1548 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO),
Matt Porter403d1942005-11-29 15:00:51 +01001549 {} /* terminator */
1550};
1551
Takashi Iwaid2077d42013-01-14 14:20:16 +01001552static const struct hda_pintbl ref925x_pin_configs[] = {
1553 { 0x07, 0x40c003f0 },
1554 { 0x08, 0x424503f2 },
1555 { 0x0a, 0x01813022 },
1556 { 0x0b, 0x02a19021 },
1557 { 0x0c, 0x90a70320 },
1558 { 0x0d, 0x02214210 },
1559 { 0x10, 0x01019020 },
1560 { 0x11, 0x9033032e },
1561 {}
Tobin Davis8e21c342007-01-08 11:04:17 +01001562};
1563
Takashi Iwaid2077d42013-01-14 14:20:16 +01001564static const struct hda_pintbl stac925xM1_pin_configs[] = {
1565 { 0x07, 0x40c003f4 },
1566 { 0x08, 0x424503f2 },
1567 { 0x0a, 0x400000f3 },
1568 { 0x0b, 0x02a19020 },
1569 { 0x0c, 0x40a000f0 },
1570 { 0x0d, 0x90100210 },
1571 { 0x10, 0x400003f1 },
1572 { 0x11, 0x9033032e },
1573 {}
Tobin Davis8e21c342007-01-08 11:04:17 +01001574};
1575
Takashi Iwaid2077d42013-01-14 14:20:16 +01001576static const struct hda_pintbl stac925xM1_2_pin_configs[] = {
1577 { 0x07, 0x40c003f4 },
1578 { 0x08, 0x424503f2 },
1579 { 0x0a, 0x400000f3 },
1580 { 0x0b, 0x02a19020 },
1581 { 0x0c, 0x40a000f0 },
1582 { 0x0d, 0x90100210 },
1583 { 0x10, 0x400003f1 },
1584 { 0x11, 0x9033032e },
1585 {}
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001586};
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001587
Takashi Iwaid2077d42013-01-14 14:20:16 +01001588static const struct hda_pintbl stac925xM2_pin_configs[] = {
1589 { 0x07, 0x40c003f4 },
1590 { 0x08, 0x424503f2 },
1591 { 0x0a, 0x400000f3 },
1592 { 0x0b, 0x02a19020 },
1593 { 0x0c, 0x40a000f0 },
1594 { 0x0d, 0x90100210 },
1595 { 0x10, 0x400003f1 },
1596 { 0x11, 0x9033032e },
1597 {}
Tobin Davis2c11f952007-05-17 09:36:34 +02001598};
1599
Takashi Iwaid2077d42013-01-14 14:20:16 +01001600static const struct hda_pintbl stac925xM2_2_pin_configs[] = {
1601 { 0x07, 0x40c003f4 },
1602 { 0x08, 0x424503f2 },
1603 { 0x0a, 0x400000f3 },
1604 { 0x0b, 0x02a19020 },
1605 { 0x0c, 0x40a000f0 },
1606 { 0x0d, 0x90100210 },
1607 { 0x10, 0x400003f1 },
1608 { 0x11, 0x9033032e },
1609 {}
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001610};
1611
Takashi Iwaid2077d42013-01-14 14:20:16 +01001612static const struct hda_pintbl stac925xM3_pin_configs[] = {
1613 { 0x07, 0x40c003f4 },
1614 { 0x08, 0x424503f2 },
1615 { 0x0a, 0x400000f3 },
1616 { 0x0b, 0x02a19020 },
1617 { 0x0c, 0x40a000f0 },
1618 { 0x0d, 0x90100210 },
1619 { 0x10, 0x400003f1 },
1620 { 0x11, 0x503303f3 },
1621 {}
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001622};
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001623
Takashi Iwaid2077d42013-01-14 14:20:16 +01001624static const struct hda_pintbl stac925xM5_pin_configs[] = {
1625 { 0x07, 0x40c003f4 },
1626 { 0x08, 0x424503f2 },
1627 { 0x0a, 0x400000f3 },
1628 { 0x0b, 0x02a19020 },
1629 { 0x0c, 0x40a000f0 },
1630 { 0x0d, 0x90100210 },
1631 { 0x10, 0x400003f1 },
1632 { 0x11, 0x9033032e },
1633 {}
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001634};
1635
Takashi Iwaid2077d42013-01-14 14:20:16 +01001636static const struct hda_pintbl stac925xM6_pin_configs[] = {
1637 { 0x07, 0x40c003f4 },
1638 { 0x08, 0x424503f2 },
1639 { 0x0a, 0x400000f3 },
1640 { 0x0b, 0x02a19020 },
1641 { 0x0c, 0x40a000f0 },
1642 { 0x0d, 0x90100210 },
1643 { 0x10, 0x400003f1 },
1644 { 0x11, 0x90330320 },
1645 {}
Tobin Davis8e21c342007-01-08 11:04:17 +01001646};
1647
Takashi Iwaid2077d42013-01-14 14:20:16 +01001648static const struct hda_fixup stac925x_fixups[] = {
1649 [STAC_REF] = {
1650 .type = HDA_FIXUP_PINS,
1651 .v.pins = ref925x_pin_configs,
1652 },
1653 [STAC_M1] = {
1654 .type = HDA_FIXUP_PINS,
1655 .v.pins = stac925xM1_pin_configs,
1656 },
1657 [STAC_M1_2] = {
1658 .type = HDA_FIXUP_PINS,
1659 .v.pins = stac925xM1_2_pin_configs,
1660 },
1661 [STAC_M2] = {
1662 .type = HDA_FIXUP_PINS,
1663 .v.pins = stac925xM2_pin_configs,
1664 },
1665 [STAC_M2_2] = {
1666 .type = HDA_FIXUP_PINS,
1667 .v.pins = stac925xM2_2_pin_configs,
1668 },
1669 [STAC_M3] = {
1670 .type = HDA_FIXUP_PINS,
1671 .v.pins = stac925xM3_pin_configs,
1672 },
1673 [STAC_M5] = {
1674 .type = HDA_FIXUP_PINS,
1675 .v.pins = stac925xM5_pin_configs,
1676 },
1677 [STAC_M6] = {
1678 .type = HDA_FIXUP_PINS,
1679 .v.pins = stac925xM6_pin_configs,
1680 },
Tobin Davis8e21c342007-01-08 11:04:17 +01001681};
1682
Takashi Iwaid2077d42013-01-14 14:20:16 +01001683static const struct hda_model_fixup stac925x_models[] = {
1684 { .id = STAC_REF, .name = "ref" },
1685 { .id = STAC_M1, .name = "m1" },
1686 { .id = STAC_M1_2, .name = "m1-2" },
1687 { .id = STAC_M2, .name = "m2" },
1688 { .id = STAC_M2_2, .name = "m2-2" },
1689 { .id = STAC_M3, .name = "m3" },
1690 { .id = STAC_M5, .name = "m5" },
1691 { .id = STAC_M6, .name = "m6" },
1692 {}
Tobin Davis8e21c342007-01-08 11:04:17 +01001693};
1694
Takashi Iwaid2077d42013-01-14 14:20:16 +01001695static const struct snd_pci_quirk stac925x_fixup_tbl[] = {
1696 /* SigmaTel reference board */
1697 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF),
1698 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, "DFI LanParty", STAC_REF),
1699 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF),
1700
1701 /* Default table for unknown ID */
1702 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2),
1703
1704 /* gateway machines are checked via codec ssid */
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001705 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2),
1706 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5),
1707 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1),
1708 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001709 SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001710 /* Not sure about the brand name for those */
1711 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1),
1712 SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3),
1713 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6),
1714 SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001715 {} /* terminator */
Tobin Davis8e21c342007-01-08 11:04:17 +01001716};
1717
Takashi Iwai55e30142013-01-14 17:30:04 +01001718static const struct hda_pintbl ref92hd73xx_pin_configs[] = {
1719 { 0x0a, 0x02214030 },
1720 { 0x0b, 0x02a19040 },
1721 { 0x0c, 0x01a19020 },
1722 { 0x0d, 0x02214030 },
1723 { 0x0e, 0x0181302e },
1724 { 0x0f, 0x01014010 },
1725 { 0x10, 0x01014020 },
1726 { 0x11, 0x01014030 },
1727 { 0x12, 0x02319040 },
1728 { 0x13, 0x90a000f0 },
1729 { 0x14, 0x90a000f0 },
1730 { 0x22, 0x01452050 },
1731 { 0x23, 0x01452050 },
1732 {}
Matthew Ranostaya7662642008-02-21 07:51:14 +01001733};
1734
Takashi Iwai55e30142013-01-14 17:30:04 +01001735static const struct hda_pintbl dell_m6_pin_configs[] = {
1736 { 0x0a, 0x0321101f },
1737 { 0x0b, 0x4f00000f },
1738 { 0x0c, 0x4f0000f0 },
1739 { 0x0d, 0x90170110 },
1740 { 0x0e, 0x03a11020 },
1741 { 0x0f, 0x0321101f },
1742 { 0x10, 0x4f0000f0 },
1743 { 0x11, 0x4f0000f0 },
1744 { 0x12, 0x4f0000f0 },
1745 { 0x13, 0x90a60160 },
1746 { 0x14, 0x4f0000f0 },
1747 { 0x22, 0x4f0000f0 },
1748 { 0x23, 0x4f0000f0 },
1749 {}
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001750};
1751
Takashi Iwai55e30142013-01-14 17:30:04 +01001752static const struct hda_pintbl alienware_m17x_pin_configs[] = {
1753 { 0x0a, 0x0321101f },
1754 { 0x0b, 0x0321101f },
1755 { 0x0c, 0x03a11020 },
1756 { 0x0d, 0x03014020 },
1757 { 0x0e, 0x90170110 },
1758 { 0x0f, 0x4f0000f0 },
1759 { 0x10, 0x4f0000f0 },
1760 { 0x11, 0x4f0000f0 },
1761 { 0x12, 0x4f0000f0 },
1762 { 0x13, 0x90a60160 },
1763 { 0x14, 0x4f0000f0 },
1764 { 0x22, 0x4f0000f0 },
1765 { 0x23, 0x904601b0 },
1766 {}
Takashi Iwai842ae632009-09-02 07:43:08 +02001767};
1768
Takashi Iwai55e30142013-01-14 17:30:04 +01001769static const struct hda_pintbl intel_dg45id_pin_configs[] = {
1770 { 0x0a, 0x02214230 },
1771 { 0x0b, 0x02A19240 },
1772 { 0x0c, 0x01013214 },
1773 { 0x0d, 0x01014210 },
1774 { 0x0e, 0x01A19250 },
1775 { 0x0f, 0x01011212 },
1776 { 0x10, 0x01016211 },
1777 {}
Alexey Fisher52dc4382009-12-12 11:16:41 +02001778};
1779
Hui Wang80c24502014-02-20 11:47:21 +08001780static const struct hda_pintbl stac92hd89xx_hp_front_jack_pin_configs[] = {
1781 { 0x0a, 0x02214030 },
1782 { 0x0b, 0x02A19010 },
1783 {}
1784};
1785
Takashi Iwai55e30142013-01-14 17:30:04 +01001786static void stac92hd73xx_fixup_ref(struct hda_codec *codec,
1787 const struct hda_fixup *fix, int action)
1788{
1789 struct sigmatel_spec *spec = codec->spec;
1790
1791 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1792 return;
1793
1794 snd_hda_apply_pincfgs(codec, ref92hd73xx_pin_configs);
1795 spec->gpio_mask = spec->gpio_dir = spec->gpio_data = 0;
1796}
1797
1798static void stac92hd73xx_fixup_dell(struct hda_codec *codec)
1799{
1800 struct sigmatel_spec *spec = codec->spec;
1801
1802 snd_hda_apply_pincfgs(codec, dell_m6_pin_configs);
Takashi Iwai55e30142013-01-14 17:30:04 +01001803 spec->eapd_switch = 0;
1804}
1805
1806static void stac92hd73xx_fixup_dell_eq(struct hda_codec *codec,
1807 const struct hda_fixup *fix, int action)
1808{
1809 struct sigmatel_spec *spec = codec->spec;
1810
1811 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1812 return;
1813
1814 stac92hd73xx_fixup_dell(codec);
1815 snd_hda_add_verbs(codec, dell_eq_core_init);
1816 spec->volknob_init = 1;
1817}
1818
1819/* Analog Mics */
1820static void stac92hd73xx_fixup_dell_m6_amic(struct hda_codec *codec,
1821 const struct hda_fixup *fix, int action)
1822{
Takashi Iwai55e30142013-01-14 17:30:04 +01001823 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1824 return;
1825
1826 stac92hd73xx_fixup_dell(codec);
1827 snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
Takashi Iwai55e30142013-01-14 17:30:04 +01001828}
1829
1830/* Digital Mics */
1831static void stac92hd73xx_fixup_dell_m6_dmic(struct hda_codec *codec,
1832 const struct hda_fixup *fix, int action)
1833{
Takashi Iwai55e30142013-01-14 17:30:04 +01001834 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1835 return;
1836
1837 stac92hd73xx_fixup_dell(codec);
1838 snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
Takashi Iwai55e30142013-01-14 17:30:04 +01001839}
1840
1841/* Both */
1842static void stac92hd73xx_fixup_dell_m6_both(struct hda_codec *codec,
1843 const struct hda_fixup *fix, int action)
1844{
Takashi Iwai55e30142013-01-14 17:30:04 +01001845 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1846 return;
1847
1848 stac92hd73xx_fixup_dell(codec);
1849 snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
1850 snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
Takashi Iwai55e30142013-01-14 17:30:04 +01001851}
1852
1853static void stac92hd73xx_fixup_alienware_m17x(struct hda_codec *codec,
1854 const struct hda_fixup *fix, int action)
1855{
1856 struct sigmatel_spec *spec = codec->spec;
1857
1858 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1859 return;
1860
1861 snd_hda_apply_pincfgs(codec, alienware_m17x_pin_configs);
Takashi Iwai55e30142013-01-14 17:30:04 +01001862 spec->eapd_switch = 0;
1863}
1864
1865static void stac92hd73xx_fixup_no_jd(struct hda_codec *codec,
1866 const struct hda_fixup *fix, int action)
1867{
Takashi Iwai36c9db72013-01-17 17:07:59 +01001868 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1869 codec->no_jack_detect = 1;
Takashi Iwai55e30142013-01-14 17:30:04 +01001870}
1871
1872static const struct hda_fixup stac92hd73xx_fixups[] = {
1873 [STAC_92HD73XX_REF] = {
1874 .type = HDA_FIXUP_FUNC,
1875 .v.func = stac92hd73xx_fixup_ref,
1876 },
1877 [STAC_DELL_M6_AMIC] = {
1878 .type = HDA_FIXUP_FUNC,
1879 .v.func = stac92hd73xx_fixup_dell_m6_amic,
1880 },
1881 [STAC_DELL_M6_DMIC] = {
1882 .type = HDA_FIXUP_FUNC,
1883 .v.func = stac92hd73xx_fixup_dell_m6_dmic,
1884 },
1885 [STAC_DELL_M6_BOTH] = {
1886 .type = HDA_FIXUP_FUNC,
1887 .v.func = stac92hd73xx_fixup_dell_m6_both,
1888 },
1889 [STAC_DELL_EQ] = {
1890 .type = HDA_FIXUP_FUNC,
1891 .v.func = stac92hd73xx_fixup_dell_eq,
1892 },
1893 [STAC_ALIENWARE_M17X] = {
1894 .type = HDA_FIXUP_FUNC,
1895 .v.func = stac92hd73xx_fixup_alienware_m17x,
1896 },
1897 [STAC_92HD73XX_INTEL] = {
1898 .type = HDA_FIXUP_PINS,
1899 .v.pins = intel_dg45id_pin_configs,
1900 },
1901 [STAC_92HD73XX_NO_JD] = {
1902 .type = HDA_FIXUP_FUNC,
1903 .v.func = stac92hd73xx_fixup_no_jd,
Hui Wang80c24502014-02-20 11:47:21 +08001904 },
1905 [STAC_92HD89XX_HP_FRONT_JACK] = {
1906 .type = HDA_FIXUP_PINS,
1907 .v.pins = stac92hd89xx_hp_front_jack_pin_configs,
Takashi Iwai55e30142013-01-14 17:30:04 +01001908 }
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001909};
1910
Takashi Iwai55e30142013-01-14 17:30:04 +01001911static const struct hda_model_fixup stac92hd73xx_models[] = {
1912 { .id = STAC_92HD73XX_NO_JD, .name = "no-jd" },
1913 { .id = STAC_92HD73XX_REF, .name = "ref" },
1914 { .id = STAC_92HD73XX_INTEL, .name = "intel" },
1915 { .id = STAC_DELL_M6_AMIC, .name = "dell-m6-amic" },
1916 { .id = STAC_DELL_M6_DMIC, .name = "dell-m6-dmic" },
1917 { .id = STAC_DELL_M6_BOTH, .name = "dell-m6" },
1918 { .id = STAC_DELL_EQ, .name = "dell-eq" },
1919 { .id = STAC_ALIENWARE_M17X, .name = "alienware" },
1920 {}
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001921};
1922
Takashi Iwai55e30142013-01-14 17:30:04 +01001923static const struct snd_pci_quirk stac92hd73xx_fixup_tbl[] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001924 /* SigmaTel reference board */
1925 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001926 "DFI LanParty", STAC_92HD73XX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001927 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1928 "DFI LanParty", STAC_92HD73XX_REF),
Wu Fengguangae709442009-08-19 17:05:11 +08001929 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5002,
1930 "Intel DG45ID", STAC_92HD73XX_INTEL),
1931 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5003,
1932 "Intel DG45FC", STAC_92HD73XX_INTEL),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001933 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001934 "Dell Studio 1535", STAC_DELL_M6_DMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001935 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001936 "unknown Dell", STAC_DELL_M6_DMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001937 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001938 "unknown Dell", STAC_DELL_M6_BOTH),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001939 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001940 "unknown Dell", STAC_DELL_M6_BOTH),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001941 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001942 "unknown Dell", STAC_DELL_M6_AMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001943 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001944 "unknown Dell", STAC_DELL_M6_AMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001945 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001946 "unknown Dell", STAC_DELL_M6_DMIC),
1947 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0272,
1948 "unknown Dell", STAC_DELL_M6_DMIC),
Takashi Iwaib0fc5e02008-11-21 08:37:03 +01001949 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x029f,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001950 "Dell Studio 1537", STAC_DELL_M6_DMIC),
Joerg Schirottkefa620e92008-12-19 08:13:49 +01001951 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a0,
1952 "Dell Studio 17", STAC_DELL_M6_DMIC),
Takashi Iwai626f5ce2009-07-28 00:54:39 +02001953 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02be,
1954 "Dell Studio 1555", STAC_DELL_M6_DMIC),
Daniel J Blueman8ef58372009-11-14 18:20:04 +00001955 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02bd,
1956 "Dell Studio 1557", STAC_DELL_M6_DMIC),
Daniel T Chenaac78da2010-04-21 20:41:52 -04001957 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02fe,
David Henningssonffe535e2012-01-16 10:52:20 +01001958 "Dell Studio XPS 1645", STAC_DELL_M6_DMIC),
Daniel T Chen5c1bccf2010-04-22 17:54:45 -04001959 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0413,
David Henningssone033ebf2011-05-16 12:09:29 +02001960 "Dell Studio 1558", STAC_DELL_M6_DMIC),
Takashi Iwai55e30142013-01-14 17:30:04 +01001961 /* codec SSID matching */
Takashi Iwai842ae632009-09-02 07:43:08 +02001962 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a1,
1963 "Alienware M17x", STAC_ALIENWARE_M17X),
Daniel T Chen0defe092010-12-01 19:16:07 -05001964 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x043a,
1965 "Alienware M17x", STAC_ALIENWARE_M17X),
Takashi Iwaidbd1b542011-11-19 11:41:30 +01001966 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0490,
Albert Poolb9ecc4e2012-01-19 22:08:50 +01001967 "Alienware M17x R3", STAC_DELL_EQ),
Hui Wang80c24502014-02-20 11:47:21 +08001968 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2b17,
1969 "unknown HP", STAC_92HD89XX_HP_FRONT_JACK),
Takashi Iwai842ae632009-09-02 07:43:08 +02001970 {} /* terminator */
1971};
1972
Takashi Iwai372f8c72013-01-14 18:06:34 +01001973static const struct hda_pintbl ref92hd83xxx_pin_configs[] = {
1974 { 0x0a, 0x02214030 },
1975 { 0x0b, 0x02211010 },
1976 { 0x0c, 0x02a19020 },
1977 { 0x0d, 0x02170130 },
1978 { 0x0e, 0x01014050 },
1979 { 0x0f, 0x01819040 },
1980 { 0x10, 0x01014020 },
1981 { 0x11, 0x90a3014e },
1982 { 0x1f, 0x01451160 },
1983 { 0x20, 0x98560170 },
1984 {}
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001985};
1986
Takashi Iwai372f8c72013-01-14 18:06:34 +01001987static const struct hda_pintbl dell_s14_pin_configs[] = {
1988 { 0x0a, 0x0221403f },
1989 { 0x0b, 0x0221101f },
1990 { 0x0c, 0x02a19020 },
1991 { 0x0d, 0x90170110 },
1992 { 0x0e, 0x40f000f0 },
1993 { 0x0f, 0x40f000f0 },
1994 { 0x10, 0x40f000f0 },
1995 { 0x11, 0x90a60160 },
1996 { 0x1f, 0x40f000f0 },
1997 { 0x20, 0x40f000f0 },
1998 {}
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001999};
2000
Takashi Iwai372f8c72013-01-14 18:06:34 +01002001static const struct hda_pintbl dell_vostro_3500_pin_configs[] = {
2002 { 0x0a, 0x02a11020 },
2003 { 0x0b, 0x0221101f },
2004 { 0x0c, 0x400000f0 },
2005 { 0x0d, 0x90170110 },
2006 { 0x0e, 0x400000f1 },
2007 { 0x0f, 0x400000f2 },
2008 { 0x10, 0x400000f3 },
2009 { 0x11, 0x90a60160 },
2010 { 0x1f, 0x400000f4 },
2011 { 0x20, 0x400000f5 },
2012 {}
Julian Wollrathf7f9bdf2011-11-09 10:02:40 +01002013};
2014
Takashi Iwai372f8c72013-01-14 18:06:34 +01002015static const struct hda_pintbl hp_dv7_4000_pin_configs[] = {
2016 { 0x0a, 0x03a12050 },
2017 { 0x0b, 0x0321201f },
2018 { 0x0c, 0x40f000f0 },
2019 { 0x0d, 0x90170110 },
2020 { 0x0e, 0x40f000f0 },
2021 { 0x0f, 0x40f000f0 },
2022 { 0x10, 0x90170110 },
2023 { 0x11, 0xd5a30140 },
2024 { 0x1f, 0x40f000f0 },
2025 { 0x20, 0x40f000f0 },
2026 {}
Steven Eastland48315592010-08-06 15:07:35 -06002027};
2028
Takashi Iwai372f8c72013-01-14 18:06:34 +01002029static const struct hda_pintbl hp_zephyr_pin_configs[] = {
2030 { 0x0a, 0x01813050 },
2031 { 0x0b, 0x0421201f },
2032 { 0x0c, 0x04a1205e },
2033 { 0x0d, 0x96130310 },
2034 { 0x0e, 0x96130310 },
2035 { 0x0f, 0x0101401f },
2036 { 0x10, 0x1111611f },
2037 { 0x11, 0xd5a30130 },
2038 {}
Vitaliy Kulikov5556e142012-02-27 16:47:37 -06002039};
2040
Takashi Iwai372f8c72013-01-14 18:06:34 +01002041static const struct hda_pintbl hp_cNB11_intquad_pin_configs[] = {
2042 { 0x0a, 0x40f000f0 },
2043 { 0x0b, 0x0221101f },
2044 { 0x0c, 0x02a11020 },
2045 { 0x0d, 0x92170110 },
2046 { 0x0e, 0x40f000f0 },
2047 { 0x0f, 0x92170110 },
2048 { 0x10, 0x40f000f0 },
2049 { 0x11, 0xd5a30130 },
2050 { 0x1f, 0x40f000f0 },
2051 { 0x20, 0x40f000f0 },
2052 {}
Vitaliy Kulikov0c27c182011-07-22 17:50:37 -05002053};
2054
Takashi Iwai372f8c72013-01-14 18:06:34 +01002055static void stac92hd83xxx_fixup_hp(struct hda_codec *codec,
2056 const struct hda_fixup *fix, int action)
2057{
2058 struct sigmatel_spec *spec = codec->spec;
2059
2060 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2061 return;
2062
2063 if (hp_bnb2011_with_dock(codec)) {
2064 snd_hda_codec_set_pincfg(codec, 0xa, 0x2101201f);
2065 snd_hda_codec_set_pincfg(codec, 0xf, 0x2181205e);
2066 }
2067
2068 if (find_mute_led_cfg(codec, spec->default_polarity))
2069 snd_printd("mute LED gpio %d polarity %d\n",
2070 spec->gpio_led,
2071 spec->gpio_led_polarity);
2072}
2073
2074static void stac92hd83xxx_fixup_hp_zephyr(struct hda_codec *codec,
2075 const struct hda_fixup *fix, int action)
2076{
2077 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2078 return;
2079
2080 snd_hda_apply_pincfgs(codec, hp_zephyr_pin_configs);
2081 snd_hda_add_verbs(codec, stac92hd83xxx_hp_zephyr_init);
2082}
2083
2084static void stac92hd83xxx_fixup_hp_led(struct hda_codec *codec,
2085 const struct hda_fixup *fix, int action)
2086{
2087 struct sigmatel_spec *spec = codec->spec;
2088
2089 if (action == HDA_FIXUP_ACT_PRE_PROBE)
2090 spec->default_polarity = 0;
2091}
2092
2093static void stac92hd83xxx_fixup_hp_inv_led(struct hda_codec *codec,
2094 const struct hda_fixup *fix, int action)
2095{
2096 struct sigmatel_spec *spec = codec->spec;
2097
2098 if (action == HDA_FIXUP_ACT_PRE_PROBE)
2099 spec->default_polarity = 1;
2100}
2101
2102static void stac92hd83xxx_fixup_hp_mic_led(struct hda_codec *codec,
2103 const struct hda_fixup *fix, int action)
2104{
2105 struct sigmatel_spec *spec = codec->spec;
2106
2107 if (action == HDA_FIXUP_ACT_PRE_PROBE)
2108 spec->mic_mute_led_gpio = 0x08; /* GPIO3 */
2109}
2110
Takashi Iwaif5556a62014-02-24 15:23:10 +01002111static void stac92hd83xxx_fixup_hp_led_gpio10(struct hda_codec *codec,
2112 const struct hda_fixup *fix, int action)
2113{
2114 struct sigmatel_spec *spec = codec->spec;
2115
2116 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2117 spec->gpio_led = 0x10; /* GPIO4 */
2118 spec->default_polarity = 0;
2119 }
2120}
2121
Takashi Iwai372f8c72013-01-14 18:06:34 +01002122static void stac92hd83xxx_fixup_headset_jack(struct hda_codec *codec,
2123 const struct hda_fixup *fix, int action)
2124{
2125 struct sigmatel_spec *spec = codec->spec;
2126
2127 if (action == HDA_FIXUP_ACT_PRE_PROBE)
2128 spec->headset_jack = 1;
2129}
2130
2131static const struct hda_fixup stac92hd83xxx_fixups[] = {
2132 [STAC_92HD83XXX_REF] = {
2133 .type = HDA_FIXUP_PINS,
2134 .v.pins = ref92hd83xxx_pin_configs,
2135 },
2136 [STAC_92HD83XXX_PWR_REF] = {
2137 .type = HDA_FIXUP_PINS,
2138 .v.pins = ref92hd83xxx_pin_configs,
2139 },
2140 [STAC_DELL_S14] = {
2141 .type = HDA_FIXUP_PINS,
2142 .v.pins = dell_s14_pin_configs,
2143 },
2144 [STAC_DELL_VOSTRO_3500] = {
2145 .type = HDA_FIXUP_PINS,
2146 .v.pins = dell_vostro_3500_pin_configs,
2147 },
2148 [STAC_92HD83XXX_HP_cNB11_INTQUAD] = {
2149 .type = HDA_FIXUP_PINS,
2150 .v.pins = hp_cNB11_intquad_pin_configs,
2151 .chained = true,
2152 .chain_id = STAC_92HD83XXX_HP,
2153 },
2154 [STAC_92HD83XXX_HP] = {
2155 .type = HDA_FIXUP_FUNC,
2156 .v.func = stac92hd83xxx_fixup_hp,
2157 },
2158 [STAC_HP_DV7_4000] = {
2159 .type = HDA_FIXUP_PINS,
2160 .v.pins = hp_dv7_4000_pin_configs,
2161 .chained = true,
2162 .chain_id = STAC_92HD83XXX_HP,
2163 },
2164 [STAC_HP_ZEPHYR] = {
2165 .type = HDA_FIXUP_FUNC,
2166 .v.func = stac92hd83xxx_fixup_hp_zephyr,
2167 .chained = true,
2168 .chain_id = STAC_92HD83XXX_HP,
2169 },
2170 [STAC_92HD83XXX_HP_LED] = {
2171 .type = HDA_FIXUP_FUNC,
2172 .v.func = stac92hd83xxx_fixup_hp_led,
2173 .chained = true,
2174 .chain_id = STAC_92HD83XXX_HP,
2175 },
2176 [STAC_92HD83XXX_HP_INV_LED] = {
2177 .type = HDA_FIXUP_FUNC,
2178 .v.func = stac92hd83xxx_fixup_hp_inv_led,
2179 .chained = true,
2180 .chain_id = STAC_92HD83XXX_HP,
2181 },
2182 [STAC_92HD83XXX_HP_MIC_LED] = {
2183 .type = HDA_FIXUP_FUNC,
2184 .v.func = stac92hd83xxx_fixup_hp_mic_led,
2185 .chained = true,
2186 .chain_id = STAC_92HD83XXX_HP,
2187 },
Takashi Iwaif5556a62014-02-24 15:23:10 +01002188 [STAC_HP_LED_GPIO10] = {
2189 .type = HDA_FIXUP_FUNC,
2190 .v.func = stac92hd83xxx_fixup_hp_led_gpio10,
2191 .chained = true,
2192 .chain_id = STAC_92HD83XXX_HP,
2193 },
Takashi Iwai372f8c72013-01-14 18:06:34 +01002194 [STAC_92HD83XXX_HEADSET_JACK] = {
2195 .type = HDA_FIXUP_FUNC,
2196 .v.func = stac92hd83xxx_fixup_headset_jack,
2197 },
Takashi Iwai49920422013-01-18 14:28:07 +01002198 [STAC_HP_ENVY_BASS] = {
2199 .type = HDA_FIXUP_PINS,
2200 .v.pins = (const struct hda_pintbl[]) {
2201 { 0x0f, 0x90170111 },
2202 {}
2203 },
2204 },
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02002205};
2206
Takashi Iwai372f8c72013-01-14 18:06:34 +01002207static const struct hda_model_fixup stac92hd83xxx_models[] = {
2208 { .id = STAC_92HD83XXX_REF, .name = "ref" },
2209 { .id = STAC_92HD83XXX_PWR_REF, .name = "mic-ref" },
2210 { .id = STAC_DELL_S14, .name = "dell-s14" },
2211 { .id = STAC_DELL_VOSTRO_3500, .name = "dell-vostro-3500" },
2212 { .id = STAC_92HD83XXX_HP_cNB11_INTQUAD, .name = "hp_cNB11_intquad" },
2213 { .id = STAC_HP_DV7_4000, .name = "hp-dv7-4000" },
2214 { .id = STAC_HP_ZEPHYR, .name = "hp-zephyr" },
2215 { .id = STAC_92HD83XXX_HP_LED, .name = "hp-led" },
2216 { .id = STAC_92HD83XXX_HP_INV_LED, .name = "hp-inv-led" },
2217 { .id = STAC_92HD83XXX_HP_MIC_LED, .name = "hp-mic-led" },
2218 { .id = STAC_92HD83XXX_HEADSET_JACK, .name = "headset-jack" },
Takashi Iwai49920422013-01-18 14:28:07 +01002219 { .id = STAC_HP_ENVY_BASS, .name = "hp-envy-bass" },
Takashi Iwai372f8c72013-01-14 18:06:34 +01002220 {}
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02002221};
2222
Takashi Iwai372f8c72013-01-14 18:06:34 +01002223static const struct snd_pci_quirk stac92hd83xxx_fixup_tbl[] = {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02002224 /* SigmaTel reference board */
2225 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
Takashi Iwaif9d088b2009-01-13 11:54:49 +01002226 "DFI LanParty", STAC_92HD83XXX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002227 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2228 "DFI LanParty", STAC_92HD83XXX_REF),
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05002229 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ba,
2230 "unknown Dell", STAC_DELL_S14),
David Henningsson8d032a82012-10-09 12:48:40 +02002231 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0532,
2232 "Dell Latitude E6230", STAC_92HD83XXX_HEADSET_JACK),
2233 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0533,
2234 "Dell Latitude E6330", STAC_92HD83XXX_HEADSET_JACK),
2235 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0534,
2236 "Dell Latitude E6430", STAC_92HD83XXX_HEADSET_JACK),
2237 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0535,
2238 "Dell Latitude E6530", STAC_92HD83XXX_HEADSET_JACK),
2239 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x053c,
2240 "Dell Latitude E5430", STAC_92HD83XXX_HEADSET_JACK),
2241 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x053d,
2242 "Dell Latitude E5530", STAC_92HD83XXX_HEADSET_JACK),
2243 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0549,
2244 "Dell Latitude E5430", STAC_92HD83XXX_HEADSET_JACK),
2245 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x057d,
2246 "Dell Latitude E6430s", STAC_92HD83XXX_HEADSET_JACK),
2247 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0584,
2248 "Dell Latitude E6430U", STAC_92HD83XXX_HEADSET_JACK),
Julian Wollrathf7f9bdf2011-11-09 10:02:40 +01002249 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x1028,
2250 "Dell Vostro 3500", STAC_DELL_VOSTRO_3500),
Vitaliy Kulikov0c27c182011-07-22 17:50:37 -05002251 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1656,
2252 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2253 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1657,
2254 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2255 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1658,
2256 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2257 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1659,
Takashi Iwai8ae58652012-12-13 14:33:42 +01002258 "HP Pavilion dv7", STAC_HP_DV7_4000),
Vitaliy Kulikov0c27c182011-07-22 17:50:37 -05002259 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x165A,
2260 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2261 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x165B,
2262 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
Takashi Iwai49920422013-01-18 14:28:07 +01002263 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1888,
2264 "HP Envy Spectre", STAC_HP_ENVY_BASS),
Takashi Iwaif5556a62014-02-24 15:23:10 +01002265 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1899,
2266 "HP Folio 13", STAC_HP_LED_GPIO10),
Takashi Iwai62cbde12012-09-14 11:58:54 +02002267 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x18df,
2268 "HP Folio", STAC_92HD83XXX_HP_MIC_LED),
Takashi Iwaif9afed12013-02-06 12:39:06 +01002269 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xff00, 0x1900,
2270 "HP", STAC_92HD83XXX_HP_MIC_LED),
Vitaliy Kulikov0c27c182011-07-22 17:50:37 -05002271 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3388,
2272 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2273 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3389,
2274 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2275 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355B,
2276 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2277 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355C,
2278 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2279 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355D,
2280 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2281 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355E,
2282 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2283 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355F,
2284 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2285 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3560,
2286 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2287 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358B,
2288 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2289 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358C,
2290 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2291 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358D,
2292 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2293 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3591,
2294 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2295 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3592,
2296 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2297 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3593,
2298 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
Vitaliy Kulikov5556e142012-02-27 16:47:37 -06002299 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3561,
2300 "HP", STAC_HP_ZEPHYR),
Takashi Iwaia3e19972012-07-26 08:17:20 +02002301 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3660,
2302 "HP Mini", STAC_92HD83XXX_HP_LED),
Gustavo Maciel Dias Vieira5afc13a2012-10-26 12:51:53 -02002303 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x144E,
2304 "HP Pavilion dv5", STAC_92HD83XXX_HP_INV_LED),
Takashi Iwai8c698fe2013-01-15 11:20:50 +01002305 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x148a,
2306 "HP Mini", STAC_92HD83XXX_HP_LED),
Takashi Iwai372f8c72013-01-14 18:06:34 +01002307 SND_PCI_QUIRK_VENDOR(PCI_VENDOR_ID_HP, "HP", STAC_92HD83XXX_HP),
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -02002308 {} /* terminator */
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02002309};
2310
Takashi Iwai36c9db72013-01-17 17:07:59 +01002311/* HP dv7 bass switch - GPIO5 */
2312#define stac_hp_bass_gpio_info snd_ctl_boolean_mono_info
2313static int stac_hp_bass_gpio_get(struct snd_kcontrol *kcontrol,
2314 struct snd_ctl_elem_value *ucontrol)
2315{
2316 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2317 struct sigmatel_spec *spec = codec->spec;
2318 ucontrol->value.integer.value[0] = !!(spec->gpio_data & 0x20);
2319 return 0;
2320}
2321
2322static int stac_hp_bass_gpio_put(struct snd_kcontrol *kcontrol,
2323 struct snd_ctl_elem_value *ucontrol)
2324{
2325 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2326 struct sigmatel_spec *spec = codec->spec;
2327 unsigned int gpio_data;
2328
2329 gpio_data = (spec->gpio_data & ~0x20) |
2330 (ucontrol->value.integer.value[0] ? 0x20 : 0);
2331 if (gpio_data == spec->gpio_data)
2332 return 0;
2333 spec->gpio_data = gpio_data;
2334 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, spec->gpio_data);
2335 return 1;
2336}
2337
2338static const struct snd_kcontrol_new stac_hp_bass_sw_ctrl = {
2339 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2340 .info = stac_hp_bass_gpio_info,
2341 .get = stac_hp_bass_gpio_get,
2342 .put = stac_hp_bass_gpio_put,
2343};
2344
2345static int stac_add_hp_bass_switch(struct hda_codec *codec)
2346{
2347 struct sigmatel_spec *spec = codec->spec;
2348
2349 if (!snd_hda_gen_add_kctl(&spec->gen, "Bass Speaker Playback Switch",
2350 &stac_hp_bass_sw_ctrl))
2351 return -ENOMEM;
2352
2353 spec->gpio_mask |= 0x20;
2354 spec->gpio_dir |= 0x20;
2355 spec->gpio_data |= 0x20;
2356 return 0;
2357}
2358
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002359static const struct hda_pintbl ref92hd71bxx_pin_configs[] = {
2360 { 0x0a, 0x02214030 },
2361 { 0x0b, 0x02a19040 },
2362 { 0x0c, 0x01a19020 },
2363 { 0x0d, 0x01014010 },
2364 { 0x0e, 0x0181302e },
2365 { 0x0f, 0x01014010 },
2366 { 0x14, 0x01019020 },
2367 { 0x18, 0x90a000f0 },
2368 { 0x19, 0x90a000f0 },
2369 { 0x1e, 0x01452050 },
2370 { 0x1f, 0x01452050 },
2371 {}
Matthew Ranostaye035b842007-11-06 11:53:55 +01002372};
2373
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002374static const struct hda_pintbl dell_m4_1_pin_configs[] = {
2375 { 0x0a, 0x0421101f },
2376 { 0x0b, 0x04a11221 },
2377 { 0x0c, 0x40f000f0 },
2378 { 0x0d, 0x90170110 },
2379 { 0x0e, 0x23a1902e },
2380 { 0x0f, 0x23014250 },
2381 { 0x14, 0x40f000f0 },
2382 { 0x18, 0x90a000f0 },
2383 { 0x19, 0x40f000f0 },
2384 { 0x1e, 0x4f0000f0 },
2385 { 0x1f, 0x4f0000f0 },
2386 {}
Matthew Ranostaya7662642008-02-21 07:51:14 +01002387};
2388
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002389static const struct hda_pintbl dell_m4_2_pin_configs[] = {
2390 { 0x0a, 0x0421101f },
2391 { 0x0b, 0x04a11221 },
2392 { 0x0c, 0x90a70330 },
2393 { 0x0d, 0x90170110 },
2394 { 0x0e, 0x23a1902e },
2395 { 0x0f, 0x23014250 },
2396 { 0x14, 0x40f000f0 },
2397 { 0x18, 0x40f000f0 },
2398 { 0x19, 0x40f000f0 },
2399 { 0x1e, 0x044413b0 },
2400 { 0x1f, 0x044413b0 },
2401 {}
Matthew Ranostaya7662642008-02-21 07:51:14 +01002402};
2403
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002404static const struct hda_pintbl dell_m4_3_pin_configs[] = {
2405 { 0x0a, 0x0421101f },
2406 { 0x0b, 0x04a11221 },
2407 { 0x0c, 0x90a70330 },
2408 { 0x0d, 0x90170110 },
2409 { 0x0e, 0x40f000f0 },
2410 { 0x0f, 0x40f000f0 },
2411 { 0x14, 0x40f000f0 },
2412 { 0x18, 0x90a000f0 },
2413 { 0x19, 0x40f000f0 },
2414 { 0x1e, 0x044413b0 },
2415 { 0x1f, 0x044413b0 },
2416 {}
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05002417};
2418
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002419static void stac92hd71bxx_fixup_ref(struct hda_codec *codec,
2420 const struct hda_fixup *fix, int action)
2421{
2422 struct sigmatel_spec *spec = codec->spec;
2423
2424 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2425 return;
2426
2427 snd_hda_apply_pincfgs(codec, ref92hd71bxx_pin_configs);
2428 spec->gpio_mask = spec->gpio_dir = spec->gpio_data = 0;
2429}
2430
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002431static void stac92hd71bxx_fixup_hp_m4(struct hda_codec *codec,
2432 const struct hda_fixup *fix, int action)
2433{
2434 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai36c9db72013-01-17 17:07:59 +01002435 struct hda_jack_tbl *jack;
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002436
2437 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2438 return;
2439
2440 /* Enable VREF power saving on GPIO1 detect */
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002441 snd_hda_codec_write_cache(codec, codec->afg, 0,
2442 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x02);
Takashi Iwai36c9db72013-01-17 17:07:59 +01002443 snd_hda_jack_detect_enable_callback(codec, codec->afg,
2444 STAC_VREF_EVENT,
2445 stac_vref_event);
2446 jack = snd_hda_jack_tbl_get(codec, codec->afg);
2447 if (jack)
2448 jack->private_data = 0x02;
2449
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002450 spec->gpio_mask |= 0x02;
2451
2452 /* enable internal microphone */
2453 snd_hda_codec_set_pincfg(codec, 0x0e, 0x01813040);
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002454}
2455
2456static void stac92hd71bxx_fixup_hp_dv4(struct hda_codec *codec,
2457 const struct hda_fixup *fix, int action)
2458{
2459 struct sigmatel_spec *spec = codec->spec;
2460
2461 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2462 return;
2463 spec->gpio_led = 0x01;
2464}
2465
2466static void stac92hd71bxx_fixup_hp_dv5(struct hda_codec *codec,
2467 const struct hda_fixup *fix, int action)
2468{
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002469 unsigned int cap;
2470
2471 switch (action) {
2472 case HDA_FIXUP_ACT_PRE_PROBE:
2473 snd_hda_codec_set_pincfg(codec, 0x0d, 0x90170010);
Takashi Iwaif6655d52013-01-17 08:49:01 +01002474 break;
2475
2476 case HDA_FIXUP_ACT_PROBE:
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002477 /* enable bass on HP dv7 */
2478 cap = snd_hda_param_read(codec, 0x1, AC_PAR_GPIO_CAP);
2479 cap &= AC_GPIO_IO_COUNT;
2480 if (cap >= 6)
2481 stac_add_hp_bass_switch(codec);
2482 break;
2483 }
2484}
2485
2486static void stac92hd71bxx_fixup_hp_hdx(struct hda_codec *codec,
2487 const struct hda_fixup *fix, int action)
2488{
2489 struct sigmatel_spec *spec = codec->spec;
2490
2491 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2492 return;
2493 spec->gpio_led = 0x08;
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002494}
2495
2496
2497static void stac92hd71bxx_fixup_hp(struct hda_codec *codec,
2498 const struct hda_fixup *fix, int action)
2499{
2500 struct sigmatel_spec *spec = codec->spec;
2501
2502 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2503 return;
2504
2505 if (hp_blike_system(codec->subsystem_id)) {
2506 unsigned int pin_cfg = snd_hda_codec_get_pincfg(codec, 0x0f);
2507 if (get_defcfg_device(pin_cfg) == AC_JACK_LINE_OUT ||
2508 get_defcfg_device(pin_cfg) == AC_JACK_SPEAKER ||
2509 get_defcfg_device(pin_cfg) == AC_JACK_HP_OUT) {
2510 /* It was changed in the BIOS to just satisfy MS DTM.
2511 * Lets turn it back into slaved HP
2512 */
2513 pin_cfg = (pin_cfg & (~AC_DEFCFG_DEVICE))
2514 | (AC_JACK_HP_OUT <<
2515 AC_DEFCFG_DEVICE_SHIFT);
2516 pin_cfg = (pin_cfg & (~(AC_DEFCFG_DEF_ASSOC
2517 | AC_DEFCFG_SEQUENCE)))
2518 | 0x1f;
2519 snd_hda_codec_set_pincfg(codec, 0x0f, pin_cfg);
2520 }
2521 }
2522
Takashi Iwai36c9db72013-01-17 17:07:59 +01002523 if (find_mute_led_cfg(codec, 1))
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002524 snd_printd("mute LED gpio %d polarity %d\n",
2525 spec->gpio_led,
2526 spec->gpio_led_polarity);
2527
2528}
2529
2530static const struct hda_fixup stac92hd71bxx_fixups[] = {
2531 [STAC_92HD71BXX_REF] = {
2532 .type = HDA_FIXUP_FUNC,
2533 .v.func = stac92hd71bxx_fixup_ref,
2534 },
2535 [STAC_DELL_M4_1] = {
2536 .type = HDA_FIXUP_PINS,
2537 .v.pins = dell_m4_1_pin_configs,
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002538 },
2539 [STAC_DELL_M4_2] = {
2540 .type = HDA_FIXUP_PINS,
2541 .v.pins = dell_m4_2_pin_configs,
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002542 },
2543 [STAC_DELL_M4_3] = {
2544 .type = HDA_FIXUP_PINS,
2545 .v.pins = dell_m4_3_pin_configs,
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002546 },
2547 [STAC_HP_M4] = {
2548 .type = HDA_FIXUP_FUNC,
2549 .v.func = stac92hd71bxx_fixup_hp_m4,
2550 .chained = true,
2551 .chain_id = STAC_92HD71BXX_HP,
2552 },
2553 [STAC_HP_DV4] = {
2554 .type = HDA_FIXUP_FUNC,
2555 .v.func = stac92hd71bxx_fixup_hp_dv4,
2556 .chained = true,
2557 .chain_id = STAC_HP_DV5,
2558 },
2559 [STAC_HP_DV5] = {
2560 .type = HDA_FIXUP_FUNC,
2561 .v.func = stac92hd71bxx_fixup_hp_dv5,
2562 .chained = true,
2563 .chain_id = STAC_92HD71BXX_HP,
2564 },
2565 [STAC_HP_HDX] = {
2566 .type = HDA_FIXUP_FUNC,
2567 .v.func = stac92hd71bxx_fixup_hp_hdx,
2568 .chained = true,
2569 .chain_id = STAC_92HD71BXX_HP,
2570 },
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002571 [STAC_92HD71BXX_HP] = {
2572 .type = HDA_FIXUP_FUNC,
2573 .v.func = stac92hd71bxx_fixup_hp,
2574 },
Matthew Ranostaye035b842007-11-06 11:53:55 +01002575};
2576
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002577static const struct hda_model_fixup stac92hd71bxx_models[] = {
2578 { .id = STAC_92HD71BXX_REF, .name = "ref" },
2579 { .id = STAC_DELL_M4_1, .name = "dell-m4-1" },
2580 { .id = STAC_DELL_M4_2, .name = "dell-m4-2" },
2581 { .id = STAC_DELL_M4_3, .name = "dell-m4-3" },
2582 { .id = STAC_HP_M4, .name = "hp-m4" },
2583 { .id = STAC_HP_DV4, .name = "hp-dv4" },
2584 { .id = STAC_HP_DV5, .name = "hp-dv5" },
2585 { .id = STAC_HP_HDX, .name = "hp-hdx" },
Takashi Iwai36c9db72013-01-17 17:07:59 +01002586 { .id = STAC_HP_DV4, .name = "hp-dv4-1222nr" },
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002587 {}
Matthew Ranostaye035b842007-11-06 11:53:55 +01002588};
2589
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002590static const struct snd_pci_quirk stac92hd71bxx_fixup_tbl[] = {
Matthew Ranostaye035b842007-11-06 11:53:55 +01002591 /* SigmaTel reference board */
2592 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2593 "DFI LanParty", STAC_92HD71BXX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002594 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2595 "DFI LanParty", STAC_92HD71BXX_REF),
Vitaliy Kulikov5bdaaad2009-11-04 07:57:45 +01002596 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x1720,
2597 "HP", STAC_HP_DV5),
Takashi Iwai58d83952009-03-13 17:04:34 +01002598 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3080,
2599 "HP", STAC_HP_DV5),
Takashi Iwai2ae466f2009-02-16 14:16:36 +01002600 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x30f0,
Takashi Iwai2a6ce6e2010-05-12 10:16:20 +02002601 "HP dv4-7", STAC_HP_DV4),
Takashi Iwai2ae466f2009-02-16 14:16:36 +01002602 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3600,
2603 "HP dv4-7", STAC_HP_DV5),
Takashi Iwai6fce61a2009-03-10 07:48:57 +01002604 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3610,
2605 "HP HDX", STAC_HP_HDX), /* HDX18 */
Matthew Ranostay9a9e2352008-09-26 10:37:03 -04002606 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a,
Takashi Iwai2ae466f2009-02-16 14:16:36 +01002607 "HP mini 1000", STAC_HP_M4),
Christoph Plattnerae6241f2009-03-08 23:19:05 +01002608 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361b,
Takashi Iwai6fce61a2009-03-10 07:48:57 +01002609 "HP HDX", STAC_HP_HDX), /* HDX16 */
Takashi Iwai6e34c032009-09-14 15:42:18 +02002610 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3620,
2611 "HP dv6", STAC_HP_DV5),
Kunal Gangakhedkare3d25302010-03-20 23:08:01 +05302612 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3061,
2613 "HP dv6", STAC_HP_DV5), /* HP dv6-1110ax */
Luke Yelavich9b2167d2010-10-06 15:45:46 +11002614 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x363e,
2615 "HP DV6", STAC_HP_DV5),
Takashi Iwai1972d022009-08-06 08:44:43 +02002616 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x7010,
2617 "HP", STAC_HP_DV5),
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002618 SND_PCI_QUIRK_VENDOR(PCI_VENDOR_ID_HP, "HP", STAC_92HD71BXX_HP),
Matthew Ranostaya7662642008-02-21 07:51:14 +01002619 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,
2620 "unknown Dell", STAC_DELL_M4_1),
2621 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234,
2622 "unknown Dell", STAC_DELL_M4_1),
2623 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250,
2624 "unknown Dell", STAC_DELL_M4_1),
2625 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f,
2626 "unknown Dell", STAC_DELL_M4_1),
2627 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d,
2628 "unknown Dell", STAC_DELL_M4_1),
2629 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251,
2630 "unknown Dell", STAC_DELL_M4_1),
2631 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277,
2632 "unknown Dell", STAC_DELL_M4_1),
2633 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263,
2634 "unknown Dell", STAC_DELL_M4_2),
2635 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265,
2636 "unknown Dell", STAC_DELL_M4_2),
2637 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262,
2638 "unknown Dell", STAC_DELL_M4_2),
2639 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264,
2640 "unknown Dell", STAC_DELL_M4_2),
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05002641 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa,
2642 "unknown Dell", STAC_DELL_M4_3),
Matthew Ranostaye035b842007-11-06 11:53:55 +01002643 {} /* terminator */
2644};
2645
Takashi Iwai0a42784642013-01-14 15:20:13 +01002646static const struct hda_pintbl ref922x_pin_configs[] = {
2647 { 0x0a, 0x01014010 },
2648 { 0x0b, 0x01016011 },
2649 { 0x0c, 0x01012012 },
2650 { 0x0d, 0x0221401f },
2651 { 0x0e, 0x01813122 },
2652 { 0x0f, 0x01011014 },
2653 { 0x10, 0x01441030 },
2654 { 0x11, 0x01c41030 },
2655 { 0x15, 0x40000100 },
2656 { 0x1b, 0x40000100 },
2657 {}
Matt2f2f4252005-04-13 14:45:30 +02002658};
2659
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002660/*
2661 STAC 922X pin configs for
2662 102801A7
2663 102801AB
2664 102801A9
2665 102801D1
2666 102801D2
2667*/
Takashi Iwai0a42784642013-01-14 15:20:13 +01002668static const struct hda_pintbl dell_922x_d81_pin_configs[] = {
2669 { 0x0a, 0x02214030 },
2670 { 0x0b, 0x01a19021 },
2671 { 0x0c, 0x01111012 },
2672 { 0x0d, 0x01114010 },
2673 { 0x0e, 0x02a19020 },
2674 { 0x0f, 0x01117011 },
2675 { 0x10, 0x400001f0 },
2676 { 0x11, 0x400001f1 },
2677 { 0x15, 0x01813122 },
2678 { 0x1b, 0x400001f2 },
2679 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002680};
2681
2682/*
2683 STAC 922X pin configs for
2684 102801AC
2685 102801D0
2686*/
Takashi Iwai0a42784642013-01-14 15:20:13 +01002687static const struct hda_pintbl dell_922x_d82_pin_configs[] = {
2688 { 0x0a, 0x02214030 },
2689 { 0x0b, 0x01a19021 },
2690 { 0x0c, 0x01111012 },
2691 { 0x0d, 0x01114010 },
2692 { 0x0e, 0x02a19020 },
2693 { 0x0f, 0x01117011 },
2694 { 0x10, 0x01451140 },
2695 { 0x11, 0x400001f0 },
2696 { 0x15, 0x01813122 },
2697 { 0x1b, 0x400001f1 },
2698 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002699};
2700
2701/*
2702 STAC 922X pin configs for
2703 102801BF
2704*/
Takashi Iwai0a42784642013-01-14 15:20:13 +01002705static const struct hda_pintbl dell_922x_m81_pin_configs[] = {
2706 { 0x0a, 0x0321101f },
2707 { 0x0b, 0x01112024 },
2708 { 0x0c, 0x01111222 },
2709 { 0x0d, 0x91174220 },
2710 { 0x0e, 0x03a11050 },
2711 { 0x0f, 0x01116221 },
2712 { 0x10, 0x90a70330 },
2713 { 0x11, 0x01452340 },
2714 { 0x15, 0x40C003f1 },
2715 { 0x1b, 0x405003f0 },
2716 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002717};
2718
2719/*
2720 STAC 9221 A1 pin configs for
2721 102801D7 (Dell XPS M1210)
2722*/
Takashi Iwai0a42784642013-01-14 15:20:13 +01002723static const struct hda_pintbl dell_922x_m82_pin_configs[] = {
2724 { 0x0a, 0x02211211 },
2725 { 0x0b, 0x408103ff },
2726 { 0x0c, 0x02a1123e },
2727 { 0x0d, 0x90100310 },
2728 { 0x0e, 0x408003f1 },
2729 { 0x0f, 0x0221121f },
2730 { 0x10, 0x03451340 },
2731 { 0x11, 0x40c003f2 },
2732 { 0x15, 0x508003f3 },
2733 { 0x1b, 0x405003f4 },
2734 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002735};
2736
Takashi Iwai0a42784642013-01-14 15:20:13 +01002737static const struct hda_pintbl d945gtp3_pin_configs[] = {
2738 { 0x0a, 0x0221401f },
2739 { 0x0b, 0x01a19022 },
2740 { 0x0c, 0x01813021 },
2741 { 0x0d, 0x01014010 },
2742 { 0x0e, 0x40000100 },
2743 { 0x0f, 0x40000100 },
2744 { 0x10, 0x40000100 },
2745 { 0x11, 0x40000100 },
2746 { 0x15, 0x02a19120 },
2747 { 0x1b, 0x40000100 },
2748 {}
Matt Porter403d1942005-11-29 15:00:51 +01002749};
2750
Takashi Iwai0a42784642013-01-14 15:20:13 +01002751static const struct hda_pintbl d945gtp5_pin_configs[] = {
2752 { 0x0a, 0x0221401f },
2753 { 0x0b, 0x01011012 },
2754 { 0x0c, 0x01813024 },
2755 { 0x0d, 0x01014010 },
2756 { 0x0e, 0x01a19021 },
2757 { 0x0f, 0x01016011 },
2758 { 0x10, 0x01452130 },
2759 { 0x11, 0x40000100 },
2760 { 0x15, 0x02a19320 },
2761 { 0x1b, 0x40000100 },
2762 {}
Matt Porter403d1942005-11-29 15:00:51 +01002763};
2764
Takashi Iwai0a42784642013-01-14 15:20:13 +01002765static const struct hda_pintbl intel_mac_v1_pin_configs[] = {
2766 { 0x0a, 0x0121e21f },
2767 { 0x0b, 0x400000ff },
2768 { 0x0c, 0x9017e110 },
2769 { 0x0d, 0x400000fd },
2770 { 0x0e, 0x400000fe },
2771 { 0x0f, 0x0181e020 },
2772 { 0x10, 0x1145e030 },
2773 { 0x11, 0x11c5e240 },
2774 { 0x15, 0x400000fc },
2775 { 0x1b, 0x400000fb },
2776 {}
Takashi Iwai3fc24d82007-02-16 13:27:18 +01002777};
2778
Takashi Iwai0a42784642013-01-14 15:20:13 +01002779static const struct hda_pintbl intel_mac_v2_pin_configs[] = {
2780 { 0x0a, 0x0121e21f },
2781 { 0x0b, 0x90a7012e },
2782 { 0x0c, 0x9017e110 },
2783 { 0x0d, 0x400000fd },
2784 { 0x0e, 0x400000fe },
2785 { 0x0f, 0x0181e020 },
2786 { 0x10, 0x1145e230 },
2787 { 0x11, 0x500000fa },
2788 { 0x15, 0x400000fc },
2789 { 0x1b, 0x400000fb },
2790 {}
Sylvain FORETf16928f2007-04-27 14:22:36 +02002791};
2792
Takashi Iwai0a42784642013-01-14 15:20:13 +01002793static const struct hda_pintbl intel_mac_v3_pin_configs[] = {
2794 { 0x0a, 0x0121e21f },
2795 { 0x0b, 0x90a7012e },
2796 { 0x0c, 0x9017e110 },
2797 { 0x0d, 0x400000fd },
2798 { 0x0e, 0x400000fe },
2799 { 0x0f, 0x0181e020 },
2800 { 0x10, 0x1145e230 },
2801 { 0x11, 0x11c5e240 },
2802 { 0x15, 0x400000fc },
2803 { 0x1b, 0x400000fb },
2804 {}
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02002805};
2806
Takashi Iwai0a42784642013-01-14 15:20:13 +01002807static const struct hda_pintbl intel_mac_v4_pin_configs[] = {
2808 { 0x0a, 0x0321e21f },
2809 { 0x0b, 0x03a1e02e },
2810 { 0x0c, 0x9017e110 },
2811 { 0x0d, 0x9017e11f },
2812 { 0x0e, 0x400000fe },
2813 { 0x0f, 0x0381e020 },
2814 { 0x10, 0x1345e230 },
2815 { 0x11, 0x13c5e240 },
2816 { 0x15, 0x400000fc },
2817 { 0x1b, 0x400000fb },
2818 {}
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02002819};
2820
Takashi Iwai0a42784642013-01-14 15:20:13 +01002821static const struct hda_pintbl intel_mac_v5_pin_configs[] = {
2822 { 0x0a, 0x0321e21f },
2823 { 0x0b, 0x03a1e02e },
2824 { 0x0c, 0x9017e110 },
2825 { 0x0d, 0x9017e11f },
2826 { 0x0e, 0x400000fe },
2827 { 0x0f, 0x0381e020 },
2828 { 0x10, 0x1345e230 },
2829 { 0x11, 0x13c5e240 },
2830 { 0x15, 0x400000fc },
2831 { 0x1b, 0x400000fb },
2832 {}
Takashi Iwai0dae0f82007-05-21 12:41:29 +02002833};
2834
Takashi Iwai0a42784642013-01-14 15:20:13 +01002835static const struct hda_pintbl ecs202_pin_configs[] = {
2836 { 0x0a, 0x0221401f },
2837 { 0x0b, 0x02a19020 },
2838 { 0x0c, 0x01a19020 },
2839 { 0x0d, 0x01114010 },
2840 { 0x0e, 0x408000f0 },
2841 { 0x0f, 0x01813022 },
2842 { 0x10, 0x074510a0 },
2843 { 0x11, 0x40c400f1 },
2844 { 0x15, 0x9037012e },
2845 { 0x1b, 0x40e000f2 },
2846 {}
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03002847};
Takashi Iwai76c08822007-06-19 12:17:42 +02002848
Takashi Iwai0a42784642013-01-14 15:20:13 +01002849/* codec SSIDs for Intel Mac sharing the same PCI SSID 8384:7680 */
2850static const struct snd_pci_quirk stac922x_intel_mac_fixup_tbl[] = {
Takashi Iwaic6bffb82013-08-01 08:38:27 +02002851 SND_PCI_QUIRK(0x0000, 0x0100, "Mac Mini", STAC_INTEL_MAC_V3),
Takashi Iwai0a42784642013-01-14 15:20:13 +01002852 SND_PCI_QUIRK(0x106b, 0x0800, "Mac", STAC_INTEL_MAC_V1),
2853 SND_PCI_QUIRK(0x106b, 0x0600, "Mac", STAC_INTEL_MAC_V2),
2854 SND_PCI_QUIRK(0x106b, 0x0700, "Mac", STAC_INTEL_MAC_V2),
2855 SND_PCI_QUIRK(0x106b, 0x0e00, "Mac", STAC_INTEL_MAC_V3),
2856 SND_PCI_QUIRK(0x106b, 0x0f00, "Mac", STAC_INTEL_MAC_V3),
2857 SND_PCI_QUIRK(0x106b, 0x1600, "Mac", STAC_INTEL_MAC_V3),
2858 SND_PCI_QUIRK(0x106b, 0x1700, "Mac", STAC_INTEL_MAC_V3),
2859 SND_PCI_QUIRK(0x106b, 0x0200, "Mac", STAC_INTEL_MAC_V3),
2860 SND_PCI_QUIRK(0x106b, 0x1e00, "Mac", STAC_INTEL_MAC_V3),
2861 SND_PCI_QUIRK(0x106b, 0x1a00, "Mac", STAC_INTEL_MAC_V4),
2862 SND_PCI_QUIRK(0x106b, 0x0a00, "Mac", STAC_INTEL_MAC_V5),
2863 SND_PCI_QUIRK(0x106b, 0x2200, "Mac", STAC_INTEL_MAC_V5),
2864 {}
2865};
2866
2867static const struct hda_fixup stac922x_fixups[];
2868
2869/* remap the fixup from codec SSID and apply it */
2870static void stac922x_fixup_intel_mac_auto(struct hda_codec *codec,
2871 const struct hda_fixup *fix,
2872 int action)
2873{
2874 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2875 return;
2876 snd_hda_pick_fixup(codec, NULL, stac922x_intel_mac_fixup_tbl,
2877 stac922x_fixups);
2878 if (codec->fixup_id != STAC_INTEL_MAC_AUTO)
2879 snd_hda_apply_fixup(codec, action);
2880}
2881
2882static void stac922x_fixup_intel_mac_gpio(struct hda_codec *codec,
2883 const struct hda_fixup *fix,
2884 int action)
2885{
2886 struct sigmatel_spec *spec = codec->spec;
2887
2888 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2889 spec->gpio_mask = spec->gpio_dir = 0x03;
2890 spec->gpio_data = 0x03;
2891 }
2892}
2893
2894static const struct hda_fixup stac922x_fixups[] = {
2895 [STAC_D945_REF] = {
2896 .type = HDA_FIXUP_PINS,
2897 .v.pins = ref922x_pin_configs,
2898 },
2899 [STAC_D945GTP3] = {
2900 .type = HDA_FIXUP_PINS,
2901 .v.pins = d945gtp3_pin_configs,
2902 },
2903 [STAC_D945GTP5] = {
2904 .type = HDA_FIXUP_PINS,
2905 .v.pins = d945gtp5_pin_configs,
2906 },
2907 [STAC_INTEL_MAC_AUTO] = {
2908 .type = HDA_FIXUP_FUNC,
2909 .v.func = stac922x_fixup_intel_mac_auto,
2910 },
2911 [STAC_INTEL_MAC_V1] = {
2912 .type = HDA_FIXUP_PINS,
2913 .v.pins = intel_mac_v1_pin_configs,
2914 .chained = true,
2915 .chain_id = STAC_922X_INTEL_MAC_GPIO,
2916 },
2917 [STAC_INTEL_MAC_V2] = {
2918 .type = HDA_FIXUP_PINS,
2919 .v.pins = intel_mac_v2_pin_configs,
2920 .chained = true,
2921 .chain_id = STAC_922X_INTEL_MAC_GPIO,
2922 },
2923 [STAC_INTEL_MAC_V3] = {
2924 .type = HDA_FIXUP_PINS,
2925 .v.pins = intel_mac_v3_pin_configs,
2926 .chained = true,
2927 .chain_id = STAC_922X_INTEL_MAC_GPIO,
2928 },
2929 [STAC_INTEL_MAC_V4] = {
2930 .type = HDA_FIXUP_PINS,
2931 .v.pins = intel_mac_v4_pin_configs,
2932 .chained = true,
2933 .chain_id = STAC_922X_INTEL_MAC_GPIO,
2934 },
2935 [STAC_INTEL_MAC_V5] = {
2936 .type = HDA_FIXUP_PINS,
2937 .v.pins = intel_mac_v5_pin_configs,
2938 .chained = true,
2939 .chain_id = STAC_922X_INTEL_MAC_GPIO,
2940 },
2941 [STAC_922X_INTEL_MAC_GPIO] = {
2942 .type = HDA_FIXUP_FUNC,
2943 .v.func = stac922x_fixup_intel_mac_gpio,
2944 },
2945 [STAC_ECS_202] = {
2946 .type = HDA_FIXUP_PINS,
2947 .v.pins = ecs202_pin_configs,
2948 },
2949 [STAC_922X_DELL_D81] = {
2950 .type = HDA_FIXUP_PINS,
2951 .v.pins = dell_922x_d81_pin_configs,
2952 },
2953 [STAC_922X_DELL_D82] = {
2954 .type = HDA_FIXUP_PINS,
2955 .v.pins = dell_922x_d82_pin_configs,
2956 },
2957 [STAC_922X_DELL_M81] = {
2958 .type = HDA_FIXUP_PINS,
2959 .v.pins = dell_922x_m81_pin_configs,
2960 },
2961 [STAC_922X_DELL_M82] = {
2962 .type = HDA_FIXUP_PINS,
2963 .v.pins = dell_922x_m82_pin_configs,
2964 },
2965};
2966
2967static const struct hda_model_fixup stac922x_models[] = {
2968 { .id = STAC_D945_REF, .name = "ref" },
2969 { .id = STAC_D945GTP5, .name = "5stack" },
2970 { .id = STAC_D945GTP3, .name = "3stack" },
2971 { .id = STAC_INTEL_MAC_V1, .name = "intel-mac-v1" },
2972 { .id = STAC_INTEL_MAC_V2, .name = "intel-mac-v2" },
2973 { .id = STAC_INTEL_MAC_V3, .name = "intel-mac-v3" },
2974 { .id = STAC_INTEL_MAC_V4, .name = "intel-mac-v4" },
2975 { .id = STAC_INTEL_MAC_V5, .name = "intel-mac-v5" },
2976 { .id = STAC_INTEL_MAC_AUTO, .name = "intel-mac-auto" },
2977 { .id = STAC_ECS_202, .name = "ecs202" },
2978 { .id = STAC_922X_DELL_D81, .name = "dell-d81" },
2979 { .id = STAC_922X_DELL_D82, .name = "dell-d82" },
2980 { .id = STAC_922X_DELL_M81, .name = "dell-m81" },
2981 { .id = STAC_922X_DELL_M82, .name = "dell-m82" },
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002982 /* for backward compatibility */
Takashi Iwai0a42784642013-01-14 15:20:13 +01002983 { .id = STAC_INTEL_MAC_V3, .name = "macmini" },
2984 { .id = STAC_INTEL_MAC_V5, .name = "macbook" },
2985 { .id = STAC_INTEL_MAC_V3, .name = "macbook-pro-v1" },
2986 { .id = STAC_INTEL_MAC_V3, .name = "macbook-pro" },
2987 { .id = STAC_INTEL_MAC_V2, .name = "imac-intel" },
2988 { .id = STAC_INTEL_MAC_V3, .name = "imac-intel-20" },
2989 {}
Matt Porter403d1942005-11-29 15:00:51 +01002990};
2991
Takashi Iwai0a42784642013-01-14 15:20:13 +01002992static const struct snd_pci_quirk stac922x_fixup_tbl[] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002993 /* SigmaTel reference board */
2994 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2995 "DFI LanParty", STAC_D945_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002996 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2997 "DFI LanParty", STAC_D945_REF),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002998 /* Intel 945G based systems */
2999 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101,
3000 "Intel D945G", STAC_D945GTP3),
3001 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202,
3002 "Intel D945G", STAC_D945GTP3),
3003 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606,
3004 "Intel D945G", STAC_D945GTP3),
3005 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601,
3006 "Intel D945G", STAC_D945GTP3),
3007 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111,
3008 "Intel D945G", STAC_D945GTP3),
3009 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115,
3010 "Intel D945G", STAC_D945GTP3),
3011 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116,
3012 "Intel D945G", STAC_D945GTP3),
3013 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117,
3014 "Intel D945G", STAC_D945GTP3),
3015 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118,
3016 "Intel D945G", STAC_D945GTP3),
3017 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119,
3018 "Intel D945G", STAC_D945GTP3),
3019 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826,
3020 "Intel D945G", STAC_D945GTP3),
3021 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049,
3022 "Intel D945G", STAC_D945GTP3),
3023 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055,
3024 "Intel D945G", STAC_D945GTP3),
3025 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048,
3026 "Intel D945G", STAC_D945GTP3),
3027 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110,
3028 "Intel D945G", STAC_D945GTP3),
3029 /* Intel D945G 5-stack systems */
3030 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404,
3031 "Intel D945G", STAC_D945GTP5),
3032 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303,
3033 "Intel D945G", STAC_D945GTP5),
3034 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013,
3035 "Intel D945G", STAC_D945GTP5),
3036 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417,
3037 "Intel D945G", STAC_D945GTP5),
3038 /* Intel 945P based systems */
3039 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b,
3040 "Intel D945P", STAC_D945GTP3),
3041 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112,
3042 "Intel D945P", STAC_D945GTP3),
3043 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d,
3044 "Intel D945P", STAC_D945GTP3),
3045 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909,
3046 "Intel D945P", STAC_D945GTP3),
3047 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505,
3048 "Intel D945P", STAC_D945GTP3),
3049 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707,
3050 "Intel D945P", STAC_D945GTP5),
Takashi Iwai8056d472009-01-23 09:09:43 +01003051 /* other intel */
3052 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0204,
3053 "Intel D945", STAC_D945_REF),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003054 /* other systems */
Takashi Iwai0a42784642013-01-14 15:20:13 +01003055
Nicolas Boichat536319a2008-07-21 22:18:01 +08003056 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
Takashi Iwai0a42784642013-01-14 15:20:13 +01003057 SND_PCI_QUIRK(0x8384, 0x7680, "Mac", STAC_INTEL_MAC_AUTO),
3058
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003059 /* Dell systems */
3060 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7,
3061 "unknown Dell", STAC_922X_DELL_D81),
3062 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9,
3063 "unknown Dell", STAC_922X_DELL_D81),
3064 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab,
3065 "unknown Dell", STAC_922X_DELL_D81),
3066 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac,
3067 "unknown Dell", STAC_922X_DELL_D82),
3068 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf,
3069 "unknown Dell", STAC_922X_DELL_M81),
3070 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0,
3071 "unknown Dell", STAC_922X_DELL_D82),
3072 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1,
3073 "unknown Dell", STAC_922X_DELL_D81),
3074 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2,
3075 "unknown Dell", STAC_922X_DELL_D81),
3076 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
3077 "Dell XPS M1210", STAC_922X_DELL_M82),
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03003078 /* ECS/PC Chips boards */
Takashi Iwaidea0a502009-02-09 17:14:52 +01003079 SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000,
Herton Ronaldo Krzesinski8663ae52009-02-08 19:50:34 -02003080 "ECS/PC chips", STAC_ECS_202),
Matt Porter403d1942005-11-29 15:00:51 +01003081 {} /* terminator */
3082};
3083
Takashi Iwai29ac8362013-01-14 16:03:38 +01003084static const struct hda_pintbl ref927x_pin_configs[] = {
3085 { 0x0a, 0x02214020 },
3086 { 0x0b, 0x02a19080 },
3087 { 0x0c, 0x0181304e },
3088 { 0x0d, 0x01014010 },
3089 { 0x0e, 0x01a19040 },
3090 { 0x0f, 0x01011012 },
3091 { 0x10, 0x01016011 },
3092 { 0x11, 0x0101201f },
3093 { 0x12, 0x183301f0 },
3094 { 0x13, 0x18a001f0 },
3095 { 0x14, 0x18a001f0 },
3096 { 0x21, 0x01442070 },
3097 { 0x22, 0x01c42190 },
3098 { 0x23, 0x40000100 },
3099 {}
Matt Porter3cc08dc2006-01-23 15:27:49 +01003100};
3101
Takashi Iwai29ac8362013-01-14 16:03:38 +01003102static const struct hda_pintbl d965_3st_pin_configs[] = {
3103 { 0x0a, 0x0221401f },
3104 { 0x0b, 0x02a19120 },
3105 { 0x0c, 0x40000100 },
3106 { 0x0d, 0x01014011 },
3107 { 0x0e, 0x01a19021 },
3108 { 0x0f, 0x01813024 },
3109 { 0x10, 0x40000100 },
3110 { 0x11, 0x40000100 },
3111 { 0x12, 0x40000100 },
3112 { 0x13, 0x40000100 },
3113 { 0x14, 0x40000100 },
3114 { 0x21, 0x40000100 },
3115 { 0x22, 0x40000100 },
3116 { 0x23, 0x40000100 },
3117 {}
Tobin Davis81d3dbd2006-08-22 19:44:45 +02003118};
3119
Takashi Iwai29ac8362013-01-14 16:03:38 +01003120static const struct hda_pintbl d965_5st_pin_configs[] = {
3121 { 0x0a, 0x02214020 },
3122 { 0x0b, 0x02a19080 },
3123 { 0x0c, 0x0181304e },
3124 { 0x0d, 0x01014010 },
3125 { 0x0e, 0x01a19040 },
3126 { 0x0f, 0x01011012 },
3127 { 0x10, 0x01016011 },
3128 { 0x11, 0x40000100 },
3129 { 0x12, 0x40000100 },
3130 { 0x13, 0x40000100 },
3131 { 0x14, 0x40000100 },
3132 { 0x21, 0x01442070 },
3133 { 0x22, 0x40000100 },
3134 { 0x23, 0x40000100 },
3135 {}
Tobin Davis93ed1502006-09-01 21:03:12 +02003136};
3137
Takashi Iwai29ac8362013-01-14 16:03:38 +01003138static const struct hda_pintbl d965_5st_no_fp_pin_configs[] = {
3139 { 0x0a, 0x40000100 },
3140 { 0x0b, 0x40000100 },
3141 { 0x0c, 0x0181304e },
3142 { 0x0d, 0x01014010 },
3143 { 0x0e, 0x01a19040 },
3144 { 0x0f, 0x01011012 },
3145 { 0x10, 0x01016011 },
3146 { 0x11, 0x40000100 },
3147 { 0x12, 0x40000100 },
3148 { 0x13, 0x40000100 },
3149 { 0x14, 0x40000100 },
3150 { 0x21, 0x01442070 },
3151 { 0x22, 0x40000100 },
3152 { 0x23, 0x40000100 },
3153 {}
Takashi Iwai679d92e2009-05-24 19:00:08 +02003154};
3155
Takashi Iwai29ac8362013-01-14 16:03:38 +01003156static const struct hda_pintbl dell_3st_pin_configs[] = {
3157 { 0x0a, 0x02211230 },
3158 { 0x0b, 0x02a11220 },
3159 { 0x0c, 0x01a19040 },
3160 { 0x0d, 0x01114210 },
3161 { 0x0e, 0x01111212 },
3162 { 0x0f, 0x01116211 },
3163 { 0x10, 0x01813050 },
3164 { 0x11, 0x01112214 },
3165 { 0x12, 0x403003fa },
3166 { 0x13, 0x90a60040 },
3167 { 0x14, 0x90a60040 },
3168 { 0x21, 0x404003fb },
3169 { 0x22, 0x40c003fc },
3170 { 0x23, 0x40000100 },
3171 {}
Tobin Davis4ff076e2007-08-07 11:48:12 +02003172};
3173
Takashi Iwai29ac8362013-01-14 16:03:38 +01003174static void stac927x_fixup_ref_no_jd(struct hda_codec *codec,
3175 const struct hda_fixup *fix, int action)
3176{
Takashi Iwai29ac8362013-01-14 16:03:38 +01003177 /* no jack detecion for ref-no-jd model */
Takashi Iwai36c9db72013-01-17 17:07:59 +01003178 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3179 codec->no_jack_detect = 1;
Takashi Iwai29ac8362013-01-14 16:03:38 +01003180}
3181
3182static void stac927x_fixup_ref(struct hda_codec *codec,
3183 const struct hda_fixup *fix, int action)
3184{
3185 struct sigmatel_spec *spec = codec->spec;
3186
3187 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3188 snd_hda_apply_pincfgs(codec, ref927x_pin_configs);
3189 spec->eapd_mask = spec->gpio_mask = 0;
3190 spec->gpio_dir = spec->gpio_data = 0;
3191 }
3192}
3193
3194static void stac927x_fixup_dell_dmic(struct hda_codec *codec,
3195 const struct hda_fixup *fix, int action)
3196{
3197 struct sigmatel_spec *spec = codec->spec;
3198
3199 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3200 return;
3201
3202 if (codec->subsystem_id != 0x1028022f) {
3203 /* GPIO2 High = Enable EAPD */
3204 spec->eapd_mask = spec->gpio_mask = 0x04;
3205 spec->gpio_dir = spec->gpio_data = 0x04;
3206 }
Takashi Iwai29ac8362013-01-14 16:03:38 +01003207
3208 snd_hda_add_verbs(codec, dell_3st_core_init);
3209 spec->volknob_init = 1;
Takashi Iwai29ac8362013-01-14 16:03:38 +01003210}
3211
3212static void stac927x_fixup_volknob(struct hda_codec *codec,
3213 const struct hda_fixup *fix, int action)
3214{
3215 struct sigmatel_spec *spec = codec->spec;
3216
3217 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3218 snd_hda_add_verbs(codec, stac927x_volknob_core_init);
3219 spec->volknob_init = 1;
3220 }
3221}
3222
3223static const struct hda_fixup stac927x_fixups[] = {
3224 [STAC_D965_REF_NO_JD] = {
3225 .type = HDA_FIXUP_FUNC,
3226 .v.func = stac927x_fixup_ref_no_jd,
3227 .chained = true,
3228 .chain_id = STAC_D965_REF,
3229 },
3230 [STAC_D965_REF] = {
3231 .type = HDA_FIXUP_FUNC,
3232 .v.func = stac927x_fixup_ref,
3233 },
3234 [STAC_D965_3ST] = {
3235 .type = HDA_FIXUP_PINS,
3236 .v.pins = d965_3st_pin_configs,
3237 .chained = true,
3238 .chain_id = STAC_D965_VERBS,
3239 },
3240 [STAC_D965_5ST] = {
3241 .type = HDA_FIXUP_PINS,
3242 .v.pins = d965_5st_pin_configs,
3243 .chained = true,
3244 .chain_id = STAC_D965_VERBS,
3245 },
3246 [STAC_D965_VERBS] = {
3247 .type = HDA_FIXUP_VERBS,
3248 .v.verbs = d965_core_init,
3249 },
3250 [STAC_D965_5ST_NO_FP] = {
3251 .type = HDA_FIXUP_PINS,
3252 .v.pins = d965_5st_no_fp_pin_configs,
3253 },
3254 [STAC_DELL_3ST] = {
3255 .type = HDA_FIXUP_PINS,
3256 .v.pins = dell_3st_pin_configs,
3257 .chained = true,
3258 .chain_id = STAC_927X_DELL_DMIC,
3259 },
3260 [STAC_DELL_BIOS] = {
3261 .type = HDA_FIXUP_PINS,
3262 .v.pins = (const struct hda_pintbl[]) {
3263 /* configure the analog microphone on some laptops */
3264 { 0x0c, 0x90a79130 },
3265 /* correct the front output jack as a hp out */
Takashi Iwai0d9230a2013-07-19 08:02:25 +02003266 { 0x0f, 0x0221101f },
Takashi Iwai29ac8362013-01-14 16:03:38 +01003267 /* correct the front input jack as a mic */
3268 { 0x0e, 0x02a79130 },
3269 {}
3270 },
3271 .chained = true,
3272 .chain_id = STAC_927X_DELL_DMIC,
3273 },
3274 [STAC_DELL_BIOS_SPDIF] = {
3275 .type = HDA_FIXUP_PINS,
3276 .v.pins = (const struct hda_pintbl[]) {
3277 /* correct the device field to SPDIF out */
3278 { 0x21, 0x01442070 },
3279 {}
3280 },
3281 .chained = true,
3282 .chain_id = STAC_DELL_BIOS,
3283 },
3284 [STAC_927X_DELL_DMIC] = {
3285 .type = HDA_FIXUP_FUNC,
3286 .v.func = stac927x_fixup_dell_dmic,
3287 },
3288 [STAC_927X_VOLKNOB] = {
3289 .type = HDA_FIXUP_FUNC,
3290 .v.func = stac927x_fixup_volknob,
3291 },
Matt Porter3cc08dc2006-01-23 15:27:49 +01003292};
3293
Takashi Iwai29ac8362013-01-14 16:03:38 +01003294static const struct hda_model_fixup stac927x_models[] = {
3295 { .id = STAC_D965_REF_NO_JD, .name = "ref-no-jd" },
3296 { .id = STAC_D965_REF, .name = "ref" },
3297 { .id = STAC_D965_3ST, .name = "3stack" },
3298 { .id = STAC_D965_5ST, .name = "5stack" },
3299 { .id = STAC_D965_5ST_NO_FP, .name = "5stack-no-fp" },
3300 { .id = STAC_DELL_3ST, .name = "dell-3stack" },
3301 { .id = STAC_DELL_BIOS, .name = "dell-bios" },
3302 { .id = STAC_927X_VOLKNOB, .name = "volknob" },
3303 {}
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003304};
3305
Takashi Iwai29ac8362013-01-14 16:03:38 +01003306static const struct snd_pci_quirk stac927x_fixup_tbl[] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003307 /* SigmaTel reference board */
3308 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
3309 "DFI LanParty", STAC_D965_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05003310 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
3311 "DFI LanParty", STAC_D965_REF),
Tobin Davis81d3dbd2006-08-22 19:44:45 +02003312 /* Intel 946 based systems */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003313 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST),
3314 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST),
Tobin Davis93ed1502006-09-01 21:03:12 +02003315 /* 965 based 3 stack systems */
Takashi Iwaidea0a502009-02-09 17:14:52 +01003316 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2100,
3317 "Intel D965", STAC_D965_3ST),
3318 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2000,
3319 "Intel D965", STAC_D965_3ST),
Tobin Davis4ff076e2007-08-07 11:48:12 +02003320 /* Dell 3 stack systems */
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003321 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST),
Tobin Davis4ff076e2007-08-07 11:48:12 +02003322 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST),
3323 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01003324 /* Dell 3 stack systems with verb table in BIOS */
Matthew Ranostay2f32d902008-01-10 13:06:26 +01003325 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS),
Daniel T Chen66668b62010-05-23 20:47:45 -04003326 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f7, "Dell XPS M1730", STAC_DELL_BIOS),
Matthew Ranostay2f32d902008-01-10 13:06:26 +01003327 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS),
Takashi Iwai29ac8362013-01-14 16:03:38 +01003328 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS_SPDIF),
Chengu Wang84d3dc22009-07-30 19:43:55 +08003329 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_BIOS),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01003330 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS),
3331 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS),
3332 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS),
Takashi Iwai29ac8362013-01-14 16:03:38 +01003333 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS_SPDIF),
Tobin Davis93ed1502006-09-01 21:03:12 +02003334 /* 965 based 5 stack systems */
Takashi Iwaidea0a502009-02-09 17:14:52 +01003335 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2300,
3336 "Intel D965", STAC_D965_5ST),
3337 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2500,
3338 "Intel D965", STAC_D965_5ST),
Takashi Iwai54930532009-10-11 17:38:29 +02003339 /* volume-knob fixes */
3340 SND_PCI_QUIRK_VENDOR(0x10cf, "FSC", STAC_927X_VOLKNOB),
Matt Porter3cc08dc2006-01-23 15:27:49 +01003341 {} /* terminator */
3342};
3343
Takashi Iwaife6322c2013-01-14 14:46:51 +01003344static const struct hda_pintbl ref9205_pin_configs[] = {
3345 { 0x0a, 0x40000100 },
3346 { 0x0b, 0x40000100 },
3347 { 0x0c, 0x01016011 },
3348 { 0x0d, 0x01014010 },
3349 { 0x0e, 0x01813122 },
3350 { 0x0f, 0x01a19021 },
3351 { 0x14, 0x01019020 },
3352 { 0x16, 0x40000100 },
3353 { 0x17, 0x90a000f0 },
3354 { 0x18, 0x90a000f0 },
3355 { 0x21, 0x01441030 },
3356 { 0x22, 0x01c41030 },
3357 {}
Matt Porterf3302a52006-07-31 12:49:34 +02003358};
3359
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003360/*
3361 STAC 9205 pin configs for
3362 102801F1
3363 102801F2
3364 102801FC
3365 102801FD
3366 10280204
3367 1028021F
Matthew Ranostay3fa2ef72008-01-11 11:39:06 +01003368 10280228 (Dell Vostro 1500)
Anisse Astier95e70e82009-12-23 17:28:45 +01003369 10280229 (Dell Vostro 1700)
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003370*/
Takashi Iwaife6322c2013-01-14 14:46:51 +01003371static const struct hda_pintbl dell_9205_m42_pin_configs[] = {
3372 { 0x0a, 0x0321101F },
3373 { 0x0b, 0x03A11020 },
3374 { 0x0c, 0x400003FA },
3375 { 0x0d, 0x90170310 },
3376 { 0x0e, 0x400003FB },
3377 { 0x0f, 0x400003FC },
3378 { 0x14, 0x400003FD },
3379 { 0x16, 0x40F000F9 },
3380 { 0x17, 0x90A60330 },
3381 { 0x18, 0x400003FF },
3382 { 0x21, 0x0144131F },
3383 { 0x22, 0x40C003FE },
3384 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003385};
3386
3387/*
3388 STAC 9205 pin configs for
3389 102801F9
3390 102801FA
3391 102801FE
3392 102801FF (Dell Precision M4300)
3393 10280206
3394 10280200
3395 10280201
3396*/
Takashi Iwaife6322c2013-01-14 14:46:51 +01003397static const struct hda_pintbl dell_9205_m43_pin_configs[] = {
3398 { 0x0a, 0x0321101f },
3399 { 0x0b, 0x03a11020 },
3400 { 0x0c, 0x90a70330 },
3401 { 0x0d, 0x90170310 },
3402 { 0x0e, 0x400000fe },
3403 { 0x0f, 0x400000ff },
3404 { 0x14, 0x400000fd },
3405 { 0x16, 0x40f000f9 },
3406 { 0x17, 0x400000fa },
3407 { 0x18, 0x400000fc },
3408 { 0x21, 0x0144131f },
3409 { 0x22, 0x40c003f8 },
3410 /* Enable SPDIF in/out */
3411 { 0x1f, 0x01441030 },
3412 { 0x20, 0x1c410030 },
3413 {}
Tobin Davisae0a8ed2007-08-13 15:50:29 +02003414};
3415
Takashi Iwaife6322c2013-01-14 14:46:51 +01003416static const struct hda_pintbl dell_9205_m44_pin_configs[] = {
3417 { 0x0a, 0x0421101f },
3418 { 0x0b, 0x04a11020 },
3419 { 0x0c, 0x400003fa },
3420 { 0x0d, 0x90170310 },
3421 { 0x0e, 0x400003fb },
3422 { 0x0f, 0x400003fc },
3423 { 0x14, 0x400003fd },
3424 { 0x16, 0x400003f9 },
3425 { 0x17, 0x90a60330 },
3426 { 0x18, 0x400003ff },
3427 { 0x21, 0x01441340 },
3428 { 0x22, 0x40c003fe },
3429 {}
Tobin Davisae0a8ed2007-08-13 15:50:29 +02003430};
3431
Takashi Iwaife6322c2013-01-14 14:46:51 +01003432static void stac9205_fixup_ref(struct hda_codec *codec,
3433 const struct hda_fixup *fix, int action)
3434{
3435 struct sigmatel_spec *spec = codec->spec;
3436
3437 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3438 snd_hda_apply_pincfgs(codec, ref9205_pin_configs);
3439 /* SPDIF-In enabled */
3440 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0;
3441 }
3442}
3443
Takashi Iwaife6322c2013-01-14 14:46:51 +01003444static void stac9205_fixup_dell_m43(struct hda_codec *codec,
3445 const struct hda_fixup *fix, int action)
3446{
3447 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003448 struct hda_jack_tbl *jack;
Takashi Iwaife6322c2013-01-14 14:46:51 +01003449
3450 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3451 snd_hda_apply_pincfgs(codec, dell_9205_m43_pin_configs);
3452
3453 /* Enable unsol response for GPIO4/Dock HP connection */
Takashi Iwaife6322c2013-01-14 14:46:51 +01003454 snd_hda_codec_write_cache(codec, codec->afg, 0,
3455 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10);
Takashi Iwai36c9db72013-01-17 17:07:59 +01003456 snd_hda_jack_detect_enable_callback(codec, codec->afg,
3457 STAC_VREF_EVENT,
3458 stac_vref_event);
3459 jack = snd_hda_jack_tbl_get(codec, codec->afg);
3460 if (jack)
3461 jack->private_data = 0x01;
Takashi Iwaife6322c2013-01-14 14:46:51 +01003462
3463 spec->gpio_dir = 0x0b;
3464 spec->eapd_mask = 0x01;
3465 spec->gpio_mask = 0x1b;
3466 spec->gpio_mute = 0x10;
3467 /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute,
3468 * GPIO3 Low = DRM
3469 */
3470 spec->gpio_data = 0x01;
3471 }
3472}
3473
3474static void stac9205_fixup_eapd(struct hda_codec *codec,
3475 const struct hda_fixup *fix, int action)
3476{
3477 struct sigmatel_spec *spec = codec->spec;
3478
3479 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3480 spec->eapd_switch = 0;
3481}
3482
3483static const struct hda_fixup stac9205_fixups[] = {
3484 [STAC_9205_REF] = {
3485 .type = HDA_FIXUP_FUNC,
3486 .v.func = stac9205_fixup_ref,
3487 },
3488 [STAC_9205_DELL_M42] = {
3489 .type = HDA_FIXUP_PINS,
3490 .v.pins = dell_9205_m42_pin_configs,
3491 },
3492 [STAC_9205_DELL_M43] = {
3493 .type = HDA_FIXUP_FUNC,
3494 .v.func = stac9205_fixup_dell_m43,
3495 },
3496 [STAC_9205_DELL_M44] = {
3497 .type = HDA_FIXUP_PINS,
3498 .v.pins = dell_9205_m44_pin_configs,
3499 },
3500 [STAC_9205_EAPD] = {
3501 .type = HDA_FIXUP_FUNC,
3502 .v.func = stac9205_fixup_eapd,
3503 },
3504 {}
Matt Porterf3302a52006-07-31 12:49:34 +02003505};
3506
Takashi Iwaife6322c2013-01-14 14:46:51 +01003507static const struct hda_model_fixup stac9205_models[] = {
3508 { .id = STAC_9205_REF, .name = "ref" },
3509 { .id = STAC_9205_DELL_M42, .name = "dell-m42" },
3510 { .id = STAC_9205_DELL_M43, .name = "dell-m43" },
3511 { .id = STAC_9205_DELL_M44, .name = "dell-m44" },
3512 { .id = STAC_9205_EAPD, .name = "eapd" },
3513 {}
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003514};
3515
Takashi Iwaife6322c2013-01-14 14:46:51 +01003516static const struct snd_pci_quirk stac9205_fixup_tbl[] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003517 /* SigmaTel reference board */
3518 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
3519 "DFI LanParty", STAC_9205_REF),
Herton Ronaldo Krzesinski02358fc2009-07-04 01:44:59 -03003520 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xfb30,
3521 "SigmaTel", STAC_9205_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05003522 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
3523 "DFI LanParty", STAC_9205_REF),
Takashi Iwaid9a42682009-01-22 17:40:18 +01003524 /* Dell */
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003525 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1,
3526 "unknown Dell", STAC_9205_DELL_M42),
3527 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2,
3528 "unknown Dell", STAC_9205_DELL_M42),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02003529 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8,
Matthew Ranostayb44ef2f2007-09-18 00:52:38 +02003530 "Dell Precision", STAC_9205_DELL_M43),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02003531 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9,
3532 "Dell Precision", STAC_9205_DELL_M43),
3533 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa,
3534 "Dell Precision", STAC_9205_DELL_M43),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003535 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc,
3536 "unknown Dell", STAC_9205_DELL_M42),
3537 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd,
3538 "unknown Dell", STAC_9205_DELL_M42),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02003539 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe,
3540 "Dell Precision", STAC_9205_DELL_M43),
3541 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003542 "Dell Precision M4300", STAC_9205_DELL_M43),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003543 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204,
3544 "unknown Dell", STAC_9205_DELL_M42),
Takashi Iwai45499152008-06-12 16:27:24 +02003545 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206,
3546 "Dell Precision", STAC_9205_DELL_M43),
3547 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b,
3548 "Dell Precision", STAC_9205_DELL_M43),
3549 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c,
3550 "Dell Precision", STAC_9205_DELL_M43),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02003551 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f,
3552 "Dell Inspiron", STAC_9205_DELL_M44),
Matthew Ranostay3fa2ef72008-01-11 11:39:06 +01003553 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228,
3554 "Dell Vostro 1500", STAC_9205_DELL_M42),
Anisse Astier95e70e82009-12-23 17:28:45 +01003555 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0229,
3556 "Dell Vostro 1700", STAC_9205_DELL_M42),
Takashi Iwaid9a42682009-01-22 17:40:18 +01003557 /* Gateway */
Hao Song42b95f02009-07-20 15:01:16 +08003558 SND_PCI_QUIRK(0x107b, 0x0560, "Gateway T6834c", STAC_9205_EAPD),
Takashi Iwaid9a42682009-01-22 17:40:18 +01003559 SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD),
Matt Porterf3302a52006-07-31 12:49:34 +02003560 {} /* terminator */
3561};
3562
Takashi Iwai36c9db72013-01-17 17:07:59 +01003563static int stac_parse_auto_config(struct hda_codec *codec)
Mattc7d4b2f2005-06-27 14:59:41 +02003564{
3565 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003566 int err;
David Henningssonf390dad2013-03-21 12:16:30 +01003567 int flags = 0;
Mattc7d4b2f2005-06-27 14:59:41 +02003568
David Henningssonf390dad2013-03-21 12:16:30 +01003569 if (spec->headset_jack)
3570 flags |= HDA_PINCFG_HEADSET_MIC;
3571
3572 err = snd_hda_parse_pin_defcfg(codec, &spec->gen.autocfg, NULL, flags);
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003573 if (err < 0)
3574 return err;
3575
Takashi Iwai36c9db72013-01-17 17:07:59 +01003576 /* add hooks */
3577 spec->gen.pcm_playback_hook = stac_playback_pcm_hook;
3578 spec->gen.pcm_capture_hook = stac_capture_pcm_hook;
3579
3580 spec->gen.automute_hook = stac_update_outputs;
3581 spec->gen.hp_automute_hook = stac_hp_automute;
3582 spec->gen.line_automute_hook = stac_line_automute;
David Henningsson664389d2013-01-28 11:29:17 +01003583 spec->gen.mic_autoswitch_hook = stac_mic_autoswitch;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003584
3585 err = snd_hda_gen_parse_auto_config(codec, &spec->gen.autocfg);
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003586 if (err < 0)
3587 return err;
3588
Takashi Iwai36c9db72013-01-17 17:07:59 +01003589 /* minimum value is actually mute */
3590 spec->gen.vmaster_tlv[3] |= TLV_DB_SCALE_MUTE;
Mattc7d4b2f2005-06-27 14:59:41 +02003591
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003592 /* setup analog beep controls */
3593 if (spec->anabeep_nid > 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01003594 err = stac_auto_create_beep_ctls(codec,
3595 spec->anabeep_nid);
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003596 if (err < 0)
3597 return err;
3598 }
3599
3600 /* setup digital beep controls and input device */
3601#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai7504b6c2013-03-18 11:25:51 +01003602 if (spec->gen.beep_nid) {
3603 hda_nid_t nid = spec->gen.beep_nid;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003604 unsigned int caps;
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003605
Takashi Iwai36c9db72013-01-17 17:07:59 +01003606 err = stac_auto_create_beep_ctls(codec, nid);
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003607 if (err < 0)
3608 return err;
Takashi Iwaid8d881d2009-12-22 07:52:49 +01003609 if (codec->beep) {
3610 /* IDT/STAC codecs have linear beep tone parameter */
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01003611 codec->beep->linear_tone = spec->linear_tone_beep;
Takashi Iwaid8d881d2009-12-22 07:52:49 +01003612 /* if no beep switch is available, make its own one */
3613 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3614 if (!(caps & AC_AMPCAP_MUTE)) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01003615 err = stac_beep_switch_ctl(codec);
Takashi Iwaid8d881d2009-12-22 07:52:49 +01003616 if (err < 0)
3617 return err;
3618 }
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003619 }
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003620 }
3621#endif
3622
Takashi Iwai36c9db72013-01-17 17:07:59 +01003623 if (spec->gpio_led)
3624 spec->gen.vmaster_mute.hook = stac_vmaster_hook;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003625
Takashi Iwai36c9db72013-01-17 17:07:59 +01003626 if (spec->aloopback_ctl &&
3627 snd_hda_get_bool_hint(codec, "loopback") == 1) {
3628 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, spec->aloopback_ctl))
3629 return -ENOMEM;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003630 }
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003631
Takashi Iwai42875472013-01-22 09:34:48 +01003632 if (spec->have_spdif_mux) {
3633 err = stac_create_spdif_mux_ctls(codec);
3634 if (err < 0)
3635 return err;
3636 }
3637
Takashi Iwai36c9db72013-01-17 17:07:59 +01003638 stac_init_power_map(codec);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003639
3640 return 0;
3641}
3642
Takashi Iwai36c9db72013-01-17 17:07:59 +01003643
3644static int stac_init(struct hda_codec *codec)
Richard Fish160ea0d2006-09-06 13:58:25 +02003645{
3646 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaie4973e12008-11-18 09:32:42 +01003647 int i;
Mattc7d4b2f2005-06-27 14:59:41 +02003648
Takashi Iwai6565e4f2009-03-02 14:38:35 +01003649 /* override some hints */
3650 stac_store_hints(codec);
3651
Takashi Iwaif73d3582008-11-25 08:21:51 +01003652 /* set up GPIO */
Takashi Iwaif73d3582008-11-25 08:21:51 +01003653 /* turn on EAPD statically when spec->eapd_switch isn't set.
3654 * otherwise, unsol event will turn it on/off dynamically
3655 */
3656 if (!spec->eapd_switch)
Takashi Iwai9c563a52013-07-19 07:58:02 +02003657 spec->gpio_data |= spec->eapd_mask;
3658 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, spec->gpio_data);
Takashi Iwaif73d3582008-11-25 08:21:51 +01003659
Takashi Iwai36c9db72013-01-17 17:07:59 +01003660 snd_hda_gen_init(codec);
Takashi Iwaic8822462012-05-15 09:11:36 +02003661
3662 /* sync the power-map */
3663 if (spec->num_pwrs)
3664 snd_hda_codec_write(codec, codec->afg, 0,
3665 AC_VERB_IDT_SET_POWER_MAP,
3666 spec->power_map_bits);
Takashi Iwai36c9db72013-01-17 17:07:59 +01003667
3668 /* power down inactive ADCs */
3669 if (spec->powerdown_adcs) {
3670 for (i = 0; i < spec->gen.num_all_adcs; i++) {
3671 if (spec->active_adcs & (1 << i))
3672 continue;
3673 snd_hda_codec_write(codec, spec->gen.all_adcs[i], 0,
3674 AC_VERB_SET_POWER_STATE,
3675 AC_PWRST_D3);
3676 }
3677 }
3678
Mattc7d4b2f2005-06-27 14:59:41 +02003679 return 0;
3680}
3681
Takashi Iwai36c9db72013-01-17 17:07:59 +01003682static void stac_shutup(struct hda_codec *codec)
Takashi Iwai603c4012008-07-30 15:01:44 +02003683{
3684 struct sigmatel_spec *spec = codec->spec;
3685
Takashi Iwai36c9db72013-01-17 17:07:59 +01003686 snd_hda_shutup_pins(codec);
Takashi Iwai167eae52009-11-06 15:47:50 +01003687
3688 if (spec->eapd_mask)
3689 stac_gpio_set(codec, spec->gpio_mask,
3690 spec->gpio_dir, spec->gpio_data &
3691 ~spec->eapd_mask);
3692}
3693
Takashi Iwai7504b6c2013-03-18 11:25:51 +01003694#define stac_free snd_hda_gen_free
Matt2f2f4252005-04-13 14:45:30 +02003695
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01003696#ifdef CONFIG_PROC_FS
3697static void stac92hd_proc_hook(struct snd_info_buffer *buffer,
3698 struct hda_codec *codec, hda_nid_t nid)
3699{
3700 if (nid == codec->afg)
3701 snd_iprintf(buffer, "Power-Map: 0x%02x\n",
Takashi Iwaic8822462012-05-15 09:11:36 +02003702 snd_hda_codec_read(codec, nid, 0,
3703 AC_VERB_IDT_GET_POWER_MAP, 0));
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01003704}
3705
3706static void analog_loop_proc_hook(struct snd_info_buffer *buffer,
3707 struct hda_codec *codec,
3708 unsigned int verb)
3709{
3710 snd_iprintf(buffer, "Analog Loopback: 0x%02x\n",
3711 snd_hda_codec_read(codec, codec->afg, 0, verb, 0));
3712}
3713
3714/* stac92hd71bxx, stac92hd73xx */
3715static void stac92hd7x_proc_hook(struct snd_info_buffer *buffer,
3716 struct hda_codec *codec, hda_nid_t nid)
3717{
3718 stac92hd_proc_hook(buffer, codec, nid);
3719 if (nid == codec->afg)
3720 analog_loop_proc_hook(buffer, codec, 0xfa0);
3721}
3722
3723static void stac9205_proc_hook(struct snd_info_buffer *buffer,
3724 struct hda_codec *codec, hda_nid_t nid)
3725{
3726 if (nid == codec->afg)
3727 analog_loop_proc_hook(buffer, codec, 0xfe0);
3728}
3729
3730static void stac927x_proc_hook(struct snd_info_buffer *buffer,
3731 struct hda_codec *codec, hda_nid_t nid)
3732{
3733 if (nid == codec->afg)
3734 analog_loop_proc_hook(buffer, codec, 0xfeb);
3735}
3736#else
3737#define stac92hd_proc_hook NULL
3738#define stac92hd7x_proc_hook NULL
3739#define stac9205_proc_hook NULL
3740#define stac927x_proc_hook NULL
3741#endif
3742
Takashi Iwai2a439522011-07-26 09:52:50 +02003743#ifdef CONFIG_PM
Takashi Iwai36c9db72013-01-17 17:07:59 +01003744static int stac_resume(struct hda_codec *codec)
Mattff6fdc32005-06-27 15:06:52 +02003745{
Takashi Iwai36c9db72013-01-17 17:07:59 +01003746 codec->patch_ops.init(codec);
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003747 snd_hda_codec_resume_amp(codec);
3748 snd_hda_codec_resume_cache(codec);
Mattff6fdc32005-06-27 15:06:52 +02003749 return 0;
3750}
Matthew Ranostayc6798d22008-11-18 20:54:17 -05003751
Takashi Iwai36c9db72013-01-17 17:07:59 +01003752static int stac_suspend(struct hda_codec *codec)
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003753{
Takashi Iwai36c9db72013-01-17 17:07:59 +01003754 stac_shutup(codec);
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003755 return 0;
3756}
3757
Takashi Iwai36c9db72013-01-17 17:07:59 +01003758static void stac_set_power_state(struct hda_codec *codec, hda_nid_t fg,
3759 unsigned int power_state)
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003760{
3761 unsigned int afg_power_state = power_state;
3762 struct sigmatel_spec *spec = codec->spec;
3763
3764 if (power_state == AC_PWRST_D3) {
Takashi Iwaif1a73742011-12-04 13:44:06 +01003765 if (spec->vref_mute_led_nid) {
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003766 /* with vref-out pin used for mute led control
3767 * codec AFG is prevented from D3 state
3768 */
3769 afg_power_state = AC_PWRST_D1;
3770 }
3771 /* this delay seems necessary to avoid click noise at power-down */
3772 msleep(100);
3773 }
3774 snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE,
3775 afg_power_state);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003776 snd_hda_codec_set_power_to_all(codec, fg, power_state);
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003777}
Takashi Iwai350eba432012-03-16 16:09:03 +01003778#else
Takashi Iwai36c9db72013-01-17 17:07:59 +01003779#define stac_suspend NULL
3780#define stac_resume NULL
3781#define stac_set_power_state NULL
Takashi Iwai2faa3bf2012-03-12 12:30:22 +01003782#endif /* CONFIG_PM */
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003783
Takashi Iwai36c9db72013-01-17 17:07:59 +01003784static const struct hda_codec_ops stac_patch_ops = {
3785 .build_controls = snd_hda_gen_build_controls,
3786 .build_pcms = snd_hda_gen_build_pcms,
3787 .init = stac_init,
3788 .free = stac_free,
David Henningsson29adc4b2012-09-25 11:31:00 +02003789 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwai2a439522011-07-26 09:52:50 +02003790#ifdef CONFIG_PM
Takashi Iwai36c9db72013-01-17 17:07:59 +01003791 .suspend = stac_suspend,
3792 .resume = stac_resume,
Mattff6fdc32005-06-27 15:06:52 +02003793#endif
Takashi Iwai36c9db72013-01-17 17:07:59 +01003794 .reboot_notify = stac_shutup,
Matt2f2f4252005-04-13 14:45:30 +02003795};
3796
Takashi Iwai36c9db72013-01-17 17:07:59 +01003797static int alloc_stac_spec(struct hda_codec *codec)
Takashi Iwai361dab32012-05-09 14:35:27 +02003798{
3799 struct sigmatel_spec *spec;
3800
3801 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3802 if (!spec)
3803 return -ENOMEM;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003804 snd_hda_gen_spec_init(&spec->gen);
Takashi Iwai361dab32012-05-09 14:35:27 +02003805 codec->spec = spec;
3806 codec->no_trigger_sense = 1; /* seems common with STAC/IDT codecs */
Takashi Iwai361dab32012-05-09 14:35:27 +02003807 return 0;
3808}
3809
Matt2f2f4252005-04-13 14:45:30 +02003810static int patch_stac9200(struct hda_codec *codec)
3811{
3812 struct sigmatel_spec *spec;
Mattc7d4b2f2005-06-27 14:59:41 +02003813 int err;
Matt2f2f4252005-04-13 14:45:30 +02003814
Takashi Iwai36c9db72013-01-17 17:07:59 +01003815 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02003816 if (err < 0)
3817 return err;
Matt2f2f4252005-04-13 14:45:30 +02003818
Takashi Iwai361dab32012-05-09 14:35:27 +02003819 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01003820 spec->linear_tone_beep = 1;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003821 spec->gen.own_eapd_ctl = 1;
3822
3823 codec->patch_ops = stac_patch_ops;
Takashi Iwaiba615b82013-03-13 14:47:21 +01003824 codec->power_filter = snd_hda_codec_eapd_power_filter;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003825
3826 snd_hda_add_verbs(codec, stac9200_eapd_init);
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01003827
3828 snd_hda_pick_fixup(codec, stac9200_models, stac9200_fixup_tbl,
3829 stac9200_fixups);
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01003830 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai117f2572008-03-18 09:53:23 +01003831
Takashi Iwai36c9db72013-01-17 17:07:59 +01003832 err = stac_parse_auto_config(codec);
Mattc7d4b2f2005-06-27 14:59:41 +02003833 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01003834 stac_free(codec);
Mattc7d4b2f2005-06-27 14:59:41 +02003835 return err;
3836 }
Matt2f2f4252005-04-13 14:45:30 +02003837
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01003838 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3839
Matt2f2f4252005-04-13 14:45:30 +02003840 return 0;
3841}
3842
Tobin Davis8e21c342007-01-08 11:04:17 +01003843static int patch_stac925x(struct hda_codec *codec)
3844{
3845 struct sigmatel_spec *spec;
3846 int err;
3847
Takashi Iwai36c9db72013-01-17 17:07:59 +01003848 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02003849 if (err < 0)
3850 return err;
Tobin Davis8e21c342007-01-08 11:04:17 +01003851
Takashi Iwai361dab32012-05-09 14:35:27 +02003852 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01003853 spec->linear_tone_beep = 1;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003854 spec->gen.own_eapd_ctl = 1;
3855
3856 codec->patch_ops = stac_patch_ops;
3857
3858 snd_hda_add_verbs(codec, stac925x_core_init);
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02003859
Takashi Iwaid2077d42013-01-14 14:20:16 +01003860 snd_hda_pick_fixup(codec, stac925x_models, stac925x_fixup_tbl,
3861 stac925x_fixups);
Takashi Iwaid2077d42013-01-14 14:20:16 +01003862 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3863
Takashi Iwai36c9db72013-01-17 17:07:59 +01003864 err = stac_parse_auto_config(codec);
Tobin Davis8e21c342007-01-08 11:04:17 +01003865 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01003866 stac_free(codec);
Tobin Davis8e21c342007-01-08 11:04:17 +01003867 return err;
3868 }
3869
Takashi Iwaid2077d42013-01-14 14:20:16 +01003870 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3871
Tobin Davis8e21c342007-01-08 11:04:17 +01003872 return 0;
3873}
3874
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003875static int patch_stac92hd73xx(struct hda_codec *codec)
3876{
3877 struct sigmatel_spec *spec;
Takashi Iwai361dab32012-05-09 14:35:27 +02003878 int err;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003879 int num_dacs;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003880
Takashi Iwai36c9db72013-01-17 17:07:59 +01003881 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02003882 if (err < 0)
3883 return err;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003884
Takashi Iwai361dab32012-05-09 14:35:27 +02003885 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01003886 spec->linear_tone_beep = 0;
Takashi Iwai27487462013-01-21 16:25:18 +01003887 spec->gen.mixer_nid = 0x1d;
Takashi Iwai42875472013-01-22 09:34:48 +01003888 spec->have_spdif_mux = 1;
Takashi Iwai55e30142013-01-14 17:30:04 +01003889
Takashi Iwai36c9db72013-01-17 17:07:59 +01003890 num_dacs = snd_hda_get_num_conns(codec, 0x0a) - 1;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003891 if (num_dacs < 3 || num_dacs > 5) {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003892 printk(KERN_WARNING "hda_codec: Could not determine "
3893 "number of channels defaulting to DAC count\n");
Takashi Iwai36c9db72013-01-17 17:07:59 +01003894 num_dacs = 5;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003895 }
Takashi Iwai55e30142013-01-14 17:30:04 +01003896
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003897 switch (num_dacs) {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003898 case 0x3: /* 6 Channel */
Takashi Iwai36c9db72013-01-17 17:07:59 +01003899 spec->aloopback_ctl = &stac92hd73xx_6ch_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003900 break;
3901 case 0x4: /* 8 Channel */
Takashi Iwai36c9db72013-01-17 17:07:59 +01003902 spec->aloopback_ctl = &stac92hd73xx_8ch_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003903 break;
3904 case 0x5: /* 10 Channel */
Takashi Iwai36c9db72013-01-17 17:07:59 +01003905 spec->aloopback_ctl = &stac92hd73xx_10ch_loopback;
Takashi Iwaid78d7a92009-03-02 14:26:25 +01003906 break;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003907 }
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003908
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003909 spec->aloopback_mask = 0x01;
3910 spec->aloopback_shift = 8;
3911
Takashi Iwai7504b6c2013-03-18 11:25:51 +01003912 spec->gen.beep_nid = 0x1c; /* digital beep */
Takashi Iwai6479c632009-07-28 18:20:25 +02003913
Takashi Iwai55e30142013-01-14 17:30:04 +01003914 /* GPIO0 High = Enable EAPD */
3915 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
3916 spec->gpio_data = 0x01;
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05003917
Takashi Iwai55e30142013-01-14 17:30:04 +01003918 spec->eapd_switch = 1;
Matthew Ranostaya7662642008-02-21 07:51:14 +01003919
Matthew Ranostaya64135a2008-01-10 16:55:06 +01003920 spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids);
3921 spec->pwr_nids = stac92hd73xx_pwr_nids;
3922
Takashi Iwai36c9db72013-01-17 17:07:59 +01003923 spec->gen.own_eapd_ctl = 1;
Takashi Iwaif4f678d2013-01-24 18:02:43 +01003924 spec->gen.power_down_unused = 1;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003925
3926 codec->patch_ops = stac_patch_ops;
3927
3928 snd_hda_pick_fixup(codec, stac92hd73xx_models, stac92hd73xx_fixup_tbl,
3929 stac92hd73xx_fixups);
Takashi Iwai55e30142013-01-14 17:30:04 +01003930 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3931
3932 if (!spec->volknob_init)
3933 snd_hda_add_verbs(codec, stac92hd73xx_core_init);
3934
Takashi Iwai36c9db72013-01-17 17:07:59 +01003935 err = stac_parse_auto_config(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003936 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01003937 stac_free(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003938 return err;
3939 }
3940
David Henningsson303985f2013-03-14 15:28:29 +01003941 /* Don't GPIO-mute speakers if there are no internal speakers, because
3942 * the GPIO might be necessary for Headphone
3943 */
3944 if (spec->eapd_switch && !has_builtin_speaker(codec))
3945 spec->eapd_switch = 0;
3946
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01003947 codec->proc_widget_hook = stac92hd7x_proc_hook;
3948
Takashi Iwai55e30142013-01-14 17:30:04 +01003949 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3950
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003951 return 0;
3952}
3953
Takashi Iwai372f8c72013-01-14 18:06:34 +01003954static void stac_setup_gpio(struct hda_codec *codec)
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003955{
Takashi Iwai372f8c72013-01-14 18:06:34 +01003956 struct sigmatel_spec *spec = codec->spec;
Vitaliy Kulikove108c7b2010-01-28 19:21:07 +01003957
Takashi Iwai9c563a52013-07-19 07:58:02 +02003958 spec->gpio_mask |= spec->eapd_mask;
Takashi Iwaib4e81872009-11-18 17:20:24 +01003959 if (spec->gpio_led) {
Takashi Iwaif1a73742011-12-04 13:44:06 +01003960 if (!spec->vref_mute_led_nid) {
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003961 spec->gpio_mask |= spec->gpio_led;
3962 spec->gpio_dir |= spec->gpio_led;
3963 spec->gpio_data |= spec->gpio_led;
3964 } else {
3965 codec->patch_ops.set_power_state =
Takashi Iwai36c9db72013-01-17 17:07:59 +01003966 stac_set_power_state;
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003967 }
Takashi Iwaib4e81872009-11-18 17:20:24 +01003968 }
Takashi Iwaib4e81872009-11-18 17:20:24 +01003969
Takashi Iwai62cbde12012-09-14 11:58:54 +02003970 if (spec->mic_mute_led_gpio) {
3971 spec->gpio_mask |= spec->mic_mute_led_gpio;
3972 spec->gpio_dir |= spec->mic_mute_led_gpio;
3973 spec->mic_mute_led_on = true;
3974 spec->gpio_data |= spec->mic_mute_led_gpio;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003975
Takashi Iwaia90229e2013-01-18 14:10:00 +01003976 spec->gen.cap_sync_hook = stac_capture_led_hook;
Takashi Iwai62cbde12012-09-14 11:58:54 +02003977 }
Takashi Iwai372f8c72013-01-14 18:06:34 +01003978}
3979
3980static int patch_stac92hd83xxx(struct hda_codec *codec)
3981{
3982 struct sigmatel_spec *spec;
3983 int err;
3984
Takashi Iwai36c9db72013-01-17 17:07:59 +01003985 err = alloc_stac_spec(codec);
Takashi Iwai372f8c72013-01-14 18:06:34 +01003986 if (err < 0)
3987 return err;
3988
3989 codec->epss = 0; /* longer delay needed for D3 */
Takashi Iwai372f8c72013-01-14 18:06:34 +01003990
3991 spec = codec->spec;
3992 spec->linear_tone_beep = 0;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003993 spec->gen.own_eapd_ctl = 1;
Takashi Iwaif4f678d2013-01-24 18:02:43 +01003994 spec->gen.power_down_unused = 1;
Takashi Iwai27487462013-01-21 16:25:18 +01003995 spec->gen.mixer_nid = 0x1b;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003996
Takashi Iwai7504b6c2013-03-18 11:25:51 +01003997 spec->gen.beep_nid = 0x21; /* digital beep */
Takashi Iwai372f8c72013-01-14 18:06:34 +01003998 spec->pwr_nids = stac92hd83xxx_pwr_nids;
3999 spec->num_pwrs = ARRAY_SIZE(stac92hd83xxx_pwr_nids);
Takashi Iwai36c9db72013-01-17 17:07:59 +01004000 spec->default_polarity = -1; /* no default cfg */
4001
4002 codec->patch_ops = stac_patch_ops;
4003
4004 snd_hda_add_verbs(codec, stac92hd83xxx_core_init);
Takashi Iwai372f8c72013-01-14 18:06:34 +01004005
4006 snd_hda_pick_fixup(codec, stac92hd83xxx_models, stac92hd83xxx_fixup_tbl,
4007 stac92hd83xxx_fixups);
Takashi Iwai372f8c72013-01-14 18:06:34 +01004008 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4009
4010 stac_setup_gpio(codec);
Takashi Iwai62cbde12012-09-14 11:58:54 +02004011
Takashi Iwai36c9db72013-01-17 17:07:59 +01004012 err = stac_parse_auto_config(codec);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004013 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01004014 stac_free(codec);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004015 return err;
4016 }
4017
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004018 codec->proc_widget_hook = stac92hd_proc_hook;
4019
Takashi Iwai372f8c72013-01-14 18:06:34 +01004020 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4021
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004022 return 0;
4023}
4024
Vitaliy Kulikov4e637c62013-01-31 17:58:59 -06004025static const hda_nid_t stac92hd95_pwr_nids[] = {
4026 0x0a, 0x0b, 0x0c, 0x0d
4027};
4028
4029static int patch_stac92hd95(struct hda_codec *codec)
4030{
4031 struct sigmatel_spec *spec;
4032 int err;
4033
4034 err = alloc_stac_spec(codec);
4035 if (err < 0)
4036 return err;
4037
4038 codec->epss = 0; /* longer delay needed for D3 */
4039
4040 spec = codec->spec;
4041 spec->linear_tone_beep = 0;
4042 spec->gen.own_eapd_ctl = 1;
4043 spec->gen.power_down_unused = 1;
4044
Takashi Iwai7504b6c2013-03-18 11:25:51 +01004045 spec->gen.beep_nid = 0x19; /* digital beep */
Vitaliy Kulikov4e637c62013-01-31 17:58:59 -06004046 spec->pwr_nids = stac92hd95_pwr_nids;
4047 spec->num_pwrs = ARRAY_SIZE(stac92hd95_pwr_nids);
4048 spec->default_polarity = -1; /* no default cfg */
4049
4050 codec->patch_ops = stac_patch_ops;
4051
4052 err = stac_parse_auto_config(codec);
4053 if (err < 0) {
4054 stac_free(codec);
4055 return err;
4056 }
4057
4058 codec->proc_widget_hook = stac92hd_proc_hook;
4059
4060 return 0;
4061}
4062
Matthew Ranostaye035b842007-11-06 11:53:55 +01004063static int patch_stac92hd71bxx(struct hda_codec *codec)
4064{
4065 struct sigmatel_spec *spec;
Takashi Iwai2b635362011-05-02 12:33:43 +02004066 const struct hda_verb *unmute_init = stac92hd71bxx_unmute_core_init;
Takashi Iwai361dab32012-05-09 14:35:27 +02004067 int err;
Matthew Ranostaye035b842007-11-06 11:53:55 +01004068
Takashi Iwai36c9db72013-01-17 17:07:59 +01004069 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02004070 if (err < 0)
4071 return err;
Matthew Ranostaye035b842007-11-06 11:53:55 +01004072
Takashi Iwai361dab32012-05-09 14:35:27 +02004073 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01004074 spec->linear_tone_beep = 0;
Takashi Iwai36c9db72013-01-17 17:07:59 +01004075 spec->gen.own_eapd_ctl = 1;
Takashi Iwaif4f678d2013-01-24 18:02:43 +01004076 spec->gen.power_down_unused = 1;
Takashi Iwai27487462013-01-21 16:25:18 +01004077 spec->gen.mixer_nid = 0x17;
Takashi Iwai42875472013-01-22 09:34:48 +01004078 spec->have_spdif_mux = 1;
Matthew Ranostaye035b842007-11-06 11:53:55 +01004079
Takashi Iwai36c9db72013-01-17 17:07:59 +01004080 codec->patch_ops = stac_patch_ops;
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01004081
4082 /* GPIO0 = EAPD */
4083 spec->gpio_mask = 0x01;
4084 spec->gpio_dir = 0x01;
4085 spec->gpio_data = 0x01;
Takashi Iwai41c3b642008-11-18 10:45:15 +01004086
Matthew Ranostay541eee82007-12-14 12:08:04 +01004087 switch (codec->vendor_id) {
4088 case 0x111d76b6: /* 4 Port without Analog Mixer */
4089 case 0x111d76b7:
Herton Ronaldo Krzesinski23c7b522009-02-08 19:51:28 -02004090 unmute_init++;
Matthew Ranostay541eee82007-12-14 12:08:04 +01004091 break;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004092 case 0x111d7608: /* 5 Port with Analog Mixer */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004093 if ((codec->revision_id & 0xf) == 0 ||
Takashi Iwai8c2f7672008-12-01 11:54:35 +01004094 (codec->revision_id & 0xf) == 1)
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004095 spec->stream_delay = 40; /* 40 milliseconds */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004096
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004097 /* disable VSW */
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05004098 unmute_init++;
Takashi Iwai330ee992009-02-20 14:33:36 +01004099 snd_hda_codec_set_pincfg(codec, 0x0f, 0x40f000f0);
4100 snd_hda_codec_set_pincfg(codec, 0x19, 0x40f000f3);
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004101 break;
4102 case 0x111d7603: /* 6 Port with Analog Mixer */
Takashi Iwai8c2f7672008-12-01 11:54:35 +01004103 if ((codec->revision_id & 0xf) == 1)
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004104 spec->stream_delay = 40; /* 40 milliseconds */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004105
Takashi Iwai5207e102009-07-30 13:09:08 +02004106 break;
Matthew Ranostay541eee82007-12-14 12:08:04 +01004107 }
4108
David Henningsson5e68fb32012-08-16 14:11:09 +02004109 if (get_wcaps_type(get_wcaps(codec, 0x28)) == AC_WID_VOL_KNB)
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01004110 snd_hda_add_verbs(codec, stac92hd71bxx_core_init);
David Henningsson5e68fb32012-08-16 14:11:09 +02004111
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05004112 if (get_wcaps(codec, 0xa) & AC_WCAP_IN_AMP)
4113 snd_hda_sequence_write_cache(codec, unmute_init);
4114
Takashi Iwai36c9db72013-01-17 17:07:59 +01004115 spec->aloopback_ctl = &stac92hd71bxx_loopback;
Matthew Ranostay4b33c762008-10-10 09:07:23 -04004116 spec->aloopback_mask = 0x50;
Matthew Ranostay541eee82007-12-14 12:08:04 +01004117 spec->aloopback_shift = 0;
4118
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004119 spec->powerdown_adcs = 1;
Takashi Iwai7504b6c2013-03-18 11:25:51 +01004120 spec->gen.beep_nid = 0x26; /* digital beep */
Takashi Iwai36c9db72013-01-17 17:07:59 +01004121 spec->num_pwrs = ARRAY_SIZE(stac92hd71bxx_pwr_nids);
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004122 spec->pwr_nids = stac92hd71bxx_pwr_nids;
Matthew Ranostaye035b842007-11-06 11:53:55 +01004123
Takashi Iwai36c9db72013-01-17 17:07:59 +01004124 snd_hda_pick_fixup(codec, stac92hd71bxx_models, stac92hd71bxx_fixup_tbl,
4125 stac92hd71bxx_fixups);
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01004126 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Vitaliy Kulikov5bdaaad2009-11-04 07:57:45 +01004127
Takashi Iwai372f8c72013-01-14 18:06:34 +01004128 stac_setup_gpio(codec);
Matthew Ranostay6a14f582008-09-12 12:02:30 -04004129
Takashi Iwai36c9db72013-01-17 17:07:59 +01004130 err = stac_parse_auto_config(codec);
Matthew Ranostaye035b842007-11-06 11:53:55 +01004131 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01004132 stac_free(codec);
Matthew Ranostaye035b842007-11-06 11:53:55 +01004133 return err;
4134 }
4135
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004136 codec->proc_widget_hook = stac92hd7x_proc_hook;
4137
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01004138 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4139
Matthew Ranostaye035b842007-11-06 11:53:55 +01004140 return 0;
Takashi Iwai86d190e2009-05-26 15:18:58 +02004141}
Matthew Ranostaye035b842007-11-06 11:53:55 +01004142
Matt2f2f4252005-04-13 14:45:30 +02004143static int patch_stac922x(struct hda_codec *codec)
4144{
4145 struct sigmatel_spec *spec;
Mattc7d4b2f2005-06-27 14:59:41 +02004146 int err;
Matt2f2f4252005-04-13 14:45:30 +02004147
Takashi Iwai36c9db72013-01-17 17:07:59 +01004148 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02004149 if (err < 0)
4150 return err;
Matt2f2f4252005-04-13 14:45:30 +02004151
Takashi Iwai361dab32012-05-09 14:35:27 +02004152 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01004153 spec->linear_tone_beep = 1;
Takashi Iwai36c9db72013-01-17 17:07:59 +01004154 spec->gen.own_eapd_ctl = 1;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02004155
Takashi Iwai36c9db72013-01-17 17:07:59 +01004156 codec->patch_ops = stac_patch_ops;
Matt2f2f4252005-04-13 14:45:30 +02004157
Takashi Iwai0a42784642013-01-14 15:20:13 +01004158 snd_hda_add_verbs(codec, stac922x_core_init);
4159
Takashi Iwai807a46362007-05-29 19:01:37 +02004160 /* Fix Mux capture level; max to 2 */
4161 snd_hda_override_amp_caps(codec, 0x12, HDA_OUTPUT,
4162 (0 << AC_AMPCAP_OFFSET_SHIFT) |
4163 (2 << AC_AMPCAP_NUM_STEPS_SHIFT) |
4164 (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4165 (0 << AC_AMPCAP_MUTE_SHIFT));
4166
Takashi Iwai36c9db72013-01-17 17:07:59 +01004167 snd_hda_pick_fixup(codec, stac922x_models, stac922x_fixup_tbl,
4168 stac922x_fixups);
4169 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4170
4171 err = stac_parse_auto_config(codec);
4172 if (err < 0) {
4173 stac_free(codec);
4174 return err;
4175 }
4176
Takashi Iwai0a42784642013-01-14 15:20:13 +01004177 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4178
Matt Porter3cc08dc2006-01-23 15:27:49 +01004179 return 0;
4180}
4181
Takashi Iwai42875472013-01-22 09:34:48 +01004182static const char * const stac927x_spdif_labels[] = {
4183 "Digital Playback", "ADAT", "Analog Mux 1",
4184 "Analog Mux 2", "Analog Mux 3", NULL
4185};
4186
Matt Porter3cc08dc2006-01-23 15:27:49 +01004187static int patch_stac927x(struct hda_codec *codec)
4188{
4189 struct sigmatel_spec *spec;
4190 int err;
4191
Takashi Iwai36c9db72013-01-17 17:07:59 +01004192 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02004193 if (err < 0)
4194 return err;
Matt Porter3cc08dc2006-01-23 15:27:49 +01004195
Takashi Iwai361dab32012-05-09 14:35:27 +02004196 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01004197 spec->linear_tone_beep = 1;
Takashi Iwai36c9db72013-01-17 17:07:59 +01004198 spec->gen.own_eapd_ctl = 1;
Takashi Iwai42875472013-01-22 09:34:48 +01004199 spec->have_spdif_mux = 1;
4200 spec->spdif_labels = stac927x_spdif_labels;
Matt Porter3cc08dc2006-01-23 15:27:49 +01004201
Takashi Iwai7504b6c2013-03-18 11:25:51 +01004202 spec->gen.beep_nid = 0x23; /* digital beep */
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01004203
Takashi Iwai29ac8362013-01-14 16:03:38 +01004204 /* GPIO0 High = Enable EAPD */
4205 spec->eapd_mask = spec->gpio_mask = 0x01;
4206 spec->gpio_dir = spec->gpio_data = 0x01;
Takashi Iwaiaf6ee302009-09-14 15:03:12 +02004207
Takashi Iwai36c9db72013-01-17 17:07:59 +01004208 spec->aloopback_ctl = &stac927x_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004209 spec->aloopback_mask = 0x40;
4210 spec->aloopback_shift = 0;
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05004211 spec->eapd_switch = 1;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01004212
Takashi Iwai36c9db72013-01-17 17:07:59 +01004213 codec->patch_ops = stac_patch_ops;
4214
4215 snd_hda_pick_fixup(codec, stac927x_models, stac927x_fixup_tbl,
4216 stac927x_fixups);
Takashi Iwaif6655d52013-01-17 08:49:01 +01004217 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4218
Takashi Iwai29ac8362013-01-14 16:03:38 +01004219 if (!spec->volknob_init)
4220 snd_hda_add_verbs(codec, stac927x_core_init);
4221
Takashi Iwai36c9db72013-01-17 17:07:59 +01004222 err = stac_parse_auto_config(codec);
Mattc7d4b2f2005-06-27 14:59:41 +02004223 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01004224 stac_free(codec);
Mattc7d4b2f2005-06-27 14:59:41 +02004225 return err;
4226 }
Matt2f2f4252005-04-13 14:45:30 +02004227
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004228 codec->proc_widget_hook = stac927x_proc_hook;
4229
Takashi Iwai52987652008-01-16 16:09:47 +01004230 /*
4231 * !!FIXME!!
4232 * The STAC927x seem to require fairly long delays for certain
4233 * command sequences. With too short delays (even if the answer
4234 * is set to RIRB properly), it results in the silence output
4235 * on some hardwares like Dell.
4236 *
4237 * The below flag enables the longer delay (see get_response
4238 * in hda_intel.c).
4239 */
4240 codec->bus->needs_damn_long_delay = 1;
4241
Takashi Iwai29ac8362013-01-14 16:03:38 +01004242 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwaie28d8322008-12-17 13:48:29 +01004243
Matt2f2f4252005-04-13 14:45:30 +02004244 return 0;
4245}
4246
Matt Porterf3302a52006-07-31 12:49:34 +02004247static int patch_stac9205(struct hda_codec *codec)
4248{
4249 struct sigmatel_spec *spec;
Takashi Iwai82599802007-07-31 15:56:24 +02004250 int err;
Matt Porterf3302a52006-07-31 12:49:34 +02004251
Takashi Iwai36c9db72013-01-17 17:07:59 +01004252 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02004253 if (err < 0)
4254 return err;
Matt Porterf3302a52006-07-31 12:49:34 +02004255
Takashi Iwai361dab32012-05-09 14:35:27 +02004256 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01004257 spec->linear_tone_beep = 1;
Takashi Iwai36c9db72013-01-17 17:07:59 +01004258 spec->gen.own_eapd_ctl = 1;
Takashi Iwai42875472013-01-22 09:34:48 +01004259 spec->have_spdif_mux = 1;
Matt Porterf3302a52006-07-31 12:49:34 +02004260
Takashi Iwai7504b6c2013-03-18 11:25:51 +01004261 spec->gen.beep_nid = 0x23; /* digital beep */
Matt Porterf3302a52006-07-31 12:49:34 +02004262
Takashi Iwaife6322c2013-01-14 14:46:51 +01004263 snd_hda_add_verbs(codec, stac9205_core_init);
Takashi Iwai36c9db72013-01-17 17:07:59 +01004264 spec->aloopback_ctl = &stac9205_loopback;
Takashi Iwai6479c632009-07-28 18:20:25 +02004265
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004266 spec->aloopback_mask = 0x40;
4267 spec->aloopback_shift = 0;
Matthew Ranostay87d48362007-07-17 11:52:24 +02004268
Takashi Iwaife6322c2013-01-14 14:46:51 +01004269 /* GPIO0 High = EAPD */
4270 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
4271 spec->gpio_data = 0x01;
Matt Porter33382402006-12-18 13:17:28 +01004272
Takashi Iwaife6322c2013-01-14 14:46:51 +01004273 /* Turn on/off EAPD per HP plugging */
4274 spec->eapd_switch = 1;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01004275
Takashi Iwai36c9db72013-01-17 17:07:59 +01004276 codec->patch_ops = stac_patch_ops;
4277
4278 snd_hda_pick_fixup(codec, stac9205_models, stac9205_fixup_tbl,
4279 stac9205_fixups);
Takashi Iwaife6322c2013-01-14 14:46:51 +01004280 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Matthew Ranostay87d48362007-07-17 11:52:24 +02004281
Takashi Iwai36c9db72013-01-17 17:07:59 +01004282 err = stac_parse_auto_config(codec);
Matt Porterf3302a52006-07-31 12:49:34 +02004283 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01004284 stac_free(codec);
Matt Porterf3302a52006-07-31 12:49:34 +02004285 return err;
4286 }
4287
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004288 codec->proc_widget_hook = stac9205_proc_hook;
4289
Takashi Iwaife6322c2013-01-14 14:46:51 +01004290 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4291
Matt Porterf3302a52006-07-31 12:49:34 +02004292 return 0;
4293}
4294
Matt2f2f4252005-04-13 14:45:30 +02004295/*
Guillaume Munch6d859062006-08-22 17:15:47 +02004296 * STAC9872 hack
Takashi Iwaidb064e52006-03-16 16:04:58 +01004297 */
4298
Takashi Iwai2b635362011-05-02 12:33:43 +02004299static const struct hda_verb stac9872_core_init[] = {
Takashi Iwai1624cb92007-07-05 13:10:51 +02004300 {0x15, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mic-sel: 0a,0d,14,02 */
Takashi Iwaidb064e52006-03-16 16:04:58 +01004301 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */
4302 {}
4303};
4304
Takashi Iwaifc268c12013-01-14 14:29:36 +01004305static const struct hda_pintbl stac9872_vaio_pin_configs[] = {
4306 { 0x0a, 0x03211020 },
4307 { 0x0b, 0x411111f0 },
4308 { 0x0c, 0x411111f0 },
4309 { 0x0d, 0x03a15030 },
4310 { 0x0e, 0x411111f0 },
4311 { 0x0f, 0x90170110 },
4312 { 0x11, 0x411111f0 },
4313 { 0x13, 0x411111f0 },
4314 { 0x14, 0x90a7013e },
4315 {}
Takashi Iwai307282c2009-03-12 18:17:58 +01004316};
4317
Takashi Iwaifc268c12013-01-14 14:29:36 +01004318static const struct hda_model_fixup stac9872_models[] = {
4319 { .id = STAC_9872_VAIO, .name = "vaio" },
4320 {}
Takashi Iwai307282c2009-03-12 18:17:58 +01004321};
4322
Takashi Iwaifc268c12013-01-14 14:29:36 +01004323static const struct hda_fixup stac9872_fixups[] = {
4324 [STAC_9872_VAIO] = {
4325 .type = HDA_FIXUP_PINS,
4326 .v.pins = stac9872_vaio_pin_configs,
4327 },
Takashi Iwai307282c2009-03-12 18:17:58 +01004328};
4329
Takashi Iwaifc268c12013-01-14 14:29:36 +01004330static const struct snd_pci_quirk stac9872_fixup_tbl[] = {
Takashi Iwaib04add92009-07-20 08:01:36 +02004331 SND_PCI_QUIRK_MASK(0x104d, 0xfff0, 0x81e0,
4332 "Sony VAIO F/S", STAC_9872_VAIO),
Takashi Iwai307282c2009-03-12 18:17:58 +01004333 {} /* terminator */
4334};
4335
Guillaume Munch6d859062006-08-22 17:15:47 +02004336static int patch_stac9872(struct hda_codec *codec)
Takashi Iwaidb064e52006-03-16 16:04:58 +01004337{
4338 struct sigmatel_spec *spec;
Takashi Iwai1e137f92009-01-21 07:41:22 +01004339 int err;
Takashi Iwaidb064e52006-03-16 16:04:58 +01004340
Takashi Iwai36c9db72013-01-17 17:07:59 +01004341 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02004342 if (err < 0)
4343 return err;
4344
4345 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01004346 spec->linear_tone_beep = 1;
Takashi Iwai36c9db72013-01-17 17:07:59 +01004347 spec->gen.own_eapd_ctl = 1;
4348
4349 codec->patch_ops = stac_patch_ops;
4350
4351 snd_hda_add_verbs(codec, stac9872_core_init);
Takashi Iwaicaa10b62009-01-20 17:19:01 +01004352
Takashi Iwaifc268c12013-01-14 14:29:36 +01004353 snd_hda_pick_fixup(codec, stac9872_models, stac9872_fixup_tbl,
4354 stac9872_fixups);
Takashi Iwaifc268c12013-01-14 14:29:36 +01004355 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwaicaa10b62009-01-20 17:19:01 +01004356
Takashi Iwai36c9db72013-01-17 17:07:59 +01004357 err = stac_parse_auto_config(codec);
Takashi Iwai1e137f92009-01-21 07:41:22 +01004358 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01004359 stac_free(codec);
Takashi Iwai1e137f92009-01-21 07:41:22 +01004360 return -EINVAL;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01004361 }
Takashi Iwaifc268c12013-01-14 14:29:36 +01004362
4363 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4364
Takashi Iwaidb064e52006-03-16 16:04:58 +01004365 return 0;
4366}
4367
4368
4369/*
Matt2f2f4252005-04-13 14:45:30 +02004370 * patch entries
4371 */
Takashi Iwai2b635362011-05-02 12:33:43 +02004372static const struct hda_codec_preset snd_hda_preset_sigmatel[] = {
Matt2f2f4252005-04-13 14:45:30 +02004373 { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 },
4374 { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x },
4375 { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x },
4376 { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x },
4377 { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x },
4378 { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x },
4379 { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x },
Matt Porter22a27c72006-07-06 18:49:10 +02004380 { .id = 0x83847618, .name = "STAC9227", .patch = patch_stac927x },
4381 { .id = 0x83847619, .name = "STAC9227", .patch = patch_stac927x },
4382 { .id = 0x83847616, .name = "STAC9228", .patch = patch_stac927x },
4383 { .id = 0x83847617, .name = "STAC9228", .patch = patch_stac927x },
4384 { .id = 0x83847614, .name = "STAC9229", .patch = patch_stac927x },
4385 { .id = 0x83847615, .name = "STAC9229", .patch = patch_stac927x },
Matt Porter3cc08dc2006-01-23 15:27:49 +01004386 { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x },
4387 { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x },
4388 { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x },
4389 { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x },
4390 { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x },
4391 { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x },
4392 { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x },
4393 { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x },
4394 { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x },
4395 { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x },
Tobin Davis8e21c342007-01-08 11:04:17 +01004396 { .id = 0x83847632, .name = "STAC9202", .patch = patch_stac925x },
4397 { .id = 0x83847633, .name = "STAC9202D", .patch = patch_stac925x },
4398 { .id = 0x83847634, .name = "STAC9250", .patch = patch_stac925x },
4399 { .id = 0x83847635, .name = "STAC9250D", .patch = patch_stac925x },
4400 { .id = 0x83847636, .name = "STAC9251", .patch = patch_stac925x },
4401 { .id = 0x83847637, .name = "STAC9250D", .patch = patch_stac925x },
Takashi Iwai7bd3c0f2008-05-02 12:28:02 +02004402 { .id = 0x83847645, .name = "92HD206X", .patch = patch_stac927x },
4403 { .id = 0x83847646, .name = "92HD206D", .patch = patch_stac927x },
Guillaume Munch6d859062006-08-22 17:15:47 +02004404 /* The following does not take into account .id=0x83847661 when subsys =
4405 * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are
4406 * currently not fully supported.
4407 */
4408 { .id = 0x83847661, .name = "CXD9872RD/K", .patch = patch_stac9872 },
4409 { .id = 0x83847662, .name = "STAC9872AK", .patch = patch_stac9872 },
4410 { .id = 0x83847664, .name = "CXD9872AKD", .patch = patch_stac9872 },
Simos Xenitellisa5c0f882009-06-10 16:33:31 +01004411 { .id = 0x83847698, .name = "STAC9205", .patch = patch_stac9205 },
Matt Porterf3302a52006-07-31 12:49:34 +02004412 { .id = 0x838476a0, .name = "STAC9205", .patch = patch_stac9205 },
4413 { .id = 0x838476a1, .name = "STAC9205D", .patch = patch_stac9205 },
4414 { .id = 0x838476a2, .name = "STAC9204", .patch = patch_stac9205 },
4415 { .id = 0x838476a3, .name = "STAC9204D", .patch = patch_stac9205 },
4416 { .id = 0x838476a4, .name = "STAC9255", .patch = patch_stac9205 },
4417 { .id = 0x838476a5, .name = "STAC9255D", .patch = patch_stac9205 },
4418 { .id = 0x838476a6, .name = "STAC9254", .patch = patch_stac9205 },
4419 { .id = 0x838476a7, .name = "STAC9254D", .patch = patch_stac9205 },
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004420 { .id = 0x111d7603, .name = "92HD75B3X5", .patch = patch_stac92hd71bxx},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004421 { .id = 0x111d7604, .name = "92HD83C1X5", .patch = patch_stac92hd83xxx},
Vitaliy Kulikova9694fa2010-02-04 08:58:23 +01004422 { .id = 0x111d76d4, .name = "92HD83C1C5", .patch = patch_stac92hd83xxx},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004423 { .id = 0x111d7605, .name = "92HD81B1X5", .patch = patch_stac92hd83xxx},
Matthew Ranostayff2e7332009-04-01 14:49:48 -04004424 { .id = 0x111d76d5, .name = "92HD81B1C5", .patch = patch_stac92hd83xxx},
Charles Chin8a345a02010-08-10 11:43:25 +02004425 { .id = 0x111d76d1, .name = "92HD87B1/3", .patch = patch_stac92hd83xxx},
4426 { .id = 0x111d76d9, .name = "92HD87B2/4", .patch = patch_stac92hd83xxx},
Charles Chin36706002010-01-29 12:05:51 +01004427 { .id = 0x111d7666, .name = "92HD88B3", .patch = patch_stac92hd83xxx},
4428 { .id = 0x111d7667, .name = "92HD88B1", .patch = patch_stac92hd83xxx},
4429 { .id = 0x111d7668, .name = "92HD88B2", .patch = patch_stac92hd83xxx},
4430 { .id = 0x111d7669, .name = "92HD88B4", .patch = patch_stac92hd83xxx},
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004431 { .id = 0x111d7608, .name = "92HD75B2X5", .patch = patch_stac92hd71bxx},
Matthew Ranostay541eee82007-12-14 12:08:04 +01004432 { .id = 0x111d7674, .name = "92HD73D1X5", .patch = patch_stac92hd73xx },
4433 { .id = 0x111d7675, .name = "92HD73C1X5", .patch = patch_stac92hd73xx },
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004434 { .id = 0x111d7676, .name = "92HD73E1X5", .patch = patch_stac92hd73xx },
Vitaliy Kulikov4e637c62013-01-31 17:58:59 -06004435 { .id = 0x111d7695, .name = "92HD95", .patch = patch_stac92hd95 },
Matthew Ranostay541eee82007-12-14 12:08:04 +01004436 { .id = 0x111d76b0, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
4437 { .id = 0x111d76b1, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
4438 { .id = 0x111d76b2, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
4439 { .id = 0x111d76b3, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
4440 { .id = 0x111d76b4, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
4441 { .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
4442 { .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
4443 { .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
Charles Chin4d8ec5f2010-08-19 08:06:16 +02004444 { .id = 0x111d76c0, .name = "92HD89C3", .patch = patch_stac92hd73xx },
4445 { .id = 0x111d76c1, .name = "92HD89C2", .patch = patch_stac92hd73xx },
4446 { .id = 0x111d76c2, .name = "92HD89C1", .patch = patch_stac92hd73xx },
4447 { .id = 0x111d76c3, .name = "92HD89B3", .patch = patch_stac92hd73xx },
4448 { .id = 0x111d76c4, .name = "92HD89B2", .patch = patch_stac92hd73xx },
4449 { .id = 0x111d76c5, .name = "92HD89B1", .patch = patch_stac92hd73xx },
4450 { .id = 0x111d76c6, .name = "92HD89E3", .patch = patch_stac92hd73xx },
4451 { .id = 0x111d76c7, .name = "92HD89E2", .patch = patch_stac92hd73xx },
4452 { .id = 0x111d76c8, .name = "92HD89E1", .patch = patch_stac92hd73xx },
4453 { .id = 0x111d76c9, .name = "92HD89D3", .patch = patch_stac92hd73xx },
4454 { .id = 0x111d76ca, .name = "92HD89D2", .patch = patch_stac92hd73xx },
4455 { .id = 0x111d76cb, .name = "92HD89D1", .patch = patch_stac92hd73xx },
4456 { .id = 0x111d76cc, .name = "92HD89F3", .patch = patch_stac92hd73xx },
4457 { .id = 0x111d76cd, .name = "92HD89F2", .patch = patch_stac92hd73xx },
4458 { .id = 0x111d76ce, .name = "92HD89F1", .patch = patch_stac92hd73xx },
David Henningsson46724c22011-09-20 09:02:22 +02004459 { .id = 0x111d76df, .name = "92HD93BXX", .patch = patch_stac92hd83xxx},
Vitaliy Kulikovab5a6eb2010-09-08 09:00:17 +02004460 { .id = 0x111d76e0, .name = "92HD91BXX", .patch = patch_stac92hd83xxx},
Vitaliy Kulikov4dfb8a42011-02-22 17:32:19 -06004461 { .id = 0x111d76e3, .name = "92HD98BXX", .patch = patch_stac92hd83xxx},
4462 { .id = 0x111d76e5, .name = "92HD99BXX", .patch = patch_stac92hd83xxx},
Vitaliy Kulikovab5a6eb2010-09-08 09:00:17 +02004463 { .id = 0x111d76e7, .name = "92HD90BXX", .patch = patch_stac92hd83xxx},
Charles Chinad5d8752011-11-02 07:56:58 +01004464 { .id = 0x111d76e8, .name = "92HD66B1X5", .patch = patch_stac92hd83xxx},
4465 { .id = 0x111d76e9, .name = "92HD66B2X5", .patch = patch_stac92hd83xxx},
4466 { .id = 0x111d76ea, .name = "92HD66B3X5", .patch = patch_stac92hd83xxx},
4467 { .id = 0x111d76eb, .name = "92HD66C1X5", .patch = patch_stac92hd83xxx},
4468 { .id = 0x111d76ec, .name = "92HD66C2X5", .patch = patch_stac92hd83xxx},
4469 { .id = 0x111d76ed, .name = "92HD66C3X5", .patch = patch_stac92hd83xxx},
4470 { .id = 0x111d76ee, .name = "92HD66B1X3", .patch = patch_stac92hd83xxx},
4471 { .id = 0x111d76ef, .name = "92HD66B2X3", .patch = patch_stac92hd83xxx},
4472 { .id = 0x111d76f0, .name = "92HD66B3X3", .patch = patch_stac92hd83xxx},
4473 { .id = 0x111d76f1, .name = "92HD66C1X3", .patch = patch_stac92hd83xxx},
4474 { .id = 0x111d76f2, .name = "92HD66C2X3", .patch = patch_stac92hd83xxx},
4475 { .id = 0x111d76f3, .name = "92HD66C3/65", .patch = patch_stac92hd83xxx},
Matt2f2f4252005-04-13 14:45:30 +02004476 {} /* terminator */
4477};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01004478
4479MODULE_ALIAS("snd-hda-codec-id:8384*");
4480MODULE_ALIAS("snd-hda-codec-id:111d*");
4481
4482MODULE_LICENSE("GPL");
4483MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec");
4484
4485static struct hda_codec_preset_list sigmatel_list = {
4486 .preset = snd_hda_preset_sigmatel,
4487 .owner = THIS_MODULE,
4488};
4489
4490static int __init patch_sigmatel_init(void)
4491{
4492 return snd_hda_add_codec_preset(&sigmatel_list);
4493}
4494
4495static void __exit patch_sigmatel_exit(void)
4496{
4497 snd_hda_delete_codec_preset(&sigmatel_list);
4498}
4499
4500module_init(patch_sigmatel_init)
4501module_exit(patch_sigmatel_exit)