blob: c53b6f9f2ca80f27ce09448ab5ad9161e8b93e21 [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,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +010086 STAC_92HD73XX_MODELS
87};
88
89enum {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +020090 STAC_92HD83XXX_REF,
Matthew Ranostay32ed3f42009-01-22 20:53:29 -050091 STAC_92HD83XXX_PWR_REF,
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -050092 STAC_DELL_S14,
Julian Wollrathf7f9bdf2011-11-09 10:02:40 +010093 STAC_DELL_VOSTRO_3500,
Vitaliy Kulikov0c27c182011-07-22 17:50:37 -050094 STAC_92HD83XXX_HP_cNB11_INTQUAD,
Steven Eastland48315592010-08-06 15:07:35 -060095 STAC_HP_DV7_4000,
Vitaliy Kulikov5556e142012-02-27 16:47:37 -060096 STAC_HP_ZEPHYR,
Takashi Iwaia3e19972012-07-26 08:17:20 +020097 STAC_92HD83XXX_HP_LED,
Takashi Iwaiff8a1e22012-07-31 10:16:59 +020098 STAC_92HD83XXX_HP_INV_LED,
Takashi Iwai62cbde12012-09-14 11:58:54 +020099 STAC_92HD83XXX_HP_MIC_LED,
David Henningsson8d032a82012-10-09 12:48:40 +0200100 STAC_92HD83XXX_HEADSET_JACK,
Takashi Iwai372f8c72013-01-14 18:06:34 +0100101 STAC_92HD83XXX_HP,
Takashi Iwai49920422013-01-18 14:28:07 +0100102 STAC_HP_ENVY_BASS,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200103 STAC_92HD83XXX_MODELS
104};
105
106enum {
Matthew Ranostaye035b842007-11-06 11:53:55 +0100107 STAC_92HD71BXX_REF,
Matthew Ranostaya7662642008-02-21 07:51:14 +0100108 STAC_DELL_M4_1,
109 STAC_DELL_M4_2,
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -0500110 STAC_DELL_M4_3,
Matthew Ranostay6a14f582008-09-12 12:02:30 -0400111 STAC_HP_M4,
Takashi Iwai2a6ce6e2010-05-12 10:16:20 +0200112 STAC_HP_DV4,
Takashi Iwai1b0652e2009-01-14 08:27:35 +0100113 STAC_HP_DV5,
Christoph Plattnerae6241f2009-03-08 23:19:05 +0100114 STAC_HP_HDX,
Takashi Iwai0f6fcb72013-01-14 17:05:25 +0100115 STAC_92HD71BXX_HP,
116 STAC_92HD71BXX_NO_DMIC,
117 STAC_92HD71BXX_NO_SMUX,
Matthew Ranostaye035b842007-11-06 11:53:55 +0100118 STAC_92HD71BXX_MODELS
119};
120
121enum {
Tobin Davis8e21c342007-01-08 11:04:17 +0100122 STAC_925x_REF,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +0200123 STAC_M1,
124 STAC_M1_2,
125 STAC_M2,
Tobin Davis8e21c342007-01-08 11:04:17 +0100126 STAC_M2_2,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +0200127 STAC_M3,
128 STAC_M5,
129 STAC_M6,
Tobin Davis8e21c342007-01-08 11:04:17 +0100130 STAC_925x_MODELS
131};
132
133enum {
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100134 STAC_D945_REF,
135 STAC_D945GTP3,
136 STAC_D945GTP5,
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +0200137 STAC_INTEL_MAC_V1,
138 STAC_INTEL_MAC_V2,
139 STAC_INTEL_MAC_V3,
140 STAC_INTEL_MAC_V4,
141 STAC_INTEL_MAC_V5,
Takashi Iwai0a427842013-01-14 15:20:13 +0100142 STAC_INTEL_MAC_AUTO,
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -0300143 STAC_ECS_202,
Takashi Iwaidfe495d2007-08-23 19:04:28 +0200144 STAC_922X_DELL_D81,
145 STAC_922X_DELL_D82,
146 STAC_922X_DELL_M81,
147 STAC_922X_DELL_M82,
Takashi Iwai0a427842013-01-14 15:20:13 +0100148 STAC_922X_INTEL_MAC_GPIO,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100149 STAC_922X_MODELS
150};
151
152enum {
Takashi Iwaie28d8322008-12-17 13:48:29 +0100153 STAC_D965_REF_NO_JD, /* no jack-detection */
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100154 STAC_D965_REF,
155 STAC_D965_3ST,
156 STAC_D965_5ST,
Takashi Iwai679d92e2009-05-24 19:00:08 +0200157 STAC_D965_5ST_NO_FP,
Takashi Iwai29ac8362013-01-14 16:03:38 +0100158 STAC_D965_VERBS,
Tobin Davis4ff076e2007-08-07 11:48:12 +0200159 STAC_DELL_3ST,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +0100160 STAC_DELL_BIOS,
Takashi Iwai29ac8362013-01-14 16:03:38 +0100161 STAC_DELL_BIOS_SPDIF,
162 STAC_927X_DELL_DMIC,
Takashi Iwai54930532009-10-11 17:38:29 +0200163 STAC_927X_VOLKNOB,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100164 STAC_927X_MODELS
165};
Matt Porter403d1942005-11-29 15:00:51 +0100166
Takashi Iwai307282c2009-03-12 18:17:58 +0100167enum {
Takashi Iwai307282c2009-03-12 18:17:58 +0100168 STAC_9872_VAIO,
169 STAC_9872_MODELS
170};
171
Matt2f2f4252005-04-13 14:45:30 +0200172struct sigmatel_spec {
Takashi Iwai36c9db72013-01-17 17:07:59 +0100173 struct hda_gen_spec gen;
Mattc7d4b2f2005-06-27 14:59:41 +0200174
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -0500175 unsigned int eapd_switch: 1;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +0100176 unsigned int linear_tone_beep:1;
David Henningsson8d032a82012-10-09 12:48:40 +0200177 unsigned int headset_jack:1; /* 4-pin headset jack (hp + mono mic) */
Takashi Iwai29ac8362013-01-14 16:03:38 +0100178 unsigned int volknob_init:1; /* special volume-knob initialization */
Takashi Iwai36c9db72013-01-17 17:07:59 +0100179 unsigned int powerdown_adcs:1;
Mattc7d4b2f2005-06-27 14:59:41 +0200180
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100181 /* gpio lines */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +0200182 unsigned int eapd_mask;
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100183 unsigned int gpio_mask;
184 unsigned int gpio_dir;
185 unsigned int gpio_data;
186 unsigned int gpio_mute;
Takashi Iwai86d190e2009-05-26 15:18:58 +0200187 unsigned int gpio_led;
Vitaliy Kulikovc357aab2009-12-11 07:51:54 +0100188 unsigned int gpio_led_polarity;
Takashi Iwaif1a73742011-12-04 13:44:06 +0100189 unsigned int vref_mute_led_nid; /* pin NID for mute-LED vref control */
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -0500190 unsigned int vref_led;
Takashi Iwai372f8c72013-01-14 18:06:34 +0100191 int default_polarity;
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100192
Takashi Iwai62cbde12012-09-14 11:58:54 +0200193 unsigned int mic_mute_led_gpio; /* capture mute LED GPIO */
194 bool mic_mute_led_on; /* current mic mute state */
195
Matthew Ranostay8daaaa92008-08-15 07:45:52 +0200196 /* stream */
197 unsigned int stream_delay;
198
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100199 /* analog loopback */
Takashi Iwai2b635362011-05-02 12:33:43 +0200200 const struct snd_kcontrol_new *aloopback_ctl;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100201 unsigned int aloopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100202 unsigned char aloopback_mask;
203 unsigned char aloopback_shift;
Takashi Iwai82599802007-07-31 15:56:24 +0200204
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100205 /* power management */
Takashi Iwaic8822462012-05-15 09:11:36 +0200206 unsigned int power_map_bits;
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100207 unsigned int num_pwrs;
Takashi Iwai2b635362011-05-02 12:33:43 +0200208 const hda_nid_t *pwr_nids;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100209 unsigned int active_adcs;
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100210
Takashi Iwai36c9db72013-01-17 17:07:59 +0100211 /* beep widgets */
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200212 hda_nid_t anabeep_nid;
213 hda_nid_t digbeep_nid;
Matt2f2f4252005-04-13 14:45:30 +0200214};
215
Takashi Iwaic8822462012-05-15 09:11:36 +0200216#define AC_VERB_IDT_SET_POWER_MAP 0x7ec
217#define AC_VERB_IDT_GET_POWER_MAP 0xfec
218
Takashi Iwai2b635362011-05-02 12:33:43 +0200219static const hda_nid_t stac92hd73xx_pwr_nids[8] = {
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100220 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
221 0x0f, 0x10, 0x11
222};
223
Charles Chinafef2cf2011-11-11 08:05:28 +0100224static const hda_nid_t stac92hd83xxx_pwr_nids[7] = {
225 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
226 0x0f, 0x10
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200227};
228
Takashi Iwai2b635362011-05-02 12:33:43 +0200229static const hda_nid_t stac92hd71bxx_pwr_nids[3] = {
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100230 0x0a, 0x0d, 0x0f
231};
232
Matthew Ranostaye035b842007-11-06 11:53:55 +0100233
Takashi Iwai36c9db72013-01-17 17:07:59 +0100234/*
235 * PCM hooks
236 */
237static void stac_playback_pcm_hook(struct hda_pcm_stream *hinfo,
238 struct hda_codec *codec,
239 struct snd_pcm_substream *substream,
240 int action)
Matt Porter8b657272006-10-26 17:12:59 +0200241{
Matt Porter8b657272006-10-26 17:12:59 +0200242 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100243 if (action == HDA_GEN_PCM_ACT_OPEN && spec->stream_delay)
244 msleep(spec->stream_delay);
Matt Porter8b657272006-10-26 17:12:59 +0200245}
246
Takashi Iwai36c9db72013-01-17 17:07:59 +0100247static void stac_capture_pcm_hook(struct hda_pcm_stream *hinfo,
248 struct hda_codec *codec,
249 struct snd_pcm_substream *substream,
250 int action)
Matt Porter8b657272006-10-26 17:12:59 +0200251{
Matt Porter8b657272006-10-26 17:12:59 +0200252 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100253 int i, idx = 0;
Matt Porter8b657272006-10-26 17:12:59 +0200254
Takashi Iwai36c9db72013-01-17 17:07:59 +0100255 if (!spec->powerdown_adcs)
256 return;
Matt Porter8b657272006-10-26 17:12:59 +0200257
Takashi Iwai36c9db72013-01-17 17:07:59 +0100258 for (i = 0; i < spec->gen.num_all_adcs; i++) {
259 if (spec->gen.all_adcs[i] == hinfo->nid) {
260 idx = i;
261 break;
262 }
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400263 }
Takashi Iwai36c9db72013-01-17 17:07:59 +0100264
265 switch (action) {
266 case HDA_GEN_PCM_ACT_OPEN:
267 msleep(40);
268 snd_hda_codec_write(codec, hinfo->nid, 0,
269 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
270 spec->active_adcs |= (1 << idx);
271 break;
272 case HDA_GEN_PCM_ACT_CLOSE:
273 snd_hda_codec_write(codec, hinfo->nid, 0,
274 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
275 spec->active_adcs &= ~(1 << idx);
276 break;
277 }
278}
279
280/*
281 * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
282 * funky external mute control using GPIO pins.
283 */
284
285static void stac_gpio_set(struct hda_codec *codec, unsigned int mask,
286 unsigned int dir_mask, unsigned int data)
287{
288 unsigned int gpiostate, gpiomask, gpiodir;
289
290 snd_printdd("%s msk %x dir %x gpio %x\n", __func__, mask, dir_mask, data);
291
292 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
293 AC_VERB_GET_GPIO_DATA, 0);
294 gpiostate = (gpiostate & ~dir_mask) | (data & dir_mask);
295
296 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
297 AC_VERB_GET_GPIO_MASK, 0);
298 gpiomask |= mask;
299
300 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
301 AC_VERB_GET_GPIO_DIRECTION, 0);
302 gpiodir |= dir_mask;
303
304 /* Configure GPIOx as CMOS */
305 snd_hda_codec_write(codec, codec->afg, 0, 0x7e7, 0);
306
307 snd_hda_codec_write(codec, codec->afg, 0,
308 AC_VERB_SET_GPIO_MASK, gpiomask);
309 snd_hda_codec_read(codec, codec->afg, 0,
310 AC_VERB_SET_GPIO_DIRECTION, gpiodir); /* sync */
311
312 msleep(1);
313
314 snd_hda_codec_read(codec, codec->afg, 0,
315 AC_VERB_SET_GPIO_DATA, gpiostate); /* sync */
316}
317
318/* hook for controlling mic-mute LED GPIO */
Takashi Iwaia90229e2013-01-18 14:10:00 +0100319static void stac_capture_led_hook(struct hda_codec *codec,
320 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai36c9db72013-01-17 17:07:59 +0100321{
322 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaia90229e2013-01-18 14:10:00 +0100323 bool mute;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100324
Takashi Iwaia90229e2013-01-18 14:10:00 +0100325 if (!ucontrol)
326 return;
327
328 mute = !(ucontrol->value.integer.value[0] ||
329 ucontrol->value.integer.value[1]);
Takashi Iwai36c9db72013-01-17 17:07:59 +0100330 if (spec->mic_mute_led_on != mute) {
331 spec->mic_mute_led_on = mute;
332 if (mute)
333 spec->gpio_data |= spec->mic_mute_led_gpio;
334 else
335 spec->gpio_data &= ~spec->mic_mute_led_gpio;
336 stac_gpio_set(codec, spec->gpio_mask,
337 spec->gpio_dir, spec->gpio_data);
338 }
Matthew Ranostayd9737752008-09-07 12:03:41 +0200339}
340
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -0500341static int stac_vrefout_set(struct hda_codec *codec,
342 hda_nid_t nid, unsigned int new_vref)
343{
344 int error, pinctl;
345
346 snd_printdd("%s, nid %x ctl %x\n", __func__, nid, new_vref);
347 pinctl = snd_hda_codec_read(codec, nid, 0,
348 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
349
350 if (pinctl < 0)
351 return pinctl;
352
353 pinctl &= 0xff;
354 pinctl &= ~AC_PINCTL_VREFEN;
355 pinctl |= (new_vref & AC_PINCTL_VREFEN);
356
Takashi Iwaicdd03ce2012-04-20 12:34:50 +0200357 error = snd_hda_set_pin_ctl_cache(codec, nid, pinctl);
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -0500358 if (error < 0)
359 return error;
360
361 return 1;
362}
363
Takashi Iwai36c9db72013-01-17 17:07:59 +0100364/* update mute-LED accoring to the master switch */
365static void stac_update_led_status(struct hda_codec *codec, int enabled)
Nickolas Lloyd2fc99892009-05-15 15:33:30 +0200366{
Matt2f2f4252005-04-13 14:45:30 +0200367 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100368 int muted = !enabled;
Matt2f2f4252005-04-13 14:45:30 +0200369
Takashi Iwai36c9db72013-01-17 17:07:59 +0100370 if (!spec->gpio_led)
371 return;
Matt2f2f4252005-04-13 14:45:30 +0200372
Takashi Iwai36c9db72013-01-17 17:07:59 +0100373 /* LED state is inverted on these systems */
374 if (spec->gpio_led_polarity)
375 muted = !muted;
Matt2f2f4252005-04-13 14:45:30 +0200376
Takashi Iwai36c9db72013-01-17 17:07:59 +0100377 if (!spec->vref_mute_led_nid) {
378 if (muted)
379 spec->gpio_data |= spec->gpio_led;
380 else
381 spec->gpio_data &= ~spec->gpio_led;
382 stac_gpio_set(codec, spec->gpio_mask,
383 spec->gpio_dir, spec->gpio_data);
Takashi Iwai5207e102009-07-30 13:09:08 +0200384 } else {
Takashi Iwai36c9db72013-01-17 17:07:59 +0100385 spec->vref_led = muted ? AC_PINCTL_VREF_50 : AC_PINCTL_VREF_GRD;
386 stac_vrefout_set(codec, spec->vref_mute_led_nid,
387 spec->vref_led);
Takashi Iwai5207e102009-07-30 13:09:08 +0200388 }
Matt2f2f4252005-04-13 14:45:30 +0200389}
390
Takashi Iwai36c9db72013-01-17 17:07:59 +0100391/* vmaster hook to update mute LED */
392static void stac_vmaster_hook(void *private_data, int val)
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100393{
Takashi Iwai36c9db72013-01-17 17:07:59 +0100394 stac_update_led_status(private_data, val);
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100395}
396
Takashi Iwai36c9db72013-01-17 17:07:59 +0100397/* automute hook to handle GPIO mute and EAPD updates */
398static void stac_update_outputs(struct hda_codec *codec)
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100399{
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100400 struct sigmatel_spec *spec = codec->spec;
401
Takashi Iwai36c9db72013-01-17 17:07:59 +0100402 if (spec->gpio_mute)
403 spec->gen.master_mute =
404 !(snd_hda_codec_read(codec, codec->afg, 0,
405 AC_VERB_GET_GPIO_DATA, 0) & spec->gpio_mute);
406
407 snd_hda_gen_update_outputs(codec);
408
409 if (spec->eapd_mask && spec->eapd_switch) {
410 unsigned int val = spec->gpio_data;
411 if (spec->gen.speaker_muted)
412 val &= ~spec->eapd_mask;
413 else
414 val |= spec->eapd_mask;
415 if (spec->gpio_data != val)
416 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir,
417 val);
418 }
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100419}
420
Takashi Iwai36c9db72013-01-17 17:07:59 +0100421static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
422 bool enable, bool do_write)
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100423{
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100424 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai36c9db72013-01-17 17:07:59 +0100425 unsigned int idx, val;
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100426
Takashi Iwai36c9db72013-01-17 17:07:59 +0100427 for (idx = 0; idx < spec->num_pwrs; idx++) {
428 if (spec->pwr_nids[idx] == nid)
429 break;
430 }
431 if (idx >= spec->num_pwrs)
432 return;
433
434 idx = 1 << idx;
435
436 val = spec->power_map_bits;
437 if (enable)
438 val &= ~idx;
439 else
440 val |= idx;
441
442 /* power down unused output ports */
443 if (val != spec->power_map_bits) {
444 spec->power_map_bits = val;
445 if (do_write)
446 snd_hda_codec_write(codec, codec->afg, 0,
447 AC_VERB_IDT_SET_POWER_MAP, val);
448 }
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100449}
450
Takashi Iwai36c9db72013-01-17 17:07:59 +0100451/* update power bit per jack plug/unplug */
452static void jack_update_power(struct hda_codec *codec,
453 struct hda_jack_tbl *jack)
454{
455 struct sigmatel_spec *spec = codec->spec;
456 int i;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200457
Takashi Iwai36c9db72013-01-17 17:07:59 +0100458 if (!spec->num_pwrs)
459 return;
460
461 if (jack && jack->nid) {
462 stac_toggle_power_map(codec, jack->nid,
463 snd_hda_jack_detect(codec, jack->nid),
464 true);
465 return;
466 }
467
468 /* update all jacks */
469 for (i = 0; i < spec->num_pwrs; i++) {
470 hda_nid_t nid = spec->pwr_nids[i];
471 jack = snd_hda_jack_tbl_get(codec, nid);
472 if (!jack || !jack->action)
473 continue;
474 if (jack->action == STAC_PWR_EVENT ||
475 jack->action <= HDA_GEN_LAST_EVENT)
476 stac_toggle_power_map(codec, nid,
477 snd_hda_jack_detect(codec, nid),
478 false);
479 }
480
481 snd_hda_codec_write(codec, codec->afg, 0, AC_VERB_IDT_SET_POWER_MAP,
482 spec->power_map_bits);
483}
484
485static void stac_hp_automute(struct hda_codec *codec,
486 struct hda_jack_tbl *jack)
487{
488 snd_hda_gen_hp_automute(codec, jack);
489 jack_update_power(codec, jack);
490}
491
492static void stac_line_automute(struct hda_codec *codec,
493 struct hda_jack_tbl *jack)
494{
495 snd_hda_gen_line_automute(codec, jack);
496 jack_update_power(codec, jack);
497}
498
499static void stac_vref_event(struct hda_codec *codec, struct hda_jack_tbl *event)
500{
501 unsigned int data;
502
503 data = snd_hda_codec_read(codec, codec->afg, 0,
504 AC_VERB_GET_GPIO_DATA, 0);
505 /* toggle VREF state based on GPIOx status */
506 snd_hda_codec_write(codec, codec->afg, 0, 0x7e0,
507 !!(data & (1 << event->private_data)));
508}
509
510/* initialize the power map and enable the power event to jacks that
511 * haven't been assigned to automute
512 */
513static void stac_init_power_map(struct hda_codec *codec)
514{
515 struct sigmatel_spec *spec = codec->spec;
516 int i;
517
518 for (i = 0; i < spec->num_pwrs; i++) {
519 hda_nid_t nid = spec->pwr_nids[i];
520 unsigned int def_conf = snd_hda_codec_get_pincfg(codec, nid);
521 def_conf = get_defcfg_connect(def_conf);
522 if (snd_hda_jack_tbl_get(codec, nid))
523 continue;
524 if (def_conf == AC_JACK_PORT_COMPLEX &&
525 !(spec->vref_mute_led_nid == nid ||
526 is_jack_detectable(codec, nid))) {
527 snd_hda_jack_detect_enable_callback(codec, nid,
528 STAC_PWR_EVENT,
529 jack_update_power);
530 } else {
531 if (def_conf == AC_JACK_PORT_NONE)
532 stac_toggle_power_map(codec, nid, false, false);
533 else
534 stac_toggle_power_map(codec, nid, true, false);
535 }
536 }
537}
538
539/*
540 */
541
542static inline bool get_int_hint(struct hda_codec *codec, const char *key,
543 int *valp)
544{
545 return !snd_hda_get_int_hint(codec, key, valp);
546}
547
548/* override some hints from the hwdep entry */
549static void stac_store_hints(struct hda_codec *codec)
550{
551 struct sigmatel_spec *spec = codec->spec;
552 int val;
553
554 if (get_int_hint(codec, "gpio_mask", &spec->gpio_mask)) {
555 spec->eapd_mask = spec->gpio_dir = spec->gpio_data =
556 spec->gpio_mask;
557 }
558 if (get_int_hint(codec, "gpio_dir", &spec->gpio_dir))
559 spec->gpio_mask &= spec->gpio_mask;
560 if (get_int_hint(codec, "gpio_data", &spec->gpio_data))
561 spec->gpio_dir &= spec->gpio_mask;
562 if (get_int_hint(codec, "eapd_mask", &spec->eapd_mask))
563 spec->eapd_mask &= spec->gpio_mask;
564 if (get_int_hint(codec, "gpio_mute", &spec->gpio_mute))
565 spec->gpio_mute &= spec->gpio_mask;
566 val = snd_hda_get_bool_hint(codec, "eapd_switch");
567 if (val >= 0)
568 spec->eapd_switch = val;
569}
570
571/*
572 * loopback controls
573 */
574
575#define stac_aloopback_info snd_ctl_boolean_mono_info
576
577static int stac_aloopback_get(struct snd_kcontrol *kcontrol,
578 struct snd_ctl_elem_value *ucontrol)
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200579{
580 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100581 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200582 struct sigmatel_spec *spec = codec->spec;
583
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100584 ucontrol->value.integer.value[0] = !!(spec->aloopback &
585 (spec->aloopback_mask << idx));
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200586 return 0;
587}
588
Takashi Iwai36c9db72013-01-17 17:07:59 +0100589static int stac_aloopback_put(struct snd_kcontrol *kcontrol,
590 struct snd_ctl_elem_value *ucontrol)
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200591{
592 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
593 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100594 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200595 unsigned int dac_mode;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100596 unsigned int val, idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200597
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100598 idx_val = spec->aloopback_mask << idx;
599 if (ucontrol->value.integer.value[0])
600 val = spec->aloopback | idx_val;
601 else
602 val = spec->aloopback & ~idx_val;
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100603 if (spec->aloopback == val)
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200604 return 0;
605
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100606 spec->aloopback = val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200607
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100608 /* Only return the bits defined by the shift value of the
609 * first two bytes of the mask
610 */
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200611 dac_mode = snd_hda_codec_read(codec, codec->afg, 0,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100612 kcontrol->private_value & 0xFFFF, 0x0);
613 dac_mode >>= spec->aloopback_shift;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200614
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100615 if (spec->aloopback & idx_val) {
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200616 snd_hda_power_up(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100617 dac_mode |= idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200618 } else {
619 snd_hda_power_down(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100620 dac_mode &= ~idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200621 }
622
623 snd_hda_codec_write_cache(codec, codec->afg, 0,
624 kcontrol->private_value >> 16, dac_mode);
625
626 return 1;
627}
628
Takashi Iwai36c9db72013-01-17 17:07:59 +0100629#define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
630 { \
631 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
632 .name = "Analog Loopback", \
633 .count = cnt, \
634 .info = stac_aloopback_info, \
635 .get = stac_aloopback_get, \
636 .put = stac_aloopback_put, \
637 .private_value = verb_read | (verb_write << 16), \
638 }
639
640/*
641 * Mute LED handling on HP laptops
642 */
643
644/* check whether it's a HP laptop with a docking port */
645static bool hp_bnb2011_with_dock(struct hda_codec *codec)
646{
647 if (codec->vendor_id != 0x111d7605 &&
648 codec->vendor_id != 0x111d76d1)
649 return false;
650
651 switch (codec->subsystem_id) {
652 case 0x103c1618:
653 case 0x103c1619:
654 case 0x103c161a:
655 case 0x103c161b:
656 case 0x103c161c:
657 case 0x103c161d:
658 case 0x103c161e:
659 case 0x103c161f:
660
661 case 0x103c162a:
662 case 0x103c162b:
663
664 case 0x103c1630:
665 case 0x103c1631:
666
667 case 0x103c1633:
668 case 0x103c1634:
669 case 0x103c1635:
670
671 case 0x103c3587:
672 case 0x103c3588:
673 case 0x103c3589:
674 case 0x103c358a:
675
676 case 0x103c3667:
677 case 0x103c3668:
678 case 0x103c3669:
679
680 return true;
681 }
682 return false;
683}
684
685static bool hp_blike_system(u32 subsystem_id)
686{
687 switch (subsystem_id) {
688 case 0x103c1520:
689 case 0x103c1521:
690 case 0x103c1523:
691 case 0x103c1524:
692 case 0x103c1525:
693 case 0x103c1722:
694 case 0x103c1723:
695 case 0x103c1724:
696 case 0x103c1725:
697 case 0x103c1726:
698 case 0x103c1727:
699 case 0x103c1728:
700 case 0x103c1729:
701 case 0x103c172a:
702 case 0x103c172b:
703 case 0x103c307e:
704 case 0x103c307f:
705 case 0x103c3080:
706 case 0x103c3081:
707 case 0x103c7007:
708 case 0x103c7008:
709 return true;
710 }
711 return false;
712}
713
714static void set_hp_led_gpio(struct hda_codec *codec)
715{
716 struct sigmatel_spec *spec = codec->spec;
717 unsigned int gpio;
718
719 if (spec->gpio_led)
720 return;
721
722 gpio = snd_hda_param_read(codec, codec->afg, AC_PAR_GPIO_CAP);
723 gpio &= AC_GPIO_IO_COUNT;
724 if (gpio > 3)
725 spec->gpio_led = 0x08; /* GPIO 3 */
726 else
727 spec->gpio_led = 0x01; /* GPIO 0 */
728}
729
730/*
731 * This method searches for the mute LED GPIO configuration
732 * provided as OEM string in SMBIOS. The format of that string
733 * is HP_Mute_LED_P_G or HP_Mute_LED_P
734 * where P can be 0 or 1 and defines mute LED GPIO control state (low/high)
735 * that corresponds to the NOT muted state of the master volume
736 * and G is the index of the GPIO to use as the mute LED control (0..9)
737 * If _G portion is missing it is assigned based on the codec ID
738 *
739 * So, HP B-series like systems may have HP_Mute_LED_0 (current models)
740 * or HP_Mute_LED_0_3 (future models) OEM SMBIOS strings
741 *
742 *
743 * The dv-series laptops don't seem to have the HP_Mute_LED* strings in
744 * SMBIOS - at least the ones I have seen do not have them - which include
745 * my own system (HP Pavilion dv6-1110ax) and my cousin's
746 * HP Pavilion dv9500t CTO.
747 * Need more information on whether it is true across the entire series.
748 * -- kunal
749 */
750static int find_mute_led_cfg(struct hda_codec *codec, int default_polarity)
751{
752 struct sigmatel_spec *spec = codec->spec;
753 const struct dmi_device *dev = NULL;
754
755 if (get_int_hint(codec, "gpio_led", &spec->gpio_led)) {
756 get_int_hint(codec, "gpio_led_polarity",
757 &spec->gpio_led_polarity);
758 return 1;
759 }
760
761 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
762 if (sscanf(dev->name, "HP_Mute_LED_%d_%x",
763 &spec->gpio_led_polarity,
764 &spec->gpio_led) == 2) {
765 unsigned int max_gpio;
766 max_gpio = snd_hda_param_read(codec, codec->afg,
767 AC_PAR_GPIO_CAP);
768 max_gpio &= AC_GPIO_IO_COUNT;
769 if (spec->gpio_led < max_gpio)
770 spec->gpio_led = 1 << spec->gpio_led;
771 else
772 spec->vref_mute_led_nid = spec->gpio_led;
773 return 1;
774 }
775 if (sscanf(dev->name, "HP_Mute_LED_%d",
776 &spec->gpio_led_polarity) == 1) {
777 set_hp_led_gpio(codec);
778 return 1;
779 }
780 /* BIOS bug: unfilled OEM string */
781 if (strstr(dev->name, "HP_Mute_LED_P_G")) {
782 set_hp_led_gpio(codec);
783 if (default_polarity >= 0)
784 spec->gpio_led_polarity = default_polarity;
785 else
786 spec->gpio_led_polarity = 1;
787 return 1;
788 }
789 }
790
791 /*
792 * Fallback case - if we don't find the DMI strings,
793 * we statically set the GPIO - if not a B-series system
794 * and default polarity is provided
795 */
796 if (!hp_blike_system(codec->subsystem_id) &&
797 (default_polarity == 0 || default_polarity == 1)) {
798 set_hp_led_gpio(codec);
799 spec->gpio_led_polarity = default_polarity;
800 return 1;
801 }
802 return 0;
803}
804
805/*
806 * PC beep controls
807 */
808
809/* create PC beep volume controls */
810static int stac_auto_create_beep_ctls(struct hda_codec *codec,
811 hda_nid_t nid)
812{
813 struct sigmatel_spec *spec = codec->spec;
814 u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
815 struct snd_kcontrol_new *knew;
816 static struct snd_kcontrol_new abeep_mute_ctl =
817 HDA_CODEC_MUTE(NULL, 0, 0, 0);
818 static struct snd_kcontrol_new dbeep_mute_ctl =
819 HDA_CODEC_MUTE_BEEP(NULL, 0, 0, 0);
820 static struct snd_kcontrol_new beep_vol_ctl =
821 HDA_CODEC_VOLUME(NULL, 0, 0, 0);
822
823 /* check for mute support for the the amp */
824 if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) {
825 const struct snd_kcontrol_new *temp;
826 if (spec->anabeep_nid == nid)
827 temp = &abeep_mute_ctl;
828 else
829 temp = &dbeep_mute_ctl;
830 knew = snd_hda_gen_add_kctl(&spec->gen,
831 "Beep Playback Switch", temp);
832 if (!knew)
833 return -ENOMEM;
834 knew->private_value =
835 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT);
836 }
837
838 /* check to see if there is volume support for the amp */
839 if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) {
840 knew = snd_hda_gen_add_kctl(&spec->gen,
841 "Beep Playback Volume",
842 &beep_vol_ctl);
843 if (!knew)
844 return -ENOMEM;
845 knew->private_value =
846 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT);
847 }
848 return 0;
849}
850
851#ifdef CONFIG_SND_HDA_INPUT_BEEP
852#define stac_dig_beep_switch_info snd_ctl_boolean_mono_info
853
854static int stac_dig_beep_switch_get(struct snd_kcontrol *kcontrol,
855 struct snd_ctl_elem_value *ucontrol)
856{
857 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
858 ucontrol->value.integer.value[0] = codec->beep->enabled;
859 return 0;
860}
861
862static int stac_dig_beep_switch_put(struct snd_kcontrol *kcontrol,
863 struct snd_ctl_elem_value *ucontrol)
864{
865 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
866 return snd_hda_enable_beep_device(codec, ucontrol->value.integer.value[0]);
867}
868
869static const struct snd_kcontrol_new stac_dig_beep_ctrl = {
870 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
871 .name = "Beep Playback Switch",
872 .info = stac_dig_beep_switch_info,
873 .get = stac_dig_beep_switch_get,
874 .put = stac_dig_beep_switch_put,
875};
876
877static int stac_beep_switch_ctl(struct hda_codec *codec)
878{
879 struct sigmatel_spec *spec = codec->spec;
880
881 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, &stac_dig_beep_ctrl))
882 return -ENOMEM;
883 return 0;
884}
885#endif
886
887/*
888 */
889
Takashi Iwai2b635362011-05-02 12:33:43 +0200890static const struct hda_verb stac9200_core_init[] = {
Matt2f2f4252005-04-13 14:45:30 +0200891 /* set dac0mux for dac converter */
Mattc7d4b2f2005-06-27 14:59:41 +0200892 { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
Matt2f2f4252005-04-13 14:45:30 +0200893 {}
894};
895
Takashi Iwai2b635362011-05-02 12:33:43 +0200896static const struct hda_verb stac9200_eapd_init[] = {
Takashi Iwai1194b5b2007-10-10 10:04:26 +0200897 /* set dac0mux for dac converter */
898 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
899 {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
900 {}
901};
902
Takashi Iwai2b635362011-05-02 12:33:43 +0200903static const struct hda_verb dell_eq_core_init[] = {
Matthew Ranostayd654a662008-03-14 08:46:51 +0100904 /* set master volume to max value without distortion
905 * and direct control */
906 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec},
Matthew Ranostayd654a662008-03-14 08:46:51 +0100907 {}
908};
909
Takashi Iwai2b635362011-05-02 12:33:43 +0200910static const struct hda_verb stac92hd73xx_core_init[] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100911 /* set master volume and direct control */
912 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100913 {}
914};
915
Takashi Iwai2b635362011-05-02 12:33:43 +0200916static const struct hda_verb stac92hd83xxx_core_init[] = {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200917 /* power state controls amps */
918 { 0x01, AC_VERB_SET_EAPD, 1 << 2},
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -0200919 {}
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200920};
921
Vitaliy Kulikov5556e142012-02-27 16:47:37 -0600922static const struct hda_verb stac92hd83xxx_hp_zephyr_init[] = {
923 { 0x22, 0x785, 0x43 },
924 { 0x22, 0x782, 0xe0 },
925 { 0x22, 0x795, 0x00 },
926 {}
927};
928
Takashi Iwai2b635362011-05-02 12:33:43 +0200929static const struct hda_verb stac92hd71bxx_core_init[] = {
Matthew Ranostaye035b842007-11-06 11:53:55 +0100930 /* set master volume and direct control */
931 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -0200932 {}
Matthew Ranostay541eee82007-12-14 12:08:04 +0100933};
934
Takashi Iwai2b635362011-05-02 12:33:43 +0200935static const struct hda_verb stac92hd71bxx_unmute_core_init[] = {
Matthew Ranostayca8d33f2009-01-26 09:33:52 -0500936 /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */
937 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Matthew Ranostaye035b842007-11-06 11:53:55 +0100938 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
939 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Matthew Ranostaye035b842007-11-06 11:53:55 +0100940 {}
941};
942
Takashi Iwai2b635362011-05-02 12:33:43 +0200943static const struct hda_verb stac925x_core_init[] = {
Tobin Davis8e21c342007-01-08 11:04:17 +0100944 /* set dac0mux for dac converter */
945 { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwaic9280d62009-01-15 17:31:00 +0100946 /* mute the master volume */
947 { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
Tobin Davis8e21c342007-01-08 11:04:17 +0100948 {}
949};
950
Takashi Iwai2b635362011-05-02 12:33:43 +0200951static const struct hda_verb stac922x_core_init[] = {
Takashi Iwai36c9db72013-01-17 17:07:59 +0100952 /* set master volume and direct control */
Mattc7d4b2f2005-06-27 14:59:41 +0200953 { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matt2f2f4252005-04-13 14:45:30 +0200954 {}
955};
956
Takashi Iwai2b635362011-05-02 12:33:43 +0200957static const struct hda_verb d965_core_init[] = {
Takashi Iwai19039bd2006-06-28 15:52:16 +0200958 /* unmute node 0x1b */
959 { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
Takashi Iwai36c9db72013-01-17 17:07:59 +0100960 /* select node 0x03 as DAC */
Takashi Iwai19039bd2006-06-28 15:52:16 +0200961 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
962 {}
963};
964
Takashi Iwai2b635362011-05-02 12:33:43 +0200965static const struct hda_verb dell_3st_core_init[] = {
Takashi Iwaiccca7cd2009-10-13 15:32:21 +0200966 /* don't set delta bit */
967 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
968 /* unmute node 0x1b */
969 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
970 /* select node 0x03 as DAC */
971 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
972 {}
973};
974
Takashi Iwai2b635362011-05-02 12:33:43 +0200975static const struct hda_verb stac927x_core_init[] = {
Takashi Iwai36c9db72013-01-17 17:07:59 +0100976 /* set master volume and direct control */
Matt Porter3cc08dc2006-01-23 15:27:49 +0100977 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200978 /* enable analog pc beep path */
979 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
Matt Porter3cc08dc2006-01-23 15:27:49 +0100980 {}
981};
982
Takashi Iwai2b635362011-05-02 12:33:43 +0200983static const struct hda_verb stac927x_volknob_core_init[] = {
Takashi Iwai54930532009-10-11 17:38:29 +0200984 /* don't set delta bit */
985 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
986 /* enable analog pc beep path */
987 {0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
988 {}
989};
990
Takashi Iwai2b635362011-05-02 12:33:43 +0200991static const struct hda_verb stac9205_core_init[] = {
Takashi Iwai36c9db72013-01-17 17:07:59 +0100992 /* set master volume and direct control */
Matt Porterf3302a52006-07-31 12:49:34 +0200993 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200994 /* enable analog pc beep path */
995 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
Matt Porterf3302a52006-07-31 12:49:34 +0200996 {}
997};
998
Takashi Iwai36c9db72013-01-17 17:07:59 +0100999static const struct snd_kcontrol_new stac92hd73xx_6ch_loopback =
1000 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3);
Matthew Ranostayb22b4822008-01-22 12:32:30 +01001001
Takashi Iwai36c9db72013-01-17 17:07:59 +01001002static const struct snd_kcontrol_new stac92hd73xx_8ch_loopback =
1003 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4);
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +02001004
Takashi Iwai36c9db72013-01-17 17:07:59 +01001005static const struct snd_kcontrol_new stac92hd73xx_10ch_loopback =
1006 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5);
Nickolas Lloyd2fc99892009-05-15 15:33:30 +02001007
Takashi Iwai36c9db72013-01-17 17:07:59 +01001008static const struct snd_kcontrol_new stac92hd71bxx_loopback =
1009 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2);
Matt2f2f4252005-04-13 14:45:30 +02001010
Takashi Iwai36c9db72013-01-17 17:07:59 +01001011static const struct snd_kcontrol_new stac9205_loopback =
1012 STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001013
Takashi Iwai36c9db72013-01-17 17:07:59 +01001014static const struct snd_kcontrol_new stac927x_loopback =
1015 STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1);
Matt2f2f4252005-04-13 14:45:30 +02001016
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001017static const struct hda_pintbl ref9200_pin_configs[] = {
1018 { 0x08, 0x01c47010 },
1019 { 0x09, 0x01447010 },
1020 { 0x0d, 0x0221401f },
1021 { 0x0e, 0x01114010 },
1022 { 0x0f, 0x02a19020 },
1023 { 0x10, 0x01a19021 },
1024 { 0x11, 0x90100140 },
1025 { 0x12, 0x01813122 },
1026 {}
Matt2f2f4252005-04-13 14:45:30 +02001027};
1028
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001029static const struct hda_pintbl gateway9200_m4_pin_configs[] = {
1030 { 0x08, 0x400000fe },
1031 { 0x09, 0x404500f4 },
1032 { 0x0d, 0x400100f0 },
1033 { 0x0e, 0x90110010 },
1034 { 0x0f, 0x400100f1 },
1035 { 0x10, 0x02a1902e },
1036 { 0x11, 0x500000f2 },
1037 { 0x12, 0x500000f3 },
1038 {}
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001039};
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001040
1041static const struct hda_pintbl gateway9200_m4_2_pin_configs[] = {
1042 { 0x08, 0x400000fe },
1043 { 0x09, 0x404500f4 },
1044 { 0x0d, 0x400100f0 },
1045 { 0x0e, 0x90110010 },
1046 { 0x0f, 0x400100f1 },
1047 { 0x10, 0x02a1902e },
1048 { 0x11, 0x500000f2 },
1049 { 0x12, 0x500000f3 },
1050 {}
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001051};
1052
1053/*
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001054 STAC 9200 pin configs for
1055 102801A8
1056 102801DE
1057 102801E8
1058*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001059static const struct hda_pintbl dell9200_d21_pin_configs[] = {
1060 { 0x08, 0x400001f0 },
1061 { 0x09, 0x400001f1 },
1062 { 0x0d, 0x02214030 },
1063 { 0x0e, 0x01014010 },
1064 { 0x0f, 0x02a19020 },
1065 { 0x10, 0x01a19021 },
1066 { 0x11, 0x90100140 },
1067 { 0x12, 0x01813122 },
1068 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001069};
1070
Takashi Iwai36c9db72013-01-17 17:07:59 +01001071/*
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001072 STAC 9200 pin configs for
1073 102801C0
1074 102801C1
1075*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001076static const struct hda_pintbl dell9200_d22_pin_configs[] = {
1077 { 0x08, 0x400001f0 },
1078 { 0x09, 0x400001f1 },
1079 { 0x0d, 0x0221401f },
1080 { 0x0e, 0x01014010 },
1081 { 0x0f, 0x01813020 },
1082 { 0x10, 0x02a19021 },
1083 { 0x11, 0x90100140 },
1084 { 0x12, 0x400001f2 },
1085 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001086};
1087
Takashi Iwai36c9db72013-01-17 17:07:59 +01001088/*
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001089 STAC 9200 pin configs for
1090 102801C4 (Dell Dimension E310)
1091 102801C5
1092 102801C7
1093 102801D9
1094 102801DA
1095 102801E3
1096*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001097static const struct hda_pintbl dell9200_d23_pin_configs[] = {
1098 { 0x08, 0x400001f0 },
1099 { 0x09, 0x400001f1 },
1100 { 0x0d, 0x0221401f },
1101 { 0x0e, 0x01014010 },
1102 { 0x0f, 0x01813020 },
1103 { 0x10, 0x01a19021 },
1104 { 0x11, 0x90100140 },
1105 { 0x12, 0x400001f2 },
1106 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001107};
1108
1109
1110/*
1111 STAC 9200-32 pin configs for
1112 102801B5 (Dell Inspiron 630m)
1113 102801D8 (Dell Inspiron 640m)
1114*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001115static const struct hda_pintbl dell9200_m21_pin_configs[] = {
1116 { 0x08, 0x40c003fa },
1117 { 0x09, 0x03441340 },
1118 { 0x0d, 0x0321121f },
1119 { 0x0e, 0x90170310 },
1120 { 0x0f, 0x408003fb },
1121 { 0x10, 0x03a11020 },
1122 { 0x11, 0x401003fc },
1123 { 0x12, 0x403003fd },
1124 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001125};
1126
1127/*
1128 STAC 9200-32 pin configs for
1129 102801C2 (Dell Latitude D620)
1130 102801C8
1131 102801CC (Dell Latitude D820)
1132 102801D4
1133 102801D6
1134*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001135static const struct hda_pintbl dell9200_m22_pin_configs[] = {
1136 { 0x08, 0x40c003fa },
1137 { 0x09, 0x0144131f },
1138 { 0x0d, 0x0321121f },
1139 { 0x0e, 0x90170310 },
1140 { 0x0f, 0x90a70321 },
1141 { 0x10, 0x03a11020 },
1142 { 0x11, 0x401003fb },
1143 { 0x12, 0x40f000fc },
1144 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001145};
1146
1147/*
1148 STAC 9200-32 pin configs for
1149 102801CE (Dell XPS M1710)
1150 102801CF (Dell Precision M90)
1151*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001152static const struct hda_pintbl dell9200_m23_pin_configs[] = {
1153 { 0x08, 0x40c003fa },
1154 { 0x09, 0x01441340 },
1155 { 0x0d, 0x0421421f },
1156 { 0x0e, 0x90170310 },
1157 { 0x0f, 0x408003fb },
1158 { 0x10, 0x04a1102e },
1159 { 0x11, 0x90170311 },
1160 { 0x12, 0x403003fc },
1161 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001162};
1163
1164/*
1165 STAC 9200-32 pin configs for
1166 102801C9
1167 102801CA
1168 102801CB (Dell Latitude 120L)
1169 102801D3
1170*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001171static const struct hda_pintbl dell9200_m24_pin_configs[] = {
1172 { 0x08, 0x40c003fa },
1173 { 0x09, 0x404003fb },
1174 { 0x0d, 0x0321121f },
1175 { 0x0e, 0x90170310 },
1176 { 0x0f, 0x408003fc },
1177 { 0x10, 0x03a11020 },
1178 { 0x11, 0x401003fd },
1179 { 0x12, 0x403003fe },
1180 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001181};
1182
1183/*
1184 STAC 9200-32 pin configs for
1185 102801BD (Dell Inspiron E1505n)
1186 102801EE
1187 102801EF
1188*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001189static const struct hda_pintbl dell9200_m25_pin_configs[] = {
1190 { 0x08, 0x40c003fa },
1191 { 0x09, 0x01441340 },
1192 { 0x0d, 0x0421121f },
1193 { 0x0e, 0x90170310 },
1194 { 0x0f, 0x408003fb },
1195 { 0x10, 0x04a11020 },
1196 { 0x11, 0x401003fc },
1197 { 0x12, 0x403003fd },
1198 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001199};
1200
1201/*
1202 STAC 9200-32 pin configs for
1203 102801F5 (Dell Inspiron 1501)
1204 102801F6
1205*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001206static const struct hda_pintbl dell9200_m26_pin_configs[] = {
1207 { 0x08, 0x40c003fa },
1208 { 0x09, 0x404003fb },
1209 { 0x0d, 0x0421121f },
1210 { 0x0e, 0x90170310 },
1211 { 0x0f, 0x408003fc },
1212 { 0x10, 0x04a11020 },
1213 { 0x11, 0x401003fd },
1214 { 0x12, 0x403003fe },
1215 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001216};
1217
1218/*
1219 STAC 9200-32
1220 102801CD (Dell Inspiron E1705/9400)
1221*/
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001222static const struct hda_pintbl dell9200_m27_pin_configs[] = {
1223 { 0x08, 0x40c003fa },
1224 { 0x09, 0x01441340 },
1225 { 0x0d, 0x0421121f },
1226 { 0x0e, 0x90170310 },
1227 { 0x0f, 0x90170310 },
1228 { 0x10, 0x04a11020 },
1229 { 0x11, 0x90170310 },
1230 { 0x12, 0x40f003fc },
1231 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001232};
1233
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001234static const struct hda_pintbl oqo9200_pin_configs[] = {
1235 { 0x08, 0x40c000f0 },
1236 { 0x09, 0x404000f1 },
1237 { 0x0d, 0x0221121f },
1238 { 0x0e, 0x02211210 },
1239 { 0x0f, 0x90170111 },
1240 { 0x10, 0x90a70120 },
1241 { 0x11, 0x400000f2 },
1242 { 0x12, 0x400000f3 },
1243 {}
Tobin Davisbf277782008-02-03 20:31:47 +01001244};
1245
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001246
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001247static void stac9200_fixup_panasonic(struct hda_codec *codec,
1248 const struct hda_fixup *fix, int action)
1249{
1250 struct sigmatel_spec *spec = codec->spec;
1251
Takashi Iwai36c9db72013-01-17 17:07:59 +01001252 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001253 spec->gpio_mask = spec->gpio_dir = 0x09;
1254 spec->gpio_data = 0x00;
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001255 /* CF-74 has no headphone detection, and the driver should *NOT*
1256 * do detection and HP/speaker toggle because the hardware does it.
1257 */
Takashi Iwai36c9db72013-01-17 17:07:59 +01001258 spec->gen.suppress_auto_mute = 1;
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001259 }
1260}
1261
1262
1263static const struct hda_fixup stac9200_fixups[] = {
1264 [STAC_REF] = {
1265 .type = HDA_FIXUP_PINS,
1266 .v.pins = ref9200_pin_configs,
1267 },
1268 [STAC_9200_OQO] = {
1269 .type = HDA_FIXUP_PINS,
1270 .v.pins = oqo9200_pin_configs,
1271 .chained = true,
1272 .chain_id = STAC_9200_EAPD_INIT,
1273 },
1274 [STAC_9200_DELL_D21] = {
1275 .type = HDA_FIXUP_PINS,
1276 .v.pins = dell9200_d21_pin_configs,
1277 },
1278 [STAC_9200_DELL_D22] = {
1279 .type = HDA_FIXUP_PINS,
1280 .v.pins = dell9200_d22_pin_configs,
1281 },
1282 [STAC_9200_DELL_D23] = {
1283 .type = HDA_FIXUP_PINS,
1284 .v.pins = dell9200_d23_pin_configs,
1285 },
1286 [STAC_9200_DELL_M21] = {
1287 .type = HDA_FIXUP_PINS,
1288 .v.pins = dell9200_m21_pin_configs,
1289 },
1290 [STAC_9200_DELL_M22] = {
1291 .type = HDA_FIXUP_PINS,
1292 .v.pins = dell9200_m22_pin_configs,
1293 },
1294 [STAC_9200_DELL_M23] = {
1295 .type = HDA_FIXUP_PINS,
1296 .v.pins = dell9200_m23_pin_configs,
1297 },
1298 [STAC_9200_DELL_M24] = {
1299 .type = HDA_FIXUP_PINS,
1300 .v.pins = dell9200_m24_pin_configs,
1301 },
1302 [STAC_9200_DELL_M25] = {
1303 .type = HDA_FIXUP_PINS,
1304 .v.pins = dell9200_m25_pin_configs,
1305 },
1306 [STAC_9200_DELL_M26] = {
1307 .type = HDA_FIXUP_PINS,
1308 .v.pins = dell9200_m26_pin_configs,
1309 },
1310 [STAC_9200_DELL_M27] = {
1311 .type = HDA_FIXUP_PINS,
1312 .v.pins = dell9200_m27_pin_configs,
1313 },
1314 [STAC_9200_M4] = {
1315 .type = HDA_FIXUP_PINS,
1316 .v.pins = gateway9200_m4_pin_configs,
1317 .chained = true,
1318 .chain_id = STAC_9200_EAPD_INIT,
1319 },
1320 [STAC_9200_M4_2] = {
1321 .type = HDA_FIXUP_PINS,
1322 .v.pins = gateway9200_m4_2_pin_configs,
1323 .chained = true,
1324 .chain_id = STAC_9200_EAPD_INIT,
1325 },
1326 [STAC_9200_PANASONIC] = {
1327 .type = HDA_FIXUP_FUNC,
1328 .v.func = stac9200_fixup_panasonic,
1329 },
1330 [STAC_9200_EAPD_INIT] = {
1331 .type = HDA_FIXUP_VERBS,
1332 .v.verbs = (const struct hda_verb[]) {
1333 {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
1334 {}
1335 },
1336 },
Matt Porter403d1942005-11-29 15:00:51 +01001337};
1338
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001339static const struct hda_model_fixup stac9200_models[] = {
1340 { .id = STAC_REF, .name = "ref" },
1341 { .id = STAC_9200_OQO, .name = "oqo" },
1342 { .id = STAC_9200_DELL_D21, .name = "dell-d21" },
1343 { .id = STAC_9200_DELL_D22, .name = "dell-d22" },
1344 { .id = STAC_9200_DELL_D23, .name = "dell-d23" },
1345 { .id = STAC_9200_DELL_M21, .name = "dell-m21" },
1346 { .id = STAC_9200_DELL_M22, .name = "dell-m22" },
1347 { .id = STAC_9200_DELL_M23, .name = "dell-m23" },
1348 { .id = STAC_9200_DELL_M24, .name = "dell-m24" },
1349 { .id = STAC_9200_DELL_M25, .name = "dell-m25" },
1350 { .id = STAC_9200_DELL_M26, .name = "dell-m26" },
1351 { .id = STAC_9200_DELL_M27, .name = "dell-m27" },
1352 { .id = STAC_9200_M4, .name = "gateway-m4" },
1353 { .id = STAC_9200_M4_2, .name = "gateway-m4-2" },
1354 { .id = STAC_9200_PANASONIC, .name = "panasonic" },
1355 {}
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001356};
1357
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01001358static const struct snd_pci_quirk stac9200_fixup_tbl[] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001359 /* SigmaTel reference board */
1360 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1361 "DFI LanParty", STAC_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001362 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1363 "DFI LanParty", STAC_REF),
Matt Portere7377072006-11-06 11:20:38 +01001364 /* Dell laptops have BIOS problem */
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001365 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8,
1366 "unknown Dell", STAC_9200_DELL_D21),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001367 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001368 "Dell Inspiron 630m", STAC_9200_DELL_M21),
1369 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd,
1370 "Dell Inspiron E1505n", STAC_9200_DELL_M25),
1371 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0,
1372 "unknown Dell", STAC_9200_DELL_D22),
1373 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1,
1374 "unknown Dell", STAC_9200_DELL_D22),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001375 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001376 "Dell Latitude D620", STAC_9200_DELL_M22),
1377 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5,
1378 "unknown Dell", STAC_9200_DELL_D23),
1379 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7,
1380 "unknown Dell", STAC_9200_DELL_D23),
1381 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8,
1382 "unknown Dell", STAC_9200_DELL_M22),
1383 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9,
1384 "unknown Dell", STAC_9200_DELL_M24),
1385 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca,
1386 "unknown Dell", STAC_9200_DELL_M24),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001387 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001388 "Dell Latitude 120L", STAC_9200_DELL_M24),
Cory T. Tusar877b8662007-01-30 17:30:55 +01001389 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001390 "Dell Latitude D820", STAC_9200_DELL_M22),
Mikael Nilsson46f02ca2007-02-13 12:46:16 +01001391 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001392 "Dell Inspiron E1705/9400", STAC_9200_DELL_M27),
Mikael Nilsson46f02ca2007-02-13 12:46:16 +01001393 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001394 "Dell XPS M1710", STAC_9200_DELL_M23),
Takashi Iwaif0f96742007-02-14 00:59:17 +01001395 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001396 "Dell Precision M90", STAC_9200_DELL_M23),
1397 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3,
1398 "unknown Dell", STAC_9200_DELL_M22),
1399 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4,
1400 "unknown Dell", STAC_9200_DELL_M22),
Daniel T Chen8286c532007-05-15 11:46:23 +02001401 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001402 "unknown Dell", STAC_9200_DELL_M22),
Tobin Davis49c605d2007-05-17 09:38:24 +02001403 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001404 "Dell Inspiron 640m", STAC_9200_DELL_M21),
1405 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9,
1406 "unknown Dell", STAC_9200_DELL_D23),
1407 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da,
1408 "unknown Dell", STAC_9200_DELL_D23),
1409 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de,
1410 "unknown Dell", STAC_9200_DELL_D21),
1411 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3,
1412 "unknown Dell", STAC_9200_DELL_D23),
1413 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8,
1414 "unknown Dell", STAC_9200_DELL_D21),
1415 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee,
1416 "unknown Dell", STAC_9200_DELL_M25),
1417 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef,
1418 "unknown Dell", STAC_9200_DELL_M25),
Tobin Davis49c605d2007-05-17 09:38:24 +02001419 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001420 "Dell Inspiron 1501", STAC_9200_DELL_M26),
1421 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6,
1422 "unknown Dell", STAC_9200_DELL_M26),
Tobin Davis49c605d2007-05-17 09:38:24 +02001423 /* Panasonic */
Takashi Iwai117f2572008-03-18 09:53:23 +01001424 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC),
Takashi Iwai1194b5b2007-10-10 10:04:26 +02001425 /* Gateway machines needs EAPD to be set on resume */
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001426 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4),
1427 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2),
1428 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2),
Tobin Davisbf277782008-02-03 20:31:47 +01001429 /* OQO Mobile */
1430 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO),
Matt Porter403d1942005-11-29 15:00:51 +01001431 {} /* terminator */
1432};
1433
Takashi Iwaid2077d42013-01-14 14:20:16 +01001434static const struct hda_pintbl ref925x_pin_configs[] = {
1435 { 0x07, 0x40c003f0 },
1436 { 0x08, 0x424503f2 },
1437 { 0x0a, 0x01813022 },
1438 { 0x0b, 0x02a19021 },
1439 { 0x0c, 0x90a70320 },
1440 { 0x0d, 0x02214210 },
1441 { 0x10, 0x01019020 },
1442 { 0x11, 0x9033032e },
1443 {}
Tobin Davis8e21c342007-01-08 11:04:17 +01001444};
1445
Takashi Iwaid2077d42013-01-14 14:20:16 +01001446static const struct hda_pintbl stac925xM1_pin_configs[] = {
1447 { 0x07, 0x40c003f4 },
1448 { 0x08, 0x424503f2 },
1449 { 0x0a, 0x400000f3 },
1450 { 0x0b, 0x02a19020 },
1451 { 0x0c, 0x40a000f0 },
1452 { 0x0d, 0x90100210 },
1453 { 0x10, 0x400003f1 },
1454 { 0x11, 0x9033032e },
1455 {}
Tobin Davis8e21c342007-01-08 11:04:17 +01001456};
1457
Takashi Iwaid2077d42013-01-14 14:20:16 +01001458static const struct hda_pintbl stac925xM1_2_pin_configs[] = {
1459 { 0x07, 0x40c003f4 },
1460 { 0x08, 0x424503f2 },
1461 { 0x0a, 0x400000f3 },
1462 { 0x0b, 0x02a19020 },
1463 { 0x0c, 0x40a000f0 },
1464 { 0x0d, 0x90100210 },
1465 { 0x10, 0x400003f1 },
1466 { 0x11, 0x9033032e },
1467 {}
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001468};
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001469
Takashi Iwaid2077d42013-01-14 14:20:16 +01001470static const struct hda_pintbl stac925xM2_pin_configs[] = {
1471 { 0x07, 0x40c003f4 },
1472 { 0x08, 0x424503f2 },
1473 { 0x0a, 0x400000f3 },
1474 { 0x0b, 0x02a19020 },
1475 { 0x0c, 0x40a000f0 },
1476 { 0x0d, 0x90100210 },
1477 { 0x10, 0x400003f1 },
1478 { 0x11, 0x9033032e },
1479 {}
Tobin Davis2c11f952007-05-17 09:36:34 +02001480};
1481
Takashi Iwaid2077d42013-01-14 14:20:16 +01001482static const struct hda_pintbl stac925xM2_2_pin_configs[] = {
1483 { 0x07, 0x40c003f4 },
1484 { 0x08, 0x424503f2 },
1485 { 0x0a, 0x400000f3 },
1486 { 0x0b, 0x02a19020 },
1487 { 0x0c, 0x40a000f0 },
1488 { 0x0d, 0x90100210 },
1489 { 0x10, 0x400003f1 },
1490 { 0x11, 0x9033032e },
1491 {}
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001492};
1493
Takashi Iwaid2077d42013-01-14 14:20:16 +01001494static const struct hda_pintbl stac925xM3_pin_configs[] = {
1495 { 0x07, 0x40c003f4 },
1496 { 0x08, 0x424503f2 },
1497 { 0x0a, 0x400000f3 },
1498 { 0x0b, 0x02a19020 },
1499 { 0x0c, 0x40a000f0 },
1500 { 0x0d, 0x90100210 },
1501 { 0x10, 0x400003f1 },
1502 { 0x11, 0x503303f3 },
1503 {}
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001504};
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001505
Takashi Iwaid2077d42013-01-14 14:20:16 +01001506static const struct hda_pintbl stac925xM5_pin_configs[] = {
1507 { 0x07, 0x40c003f4 },
1508 { 0x08, 0x424503f2 },
1509 { 0x0a, 0x400000f3 },
1510 { 0x0b, 0x02a19020 },
1511 { 0x0c, 0x40a000f0 },
1512 { 0x0d, 0x90100210 },
1513 { 0x10, 0x400003f1 },
1514 { 0x11, 0x9033032e },
1515 {}
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001516};
1517
Takashi Iwaid2077d42013-01-14 14:20:16 +01001518static const struct hda_pintbl stac925xM6_pin_configs[] = {
1519 { 0x07, 0x40c003f4 },
1520 { 0x08, 0x424503f2 },
1521 { 0x0a, 0x400000f3 },
1522 { 0x0b, 0x02a19020 },
1523 { 0x0c, 0x40a000f0 },
1524 { 0x0d, 0x90100210 },
1525 { 0x10, 0x400003f1 },
1526 { 0x11, 0x90330320 },
1527 {}
Tobin Davis8e21c342007-01-08 11:04:17 +01001528};
1529
Takashi Iwaid2077d42013-01-14 14:20:16 +01001530static const struct hda_fixup stac925x_fixups[] = {
1531 [STAC_REF] = {
1532 .type = HDA_FIXUP_PINS,
1533 .v.pins = ref925x_pin_configs,
1534 },
1535 [STAC_M1] = {
1536 .type = HDA_FIXUP_PINS,
1537 .v.pins = stac925xM1_pin_configs,
1538 },
1539 [STAC_M1_2] = {
1540 .type = HDA_FIXUP_PINS,
1541 .v.pins = stac925xM1_2_pin_configs,
1542 },
1543 [STAC_M2] = {
1544 .type = HDA_FIXUP_PINS,
1545 .v.pins = stac925xM2_pin_configs,
1546 },
1547 [STAC_M2_2] = {
1548 .type = HDA_FIXUP_PINS,
1549 .v.pins = stac925xM2_2_pin_configs,
1550 },
1551 [STAC_M3] = {
1552 .type = HDA_FIXUP_PINS,
1553 .v.pins = stac925xM3_pin_configs,
1554 },
1555 [STAC_M5] = {
1556 .type = HDA_FIXUP_PINS,
1557 .v.pins = stac925xM5_pin_configs,
1558 },
1559 [STAC_M6] = {
1560 .type = HDA_FIXUP_PINS,
1561 .v.pins = stac925xM6_pin_configs,
1562 },
Tobin Davis8e21c342007-01-08 11:04:17 +01001563};
1564
Takashi Iwaid2077d42013-01-14 14:20:16 +01001565static const struct hda_model_fixup stac925x_models[] = {
1566 { .id = STAC_REF, .name = "ref" },
1567 { .id = STAC_M1, .name = "m1" },
1568 { .id = STAC_M1_2, .name = "m1-2" },
1569 { .id = STAC_M2, .name = "m2" },
1570 { .id = STAC_M2_2, .name = "m2-2" },
1571 { .id = STAC_M3, .name = "m3" },
1572 { .id = STAC_M5, .name = "m5" },
1573 { .id = STAC_M6, .name = "m6" },
1574 {}
Tobin Davis8e21c342007-01-08 11:04:17 +01001575};
1576
Takashi Iwaid2077d42013-01-14 14:20:16 +01001577static const struct snd_pci_quirk stac925x_fixup_tbl[] = {
1578 /* SigmaTel reference board */
1579 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF),
1580 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, "DFI LanParty", STAC_REF),
1581 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF),
1582
1583 /* Default table for unknown ID */
1584 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2),
1585
1586 /* gateway machines are checked via codec ssid */
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001587 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2),
1588 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5),
1589 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1),
1590 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001591 SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001592 /* Not sure about the brand name for those */
1593 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1),
1594 SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3),
1595 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6),
1596 SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001597 {} /* terminator */
Tobin Davis8e21c342007-01-08 11:04:17 +01001598};
1599
Takashi Iwai55e30142013-01-14 17:30:04 +01001600static const struct hda_pintbl ref92hd73xx_pin_configs[] = {
1601 { 0x0a, 0x02214030 },
1602 { 0x0b, 0x02a19040 },
1603 { 0x0c, 0x01a19020 },
1604 { 0x0d, 0x02214030 },
1605 { 0x0e, 0x0181302e },
1606 { 0x0f, 0x01014010 },
1607 { 0x10, 0x01014020 },
1608 { 0x11, 0x01014030 },
1609 { 0x12, 0x02319040 },
1610 { 0x13, 0x90a000f0 },
1611 { 0x14, 0x90a000f0 },
1612 { 0x22, 0x01452050 },
1613 { 0x23, 0x01452050 },
1614 {}
Matthew Ranostaya7662642008-02-21 07:51:14 +01001615};
1616
Takashi Iwai55e30142013-01-14 17:30:04 +01001617static const struct hda_pintbl dell_m6_pin_configs[] = {
1618 { 0x0a, 0x0321101f },
1619 { 0x0b, 0x4f00000f },
1620 { 0x0c, 0x4f0000f0 },
1621 { 0x0d, 0x90170110 },
1622 { 0x0e, 0x03a11020 },
1623 { 0x0f, 0x0321101f },
1624 { 0x10, 0x4f0000f0 },
1625 { 0x11, 0x4f0000f0 },
1626 { 0x12, 0x4f0000f0 },
1627 { 0x13, 0x90a60160 },
1628 { 0x14, 0x4f0000f0 },
1629 { 0x22, 0x4f0000f0 },
1630 { 0x23, 0x4f0000f0 },
1631 {}
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001632};
1633
Takashi Iwai55e30142013-01-14 17:30:04 +01001634static const struct hda_pintbl alienware_m17x_pin_configs[] = {
1635 { 0x0a, 0x0321101f },
1636 { 0x0b, 0x0321101f },
1637 { 0x0c, 0x03a11020 },
1638 { 0x0d, 0x03014020 },
1639 { 0x0e, 0x90170110 },
1640 { 0x0f, 0x4f0000f0 },
1641 { 0x10, 0x4f0000f0 },
1642 { 0x11, 0x4f0000f0 },
1643 { 0x12, 0x4f0000f0 },
1644 { 0x13, 0x90a60160 },
1645 { 0x14, 0x4f0000f0 },
1646 { 0x22, 0x4f0000f0 },
1647 { 0x23, 0x904601b0 },
1648 {}
Takashi Iwai842ae632009-09-02 07:43:08 +02001649};
1650
Takashi Iwai55e30142013-01-14 17:30:04 +01001651static const struct hda_pintbl intel_dg45id_pin_configs[] = {
1652 { 0x0a, 0x02214230 },
1653 { 0x0b, 0x02A19240 },
1654 { 0x0c, 0x01013214 },
1655 { 0x0d, 0x01014210 },
1656 { 0x0e, 0x01A19250 },
1657 { 0x0f, 0x01011212 },
1658 { 0x10, 0x01016211 },
1659 {}
Alexey Fisher52dc4382009-12-12 11:16:41 +02001660};
1661
Takashi Iwai55e30142013-01-14 17:30:04 +01001662static void stac92hd73xx_fixup_ref(struct hda_codec *codec,
1663 const struct hda_fixup *fix, int action)
1664{
1665 struct sigmatel_spec *spec = codec->spec;
1666
1667 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1668 return;
1669
1670 snd_hda_apply_pincfgs(codec, ref92hd73xx_pin_configs);
1671 spec->gpio_mask = spec->gpio_dir = spec->gpio_data = 0;
1672}
1673
1674static void stac92hd73xx_fixup_dell(struct hda_codec *codec)
1675{
1676 struct sigmatel_spec *spec = codec->spec;
1677
1678 snd_hda_apply_pincfgs(codec, dell_m6_pin_configs);
Takashi Iwai55e30142013-01-14 17:30:04 +01001679 spec->eapd_switch = 0;
1680}
1681
1682static void stac92hd73xx_fixup_dell_eq(struct hda_codec *codec,
1683 const struct hda_fixup *fix, int action)
1684{
1685 struct sigmatel_spec *spec = codec->spec;
1686
1687 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1688 return;
1689
1690 stac92hd73xx_fixup_dell(codec);
1691 snd_hda_add_verbs(codec, dell_eq_core_init);
1692 spec->volknob_init = 1;
1693}
1694
1695/* Analog Mics */
1696static void stac92hd73xx_fixup_dell_m6_amic(struct hda_codec *codec,
1697 const struct hda_fixup *fix, int action)
1698{
Takashi Iwai55e30142013-01-14 17:30:04 +01001699 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1700 return;
1701
1702 stac92hd73xx_fixup_dell(codec);
1703 snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
Takashi Iwai55e30142013-01-14 17:30:04 +01001704}
1705
1706/* Digital Mics */
1707static void stac92hd73xx_fixup_dell_m6_dmic(struct hda_codec *codec,
1708 const struct hda_fixup *fix, int action)
1709{
Takashi Iwai55e30142013-01-14 17:30:04 +01001710 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1711 return;
1712
1713 stac92hd73xx_fixup_dell(codec);
1714 snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
Takashi Iwai55e30142013-01-14 17:30:04 +01001715}
1716
1717/* Both */
1718static void stac92hd73xx_fixup_dell_m6_both(struct hda_codec *codec,
1719 const struct hda_fixup *fix, int action)
1720{
Takashi Iwai55e30142013-01-14 17:30:04 +01001721 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1722 return;
1723
1724 stac92hd73xx_fixup_dell(codec);
1725 snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
1726 snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
Takashi Iwai55e30142013-01-14 17:30:04 +01001727}
1728
1729static void stac92hd73xx_fixup_alienware_m17x(struct hda_codec *codec,
1730 const struct hda_fixup *fix, int action)
1731{
1732 struct sigmatel_spec *spec = codec->spec;
1733
1734 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1735 return;
1736
1737 snd_hda_apply_pincfgs(codec, alienware_m17x_pin_configs);
Takashi Iwai55e30142013-01-14 17:30:04 +01001738 spec->eapd_switch = 0;
1739}
1740
1741static void stac92hd73xx_fixup_no_jd(struct hda_codec *codec,
1742 const struct hda_fixup *fix, int action)
1743{
Takashi Iwai36c9db72013-01-17 17:07:59 +01001744 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1745 codec->no_jack_detect = 1;
Takashi Iwai55e30142013-01-14 17:30:04 +01001746}
1747
1748static const struct hda_fixup stac92hd73xx_fixups[] = {
1749 [STAC_92HD73XX_REF] = {
1750 .type = HDA_FIXUP_FUNC,
1751 .v.func = stac92hd73xx_fixup_ref,
1752 },
1753 [STAC_DELL_M6_AMIC] = {
1754 .type = HDA_FIXUP_FUNC,
1755 .v.func = stac92hd73xx_fixup_dell_m6_amic,
1756 },
1757 [STAC_DELL_M6_DMIC] = {
1758 .type = HDA_FIXUP_FUNC,
1759 .v.func = stac92hd73xx_fixup_dell_m6_dmic,
1760 },
1761 [STAC_DELL_M6_BOTH] = {
1762 .type = HDA_FIXUP_FUNC,
1763 .v.func = stac92hd73xx_fixup_dell_m6_both,
1764 },
1765 [STAC_DELL_EQ] = {
1766 .type = HDA_FIXUP_FUNC,
1767 .v.func = stac92hd73xx_fixup_dell_eq,
1768 },
1769 [STAC_ALIENWARE_M17X] = {
1770 .type = HDA_FIXUP_FUNC,
1771 .v.func = stac92hd73xx_fixup_alienware_m17x,
1772 },
1773 [STAC_92HD73XX_INTEL] = {
1774 .type = HDA_FIXUP_PINS,
1775 .v.pins = intel_dg45id_pin_configs,
1776 },
1777 [STAC_92HD73XX_NO_JD] = {
1778 .type = HDA_FIXUP_FUNC,
1779 .v.func = stac92hd73xx_fixup_no_jd,
1780 }
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001781};
1782
Takashi Iwai55e30142013-01-14 17:30:04 +01001783static const struct hda_model_fixup stac92hd73xx_models[] = {
1784 { .id = STAC_92HD73XX_NO_JD, .name = "no-jd" },
1785 { .id = STAC_92HD73XX_REF, .name = "ref" },
1786 { .id = STAC_92HD73XX_INTEL, .name = "intel" },
1787 { .id = STAC_DELL_M6_AMIC, .name = "dell-m6-amic" },
1788 { .id = STAC_DELL_M6_DMIC, .name = "dell-m6-dmic" },
1789 { .id = STAC_DELL_M6_BOTH, .name = "dell-m6" },
1790 { .id = STAC_DELL_EQ, .name = "dell-eq" },
1791 { .id = STAC_ALIENWARE_M17X, .name = "alienware" },
1792 {}
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001793};
1794
Takashi Iwai55e30142013-01-14 17:30:04 +01001795static const struct snd_pci_quirk stac92hd73xx_fixup_tbl[] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001796 /* SigmaTel reference board */
1797 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001798 "DFI LanParty", STAC_92HD73XX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001799 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1800 "DFI LanParty", STAC_92HD73XX_REF),
Wu Fengguangae709442009-08-19 17:05:11 +08001801 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5002,
1802 "Intel DG45ID", STAC_92HD73XX_INTEL),
1803 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5003,
1804 "Intel DG45FC", STAC_92HD73XX_INTEL),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001805 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001806 "Dell Studio 1535", STAC_DELL_M6_DMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001807 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001808 "unknown Dell", STAC_DELL_M6_DMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001809 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001810 "unknown Dell", STAC_DELL_M6_BOTH),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001811 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001812 "unknown Dell", STAC_DELL_M6_BOTH),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001813 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001814 "unknown Dell", STAC_DELL_M6_AMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001815 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001816 "unknown Dell", STAC_DELL_M6_AMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001817 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001818 "unknown Dell", STAC_DELL_M6_DMIC),
1819 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0272,
1820 "unknown Dell", STAC_DELL_M6_DMIC),
Takashi Iwaib0fc5e02008-11-21 08:37:03 +01001821 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x029f,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001822 "Dell Studio 1537", STAC_DELL_M6_DMIC),
Joerg Schirottkefa620e92008-12-19 08:13:49 +01001823 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a0,
1824 "Dell Studio 17", STAC_DELL_M6_DMIC),
Takashi Iwai626f5ce2009-07-28 00:54:39 +02001825 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02be,
1826 "Dell Studio 1555", STAC_DELL_M6_DMIC),
Daniel J Blueman8ef58372009-11-14 18:20:04 +00001827 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02bd,
1828 "Dell Studio 1557", STAC_DELL_M6_DMIC),
Daniel T Chenaac78da2010-04-21 20:41:52 -04001829 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02fe,
David Henningssonffe535e2012-01-16 10:52:20 +01001830 "Dell Studio XPS 1645", STAC_DELL_M6_DMIC),
Daniel T Chen5c1bccf2010-04-22 17:54:45 -04001831 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0413,
David Henningssone033ebf2011-05-16 12:09:29 +02001832 "Dell Studio 1558", STAC_DELL_M6_DMIC),
Takashi Iwai55e30142013-01-14 17:30:04 +01001833 /* codec SSID matching */
Takashi Iwai842ae632009-09-02 07:43:08 +02001834 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a1,
1835 "Alienware M17x", STAC_ALIENWARE_M17X),
Daniel T Chen0defe092010-12-01 19:16:07 -05001836 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x043a,
1837 "Alienware M17x", STAC_ALIENWARE_M17X),
Takashi Iwaidbd1b542011-11-19 11:41:30 +01001838 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0490,
Albert Poolb9ecc4e2012-01-19 22:08:50 +01001839 "Alienware M17x R3", STAC_DELL_EQ),
Takashi Iwai842ae632009-09-02 07:43:08 +02001840 {} /* terminator */
1841};
1842
Takashi Iwai372f8c72013-01-14 18:06:34 +01001843static const struct hda_pintbl ref92hd83xxx_pin_configs[] = {
1844 { 0x0a, 0x02214030 },
1845 { 0x0b, 0x02211010 },
1846 { 0x0c, 0x02a19020 },
1847 { 0x0d, 0x02170130 },
1848 { 0x0e, 0x01014050 },
1849 { 0x0f, 0x01819040 },
1850 { 0x10, 0x01014020 },
1851 { 0x11, 0x90a3014e },
1852 { 0x1f, 0x01451160 },
1853 { 0x20, 0x98560170 },
1854 {}
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001855};
1856
Takashi Iwai372f8c72013-01-14 18:06:34 +01001857static const struct hda_pintbl dell_s14_pin_configs[] = {
1858 { 0x0a, 0x0221403f },
1859 { 0x0b, 0x0221101f },
1860 { 0x0c, 0x02a19020 },
1861 { 0x0d, 0x90170110 },
1862 { 0x0e, 0x40f000f0 },
1863 { 0x0f, 0x40f000f0 },
1864 { 0x10, 0x40f000f0 },
1865 { 0x11, 0x90a60160 },
1866 { 0x1f, 0x40f000f0 },
1867 { 0x20, 0x40f000f0 },
1868 {}
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001869};
1870
Takashi Iwai372f8c72013-01-14 18:06:34 +01001871static const struct hda_pintbl dell_vostro_3500_pin_configs[] = {
1872 { 0x0a, 0x02a11020 },
1873 { 0x0b, 0x0221101f },
1874 { 0x0c, 0x400000f0 },
1875 { 0x0d, 0x90170110 },
1876 { 0x0e, 0x400000f1 },
1877 { 0x0f, 0x400000f2 },
1878 { 0x10, 0x400000f3 },
1879 { 0x11, 0x90a60160 },
1880 { 0x1f, 0x400000f4 },
1881 { 0x20, 0x400000f5 },
1882 {}
Julian Wollrathf7f9bdf2011-11-09 10:02:40 +01001883};
1884
Takashi Iwai372f8c72013-01-14 18:06:34 +01001885static const struct hda_pintbl hp_dv7_4000_pin_configs[] = {
1886 { 0x0a, 0x03a12050 },
1887 { 0x0b, 0x0321201f },
1888 { 0x0c, 0x40f000f0 },
1889 { 0x0d, 0x90170110 },
1890 { 0x0e, 0x40f000f0 },
1891 { 0x0f, 0x40f000f0 },
1892 { 0x10, 0x90170110 },
1893 { 0x11, 0xd5a30140 },
1894 { 0x1f, 0x40f000f0 },
1895 { 0x20, 0x40f000f0 },
1896 {}
Steven Eastland48315592010-08-06 15:07:35 -06001897};
1898
Takashi Iwai372f8c72013-01-14 18:06:34 +01001899static const struct hda_pintbl hp_zephyr_pin_configs[] = {
1900 { 0x0a, 0x01813050 },
1901 { 0x0b, 0x0421201f },
1902 { 0x0c, 0x04a1205e },
1903 { 0x0d, 0x96130310 },
1904 { 0x0e, 0x96130310 },
1905 { 0x0f, 0x0101401f },
1906 { 0x10, 0x1111611f },
1907 { 0x11, 0xd5a30130 },
1908 {}
Vitaliy Kulikov5556e142012-02-27 16:47:37 -06001909};
1910
Takashi Iwai372f8c72013-01-14 18:06:34 +01001911static const struct hda_pintbl hp_cNB11_intquad_pin_configs[] = {
1912 { 0x0a, 0x40f000f0 },
1913 { 0x0b, 0x0221101f },
1914 { 0x0c, 0x02a11020 },
1915 { 0x0d, 0x92170110 },
1916 { 0x0e, 0x40f000f0 },
1917 { 0x0f, 0x92170110 },
1918 { 0x10, 0x40f000f0 },
1919 { 0x11, 0xd5a30130 },
1920 { 0x1f, 0x40f000f0 },
1921 { 0x20, 0x40f000f0 },
1922 {}
Vitaliy Kulikov0c27c182011-07-22 17:50:37 -05001923};
1924
Takashi Iwai372f8c72013-01-14 18:06:34 +01001925static void stac92hd83xxx_fixup_hp(struct hda_codec *codec,
1926 const struct hda_fixup *fix, int action)
1927{
1928 struct sigmatel_spec *spec = codec->spec;
1929
1930 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1931 return;
1932
1933 if (hp_bnb2011_with_dock(codec)) {
1934 snd_hda_codec_set_pincfg(codec, 0xa, 0x2101201f);
1935 snd_hda_codec_set_pincfg(codec, 0xf, 0x2181205e);
1936 }
1937
1938 if (find_mute_led_cfg(codec, spec->default_polarity))
1939 snd_printd("mute LED gpio %d polarity %d\n",
1940 spec->gpio_led,
1941 spec->gpio_led_polarity);
1942}
1943
1944static void stac92hd83xxx_fixup_hp_zephyr(struct hda_codec *codec,
1945 const struct hda_fixup *fix, int action)
1946{
1947 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1948 return;
1949
1950 snd_hda_apply_pincfgs(codec, hp_zephyr_pin_configs);
1951 snd_hda_add_verbs(codec, stac92hd83xxx_hp_zephyr_init);
1952}
1953
1954static void stac92hd83xxx_fixup_hp_led(struct hda_codec *codec,
1955 const struct hda_fixup *fix, int action)
1956{
1957 struct sigmatel_spec *spec = codec->spec;
1958
1959 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1960 spec->default_polarity = 0;
1961}
1962
1963static void stac92hd83xxx_fixup_hp_inv_led(struct hda_codec *codec,
1964 const struct hda_fixup *fix, int action)
1965{
1966 struct sigmatel_spec *spec = codec->spec;
1967
1968 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1969 spec->default_polarity = 1;
1970}
1971
1972static void stac92hd83xxx_fixup_hp_mic_led(struct hda_codec *codec,
1973 const struct hda_fixup *fix, int action)
1974{
1975 struct sigmatel_spec *spec = codec->spec;
1976
1977 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1978 spec->mic_mute_led_gpio = 0x08; /* GPIO3 */
1979}
1980
1981static void stac92hd83xxx_fixup_headset_jack(struct hda_codec *codec,
1982 const struct hda_fixup *fix, int action)
1983{
1984 struct sigmatel_spec *spec = codec->spec;
1985
1986 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1987 spec->headset_jack = 1;
1988}
1989
1990static const struct hda_fixup stac92hd83xxx_fixups[] = {
1991 [STAC_92HD83XXX_REF] = {
1992 .type = HDA_FIXUP_PINS,
1993 .v.pins = ref92hd83xxx_pin_configs,
1994 },
1995 [STAC_92HD83XXX_PWR_REF] = {
1996 .type = HDA_FIXUP_PINS,
1997 .v.pins = ref92hd83xxx_pin_configs,
1998 },
1999 [STAC_DELL_S14] = {
2000 .type = HDA_FIXUP_PINS,
2001 .v.pins = dell_s14_pin_configs,
2002 },
2003 [STAC_DELL_VOSTRO_3500] = {
2004 .type = HDA_FIXUP_PINS,
2005 .v.pins = dell_vostro_3500_pin_configs,
2006 },
2007 [STAC_92HD83XXX_HP_cNB11_INTQUAD] = {
2008 .type = HDA_FIXUP_PINS,
2009 .v.pins = hp_cNB11_intquad_pin_configs,
2010 .chained = true,
2011 .chain_id = STAC_92HD83XXX_HP,
2012 },
2013 [STAC_92HD83XXX_HP] = {
2014 .type = HDA_FIXUP_FUNC,
2015 .v.func = stac92hd83xxx_fixup_hp,
2016 },
2017 [STAC_HP_DV7_4000] = {
2018 .type = HDA_FIXUP_PINS,
2019 .v.pins = hp_dv7_4000_pin_configs,
2020 .chained = true,
2021 .chain_id = STAC_92HD83XXX_HP,
2022 },
2023 [STAC_HP_ZEPHYR] = {
2024 .type = HDA_FIXUP_FUNC,
2025 .v.func = stac92hd83xxx_fixup_hp_zephyr,
2026 .chained = true,
2027 .chain_id = STAC_92HD83XXX_HP,
2028 },
2029 [STAC_92HD83XXX_HP_LED] = {
2030 .type = HDA_FIXUP_FUNC,
2031 .v.func = stac92hd83xxx_fixup_hp_led,
2032 .chained = true,
2033 .chain_id = STAC_92HD83XXX_HP,
2034 },
2035 [STAC_92HD83XXX_HP_INV_LED] = {
2036 .type = HDA_FIXUP_FUNC,
2037 .v.func = stac92hd83xxx_fixup_hp_inv_led,
2038 .chained = true,
2039 .chain_id = STAC_92HD83XXX_HP,
2040 },
2041 [STAC_92HD83XXX_HP_MIC_LED] = {
2042 .type = HDA_FIXUP_FUNC,
2043 .v.func = stac92hd83xxx_fixup_hp_mic_led,
2044 .chained = true,
2045 .chain_id = STAC_92HD83XXX_HP,
2046 },
2047 [STAC_92HD83XXX_HEADSET_JACK] = {
2048 .type = HDA_FIXUP_FUNC,
2049 .v.func = stac92hd83xxx_fixup_headset_jack,
2050 },
Takashi Iwai49920422013-01-18 14:28:07 +01002051 [STAC_HP_ENVY_BASS] = {
2052 .type = HDA_FIXUP_PINS,
2053 .v.pins = (const struct hda_pintbl[]) {
2054 { 0x0f, 0x90170111 },
2055 {}
2056 },
2057 },
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02002058};
2059
Takashi Iwai372f8c72013-01-14 18:06:34 +01002060static const struct hda_model_fixup stac92hd83xxx_models[] = {
2061 { .id = STAC_92HD83XXX_REF, .name = "ref" },
2062 { .id = STAC_92HD83XXX_PWR_REF, .name = "mic-ref" },
2063 { .id = STAC_DELL_S14, .name = "dell-s14" },
2064 { .id = STAC_DELL_VOSTRO_3500, .name = "dell-vostro-3500" },
2065 { .id = STAC_92HD83XXX_HP_cNB11_INTQUAD, .name = "hp_cNB11_intquad" },
2066 { .id = STAC_HP_DV7_4000, .name = "hp-dv7-4000" },
2067 { .id = STAC_HP_ZEPHYR, .name = "hp-zephyr" },
2068 { .id = STAC_92HD83XXX_HP_LED, .name = "hp-led" },
2069 { .id = STAC_92HD83XXX_HP_INV_LED, .name = "hp-inv-led" },
2070 { .id = STAC_92HD83XXX_HP_MIC_LED, .name = "hp-mic-led" },
2071 { .id = STAC_92HD83XXX_HEADSET_JACK, .name = "headset-jack" },
Takashi Iwai49920422013-01-18 14:28:07 +01002072 { .id = STAC_HP_ENVY_BASS, .name = "hp-envy-bass" },
Takashi Iwai372f8c72013-01-14 18:06:34 +01002073 {}
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02002074};
2075
Takashi Iwai372f8c72013-01-14 18:06:34 +01002076static const struct snd_pci_quirk stac92hd83xxx_fixup_tbl[] = {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02002077 /* SigmaTel reference board */
2078 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
Takashi Iwaif9d088b2009-01-13 11:54:49 +01002079 "DFI LanParty", STAC_92HD83XXX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002080 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2081 "DFI LanParty", STAC_92HD83XXX_REF),
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05002082 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ba,
2083 "unknown Dell", STAC_DELL_S14),
David Henningsson8d032a82012-10-09 12:48:40 +02002084 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0532,
2085 "Dell Latitude E6230", STAC_92HD83XXX_HEADSET_JACK),
2086 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0533,
2087 "Dell Latitude E6330", STAC_92HD83XXX_HEADSET_JACK),
2088 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0534,
2089 "Dell Latitude E6430", STAC_92HD83XXX_HEADSET_JACK),
2090 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0535,
2091 "Dell Latitude E6530", STAC_92HD83XXX_HEADSET_JACK),
2092 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x053c,
2093 "Dell Latitude E5430", STAC_92HD83XXX_HEADSET_JACK),
2094 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x053d,
2095 "Dell Latitude E5530", STAC_92HD83XXX_HEADSET_JACK),
2096 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0549,
2097 "Dell Latitude E5430", STAC_92HD83XXX_HEADSET_JACK),
2098 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x057d,
2099 "Dell Latitude E6430s", STAC_92HD83XXX_HEADSET_JACK),
2100 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0584,
2101 "Dell Latitude E6430U", STAC_92HD83XXX_HEADSET_JACK),
Julian Wollrathf7f9bdf2011-11-09 10:02:40 +01002102 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x1028,
2103 "Dell Vostro 3500", STAC_DELL_VOSTRO_3500),
Vitaliy Kulikov0c27c182011-07-22 17:50:37 -05002104 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1656,
2105 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2106 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1657,
2107 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2108 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1658,
2109 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2110 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1659,
Takashi Iwai8ae58652012-12-13 14:33:42 +01002111 "HP Pavilion dv7", STAC_HP_DV7_4000),
Vitaliy Kulikov0c27c182011-07-22 17:50:37 -05002112 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x165A,
2113 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2114 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x165B,
2115 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
Takashi Iwai49920422013-01-18 14:28:07 +01002116 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1888,
2117 "HP Envy Spectre", STAC_HP_ENVY_BASS),
Takashi Iwai62cbde12012-09-14 11:58:54 +02002118 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x18df,
2119 "HP Folio", STAC_92HD83XXX_HP_MIC_LED),
Vitaliy Kulikov0c27c182011-07-22 17:50:37 -05002120 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3388,
2121 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2122 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3389,
2123 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2124 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355B,
2125 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2126 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355C,
2127 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2128 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355D,
2129 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2130 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355E,
2131 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2132 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355F,
2133 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2134 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3560,
2135 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2136 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358B,
2137 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2138 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358C,
2139 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2140 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358D,
2141 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2142 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3591,
2143 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2144 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3592,
2145 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2146 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3593,
2147 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
Vitaliy Kulikov5556e142012-02-27 16:47:37 -06002148 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3561,
2149 "HP", STAC_HP_ZEPHYR),
Takashi Iwaia3e19972012-07-26 08:17:20 +02002150 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3660,
2151 "HP Mini", STAC_92HD83XXX_HP_LED),
Gustavo Maciel Dias Vieira5afc13a2012-10-26 12:51:53 -02002152 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x144E,
2153 "HP Pavilion dv5", STAC_92HD83XXX_HP_INV_LED),
Takashi Iwai8c698fe2013-01-15 11:20:50 +01002154 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x148a,
2155 "HP Mini", STAC_92HD83XXX_HP_LED),
Takashi Iwai372f8c72013-01-14 18:06:34 +01002156 SND_PCI_QUIRK_VENDOR(PCI_VENDOR_ID_HP, "HP", STAC_92HD83XXX_HP),
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -02002157 {} /* terminator */
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02002158};
2159
Takashi Iwai36c9db72013-01-17 17:07:59 +01002160/* HP dv7 bass switch - GPIO5 */
2161#define stac_hp_bass_gpio_info snd_ctl_boolean_mono_info
2162static int stac_hp_bass_gpio_get(struct snd_kcontrol *kcontrol,
2163 struct snd_ctl_elem_value *ucontrol)
2164{
2165 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2166 struct sigmatel_spec *spec = codec->spec;
2167 ucontrol->value.integer.value[0] = !!(spec->gpio_data & 0x20);
2168 return 0;
2169}
2170
2171static int stac_hp_bass_gpio_put(struct snd_kcontrol *kcontrol,
2172 struct snd_ctl_elem_value *ucontrol)
2173{
2174 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2175 struct sigmatel_spec *spec = codec->spec;
2176 unsigned int gpio_data;
2177
2178 gpio_data = (spec->gpio_data & ~0x20) |
2179 (ucontrol->value.integer.value[0] ? 0x20 : 0);
2180 if (gpio_data == spec->gpio_data)
2181 return 0;
2182 spec->gpio_data = gpio_data;
2183 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, spec->gpio_data);
2184 return 1;
2185}
2186
2187static const struct snd_kcontrol_new stac_hp_bass_sw_ctrl = {
2188 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2189 .info = stac_hp_bass_gpio_info,
2190 .get = stac_hp_bass_gpio_get,
2191 .put = stac_hp_bass_gpio_put,
2192};
2193
2194static int stac_add_hp_bass_switch(struct hda_codec *codec)
2195{
2196 struct sigmatel_spec *spec = codec->spec;
2197
2198 if (!snd_hda_gen_add_kctl(&spec->gen, "Bass Speaker Playback Switch",
2199 &stac_hp_bass_sw_ctrl))
2200 return -ENOMEM;
2201
2202 spec->gpio_mask |= 0x20;
2203 spec->gpio_dir |= 0x20;
2204 spec->gpio_data |= 0x20;
2205 return 0;
2206}
2207
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002208static const struct hda_pintbl ref92hd71bxx_pin_configs[] = {
2209 { 0x0a, 0x02214030 },
2210 { 0x0b, 0x02a19040 },
2211 { 0x0c, 0x01a19020 },
2212 { 0x0d, 0x01014010 },
2213 { 0x0e, 0x0181302e },
2214 { 0x0f, 0x01014010 },
2215 { 0x14, 0x01019020 },
2216 { 0x18, 0x90a000f0 },
2217 { 0x19, 0x90a000f0 },
2218 { 0x1e, 0x01452050 },
2219 { 0x1f, 0x01452050 },
2220 {}
Matthew Ranostaye035b842007-11-06 11:53:55 +01002221};
2222
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002223static const struct hda_pintbl dell_m4_1_pin_configs[] = {
2224 { 0x0a, 0x0421101f },
2225 { 0x0b, 0x04a11221 },
2226 { 0x0c, 0x40f000f0 },
2227 { 0x0d, 0x90170110 },
2228 { 0x0e, 0x23a1902e },
2229 { 0x0f, 0x23014250 },
2230 { 0x14, 0x40f000f0 },
2231 { 0x18, 0x90a000f0 },
2232 { 0x19, 0x40f000f0 },
2233 { 0x1e, 0x4f0000f0 },
2234 { 0x1f, 0x4f0000f0 },
2235 {}
Matthew Ranostaya7662642008-02-21 07:51:14 +01002236};
2237
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002238static const struct hda_pintbl dell_m4_2_pin_configs[] = {
2239 { 0x0a, 0x0421101f },
2240 { 0x0b, 0x04a11221 },
2241 { 0x0c, 0x90a70330 },
2242 { 0x0d, 0x90170110 },
2243 { 0x0e, 0x23a1902e },
2244 { 0x0f, 0x23014250 },
2245 { 0x14, 0x40f000f0 },
2246 { 0x18, 0x40f000f0 },
2247 { 0x19, 0x40f000f0 },
2248 { 0x1e, 0x044413b0 },
2249 { 0x1f, 0x044413b0 },
2250 {}
Matthew Ranostaya7662642008-02-21 07:51:14 +01002251};
2252
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002253static const struct hda_pintbl dell_m4_3_pin_configs[] = {
2254 { 0x0a, 0x0421101f },
2255 { 0x0b, 0x04a11221 },
2256 { 0x0c, 0x90a70330 },
2257 { 0x0d, 0x90170110 },
2258 { 0x0e, 0x40f000f0 },
2259 { 0x0f, 0x40f000f0 },
2260 { 0x14, 0x40f000f0 },
2261 { 0x18, 0x90a000f0 },
2262 { 0x19, 0x40f000f0 },
2263 { 0x1e, 0x044413b0 },
2264 { 0x1f, 0x044413b0 },
2265 {}
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05002266};
2267
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002268static void stac92hd71bxx_fixup_ref(struct hda_codec *codec,
2269 const struct hda_fixup *fix, int action)
2270{
2271 struct sigmatel_spec *spec = codec->spec;
2272
2273 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2274 return;
2275
2276 snd_hda_apply_pincfgs(codec, ref92hd71bxx_pin_configs);
2277 spec->gpio_mask = spec->gpio_dir = spec->gpio_data = 0;
2278}
2279
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002280static void stac92hd71bxx_fixup_hp_m4(struct hda_codec *codec,
2281 const struct hda_fixup *fix, int action)
2282{
2283 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai36c9db72013-01-17 17:07:59 +01002284 struct hda_jack_tbl *jack;
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002285
2286 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2287 return;
2288
2289 /* Enable VREF power saving on GPIO1 detect */
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002290 snd_hda_codec_write_cache(codec, codec->afg, 0,
2291 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x02);
Takashi Iwai36c9db72013-01-17 17:07:59 +01002292 snd_hda_jack_detect_enable_callback(codec, codec->afg,
2293 STAC_VREF_EVENT,
2294 stac_vref_event);
2295 jack = snd_hda_jack_tbl_get(codec, codec->afg);
2296 if (jack)
2297 jack->private_data = 0x02;
2298
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002299 spec->gpio_mask |= 0x02;
2300
2301 /* enable internal microphone */
2302 snd_hda_codec_set_pincfg(codec, 0x0e, 0x01813040);
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002303}
2304
2305static void stac92hd71bxx_fixup_hp_dv4(struct hda_codec *codec,
2306 const struct hda_fixup *fix, int action)
2307{
2308 struct sigmatel_spec *spec = codec->spec;
2309
2310 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2311 return;
2312 spec->gpio_led = 0x01;
2313}
2314
2315static void stac92hd71bxx_fixup_hp_dv5(struct hda_codec *codec,
2316 const struct hda_fixup *fix, int action)
2317{
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002318 unsigned int cap;
2319
2320 switch (action) {
2321 case HDA_FIXUP_ACT_PRE_PROBE:
2322 snd_hda_codec_set_pincfg(codec, 0x0d, 0x90170010);
Takashi Iwaif6655d52013-01-17 08:49:01 +01002323 break;
2324
2325 case HDA_FIXUP_ACT_PROBE:
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002326 /* enable bass on HP dv7 */
2327 cap = snd_hda_param_read(codec, 0x1, AC_PAR_GPIO_CAP);
2328 cap &= AC_GPIO_IO_COUNT;
2329 if (cap >= 6)
2330 stac_add_hp_bass_switch(codec);
2331 break;
2332 }
2333}
2334
2335static void stac92hd71bxx_fixup_hp_hdx(struct hda_codec *codec,
2336 const struct hda_fixup *fix, int action)
2337{
2338 struct sigmatel_spec *spec = codec->spec;
2339
2340 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2341 return;
2342 spec->gpio_led = 0x08;
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002343}
2344
2345
2346static void stac92hd71bxx_fixup_hp(struct hda_codec *codec,
2347 const struct hda_fixup *fix, int action)
2348{
2349 struct sigmatel_spec *spec = codec->spec;
2350
2351 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2352 return;
2353
2354 if (hp_blike_system(codec->subsystem_id)) {
2355 unsigned int pin_cfg = snd_hda_codec_get_pincfg(codec, 0x0f);
2356 if (get_defcfg_device(pin_cfg) == AC_JACK_LINE_OUT ||
2357 get_defcfg_device(pin_cfg) == AC_JACK_SPEAKER ||
2358 get_defcfg_device(pin_cfg) == AC_JACK_HP_OUT) {
2359 /* It was changed in the BIOS to just satisfy MS DTM.
2360 * Lets turn it back into slaved HP
2361 */
2362 pin_cfg = (pin_cfg & (~AC_DEFCFG_DEVICE))
2363 | (AC_JACK_HP_OUT <<
2364 AC_DEFCFG_DEVICE_SHIFT);
2365 pin_cfg = (pin_cfg & (~(AC_DEFCFG_DEF_ASSOC
2366 | AC_DEFCFG_SEQUENCE)))
2367 | 0x1f;
2368 snd_hda_codec_set_pincfg(codec, 0x0f, pin_cfg);
2369 }
2370 }
2371
Takashi Iwai36c9db72013-01-17 17:07:59 +01002372 if (find_mute_led_cfg(codec, 1))
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002373 snd_printd("mute LED gpio %d polarity %d\n",
2374 spec->gpio_led,
2375 spec->gpio_led_polarity);
2376
2377}
2378
2379static const struct hda_fixup stac92hd71bxx_fixups[] = {
2380 [STAC_92HD71BXX_REF] = {
2381 .type = HDA_FIXUP_FUNC,
2382 .v.func = stac92hd71bxx_fixup_ref,
2383 },
2384 [STAC_DELL_M4_1] = {
2385 .type = HDA_FIXUP_PINS,
2386 .v.pins = dell_m4_1_pin_configs,
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002387 },
2388 [STAC_DELL_M4_2] = {
2389 .type = HDA_FIXUP_PINS,
2390 .v.pins = dell_m4_2_pin_configs,
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002391 },
2392 [STAC_DELL_M4_3] = {
2393 .type = HDA_FIXUP_PINS,
2394 .v.pins = dell_m4_3_pin_configs,
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002395 },
2396 [STAC_HP_M4] = {
2397 .type = HDA_FIXUP_FUNC,
2398 .v.func = stac92hd71bxx_fixup_hp_m4,
2399 .chained = true,
2400 .chain_id = STAC_92HD71BXX_HP,
2401 },
2402 [STAC_HP_DV4] = {
2403 .type = HDA_FIXUP_FUNC,
2404 .v.func = stac92hd71bxx_fixup_hp_dv4,
2405 .chained = true,
2406 .chain_id = STAC_HP_DV5,
2407 },
2408 [STAC_HP_DV5] = {
2409 .type = HDA_FIXUP_FUNC,
2410 .v.func = stac92hd71bxx_fixup_hp_dv5,
2411 .chained = true,
2412 .chain_id = STAC_92HD71BXX_HP,
2413 },
2414 [STAC_HP_HDX] = {
2415 .type = HDA_FIXUP_FUNC,
2416 .v.func = stac92hd71bxx_fixup_hp_hdx,
2417 .chained = true,
2418 .chain_id = STAC_92HD71BXX_HP,
2419 },
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002420 [STAC_92HD71BXX_HP] = {
2421 .type = HDA_FIXUP_FUNC,
2422 .v.func = stac92hd71bxx_fixup_hp,
2423 },
Matthew Ranostaye035b842007-11-06 11:53:55 +01002424};
2425
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002426static const struct hda_model_fixup stac92hd71bxx_models[] = {
2427 { .id = STAC_92HD71BXX_REF, .name = "ref" },
2428 { .id = STAC_DELL_M4_1, .name = "dell-m4-1" },
2429 { .id = STAC_DELL_M4_2, .name = "dell-m4-2" },
2430 { .id = STAC_DELL_M4_3, .name = "dell-m4-3" },
2431 { .id = STAC_HP_M4, .name = "hp-m4" },
2432 { .id = STAC_HP_DV4, .name = "hp-dv4" },
2433 { .id = STAC_HP_DV5, .name = "hp-dv5" },
2434 { .id = STAC_HP_HDX, .name = "hp-hdx" },
Takashi Iwai36c9db72013-01-17 17:07:59 +01002435 { .id = STAC_HP_DV4, .name = "hp-dv4-1222nr" },
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002436 {}
Matthew Ranostaye035b842007-11-06 11:53:55 +01002437};
2438
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002439static const struct snd_pci_quirk stac92hd71bxx_fixup_tbl[] = {
Matthew Ranostaye035b842007-11-06 11:53:55 +01002440 /* SigmaTel reference board */
2441 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2442 "DFI LanParty", STAC_92HD71BXX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002443 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2444 "DFI LanParty", STAC_92HD71BXX_REF),
Vitaliy Kulikov5bdaaad2009-11-04 07:57:45 +01002445 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x1720,
2446 "HP", STAC_HP_DV5),
Takashi Iwai58d83952009-03-13 17:04:34 +01002447 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3080,
2448 "HP", STAC_HP_DV5),
Takashi Iwai2ae466f2009-02-16 14:16:36 +01002449 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x30f0,
Takashi Iwai2a6ce6e2010-05-12 10:16:20 +02002450 "HP dv4-7", STAC_HP_DV4),
Takashi Iwai2ae466f2009-02-16 14:16:36 +01002451 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3600,
2452 "HP dv4-7", STAC_HP_DV5),
Takashi Iwai6fce61a2009-03-10 07:48:57 +01002453 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3610,
2454 "HP HDX", STAC_HP_HDX), /* HDX18 */
Matthew Ranostay9a9e2352008-09-26 10:37:03 -04002455 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a,
Takashi Iwai2ae466f2009-02-16 14:16:36 +01002456 "HP mini 1000", STAC_HP_M4),
Christoph Plattnerae6241f2009-03-08 23:19:05 +01002457 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361b,
Takashi Iwai6fce61a2009-03-10 07:48:57 +01002458 "HP HDX", STAC_HP_HDX), /* HDX16 */
Takashi Iwai6e34c032009-09-14 15:42:18 +02002459 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3620,
2460 "HP dv6", STAC_HP_DV5),
Kunal Gangakhedkare3d25302010-03-20 23:08:01 +05302461 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3061,
2462 "HP dv6", STAC_HP_DV5), /* HP dv6-1110ax */
Luke Yelavich9b2167d2010-10-06 15:45:46 +11002463 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x363e,
2464 "HP DV6", STAC_HP_DV5),
Takashi Iwai1972d022009-08-06 08:44:43 +02002465 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x7010,
2466 "HP", STAC_HP_DV5),
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01002467 SND_PCI_QUIRK_VENDOR(PCI_VENDOR_ID_HP, "HP", STAC_92HD71BXX_HP),
Matthew Ranostaya7662642008-02-21 07:51:14 +01002468 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,
2469 "unknown Dell", STAC_DELL_M4_1),
2470 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234,
2471 "unknown Dell", STAC_DELL_M4_1),
2472 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250,
2473 "unknown Dell", STAC_DELL_M4_1),
2474 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f,
2475 "unknown Dell", STAC_DELL_M4_1),
2476 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d,
2477 "unknown Dell", STAC_DELL_M4_1),
2478 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251,
2479 "unknown Dell", STAC_DELL_M4_1),
2480 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277,
2481 "unknown Dell", STAC_DELL_M4_1),
2482 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263,
2483 "unknown Dell", STAC_DELL_M4_2),
2484 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265,
2485 "unknown Dell", STAC_DELL_M4_2),
2486 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262,
2487 "unknown Dell", STAC_DELL_M4_2),
2488 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264,
2489 "unknown Dell", STAC_DELL_M4_2),
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05002490 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa,
2491 "unknown Dell", STAC_DELL_M4_3),
Matthew Ranostaye035b842007-11-06 11:53:55 +01002492 {} /* terminator */
2493};
2494
Takashi Iwai0a427842013-01-14 15:20:13 +01002495static const struct hda_pintbl ref922x_pin_configs[] = {
2496 { 0x0a, 0x01014010 },
2497 { 0x0b, 0x01016011 },
2498 { 0x0c, 0x01012012 },
2499 { 0x0d, 0x0221401f },
2500 { 0x0e, 0x01813122 },
2501 { 0x0f, 0x01011014 },
2502 { 0x10, 0x01441030 },
2503 { 0x11, 0x01c41030 },
2504 { 0x15, 0x40000100 },
2505 { 0x1b, 0x40000100 },
2506 {}
Matt2f2f4252005-04-13 14:45:30 +02002507};
2508
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002509/*
2510 STAC 922X pin configs for
2511 102801A7
2512 102801AB
2513 102801A9
2514 102801D1
2515 102801D2
2516*/
Takashi Iwai0a427842013-01-14 15:20:13 +01002517static const struct hda_pintbl dell_922x_d81_pin_configs[] = {
2518 { 0x0a, 0x02214030 },
2519 { 0x0b, 0x01a19021 },
2520 { 0x0c, 0x01111012 },
2521 { 0x0d, 0x01114010 },
2522 { 0x0e, 0x02a19020 },
2523 { 0x0f, 0x01117011 },
2524 { 0x10, 0x400001f0 },
2525 { 0x11, 0x400001f1 },
2526 { 0x15, 0x01813122 },
2527 { 0x1b, 0x400001f2 },
2528 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002529};
2530
2531/*
2532 STAC 922X pin configs for
2533 102801AC
2534 102801D0
2535*/
Takashi Iwai0a427842013-01-14 15:20:13 +01002536static const struct hda_pintbl dell_922x_d82_pin_configs[] = {
2537 { 0x0a, 0x02214030 },
2538 { 0x0b, 0x01a19021 },
2539 { 0x0c, 0x01111012 },
2540 { 0x0d, 0x01114010 },
2541 { 0x0e, 0x02a19020 },
2542 { 0x0f, 0x01117011 },
2543 { 0x10, 0x01451140 },
2544 { 0x11, 0x400001f0 },
2545 { 0x15, 0x01813122 },
2546 { 0x1b, 0x400001f1 },
2547 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002548};
2549
2550/*
2551 STAC 922X pin configs for
2552 102801BF
2553*/
Takashi Iwai0a427842013-01-14 15:20:13 +01002554static const struct hda_pintbl dell_922x_m81_pin_configs[] = {
2555 { 0x0a, 0x0321101f },
2556 { 0x0b, 0x01112024 },
2557 { 0x0c, 0x01111222 },
2558 { 0x0d, 0x91174220 },
2559 { 0x0e, 0x03a11050 },
2560 { 0x0f, 0x01116221 },
2561 { 0x10, 0x90a70330 },
2562 { 0x11, 0x01452340 },
2563 { 0x15, 0x40C003f1 },
2564 { 0x1b, 0x405003f0 },
2565 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002566};
2567
2568/*
2569 STAC 9221 A1 pin configs for
2570 102801D7 (Dell XPS M1210)
2571*/
Takashi Iwai0a427842013-01-14 15:20:13 +01002572static const struct hda_pintbl dell_922x_m82_pin_configs[] = {
2573 { 0x0a, 0x02211211 },
2574 { 0x0b, 0x408103ff },
2575 { 0x0c, 0x02a1123e },
2576 { 0x0d, 0x90100310 },
2577 { 0x0e, 0x408003f1 },
2578 { 0x0f, 0x0221121f },
2579 { 0x10, 0x03451340 },
2580 { 0x11, 0x40c003f2 },
2581 { 0x15, 0x508003f3 },
2582 { 0x1b, 0x405003f4 },
2583 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002584};
2585
Takashi Iwai0a427842013-01-14 15:20:13 +01002586static const struct hda_pintbl d945gtp3_pin_configs[] = {
2587 { 0x0a, 0x0221401f },
2588 { 0x0b, 0x01a19022 },
2589 { 0x0c, 0x01813021 },
2590 { 0x0d, 0x01014010 },
2591 { 0x0e, 0x40000100 },
2592 { 0x0f, 0x40000100 },
2593 { 0x10, 0x40000100 },
2594 { 0x11, 0x40000100 },
2595 { 0x15, 0x02a19120 },
2596 { 0x1b, 0x40000100 },
2597 {}
Matt Porter403d1942005-11-29 15:00:51 +01002598};
2599
Takashi Iwai0a427842013-01-14 15:20:13 +01002600static const struct hda_pintbl d945gtp5_pin_configs[] = {
2601 { 0x0a, 0x0221401f },
2602 { 0x0b, 0x01011012 },
2603 { 0x0c, 0x01813024 },
2604 { 0x0d, 0x01014010 },
2605 { 0x0e, 0x01a19021 },
2606 { 0x0f, 0x01016011 },
2607 { 0x10, 0x01452130 },
2608 { 0x11, 0x40000100 },
2609 { 0x15, 0x02a19320 },
2610 { 0x1b, 0x40000100 },
2611 {}
Matt Porter403d1942005-11-29 15:00:51 +01002612};
2613
Takashi Iwai0a427842013-01-14 15:20:13 +01002614static const struct hda_pintbl intel_mac_v1_pin_configs[] = {
2615 { 0x0a, 0x0121e21f },
2616 { 0x0b, 0x400000ff },
2617 { 0x0c, 0x9017e110 },
2618 { 0x0d, 0x400000fd },
2619 { 0x0e, 0x400000fe },
2620 { 0x0f, 0x0181e020 },
2621 { 0x10, 0x1145e030 },
2622 { 0x11, 0x11c5e240 },
2623 { 0x15, 0x400000fc },
2624 { 0x1b, 0x400000fb },
2625 {}
Takashi Iwai3fc24d82007-02-16 13:27:18 +01002626};
2627
Takashi Iwai0a427842013-01-14 15:20:13 +01002628static const struct hda_pintbl intel_mac_v2_pin_configs[] = {
2629 { 0x0a, 0x0121e21f },
2630 { 0x0b, 0x90a7012e },
2631 { 0x0c, 0x9017e110 },
2632 { 0x0d, 0x400000fd },
2633 { 0x0e, 0x400000fe },
2634 { 0x0f, 0x0181e020 },
2635 { 0x10, 0x1145e230 },
2636 { 0x11, 0x500000fa },
2637 { 0x15, 0x400000fc },
2638 { 0x1b, 0x400000fb },
2639 {}
Sylvain FORETf16928f2007-04-27 14:22:36 +02002640};
2641
Takashi Iwai0a427842013-01-14 15:20:13 +01002642static const struct hda_pintbl intel_mac_v3_pin_configs[] = {
2643 { 0x0a, 0x0121e21f },
2644 { 0x0b, 0x90a7012e },
2645 { 0x0c, 0x9017e110 },
2646 { 0x0d, 0x400000fd },
2647 { 0x0e, 0x400000fe },
2648 { 0x0f, 0x0181e020 },
2649 { 0x10, 0x1145e230 },
2650 { 0x11, 0x11c5e240 },
2651 { 0x15, 0x400000fc },
2652 { 0x1b, 0x400000fb },
2653 {}
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02002654};
2655
Takashi Iwai0a427842013-01-14 15:20:13 +01002656static const struct hda_pintbl intel_mac_v4_pin_configs[] = {
2657 { 0x0a, 0x0321e21f },
2658 { 0x0b, 0x03a1e02e },
2659 { 0x0c, 0x9017e110 },
2660 { 0x0d, 0x9017e11f },
2661 { 0x0e, 0x400000fe },
2662 { 0x0f, 0x0381e020 },
2663 { 0x10, 0x1345e230 },
2664 { 0x11, 0x13c5e240 },
2665 { 0x15, 0x400000fc },
2666 { 0x1b, 0x400000fb },
2667 {}
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02002668};
2669
Takashi Iwai0a427842013-01-14 15:20:13 +01002670static const struct hda_pintbl intel_mac_v5_pin_configs[] = {
2671 { 0x0a, 0x0321e21f },
2672 { 0x0b, 0x03a1e02e },
2673 { 0x0c, 0x9017e110 },
2674 { 0x0d, 0x9017e11f },
2675 { 0x0e, 0x400000fe },
2676 { 0x0f, 0x0381e020 },
2677 { 0x10, 0x1345e230 },
2678 { 0x11, 0x13c5e240 },
2679 { 0x15, 0x400000fc },
2680 { 0x1b, 0x400000fb },
2681 {}
Takashi Iwai0dae0f82007-05-21 12:41:29 +02002682};
2683
Takashi Iwai0a427842013-01-14 15:20:13 +01002684static const struct hda_pintbl ecs202_pin_configs[] = {
2685 { 0x0a, 0x0221401f },
2686 { 0x0b, 0x02a19020 },
2687 { 0x0c, 0x01a19020 },
2688 { 0x0d, 0x01114010 },
2689 { 0x0e, 0x408000f0 },
2690 { 0x0f, 0x01813022 },
2691 { 0x10, 0x074510a0 },
2692 { 0x11, 0x40c400f1 },
2693 { 0x15, 0x9037012e },
2694 { 0x1b, 0x40e000f2 },
2695 {}
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03002696};
Takashi Iwai76c08822007-06-19 12:17:42 +02002697
Takashi Iwai0a427842013-01-14 15:20:13 +01002698/* codec SSIDs for Intel Mac sharing the same PCI SSID 8384:7680 */
2699static const struct snd_pci_quirk stac922x_intel_mac_fixup_tbl[] = {
2700 SND_PCI_QUIRK(0x106b, 0x0800, "Mac", STAC_INTEL_MAC_V1),
2701 SND_PCI_QUIRK(0x106b, 0x0600, "Mac", STAC_INTEL_MAC_V2),
2702 SND_PCI_QUIRK(0x106b, 0x0700, "Mac", STAC_INTEL_MAC_V2),
2703 SND_PCI_QUIRK(0x106b, 0x0e00, "Mac", STAC_INTEL_MAC_V3),
2704 SND_PCI_QUIRK(0x106b, 0x0f00, "Mac", STAC_INTEL_MAC_V3),
2705 SND_PCI_QUIRK(0x106b, 0x1600, "Mac", STAC_INTEL_MAC_V3),
2706 SND_PCI_QUIRK(0x106b, 0x1700, "Mac", STAC_INTEL_MAC_V3),
2707 SND_PCI_QUIRK(0x106b, 0x0200, "Mac", STAC_INTEL_MAC_V3),
2708 SND_PCI_QUIRK(0x106b, 0x1e00, "Mac", STAC_INTEL_MAC_V3),
2709 SND_PCI_QUIRK(0x106b, 0x1a00, "Mac", STAC_INTEL_MAC_V4),
2710 SND_PCI_QUIRK(0x106b, 0x0a00, "Mac", STAC_INTEL_MAC_V5),
2711 SND_PCI_QUIRK(0x106b, 0x2200, "Mac", STAC_INTEL_MAC_V5),
2712 {}
2713};
2714
2715static const struct hda_fixup stac922x_fixups[];
2716
2717/* remap the fixup from codec SSID and apply it */
2718static void stac922x_fixup_intel_mac_auto(struct hda_codec *codec,
2719 const struct hda_fixup *fix,
2720 int action)
2721{
2722 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2723 return;
2724 snd_hda_pick_fixup(codec, NULL, stac922x_intel_mac_fixup_tbl,
2725 stac922x_fixups);
2726 if (codec->fixup_id != STAC_INTEL_MAC_AUTO)
2727 snd_hda_apply_fixup(codec, action);
2728}
2729
2730static void stac922x_fixup_intel_mac_gpio(struct hda_codec *codec,
2731 const struct hda_fixup *fix,
2732 int action)
2733{
2734 struct sigmatel_spec *spec = codec->spec;
2735
2736 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2737 spec->gpio_mask = spec->gpio_dir = 0x03;
2738 spec->gpio_data = 0x03;
2739 }
2740}
2741
2742static const struct hda_fixup stac922x_fixups[] = {
2743 [STAC_D945_REF] = {
2744 .type = HDA_FIXUP_PINS,
2745 .v.pins = ref922x_pin_configs,
2746 },
2747 [STAC_D945GTP3] = {
2748 .type = HDA_FIXUP_PINS,
2749 .v.pins = d945gtp3_pin_configs,
2750 },
2751 [STAC_D945GTP5] = {
2752 .type = HDA_FIXUP_PINS,
2753 .v.pins = d945gtp5_pin_configs,
2754 },
2755 [STAC_INTEL_MAC_AUTO] = {
2756 .type = HDA_FIXUP_FUNC,
2757 .v.func = stac922x_fixup_intel_mac_auto,
2758 },
2759 [STAC_INTEL_MAC_V1] = {
2760 .type = HDA_FIXUP_PINS,
2761 .v.pins = intel_mac_v1_pin_configs,
2762 .chained = true,
2763 .chain_id = STAC_922X_INTEL_MAC_GPIO,
2764 },
2765 [STAC_INTEL_MAC_V2] = {
2766 .type = HDA_FIXUP_PINS,
2767 .v.pins = intel_mac_v2_pin_configs,
2768 .chained = true,
2769 .chain_id = STAC_922X_INTEL_MAC_GPIO,
2770 },
2771 [STAC_INTEL_MAC_V3] = {
2772 .type = HDA_FIXUP_PINS,
2773 .v.pins = intel_mac_v3_pin_configs,
2774 .chained = true,
2775 .chain_id = STAC_922X_INTEL_MAC_GPIO,
2776 },
2777 [STAC_INTEL_MAC_V4] = {
2778 .type = HDA_FIXUP_PINS,
2779 .v.pins = intel_mac_v4_pin_configs,
2780 .chained = true,
2781 .chain_id = STAC_922X_INTEL_MAC_GPIO,
2782 },
2783 [STAC_INTEL_MAC_V5] = {
2784 .type = HDA_FIXUP_PINS,
2785 .v.pins = intel_mac_v5_pin_configs,
2786 .chained = true,
2787 .chain_id = STAC_922X_INTEL_MAC_GPIO,
2788 },
2789 [STAC_922X_INTEL_MAC_GPIO] = {
2790 .type = HDA_FIXUP_FUNC,
2791 .v.func = stac922x_fixup_intel_mac_gpio,
2792 },
2793 [STAC_ECS_202] = {
2794 .type = HDA_FIXUP_PINS,
2795 .v.pins = ecs202_pin_configs,
2796 },
2797 [STAC_922X_DELL_D81] = {
2798 .type = HDA_FIXUP_PINS,
2799 .v.pins = dell_922x_d81_pin_configs,
2800 },
2801 [STAC_922X_DELL_D82] = {
2802 .type = HDA_FIXUP_PINS,
2803 .v.pins = dell_922x_d82_pin_configs,
2804 },
2805 [STAC_922X_DELL_M81] = {
2806 .type = HDA_FIXUP_PINS,
2807 .v.pins = dell_922x_m81_pin_configs,
2808 },
2809 [STAC_922X_DELL_M82] = {
2810 .type = HDA_FIXUP_PINS,
2811 .v.pins = dell_922x_m82_pin_configs,
2812 },
2813};
2814
2815static const struct hda_model_fixup stac922x_models[] = {
2816 { .id = STAC_D945_REF, .name = "ref" },
2817 { .id = STAC_D945GTP5, .name = "5stack" },
2818 { .id = STAC_D945GTP3, .name = "3stack" },
2819 { .id = STAC_INTEL_MAC_V1, .name = "intel-mac-v1" },
2820 { .id = STAC_INTEL_MAC_V2, .name = "intel-mac-v2" },
2821 { .id = STAC_INTEL_MAC_V3, .name = "intel-mac-v3" },
2822 { .id = STAC_INTEL_MAC_V4, .name = "intel-mac-v4" },
2823 { .id = STAC_INTEL_MAC_V5, .name = "intel-mac-v5" },
2824 { .id = STAC_INTEL_MAC_AUTO, .name = "intel-mac-auto" },
2825 { .id = STAC_ECS_202, .name = "ecs202" },
2826 { .id = STAC_922X_DELL_D81, .name = "dell-d81" },
2827 { .id = STAC_922X_DELL_D82, .name = "dell-d82" },
2828 { .id = STAC_922X_DELL_M81, .name = "dell-m81" },
2829 { .id = STAC_922X_DELL_M82, .name = "dell-m82" },
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002830 /* for backward compatibility */
Takashi Iwai0a427842013-01-14 15:20:13 +01002831 { .id = STAC_INTEL_MAC_V3, .name = "macmini" },
2832 { .id = STAC_INTEL_MAC_V5, .name = "macbook" },
2833 { .id = STAC_INTEL_MAC_V3, .name = "macbook-pro-v1" },
2834 { .id = STAC_INTEL_MAC_V3, .name = "macbook-pro" },
2835 { .id = STAC_INTEL_MAC_V2, .name = "imac-intel" },
2836 { .id = STAC_INTEL_MAC_V3, .name = "imac-intel-20" },
2837 {}
Matt Porter403d1942005-11-29 15:00:51 +01002838};
2839
Takashi Iwai0a427842013-01-14 15:20:13 +01002840static const struct snd_pci_quirk stac922x_fixup_tbl[] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002841 /* SigmaTel reference board */
2842 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2843 "DFI LanParty", STAC_D945_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002844 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2845 "DFI LanParty", STAC_D945_REF),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002846 /* Intel 945G based systems */
2847 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101,
2848 "Intel D945G", STAC_D945GTP3),
2849 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202,
2850 "Intel D945G", STAC_D945GTP3),
2851 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606,
2852 "Intel D945G", STAC_D945GTP3),
2853 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601,
2854 "Intel D945G", STAC_D945GTP3),
2855 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111,
2856 "Intel D945G", STAC_D945GTP3),
2857 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115,
2858 "Intel D945G", STAC_D945GTP3),
2859 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116,
2860 "Intel D945G", STAC_D945GTP3),
2861 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117,
2862 "Intel D945G", STAC_D945GTP3),
2863 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118,
2864 "Intel D945G", STAC_D945GTP3),
2865 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119,
2866 "Intel D945G", STAC_D945GTP3),
2867 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826,
2868 "Intel D945G", STAC_D945GTP3),
2869 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049,
2870 "Intel D945G", STAC_D945GTP3),
2871 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055,
2872 "Intel D945G", STAC_D945GTP3),
2873 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048,
2874 "Intel D945G", STAC_D945GTP3),
2875 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110,
2876 "Intel D945G", STAC_D945GTP3),
2877 /* Intel D945G 5-stack systems */
2878 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404,
2879 "Intel D945G", STAC_D945GTP5),
2880 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303,
2881 "Intel D945G", STAC_D945GTP5),
2882 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013,
2883 "Intel D945G", STAC_D945GTP5),
2884 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417,
2885 "Intel D945G", STAC_D945GTP5),
2886 /* Intel 945P based systems */
2887 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b,
2888 "Intel D945P", STAC_D945GTP3),
2889 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112,
2890 "Intel D945P", STAC_D945GTP3),
2891 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d,
2892 "Intel D945P", STAC_D945GTP3),
2893 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909,
2894 "Intel D945P", STAC_D945GTP3),
2895 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505,
2896 "Intel D945P", STAC_D945GTP3),
2897 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707,
2898 "Intel D945P", STAC_D945GTP5),
Takashi Iwai8056d472009-01-23 09:09:43 +01002899 /* other intel */
2900 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0204,
2901 "Intel D945", STAC_D945_REF),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002902 /* other systems */
Takashi Iwai0a427842013-01-14 15:20:13 +01002903
Nicolas Boichat536319a2008-07-21 22:18:01 +08002904 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
Takashi Iwai0a427842013-01-14 15:20:13 +01002905 SND_PCI_QUIRK(0x8384, 0x7680, "Mac", STAC_INTEL_MAC_AUTO),
2906
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002907 /* Dell systems */
2908 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7,
2909 "unknown Dell", STAC_922X_DELL_D81),
2910 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9,
2911 "unknown Dell", STAC_922X_DELL_D81),
2912 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab,
2913 "unknown Dell", STAC_922X_DELL_D81),
2914 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac,
2915 "unknown Dell", STAC_922X_DELL_D82),
2916 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf,
2917 "unknown Dell", STAC_922X_DELL_M81),
2918 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0,
2919 "unknown Dell", STAC_922X_DELL_D82),
2920 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1,
2921 "unknown Dell", STAC_922X_DELL_D81),
2922 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2,
2923 "unknown Dell", STAC_922X_DELL_D81),
2924 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
2925 "Dell XPS M1210", STAC_922X_DELL_M82),
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03002926 /* ECS/PC Chips boards */
Takashi Iwaidea0a502009-02-09 17:14:52 +01002927 SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000,
Herton Ronaldo Krzesinski8663ae52009-02-08 19:50:34 -02002928 "ECS/PC chips", STAC_ECS_202),
Matt Porter403d1942005-11-29 15:00:51 +01002929 {} /* terminator */
2930};
2931
Takashi Iwai29ac8362013-01-14 16:03:38 +01002932static const struct hda_pintbl ref927x_pin_configs[] = {
2933 { 0x0a, 0x02214020 },
2934 { 0x0b, 0x02a19080 },
2935 { 0x0c, 0x0181304e },
2936 { 0x0d, 0x01014010 },
2937 { 0x0e, 0x01a19040 },
2938 { 0x0f, 0x01011012 },
2939 { 0x10, 0x01016011 },
2940 { 0x11, 0x0101201f },
2941 { 0x12, 0x183301f0 },
2942 { 0x13, 0x18a001f0 },
2943 { 0x14, 0x18a001f0 },
2944 { 0x21, 0x01442070 },
2945 { 0x22, 0x01c42190 },
2946 { 0x23, 0x40000100 },
2947 {}
Matt Porter3cc08dc2006-01-23 15:27:49 +01002948};
2949
Takashi Iwai29ac8362013-01-14 16:03:38 +01002950static const struct hda_pintbl d965_3st_pin_configs[] = {
2951 { 0x0a, 0x0221401f },
2952 { 0x0b, 0x02a19120 },
2953 { 0x0c, 0x40000100 },
2954 { 0x0d, 0x01014011 },
2955 { 0x0e, 0x01a19021 },
2956 { 0x0f, 0x01813024 },
2957 { 0x10, 0x40000100 },
2958 { 0x11, 0x40000100 },
2959 { 0x12, 0x40000100 },
2960 { 0x13, 0x40000100 },
2961 { 0x14, 0x40000100 },
2962 { 0x21, 0x40000100 },
2963 { 0x22, 0x40000100 },
2964 { 0x23, 0x40000100 },
2965 {}
Tobin Davis81d3dbd2006-08-22 19:44:45 +02002966};
2967
Takashi Iwai29ac8362013-01-14 16:03:38 +01002968static const struct hda_pintbl d965_5st_pin_configs[] = {
2969 { 0x0a, 0x02214020 },
2970 { 0x0b, 0x02a19080 },
2971 { 0x0c, 0x0181304e },
2972 { 0x0d, 0x01014010 },
2973 { 0x0e, 0x01a19040 },
2974 { 0x0f, 0x01011012 },
2975 { 0x10, 0x01016011 },
2976 { 0x11, 0x40000100 },
2977 { 0x12, 0x40000100 },
2978 { 0x13, 0x40000100 },
2979 { 0x14, 0x40000100 },
2980 { 0x21, 0x01442070 },
2981 { 0x22, 0x40000100 },
2982 { 0x23, 0x40000100 },
2983 {}
Tobin Davis93ed1502006-09-01 21:03:12 +02002984};
2985
Takashi Iwai29ac8362013-01-14 16:03:38 +01002986static const struct hda_pintbl d965_5st_no_fp_pin_configs[] = {
2987 { 0x0a, 0x40000100 },
2988 { 0x0b, 0x40000100 },
2989 { 0x0c, 0x0181304e },
2990 { 0x0d, 0x01014010 },
2991 { 0x0e, 0x01a19040 },
2992 { 0x0f, 0x01011012 },
2993 { 0x10, 0x01016011 },
2994 { 0x11, 0x40000100 },
2995 { 0x12, 0x40000100 },
2996 { 0x13, 0x40000100 },
2997 { 0x14, 0x40000100 },
2998 { 0x21, 0x01442070 },
2999 { 0x22, 0x40000100 },
3000 { 0x23, 0x40000100 },
3001 {}
Takashi Iwai679d92e2009-05-24 19:00:08 +02003002};
3003
Takashi Iwai29ac8362013-01-14 16:03:38 +01003004static const struct hda_pintbl dell_3st_pin_configs[] = {
3005 { 0x0a, 0x02211230 },
3006 { 0x0b, 0x02a11220 },
3007 { 0x0c, 0x01a19040 },
3008 { 0x0d, 0x01114210 },
3009 { 0x0e, 0x01111212 },
3010 { 0x0f, 0x01116211 },
3011 { 0x10, 0x01813050 },
3012 { 0x11, 0x01112214 },
3013 { 0x12, 0x403003fa },
3014 { 0x13, 0x90a60040 },
3015 { 0x14, 0x90a60040 },
3016 { 0x21, 0x404003fb },
3017 { 0x22, 0x40c003fc },
3018 { 0x23, 0x40000100 },
3019 {}
Tobin Davis4ff076e2007-08-07 11:48:12 +02003020};
3021
Takashi Iwai29ac8362013-01-14 16:03:38 +01003022static void stac927x_fixup_ref_no_jd(struct hda_codec *codec,
3023 const struct hda_fixup *fix, int action)
3024{
Takashi Iwai29ac8362013-01-14 16:03:38 +01003025 /* no jack detecion for ref-no-jd model */
Takashi Iwai36c9db72013-01-17 17:07:59 +01003026 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3027 codec->no_jack_detect = 1;
Takashi Iwai29ac8362013-01-14 16:03:38 +01003028}
3029
3030static void stac927x_fixup_ref(struct hda_codec *codec,
3031 const struct hda_fixup *fix, int action)
3032{
3033 struct sigmatel_spec *spec = codec->spec;
3034
3035 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3036 snd_hda_apply_pincfgs(codec, ref927x_pin_configs);
3037 spec->eapd_mask = spec->gpio_mask = 0;
3038 spec->gpio_dir = spec->gpio_data = 0;
3039 }
3040}
3041
3042static void stac927x_fixup_dell_dmic(struct hda_codec *codec,
3043 const struct hda_fixup *fix, int action)
3044{
3045 struct sigmatel_spec *spec = codec->spec;
3046
3047 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3048 return;
3049
3050 if (codec->subsystem_id != 0x1028022f) {
3051 /* GPIO2 High = Enable EAPD */
3052 spec->eapd_mask = spec->gpio_mask = 0x04;
3053 spec->gpio_dir = spec->gpio_data = 0x04;
3054 }
Takashi Iwai29ac8362013-01-14 16:03:38 +01003055
3056 snd_hda_add_verbs(codec, dell_3st_core_init);
3057 spec->volknob_init = 1;
Takashi Iwai29ac8362013-01-14 16:03:38 +01003058}
3059
3060static void stac927x_fixup_volknob(struct hda_codec *codec,
3061 const struct hda_fixup *fix, int action)
3062{
3063 struct sigmatel_spec *spec = codec->spec;
3064
3065 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3066 snd_hda_add_verbs(codec, stac927x_volknob_core_init);
3067 spec->volknob_init = 1;
3068 }
3069}
3070
3071static const struct hda_fixup stac927x_fixups[] = {
3072 [STAC_D965_REF_NO_JD] = {
3073 .type = HDA_FIXUP_FUNC,
3074 .v.func = stac927x_fixup_ref_no_jd,
3075 .chained = true,
3076 .chain_id = STAC_D965_REF,
3077 },
3078 [STAC_D965_REF] = {
3079 .type = HDA_FIXUP_FUNC,
3080 .v.func = stac927x_fixup_ref,
3081 },
3082 [STAC_D965_3ST] = {
3083 .type = HDA_FIXUP_PINS,
3084 .v.pins = d965_3st_pin_configs,
3085 .chained = true,
3086 .chain_id = STAC_D965_VERBS,
3087 },
3088 [STAC_D965_5ST] = {
3089 .type = HDA_FIXUP_PINS,
3090 .v.pins = d965_5st_pin_configs,
3091 .chained = true,
3092 .chain_id = STAC_D965_VERBS,
3093 },
3094 [STAC_D965_VERBS] = {
3095 .type = HDA_FIXUP_VERBS,
3096 .v.verbs = d965_core_init,
3097 },
3098 [STAC_D965_5ST_NO_FP] = {
3099 .type = HDA_FIXUP_PINS,
3100 .v.pins = d965_5st_no_fp_pin_configs,
3101 },
3102 [STAC_DELL_3ST] = {
3103 .type = HDA_FIXUP_PINS,
3104 .v.pins = dell_3st_pin_configs,
3105 .chained = true,
3106 .chain_id = STAC_927X_DELL_DMIC,
3107 },
3108 [STAC_DELL_BIOS] = {
3109 .type = HDA_FIXUP_PINS,
3110 .v.pins = (const struct hda_pintbl[]) {
3111 /* configure the analog microphone on some laptops */
3112 { 0x0c, 0x90a79130 },
3113 /* correct the front output jack as a hp out */
3114 { 0x0f, 0x0227011f },
3115 /* correct the front input jack as a mic */
3116 { 0x0e, 0x02a79130 },
3117 {}
3118 },
3119 .chained = true,
3120 .chain_id = STAC_927X_DELL_DMIC,
3121 },
3122 [STAC_DELL_BIOS_SPDIF] = {
3123 .type = HDA_FIXUP_PINS,
3124 .v.pins = (const struct hda_pintbl[]) {
3125 /* correct the device field to SPDIF out */
3126 { 0x21, 0x01442070 },
3127 {}
3128 },
3129 .chained = true,
3130 .chain_id = STAC_DELL_BIOS,
3131 },
3132 [STAC_927X_DELL_DMIC] = {
3133 .type = HDA_FIXUP_FUNC,
3134 .v.func = stac927x_fixup_dell_dmic,
3135 },
3136 [STAC_927X_VOLKNOB] = {
3137 .type = HDA_FIXUP_FUNC,
3138 .v.func = stac927x_fixup_volknob,
3139 },
Matt Porter3cc08dc2006-01-23 15:27:49 +01003140};
3141
Takashi Iwai29ac8362013-01-14 16:03:38 +01003142static const struct hda_model_fixup stac927x_models[] = {
3143 { .id = STAC_D965_REF_NO_JD, .name = "ref-no-jd" },
3144 { .id = STAC_D965_REF, .name = "ref" },
3145 { .id = STAC_D965_3ST, .name = "3stack" },
3146 { .id = STAC_D965_5ST, .name = "5stack" },
3147 { .id = STAC_D965_5ST_NO_FP, .name = "5stack-no-fp" },
3148 { .id = STAC_DELL_3ST, .name = "dell-3stack" },
3149 { .id = STAC_DELL_BIOS, .name = "dell-bios" },
3150 { .id = STAC_927X_VOLKNOB, .name = "volknob" },
3151 {}
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003152};
3153
Takashi Iwai29ac8362013-01-14 16:03:38 +01003154static const struct snd_pci_quirk stac927x_fixup_tbl[] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003155 /* SigmaTel reference board */
3156 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
3157 "DFI LanParty", STAC_D965_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05003158 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
3159 "DFI LanParty", STAC_D965_REF),
Tobin Davis81d3dbd2006-08-22 19:44:45 +02003160 /* Intel 946 based systems */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003161 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST),
3162 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST),
Tobin Davis93ed1502006-09-01 21:03:12 +02003163 /* 965 based 3 stack systems */
Takashi Iwaidea0a502009-02-09 17:14:52 +01003164 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2100,
3165 "Intel D965", STAC_D965_3ST),
3166 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2000,
3167 "Intel D965", STAC_D965_3ST),
Tobin Davis4ff076e2007-08-07 11:48:12 +02003168 /* Dell 3 stack systems */
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003169 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST),
Tobin Davis4ff076e2007-08-07 11:48:12 +02003170 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST),
3171 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01003172 /* Dell 3 stack systems with verb table in BIOS */
Matthew Ranostay2f32d902008-01-10 13:06:26 +01003173 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS),
Daniel T Chen66668b62010-05-23 20:47:45 -04003174 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f7, "Dell XPS M1730", STAC_DELL_BIOS),
Matthew Ranostay2f32d902008-01-10 13:06:26 +01003175 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS),
Takashi Iwai29ac8362013-01-14 16:03:38 +01003176 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS_SPDIF),
Chengu Wang84d3dc22009-07-30 19:43:55 +08003177 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_BIOS),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01003178 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS),
3179 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS),
3180 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS),
Takashi Iwai29ac8362013-01-14 16:03:38 +01003181 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS_SPDIF),
Tobin Davis93ed1502006-09-01 21:03:12 +02003182 /* 965 based 5 stack systems */
Takashi Iwaidea0a502009-02-09 17:14:52 +01003183 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2300,
3184 "Intel D965", STAC_D965_5ST),
3185 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2500,
3186 "Intel D965", STAC_D965_5ST),
Takashi Iwai54930532009-10-11 17:38:29 +02003187 /* volume-knob fixes */
3188 SND_PCI_QUIRK_VENDOR(0x10cf, "FSC", STAC_927X_VOLKNOB),
Matt Porter3cc08dc2006-01-23 15:27:49 +01003189 {} /* terminator */
3190};
3191
Takashi Iwaife6322c2013-01-14 14:46:51 +01003192static const struct hda_pintbl ref9205_pin_configs[] = {
3193 { 0x0a, 0x40000100 },
3194 { 0x0b, 0x40000100 },
3195 { 0x0c, 0x01016011 },
3196 { 0x0d, 0x01014010 },
3197 { 0x0e, 0x01813122 },
3198 { 0x0f, 0x01a19021 },
3199 { 0x14, 0x01019020 },
3200 { 0x16, 0x40000100 },
3201 { 0x17, 0x90a000f0 },
3202 { 0x18, 0x90a000f0 },
3203 { 0x21, 0x01441030 },
3204 { 0x22, 0x01c41030 },
3205 {}
Matt Porterf3302a52006-07-31 12:49:34 +02003206};
3207
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003208/*
3209 STAC 9205 pin configs for
3210 102801F1
3211 102801F2
3212 102801FC
3213 102801FD
3214 10280204
3215 1028021F
Matthew Ranostay3fa2ef72008-01-11 11:39:06 +01003216 10280228 (Dell Vostro 1500)
Anisse Astier95e70e82009-12-23 17:28:45 +01003217 10280229 (Dell Vostro 1700)
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003218*/
Takashi Iwaife6322c2013-01-14 14:46:51 +01003219static const struct hda_pintbl dell_9205_m42_pin_configs[] = {
3220 { 0x0a, 0x0321101F },
3221 { 0x0b, 0x03A11020 },
3222 { 0x0c, 0x400003FA },
3223 { 0x0d, 0x90170310 },
3224 { 0x0e, 0x400003FB },
3225 { 0x0f, 0x400003FC },
3226 { 0x14, 0x400003FD },
3227 { 0x16, 0x40F000F9 },
3228 { 0x17, 0x90A60330 },
3229 { 0x18, 0x400003FF },
3230 { 0x21, 0x0144131F },
3231 { 0x22, 0x40C003FE },
3232 {}
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003233};
3234
3235/*
3236 STAC 9205 pin configs for
3237 102801F9
3238 102801FA
3239 102801FE
3240 102801FF (Dell Precision M4300)
3241 10280206
3242 10280200
3243 10280201
3244*/
Takashi Iwaife6322c2013-01-14 14:46:51 +01003245static const struct hda_pintbl dell_9205_m43_pin_configs[] = {
3246 { 0x0a, 0x0321101f },
3247 { 0x0b, 0x03a11020 },
3248 { 0x0c, 0x90a70330 },
3249 { 0x0d, 0x90170310 },
3250 { 0x0e, 0x400000fe },
3251 { 0x0f, 0x400000ff },
3252 { 0x14, 0x400000fd },
3253 { 0x16, 0x40f000f9 },
3254 { 0x17, 0x400000fa },
3255 { 0x18, 0x400000fc },
3256 { 0x21, 0x0144131f },
3257 { 0x22, 0x40c003f8 },
3258 /* Enable SPDIF in/out */
3259 { 0x1f, 0x01441030 },
3260 { 0x20, 0x1c410030 },
3261 {}
Tobin Davisae0a8ed2007-08-13 15:50:29 +02003262};
3263
Takashi Iwaife6322c2013-01-14 14:46:51 +01003264static const struct hda_pintbl dell_9205_m44_pin_configs[] = {
3265 { 0x0a, 0x0421101f },
3266 { 0x0b, 0x04a11020 },
3267 { 0x0c, 0x400003fa },
3268 { 0x0d, 0x90170310 },
3269 { 0x0e, 0x400003fb },
3270 { 0x0f, 0x400003fc },
3271 { 0x14, 0x400003fd },
3272 { 0x16, 0x400003f9 },
3273 { 0x17, 0x90a60330 },
3274 { 0x18, 0x400003ff },
3275 { 0x21, 0x01441340 },
3276 { 0x22, 0x40c003fe },
3277 {}
Tobin Davisae0a8ed2007-08-13 15:50:29 +02003278};
3279
Takashi Iwaife6322c2013-01-14 14:46:51 +01003280static void stac9205_fixup_ref(struct hda_codec *codec,
3281 const struct hda_fixup *fix, int action)
3282{
3283 struct sigmatel_spec *spec = codec->spec;
3284
3285 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3286 snd_hda_apply_pincfgs(codec, ref9205_pin_configs);
3287 /* SPDIF-In enabled */
3288 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0;
3289 }
3290}
3291
Takashi Iwaife6322c2013-01-14 14:46:51 +01003292static void stac9205_fixup_dell_m43(struct hda_codec *codec,
3293 const struct hda_fixup *fix, int action)
3294{
3295 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003296 struct hda_jack_tbl *jack;
Takashi Iwaife6322c2013-01-14 14:46:51 +01003297
3298 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3299 snd_hda_apply_pincfgs(codec, dell_9205_m43_pin_configs);
3300
3301 /* Enable unsol response for GPIO4/Dock HP connection */
Takashi Iwaife6322c2013-01-14 14:46:51 +01003302 snd_hda_codec_write_cache(codec, codec->afg, 0,
3303 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10);
Takashi Iwai36c9db72013-01-17 17:07:59 +01003304 snd_hda_jack_detect_enable_callback(codec, codec->afg,
3305 STAC_VREF_EVENT,
3306 stac_vref_event);
3307 jack = snd_hda_jack_tbl_get(codec, codec->afg);
3308 if (jack)
3309 jack->private_data = 0x01;
Takashi Iwaife6322c2013-01-14 14:46:51 +01003310
3311 spec->gpio_dir = 0x0b;
3312 spec->eapd_mask = 0x01;
3313 spec->gpio_mask = 0x1b;
3314 spec->gpio_mute = 0x10;
3315 /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute,
3316 * GPIO3 Low = DRM
3317 */
3318 spec->gpio_data = 0x01;
3319 }
3320}
3321
3322static void stac9205_fixup_eapd(struct hda_codec *codec,
3323 const struct hda_fixup *fix, int action)
3324{
3325 struct sigmatel_spec *spec = codec->spec;
3326
3327 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3328 spec->eapd_switch = 0;
3329}
3330
3331static const struct hda_fixup stac9205_fixups[] = {
3332 [STAC_9205_REF] = {
3333 .type = HDA_FIXUP_FUNC,
3334 .v.func = stac9205_fixup_ref,
3335 },
3336 [STAC_9205_DELL_M42] = {
3337 .type = HDA_FIXUP_PINS,
3338 .v.pins = dell_9205_m42_pin_configs,
3339 },
3340 [STAC_9205_DELL_M43] = {
3341 .type = HDA_FIXUP_FUNC,
3342 .v.func = stac9205_fixup_dell_m43,
3343 },
3344 [STAC_9205_DELL_M44] = {
3345 .type = HDA_FIXUP_PINS,
3346 .v.pins = dell_9205_m44_pin_configs,
3347 },
3348 [STAC_9205_EAPD] = {
3349 .type = HDA_FIXUP_FUNC,
3350 .v.func = stac9205_fixup_eapd,
3351 },
3352 {}
Matt Porterf3302a52006-07-31 12:49:34 +02003353};
3354
Takashi Iwaife6322c2013-01-14 14:46:51 +01003355static const struct hda_model_fixup stac9205_models[] = {
3356 { .id = STAC_9205_REF, .name = "ref" },
3357 { .id = STAC_9205_DELL_M42, .name = "dell-m42" },
3358 { .id = STAC_9205_DELL_M43, .name = "dell-m43" },
3359 { .id = STAC_9205_DELL_M44, .name = "dell-m44" },
3360 { .id = STAC_9205_EAPD, .name = "eapd" },
3361 {}
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003362};
3363
Takashi Iwaife6322c2013-01-14 14:46:51 +01003364static const struct snd_pci_quirk stac9205_fixup_tbl[] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003365 /* SigmaTel reference board */
3366 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
3367 "DFI LanParty", STAC_9205_REF),
Herton Ronaldo Krzesinski02358fc2009-07-04 01:44:59 -03003368 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xfb30,
3369 "SigmaTel", STAC_9205_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05003370 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
3371 "DFI LanParty", STAC_9205_REF),
Takashi Iwaid9a42682009-01-22 17:40:18 +01003372 /* Dell */
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003373 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1,
3374 "unknown Dell", STAC_9205_DELL_M42),
3375 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2,
3376 "unknown Dell", STAC_9205_DELL_M42),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02003377 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8,
Matthew Ranostayb44ef2f2007-09-18 00:52:38 +02003378 "Dell Precision", STAC_9205_DELL_M43),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02003379 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9,
3380 "Dell Precision", STAC_9205_DELL_M43),
3381 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa,
3382 "Dell Precision", STAC_9205_DELL_M43),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003383 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc,
3384 "unknown Dell", STAC_9205_DELL_M42),
3385 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd,
3386 "unknown Dell", STAC_9205_DELL_M42),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02003387 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe,
3388 "Dell Precision", STAC_9205_DELL_M43),
3389 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003390 "Dell Precision M4300", STAC_9205_DELL_M43),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02003391 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204,
3392 "unknown Dell", STAC_9205_DELL_M42),
Takashi Iwai45499152008-06-12 16:27:24 +02003393 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206,
3394 "Dell Precision", STAC_9205_DELL_M43),
3395 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b,
3396 "Dell Precision", STAC_9205_DELL_M43),
3397 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c,
3398 "Dell Precision", STAC_9205_DELL_M43),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02003399 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f,
3400 "Dell Inspiron", STAC_9205_DELL_M44),
Matthew Ranostay3fa2ef72008-01-11 11:39:06 +01003401 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228,
3402 "Dell Vostro 1500", STAC_9205_DELL_M42),
Anisse Astier95e70e82009-12-23 17:28:45 +01003403 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0229,
3404 "Dell Vostro 1700", STAC_9205_DELL_M42),
Takashi Iwaid9a42682009-01-22 17:40:18 +01003405 /* Gateway */
Hao Song42b95f02009-07-20 15:01:16 +08003406 SND_PCI_QUIRK(0x107b, 0x0560, "Gateway T6834c", STAC_9205_EAPD),
Takashi Iwaid9a42682009-01-22 17:40:18 +01003407 SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD),
Matt Porterf3302a52006-07-31 12:49:34 +02003408 {} /* terminator */
3409};
3410
Takashi Iwai36c9db72013-01-17 17:07:59 +01003411static int stac_parse_auto_config(struct hda_codec *codec)
Mattc7d4b2f2005-06-27 14:59:41 +02003412{
3413 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003414 int err;
Mattc7d4b2f2005-06-27 14:59:41 +02003415
Takashi Iwai36c9db72013-01-17 17:07:59 +01003416 err = snd_hda_parse_pin_defcfg(codec, &spec->gen.autocfg, NULL, 0);
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003417 if (err < 0)
3418 return err;
3419
Takashi Iwai36c9db72013-01-17 17:07:59 +01003420 /* add hooks */
3421 spec->gen.pcm_playback_hook = stac_playback_pcm_hook;
3422 spec->gen.pcm_capture_hook = stac_capture_pcm_hook;
3423
3424 spec->gen.automute_hook = stac_update_outputs;
3425 spec->gen.hp_automute_hook = stac_hp_automute;
3426 spec->gen.line_automute_hook = stac_line_automute;
3427
3428 err = snd_hda_gen_parse_auto_config(codec, &spec->gen.autocfg);
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003429 if (err < 0)
3430 return err;
3431
Takashi Iwai36c9db72013-01-17 17:07:59 +01003432 /* minimum value is actually mute */
3433 spec->gen.vmaster_tlv[3] |= TLV_DB_SCALE_MUTE;
Mattc7d4b2f2005-06-27 14:59:41 +02003434
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003435 /* setup analog beep controls */
3436 if (spec->anabeep_nid > 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01003437 err = stac_auto_create_beep_ctls(codec,
3438 spec->anabeep_nid);
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003439 if (err < 0)
3440 return err;
3441 }
3442
3443 /* setup digital beep controls and input device */
3444#ifdef CONFIG_SND_HDA_INPUT_BEEP
3445 if (spec->digbeep_nid > 0) {
3446 hda_nid_t nid = spec->digbeep_nid;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003447 unsigned int caps;
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003448
Takashi Iwai36c9db72013-01-17 17:07:59 +01003449 err = stac_auto_create_beep_ctls(codec, nid);
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003450 if (err < 0)
3451 return err;
3452 err = snd_hda_attach_beep_device(codec, nid);
3453 if (err < 0)
3454 return err;
Takashi Iwaid8d881d2009-12-22 07:52:49 +01003455 if (codec->beep) {
3456 /* IDT/STAC codecs have linear beep tone parameter */
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01003457 codec->beep->linear_tone = spec->linear_tone_beep;
Takashi Iwaid8d881d2009-12-22 07:52:49 +01003458 /* if no beep switch is available, make its own one */
3459 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3460 if (!(caps & AC_AMPCAP_MUTE)) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01003461 err = stac_beep_switch_ctl(codec);
Takashi Iwaid8d881d2009-12-22 07:52:49 +01003462 if (err < 0)
3463 return err;
3464 }
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003465 }
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003466 }
3467#endif
3468
Takashi Iwai36c9db72013-01-17 17:07:59 +01003469 if (spec->gpio_led)
3470 spec->gen.vmaster_mute.hook = stac_vmaster_hook;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003471
Takashi Iwai36c9db72013-01-17 17:07:59 +01003472 if (spec->aloopback_ctl &&
3473 snd_hda_get_bool_hint(codec, "loopback") == 1) {
3474 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, spec->aloopback_ctl))
3475 return -ENOMEM;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003476 }
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003477
Takashi Iwai36c9db72013-01-17 17:07:59 +01003478 stac_init_power_map(codec);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003479
3480 return 0;
3481}
3482
Takashi Iwai36c9db72013-01-17 17:07:59 +01003483
3484static int stac_init(struct hda_codec *codec)
Richard Fish160ea0d2006-09-06 13:58:25 +02003485{
3486 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaif73d3582008-11-25 08:21:51 +01003487 unsigned int gpio;
Takashi Iwaie4973e12008-11-18 09:32:42 +01003488 int i;
Mattc7d4b2f2005-06-27 14:59:41 +02003489
Takashi Iwai6565e4f2009-03-02 14:38:35 +01003490 /* override some hints */
3491 stac_store_hints(codec);
3492
Takashi Iwaif73d3582008-11-25 08:21:51 +01003493 /* set up GPIO */
3494 gpio = spec->gpio_data;
3495 /* turn on EAPD statically when spec->eapd_switch isn't set.
3496 * otherwise, unsol event will turn it on/off dynamically
3497 */
3498 if (!spec->eapd_switch)
3499 gpio |= spec->eapd_mask;
3500 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, gpio);
3501
Takashi Iwai36c9db72013-01-17 17:07:59 +01003502 snd_hda_gen_init(codec);
Takashi Iwaic8822462012-05-15 09:11:36 +02003503
3504 /* sync the power-map */
3505 if (spec->num_pwrs)
3506 snd_hda_codec_write(codec, codec->afg, 0,
3507 AC_VERB_IDT_SET_POWER_MAP,
3508 spec->power_map_bits);
Takashi Iwai36c9db72013-01-17 17:07:59 +01003509
3510 /* power down inactive ADCs */
3511 if (spec->powerdown_adcs) {
3512 for (i = 0; i < spec->gen.num_all_adcs; i++) {
3513 if (spec->active_adcs & (1 << i))
3514 continue;
3515 snd_hda_codec_write(codec, spec->gen.all_adcs[i], 0,
3516 AC_VERB_SET_POWER_STATE,
3517 AC_PWRST_D3);
3518 }
3519 }
3520
3521 /* power down unused DACs */
3522 for (i = 0; i < spec->gen.num_all_dacs; i++) {
3523 if (!snd_hda_get_nid_path(codec, spec->gen.all_dacs[i], 0))
3524 snd_hda_codec_write(codec, spec->gen.all_dacs[i], 0,
3525 AC_VERB_SET_POWER_STATE,
3526 AC_PWRST_D3);
3527 }
3528
Mattc7d4b2f2005-06-27 14:59:41 +02003529 return 0;
3530}
3531
Takashi Iwai36c9db72013-01-17 17:07:59 +01003532static void stac_shutup(struct hda_codec *codec)
Takashi Iwai603c4012008-07-30 15:01:44 +02003533{
3534 struct sigmatel_spec *spec = codec->spec;
3535
Takashi Iwai36c9db72013-01-17 17:07:59 +01003536 snd_hda_shutup_pins(codec);
Takashi Iwai167eae52009-11-06 15:47:50 +01003537
3538 if (spec->eapd_mask)
3539 stac_gpio_set(codec, spec->gpio_mask,
3540 spec->gpio_dir, spec->gpio_data &
3541 ~spec->eapd_mask);
3542}
3543
Takashi Iwai36c9db72013-01-17 17:07:59 +01003544static void stac_free(struct hda_codec *codec)
Matt2f2f4252005-04-13 14:45:30 +02003545{
Mattc7d4b2f2005-06-27 14:59:41 +02003546 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +02003547
Takashi Iwai36c9db72013-01-17 17:07:59 +01003548 if (!spec)
Mattc7d4b2f2005-06-27 14:59:41 +02003549 return;
3550
Takashi Iwai36c9db72013-01-17 17:07:59 +01003551 snd_hda_gen_spec_free(&spec->gen);
Mattc7d4b2f2005-06-27 14:59:41 +02003552 kfree(spec);
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003553 snd_hda_detach_beep_device(codec);
Matt2f2f4252005-04-13 14:45:30 +02003554}
3555
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01003556#ifdef CONFIG_PROC_FS
3557static void stac92hd_proc_hook(struct snd_info_buffer *buffer,
3558 struct hda_codec *codec, hda_nid_t nid)
3559{
3560 if (nid == codec->afg)
3561 snd_iprintf(buffer, "Power-Map: 0x%02x\n",
Takashi Iwaic8822462012-05-15 09:11:36 +02003562 snd_hda_codec_read(codec, nid, 0,
3563 AC_VERB_IDT_GET_POWER_MAP, 0));
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01003564}
3565
3566static void analog_loop_proc_hook(struct snd_info_buffer *buffer,
3567 struct hda_codec *codec,
3568 unsigned int verb)
3569{
3570 snd_iprintf(buffer, "Analog Loopback: 0x%02x\n",
3571 snd_hda_codec_read(codec, codec->afg, 0, verb, 0));
3572}
3573
3574/* stac92hd71bxx, stac92hd73xx */
3575static void stac92hd7x_proc_hook(struct snd_info_buffer *buffer,
3576 struct hda_codec *codec, hda_nid_t nid)
3577{
3578 stac92hd_proc_hook(buffer, codec, nid);
3579 if (nid == codec->afg)
3580 analog_loop_proc_hook(buffer, codec, 0xfa0);
3581}
3582
3583static void stac9205_proc_hook(struct snd_info_buffer *buffer,
3584 struct hda_codec *codec, hda_nid_t nid)
3585{
3586 if (nid == codec->afg)
3587 analog_loop_proc_hook(buffer, codec, 0xfe0);
3588}
3589
3590static void stac927x_proc_hook(struct snd_info_buffer *buffer,
3591 struct hda_codec *codec, hda_nid_t nid)
3592{
3593 if (nid == codec->afg)
3594 analog_loop_proc_hook(buffer, codec, 0xfeb);
3595}
3596#else
3597#define stac92hd_proc_hook NULL
3598#define stac92hd7x_proc_hook NULL
3599#define stac9205_proc_hook NULL
3600#define stac927x_proc_hook NULL
3601#endif
3602
Takashi Iwai2a439522011-07-26 09:52:50 +02003603#ifdef CONFIG_PM
Takashi Iwai36c9db72013-01-17 17:07:59 +01003604static int stac_resume(struct hda_codec *codec)
Mattff6fdc32005-06-27 15:06:52 +02003605{
Takashi Iwai36c9db72013-01-17 17:07:59 +01003606 codec->patch_ops.init(codec);
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003607 snd_hda_codec_resume_amp(codec);
3608 snd_hda_codec_resume_cache(codec);
Mattff6fdc32005-06-27 15:06:52 +02003609 return 0;
3610}
Matthew Ranostayc6798d22008-11-18 20:54:17 -05003611
Takashi Iwai36c9db72013-01-17 17:07:59 +01003612static int stac_suspend(struct hda_codec *codec)
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003613{
Takashi Iwai36c9db72013-01-17 17:07:59 +01003614 stac_shutup(codec);
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003615 return 0;
3616}
3617
Takashi Iwai36c9db72013-01-17 17:07:59 +01003618static void stac_set_power_state(struct hda_codec *codec, hda_nid_t fg,
3619 unsigned int power_state)
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003620{
3621 unsigned int afg_power_state = power_state;
3622 struct sigmatel_spec *spec = codec->spec;
3623
3624 if (power_state == AC_PWRST_D3) {
Takashi Iwaif1a73742011-12-04 13:44:06 +01003625 if (spec->vref_mute_led_nid) {
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003626 /* with vref-out pin used for mute led control
3627 * codec AFG is prevented from D3 state
3628 */
3629 afg_power_state = AC_PWRST_D1;
3630 }
3631 /* this delay seems necessary to avoid click noise at power-down */
3632 msleep(100);
3633 }
3634 snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE,
3635 afg_power_state);
3636 snd_hda_codec_set_power_to_all(codec, fg, power_state, true);
3637}
Takashi Iwai350eba432012-03-16 16:09:03 +01003638#else
Takashi Iwai36c9db72013-01-17 17:07:59 +01003639#define stac_suspend NULL
3640#define stac_resume NULL
3641#define stac_set_power_state NULL
Takashi Iwai2faa3bf2012-03-12 12:30:22 +01003642#endif /* CONFIG_PM */
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003643
Takashi Iwai36c9db72013-01-17 17:07:59 +01003644static const struct hda_codec_ops stac_patch_ops = {
3645 .build_controls = snd_hda_gen_build_controls,
3646 .build_pcms = snd_hda_gen_build_pcms,
3647 .init = stac_init,
3648 .free = stac_free,
David Henningsson29adc4b2012-09-25 11:31:00 +02003649 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwai2a439522011-07-26 09:52:50 +02003650#ifdef CONFIG_PM
Takashi Iwai36c9db72013-01-17 17:07:59 +01003651 .suspend = stac_suspend,
3652 .resume = stac_resume,
Mattff6fdc32005-06-27 15:06:52 +02003653#endif
Takashi Iwai36c9db72013-01-17 17:07:59 +01003654 .reboot_notify = stac_shutup,
Matt2f2f4252005-04-13 14:45:30 +02003655};
3656
Takashi Iwai36c9db72013-01-17 17:07:59 +01003657static int alloc_stac_spec(struct hda_codec *codec)
Takashi Iwai361dab32012-05-09 14:35:27 +02003658{
3659 struct sigmatel_spec *spec;
3660
3661 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3662 if (!spec)
3663 return -ENOMEM;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003664 snd_hda_gen_spec_init(&spec->gen);
Takashi Iwai361dab32012-05-09 14:35:27 +02003665 codec->spec = spec;
3666 codec->no_trigger_sense = 1; /* seems common with STAC/IDT codecs */
Takashi Iwai361dab32012-05-09 14:35:27 +02003667 return 0;
3668}
3669
Matt2f2f4252005-04-13 14:45:30 +02003670static int patch_stac9200(struct hda_codec *codec)
3671{
3672 struct sigmatel_spec *spec;
Mattc7d4b2f2005-06-27 14:59:41 +02003673 int err;
Matt2f2f4252005-04-13 14:45:30 +02003674
Takashi Iwai36c9db72013-01-17 17:07:59 +01003675 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02003676 if (err < 0)
3677 return err;
Matt2f2f4252005-04-13 14:45:30 +02003678
Takashi Iwai361dab32012-05-09 14:35:27 +02003679 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01003680 spec->linear_tone_beep = 1;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003681 spec->gen.own_eapd_ctl = 1;
3682
3683 codec->patch_ops = stac_patch_ops;
3684
3685 snd_hda_add_verbs(codec, stac9200_eapd_init);
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01003686
3687 snd_hda_pick_fixup(codec, stac9200_models, stac9200_fixup_tbl,
3688 stac9200_fixups);
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01003689 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai117f2572008-03-18 09:53:23 +01003690
Takashi Iwai36c9db72013-01-17 17:07:59 +01003691 err = stac_parse_auto_config(codec);
Mattc7d4b2f2005-06-27 14:59:41 +02003692 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01003693 stac_free(codec);
Mattc7d4b2f2005-06-27 14:59:41 +02003694 return err;
3695 }
Matt2f2f4252005-04-13 14:45:30 +02003696
Takashi Iwaid39a3ae2013-01-14 14:06:26 +01003697 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3698
Matt2f2f4252005-04-13 14:45:30 +02003699 return 0;
3700}
3701
Tobin Davis8e21c342007-01-08 11:04:17 +01003702static int patch_stac925x(struct hda_codec *codec)
3703{
3704 struct sigmatel_spec *spec;
3705 int err;
3706
Takashi Iwai36c9db72013-01-17 17:07:59 +01003707 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02003708 if (err < 0)
3709 return err;
Tobin Davis8e21c342007-01-08 11:04:17 +01003710
Takashi Iwai361dab32012-05-09 14:35:27 +02003711 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01003712 spec->linear_tone_beep = 1;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003713 spec->gen.own_eapd_ctl = 1;
3714
3715 codec->patch_ops = stac_patch_ops;
3716
3717 snd_hda_add_verbs(codec, stac925x_core_init);
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02003718
Takashi Iwaid2077d42013-01-14 14:20:16 +01003719 snd_hda_pick_fixup(codec, stac925x_models, stac925x_fixup_tbl,
3720 stac925x_fixups);
Takashi Iwaid2077d42013-01-14 14:20:16 +01003721 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3722
Takashi Iwai36c9db72013-01-17 17:07:59 +01003723 err = stac_parse_auto_config(codec);
Tobin Davis8e21c342007-01-08 11:04:17 +01003724 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01003725 stac_free(codec);
Tobin Davis8e21c342007-01-08 11:04:17 +01003726 return err;
3727 }
3728
Takashi Iwaid2077d42013-01-14 14:20:16 +01003729 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3730
Tobin Davis8e21c342007-01-08 11:04:17 +01003731 return 0;
3732}
3733
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003734static int patch_stac92hd73xx(struct hda_codec *codec)
3735{
3736 struct sigmatel_spec *spec;
Takashi Iwai361dab32012-05-09 14:35:27 +02003737 int err;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003738 int num_dacs;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003739
Takashi Iwai36c9db72013-01-17 17:07:59 +01003740 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02003741 if (err < 0)
3742 return err;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003743
Takashi Iwai361dab32012-05-09 14:35:27 +02003744 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01003745 spec->linear_tone_beep = 0;
Takashi Iwai27487462013-01-21 16:25:18 +01003746 spec->gen.mixer_nid = 0x1d;
Takashi Iwai55e30142013-01-14 17:30:04 +01003747
Takashi Iwai36c9db72013-01-17 17:07:59 +01003748 num_dacs = snd_hda_get_num_conns(codec, 0x0a) - 1;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003749 if (num_dacs < 3 || num_dacs > 5) {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003750 printk(KERN_WARNING "hda_codec: Could not determine "
3751 "number of channels defaulting to DAC count\n");
Takashi Iwai36c9db72013-01-17 17:07:59 +01003752 num_dacs = 5;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003753 }
Takashi Iwai55e30142013-01-14 17:30:04 +01003754
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003755 switch (num_dacs) {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003756 case 0x3: /* 6 Channel */
Takashi Iwai36c9db72013-01-17 17:07:59 +01003757 spec->aloopback_ctl = &stac92hd73xx_6ch_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003758 break;
3759 case 0x4: /* 8 Channel */
Takashi Iwai36c9db72013-01-17 17:07:59 +01003760 spec->aloopback_ctl = &stac92hd73xx_8ch_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003761 break;
3762 case 0x5: /* 10 Channel */
Takashi Iwai36c9db72013-01-17 17:07:59 +01003763 spec->aloopback_ctl = &stac92hd73xx_10ch_loopback;
Takashi Iwaid78d7a92009-03-02 14:26:25 +01003764 break;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003765 }
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003766
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003767 spec->aloopback_mask = 0x01;
3768 spec->aloopback_shift = 8;
3769
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003770 spec->digbeep_nid = 0x1c;
Takashi Iwai6479c632009-07-28 18:20:25 +02003771
Takashi Iwai55e30142013-01-14 17:30:04 +01003772 /* GPIO0 High = Enable EAPD */
3773 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
3774 spec->gpio_data = 0x01;
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05003775
Takashi Iwai55e30142013-01-14 17:30:04 +01003776 spec->eapd_switch = 1;
Matthew Ranostaya7662642008-02-21 07:51:14 +01003777
Matthew Ranostaya64135a2008-01-10 16:55:06 +01003778 spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids);
3779 spec->pwr_nids = stac92hd73xx_pwr_nids;
3780
Takashi Iwai36c9db72013-01-17 17:07:59 +01003781 spec->gen.own_eapd_ctl = 1;
3782
3783 codec->patch_ops = stac_patch_ops;
3784
3785 snd_hda_pick_fixup(codec, stac92hd73xx_models, stac92hd73xx_fixup_tbl,
3786 stac92hd73xx_fixups);
Takashi Iwai55e30142013-01-14 17:30:04 +01003787 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3788
3789 if (!spec->volknob_init)
3790 snd_hda_add_verbs(codec, stac92hd73xx_core_init);
3791
Takashi Iwai36c9db72013-01-17 17:07:59 +01003792 err = stac_parse_auto_config(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003793 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01003794 stac_free(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003795 return err;
3796 }
3797
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01003798 codec->proc_widget_hook = stac92hd7x_proc_hook;
3799
Takashi Iwai55e30142013-01-14 17:30:04 +01003800 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3801
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003802 return 0;
3803}
3804
Takashi Iwai372f8c72013-01-14 18:06:34 +01003805static void stac_setup_gpio(struct hda_codec *codec)
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003806{
Takashi Iwai372f8c72013-01-14 18:06:34 +01003807 struct sigmatel_spec *spec = codec->spec;
Vitaliy Kulikove108c7b2010-01-28 19:21:07 +01003808
Takashi Iwaib4e81872009-11-18 17:20:24 +01003809 if (spec->gpio_led) {
Takashi Iwaif1a73742011-12-04 13:44:06 +01003810 if (!spec->vref_mute_led_nid) {
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003811 spec->gpio_mask |= spec->gpio_led;
3812 spec->gpio_dir |= spec->gpio_led;
3813 spec->gpio_data |= spec->gpio_led;
3814 } else {
3815 codec->patch_ops.set_power_state =
Takashi Iwai36c9db72013-01-17 17:07:59 +01003816 stac_set_power_state;
Vitaliy Kulikov45eebda2011-07-26 16:56:20 -05003817 }
Takashi Iwaib4e81872009-11-18 17:20:24 +01003818 }
Takashi Iwaib4e81872009-11-18 17:20:24 +01003819
Takashi Iwai62cbde12012-09-14 11:58:54 +02003820 if (spec->mic_mute_led_gpio) {
3821 spec->gpio_mask |= spec->mic_mute_led_gpio;
3822 spec->gpio_dir |= spec->mic_mute_led_gpio;
3823 spec->mic_mute_led_on = true;
3824 spec->gpio_data |= spec->mic_mute_led_gpio;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003825
Takashi Iwaia90229e2013-01-18 14:10:00 +01003826 spec->gen.cap_sync_hook = stac_capture_led_hook;
Takashi Iwai62cbde12012-09-14 11:58:54 +02003827 }
Takashi Iwai372f8c72013-01-14 18:06:34 +01003828}
3829
3830static int patch_stac92hd83xxx(struct hda_codec *codec)
3831{
3832 struct sigmatel_spec *spec;
3833 int err;
3834
Takashi Iwai36c9db72013-01-17 17:07:59 +01003835 err = alloc_stac_spec(codec);
Takashi Iwai372f8c72013-01-14 18:06:34 +01003836 if (err < 0)
3837 return err;
3838
3839 codec->epss = 0; /* longer delay needed for D3 */
Takashi Iwai372f8c72013-01-14 18:06:34 +01003840
3841 spec = codec->spec;
3842 spec->linear_tone_beep = 0;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003843 spec->gen.own_eapd_ctl = 1;
Takashi Iwai27487462013-01-21 16:25:18 +01003844 spec->gen.mixer_nid = 0x1b;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003845
Takashi Iwai372f8c72013-01-14 18:06:34 +01003846 spec->digbeep_nid = 0x21;
3847 spec->pwr_nids = stac92hd83xxx_pwr_nids;
3848 spec->num_pwrs = ARRAY_SIZE(stac92hd83xxx_pwr_nids);
Takashi Iwai36c9db72013-01-17 17:07:59 +01003849 spec->default_polarity = -1; /* no default cfg */
3850
3851 codec->patch_ops = stac_patch_ops;
3852
3853 snd_hda_add_verbs(codec, stac92hd83xxx_core_init);
Takashi Iwai372f8c72013-01-14 18:06:34 +01003854
3855 snd_hda_pick_fixup(codec, stac92hd83xxx_models, stac92hd83xxx_fixup_tbl,
3856 stac92hd83xxx_fixups);
Takashi Iwai372f8c72013-01-14 18:06:34 +01003857 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3858
3859 stac_setup_gpio(codec);
Takashi Iwai62cbde12012-09-14 11:58:54 +02003860
Takashi Iwai36c9db72013-01-17 17:07:59 +01003861 err = stac_parse_auto_config(codec);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003862 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01003863 stac_free(codec);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003864 return err;
3865 }
3866
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01003867 codec->proc_widget_hook = stac92hd_proc_hook;
3868
Takashi Iwai372f8c72013-01-14 18:06:34 +01003869 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3870
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003871 return 0;
3872}
3873
Matthew Ranostaye035b842007-11-06 11:53:55 +01003874static int patch_stac92hd71bxx(struct hda_codec *codec)
3875{
3876 struct sigmatel_spec *spec;
Takashi Iwai2b635362011-05-02 12:33:43 +02003877 const struct hda_verb *unmute_init = stac92hd71bxx_unmute_core_init;
Takashi Iwai361dab32012-05-09 14:35:27 +02003878 int err;
Matthew Ranostaye035b842007-11-06 11:53:55 +01003879
Takashi Iwai36c9db72013-01-17 17:07:59 +01003880 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02003881 if (err < 0)
3882 return err;
Matthew Ranostaye035b842007-11-06 11:53:55 +01003883
Takashi Iwai361dab32012-05-09 14:35:27 +02003884 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01003885 spec->linear_tone_beep = 0;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003886 spec->gen.own_eapd_ctl = 1;
Takashi Iwai27487462013-01-21 16:25:18 +01003887 spec->gen.mixer_nid = 0x17;
Matthew Ranostaye035b842007-11-06 11:53:55 +01003888
Takashi Iwai36c9db72013-01-17 17:07:59 +01003889 codec->patch_ops = stac_patch_ops;
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01003890
3891 /* GPIO0 = EAPD */
3892 spec->gpio_mask = 0x01;
3893 spec->gpio_dir = 0x01;
3894 spec->gpio_data = 0x01;
Takashi Iwai41c3b642008-11-18 10:45:15 +01003895
Matthew Ranostay541eee82007-12-14 12:08:04 +01003896 switch (codec->vendor_id) {
3897 case 0x111d76b6: /* 4 Port without Analog Mixer */
3898 case 0x111d76b7:
Herton Ronaldo Krzesinski23c7b522009-02-08 19:51:28 -02003899 unmute_init++;
Matthew Ranostay541eee82007-12-14 12:08:04 +01003900 break;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02003901 case 0x111d7608: /* 5 Port with Analog Mixer */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02003902 if ((codec->revision_id & 0xf) == 0 ||
Takashi Iwai8c2f7672008-12-01 11:54:35 +01003903 (codec->revision_id & 0xf) == 1)
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02003904 spec->stream_delay = 40; /* 40 milliseconds */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02003905
Matthew Ranostayaafc4412008-06-13 18:04:33 +02003906 /* disable VSW */
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05003907 unmute_init++;
Takashi Iwai330ee992009-02-20 14:33:36 +01003908 snd_hda_codec_set_pincfg(codec, 0x0f, 0x40f000f0);
3909 snd_hda_codec_set_pincfg(codec, 0x19, 0x40f000f3);
Matthew Ranostayaafc4412008-06-13 18:04:33 +02003910 break;
3911 case 0x111d7603: /* 6 Port with Analog Mixer */
Takashi Iwai8c2f7672008-12-01 11:54:35 +01003912 if ((codec->revision_id & 0xf) == 1)
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02003913 spec->stream_delay = 40; /* 40 milliseconds */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02003914
Takashi Iwai5207e102009-07-30 13:09:08 +02003915 break;
Matthew Ranostay541eee82007-12-14 12:08:04 +01003916 }
3917
David Henningsson5e68fb32012-08-16 14:11:09 +02003918 if (get_wcaps_type(get_wcaps(codec, 0x28)) == AC_WID_VOL_KNB)
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01003919 snd_hda_add_verbs(codec, stac92hd71bxx_core_init);
David Henningsson5e68fb32012-08-16 14:11:09 +02003920
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05003921 if (get_wcaps(codec, 0xa) & AC_WCAP_IN_AMP)
3922 snd_hda_sequence_write_cache(codec, unmute_init);
3923
Takashi Iwai36c9db72013-01-17 17:07:59 +01003924 spec->aloopback_ctl = &stac92hd71bxx_loopback;
Matthew Ranostay4b33c762008-10-10 09:07:23 -04003925 spec->aloopback_mask = 0x50;
Matthew Ranostay541eee82007-12-14 12:08:04 +01003926 spec->aloopback_shift = 0;
3927
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02003928 spec->powerdown_adcs = 1;
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003929 spec->digbeep_nid = 0x26;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003930 spec->num_pwrs = ARRAY_SIZE(stac92hd71bxx_pwr_nids);
Matthew Ranostayaafc4412008-06-13 18:04:33 +02003931 spec->pwr_nids = stac92hd71bxx_pwr_nids;
Matthew Ranostaye035b842007-11-06 11:53:55 +01003932
Takashi Iwai36c9db72013-01-17 17:07:59 +01003933 snd_hda_pick_fixup(codec, stac92hd71bxx_models, stac92hd71bxx_fixup_tbl,
3934 stac92hd71bxx_fixups);
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01003935 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Vitaliy Kulikov5bdaaad2009-11-04 07:57:45 +01003936
Takashi Iwai372f8c72013-01-14 18:06:34 +01003937 stac_setup_gpio(codec);
Matthew Ranostay6a14f582008-09-12 12:02:30 -04003938
Takashi Iwai36c9db72013-01-17 17:07:59 +01003939 err = stac_parse_auto_config(codec);
Matthew Ranostaye035b842007-11-06 11:53:55 +01003940 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01003941 stac_free(codec);
Matthew Ranostaye035b842007-11-06 11:53:55 +01003942 return err;
3943 }
3944
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01003945 codec->proc_widget_hook = stac92hd7x_proc_hook;
3946
Takashi Iwai0f6fcb72013-01-14 17:05:25 +01003947 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3948
Matthew Ranostaye035b842007-11-06 11:53:55 +01003949 return 0;
Takashi Iwai86d190e2009-05-26 15:18:58 +02003950}
Matthew Ranostaye035b842007-11-06 11:53:55 +01003951
Matt2f2f4252005-04-13 14:45:30 +02003952static int patch_stac922x(struct hda_codec *codec)
3953{
3954 struct sigmatel_spec *spec;
Mattc7d4b2f2005-06-27 14:59:41 +02003955 int err;
Matt2f2f4252005-04-13 14:45:30 +02003956
Takashi Iwai36c9db72013-01-17 17:07:59 +01003957 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02003958 if (err < 0)
3959 return err;
Matt2f2f4252005-04-13 14:45:30 +02003960
Takashi Iwai361dab32012-05-09 14:35:27 +02003961 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01003962 spec->linear_tone_beep = 1;
Takashi Iwai36c9db72013-01-17 17:07:59 +01003963 spec->gen.own_eapd_ctl = 1;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02003964
Takashi Iwai36c9db72013-01-17 17:07:59 +01003965 codec->patch_ops = stac_patch_ops;
Matt2f2f4252005-04-13 14:45:30 +02003966
Takashi Iwai0a427842013-01-14 15:20:13 +01003967 snd_hda_add_verbs(codec, stac922x_core_init);
3968
Takashi Iwai807a46362007-05-29 19:01:37 +02003969 /* Fix Mux capture level; max to 2 */
3970 snd_hda_override_amp_caps(codec, 0x12, HDA_OUTPUT,
3971 (0 << AC_AMPCAP_OFFSET_SHIFT) |
3972 (2 << AC_AMPCAP_NUM_STEPS_SHIFT) |
3973 (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT) |
3974 (0 << AC_AMPCAP_MUTE_SHIFT));
3975
Takashi Iwai36c9db72013-01-17 17:07:59 +01003976 snd_hda_pick_fixup(codec, stac922x_models, stac922x_fixup_tbl,
3977 stac922x_fixups);
3978 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3979
3980 err = stac_parse_auto_config(codec);
3981 if (err < 0) {
3982 stac_free(codec);
3983 return err;
3984 }
3985
Takashi Iwai0a427842013-01-14 15:20:13 +01003986 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3987
Matt Porter3cc08dc2006-01-23 15:27:49 +01003988 return 0;
3989}
3990
3991static int patch_stac927x(struct hda_codec *codec)
3992{
3993 struct sigmatel_spec *spec;
3994 int err;
3995
Takashi Iwai36c9db72013-01-17 17:07:59 +01003996 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02003997 if (err < 0)
3998 return err;
Matt Porter3cc08dc2006-01-23 15:27:49 +01003999
Takashi Iwai361dab32012-05-09 14:35:27 +02004000 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01004001 spec->linear_tone_beep = 1;
Takashi Iwai36c9db72013-01-17 17:07:59 +01004002 spec->gen.own_eapd_ctl = 1;
Matt Porter3cc08dc2006-01-23 15:27:49 +01004003
Matthew Ranostay1cd22242008-07-18 18:20:52 +02004004 spec->digbeep_nid = 0x23;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01004005
Takashi Iwai29ac8362013-01-14 16:03:38 +01004006 /* GPIO0 High = Enable EAPD */
4007 spec->eapd_mask = spec->gpio_mask = 0x01;
4008 spec->gpio_dir = spec->gpio_data = 0x01;
Takashi Iwaiaf6ee302009-09-14 15:03:12 +02004009
Takashi Iwai36c9db72013-01-17 17:07:59 +01004010 spec->aloopback_ctl = &stac927x_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004011 spec->aloopback_mask = 0x40;
4012 spec->aloopback_shift = 0;
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05004013 spec->eapd_switch = 1;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01004014
Takashi Iwai36c9db72013-01-17 17:07:59 +01004015 codec->patch_ops = stac_patch_ops;
4016
4017 snd_hda_pick_fixup(codec, stac927x_models, stac927x_fixup_tbl,
4018 stac927x_fixups);
Takashi Iwaif6655d52013-01-17 08:49:01 +01004019 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4020
Takashi Iwai29ac8362013-01-14 16:03:38 +01004021 if (!spec->volknob_init)
4022 snd_hda_add_verbs(codec, stac927x_core_init);
4023
Takashi Iwai36c9db72013-01-17 17:07:59 +01004024 err = stac_parse_auto_config(codec);
Mattc7d4b2f2005-06-27 14:59:41 +02004025 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01004026 stac_free(codec);
Mattc7d4b2f2005-06-27 14:59:41 +02004027 return err;
4028 }
Matt2f2f4252005-04-13 14:45:30 +02004029
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004030 codec->proc_widget_hook = stac927x_proc_hook;
4031
Takashi Iwai52987652008-01-16 16:09:47 +01004032 /*
4033 * !!FIXME!!
4034 * The STAC927x seem to require fairly long delays for certain
4035 * command sequences. With too short delays (even if the answer
4036 * is set to RIRB properly), it results in the silence output
4037 * on some hardwares like Dell.
4038 *
4039 * The below flag enables the longer delay (see get_response
4040 * in hda_intel.c).
4041 */
4042 codec->bus->needs_damn_long_delay = 1;
4043
Takashi Iwai29ac8362013-01-14 16:03:38 +01004044 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwaie28d8322008-12-17 13:48:29 +01004045
Matt2f2f4252005-04-13 14:45:30 +02004046 return 0;
4047}
4048
Matt Porterf3302a52006-07-31 12:49:34 +02004049static int patch_stac9205(struct hda_codec *codec)
4050{
4051 struct sigmatel_spec *spec;
Takashi Iwai82599802007-07-31 15:56:24 +02004052 int err;
Matt Porterf3302a52006-07-31 12:49:34 +02004053
Takashi Iwai36c9db72013-01-17 17:07:59 +01004054 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02004055 if (err < 0)
4056 return err;
Matt Porterf3302a52006-07-31 12:49:34 +02004057
Takashi Iwai361dab32012-05-09 14:35:27 +02004058 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01004059 spec->linear_tone_beep = 1;
Takashi Iwai36c9db72013-01-17 17:07:59 +01004060 spec->gen.own_eapd_ctl = 1;
Matt Porterf3302a52006-07-31 12:49:34 +02004061
Matthew Ranostay1cd22242008-07-18 18:20:52 +02004062 spec->digbeep_nid = 0x23;
Matt Porterf3302a52006-07-31 12:49:34 +02004063
Takashi Iwaife6322c2013-01-14 14:46:51 +01004064 snd_hda_add_verbs(codec, stac9205_core_init);
Takashi Iwai36c9db72013-01-17 17:07:59 +01004065 spec->aloopback_ctl = &stac9205_loopback;
Takashi Iwai6479c632009-07-28 18:20:25 +02004066
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004067 spec->aloopback_mask = 0x40;
4068 spec->aloopback_shift = 0;
Matthew Ranostay87d48362007-07-17 11:52:24 +02004069
Takashi Iwaife6322c2013-01-14 14:46:51 +01004070 /* GPIO0 High = EAPD */
4071 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
4072 spec->gpio_data = 0x01;
Matt Porter33382402006-12-18 13:17:28 +01004073
Takashi Iwaife6322c2013-01-14 14:46:51 +01004074 /* Turn on/off EAPD per HP plugging */
4075 spec->eapd_switch = 1;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01004076
Takashi Iwai36c9db72013-01-17 17:07:59 +01004077 codec->patch_ops = stac_patch_ops;
4078
4079 snd_hda_pick_fixup(codec, stac9205_models, stac9205_fixup_tbl,
4080 stac9205_fixups);
Takashi Iwaife6322c2013-01-14 14:46:51 +01004081 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Matthew Ranostay87d48362007-07-17 11:52:24 +02004082
Takashi Iwai36c9db72013-01-17 17:07:59 +01004083 err = stac_parse_auto_config(codec);
Matt Porterf3302a52006-07-31 12:49:34 +02004084 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01004085 stac_free(codec);
Matt Porterf3302a52006-07-31 12:49:34 +02004086 return err;
4087 }
4088
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004089 codec->proc_widget_hook = stac9205_proc_hook;
4090
Takashi Iwaife6322c2013-01-14 14:46:51 +01004091 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4092
Matt Porterf3302a52006-07-31 12:49:34 +02004093 return 0;
4094}
4095
Matt2f2f4252005-04-13 14:45:30 +02004096/*
Guillaume Munch6d859062006-08-22 17:15:47 +02004097 * STAC9872 hack
Takashi Iwaidb064e52006-03-16 16:04:58 +01004098 */
4099
Takashi Iwai2b635362011-05-02 12:33:43 +02004100static const struct hda_verb stac9872_core_init[] = {
Takashi Iwai1624cb92007-07-05 13:10:51 +02004101 {0x15, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mic-sel: 0a,0d,14,02 */
Takashi Iwaidb064e52006-03-16 16:04:58 +01004102 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */
4103 {}
4104};
4105
Takashi Iwaifc268c12013-01-14 14:29:36 +01004106static const struct hda_pintbl stac9872_vaio_pin_configs[] = {
4107 { 0x0a, 0x03211020 },
4108 { 0x0b, 0x411111f0 },
4109 { 0x0c, 0x411111f0 },
4110 { 0x0d, 0x03a15030 },
4111 { 0x0e, 0x411111f0 },
4112 { 0x0f, 0x90170110 },
4113 { 0x11, 0x411111f0 },
4114 { 0x13, 0x411111f0 },
4115 { 0x14, 0x90a7013e },
4116 {}
Takashi Iwai307282c2009-03-12 18:17:58 +01004117};
4118
Takashi Iwaifc268c12013-01-14 14:29:36 +01004119static const struct hda_model_fixup stac9872_models[] = {
4120 { .id = STAC_9872_VAIO, .name = "vaio" },
4121 {}
Takashi Iwai307282c2009-03-12 18:17:58 +01004122};
4123
Takashi Iwaifc268c12013-01-14 14:29:36 +01004124static const struct hda_fixup stac9872_fixups[] = {
4125 [STAC_9872_VAIO] = {
4126 .type = HDA_FIXUP_PINS,
4127 .v.pins = stac9872_vaio_pin_configs,
4128 },
Takashi Iwai307282c2009-03-12 18:17:58 +01004129};
4130
Takashi Iwaifc268c12013-01-14 14:29:36 +01004131static const struct snd_pci_quirk stac9872_fixup_tbl[] = {
Takashi Iwaib04add92009-07-20 08:01:36 +02004132 SND_PCI_QUIRK_MASK(0x104d, 0xfff0, 0x81e0,
4133 "Sony VAIO F/S", STAC_9872_VAIO),
Takashi Iwai307282c2009-03-12 18:17:58 +01004134 {} /* terminator */
4135};
4136
Guillaume Munch6d859062006-08-22 17:15:47 +02004137static int patch_stac9872(struct hda_codec *codec)
Takashi Iwaidb064e52006-03-16 16:04:58 +01004138{
4139 struct sigmatel_spec *spec;
Takashi Iwai1e137f92009-01-21 07:41:22 +01004140 int err;
Takashi Iwaidb064e52006-03-16 16:04:58 +01004141
Takashi Iwai36c9db72013-01-17 17:07:59 +01004142 err = alloc_stac_spec(codec);
Takashi Iwai361dab32012-05-09 14:35:27 +02004143 if (err < 0)
4144 return err;
4145
4146 spec = codec->spec;
Daniel J Blueman1b0e3722010-08-03 11:09:13 +01004147 spec->linear_tone_beep = 1;
Takashi Iwai36c9db72013-01-17 17:07:59 +01004148 spec->gen.own_eapd_ctl = 1;
4149
4150 codec->patch_ops = stac_patch_ops;
4151
4152 snd_hda_add_verbs(codec, stac9872_core_init);
Takashi Iwaicaa10b62009-01-20 17:19:01 +01004153
Takashi Iwaifc268c12013-01-14 14:29:36 +01004154 snd_hda_pick_fixup(codec, stac9872_models, stac9872_fixup_tbl,
4155 stac9872_fixups);
Takashi Iwaifc268c12013-01-14 14:29:36 +01004156 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwaicaa10b62009-01-20 17:19:01 +01004157
Takashi Iwai36c9db72013-01-17 17:07:59 +01004158 err = stac_parse_auto_config(codec);
Takashi Iwai1e137f92009-01-21 07:41:22 +01004159 if (err < 0) {
Takashi Iwai36c9db72013-01-17 17:07:59 +01004160 stac_free(codec);
Takashi Iwai1e137f92009-01-21 07:41:22 +01004161 return -EINVAL;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01004162 }
Takashi Iwaifc268c12013-01-14 14:29:36 +01004163
4164 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4165
Takashi Iwaidb064e52006-03-16 16:04:58 +01004166 return 0;
4167}
4168
4169
4170/*
Matt2f2f4252005-04-13 14:45:30 +02004171 * patch entries
4172 */
Takashi Iwai2b635362011-05-02 12:33:43 +02004173static const struct hda_codec_preset snd_hda_preset_sigmatel[] = {
Matt2f2f4252005-04-13 14:45:30 +02004174 { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 },
4175 { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x },
4176 { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x },
4177 { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x },
4178 { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x },
4179 { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x },
4180 { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x },
Matt Porter22a27c72006-07-06 18:49:10 +02004181 { .id = 0x83847618, .name = "STAC9227", .patch = patch_stac927x },
4182 { .id = 0x83847619, .name = "STAC9227", .patch = patch_stac927x },
4183 { .id = 0x83847616, .name = "STAC9228", .patch = patch_stac927x },
4184 { .id = 0x83847617, .name = "STAC9228", .patch = patch_stac927x },
4185 { .id = 0x83847614, .name = "STAC9229", .patch = patch_stac927x },
4186 { .id = 0x83847615, .name = "STAC9229", .patch = patch_stac927x },
Matt Porter3cc08dc2006-01-23 15:27:49 +01004187 { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x },
4188 { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x },
4189 { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x },
4190 { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x },
4191 { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x },
4192 { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x },
4193 { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x },
4194 { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x },
4195 { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x },
4196 { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x },
Tobin Davis8e21c342007-01-08 11:04:17 +01004197 { .id = 0x83847632, .name = "STAC9202", .patch = patch_stac925x },
4198 { .id = 0x83847633, .name = "STAC9202D", .patch = patch_stac925x },
4199 { .id = 0x83847634, .name = "STAC9250", .patch = patch_stac925x },
4200 { .id = 0x83847635, .name = "STAC9250D", .patch = patch_stac925x },
4201 { .id = 0x83847636, .name = "STAC9251", .patch = patch_stac925x },
4202 { .id = 0x83847637, .name = "STAC9250D", .patch = patch_stac925x },
Takashi Iwai7bd3c0f2008-05-02 12:28:02 +02004203 { .id = 0x83847645, .name = "92HD206X", .patch = patch_stac927x },
4204 { .id = 0x83847646, .name = "92HD206D", .patch = patch_stac927x },
Guillaume Munch6d859062006-08-22 17:15:47 +02004205 /* The following does not take into account .id=0x83847661 when subsys =
4206 * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are
4207 * currently not fully supported.
4208 */
4209 { .id = 0x83847661, .name = "CXD9872RD/K", .patch = patch_stac9872 },
4210 { .id = 0x83847662, .name = "STAC9872AK", .patch = patch_stac9872 },
4211 { .id = 0x83847664, .name = "CXD9872AKD", .patch = patch_stac9872 },
Simos Xenitellisa5c0f882009-06-10 16:33:31 +01004212 { .id = 0x83847698, .name = "STAC9205", .patch = patch_stac9205 },
Matt Porterf3302a52006-07-31 12:49:34 +02004213 { .id = 0x838476a0, .name = "STAC9205", .patch = patch_stac9205 },
4214 { .id = 0x838476a1, .name = "STAC9205D", .patch = patch_stac9205 },
4215 { .id = 0x838476a2, .name = "STAC9204", .patch = patch_stac9205 },
4216 { .id = 0x838476a3, .name = "STAC9204D", .patch = patch_stac9205 },
4217 { .id = 0x838476a4, .name = "STAC9255", .patch = patch_stac9205 },
4218 { .id = 0x838476a5, .name = "STAC9255D", .patch = patch_stac9205 },
4219 { .id = 0x838476a6, .name = "STAC9254", .patch = patch_stac9205 },
4220 { .id = 0x838476a7, .name = "STAC9254D", .patch = patch_stac9205 },
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004221 { .id = 0x111d7603, .name = "92HD75B3X5", .patch = patch_stac92hd71bxx},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004222 { .id = 0x111d7604, .name = "92HD83C1X5", .patch = patch_stac92hd83xxx},
Vitaliy Kulikova9694fa2010-02-04 08:58:23 +01004223 { .id = 0x111d76d4, .name = "92HD83C1C5", .patch = patch_stac92hd83xxx},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004224 { .id = 0x111d7605, .name = "92HD81B1X5", .patch = patch_stac92hd83xxx},
Matthew Ranostayff2e7332009-04-01 14:49:48 -04004225 { .id = 0x111d76d5, .name = "92HD81B1C5", .patch = patch_stac92hd83xxx},
Charles Chin8a345a02010-08-10 11:43:25 +02004226 { .id = 0x111d76d1, .name = "92HD87B1/3", .patch = patch_stac92hd83xxx},
4227 { .id = 0x111d76d9, .name = "92HD87B2/4", .patch = patch_stac92hd83xxx},
Charles Chin36706002010-01-29 12:05:51 +01004228 { .id = 0x111d7666, .name = "92HD88B3", .patch = patch_stac92hd83xxx},
4229 { .id = 0x111d7667, .name = "92HD88B1", .patch = patch_stac92hd83xxx},
4230 { .id = 0x111d7668, .name = "92HD88B2", .patch = patch_stac92hd83xxx},
4231 { .id = 0x111d7669, .name = "92HD88B4", .patch = patch_stac92hd83xxx},
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004232 { .id = 0x111d7608, .name = "92HD75B2X5", .patch = patch_stac92hd71bxx},
Matthew Ranostay541eee82007-12-14 12:08:04 +01004233 { .id = 0x111d7674, .name = "92HD73D1X5", .patch = patch_stac92hd73xx },
4234 { .id = 0x111d7675, .name = "92HD73C1X5", .patch = patch_stac92hd73xx },
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004235 { .id = 0x111d7676, .name = "92HD73E1X5", .patch = patch_stac92hd73xx },
Matthew Ranostay541eee82007-12-14 12:08:04 +01004236 { .id = 0x111d76b0, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
4237 { .id = 0x111d76b1, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
4238 { .id = 0x111d76b2, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
4239 { .id = 0x111d76b3, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
4240 { .id = 0x111d76b4, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
4241 { .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
4242 { .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
4243 { .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
Charles Chin4d8ec5f2010-08-19 08:06:16 +02004244 { .id = 0x111d76c0, .name = "92HD89C3", .patch = patch_stac92hd73xx },
4245 { .id = 0x111d76c1, .name = "92HD89C2", .patch = patch_stac92hd73xx },
4246 { .id = 0x111d76c2, .name = "92HD89C1", .patch = patch_stac92hd73xx },
4247 { .id = 0x111d76c3, .name = "92HD89B3", .patch = patch_stac92hd73xx },
4248 { .id = 0x111d76c4, .name = "92HD89B2", .patch = patch_stac92hd73xx },
4249 { .id = 0x111d76c5, .name = "92HD89B1", .patch = patch_stac92hd73xx },
4250 { .id = 0x111d76c6, .name = "92HD89E3", .patch = patch_stac92hd73xx },
4251 { .id = 0x111d76c7, .name = "92HD89E2", .patch = patch_stac92hd73xx },
4252 { .id = 0x111d76c8, .name = "92HD89E1", .patch = patch_stac92hd73xx },
4253 { .id = 0x111d76c9, .name = "92HD89D3", .patch = patch_stac92hd73xx },
4254 { .id = 0x111d76ca, .name = "92HD89D2", .patch = patch_stac92hd73xx },
4255 { .id = 0x111d76cb, .name = "92HD89D1", .patch = patch_stac92hd73xx },
4256 { .id = 0x111d76cc, .name = "92HD89F3", .patch = patch_stac92hd73xx },
4257 { .id = 0x111d76cd, .name = "92HD89F2", .patch = patch_stac92hd73xx },
4258 { .id = 0x111d76ce, .name = "92HD89F1", .patch = patch_stac92hd73xx },
David Henningsson46724c22011-09-20 09:02:22 +02004259 { .id = 0x111d76df, .name = "92HD93BXX", .patch = patch_stac92hd83xxx},
Vitaliy Kulikovab5a6eb2010-09-08 09:00:17 +02004260 { .id = 0x111d76e0, .name = "92HD91BXX", .patch = patch_stac92hd83xxx},
Vitaliy Kulikov4dfb8a42011-02-22 17:32:19 -06004261 { .id = 0x111d76e3, .name = "92HD98BXX", .patch = patch_stac92hd83xxx},
4262 { .id = 0x111d76e5, .name = "92HD99BXX", .patch = patch_stac92hd83xxx},
Vitaliy Kulikovab5a6eb2010-09-08 09:00:17 +02004263 { .id = 0x111d76e7, .name = "92HD90BXX", .patch = patch_stac92hd83xxx},
Charles Chinad5d8752011-11-02 07:56:58 +01004264 { .id = 0x111d76e8, .name = "92HD66B1X5", .patch = patch_stac92hd83xxx},
4265 { .id = 0x111d76e9, .name = "92HD66B2X5", .patch = patch_stac92hd83xxx},
4266 { .id = 0x111d76ea, .name = "92HD66B3X5", .patch = patch_stac92hd83xxx},
4267 { .id = 0x111d76eb, .name = "92HD66C1X5", .patch = patch_stac92hd83xxx},
4268 { .id = 0x111d76ec, .name = "92HD66C2X5", .patch = patch_stac92hd83xxx},
4269 { .id = 0x111d76ed, .name = "92HD66C3X5", .patch = patch_stac92hd83xxx},
4270 { .id = 0x111d76ee, .name = "92HD66B1X3", .patch = patch_stac92hd83xxx},
4271 { .id = 0x111d76ef, .name = "92HD66B2X3", .patch = patch_stac92hd83xxx},
4272 { .id = 0x111d76f0, .name = "92HD66B3X3", .patch = patch_stac92hd83xxx},
4273 { .id = 0x111d76f1, .name = "92HD66C1X3", .patch = patch_stac92hd83xxx},
4274 { .id = 0x111d76f2, .name = "92HD66C2X3", .patch = patch_stac92hd83xxx},
4275 { .id = 0x111d76f3, .name = "92HD66C3/65", .patch = patch_stac92hd83xxx},
Matt2f2f4252005-04-13 14:45:30 +02004276 {} /* terminator */
4277};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01004278
4279MODULE_ALIAS("snd-hda-codec-id:8384*");
4280MODULE_ALIAS("snd-hda-codec-id:111d*");
4281
4282MODULE_LICENSE("GPL");
4283MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec");
4284
4285static struct hda_codec_preset_list sigmatel_list = {
4286 .preset = snd_hda_preset_sigmatel,
4287 .owner = THIS_MODULE,
4288};
4289
4290static int __init patch_sigmatel_init(void)
4291{
4292 return snd_hda_add_codec_preset(&sigmatel_list);
4293}
4294
4295static void __exit patch_sigmatel_exit(void)
4296{
4297 snd_hda_delete_codec_preset(&sigmatel_list);
4298}
4299
4300module_init(patch_sigmatel_init)
4301module_exit(patch_sigmatel_exit)