blob: d2fd8ef6aef846b9c3bf13093348c7d11733b1e3 [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>
31#include <sound/core.h>
Mattc7d4b2f2005-06-27 14:59:41 +020032#include <sound/asoundef.h>
Matthew Ranostay45a6ac12008-10-15 14:45:38 -040033#include <sound/jack.h>
Matt2f2f4252005-04-13 14:45:30 +020034#include "hda_codec.h"
35#include "hda_local.h"
Matthew Ranostay1cd22242008-07-18 18:20:52 +020036#include "hda_beep.h"
Matt2f2f4252005-04-13 14:45:30 +020037
Takashi Iwaic6e4c662008-11-25 11:58:19 +010038enum {
39 STAC_VREF_EVENT = 1,
40 STAC_INSERT_EVENT,
41 STAC_PWR_EVENT,
42 STAC_HP_EVENT,
43};
Matt4e550962005-07-04 17:51:39 +020044
Takashi Iwaif5fcc132006-11-24 17:07:44 +010045enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +010046 STAC_AUTO,
Takashi Iwaif5fcc132006-11-24 17:07:44 +010047 STAC_REF,
Tobin Davisbf277782008-02-03 20:31:47 +010048 STAC_9200_OQO,
Takashi Iwaidfe495d2007-08-23 19:04:28 +020049 STAC_9200_DELL_D21,
50 STAC_9200_DELL_D22,
51 STAC_9200_DELL_D23,
52 STAC_9200_DELL_M21,
53 STAC_9200_DELL_M22,
54 STAC_9200_DELL_M23,
55 STAC_9200_DELL_M24,
56 STAC_9200_DELL_M25,
57 STAC_9200_DELL_M26,
58 STAC_9200_DELL_M27,
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +020059 STAC_9200_M4,
60 STAC_9200_M4_2,
Takashi Iwai117f2572008-03-18 09:53:23 +010061 STAC_9200_PANASONIC,
Takashi Iwaif5fcc132006-11-24 17:07:44 +010062 STAC_9200_MODELS
63};
64
65enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +010066 STAC_9205_AUTO,
Takashi Iwaif5fcc132006-11-24 17:07:44 +010067 STAC_9205_REF,
Takashi Iwaidfe495d2007-08-23 19:04:28 +020068 STAC_9205_DELL_M42,
Tobin Davisae0a8ed2007-08-13 15:50:29 +020069 STAC_9205_DELL_M43,
70 STAC_9205_DELL_M44,
Takashi Iwaid9a42682009-01-22 17:40:18 +010071 STAC_9205_EAPD,
Takashi Iwaif5fcc132006-11-24 17:07:44 +010072 STAC_9205_MODELS
73};
74
75enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +010076 STAC_92HD73XX_AUTO,
Takashi Iwai9e43f0d2008-12-17 14:51:01 +010077 STAC_92HD73XX_NO_JD, /* no jack-detection */
Matthew Ranostaye1f0d662007-12-13 17:47:21 +010078 STAC_92HD73XX_REF,
Takashi Iwai661cd8f2008-11-25 15:18:29 +010079 STAC_DELL_M6_AMIC,
80 STAC_DELL_M6_DMIC,
81 STAC_DELL_M6_BOTH,
Matthew Ranostay6b3ab212008-11-03 08:12:43 -050082 STAC_DELL_EQ,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +010083 STAC_92HD73XX_MODELS
84};
85
86enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +010087 STAC_92HD83XXX_AUTO,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +020088 STAC_92HD83XXX_REF,
Matthew Ranostay32ed3f42009-01-22 20:53:29 -050089 STAC_92HD83XXX_PWR_REF,
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -050090 STAC_DELL_S14,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +020091 STAC_92HD83XXX_MODELS
92};
93
94enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +010095 STAC_92HD71BXX_AUTO,
Matthew Ranostaye035b842007-11-06 11:53:55 +010096 STAC_92HD71BXX_REF,
Matthew Ranostaya7662642008-02-21 07:51:14 +010097 STAC_DELL_M4_1,
98 STAC_DELL_M4_2,
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -050099 STAC_DELL_M4_3,
Matthew Ranostay6a14f582008-09-12 12:02:30 -0400100 STAC_HP_M4,
Takashi Iwai1b0652e2009-01-14 08:27:35 +0100101 STAC_HP_DV5,
Christoph Plattnerae6241f2009-03-08 23:19:05 +0100102 STAC_HP_HDX,
Matthew Ranostaye035b842007-11-06 11:53:55 +0100103 STAC_92HD71BXX_MODELS
104};
105
106enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +0100107 STAC_925x_AUTO,
Tobin Davis8e21c342007-01-08 11:04:17 +0100108 STAC_925x_REF,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +0200109 STAC_M1,
110 STAC_M1_2,
111 STAC_M2,
Tobin Davis8e21c342007-01-08 11:04:17 +0100112 STAC_M2_2,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +0200113 STAC_M3,
114 STAC_M5,
115 STAC_M6,
Tobin Davis8e21c342007-01-08 11:04:17 +0100116 STAC_925x_MODELS
117};
118
119enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +0100120 STAC_922X_AUTO,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100121 STAC_D945_REF,
122 STAC_D945GTP3,
123 STAC_D945GTP5,
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +0200124 STAC_INTEL_MAC_V1,
125 STAC_INTEL_MAC_V2,
126 STAC_INTEL_MAC_V3,
127 STAC_INTEL_MAC_V4,
128 STAC_INTEL_MAC_V5,
Nicolas Boichat536319a2008-07-21 22:18:01 +0800129 STAC_INTEL_MAC_AUTO, /* This model is selected if no module parameter
130 * is given, one of the above models will be
131 * chosen according to the subsystem id. */
Takashi Iwaidfe495d2007-08-23 19:04:28 +0200132 /* for backward compatibility */
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100133 STAC_MACMINI,
Takashi Iwai3fc24d82007-02-16 13:27:18 +0100134 STAC_MACBOOK,
Nicolas Boichat6f0778d2007-03-15 12:38:15 +0100135 STAC_MACBOOK_PRO_V1,
136 STAC_MACBOOK_PRO_V2,
Sylvain FORETf16928f2007-04-27 14:22:36 +0200137 STAC_IMAC_INTEL,
Takashi Iwai0dae0f82007-05-21 12:41:29 +0200138 STAC_IMAC_INTEL_20,
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -0300139 STAC_ECS_202,
Takashi Iwaidfe495d2007-08-23 19:04:28 +0200140 STAC_922X_DELL_D81,
141 STAC_922X_DELL_D82,
142 STAC_922X_DELL_M81,
143 STAC_922X_DELL_M82,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100144 STAC_922X_MODELS
145};
146
147enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +0100148 STAC_927X_AUTO,
Takashi Iwaie28d8322008-12-17 13:48:29 +0100149 STAC_D965_REF_NO_JD, /* no jack-detection */
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100150 STAC_D965_REF,
151 STAC_D965_3ST,
152 STAC_D965_5ST,
Takashi Iwai679d92e2009-05-24 19:00:08 +0200153 STAC_D965_5ST_NO_FP,
Tobin Davis4ff076e2007-08-07 11:48:12 +0200154 STAC_DELL_3ST,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +0100155 STAC_DELL_BIOS,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100156 STAC_927X_MODELS
157};
Matt Porter403d1942005-11-29 15:00:51 +0100158
Takashi Iwai307282c2009-03-12 18:17:58 +0100159enum {
160 STAC_9872_AUTO,
161 STAC_9872_VAIO,
162 STAC_9872_MODELS
163};
164
Matthew Ranostay74aeaab2008-10-25 01:06:04 -0400165struct sigmatel_event {
166 hda_nid_t nid;
Takashi Iwaic6e4c662008-11-25 11:58:19 +0100167 unsigned char type;
168 unsigned char tag;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -0400169 int data;
170};
171
172struct sigmatel_jack {
173 hda_nid_t nid;
174 int type;
175 struct snd_jack *jack;
176};
177
Matt2f2f4252005-04-13 14:45:30 +0200178struct sigmatel_spec {
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100179 struct snd_kcontrol_new *mixers[4];
Mattc7d4b2f2005-06-27 14:59:41 +0200180 unsigned int num_mixers;
181
Matt Porter403d1942005-11-29 15:00:51 +0100182 int board_config;
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -0500183 unsigned int eapd_switch: 1;
Mattc7d4b2f2005-06-27 14:59:41 +0200184 unsigned int surr_switch: 1;
Matt Porter3cc08dc2006-01-23 15:27:49 +0100185 unsigned int alt_switch: 1;
Takashi Iwai82bc9552006-03-21 11:24:42 +0100186 unsigned int hp_detect: 1;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400187 unsigned int spdif_mute: 1;
Takashi Iwai7c7767e2009-01-20 15:28:38 +0100188 unsigned int check_volume_offset:1;
Mattc7d4b2f2005-06-27 14:59:41 +0200189
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +0100190 /* gpio lines */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +0200191 unsigned int eapd_mask;
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +0100192 unsigned int gpio_mask;
193 unsigned int gpio_dir;
194 unsigned int gpio_data;
195 unsigned int gpio_mute;
196
Matthew Ranostay8daaaa92008-08-15 07:45:52 +0200197 /* stream */
198 unsigned int stream_delay;
199
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +0100200 /* analog loopback */
Takashi Iwaid78d7a92009-03-02 14:26:25 +0100201 struct snd_kcontrol_new *aloopback_ctl;
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 */
206 unsigned int num_pwrs;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200207 unsigned int *pwr_mapping;
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100208 hda_nid_t *pwr_nids;
Matthew Ranostayb76c8502008-02-06 14:49:44 +0100209 hda_nid_t *dac_list;
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100210
Matthew Ranostay74aeaab2008-10-25 01:06:04 -0400211 /* jack detection */
212 struct snd_array jacks;
213
214 /* events */
215 struct snd_array events;
216
Matt2f2f4252005-04-13 14:45:30 +0200217 /* playback */
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100218 struct hda_input_mux *mono_mux;
Matthew Ranostay89385032008-09-11 09:49:39 -0400219 struct hda_input_mux *amp_mux;
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100220 unsigned int cur_mmux;
Matt2f2f4252005-04-13 14:45:30 +0200221 struct hda_multi_out multiout;
Matt Porter3cc08dc2006-01-23 15:27:49 +0100222 hda_nid_t dac_nids[5];
Takashi Iwaic21ca4a2008-12-19 09:26:08 +0100223 hda_nid_t hp_dacs[5];
224 hda_nid_t speaker_dacs[5];
Matt2f2f4252005-04-13 14:45:30 +0200225
Takashi Iwai7c7767e2009-01-20 15:28:38 +0100226 int volume_offset;
227
Matt2f2f4252005-04-13 14:45:30 +0200228 /* capture */
229 hda_nid_t *adc_nids;
Matt2f2f4252005-04-13 14:45:30 +0200230 unsigned int num_adcs;
Mattdabbed62005-06-14 10:19:34 +0200231 hda_nid_t *mux_nids;
232 unsigned int num_muxes;
Matt Porter8b657272006-10-26 17:12:59 +0200233 hda_nid_t *dmic_nids;
234 unsigned int num_dmics;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100235 hda_nid_t *dmux_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +0100236 unsigned int num_dmuxes;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200237 hda_nid_t *smux_nids;
238 unsigned int num_smuxes;
Matthew Ranostay65973632008-09-16 10:39:37 -0400239 const char **spdif_labels;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200240
Mattdabbed62005-06-14 10:19:34 +0200241 hda_nid_t dig_in_nid;
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100242 hda_nid_t mono_nid;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200243 hda_nid_t anabeep_nid;
244 hda_nid_t digbeep_nid;
Matt2f2f4252005-04-13 14:45:30 +0200245
Matt2f2f4252005-04-13 14:45:30 +0200246 /* pin widgets */
247 hda_nid_t *pin_nids;
248 unsigned int num_pins;
Matt2f2f4252005-04-13 14:45:30 +0200249
250 /* codec specific stuff */
251 struct hda_verb *init;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100252 struct snd_kcontrol_new *mixer;
Matt2f2f4252005-04-13 14:45:30 +0200253
254 /* capture source */
Matt Porter8b657272006-10-26 17:12:59 +0200255 struct hda_input_mux *dinput_mux;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100256 unsigned int cur_dmux[2];
Mattc7d4b2f2005-06-27 14:59:41 +0200257 struct hda_input_mux *input_mux;
Matt Porter3cc08dc2006-01-23 15:27:49 +0100258 unsigned int cur_mux[3];
Matthew Ranostayd9737752008-09-07 12:03:41 +0200259 struct hda_input_mux *sinput_mux;
260 unsigned int cur_smux[2];
Matthew Ranostay2a9c7812008-09-13 16:45:39 -0400261 unsigned int cur_amux;
262 hda_nid_t *amp_nids;
263 unsigned int num_amps;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +0200264 unsigned int powerdown_adcs;
Matt2f2f4252005-04-13 14:45:30 +0200265
Matt Porter403d1942005-11-29 15:00:51 +0100266 /* i/o switches */
267 unsigned int io_switch[2];
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +0200268 unsigned int clfe_swap;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +0100269 hda_nid_t line_switch; /* shared line-in for input and output */
270 hda_nid_t mic_switch; /* shared mic-in for input and output */
271 hda_nid_t hp_switch; /* NID of HP as line-out */
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200272 unsigned int aloopback;
Matt2f2f4252005-04-13 14:45:30 +0200273
Mattc7d4b2f2005-06-27 14:59:41 +0200274 struct hda_pcm pcm_rec[2]; /* PCM information */
275
276 /* dynamic controls and input_mux */
277 struct auto_pin_cfg autocfg;
Takashi Iwai603c4012008-07-30 15:01:44 +0200278 struct snd_array kctls;
Matt Porter8b657272006-10-26 17:12:59 +0200279 struct hda_input_mux private_dimux;
Mattc7d4b2f2005-06-27 14:59:41 +0200280 struct hda_input_mux private_imux;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200281 struct hda_input_mux private_smux;
Matthew Ranostay89385032008-09-11 09:49:39 -0400282 struct hda_input_mux private_amp_mux;
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100283 struct hda_input_mux private_mono_mux;
Matt2f2f4252005-04-13 14:45:30 +0200284};
285
286static hda_nid_t stac9200_adc_nids[1] = {
287 0x03,
288};
289
290static hda_nid_t stac9200_mux_nids[1] = {
291 0x0c,
292};
293
294static hda_nid_t stac9200_dac_nids[1] = {
295 0x02,
296};
297
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100298static hda_nid_t stac92hd73xx_pwr_nids[8] = {
299 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
300 0x0f, 0x10, 0x11
301};
302
Matthew Ranostay0ffa9802008-09-08 11:20:05 -0400303static hda_nid_t stac92hd73xx_slave_dig_outs[2] = {
304 0x26, 0,
305};
306
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100307static hda_nid_t stac92hd73xx_adc_nids[2] = {
308 0x1a, 0x1b
309};
310
Matthew Ranostay2a9c7812008-09-13 16:45:39 -0400311#define DELL_M6_AMP 2
312static hda_nid_t stac92hd73xx_amp_nids[3] = {
313 0x0b, 0x0c, 0x0e
Matthew Ranostay89385032008-09-11 09:49:39 -0400314};
315
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100316#define STAC92HD73XX_NUM_DMICS 2
317static hda_nid_t stac92hd73xx_dmic_nids[STAC92HD73XX_NUM_DMICS + 1] = {
318 0x13, 0x14, 0
319};
320
321#define STAC92HD73_DAC_COUNT 5
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100322
323static hda_nid_t stac92hd73xx_mux_nids[4] = {
324 0x28, 0x29, 0x2a, 0x2b,
325};
326
327static hda_nid_t stac92hd73xx_dmux_nids[2] = {
328 0x20, 0x21,
329};
330
Matthew Ranostayd9737752008-09-07 12:03:41 +0200331static hda_nid_t stac92hd73xx_smux_nids[2] = {
332 0x22, 0x23,
333};
334
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200335#define STAC92HD83XXX_NUM_DMICS 2
336static hda_nid_t stac92hd83xxx_dmic_nids[STAC92HD83XXX_NUM_DMICS + 1] = {
337 0x11, 0x12, 0
338};
339
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200340#define STAC92HD83_DAC_COUNT 3
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200341
342static hda_nid_t stac92hd83xxx_dmux_nids[2] = {
343 0x17, 0x18,
344};
345
346static hda_nid_t stac92hd83xxx_adc_nids[2] = {
347 0x15, 0x16,
348};
349
350static hda_nid_t stac92hd83xxx_pwr_nids[4] = {
351 0xa, 0xb, 0xd, 0xe,
352};
353
Matthew Ranostay0ffa9802008-09-08 11:20:05 -0400354static hda_nid_t stac92hd83xxx_slave_dig_outs[2] = {
355 0x1e, 0,
356};
357
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200358static unsigned int stac92hd83xxx_pwr_mapping[4] = {
Matthew Ranostay87e88a72009-01-22 20:38:42 -0500359 0x03, 0x0c, 0x20, 0x40,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200360};
361
Takashi Iwai9248f262009-01-14 09:40:25 +0100362static hda_nid_t stac92hd83xxx_amp_nids[1] = {
Matthew Ranostayc15c5062009-01-13 13:30:07 -0500363 0xc,
364};
365
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100366static hda_nid_t stac92hd71bxx_pwr_nids[3] = {
367 0x0a, 0x0d, 0x0f
368};
369
Matthew Ranostaye035b842007-11-06 11:53:55 +0100370static hda_nid_t stac92hd71bxx_adc_nids[2] = {
371 0x12, 0x13,
372};
373
374static hda_nid_t stac92hd71bxx_mux_nids[2] = {
375 0x1a, 0x1b
376};
377
Matthew Ranostay4b33c762008-10-10 09:07:23 -0400378static hda_nid_t stac92hd71bxx_dmux_nids[2] = {
379 0x1c, 0x1d,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100380};
381
Matthew Ranostayd9737752008-09-07 12:03:41 +0200382static hda_nid_t stac92hd71bxx_smux_nids[2] = {
383 0x24, 0x25,
384};
385
Matthew Ranostaye035b842007-11-06 11:53:55 +0100386#define STAC92HD71BXX_NUM_DMICS 2
387static hda_nid_t stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS + 1] = {
388 0x18, 0x19, 0
389};
390
Matthew Ranostay0ffa9802008-09-08 11:20:05 -0400391static hda_nid_t stac92hd71bxx_slave_dig_outs[2] = {
392 0x22, 0
393};
394
Tobin Davis8e21c342007-01-08 11:04:17 +0100395static hda_nid_t stac925x_adc_nids[1] = {
396 0x03,
397};
398
399static hda_nid_t stac925x_mux_nids[1] = {
400 0x0f,
401};
402
403static hda_nid_t stac925x_dac_nids[1] = {
404 0x02,
405};
406
Takashi Iwaif6e98522007-10-16 14:27:04 +0200407#define STAC925X_NUM_DMICS 1
408static hda_nid_t stac925x_dmic_nids[STAC925X_NUM_DMICS + 1] = {
409 0x15, 0
Tobin Davis2c11f952007-05-17 09:36:34 +0200410};
411
Takashi Iwai1697055e2007-12-18 18:05:52 +0100412static hda_nid_t stac925x_dmux_nids[1] = {
413 0x14,
414};
415
Matt2f2f4252005-04-13 14:45:30 +0200416static hda_nid_t stac922x_adc_nids[2] = {
417 0x06, 0x07,
418};
419
420static hda_nid_t stac922x_mux_nids[2] = {
421 0x12, 0x13,
422};
423
Matthew Ranostay45c1d852009-02-04 17:49:41 -0500424static hda_nid_t stac927x_slave_dig_outs[2] = {
425 0x1f, 0,
426};
427
Matt Porter3cc08dc2006-01-23 15:27:49 +0100428static hda_nid_t stac927x_adc_nids[3] = {
429 0x07, 0x08, 0x09
430};
431
432static hda_nid_t stac927x_mux_nids[3] = {
433 0x15, 0x16, 0x17
434};
435
Matthew Ranostayd9737752008-09-07 12:03:41 +0200436static hda_nid_t stac927x_smux_nids[1] = {
437 0x21,
438};
439
Matthew Ranostayb76c8502008-02-06 14:49:44 +0100440static hda_nid_t stac927x_dac_nids[6] = {
441 0x02, 0x03, 0x04, 0x05, 0x06, 0
442};
443
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100444static hda_nid_t stac927x_dmux_nids[1] = {
445 0x1b,
446};
447
Matthew Ranostay7f168592007-10-18 17:38:17 +0200448#define STAC927X_NUM_DMICS 2
449static hda_nid_t stac927x_dmic_nids[STAC927X_NUM_DMICS + 1] = {
450 0x13, 0x14, 0
451};
452
Matthew Ranostay65973632008-09-16 10:39:37 -0400453static const char *stac927x_spdif_labels[5] = {
454 "Digital Playback", "ADAT", "Analog Mux 1",
455 "Analog Mux 2", "Analog Mux 3"
456};
457
Matt Porterf3302a52006-07-31 12:49:34 +0200458static hda_nid_t stac9205_adc_nids[2] = {
459 0x12, 0x13
460};
461
462static hda_nid_t stac9205_mux_nids[2] = {
463 0x19, 0x1a
464};
465
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100466static hda_nid_t stac9205_dmux_nids[1] = {
Takashi Iwai1697055e2007-12-18 18:05:52 +0100467 0x1d,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100468};
469
Matthew Ranostayd9737752008-09-07 12:03:41 +0200470static hda_nid_t stac9205_smux_nids[1] = {
471 0x21,
472};
473
Takashi Iwaif6e98522007-10-16 14:27:04 +0200474#define STAC9205_NUM_DMICS 2
475static hda_nid_t stac9205_dmic_nids[STAC9205_NUM_DMICS + 1] = {
476 0x17, 0x18, 0
Matt Porter8b657272006-10-26 17:12:59 +0200477};
478
Mattc7d4b2f2005-06-27 14:59:41 +0200479static hda_nid_t stac9200_pin_nids[8] = {
Tobin Davis93ed1502006-09-01 21:03:12 +0200480 0x08, 0x09, 0x0d, 0x0e,
481 0x0f, 0x10, 0x11, 0x12,
Matt2f2f4252005-04-13 14:45:30 +0200482};
483
Tobin Davis8e21c342007-01-08 11:04:17 +0100484static hda_nid_t stac925x_pin_nids[8] = {
485 0x07, 0x08, 0x0a, 0x0b,
486 0x0c, 0x0d, 0x10, 0x11,
487};
488
Matt2f2f4252005-04-13 14:45:30 +0200489static hda_nid_t stac922x_pin_nids[10] = {
490 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
491 0x0f, 0x10, 0x11, 0x15, 0x1b,
492};
493
Matthew Ranostaya7662642008-02-21 07:51:14 +0100494static hda_nid_t stac92hd73xx_pin_nids[13] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100495 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
496 0x0f, 0x10, 0x11, 0x12, 0x13,
Matthew Ranostayd9737752008-09-07 12:03:41 +0200497 0x14, 0x22, 0x23
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100498};
499
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -0500500static hda_nid_t stac92hd83xxx_pin_nids[10] = {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200501 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -0500502 0x0f, 0x10, 0x11, 0x1f, 0x20,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200503};
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -0500504
505#define STAC92HD71BXX_NUM_PINS 13
506static hda_nid_t stac92hd71bxx_pin_nids_4port[STAC92HD71BXX_NUM_PINS] = {
507 0x0a, 0x0b, 0x0c, 0x0d, 0x00,
508 0x00, 0x14, 0x18, 0x19, 0x1e,
509 0x1f, 0x20, 0x27
510};
511static hda_nid_t stac92hd71bxx_pin_nids_6port[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaye035b842007-11-06 11:53:55 +0100512 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
513 0x0f, 0x14, 0x18, 0x19, 0x1e,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -0500514 0x1f, 0x20, 0x27
Matthew Ranostaye035b842007-11-06 11:53:55 +0100515};
516
Matt Porter3cc08dc2006-01-23 15:27:49 +0100517static hda_nid_t stac927x_pin_nids[14] = {
518 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
519 0x0f, 0x10, 0x11, 0x12, 0x13,
520 0x14, 0x21, 0x22, 0x23,
521};
522
Matt Porterf3302a52006-07-31 12:49:34 +0200523static hda_nid_t stac9205_pin_nids[12] = {
524 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
525 0x0f, 0x14, 0x16, 0x17, 0x18,
526 0x21, 0x22,
Matt Porterf3302a52006-07-31 12:49:34 +0200527};
528
Matthew Ranostay89385032008-09-11 09:49:39 -0400529#define stac92xx_amp_volume_info snd_hda_mixer_amp_volume_info
530
531static int stac92xx_amp_volume_get(struct snd_kcontrol *kcontrol,
532 struct snd_ctl_elem_value *ucontrol)
533{
534 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
535 struct sigmatel_spec *spec = codec->spec;
536 hda_nid_t nid = spec->amp_nids[spec->cur_amux];
537
538 kcontrol->private_value ^= get_amp_nid(kcontrol);
539 kcontrol->private_value |= nid;
540
541 return snd_hda_mixer_amp_volume_get(kcontrol, ucontrol);
542}
543
544static int stac92xx_amp_volume_put(struct snd_kcontrol *kcontrol,
545 struct snd_ctl_elem_value *ucontrol)
546{
547 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
548 struct sigmatel_spec *spec = codec->spec;
549 hda_nid_t nid = spec->amp_nids[spec->cur_amux];
550
551 kcontrol->private_value ^= get_amp_nid(kcontrol);
552 kcontrol->private_value |= nid;
553
554 return snd_hda_mixer_amp_volume_put(kcontrol, ucontrol);
555}
556
Matt Porter8b657272006-10-26 17:12:59 +0200557static int stac92xx_dmux_enum_info(struct snd_kcontrol *kcontrol,
558 struct snd_ctl_elem_info *uinfo)
559{
560 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
561 struct sigmatel_spec *spec = codec->spec;
562 return snd_hda_input_mux_info(spec->dinput_mux, uinfo);
563}
564
565static int stac92xx_dmux_enum_get(struct snd_kcontrol *kcontrol,
566 struct snd_ctl_elem_value *ucontrol)
567{
568 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
569 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100570 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Matt Porter8b657272006-10-26 17:12:59 +0200571
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100572 ucontrol->value.enumerated.item[0] = spec->cur_dmux[dmux_idx];
Matt Porter8b657272006-10-26 17:12:59 +0200573 return 0;
574}
575
576static int stac92xx_dmux_enum_put(struct snd_kcontrol *kcontrol,
577 struct snd_ctl_elem_value *ucontrol)
578{
579 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
580 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100581 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Matt Porter8b657272006-10-26 17:12:59 +0200582
583 return snd_hda_input_mux_put(codec, spec->dinput_mux, ucontrol,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100584 spec->dmux_nids[dmux_idx], &spec->cur_dmux[dmux_idx]);
Matt Porter8b657272006-10-26 17:12:59 +0200585}
586
Matthew Ranostayd9737752008-09-07 12:03:41 +0200587static int stac92xx_smux_enum_info(struct snd_kcontrol *kcontrol,
588 struct snd_ctl_elem_info *uinfo)
589{
590 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
591 struct sigmatel_spec *spec = codec->spec;
592 return snd_hda_input_mux_info(spec->sinput_mux, uinfo);
593}
594
595static int stac92xx_smux_enum_get(struct snd_kcontrol *kcontrol,
596 struct snd_ctl_elem_value *ucontrol)
597{
598 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
599 struct sigmatel_spec *spec = codec->spec;
600 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
601
602 ucontrol->value.enumerated.item[0] = spec->cur_smux[smux_idx];
603 return 0;
604}
605
606static int stac92xx_smux_enum_put(struct snd_kcontrol *kcontrol,
607 struct snd_ctl_elem_value *ucontrol)
608{
609 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
610 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400611 struct hda_input_mux *smux = &spec->private_smux;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200612 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400613 int err, val;
614 hda_nid_t nid;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200615
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400616 err = snd_hda_input_mux_put(codec, spec->sinput_mux, ucontrol,
Matthew Ranostayd9737752008-09-07 12:03:41 +0200617 spec->smux_nids[smux_idx], &spec->cur_smux[smux_idx]);
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400618 if (err < 0)
619 return err;
620
621 if (spec->spdif_mute) {
622 if (smux_idx == 0)
623 nid = spec->multiout.dig_out_nid;
624 else
625 nid = codec->slave_dig_outs[smux_idx - 1];
626 if (spec->cur_smux[smux_idx] == smux->num_items - 1)
Takashi Iwaic9b46f92008-12-01 11:42:09 +0100627 val = HDA_AMP_MUTE;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400628 else
Takashi Iwaic9b46f92008-12-01 11:42:09 +0100629 val = 0;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400630 /* un/mute SPDIF out */
Takashi Iwaic9b46f92008-12-01 11:42:09 +0100631 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
632 HDA_AMP_MUTE, val);
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400633 }
634 return 0;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200635}
636
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100637static int stac92xx_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Matt2f2f4252005-04-13 14:45:30 +0200638{
639 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
640 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +0200641 return snd_hda_input_mux_info(spec->input_mux, uinfo);
Matt2f2f4252005-04-13 14:45:30 +0200642}
643
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100644static int stac92xx_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Matt2f2f4252005-04-13 14:45:30 +0200645{
646 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
647 struct sigmatel_spec *spec = codec->spec;
648 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
649
650 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
651 return 0;
652}
653
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100654static int stac92xx_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Matt2f2f4252005-04-13 14:45:30 +0200655{
656 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
657 struct sigmatel_spec *spec = codec->spec;
658 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
659
Mattc7d4b2f2005-06-27 14:59:41 +0200660 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
Matt2f2f4252005-04-13 14:45:30 +0200661 spec->mux_nids[adc_idx], &spec->cur_mux[adc_idx]);
662}
663
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100664static int stac92xx_mono_mux_enum_info(struct snd_kcontrol *kcontrol,
665 struct snd_ctl_elem_info *uinfo)
666{
667 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
668 struct sigmatel_spec *spec = codec->spec;
669 return snd_hda_input_mux_info(spec->mono_mux, uinfo);
670}
671
672static int stac92xx_mono_mux_enum_get(struct snd_kcontrol *kcontrol,
673 struct snd_ctl_elem_value *ucontrol)
674{
675 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
676 struct sigmatel_spec *spec = codec->spec;
677
678 ucontrol->value.enumerated.item[0] = spec->cur_mmux;
679 return 0;
680}
681
682static int stac92xx_mono_mux_enum_put(struct snd_kcontrol *kcontrol,
683 struct snd_ctl_elem_value *ucontrol)
684{
685 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
686 struct sigmatel_spec *spec = codec->spec;
687
688 return snd_hda_input_mux_put(codec, spec->mono_mux, ucontrol,
689 spec->mono_nid, &spec->cur_mmux);
690}
691
Matthew Ranostay89385032008-09-11 09:49:39 -0400692static int stac92xx_amp_mux_enum_info(struct snd_kcontrol *kcontrol,
693 struct snd_ctl_elem_info *uinfo)
694{
695 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
696 struct sigmatel_spec *spec = codec->spec;
697 return snd_hda_input_mux_info(spec->amp_mux, uinfo);
698}
699
700static int stac92xx_amp_mux_enum_get(struct snd_kcontrol *kcontrol,
701 struct snd_ctl_elem_value *ucontrol)
702{
703 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
704 struct sigmatel_spec *spec = codec->spec;
705
706 ucontrol->value.enumerated.item[0] = spec->cur_amux;
707 return 0;
708}
709
710static int stac92xx_amp_mux_enum_put(struct snd_kcontrol *kcontrol,
711 struct snd_ctl_elem_value *ucontrol)
712{
713 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
714 struct sigmatel_spec *spec = codec->spec;
715 struct snd_kcontrol *ctl =
716 snd_hda_find_mixer_ctl(codec, "Amp Capture Volume");
717 if (!ctl)
718 return -EINVAL;
719
720 snd_ctl_notify(codec->bus->card, SNDRV_CTL_EVENT_MASK_VALUE |
721 SNDRV_CTL_EVENT_MASK_INFO, &ctl->id);
722
723 return snd_hda_input_mux_put(codec, spec->amp_mux, ucontrol,
724 0, &spec->cur_amux);
725}
726
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200727#define stac92xx_aloopback_info snd_ctl_boolean_mono_info
728
729static int stac92xx_aloopback_get(struct snd_kcontrol *kcontrol,
730 struct snd_ctl_elem_value *ucontrol)
731{
732 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100733 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200734 struct sigmatel_spec *spec = codec->spec;
735
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100736 ucontrol->value.integer.value[0] = !!(spec->aloopback &
737 (spec->aloopback_mask << idx));
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200738 return 0;
739}
740
741static int stac92xx_aloopback_put(struct snd_kcontrol *kcontrol,
742 struct snd_ctl_elem_value *ucontrol)
743{
744 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
745 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100746 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200747 unsigned int dac_mode;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100748 unsigned int val, idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200749
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100750 idx_val = spec->aloopback_mask << idx;
751 if (ucontrol->value.integer.value[0])
752 val = spec->aloopback | idx_val;
753 else
754 val = spec->aloopback & ~idx_val;
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100755 if (spec->aloopback == val)
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200756 return 0;
757
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100758 spec->aloopback = val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200759
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100760 /* Only return the bits defined by the shift value of the
761 * first two bytes of the mask
762 */
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200763 dac_mode = snd_hda_codec_read(codec, codec->afg, 0,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100764 kcontrol->private_value & 0xFFFF, 0x0);
765 dac_mode >>= spec->aloopback_shift;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200766
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100767 if (spec->aloopback & idx_val) {
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200768 snd_hda_power_up(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100769 dac_mode |= idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200770 } else {
771 snd_hda_power_down(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100772 dac_mode &= ~idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200773 }
774
775 snd_hda_codec_write_cache(codec, codec->afg, 0,
776 kcontrol->private_value >> 16, dac_mode);
777
778 return 1;
779}
780
Mattc7d4b2f2005-06-27 14:59:41 +0200781static struct hda_verb stac9200_core_init[] = {
Matt2f2f4252005-04-13 14:45:30 +0200782 /* set dac0mux for dac converter */
Mattc7d4b2f2005-06-27 14:59:41 +0200783 { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
Matt2f2f4252005-04-13 14:45:30 +0200784 {}
785};
786
Takashi Iwai1194b5b2007-10-10 10:04:26 +0200787static struct hda_verb stac9200_eapd_init[] = {
788 /* set dac0mux for dac converter */
789 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
790 {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
791 {}
792};
793
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100794static struct hda_verb stac92hd73xx_6ch_core_init[] = {
795 /* set master volume and direct control */
796 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100797 /* setup adcs to point to mixer */
798 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
799 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100800 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
801 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
802 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
803 /* setup import muxs */
804 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
805 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
806 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
807 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00},
808 {}
809};
810
Matthew Ranostayd654a662008-03-14 08:46:51 +0100811static struct hda_verb dell_eq_core_init[] = {
812 /* set master volume to max value without distortion
813 * and direct control */
814 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec},
Matthew Ranostayd654a662008-03-14 08:46:51 +0100815 /* setup adcs to point to mixer */
816 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
817 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
818 /* setup import muxs */
819 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
820 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
821 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
822 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00},
823 {}
824};
825
Matthew Ranostay52fe0f92008-02-29 12:08:20 +0100826static struct hda_verb dell_m6_core_init[] = {
Matthew Ranostay6b3ab212008-11-03 08:12:43 -0500827 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostay52fe0f92008-02-29 12:08:20 +0100828 /* setup adcs to point to mixer */
829 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
830 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
831 /* setup import muxs */
832 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
833 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
834 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
835 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00},
836 {}
837};
838
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100839static struct hda_verb stac92hd73xx_8ch_core_init[] = {
840 /* set master volume and direct control */
841 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100842 /* setup adcs to point to mixer */
843 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
844 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100845 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
846 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
847 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
848 /* setup import muxs */
849 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
850 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
851 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
852 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x03},
853 {}
854};
855
856static struct hda_verb stac92hd73xx_10ch_core_init[] = {
857 /* set master volume and direct control */
858 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100859 /* dac3 is connected to import3 mux */
860 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0xb07f},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100861 /* setup adcs to point to mixer */
862 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
863 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100864 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
865 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
866 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
867 /* setup import muxs */
868 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
869 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
870 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
871 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x03},
872 {}
873};
874
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200875static struct hda_verb stac92hd83xxx_core_init[] = {
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -0500876 { 0xa, AC_VERB_SET_CONNECT_SEL, 0x1},
877 { 0xb, AC_VERB_SET_CONNECT_SEL, 0x1},
878 { 0xd, AC_VERB_SET_CONNECT_SEL, 0x0},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200879
880 /* power state controls amps */
881 { 0x01, AC_VERB_SET_EAPD, 1 << 2},
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -0200882 {}
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200883};
884
Matthew Ranostaye035b842007-11-06 11:53:55 +0100885static struct hda_verb stac92hd71bxx_core_init[] = {
886 /* set master volume and direct control */
887 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -0200888 {}
Matthew Ranostay541eee82007-12-14 12:08:04 +0100889};
890
Matthew Ranostayca8d33f2009-01-26 09:33:52 -0500891#define HD_DISABLE_PORTF 1
Matthew Ranostay541eee82007-12-14 12:08:04 +0100892static struct hda_verb stac92hd71bxx_analog_core_init[] = {
Matthew Ranostayaafc4412008-06-13 18:04:33 +0200893 /* start of config #1 */
894
895 /* connect port 0f to audio mixer */
896 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x2},
Matthew Ranostayaafc4412008-06-13 18:04:33 +0200897 /* start of config #2 */
898
Matthew Ranostay541eee82007-12-14 12:08:04 +0100899 /* set master volume and direct control */
900 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostayca8d33f2009-01-26 09:33:52 -0500901 {}
902};
903
904static struct hda_verb stac92hd71bxx_unmute_core_init[] = {
905 /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */
906 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Matthew Ranostaye035b842007-11-06 11:53:55 +0100907 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
908 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Matthew Ranostaye035b842007-11-06 11:53:55 +0100909 {}
910};
911
Tobin Davis8e21c342007-01-08 11:04:17 +0100912static struct hda_verb stac925x_core_init[] = {
913 /* set dac0mux for dac converter */
914 { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwaic9280d62009-01-15 17:31:00 +0100915 /* mute the master volume */
916 { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
Tobin Davis8e21c342007-01-08 11:04:17 +0100917 {}
918};
919
Mattc7d4b2f2005-06-27 14:59:41 +0200920static struct hda_verb stac922x_core_init[] = {
Matt2f2f4252005-04-13 14:45:30 +0200921 /* set master volume and direct control */
Mattc7d4b2f2005-06-27 14:59:41 +0200922 { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matt2f2f4252005-04-13 14:45:30 +0200923 {}
924};
925
Tobin Davis93ed1502006-09-01 21:03:12 +0200926static struct hda_verb d965_core_init[] = {
Takashi Iwai19039bd2006-06-28 15:52:16 +0200927 /* set master volume and direct control */
Tobin Davis93ed1502006-09-01 21:03:12 +0200928 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Takashi Iwai19039bd2006-06-28 15:52:16 +0200929 /* unmute node 0x1b */
930 { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
931 /* select node 0x03 as DAC */
932 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
933 {}
934};
935
Matt Porter3cc08dc2006-01-23 15:27:49 +0100936static struct hda_verb stac927x_core_init[] = {
937 /* set master volume and direct control */
938 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200939 /* enable analog pc beep path */
940 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
Matt Porter3cc08dc2006-01-23 15:27:49 +0100941 {}
942};
943
Matt Porterf3302a52006-07-31 12:49:34 +0200944static struct hda_verb stac9205_core_init[] = {
945 /* set master volume and direct control */
946 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200947 /* enable analog pc beep path */
948 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
Matt Porterf3302a52006-07-31 12:49:34 +0200949 {}
950};
951
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100952#define STAC_MONO_MUX \
953 { \
954 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
955 .name = "Mono Mux", \
956 .count = 1, \
957 .info = stac92xx_mono_mux_enum_info, \
958 .get = stac92xx_mono_mux_enum_get, \
959 .put = stac92xx_mono_mux_enum_put, \
960 }
961
Matthew Ranostay89385032008-09-11 09:49:39 -0400962#define STAC_AMP_MUX \
963 { \
964 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
965 .name = "Amp Selector Capture Switch", \
966 .count = 1, \
967 .info = stac92xx_amp_mux_enum_info, \
968 .get = stac92xx_amp_mux_enum_get, \
969 .put = stac92xx_amp_mux_enum_put, \
970 }
971
972#define STAC_AMP_VOL(xname, nid, chs, idx, dir) \
973 { \
974 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
975 .name = xname, \
976 .index = 0, \
977 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
978 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
979 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \
980 .info = stac92xx_amp_volume_info, \
981 .get = stac92xx_amp_volume_get, \
982 .put = stac92xx_amp_volume_put, \
983 .tlv = { .c = snd_hda_mixer_amp_tlv }, \
984 .private_value = HDA_COMPOSE_AMP_VAL(nid, chs, idx, dir) \
985 }
986
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100987#define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200988 { \
989 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
990 .name = "Analog Loopback", \
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100991 .count = cnt, \
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200992 .info = stac92xx_aloopback_info, \
993 .get = stac92xx_aloopback_get, \
994 .put = stac92xx_aloopback_put, \
995 .private_value = verb_read | (verb_write << 16), \
996 }
997
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100998static struct snd_kcontrol_new stac9200_mixer[] = {
Matt2f2f4252005-04-13 14:45:30 +0200999 HDA_CODEC_VOLUME("Master Playback Volume", 0xb, 0, HDA_OUTPUT),
1000 HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT),
Matt2f2f4252005-04-13 14:45:30 +02001001 HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT),
1002 HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT),
Matt2f2f4252005-04-13 14:45:30 +02001003 { } /* end */
1004};
1005
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04001006#define DELL_M6_MIXER 6
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001007static struct snd_kcontrol_new stac92hd73xx_6ch_mixer[] = {
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04001008 /* start of config #1 */
1009 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
1010 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
1011
1012 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
1013 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
1014
1015 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
1016 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1017
1018 /* start of config #2 */
1019 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1020 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1021
1022 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1023 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1024
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001025 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT),
1026 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT),
1027
1028 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT),
1029 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT),
1030
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001031 { } /* end */
1032};
1033
Takashi Iwaid78d7a92009-03-02 14:26:25 +01001034static struct snd_kcontrol_new stac92hd73xx_6ch_loopback[] = {
1035 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3),
1036 {}
1037};
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001038
Takashi Iwaid78d7a92009-03-02 14:26:25 +01001039static struct snd_kcontrol_new stac92hd73xx_8ch_loopback[] = {
1040 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4),
1041 {}
1042};
1043
1044static struct snd_kcontrol_new stac92hd73xx_10ch_loopback[] = {
1045 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5),
1046 {}
1047};
1048
1049static struct snd_kcontrol_new stac92hd73xx_8ch_mixer[] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001050 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT),
1051 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT),
1052
1053 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT),
1054 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT),
1055
1056 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
1057 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
1058
1059 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1060 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1061
1062 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
1063 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
1064
1065 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1066 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1067
1068 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
1069 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1070 { } /* end */
1071};
1072
1073static struct snd_kcontrol_new stac92hd73xx_10ch_mixer[] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001074 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT),
1075 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT),
1076
1077 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT),
1078 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT),
1079
1080 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
1081 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
1082
1083 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1084 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1085
1086 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
1087 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
1088
1089 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1090 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1091
1092 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
1093 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1094 { } /* end */
1095};
1096
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001097
1098static struct snd_kcontrol_new stac92hd83xxx_mixer[] = {
1099 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x17, 0x0, HDA_OUTPUT),
1100 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x17, 0x0, HDA_OUTPUT),
1101
1102 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x18, 0x0, HDA_OUTPUT),
1103 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x18, 0x0, HDA_OUTPUT),
1104
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001105 HDA_CODEC_VOLUME("DAC0 Capture Volume", 0x1b, 0x3, HDA_INPUT),
1106 HDA_CODEC_MUTE("DAC0 Capture Switch", 0x1b, 0x3, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001107
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001108 HDA_CODEC_VOLUME("DAC1 Capture Volume", 0x1b, 0x4, HDA_INPUT),
1109 HDA_CODEC_MUTE("DAC1 Capture Switch", 0x1b, 0x4, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001110
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001111 HDA_CODEC_VOLUME("Front Mic Capture Volume", 0x1b, 0x0, HDA_INPUT),
1112 HDA_CODEC_MUTE("Front Mic Capture Switch", 0x1b, 0x0, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001113
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001114 HDA_CODEC_VOLUME("Line In Capture Volume", 0x1b, 0x2, HDA_INPUT),
1115 HDA_CODEC_MUTE("Line In Capture Switch", 0x1b, 0x2, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001116
1117 /*
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001118 HDA_CODEC_VOLUME("Mic Capture Volume", 0x1b, 0x1, HDA_INPUT),
1119 HDA_CODEC_MUTE("Mic Capture Switch", 0x1b 0x1, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001120 */
1121 { } /* end */
1122};
1123
Matthew Ranostay541eee82007-12-14 12:08:04 +01001124static struct snd_kcontrol_new stac92hd71bxx_analog_mixer[] = {
Matthew Ranostay9b359472007-11-07 13:03:12 +01001125 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x1c, 0x0, HDA_OUTPUT),
1126 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1c, 0x0, HDA_OUTPUT),
Matthew Ranostay9b359472007-11-07 13:03:12 +01001127
1128 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x1d, 0x0, HDA_OUTPUT),
1129 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1d, 0x0, HDA_OUTPUT),
Matthew Ranostay1cd22242008-07-18 18:20:52 +02001130 /* analog pc-beep replaced with digital beep support */
1131 /*
Matthew Ranostayf7c5dda2008-07-10 17:49:11 +02001132 HDA_CODEC_VOLUME("PC Beep Volume", 0x17, 0x2, HDA_INPUT),
1133 HDA_CODEC_MUTE("PC Beep Switch", 0x17, 0x2, HDA_INPUT),
Matthew Ranostay1cd22242008-07-18 18:20:52 +02001134 */
Matthew Ranostayf7c5dda2008-07-10 17:49:11 +02001135
Matthew Ranostay687cb982008-10-11 13:52:43 -04001136 HDA_CODEC_MUTE("Import0 Mux Capture Switch", 0x17, 0x0, HDA_INPUT),
1137 HDA_CODEC_VOLUME("Import0 Mux Capture Volume", 0x17, 0x0, HDA_INPUT),
Matthew Ranostay4b33c762008-10-10 09:07:23 -04001138
Matthew Ranostay687cb982008-10-11 13:52:43 -04001139 HDA_CODEC_MUTE("Import1 Mux Capture Switch", 0x17, 0x1, HDA_INPUT),
1140 HDA_CODEC_VOLUME("Import1 Mux Capture Volume", 0x17, 0x1, HDA_INPUT),
Matthew Ranostay4b33c762008-10-10 09:07:23 -04001141
1142 HDA_CODEC_MUTE("DAC0 Capture Switch", 0x17, 0x3, HDA_INPUT),
1143 HDA_CODEC_VOLUME("DAC0 Capture Volume", 0x17, 0x3, HDA_INPUT),
1144
1145 HDA_CODEC_MUTE("DAC1 Capture Switch", 0x17, 0x4, HDA_INPUT),
1146 HDA_CODEC_VOLUME("DAC1 Capture Volume", 0x17, 0x4, HDA_INPUT),
Matthew Ranostaye035b842007-11-06 11:53:55 +01001147 { } /* end */
1148};
1149
Takashi Iwaid78d7a92009-03-02 14:26:25 +01001150static struct snd_kcontrol_new stac92hd71bxx_loopback[] = {
1151 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2)
1152};
Matthew Ranostay541eee82007-12-14 12:08:04 +01001153
Takashi Iwaid78d7a92009-03-02 14:26:25 +01001154static struct snd_kcontrol_new stac92hd71bxx_mixer[] = {
Matthew Ranostay541eee82007-12-14 12:08:04 +01001155 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x1c, 0x0, HDA_OUTPUT),
1156 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1c, 0x0, HDA_OUTPUT),
Matthew Ranostay541eee82007-12-14 12:08:04 +01001157
1158 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x1d, 0x0, HDA_OUTPUT),
1159 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1d, 0x0, HDA_OUTPUT),
Matthew Ranostay541eee82007-12-14 12:08:04 +01001160 { } /* end */
1161};
1162
Tobin Davis8e21c342007-01-08 11:04:17 +01001163static struct snd_kcontrol_new stac925x_mixer[] = {
Takashi Iwaic9280d62009-01-15 17:31:00 +01001164 HDA_CODEC_VOLUME("Master Playback Volume", 0x0e, 0, HDA_OUTPUT),
1165 HDA_CODEC_MUTE("Master Playback Switch", 0x0e, 0, HDA_OUTPUT),
Tobin Davis8e21c342007-01-08 11:04:17 +01001166 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_OUTPUT),
Mauro Carvalho Chehab587755f2008-05-25 18:20:06 +02001167 HDA_CODEC_MUTE("Capture Switch", 0x14, 0, HDA_OUTPUT),
Tobin Davis8e21c342007-01-08 11:04:17 +01001168 { } /* end */
1169};
1170
Takashi Iwaid1d985f2006-11-23 19:27:12 +01001171static struct snd_kcontrol_new stac9205_mixer[] = {
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001172 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x1b, 0x0, HDA_INPUT),
1173 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1d, 0x0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001174
1175 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x1c, 0x0, HDA_INPUT),
1176 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1e, 0x0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001177 { } /* end */
1178};
1179
Takashi Iwaid78d7a92009-03-02 14:26:25 +01001180static struct snd_kcontrol_new stac9205_loopback[] = {
1181 STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1),
1182 {}
1183};
1184
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001185/* This needs to be generated dynamically based on sequence */
1186static struct snd_kcontrol_new stac922x_mixer[] = {
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001187 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x17, 0x0, HDA_INPUT),
1188 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x17, 0x0, HDA_INPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001189
1190 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x18, 0x0, HDA_INPUT),
1191 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x18, 0x0, HDA_INPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001192 { } /* end */
1193};
1194
1195
1196static struct snd_kcontrol_new stac927x_mixer[] = {
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001197 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x18, 0x0, HDA_INPUT),
1198 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1b, 0x0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001199
1200 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x19, 0x0, HDA_INPUT),
1201 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1c, 0x0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001202
1203 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x2, 0x1A, 0x0, HDA_INPUT),
1204 HDA_CODEC_MUTE_IDX("Capture Switch", 0x2, 0x1d, 0x0, HDA_OUTPUT),
Matt Porterf3302a52006-07-31 12:49:34 +02001205 { } /* end */
1206};
1207
Takashi Iwaid78d7a92009-03-02 14:26:25 +01001208static struct snd_kcontrol_new stac927x_loopback[] = {
1209 STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1),
1210 {}
1211};
1212
Takashi Iwai1697055e2007-12-18 18:05:52 +01001213static struct snd_kcontrol_new stac_dmux_mixer = {
1214 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1215 .name = "Digital Input Source",
1216 /* count set later */
1217 .info = stac92xx_dmux_enum_info,
1218 .get = stac92xx_dmux_enum_get,
1219 .put = stac92xx_dmux_enum_put,
1220};
1221
Matthew Ranostayd9737752008-09-07 12:03:41 +02001222static struct snd_kcontrol_new stac_smux_mixer = {
1223 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Matthew Ranostaye3487972008-09-08 11:36:59 -04001224 .name = "IEC958 Playback Source",
Matthew Ranostayd9737752008-09-07 12:03:41 +02001225 /* count set later */
1226 .info = stac92xx_smux_enum_info,
1227 .get = stac92xx_smux_enum_get,
1228 .put = stac92xx_smux_enum_put,
1229};
1230
Takashi Iwai2134ea42008-01-10 16:53:55 +01001231static const char *slave_vols[] = {
1232 "Front Playback Volume",
1233 "Surround Playback Volume",
1234 "Center Playback Volume",
1235 "LFE Playback Volume",
1236 "Side Playback Volume",
1237 "Headphone Playback Volume",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001238 "Speaker Playback Volume",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001239 NULL
1240};
1241
1242static const char *slave_sws[] = {
1243 "Front Playback Switch",
1244 "Surround Playback Switch",
1245 "Center Playback Switch",
1246 "LFE Playback Switch",
1247 "Side Playback Switch",
1248 "Headphone Playback Switch",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001249 "Speaker Playback Switch",
Takashi Iwaiedb54a52008-01-29 12:47:02 +01001250 "IEC958 Playback Switch",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001251 NULL
1252};
1253
Takashi Iwai603c4012008-07-30 15:01:44 +02001254static void stac92xx_free_kctls(struct hda_codec *codec);
Takashi Iwaie4973e12008-11-18 09:32:42 +01001255static int stac92xx_add_jack(struct hda_codec *codec, hda_nid_t nid, int type);
Takashi Iwai603c4012008-07-30 15:01:44 +02001256
Matt2f2f4252005-04-13 14:45:30 +02001257static int stac92xx_build_controls(struct hda_codec *codec)
1258{
1259 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaie4973e12008-11-18 09:32:42 +01001260 struct auto_pin_cfg *cfg = &spec->autocfg;
1261 hda_nid_t nid;
Matt2f2f4252005-04-13 14:45:30 +02001262 int err;
Mattc7d4b2f2005-06-27 14:59:41 +02001263 int i;
Matt2f2f4252005-04-13 14:45:30 +02001264
1265 err = snd_hda_add_new_ctls(codec, spec->mixer);
1266 if (err < 0)
1267 return err;
Mattc7d4b2f2005-06-27 14:59:41 +02001268
1269 for (i = 0; i < spec->num_mixers; i++) {
1270 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1271 if (err < 0)
1272 return err;
1273 }
Takashi Iwai1697055e2007-12-18 18:05:52 +01001274 if (spec->num_dmuxes > 0) {
1275 stac_dmux_mixer.count = spec->num_dmuxes;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001276 err = snd_hda_ctl_add(codec,
Takashi Iwai1697055e2007-12-18 18:05:52 +01001277 snd_ctl_new1(&stac_dmux_mixer, codec));
1278 if (err < 0)
1279 return err;
1280 }
Matthew Ranostayd9737752008-09-07 12:03:41 +02001281 if (spec->num_smuxes > 0) {
Matthew Ranostay00ef50c2008-09-27 18:13:47 -04001282 int wcaps = get_wcaps(codec, spec->multiout.dig_out_nid);
1283 struct hda_input_mux *smux = &spec->private_smux;
1284 /* check for mute support on SPDIF out */
1285 if (wcaps & AC_WCAP_OUT_AMP) {
1286 smux->items[smux->num_items].label = "Off";
1287 smux->items[smux->num_items].index = 0;
1288 smux->num_items++;
1289 spec->spdif_mute = 1;
1290 }
Matthew Ranostayd9737752008-09-07 12:03:41 +02001291 stac_smux_mixer.count = spec->num_smuxes;
Takashi Iwai4f2d23e2008-12-19 10:14:13 +01001292 err = snd_hda_ctl_add(codec,
Matthew Ranostayd9737752008-09-07 12:03:41 +02001293 snd_ctl_new1(&stac_smux_mixer, codec));
1294 if (err < 0)
1295 return err;
1296 }
Mattc7d4b2f2005-06-27 14:59:41 +02001297
Mattdabbed62005-06-14 10:19:34 +02001298 if (spec->multiout.dig_out_nid) {
1299 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
1300 if (err < 0)
1301 return err;
Takashi Iwai9a081602008-02-12 18:37:26 +01001302 err = snd_hda_create_spdif_share_sw(codec,
1303 &spec->multiout);
1304 if (err < 0)
1305 return err;
1306 spec->multiout.share_spdif = 1;
Mattdabbed62005-06-14 10:19:34 +02001307 }
Harvey Harrisonda74ae32008-10-21 20:28:04 -07001308 if (spec->dig_in_nid && !(spec->gpio_dir & 0x01)) {
Mattdabbed62005-06-14 10:19:34 +02001309 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1310 if (err < 0)
1311 return err;
1312 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001313
1314 /* if we have no master control, let's create it */
1315 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001316 unsigned int vmaster_tlv[4];
Takashi Iwai2134ea42008-01-10 16:53:55 +01001317 snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0],
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001318 HDA_OUTPUT, vmaster_tlv);
Takashi Iwai7c7767e2009-01-20 15:28:38 +01001319 /* correct volume offset */
1320 vmaster_tlv[2] += vmaster_tlv[3] * spec->volume_offset;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001321 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001322 vmaster_tlv, slave_vols);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001323 if (err < 0)
1324 return err;
1325 }
1326 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1327 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1328 NULL, slave_sws);
1329 if (err < 0)
1330 return err;
1331 }
1332
Takashi Iwaid78d7a92009-03-02 14:26:25 +01001333 if (spec->aloopback_ctl &&
1334 snd_hda_get_bool_hint(codec, "loopback") == 1) {
1335 err = snd_hda_add_new_ctls(codec, spec->aloopback_ctl);
1336 if (err < 0)
1337 return err;
1338 }
1339
Takashi Iwai603c4012008-07-30 15:01:44 +02001340 stac92xx_free_kctls(codec); /* no longer needed */
Takashi Iwaie4973e12008-11-18 09:32:42 +01001341
1342 /* create jack input elements */
1343 if (spec->hp_detect) {
1344 for (i = 0; i < cfg->hp_outs; i++) {
1345 int type = SND_JACK_HEADPHONE;
1346 nid = cfg->hp_pins[i];
1347 /* jack detection */
1348 if (cfg->hp_outs == i)
1349 type |= SND_JACK_LINEOUT;
1350 err = stac92xx_add_jack(codec, nid, type);
1351 if (err < 0)
1352 return err;
1353 }
1354 }
1355 for (i = 0; i < cfg->line_outs; i++) {
1356 err = stac92xx_add_jack(codec, cfg->line_out_pins[i],
1357 SND_JACK_LINEOUT);
1358 if (err < 0)
1359 return err;
1360 }
1361 for (i = 0; i < AUTO_PIN_LAST; i++) {
1362 nid = cfg->input_pins[i];
1363 if (nid) {
1364 err = stac92xx_add_jack(codec, nid,
1365 SND_JACK_MICROPHONE);
1366 if (err < 0)
1367 return err;
1368 }
1369 }
1370
Mattdabbed62005-06-14 10:19:34 +02001371 return 0;
Matt2f2f4252005-04-13 14:45:30 +02001372}
1373
Matt Porter403d1942005-11-29 15:00:51 +01001374static unsigned int ref9200_pin_configs[8] = {
Mattdabbed62005-06-14 10:19:34 +02001375 0x01c47010, 0x01447010, 0x0221401f, 0x01114010,
Matt2f2f4252005-04-13 14:45:30 +02001376 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1377};
1378
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001379static unsigned int gateway9200_m4_pin_configs[8] = {
1380 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1381 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1382};
1383static unsigned int gateway9200_m4_2_pin_configs[8] = {
1384 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1385 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1386};
1387
1388/*
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001389 STAC 9200 pin configs for
1390 102801A8
1391 102801DE
1392 102801E8
1393*/
1394static unsigned int dell9200_d21_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001395 0x400001f0, 0x400001f1, 0x02214030, 0x01014010,
1396 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001397};
1398
1399/*
1400 STAC 9200 pin configs for
1401 102801C0
1402 102801C1
1403*/
1404static unsigned int dell9200_d22_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001405 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1406 0x01813020, 0x02a19021, 0x90100140, 0x400001f2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001407};
1408
1409/*
1410 STAC 9200 pin configs for
1411 102801C4 (Dell Dimension E310)
1412 102801C5
1413 102801C7
1414 102801D9
1415 102801DA
1416 102801E3
1417*/
1418static unsigned int dell9200_d23_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001419 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1420 0x01813020, 0x01a19021, 0x90100140, 0x400001f2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001421};
1422
1423
1424/*
1425 STAC 9200-32 pin configs for
1426 102801B5 (Dell Inspiron 630m)
1427 102801D8 (Dell Inspiron 640m)
1428*/
1429static unsigned int dell9200_m21_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001430 0x40c003fa, 0x03441340, 0x0321121f, 0x90170310,
1431 0x408003fb, 0x03a11020, 0x401003fc, 0x403003fd,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001432};
1433
1434/*
1435 STAC 9200-32 pin configs for
1436 102801C2 (Dell Latitude D620)
1437 102801C8
1438 102801CC (Dell Latitude D820)
1439 102801D4
1440 102801D6
1441*/
1442static unsigned int dell9200_m22_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001443 0x40c003fa, 0x0144131f, 0x0321121f, 0x90170310,
1444 0x90a70321, 0x03a11020, 0x401003fb, 0x40f000fc,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001445};
1446
1447/*
1448 STAC 9200-32 pin configs for
1449 102801CE (Dell XPS M1710)
1450 102801CF (Dell Precision M90)
1451*/
1452static unsigned int dell9200_m23_pin_configs[8] = {
1453 0x40c003fa, 0x01441340, 0x0421421f, 0x90170310,
1454 0x408003fb, 0x04a1102e, 0x90170311, 0x403003fc,
1455};
1456
1457/*
1458 STAC 9200-32 pin configs for
1459 102801C9
1460 102801CA
1461 102801CB (Dell Latitude 120L)
1462 102801D3
1463*/
1464static unsigned int dell9200_m24_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001465 0x40c003fa, 0x404003fb, 0x0321121f, 0x90170310,
1466 0x408003fc, 0x03a11020, 0x401003fd, 0x403003fe,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001467};
1468
1469/*
1470 STAC 9200-32 pin configs for
1471 102801BD (Dell Inspiron E1505n)
1472 102801EE
1473 102801EF
1474*/
1475static unsigned int dell9200_m25_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001476 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1477 0x408003fb, 0x04a11020, 0x401003fc, 0x403003fd,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001478};
1479
1480/*
1481 STAC 9200-32 pin configs for
1482 102801F5 (Dell Inspiron 1501)
1483 102801F6
1484*/
1485static unsigned int dell9200_m26_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001486 0x40c003fa, 0x404003fb, 0x0421121f, 0x90170310,
1487 0x408003fc, 0x04a11020, 0x401003fd, 0x403003fe,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001488};
1489
1490/*
1491 STAC 9200-32
1492 102801CD (Dell Inspiron E1705/9400)
1493*/
1494static unsigned int dell9200_m27_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001495 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1496 0x90170310, 0x04a11020, 0x90170310, 0x40f003fc,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001497};
1498
Tobin Davisbf277782008-02-03 20:31:47 +01001499static unsigned int oqo9200_pin_configs[8] = {
1500 0x40c000f0, 0x404000f1, 0x0221121f, 0x02211210,
1501 0x90170111, 0x90a70120, 0x400000f2, 0x400000f3,
1502};
1503
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001504
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001505static unsigned int *stac9200_brd_tbl[STAC_9200_MODELS] = {
1506 [STAC_REF] = ref9200_pin_configs,
Tobin Davisbf277782008-02-03 20:31:47 +01001507 [STAC_9200_OQO] = oqo9200_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001508 [STAC_9200_DELL_D21] = dell9200_d21_pin_configs,
1509 [STAC_9200_DELL_D22] = dell9200_d22_pin_configs,
1510 [STAC_9200_DELL_D23] = dell9200_d23_pin_configs,
1511 [STAC_9200_DELL_M21] = dell9200_m21_pin_configs,
1512 [STAC_9200_DELL_M22] = dell9200_m22_pin_configs,
1513 [STAC_9200_DELL_M23] = dell9200_m23_pin_configs,
1514 [STAC_9200_DELL_M24] = dell9200_m24_pin_configs,
1515 [STAC_9200_DELL_M25] = dell9200_m25_pin_configs,
1516 [STAC_9200_DELL_M26] = dell9200_m26_pin_configs,
1517 [STAC_9200_DELL_M27] = dell9200_m27_pin_configs,
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001518 [STAC_9200_M4] = gateway9200_m4_pin_configs,
1519 [STAC_9200_M4_2] = gateway9200_m4_2_pin_configs,
Takashi Iwai117f2572008-03-18 09:53:23 +01001520 [STAC_9200_PANASONIC] = ref9200_pin_configs,
Matt Porter403d1942005-11-29 15:00:51 +01001521};
1522
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001523static const char *stac9200_models[STAC_9200_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01001524 [STAC_AUTO] = "auto",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001525 [STAC_REF] = "ref",
Tobin Davisbf277782008-02-03 20:31:47 +01001526 [STAC_9200_OQO] = "oqo",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001527 [STAC_9200_DELL_D21] = "dell-d21",
1528 [STAC_9200_DELL_D22] = "dell-d22",
1529 [STAC_9200_DELL_D23] = "dell-d23",
1530 [STAC_9200_DELL_M21] = "dell-m21",
1531 [STAC_9200_DELL_M22] = "dell-m22",
1532 [STAC_9200_DELL_M23] = "dell-m23",
1533 [STAC_9200_DELL_M24] = "dell-m24",
1534 [STAC_9200_DELL_M25] = "dell-m25",
1535 [STAC_9200_DELL_M26] = "dell-m26",
1536 [STAC_9200_DELL_M27] = "dell-m27",
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001537 [STAC_9200_M4] = "gateway-m4",
1538 [STAC_9200_M4_2] = "gateway-m4-2",
Takashi Iwai117f2572008-03-18 09:53:23 +01001539 [STAC_9200_PANASONIC] = "panasonic",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001540};
1541
1542static struct snd_pci_quirk stac9200_cfg_tbl[] = {
1543 /* SigmaTel reference board */
1544 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1545 "DFI LanParty", STAC_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001546 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1547 "DFI LanParty", STAC_REF),
Matt Portere7377072006-11-06 11:20:38 +01001548 /* Dell laptops have BIOS problem */
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001549 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8,
1550 "unknown Dell", STAC_9200_DELL_D21),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001551 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001552 "Dell Inspiron 630m", STAC_9200_DELL_M21),
1553 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd,
1554 "Dell Inspiron E1505n", STAC_9200_DELL_M25),
1555 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0,
1556 "unknown Dell", STAC_9200_DELL_D22),
1557 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1,
1558 "unknown Dell", STAC_9200_DELL_D22),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001559 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001560 "Dell Latitude D620", STAC_9200_DELL_M22),
1561 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5,
1562 "unknown Dell", STAC_9200_DELL_D23),
1563 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7,
1564 "unknown Dell", STAC_9200_DELL_D23),
1565 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8,
1566 "unknown Dell", STAC_9200_DELL_M22),
1567 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9,
1568 "unknown Dell", STAC_9200_DELL_M24),
1569 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca,
1570 "unknown Dell", STAC_9200_DELL_M24),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001571 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001572 "Dell Latitude 120L", STAC_9200_DELL_M24),
Cory T. Tusar877b8662007-01-30 17:30:55 +01001573 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001574 "Dell Latitude D820", STAC_9200_DELL_M22),
Mikael Nilsson46f02ca2007-02-13 12:46:16 +01001575 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001576 "Dell Inspiron E1705/9400", STAC_9200_DELL_M27),
Mikael Nilsson46f02ca2007-02-13 12:46:16 +01001577 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001578 "Dell XPS M1710", STAC_9200_DELL_M23),
Takashi Iwaif0f96742007-02-14 00:59:17 +01001579 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001580 "Dell Precision M90", STAC_9200_DELL_M23),
1581 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3,
1582 "unknown Dell", STAC_9200_DELL_M22),
1583 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4,
1584 "unknown Dell", STAC_9200_DELL_M22),
Daniel T Chen8286c532007-05-15 11:46:23 +02001585 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001586 "unknown Dell", STAC_9200_DELL_M22),
Tobin Davis49c605d2007-05-17 09:38:24 +02001587 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001588 "Dell Inspiron 640m", STAC_9200_DELL_M21),
1589 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9,
1590 "unknown Dell", STAC_9200_DELL_D23),
1591 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da,
1592 "unknown Dell", STAC_9200_DELL_D23),
1593 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de,
1594 "unknown Dell", STAC_9200_DELL_D21),
1595 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3,
1596 "unknown Dell", STAC_9200_DELL_D23),
1597 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8,
1598 "unknown Dell", STAC_9200_DELL_D21),
1599 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee,
1600 "unknown Dell", STAC_9200_DELL_M25),
1601 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef,
1602 "unknown Dell", STAC_9200_DELL_M25),
Tobin Davis49c605d2007-05-17 09:38:24 +02001603 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001604 "Dell Inspiron 1501", STAC_9200_DELL_M26),
1605 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6,
1606 "unknown Dell", STAC_9200_DELL_M26),
Tobin Davis49c605d2007-05-17 09:38:24 +02001607 /* Panasonic */
Takashi Iwai117f2572008-03-18 09:53:23 +01001608 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC),
Takashi Iwai1194b5b2007-10-10 10:04:26 +02001609 /* Gateway machines needs EAPD to be set on resume */
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001610 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4),
1611 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2),
1612 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2),
Tobin Davisbf277782008-02-03 20:31:47 +01001613 /* OQO Mobile */
1614 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO),
Matt Porter403d1942005-11-29 15:00:51 +01001615 {} /* terminator */
1616};
1617
Tobin Davis8e21c342007-01-08 11:04:17 +01001618static unsigned int ref925x_pin_configs[8] = {
1619 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021,
Matthew Ranostay09a99952008-01-24 11:49:21 +01001620 0x90a70320, 0x02214210, 0x01019020, 0x9033032e,
Tobin Davis8e21c342007-01-08 11:04:17 +01001621};
1622
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001623static unsigned int stac925xM1_pin_configs[8] = {
1624 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1625 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
Tobin Davis8e21c342007-01-08 11:04:17 +01001626};
1627
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001628static unsigned int stac925xM1_2_pin_configs[8] = {
1629 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1630 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1631};
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001632
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001633static unsigned int stac925xM2_pin_configs[8] = {
1634 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1635 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
Tobin Davis2c11f952007-05-17 09:36:34 +02001636};
1637
Tobin Davis8e21c342007-01-08 11:04:17 +01001638static unsigned int stac925xM2_2_pin_configs[8] = {
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001639 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1640 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1641};
1642
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001643static unsigned int stac925xM3_pin_configs[8] = {
1644 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1645 0x40a000f0, 0x90100210, 0x400003f1, 0x503303f3,
1646};
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001647
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001648static unsigned int stac925xM5_pin_configs[8] = {
1649 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1650 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1651};
1652
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001653static unsigned int stac925xM6_pin_configs[8] = {
1654 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1655 0x40a000f0, 0x90100210, 0x400003f1, 0x90330320,
Tobin Davis8e21c342007-01-08 11:04:17 +01001656};
1657
1658static unsigned int *stac925x_brd_tbl[STAC_925x_MODELS] = {
1659 [STAC_REF] = ref925x_pin_configs,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001660 [STAC_M1] = stac925xM1_pin_configs,
1661 [STAC_M1_2] = stac925xM1_2_pin_configs,
1662 [STAC_M2] = stac925xM2_pin_configs,
Tobin Davis8e21c342007-01-08 11:04:17 +01001663 [STAC_M2_2] = stac925xM2_2_pin_configs,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001664 [STAC_M3] = stac925xM3_pin_configs,
1665 [STAC_M5] = stac925xM5_pin_configs,
1666 [STAC_M6] = stac925xM6_pin_configs,
Tobin Davis8e21c342007-01-08 11:04:17 +01001667};
1668
1669static const char *stac925x_models[STAC_925x_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01001670 [STAC_925x_AUTO] = "auto",
Tobin Davis8e21c342007-01-08 11:04:17 +01001671 [STAC_REF] = "ref",
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001672 [STAC_M1] = "m1",
1673 [STAC_M1_2] = "m1-2",
1674 [STAC_M2] = "m2",
Tobin Davis8e21c342007-01-08 11:04:17 +01001675 [STAC_M2_2] = "m2-2",
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001676 [STAC_M3] = "m3",
1677 [STAC_M5] = "m5",
1678 [STAC_M6] = "m6",
Tobin Davis8e21c342007-01-08 11:04:17 +01001679};
1680
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001681static struct snd_pci_quirk stac925x_codec_id_cfg_tbl[] = {
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001682 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2),
1683 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5),
1684 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1),
1685 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001686 SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001687 /* Not sure about the brand name for those */
1688 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1),
1689 SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3),
1690 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6),
1691 SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001692 {} /* terminator */
Tobin Davis8e21c342007-01-08 11:04:17 +01001693};
1694
1695static struct snd_pci_quirk stac925x_cfg_tbl[] = {
1696 /* SigmaTel reference board */
1697 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001698 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, "DFI LanParty", STAC_REF),
Tobin Davis2c11f952007-05-17 09:36:34 +02001699 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001700
1701 /* Default table for unknown ID */
1702 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2),
1703
Tobin Davis8e21c342007-01-08 11:04:17 +01001704 {} /* terminator */
1705};
1706
Matthew Ranostaya7662642008-02-21 07:51:14 +01001707static unsigned int ref92hd73xx_pin_configs[13] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001708 0x02214030, 0x02a19040, 0x01a19020, 0x02214030,
1709 0x0181302e, 0x01014010, 0x01014020, 0x01014030,
1710 0x02319040, 0x90a000f0, 0x90a000f0, 0x01452050,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001711 0x01452050,
1712};
1713
1714static unsigned int dell_m6_pin_configs[13] = {
1715 0x0321101f, 0x4f00000f, 0x4f0000f0, 0x90170110,
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02001716 0x03a11020, 0x0321101f, 0x4f0000f0, 0x4f0000f0,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001717 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1718 0x4f0000f0,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001719};
1720
1721static unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = {
Matthew Ranostaya7662642008-02-21 07:51:14 +01001722 [STAC_92HD73XX_REF] = ref92hd73xx_pin_configs,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001723 [STAC_DELL_M6_AMIC] = dell_m6_pin_configs,
1724 [STAC_DELL_M6_DMIC] = dell_m6_pin_configs,
1725 [STAC_DELL_M6_BOTH] = dell_m6_pin_configs,
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05001726 [STAC_DELL_EQ] = dell_m6_pin_configs,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001727};
1728
1729static const char *stac92hd73xx_models[STAC_92HD73XX_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01001730 [STAC_92HD73XX_AUTO] = "auto",
Takashi Iwai9e43f0d2008-12-17 14:51:01 +01001731 [STAC_92HD73XX_NO_JD] = "no-jd",
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001732 [STAC_92HD73XX_REF] = "ref",
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001733 [STAC_DELL_M6_AMIC] = "dell-m6-amic",
1734 [STAC_DELL_M6_DMIC] = "dell-m6-dmic",
1735 [STAC_DELL_M6_BOTH] = "dell-m6",
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05001736 [STAC_DELL_EQ] = "dell-eq",
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001737};
1738
1739static struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = {
1740 /* SigmaTel reference board */
1741 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001742 "DFI LanParty", STAC_92HD73XX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001743 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1744 "DFI LanParty", STAC_92HD73XX_REF),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001745 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001746 "Dell Studio 1535", STAC_DELL_M6_DMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001747 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001748 "unknown Dell", STAC_DELL_M6_DMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001749 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001750 "unknown Dell", STAC_DELL_M6_BOTH),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001751 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001752 "unknown Dell", STAC_DELL_M6_BOTH),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001753 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001754 "unknown Dell", STAC_DELL_M6_AMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001755 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001756 "unknown Dell", STAC_DELL_M6_AMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001757 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001758 "unknown Dell", STAC_DELL_M6_DMIC),
1759 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0272,
1760 "unknown Dell", STAC_DELL_M6_DMIC),
Takashi Iwaib0fc5e02008-11-21 08:37:03 +01001761 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x029f,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001762 "Dell Studio 1537", STAC_DELL_M6_DMIC),
Joerg Schirottkefa620e92008-12-19 08:13:49 +01001763 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a0,
1764 "Dell Studio 17", STAC_DELL_M6_DMIC),
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001765 {} /* terminator */
1766};
1767
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001768static unsigned int ref92hd83xxx_pin_configs[10] = {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001769 0x02214030, 0x02211010, 0x02a19020, 0x02170130,
1770 0x01014050, 0x01819040, 0x01014020, 0x90a3014e,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001771 0x01451160, 0x98560170,
1772};
1773
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001774static unsigned int dell_s14_pin_configs[10] = {
1775 0x02214030, 0x02211010, 0x02a19020, 0x01014050,
1776 0x40f000f0, 0x01819040, 0x40f000f0, 0x90a60160,
1777 0x40f000f0, 0x40f000f0,
1778};
1779
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001780static unsigned int *stac92hd83xxx_brd_tbl[STAC_92HD83XXX_MODELS] = {
1781 [STAC_92HD83XXX_REF] = ref92hd83xxx_pin_configs,
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05001782 [STAC_92HD83XXX_PWR_REF] = ref92hd83xxx_pin_configs,
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001783 [STAC_DELL_S14] = dell_s14_pin_configs,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001784};
1785
1786static const char *stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01001787 [STAC_92HD83XXX_AUTO] = "auto",
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001788 [STAC_92HD83XXX_REF] = "ref",
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05001789 [STAC_92HD83XXX_PWR_REF] = "mic-ref",
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001790 [STAC_DELL_S14] = "dell-s14",
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001791};
1792
1793static struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = {
1794 /* SigmaTel reference board */
1795 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
Takashi Iwaif9d088b2009-01-13 11:54:49 +01001796 "DFI LanParty", STAC_92HD83XXX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001797 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1798 "DFI LanParty", STAC_92HD83XXX_REF),
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001799 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ba,
1800 "unknown Dell", STAC_DELL_S14),
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -02001801 {} /* terminator */
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001802};
1803
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001804static unsigned int ref92hd71bxx_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaye035b842007-11-06 11:53:55 +01001805 0x02214030, 0x02a19040, 0x01a19020, 0x01014010,
Matthew Ranostay4b33c762008-10-10 09:07:23 -04001806 0x0181302e, 0x01014010, 0x01019020, 0x90a000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001807 0x90a000f0, 0x01452050, 0x01452050, 0x00000000,
1808 0x00000000
Matthew Ranostaye035b842007-11-06 11:53:55 +01001809};
1810
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001811static unsigned int dell_m4_1_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaya7662642008-02-21 07:51:14 +01001812 0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110,
Matthew Ranostay07bcb312008-03-20 12:10:57 +01001813 0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001814 0x40f000f0, 0x4f0000f0, 0x4f0000f0, 0x00000000,
1815 0x00000000
Matthew Ranostaya7662642008-02-21 07:51:14 +01001816};
1817
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001818static unsigned int dell_m4_2_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaya7662642008-02-21 07:51:14 +01001819 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1820 0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001821 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1822 0x00000000
Matthew Ranostaya7662642008-02-21 07:51:14 +01001823};
1824
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001825static unsigned int dell_m4_3_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001826 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1827 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001828 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1829 0x00000000
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001830};
1831
Matthew Ranostaye035b842007-11-06 11:53:55 +01001832static unsigned int *stac92hd71bxx_brd_tbl[STAC_92HD71BXX_MODELS] = {
1833 [STAC_92HD71BXX_REF] = ref92hd71bxx_pin_configs,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001834 [STAC_DELL_M4_1] = dell_m4_1_pin_configs,
1835 [STAC_DELL_M4_2] = dell_m4_2_pin_configs,
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001836 [STAC_DELL_M4_3] = dell_m4_3_pin_configs,
Matthew Ranostay6a14f582008-09-12 12:02:30 -04001837 [STAC_HP_M4] = NULL,
Takashi Iwai1b0652e2009-01-14 08:27:35 +01001838 [STAC_HP_DV5] = NULL,
Christoph Plattnerae6241f2009-03-08 23:19:05 +01001839 [STAC_HP_HDX] = NULL,
Matthew Ranostaye035b842007-11-06 11:53:55 +01001840};
1841
1842static const char *stac92hd71bxx_models[STAC_92HD71BXX_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01001843 [STAC_92HD71BXX_AUTO] = "auto",
Matthew Ranostaye035b842007-11-06 11:53:55 +01001844 [STAC_92HD71BXX_REF] = "ref",
Matthew Ranostaya7662642008-02-21 07:51:14 +01001845 [STAC_DELL_M4_1] = "dell-m4-1",
1846 [STAC_DELL_M4_2] = "dell-m4-2",
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001847 [STAC_DELL_M4_3] = "dell-m4-3",
Matthew Ranostay6a14f582008-09-12 12:02:30 -04001848 [STAC_HP_M4] = "hp-m4",
Takashi Iwai1b0652e2009-01-14 08:27:35 +01001849 [STAC_HP_DV5] = "hp-dv5",
Christoph Plattnerae6241f2009-03-08 23:19:05 +01001850 [STAC_HP_HDX] = "hp-hdx",
Matthew Ranostaye035b842007-11-06 11:53:55 +01001851};
1852
1853static struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = {
1854 /* SigmaTel reference board */
1855 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1856 "DFI LanParty", STAC_92HD71BXX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001857 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1858 "DFI LanParty", STAC_92HD71BXX_REF),
Takashi Iwai58d83952009-03-13 17:04:34 +01001859 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3080,
1860 "HP", STAC_HP_DV5),
Takashi Iwai2ae466f2009-02-16 14:16:36 +01001861 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x30f0,
1862 "HP dv4-7", STAC_HP_DV5),
1863 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3600,
1864 "HP dv4-7", STAC_HP_DV5),
Takashi Iwai6fce61a2009-03-10 07:48:57 +01001865 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3610,
1866 "HP HDX", STAC_HP_HDX), /* HDX18 */
Matthew Ranostay9a9e2352008-09-26 10:37:03 -04001867 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a,
Takashi Iwai2ae466f2009-02-16 14:16:36 +01001868 "HP mini 1000", STAC_HP_M4),
Christoph Plattnerae6241f2009-03-08 23:19:05 +01001869 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361b,
Takashi Iwai6fce61a2009-03-10 07:48:57 +01001870 "HP HDX", STAC_HP_HDX), /* HDX16 */
Matthew Ranostaya7662642008-02-21 07:51:14 +01001871 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,
1872 "unknown Dell", STAC_DELL_M4_1),
1873 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234,
1874 "unknown Dell", STAC_DELL_M4_1),
1875 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250,
1876 "unknown Dell", STAC_DELL_M4_1),
1877 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f,
1878 "unknown Dell", STAC_DELL_M4_1),
1879 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d,
1880 "unknown Dell", STAC_DELL_M4_1),
1881 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251,
1882 "unknown Dell", STAC_DELL_M4_1),
1883 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277,
1884 "unknown Dell", STAC_DELL_M4_1),
1885 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263,
1886 "unknown Dell", STAC_DELL_M4_2),
1887 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265,
1888 "unknown Dell", STAC_DELL_M4_2),
1889 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262,
1890 "unknown Dell", STAC_DELL_M4_2),
1891 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264,
1892 "unknown Dell", STAC_DELL_M4_2),
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001893 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa,
1894 "unknown Dell", STAC_DELL_M4_3),
Matthew Ranostaye035b842007-11-06 11:53:55 +01001895 {} /* terminator */
1896};
1897
Matt Porter403d1942005-11-29 15:00:51 +01001898static unsigned int ref922x_pin_configs[10] = {
1899 0x01014010, 0x01016011, 0x01012012, 0x0221401f,
1900 0x01813122, 0x01011014, 0x01441030, 0x01c41030,
Matt2f2f4252005-04-13 14:45:30 +02001901 0x40000100, 0x40000100,
1902};
1903
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001904/*
1905 STAC 922X pin configs for
1906 102801A7
1907 102801AB
1908 102801A9
1909 102801D1
1910 102801D2
1911*/
1912static unsigned int dell_922x_d81_pin_configs[10] = {
1913 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1914 0x02a19020, 0x01117011, 0x400001f0, 0x400001f1,
1915 0x01813122, 0x400001f2,
1916};
1917
1918/*
1919 STAC 922X pin configs for
1920 102801AC
1921 102801D0
1922*/
1923static unsigned int dell_922x_d82_pin_configs[10] = {
1924 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1925 0x02a19020, 0x01117011, 0x01451140, 0x400001f0,
1926 0x01813122, 0x400001f1,
1927};
1928
1929/*
1930 STAC 922X pin configs for
1931 102801BF
1932*/
1933static unsigned int dell_922x_m81_pin_configs[10] = {
1934 0x0321101f, 0x01112024, 0x01111222, 0x91174220,
1935 0x03a11050, 0x01116221, 0x90a70330, 0x01452340,
1936 0x40C003f1, 0x405003f0,
1937};
1938
1939/*
1940 STAC 9221 A1 pin configs for
1941 102801D7 (Dell XPS M1210)
1942*/
1943static unsigned int dell_922x_m82_pin_configs[10] = {
Jiang Zhe7f9310c2007-11-12 12:43:37 +01001944 0x02211211, 0x408103ff, 0x02a1123e, 0x90100310,
1945 0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001946 0x508003f3, 0x405003f4,
1947};
1948
Matt Porter403d1942005-11-29 15:00:51 +01001949static unsigned int d945gtp3_pin_configs[10] = {
Matt Porter869264c2006-01-25 19:20:50 +01001950 0x0221401f, 0x01a19022, 0x01813021, 0x01014010,
Matt Porter403d1942005-11-29 15:00:51 +01001951 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1952 0x02a19120, 0x40000100,
1953};
1954
1955static unsigned int d945gtp5_pin_configs[10] = {
Matt Porter869264c2006-01-25 19:20:50 +01001956 0x0221401f, 0x01011012, 0x01813024, 0x01014010,
1957 0x01a19021, 0x01016011, 0x01452130, 0x40000100,
Matt Porter403d1942005-11-29 15:00:51 +01001958 0x02a19320, 0x40000100,
1959};
1960
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001961static unsigned int intel_mac_v1_pin_configs[10] = {
1962 0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd,
1963 0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240,
Takashi Iwai3fc24d82007-02-16 13:27:18 +01001964 0x400000fc, 0x400000fb,
1965};
1966
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001967static unsigned int intel_mac_v2_pin_configs[10] = {
1968 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1969 0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa,
Sylvain FORETf16928f2007-04-27 14:22:36 +02001970 0x400000fc, 0x400000fb,
1971};
1972
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001973static unsigned int intel_mac_v3_pin_configs[10] = {
1974 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1975 0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240,
1976 0x400000fc, 0x400000fb,
1977};
1978
1979static unsigned int intel_mac_v4_pin_configs[10] = {
1980 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1981 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1982 0x400000fc, 0x400000fb,
1983};
1984
1985static unsigned int intel_mac_v5_pin_configs[10] = {
1986 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1987 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1988 0x400000fc, 0x400000fb,
Takashi Iwai0dae0f82007-05-21 12:41:29 +02001989};
1990
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001991static unsigned int ecs202_pin_configs[10] = {
1992 0x0221401f, 0x02a19020, 0x01a19020, 0x01114010,
1993 0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1,
1994 0x9037012e, 0x40e000f2,
1995};
Takashi Iwai76c08822007-06-19 12:17:42 +02001996
Takashi Iwai19039bd2006-06-28 15:52:16 +02001997static unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001998 [STAC_D945_REF] = ref922x_pin_configs,
Takashi Iwai19039bd2006-06-28 15:52:16 +02001999 [STAC_D945GTP3] = d945gtp3_pin_configs,
2000 [STAC_D945GTP5] = d945gtp5_pin_configs,
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02002001 [STAC_INTEL_MAC_V1] = intel_mac_v1_pin_configs,
2002 [STAC_INTEL_MAC_V2] = intel_mac_v2_pin_configs,
2003 [STAC_INTEL_MAC_V3] = intel_mac_v3_pin_configs,
2004 [STAC_INTEL_MAC_V4] = intel_mac_v4_pin_configs,
2005 [STAC_INTEL_MAC_V5] = intel_mac_v5_pin_configs,
Nicolas Boichat536319a2008-07-21 22:18:01 +08002006 [STAC_INTEL_MAC_AUTO] = intel_mac_v3_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002007 /* for backward compatibility */
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02002008 [STAC_MACMINI] = intel_mac_v3_pin_configs,
2009 [STAC_MACBOOK] = intel_mac_v5_pin_configs,
2010 [STAC_MACBOOK_PRO_V1] = intel_mac_v3_pin_configs,
2011 [STAC_MACBOOK_PRO_V2] = intel_mac_v3_pin_configs,
2012 [STAC_IMAC_INTEL] = intel_mac_v2_pin_configs,
2013 [STAC_IMAC_INTEL_20] = intel_mac_v3_pin_configs,
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03002014 [STAC_ECS_202] = ecs202_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002015 [STAC_922X_DELL_D81] = dell_922x_d81_pin_configs,
2016 [STAC_922X_DELL_D82] = dell_922x_d82_pin_configs,
2017 [STAC_922X_DELL_M81] = dell_922x_m81_pin_configs,
2018 [STAC_922X_DELL_M82] = dell_922x_m82_pin_configs,
Matt Porter403d1942005-11-29 15:00:51 +01002019};
2020
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002021static const char *stac922x_models[STAC_922X_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01002022 [STAC_922X_AUTO] = "auto",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002023 [STAC_D945_REF] = "ref",
2024 [STAC_D945GTP5] = "5stack",
2025 [STAC_D945GTP3] = "3stack",
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02002026 [STAC_INTEL_MAC_V1] = "intel-mac-v1",
2027 [STAC_INTEL_MAC_V2] = "intel-mac-v2",
2028 [STAC_INTEL_MAC_V3] = "intel-mac-v3",
2029 [STAC_INTEL_MAC_V4] = "intel-mac-v4",
2030 [STAC_INTEL_MAC_V5] = "intel-mac-v5",
Nicolas Boichat536319a2008-07-21 22:18:01 +08002031 [STAC_INTEL_MAC_AUTO] = "intel-mac-auto",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002032 /* for backward compatibility */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002033 [STAC_MACMINI] = "macmini",
Takashi Iwai3fc24d82007-02-16 13:27:18 +01002034 [STAC_MACBOOK] = "macbook",
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01002035 [STAC_MACBOOK_PRO_V1] = "macbook-pro-v1",
2036 [STAC_MACBOOK_PRO_V2] = "macbook-pro",
Sylvain FORETf16928f2007-04-27 14:22:36 +02002037 [STAC_IMAC_INTEL] = "imac-intel",
Takashi Iwai0dae0f82007-05-21 12:41:29 +02002038 [STAC_IMAC_INTEL_20] = "imac-intel-20",
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03002039 [STAC_ECS_202] = "ecs202",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002040 [STAC_922X_DELL_D81] = "dell-d81",
2041 [STAC_922X_DELL_D82] = "dell-d82",
2042 [STAC_922X_DELL_M81] = "dell-m81",
2043 [STAC_922X_DELL_M82] = "dell-m82",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002044};
2045
2046static struct snd_pci_quirk stac922x_cfg_tbl[] = {
2047 /* SigmaTel reference board */
2048 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2049 "DFI LanParty", STAC_D945_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002050 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2051 "DFI LanParty", STAC_D945_REF),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002052 /* Intel 945G based systems */
2053 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101,
2054 "Intel D945G", STAC_D945GTP3),
2055 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202,
2056 "Intel D945G", STAC_D945GTP3),
2057 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606,
2058 "Intel D945G", STAC_D945GTP3),
2059 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601,
2060 "Intel D945G", STAC_D945GTP3),
2061 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111,
2062 "Intel D945G", STAC_D945GTP3),
2063 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115,
2064 "Intel D945G", STAC_D945GTP3),
2065 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116,
2066 "Intel D945G", STAC_D945GTP3),
2067 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117,
2068 "Intel D945G", STAC_D945GTP3),
2069 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118,
2070 "Intel D945G", STAC_D945GTP3),
2071 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119,
2072 "Intel D945G", STAC_D945GTP3),
2073 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826,
2074 "Intel D945G", STAC_D945GTP3),
2075 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049,
2076 "Intel D945G", STAC_D945GTP3),
2077 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055,
2078 "Intel D945G", STAC_D945GTP3),
2079 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048,
2080 "Intel D945G", STAC_D945GTP3),
2081 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110,
2082 "Intel D945G", STAC_D945GTP3),
2083 /* Intel D945G 5-stack systems */
2084 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404,
2085 "Intel D945G", STAC_D945GTP5),
2086 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303,
2087 "Intel D945G", STAC_D945GTP5),
2088 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013,
2089 "Intel D945G", STAC_D945GTP5),
2090 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417,
2091 "Intel D945G", STAC_D945GTP5),
2092 /* Intel 945P based systems */
2093 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b,
2094 "Intel D945P", STAC_D945GTP3),
2095 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112,
2096 "Intel D945P", STAC_D945GTP3),
2097 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d,
2098 "Intel D945P", STAC_D945GTP3),
2099 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909,
2100 "Intel D945P", STAC_D945GTP3),
2101 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505,
2102 "Intel D945P", STAC_D945GTP3),
2103 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707,
2104 "Intel D945P", STAC_D945GTP5),
Takashi Iwai8056d472009-01-23 09:09:43 +01002105 /* other intel */
2106 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0204,
2107 "Intel D945", STAC_D945_REF),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002108 /* other systems */
Nicolas Boichat536319a2008-07-21 22:18:01 +08002109 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002110 SND_PCI_QUIRK(0x8384, 0x7680,
Nicolas Boichat536319a2008-07-21 22:18:01 +08002111 "Mac", STAC_INTEL_MAC_AUTO),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002112 /* Dell systems */
2113 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7,
2114 "unknown Dell", STAC_922X_DELL_D81),
2115 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9,
2116 "unknown Dell", STAC_922X_DELL_D81),
2117 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab,
2118 "unknown Dell", STAC_922X_DELL_D81),
2119 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac,
2120 "unknown Dell", STAC_922X_DELL_D82),
2121 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf,
2122 "unknown Dell", STAC_922X_DELL_M81),
2123 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0,
2124 "unknown Dell", STAC_922X_DELL_D82),
2125 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1,
2126 "unknown Dell", STAC_922X_DELL_D81),
2127 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2,
2128 "unknown Dell", STAC_922X_DELL_D81),
2129 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
2130 "Dell XPS M1210", STAC_922X_DELL_M82),
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03002131 /* ECS/PC Chips boards */
Takashi Iwaidea0a502009-02-09 17:14:52 +01002132 SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000,
Herton Ronaldo Krzesinski8663ae52009-02-08 19:50:34 -02002133 "ECS/PC chips", STAC_ECS_202),
Matt Porter403d1942005-11-29 15:00:51 +01002134 {} /* terminator */
2135};
2136
Matt Porter3cc08dc2006-01-23 15:27:49 +01002137static unsigned int ref927x_pin_configs[14] = {
Tobin Davis93ed1502006-09-01 21:03:12 +02002138 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2139 0x01a19040, 0x01011012, 0x01016011, 0x0101201f,
2140 0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070,
2141 0x01c42190, 0x40000100,
Matt Porter3cc08dc2006-01-23 15:27:49 +01002142};
2143
Tobin Davis93ed1502006-09-01 21:03:12 +02002144static unsigned int d965_3st_pin_configs[14] = {
Tobin Davis81d3dbd2006-08-22 19:44:45 +02002145 0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
2146 0x01a19021, 0x01813024, 0x40000100, 0x40000100,
2147 0x40000100, 0x40000100, 0x40000100, 0x40000100,
2148 0x40000100, 0x40000100
2149};
2150
Tobin Davis93ed1502006-09-01 21:03:12 +02002151static unsigned int d965_5st_pin_configs[14] = {
2152 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2153 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2154 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2155 0x40000100, 0x40000100
2156};
2157
Takashi Iwai679d92e2009-05-24 19:00:08 +02002158static unsigned int d965_5st_no_fp_pin_configs[14] = {
2159 0x40000100, 0x40000100, 0x0181304e, 0x01014010,
2160 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2161 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2162 0x40000100, 0x40000100
2163};
2164
Tobin Davis4ff076e2007-08-07 11:48:12 +02002165static unsigned int dell_3st_pin_configs[14] = {
2166 0x02211230, 0x02a11220, 0x01a19040, 0x01114210,
2167 0x01111212, 0x01116211, 0x01813050, 0x01112214,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002168 0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb,
Tobin Davis4ff076e2007-08-07 11:48:12 +02002169 0x40c003fc, 0x40000100
2170};
2171
Tobin Davis93ed1502006-09-01 21:03:12 +02002172static unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = {
Takashi Iwaie28d8322008-12-17 13:48:29 +01002173 [STAC_D965_REF_NO_JD] = ref927x_pin_configs,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002174 [STAC_D965_REF] = ref927x_pin_configs,
2175 [STAC_D965_3ST] = d965_3st_pin_configs,
2176 [STAC_D965_5ST] = d965_5st_pin_configs,
Takashi Iwai679d92e2009-05-24 19:00:08 +02002177 [STAC_D965_5ST_NO_FP] = d965_5st_no_fp_pin_configs,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002178 [STAC_DELL_3ST] = dell_3st_pin_configs,
2179 [STAC_DELL_BIOS] = NULL,
Matt Porter3cc08dc2006-01-23 15:27:49 +01002180};
2181
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002182static const char *stac927x_models[STAC_927X_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01002183 [STAC_927X_AUTO] = "auto",
Takashi Iwaie28d8322008-12-17 13:48:29 +01002184 [STAC_D965_REF_NO_JD] = "ref-no-jd",
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002185 [STAC_D965_REF] = "ref",
2186 [STAC_D965_3ST] = "3stack",
2187 [STAC_D965_5ST] = "5stack",
Takashi Iwai679d92e2009-05-24 19:00:08 +02002188 [STAC_D965_5ST_NO_FP] = "5stack-no-fp",
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002189 [STAC_DELL_3ST] = "dell-3stack",
2190 [STAC_DELL_BIOS] = "dell-bios",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002191};
2192
2193static struct snd_pci_quirk stac927x_cfg_tbl[] = {
2194 /* SigmaTel reference board */
2195 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2196 "DFI LanParty", STAC_D965_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002197 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2198 "DFI LanParty", STAC_D965_REF),
Tobin Davis81d3dbd2006-08-22 19:44:45 +02002199 /* Intel 946 based systems */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002200 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST),
2201 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST),
Tobin Davis93ed1502006-09-01 21:03:12 +02002202 /* 965 based 3 stack systems */
Takashi Iwaidea0a502009-02-09 17:14:52 +01002203 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2100,
2204 "Intel D965", STAC_D965_3ST),
2205 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2000,
2206 "Intel D965", STAC_D965_3ST),
Tobin Davis4ff076e2007-08-07 11:48:12 +02002207 /* Dell 3 stack systems */
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002208 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f7, "Dell XPS M1730", STAC_DELL_3ST),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002209 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST),
Tobin Davis4ff076e2007-08-07 11:48:12 +02002210 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST),
2211 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002212 /* Dell 3 stack systems with verb table in BIOS */
Matthew Ranostay2f32d902008-01-10 13:06:26 +01002213 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS),
2214 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002215 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS),
Takashi Iwai24918b62008-09-30 12:58:54 +02002216 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_3ST),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002217 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS),
2218 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS),
2219 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS),
2220 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS),
Tobin Davis93ed1502006-09-01 21:03:12 +02002221 /* 965 based 5 stack systems */
Takashi Iwaidea0a502009-02-09 17:14:52 +01002222 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2300,
2223 "Intel D965", STAC_D965_5ST),
2224 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2500,
2225 "Intel D965", STAC_D965_5ST),
Matt Porter3cc08dc2006-01-23 15:27:49 +01002226 {} /* terminator */
2227};
2228
Matt Porterf3302a52006-07-31 12:49:34 +02002229static unsigned int ref9205_pin_configs[12] = {
2230 0x40000100, 0x40000100, 0x01016011, 0x01014010,
Matthew Ranostay09a99952008-01-24 11:49:21 +01002231 0x01813122, 0x01a19021, 0x01019020, 0x40000100,
Matt Porter8b657272006-10-26 17:12:59 +02002232 0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030
Matt Porterf3302a52006-07-31 12:49:34 +02002233};
2234
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002235/*
2236 STAC 9205 pin configs for
2237 102801F1
2238 102801F2
2239 102801FC
2240 102801FD
2241 10280204
2242 1028021F
Matthew Ranostay3fa2ef72008-01-11 11:39:06 +01002243 10280228 (Dell Vostro 1500)
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002244*/
2245static unsigned int dell_9205_m42_pin_configs[12] = {
2246 0x0321101F, 0x03A11020, 0x400003FA, 0x90170310,
2247 0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9,
2248 0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE,
2249};
2250
2251/*
2252 STAC 9205 pin configs for
2253 102801F9
2254 102801FA
2255 102801FE
2256 102801FF (Dell Precision M4300)
2257 10280206
2258 10280200
2259 10280201
2260*/
2261static unsigned int dell_9205_m43_pin_configs[12] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002262 0x0321101f, 0x03a11020, 0x90a70330, 0x90170310,
2263 0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9,
2264 0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8,
2265};
2266
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002267static unsigned int dell_9205_m44_pin_configs[12] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002268 0x0421101f, 0x04a11020, 0x400003fa, 0x90170310,
2269 0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9,
2270 0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe,
2271};
2272
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002273static unsigned int *stac9205_brd_tbl[STAC_9205_MODELS] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002274 [STAC_9205_REF] = ref9205_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002275 [STAC_9205_DELL_M42] = dell_9205_m42_pin_configs,
2276 [STAC_9205_DELL_M43] = dell_9205_m43_pin_configs,
2277 [STAC_9205_DELL_M44] = dell_9205_m44_pin_configs,
Takashi Iwaid9a42682009-01-22 17:40:18 +01002278 [STAC_9205_EAPD] = NULL,
Matt Porterf3302a52006-07-31 12:49:34 +02002279};
2280
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002281static const char *stac9205_models[STAC_9205_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01002282 [STAC_9205_AUTO] = "auto",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002283 [STAC_9205_REF] = "ref",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002284 [STAC_9205_DELL_M42] = "dell-m42",
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002285 [STAC_9205_DELL_M43] = "dell-m43",
2286 [STAC_9205_DELL_M44] = "dell-m44",
Takashi Iwaid9a42682009-01-22 17:40:18 +01002287 [STAC_9205_EAPD] = "eapd",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002288};
2289
2290static struct snd_pci_quirk stac9205_cfg_tbl[] = {
2291 /* SigmaTel reference board */
2292 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2293 "DFI LanParty", STAC_9205_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002294 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2295 "DFI LanParty", STAC_9205_REF),
Takashi Iwaid9a42682009-01-22 17:40:18 +01002296 /* Dell */
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002297 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1,
2298 "unknown Dell", STAC_9205_DELL_M42),
2299 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2,
2300 "unknown Dell", STAC_9205_DELL_M42),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002301 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8,
Matthew Ranostayb44ef2f2007-09-18 00:52:38 +02002302 "Dell Precision", STAC_9205_DELL_M43),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002303 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9,
2304 "Dell Precision", STAC_9205_DELL_M43),
2305 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa,
2306 "Dell Precision", STAC_9205_DELL_M43),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002307 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc,
2308 "unknown Dell", STAC_9205_DELL_M42),
2309 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd,
2310 "unknown Dell", STAC_9205_DELL_M42),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002311 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe,
2312 "Dell Precision", STAC_9205_DELL_M43),
2313 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002314 "Dell Precision M4300", STAC_9205_DELL_M43),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002315 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204,
2316 "unknown Dell", STAC_9205_DELL_M42),
Takashi Iwai45499152008-06-12 16:27:24 +02002317 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206,
2318 "Dell Precision", STAC_9205_DELL_M43),
2319 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b,
2320 "Dell Precision", STAC_9205_DELL_M43),
2321 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c,
2322 "Dell Precision", STAC_9205_DELL_M43),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002323 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f,
2324 "Dell Inspiron", STAC_9205_DELL_M44),
Matthew Ranostay3fa2ef72008-01-11 11:39:06 +01002325 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228,
2326 "Dell Vostro 1500", STAC_9205_DELL_M42),
Takashi Iwaid9a42682009-01-22 17:40:18 +01002327 /* Gateway */
2328 SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD),
Matt Porterf3302a52006-07-31 12:49:34 +02002329 {} /* terminator */
2330};
2331
Takashi Iwai330ee992009-02-20 14:33:36 +01002332static void stac92xx_set_config_regs(struct hda_codec *codec,
2333 unsigned int *pincfgs)
Matt2f2f4252005-04-13 14:45:30 +02002334{
2335 int i;
2336 struct sigmatel_spec *spec = codec->spec;
Matt2f2f4252005-04-13 14:45:30 +02002337
Takashi Iwai330ee992009-02-20 14:33:36 +01002338 if (!pincfgs)
2339 return;
Richard Fish11b44bb2006-08-23 18:31:34 +02002340
Matthew Ranostay87d48362007-07-17 11:52:24 +02002341 for (i = 0; i < spec->num_pins; i++)
Takashi Iwai330ee992009-02-20 14:33:36 +01002342 if (spec->pin_nids[i] && pincfgs[i])
2343 snd_hda_codec_set_pincfg(codec, spec->pin_nids[i],
2344 pincfgs[i]);
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01002345}
2346
Matt2f2f4252005-04-13 14:45:30 +02002347/*
2348 * Analog playback callbacks
2349 */
2350static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo,
2351 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002352 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002353{
2354 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002355 if (spec->stream_delay)
2356 msleep(spec->stream_delay);
Takashi Iwai9a081602008-02-12 18:37:26 +01002357 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2358 hinfo);
Matt2f2f4252005-04-13 14:45:30 +02002359}
2360
2361static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2362 struct hda_codec *codec,
2363 unsigned int stream_tag,
2364 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002365 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002366{
2367 struct sigmatel_spec *spec = codec->spec;
Matt Porter403d1942005-11-29 15:00:51 +01002368 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag, format, substream);
Matt2f2f4252005-04-13 14:45:30 +02002369}
2370
2371static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2372 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002373 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002374{
2375 struct sigmatel_spec *spec = codec->spec;
2376 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2377}
2378
2379/*
Mattdabbed62005-06-14 10:19:34 +02002380 * Digital playback callbacks
2381 */
2382static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2383 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002384 struct snd_pcm_substream *substream)
Mattdabbed62005-06-14 10:19:34 +02002385{
2386 struct sigmatel_spec *spec = codec->spec;
2387 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2388}
2389
2390static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2391 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002392 struct snd_pcm_substream *substream)
Mattdabbed62005-06-14 10:19:34 +02002393{
2394 struct sigmatel_spec *spec = codec->spec;
2395 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2396}
2397
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002398static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2399 struct hda_codec *codec,
2400 unsigned int stream_tag,
2401 unsigned int format,
2402 struct snd_pcm_substream *substream)
2403{
2404 struct sigmatel_spec *spec = codec->spec;
2405 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2406 stream_tag, format, substream);
2407}
2408
Takashi Iwai9411e212009-02-13 11:32:28 +01002409static int stac92xx_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2410 struct hda_codec *codec,
2411 struct snd_pcm_substream *substream)
2412{
2413 struct sigmatel_spec *spec = codec->spec;
2414 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2415}
2416
Mattdabbed62005-06-14 10:19:34 +02002417
2418/*
Matt2f2f4252005-04-13 14:45:30 +02002419 * Analog capture callbacks
2420 */
2421static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2422 struct hda_codec *codec,
2423 unsigned int stream_tag,
2424 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002425 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002426{
2427 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002428 hda_nid_t nid = spec->adc_nids[substream->number];
Matt2f2f4252005-04-13 14:45:30 +02002429
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002430 if (spec->powerdown_adcs) {
2431 msleep(40);
Takashi Iwai8c2f7672008-12-01 11:54:35 +01002432 snd_hda_codec_write(codec, nid, 0,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002433 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
2434 }
2435 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Matt2f2f4252005-04-13 14:45:30 +02002436 return 0;
2437}
2438
2439static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2440 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002441 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002442{
2443 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002444 hda_nid_t nid = spec->adc_nids[substream->number];
Matt2f2f4252005-04-13 14:45:30 +02002445
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002446 snd_hda_codec_cleanup_stream(codec, nid);
2447 if (spec->powerdown_adcs)
Takashi Iwai8c2f7672008-12-01 11:54:35 +01002448 snd_hda_codec_write(codec, nid, 0,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002449 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
Matt2f2f4252005-04-13 14:45:30 +02002450 return 0;
2451}
2452
Mattdabbed62005-06-14 10:19:34 +02002453static struct hda_pcm_stream stac92xx_pcm_digital_playback = {
2454 .substreams = 1,
2455 .channels_min = 2,
2456 .channels_max = 2,
2457 /* NID is set in stac92xx_build_pcms */
2458 .ops = {
2459 .open = stac92xx_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002460 .close = stac92xx_dig_playback_pcm_close,
Takashi Iwai9411e212009-02-13 11:32:28 +01002461 .prepare = stac92xx_dig_playback_pcm_prepare,
2462 .cleanup = stac92xx_dig_playback_pcm_cleanup
Mattdabbed62005-06-14 10:19:34 +02002463 },
2464};
2465
2466static struct hda_pcm_stream stac92xx_pcm_digital_capture = {
2467 .substreams = 1,
2468 .channels_min = 2,
2469 .channels_max = 2,
2470 /* NID is set in stac92xx_build_pcms */
2471};
2472
Matt2f2f4252005-04-13 14:45:30 +02002473static struct hda_pcm_stream stac92xx_pcm_analog_playback = {
2474 .substreams = 1,
2475 .channels_min = 2,
Mattc7d4b2f2005-06-27 14:59:41 +02002476 .channels_max = 8,
Matt2f2f4252005-04-13 14:45:30 +02002477 .nid = 0x02, /* NID to query formats and rates */
2478 .ops = {
2479 .open = stac92xx_playback_pcm_open,
2480 .prepare = stac92xx_playback_pcm_prepare,
2481 .cleanup = stac92xx_playback_pcm_cleanup
2482 },
2483};
2484
Matt Porter3cc08dc2006-01-23 15:27:49 +01002485static struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = {
2486 .substreams = 1,
2487 .channels_min = 2,
2488 .channels_max = 2,
2489 .nid = 0x06, /* NID to query formats and rates */
2490 .ops = {
2491 .open = stac92xx_playback_pcm_open,
2492 .prepare = stac92xx_playback_pcm_prepare,
2493 .cleanup = stac92xx_playback_pcm_cleanup
2494 },
2495};
2496
Matt2f2f4252005-04-13 14:45:30 +02002497static struct hda_pcm_stream stac92xx_pcm_analog_capture = {
Matt2f2f4252005-04-13 14:45:30 +02002498 .channels_min = 2,
2499 .channels_max = 2,
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02002500 /* NID + .substreams is set in stac92xx_build_pcms */
Matt2f2f4252005-04-13 14:45:30 +02002501 .ops = {
2502 .prepare = stac92xx_capture_pcm_prepare,
2503 .cleanup = stac92xx_capture_pcm_cleanup
2504 },
2505};
2506
2507static int stac92xx_build_pcms(struct hda_codec *codec)
2508{
2509 struct sigmatel_spec *spec = codec->spec;
2510 struct hda_pcm *info = spec->pcm_rec;
2511
2512 codec->num_pcms = 1;
2513 codec->pcm_info = info;
2514
Mattc7d4b2f2005-06-27 14:59:41 +02002515 info->name = "STAC92xx Analog";
Matt2f2f4252005-04-13 14:45:30 +02002516 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback;
Takashi Iwai00a602d2009-01-23 11:55:42 +01002517 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2518 spec->multiout.dac_nids[0];
Matt2f2f4252005-04-13 14:45:30 +02002519 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture;
Matt Porter3cc08dc2006-01-23 15:27:49 +01002520 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02002521 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adcs;
Matt Porter3cc08dc2006-01-23 15:27:49 +01002522
2523 if (spec->alt_switch) {
2524 codec->num_pcms++;
2525 info++;
2526 info->name = "STAC92xx Analog Alt";
2527 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback;
2528 }
Matt2f2f4252005-04-13 14:45:30 +02002529
Mattdabbed62005-06-14 10:19:34 +02002530 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2531 codec->num_pcms++;
2532 info++;
2533 info->name = "STAC92xx Digital";
Takashi Iwai0852d7a2009-02-11 11:35:15 +01002534 info->pcm_type = spec->autocfg.dig_out_type[0];
Mattdabbed62005-06-14 10:19:34 +02002535 if (spec->multiout.dig_out_nid) {
2536 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback;
2537 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2538 }
2539 if (spec->dig_in_nid) {
2540 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture;
2541 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2542 }
2543 }
2544
Matt2f2f4252005-04-13 14:45:30 +02002545 return 0;
2546}
2547
Takashi Iwaic960a032006-03-23 17:06:28 +01002548static unsigned int stac92xx_get_vref(struct hda_codec *codec, hda_nid_t nid)
2549{
Takashi Iwai1327a322009-03-23 13:07:47 +01002550 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwaic960a032006-03-23 17:06:28 +01002551 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
2552 if (pincap & AC_PINCAP_VREF_100)
2553 return AC_PINCTL_VREF_100;
2554 if (pincap & AC_PINCAP_VREF_80)
2555 return AC_PINCTL_VREF_80;
2556 if (pincap & AC_PINCAP_VREF_50)
2557 return AC_PINCTL_VREF_50;
2558 if (pincap & AC_PINCAP_VREF_GRD)
2559 return AC_PINCTL_VREF_GRD;
2560 return 0;
2561}
2562
Matt Porter403d1942005-11-29 15:00:51 +01002563static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type)
2564
2565{
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002566 snd_hda_codec_write_cache(codec, nid, 0,
2567 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
Matt Porter403d1942005-11-29 15:00:51 +01002568}
2569
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002570#define stac92xx_hp_switch_info snd_ctl_boolean_mono_info
2571
2572static int stac92xx_hp_switch_get(struct snd_kcontrol *kcontrol,
2573 struct snd_ctl_elem_value *ucontrol)
2574{
2575 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2576 struct sigmatel_spec *spec = codec->spec;
2577
Takashi Iwaid7a89432008-11-12 09:48:04 +01002578 ucontrol->value.integer.value[0] = !!spec->hp_switch;
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002579 return 0;
2580}
2581
Takashi Iwaic6e4c662008-11-25 11:58:19 +01002582static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid,
2583 unsigned char type);
2584
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002585static int stac92xx_hp_switch_put(struct snd_kcontrol *kcontrol,
2586 struct snd_ctl_elem_value *ucontrol)
2587{
2588 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2589 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaid7a89432008-11-12 09:48:04 +01002590 int nid = kcontrol->private_value;
2591
2592 spec->hp_switch = ucontrol->value.integer.value[0] ? nid : 0;
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002593
2594 /* check to be sure that the ports are upto date with
2595 * switch changes
2596 */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01002597 stac_issue_unsol_event(codec, nid, STAC_HP_EVENT);
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002598
2599 return 1;
2600}
2601
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002602#define stac92xx_io_switch_info snd_ctl_boolean_mono_info
Matt Porter403d1942005-11-29 15:00:51 +01002603
2604static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2605{
2606 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2607 struct sigmatel_spec *spec = codec->spec;
2608 int io_idx = kcontrol-> private_value & 0xff;
2609
2610 ucontrol->value.integer.value[0] = spec->io_switch[io_idx];
2611 return 0;
2612}
2613
2614static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2615{
2616 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2617 struct sigmatel_spec *spec = codec->spec;
2618 hda_nid_t nid = kcontrol->private_value >> 8;
2619 int io_idx = kcontrol-> private_value & 0xff;
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002620 unsigned short val = !!ucontrol->value.integer.value[0];
Matt Porter403d1942005-11-29 15:00:51 +01002621
2622 spec->io_switch[io_idx] = val;
2623
2624 if (val)
2625 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
Takashi Iwaic960a032006-03-23 17:06:28 +01002626 else {
2627 unsigned int pinctl = AC_PINCTL_IN_EN;
2628 if (io_idx) /* set VREF for mic */
2629 pinctl |= stac92xx_get_vref(codec, nid);
2630 stac92xx_auto_set_pinctl(codec, nid, pinctl);
2631 }
Jiang Zhe40c1d302007-11-12 13:05:16 +01002632
2633 /* check the auto-mute again: we need to mute/unmute the speaker
2634 * appropriately according to the pin direction
2635 */
2636 if (spec->hp_detect)
Takashi Iwaic6e4c662008-11-25 11:58:19 +01002637 stac_issue_unsol_event(codec, nid, STAC_HP_EVENT);
Jiang Zhe40c1d302007-11-12 13:05:16 +01002638
Matt Porter403d1942005-11-29 15:00:51 +01002639 return 1;
2640}
2641
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002642#define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info
2643
2644static int stac92xx_clfe_switch_get(struct snd_kcontrol *kcontrol,
2645 struct snd_ctl_elem_value *ucontrol)
2646{
2647 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2648 struct sigmatel_spec *spec = codec->spec;
2649
2650 ucontrol->value.integer.value[0] = spec->clfe_swap;
2651 return 0;
2652}
2653
2654static int stac92xx_clfe_switch_put(struct snd_kcontrol *kcontrol,
2655 struct snd_ctl_elem_value *ucontrol)
2656{
2657 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2658 struct sigmatel_spec *spec = codec->spec;
2659 hda_nid_t nid = kcontrol->private_value & 0xff;
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002660 unsigned int val = !!ucontrol->value.integer.value[0];
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002661
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002662 if (spec->clfe_swap == val)
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002663 return 0;
2664
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002665 spec->clfe_swap = val;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002666
2667 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
2668 spec->clfe_swap ? 0x4 : 0x0);
2669
2670 return 1;
2671}
2672
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002673#define STAC_CODEC_HP_SWITCH(xname) \
2674 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2675 .name = xname, \
2676 .index = 0, \
2677 .info = stac92xx_hp_switch_info, \
2678 .get = stac92xx_hp_switch_get, \
2679 .put = stac92xx_hp_switch_put, \
2680 }
2681
Matt Porter403d1942005-11-29 15:00:51 +01002682#define STAC_CODEC_IO_SWITCH(xname, xpval) \
2683 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2684 .name = xname, \
2685 .index = 0, \
2686 .info = stac92xx_io_switch_info, \
2687 .get = stac92xx_io_switch_get, \
2688 .put = stac92xx_io_switch_put, \
2689 .private_value = xpval, \
2690 }
2691
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002692#define STAC_CODEC_CLFE_SWITCH(xname, xpval) \
2693 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2694 .name = xname, \
2695 .index = 0, \
2696 .info = stac92xx_clfe_switch_info, \
2697 .get = stac92xx_clfe_switch_get, \
2698 .put = stac92xx_clfe_switch_put, \
2699 .private_value = xpval, \
2700 }
Matt Porter403d1942005-11-29 15:00:51 +01002701
Mattc7d4b2f2005-06-27 14:59:41 +02002702enum {
2703 STAC_CTL_WIDGET_VOL,
2704 STAC_CTL_WIDGET_MUTE,
Matthew Ranostay09a99952008-01-24 11:49:21 +01002705 STAC_CTL_WIDGET_MONO_MUX,
Matthew Ranostay89385032008-09-11 09:49:39 -04002706 STAC_CTL_WIDGET_AMP_MUX,
2707 STAC_CTL_WIDGET_AMP_VOL,
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002708 STAC_CTL_WIDGET_HP_SWITCH,
Matt Porter403d1942005-11-29 15:00:51 +01002709 STAC_CTL_WIDGET_IO_SWITCH,
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002710 STAC_CTL_WIDGET_CLFE_SWITCH
Mattc7d4b2f2005-06-27 14:59:41 +02002711};
2712
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002713static struct snd_kcontrol_new stac92xx_control_templates[] = {
Mattc7d4b2f2005-06-27 14:59:41 +02002714 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2715 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Matthew Ranostay09a99952008-01-24 11:49:21 +01002716 STAC_MONO_MUX,
Matthew Ranostay89385032008-09-11 09:49:39 -04002717 STAC_AMP_MUX,
2718 STAC_AMP_VOL(NULL, 0, 0, 0, 0),
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002719 STAC_CODEC_HP_SWITCH(NULL),
Matt Porter403d1942005-11-29 15:00:51 +01002720 STAC_CODEC_IO_SWITCH(NULL, 0),
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002721 STAC_CODEC_CLFE_SWITCH(NULL, 0),
Mattc7d4b2f2005-06-27 14:59:41 +02002722};
2723
2724/* add dynamic controls */
Takashi Iwaie3c75962009-01-23 11:57:22 +01002725static struct snd_kcontrol_new *
2726stac_control_new(struct sigmatel_spec *spec,
2727 struct snd_kcontrol_new *ktemp,
2728 const char *name)
Mattc7d4b2f2005-06-27 14:59:41 +02002729{
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002730 struct snd_kcontrol_new *knew;
Mattc7d4b2f2005-06-27 14:59:41 +02002731
Takashi Iwai603c4012008-07-30 15:01:44 +02002732 snd_array_init(&spec->kctls, sizeof(*knew), 32);
2733 knew = snd_array_new(&spec->kctls);
2734 if (!knew)
Takashi Iwaie3c75962009-01-23 11:57:22 +01002735 return NULL;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002736 *knew = *ktemp;
Takashi Iwai82fe0c52005-06-30 10:54:33 +02002737 knew->name = kstrdup(name, GFP_KERNEL);
Takashi Iwaie3c75962009-01-23 11:57:22 +01002738 if (!knew->name) {
2739 /* roolback */
2740 memset(knew, 0, sizeof(*knew));
2741 spec->kctls.alloced--;
2742 return NULL;
2743 }
2744 return knew;
2745}
2746
2747static int stac92xx_add_control_temp(struct sigmatel_spec *spec,
2748 struct snd_kcontrol_new *ktemp,
2749 int idx, const char *name,
2750 unsigned long val)
2751{
2752 struct snd_kcontrol_new *knew = stac_control_new(spec, ktemp, name);
2753 if (!knew)
Mattc7d4b2f2005-06-27 14:59:41 +02002754 return -ENOMEM;
Takashi Iwaie3c75962009-01-23 11:57:22 +01002755 knew->index = idx;
Mattc7d4b2f2005-06-27 14:59:41 +02002756 knew->private_value = val;
Mattc7d4b2f2005-06-27 14:59:41 +02002757 return 0;
2758}
2759
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002760static inline int stac92xx_add_control_idx(struct sigmatel_spec *spec,
2761 int type, int idx, const char *name,
2762 unsigned long val)
2763{
2764 return stac92xx_add_control_temp(spec,
2765 &stac92xx_control_templates[type],
2766 idx, name, val);
2767}
2768
Matthew Ranostay4682eee2008-08-15 07:43:24 +02002769
2770/* add dynamic controls */
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002771static inline int stac92xx_add_control(struct sigmatel_spec *spec, int type,
2772 const char *name, unsigned long val)
Matthew Ranostay4682eee2008-08-15 07:43:24 +02002773{
2774 return stac92xx_add_control_idx(spec, type, 0, name, val);
2775}
2776
Takashi Iwaie3c75962009-01-23 11:57:22 +01002777static struct snd_kcontrol_new stac_input_src_temp = {
2778 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2779 .name = "Input Source",
2780 .info = stac92xx_mux_enum_info,
2781 .get = stac92xx_mux_enum_get,
2782 .put = stac92xx_mux_enum_put,
2783};
2784
2785static int stac92xx_add_input_source(struct sigmatel_spec *spec)
2786{
2787 struct snd_kcontrol_new *knew;
2788 struct hda_input_mux *imux = &spec->private_imux;
2789
2790 if (!spec->num_adcs || imux->num_items <= 1)
2791 return 0; /* no need for input source control */
2792 knew = stac_control_new(spec, &stac_input_src_temp,
2793 stac_input_src_temp.name);
2794 if (!knew)
2795 return -ENOMEM;
2796 knew->count = spec->num_adcs;
2797 return 0;
2798}
2799
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002800/* check whether the line-input can be used as line-out */
2801static hda_nid_t check_line_out_switch(struct hda_codec *codec)
Matt Porter403d1942005-11-29 15:00:51 +01002802{
2803 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002804 struct auto_pin_cfg *cfg = &spec->autocfg;
2805 hda_nid_t nid;
2806 unsigned int pincap;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002807
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002808 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2809 return 0;
2810 nid = cfg->input_pins[AUTO_PIN_LINE];
Takashi Iwai1327a322009-03-23 13:07:47 +01002811 pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002812 if (pincap & AC_PINCAP_OUT)
2813 return nid;
Matt Porter403d1942005-11-29 15:00:51 +01002814 return 0;
2815}
2816
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002817/* check whether the mic-input can be used as line-out */
2818static hda_nid_t check_mic_out_switch(struct hda_codec *codec)
2819{
2820 struct sigmatel_spec *spec = codec->spec;
2821 struct auto_pin_cfg *cfg = &spec->autocfg;
2822 unsigned int def_conf, pincap;
2823 unsigned int mic_pin;
2824
2825 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2826 return 0;
2827 mic_pin = AUTO_PIN_MIC;
2828 for (;;) {
2829 hda_nid_t nid = cfg->input_pins[mic_pin];
Takashi Iwai330ee992009-02-20 14:33:36 +01002830 def_conf = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002831 /* some laptops have an internal analog microphone
2832 * which can't be used as a output */
2833 if (get_defcfg_connect(def_conf) != AC_JACK_PORT_FIXED) {
Takashi Iwai1327a322009-03-23 13:07:47 +01002834 pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002835 if (pincap & AC_PINCAP_OUT)
2836 return nid;
2837 }
2838 if (mic_pin == AUTO_PIN_MIC)
2839 mic_pin = AUTO_PIN_FRONT_MIC;
2840 else
2841 break;
2842 }
2843 return 0;
2844}
Steve Longerbeam7b0438992007-05-03 20:50:03 +02002845
2846static int is_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2847{
2848 int i;
2849
2850 for (i = 0; i < spec->multiout.num_dacs; i++) {
2851 if (spec->multiout.dac_nids[i] == nid)
2852 return 1;
2853 }
2854
2855 return 0;
2856}
2857
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002858static int check_all_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2859{
2860 int i;
2861 if (is_in_dac_nids(spec, nid))
2862 return 1;
2863 for (i = 0; i < spec->autocfg.hp_outs; i++)
2864 if (spec->hp_dacs[i] == nid)
2865 return 1;
2866 for (i = 0; i < spec->autocfg.speaker_outs; i++)
2867 if (spec->speaker_dacs[i] == nid)
2868 return 1;
2869 return 0;
2870}
2871
2872static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid)
2873{
2874 struct sigmatel_spec *spec = codec->spec;
2875 int j, conn_len;
2876 hda_nid_t conn[HDA_MAX_CONNECTIONS];
2877 unsigned int wcaps, wtype;
2878
2879 conn_len = snd_hda_get_connections(codec, nid, conn,
2880 HDA_MAX_CONNECTIONS);
2881 for (j = 0; j < conn_len; j++) {
Takashi Iwai14bafe32009-03-23 16:35:39 +01002882 wcaps = get_wcaps(codec, conn[j]);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002883 wtype = (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
2884 /* we check only analog outputs */
2885 if (wtype != AC_WID_AUD_OUT || (wcaps & AC_WCAP_DIGITAL))
2886 continue;
2887 /* if this route has a free DAC, assign it */
2888 if (!check_all_dac_nids(spec, conn[j])) {
2889 if (conn_len > 1) {
2890 /* select this DAC in the pin's input mux */
2891 snd_hda_codec_write_cache(codec, nid, 0,
2892 AC_VERB_SET_CONNECT_SEL, j);
2893 }
2894 return conn[j];
2895 }
2896 }
Takashi Iwaiee58a7c2009-03-06 12:00:24 +01002897 /* if all DACs are already assigned, connect to the primary DAC */
2898 if (conn_len > 1) {
2899 for (j = 0; j < conn_len; j++) {
2900 if (conn[j] == spec->multiout.dac_nids[0]) {
2901 snd_hda_codec_write_cache(codec, nid, 0,
2902 AC_VERB_SET_CONNECT_SEL, j);
2903 break;
2904 }
2905 }
2906 }
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002907 return 0;
2908}
2909
2910static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
2911static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
2912
Matt Porter3cc08dc2006-01-23 15:27:49 +01002913/*
Steve Longerbeam7b0438992007-05-03 20:50:03 +02002914 * Fill in the dac_nids table from the parsed pin configuration
2915 * This function only works when every pin in line_out_pins[]
2916 * contains atleast one DAC in its connection list. Some 92xx
2917 * codecs are not connected directly to a DAC, such as the 9200
2918 * and 9202/925x. For those, dac_nids[] must be hard-coded.
Matt Porter3cc08dc2006-01-23 15:27:49 +01002919 */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002920static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec)
Mattc7d4b2f2005-06-27 14:59:41 +02002921{
2922 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002923 struct auto_pin_cfg *cfg = &spec->autocfg;
2924 int i;
2925 hda_nid_t nid, dac;
Steve Longerbeam7b0438992007-05-03 20:50:03 +02002926
Mattc7d4b2f2005-06-27 14:59:41 +02002927 for (i = 0; i < cfg->line_outs; i++) {
2928 nid = cfg->line_out_pins[i];
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002929 dac = get_unassigned_dac(codec, nid);
2930 if (!dac) {
Takashi Iwaidf802952007-07-02 19:18:00 +02002931 if (spec->multiout.num_dacs > 0) {
2932 /* we have already working output pins,
2933 * so let's drop the broken ones again
2934 */
2935 cfg->line_outs = spec->multiout.num_dacs;
2936 break;
2937 }
Steve Longerbeam7b0438992007-05-03 20:50:03 +02002938 /* error out, no available DAC found */
2939 snd_printk(KERN_ERR
2940 "%s: No available DAC for pin 0x%x\n",
2941 __func__, nid);
2942 return -ENODEV;
2943 }
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002944 add_spec_dacs(spec, dac);
2945 }
Steve Longerbeam7b0438992007-05-03 20:50:03 +02002946
Takashi Iwai139e0712009-03-06 12:10:41 +01002947 for (i = 0; i < cfg->hp_outs; i++) {
2948 nid = cfg->hp_pins[i];
2949 dac = get_unassigned_dac(codec, nid);
2950 if (dac) {
2951 if (!spec->multiout.hp_nid)
2952 spec->multiout.hp_nid = dac;
2953 else
2954 add_spec_extra_dacs(spec, dac);
2955 }
2956 spec->hp_dacs[i] = dac;
2957 }
2958
2959 for (i = 0; i < cfg->speaker_outs; i++) {
2960 nid = cfg->speaker_pins[i];
2961 dac = get_unassigned_dac(codec, nid);
2962 if (dac)
2963 add_spec_extra_dacs(spec, dac);
2964 spec->speaker_dacs[i] = dac;
2965 }
2966
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002967 /* add line-in as output */
2968 nid = check_line_out_switch(codec);
2969 if (nid) {
2970 dac = get_unassigned_dac(codec, nid);
2971 if (dac) {
2972 snd_printdd("STAC: Add line-in 0x%x as output %d\n",
2973 nid, cfg->line_outs);
2974 cfg->line_out_pins[cfg->line_outs] = nid;
2975 cfg->line_outs++;
2976 spec->line_switch = nid;
2977 add_spec_dacs(spec, dac);
2978 }
2979 }
2980 /* add mic as output */
2981 nid = check_mic_out_switch(codec);
2982 if (nid) {
2983 dac = get_unassigned_dac(codec, nid);
2984 if (dac) {
2985 snd_printdd("STAC: Add mic-in 0x%x as output %d\n",
2986 nid, cfg->line_outs);
2987 cfg->line_out_pins[cfg->line_outs] = nid;
2988 cfg->line_outs++;
2989 spec->mic_switch = nid;
2990 add_spec_dacs(spec, dac);
Steve Longerbeam7b0438992007-05-03 20:50:03 +02002991 }
Mattc7d4b2f2005-06-27 14:59:41 +02002992 }
2993
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002994 snd_printd("stac92xx: dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
Steve Longerbeam7b0438992007-05-03 20:50:03 +02002995 spec->multiout.num_dacs,
2996 spec->multiout.dac_nids[0],
2997 spec->multiout.dac_nids[1],
2998 spec->multiout.dac_nids[2],
2999 spec->multiout.dac_nids[3],
3000 spec->multiout.dac_nids[4]);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003001
Mattc7d4b2f2005-06-27 14:59:41 +02003002 return 0;
3003}
3004
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003005/* create volume control/switch for the given prefx type */
Takashi Iwai668b9652009-03-06 10:13:24 +01003006static int create_controls_idx(struct hda_codec *codec, const char *pfx,
3007 int idx, hda_nid_t nid, int chs)
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003008{
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003009 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003010 char name[32];
3011 int err;
3012
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003013 if (!spec->check_volume_offset) {
3014 unsigned int caps, step, nums, db_scale;
3015 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3016 step = (caps & AC_AMPCAP_STEP_SIZE) >>
3017 AC_AMPCAP_STEP_SIZE_SHIFT;
3018 step = (step + 1) * 25; /* in .01dB unit */
3019 nums = (caps & AC_AMPCAP_NUM_STEPS) >>
3020 AC_AMPCAP_NUM_STEPS_SHIFT;
3021 db_scale = nums * step;
3022 /* if dB scale is over -64dB, and finer enough,
3023 * let's reduce it to half
3024 */
3025 if (db_scale > 6400 && nums >= 0x1f)
3026 spec->volume_offset = nums / 2;
3027 spec->check_volume_offset = 1;
3028 }
3029
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003030 sprintf(name, "%s Playback Volume", pfx);
Takashi Iwai668b9652009-03-06 10:13:24 +01003031 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, idx, name,
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003032 HDA_COMPOSE_AMP_VAL_OFS(nid, chs, 0, HDA_OUTPUT,
3033 spec->volume_offset));
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003034 if (err < 0)
3035 return err;
3036 sprintf(name, "%s Playback Switch", pfx);
Takashi Iwai668b9652009-03-06 10:13:24 +01003037 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_MUTE, idx, name,
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003038 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
3039 if (err < 0)
3040 return err;
3041 return 0;
3042}
3043
Takashi Iwai668b9652009-03-06 10:13:24 +01003044#define create_controls(codec, pfx, nid, chs) \
3045 create_controls_idx(codec, pfx, 0, nid, chs)
3046
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003047static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
3048{
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003049 if (spec->multiout.num_dacs > 4) {
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003050 printk(KERN_WARNING "stac92xx: No space for DAC 0x%x\n", nid);
3051 return 1;
3052 } else {
3053 spec->multiout.dac_nids[spec->multiout.num_dacs] = nid;
3054 spec->multiout.num_dacs++;
3055 }
3056 return 0;
3057}
3058
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003059static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003060{
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003061 int i;
3062 for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++) {
3063 if (!spec->multiout.extra_out_nid[i]) {
3064 spec->multiout.extra_out_nid[i] = nid;
3065 return 0;
3066 }
3067 }
3068 printk(KERN_WARNING "stac92xx: No space for extra DAC 0x%x\n", nid);
3069 return 1;
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003070}
3071
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003072/* Create output controls
3073 * The mixer elements are named depending on the given type (AUTO_PIN_XXX_OUT)
3074 */
3075static int create_multi_out_ctls(struct hda_codec *codec, int num_outs,
3076 const hda_nid_t *pins,
3077 const hda_nid_t *dac_nids,
3078 int type)
Mattc7d4b2f2005-06-27 14:59:41 +02003079{
Takashi Iwai76624532008-12-19 10:09:47 +01003080 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai19039bd2006-06-28 15:52:16 +02003081 static const char *chname[4] = {
3082 "Front", "Surround", NULL /*CLFE*/, "Side"
3083 };
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003084 hda_nid_t nid;
Takashi Iwai91589232008-12-19 15:59:40 +01003085 int i, err;
3086 unsigned int wid_caps;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003087
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003088 for (i = 0; i < num_outs && i < ARRAY_SIZE(chname); i++) {
Takashi Iwaiffd0e562009-04-16 12:20:24 +02003089 if (type == AUTO_PIN_HP_OUT && !spec->hp_detect) {
3090 wid_caps = get_wcaps(codec, pins[i]);
3091 if (wid_caps & AC_WCAP_UNSOL_CAP)
3092 spec->hp_detect = 1;
3093 }
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003094 nid = dac_nids[i];
3095 if (!nid)
3096 continue;
3097 if (type != AUTO_PIN_HP_OUT && i == 2) {
Mattc7d4b2f2005-06-27 14:59:41 +02003098 /* Center/LFE */
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003099 err = create_controls(codec, "Center", nid, 1);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003100 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003101 return err;
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003102 err = create_controls(codec, "LFE", nid, 2);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003103 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003104 return err;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003105
3106 wid_caps = get_wcaps(codec, nid);
3107
3108 if (wid_caps & AC_WCAP_LR_SWAP) {
3109 err = stac92xx_add_control(spec,
3110 STAC_CTL_WIDGET_CLFE_SWITCH,
3111 "Swap Center/LFE Playback Switch", nid);
3112
3113 if (err < 0)
3114 return err;
3115 }
3116
Mattc7d4b2f2005-06-27 14:59:41 +02003117 } else {
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003118 const char *name;
Takashi Iwai668b9652009-03-06 10:13:24 +01003119 int idx;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003120 switch (type) {
3121 case AUTO_PIN_HP_OUT:
Takashi Iwai668b9652009-03-06 10:13:24 +01003122 name = "Headphone";
3123 idx = i;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003124 break;
3125 case AUTO_PIN_SPEAKER_OUT:
Takashi Iwai668b9652009-03-06 10:13:24 +01003126 name = "Speaker";
3127 idx = i;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003128 break;
3129 default:
3130 name = chname[i];
Takashi Iwai668b9652009-03-06 10:13:24 +01003131 idx = 0;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003132 break;
Takashi Iwai76624532008-12-19 10:09:47 +01003133 }
Takashi Iwai668b9652009-03-06 10:13:24 +01003134 err = create_controls_idx(codec, name, idx, nid, 3);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003135 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003136 return err;
3137 }
3138 }
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003139 return 0;
3140}
3141
3142/* add playback controls from the parsed DAC table */
3143static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec,
3144 const struct auto_pin_cfg *cfg)
3145{
3146 struct sigmatel_spec *spec = codec->spec;
3147 int err;
3148
3149 err = create_multi_out_ctls(codec, cfg->line_outs, cfg->line_out_pins,
3150 spec->multiout.dac_nids,
3151 cfg->line_out_type);
3152 if (err < 0)
3153 return err;
Mattc7d4b2f2005-06-27 14:59:41 +02003154
Takashi Iwaia9cb5c92008-11-24 07:51:11 +01003155 if (cfg->hp_outs > 1 && cfg->line_out_type == AUTO_PIN_LINE_OUT) {
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02003156 err = stac92xx_add_control(spec,
3157 STAC_CTL_WIDGET_HP_SWITCH,
Takashi Iwaid7a89432008-11-12 09:48:04 +01003158 "Headphone as Line Out Switch",
3159 cfg->hp_pins[cfg->hp_outs - 1]);
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02003160 if (err < 0)
3161 return err;
3162 }
3163
Matthew Ranostayb5895dc2008-01-25 15:24:50 +01003164 if (spec->line_switch) {
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003165 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_IO_SWITCH,
3166 "Line In as Output Switch",
3167 spec->line_switch << 8);
3168 if (err < 0)
3169 return err;
Matthew Ranostayb5895dc2008-01-25 15:24:50 +01003170 }
Matt Porter403d1942005-11-29 15:00:51 +01003171
Matthew Ranostayb5895dc2008-01-25 15:24:50 +01003172 if (spec->mic_switch) {
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003173 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_IO_SWITCH,
3174 "Mic as Output Switch",
3175 (spec->mic_switch << 8) | 1);
3176 if (err < 0)
3177 return err;
Matthew Ranostayb5895dc2008-01-25 15:24:50 +01003178 }
Matt Porter403d1942005-11-29 15:00:51 +01003179
Mattc7d4b2f2005-06-27 14:59:41 +02003180 return 0;
3181}
3182
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003183/* add playback controls for Speaker and HP outputs */
3184static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec,
3185 struct auto_pin_cfg *cfg)
Mattc7d4b2f2005-06-27 14:59:41 +02003186{
3187 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003188 int err;
Mattc7d4b2f2005-06-27 14:59:41 +02003189
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003190 err = create_multi_out_ctls(codec, cfg->hp_outs, cfg->hp_pins,
3191 spec->hp_dacs, AUTO_PIN_HP_OUT);
3192 if (err < 0)
3193 return err;
3194
3195 err = create_multi_out_ctls(codec, cfg->speaker_outs, cfg->speaker_pins,
3196 spec->speaker_dacs, AUTO_PIN_SPEAKER_OUT);
3197 if (err < 0)
3198 return err;
3199
Mattc7d4b2f2005-06-27 14:59:41 +02003200 return 0;
3201}
3202
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003203/* labels for mono mux outputs */
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003204static const char *stac92xx_mono_labels[4] = {
3205 "DAC0", "DAC1", "Mixer", "DAC2"
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003206};
3207
3208/* create mono mux for mono out on capable codecs */
3209static int stac92xx_auto_create_mono_output_ctls(struct hda_codec *codec)
3210{
3211 struct sigmatel_spec *spec = codec->spec;
3212 struct hda_input_mux *mono_mux = &spec->private_mono_mux;
3213 int i, num_cons;
3214 hda_nid_t con_lst[ARRAY_SIZE(stac92xx_mono_labels)];
3215
3216 num_cons = snd_hda_get_connections(codec,
3217 spec->mono_nid,
3218 con_lst,
3219 HDA_MAX_NUM_INPUTS);
3220 if (!num_cons || num_cons > ARRAY_SIZE(stac92xx_mono_labels))
3221 return -EINVAL;
3222
3223 for (i = 0; i < num_cons; i++) {
3224 mono_mux->items[mono_mux->num_items].label =
3225 stac92xx_mono_labels[i];
3226 mono_mux->items[mono_mux->num_items].index = i;
3227 mono_mux->num_items++;
3228 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003229
3230 return stac92xx_add_control(spec, STAC_CTL_WIDGET_MONO_MUX,
3231 "Mono Mux", spec->mono_nid);
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003232}
3233
Matthew Ranostay89385032008-09-11 09:49:39 -04003234/* labels for amp mux outputs */
3235static const char *stac92xx_amp_labels[3] = {
Matthew Ranostay4b33c762008-10-10 09:07:23 -04003236 "Front Microphone", "Microphone", "Line In",
Matthew Ranostay89385032008-09-11 09:49:39 -04003237};
3238
3239/* create amp out controls mux on capable codecs */
3240static int stac92xx_auto_create_amp_output_ctls(struct hda_codec *codec)
3241{
3242 struct sigmatel_spec *spec = codec->spec;
3243 struct hda_input_mux *amp_mux = &spec->private_amp_mux;
3244 int i, err;
3245
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04003246 for (i = 0; i < spec->num_amps; i++) {
Matthew Ranostay89385032008-09-11 09:49:39 -04003247 amp_mux->items[amp_mux->num_items].label =
3248 stac92xx_amp_labels[i];
3249 amp_mux->items[amp_mux->num_items].index = i;
3250 amp_mux->num_items++;
3251 }
3252
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04003253 if (spec->num_amps > 1) {
3254 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_AMP_MUX,
3255 "Amp Selector Capture Switch", 0);
3256 if (err < 0)
3257 return err;
3258 }
Matthew Ranostay89385032008-09-11 09:49:39 -04003259 return stac92xx_add_control(spec, STAC_CTL_WIDGET_AMP_VOL,
3260 "Amp Capture Volume",
3261 HDA_COMPOSE_AMP_VAL(spec->amp_nids[0], 3, 0, HDA_INPUT));
3262}
3263
3264
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003265/* create PC beep volume controls */
3266static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec,
3267 hda_nid_t nid)
3268{
3269 struct sigmatel_spec *spec = codec->spec;
3270 u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3271 int err;
3272
3273 /* check for mute support for the the amp */
3274 if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) {
3275 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
3276 "PC Beep Playback Switch",
3277 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3278 if (err < 0)
3279 return err;
3280 }
3281
3282 /* check to see if there is volume support for the amp */
3283 if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3284 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL,
3285 "PC Beep Playback Volume",
3286 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3287 if (err < 0)
3288 return err;
3289 }
3290 return 0;
3291}
3292
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003293#ifdef CONFIG_SND_HDA_INPUT_BEEP
3294#define stac92xx_dig_beep_switch_info snd_ctl_boolean_mono_info
3295
3296static int stac92xx_dig_beep_switch_get(struct snd_kcontrol *kcontrol,
3297 struct snd_ctl_elem_value *ucontrol)
3298{
3299 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3300 ucontrol->value.integer.value[0] = codec->beep->enabled;
3301 return 0;
3302}
3303
3304static int stac92xx_dig_beep_switch_put(struct snd_kcontrol *kcontrol,
3305 struct snd_ctl_elem_value *ucontrol)
3306{
3307 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3308 int enabled = !!ucontrol->value.integer.value[0];
3309 if (codec->beep->enabled != enabled) {
3310 codec->beep->enabled = enabled;
3311 return 1;
3312 }
3313 return 0;
3314}
3315
3316static struct snd_kcontrol_new stac92xx_dig_beep_ctrl = {
3317 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3318 .info = stac92xx_dig_beep_switch_info,
3319 .get = stac92xx_dig_beep_switch_get,
3320 .put = stac92xx_dig_beep_switch_put,
3321};
3322
3323static int stac92xx_beep_switch_ctl(struct hda_codec *codec)
3324{
3325 return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl,
3326 0, "PC Beep Playback Switch", 0);
3327}
3328#endif
3329
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003330static int stac92xx_auto_create_mux_input_ctls(struct hda_codec *codec)
3331{
3332 struct sigmatel_spec *spec = codec->spec;
3333 int wcaps, nid, i, err = 0;
3334
3335 for (i = 0; i < spec->num_muxes; i++) {
3336 nid = spec->mux_nids[i];
3337 wcaps = get_wcaps(codec, nid);
3338
3339 if (wcaps & AC_WCAP_OUT_AMP) {
3340 err = stac92xx_add_control_idx(spec,
3341 STAC_CTL_WIDGET_VOL, i, "Mux Capture Volume",
3342 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3343 if (err < 0)
3344 return err;
3345 }
3346 }
3347 return 0;
3348};
3349
Matthew Ranostayd9737752008-09-07 12:03:41 +02003350static const char *stac92xx_spdif_labels[3] = {
Matthew Ranostay65973632008-09-16 10:39:37 -04003351 "Digital Playback", "Analog Mux 1", "Analog Mux 2",
Matthew Ranostayd9737752008-09-07 12:03:41 +02003352};
3353
3354static int stac92xx_auto_create_spdif_mux_ctls(struct hda_codec *codec)
3355{
3356 struct sigmatel_spec *spec = codec->spec;
3357 struct hda_input_mux *spdif_mux = &spec->private_smux;
Matthew Ranostay65973632008-09-16 10:39:37 -04003358 const char **labels = spec->spdif_labels;
Matthew Ranostayd9737752008-09-07 12:03:41 +02003359 int i, num_cons;
Matthew Ranostay65973632008-09-16 10:39:37 -04003360 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
Matthew Ranostayd9737752008-09-07 12:03:41 +02003361
3362 num_cons = snd_hda_get_connections(codec,
3363 spec->smux_nids[0],
3364 con_lst,
3365 HDA_MAX_NUM_INPUTS);
Matthew Ranostay65973632008-09-16 10:39:37 -04003366 if (!num_cons)
Matthew Ranostayd9737752008-09-07 12:03:41 +02003367 return -EINVAL;
3368
Matthew Ranostay65973632008-09-16 10:39:37 -04003369 if (!labels)
3370 labels = stac92xx_spdif_labels;
3371
Matthew Ranostayd9737752008-09-07 12:03:41 +02003372 for (i = 0; i < num_cons; i++) {
Matthew Ranostay65973632008-09-16 10:39:37 -04003373 spdif_mux->items[spdif_mux->num_items].label = labels[i];
Matthew Ranostayd9737752008-09-07 12:03:41 +02003374 spdif_mux->items[spdif_mux->num_items].index = i;
3375 spdif_mux->num_items++;
3376 }
3377
3378 return 0;
3379}
3380
Matt Porter8b657272006-10-26 17:12:59 +02003381/* labels for dmic mux inputs */
Adrian Bunkddc2cec2006-11-20 12:03:44 +01003382static const char *stac92xx_dmic_labels[5] = {
Matt Porter8b657272006-10-26 17:12:59 +02003383 "Analog Inputs", "Digital Mic 1", "Digital Mic 2",
3384 "Digital Mic 3", "Digital Mic 4"
3385};
3386
3387/* create playback/capture controls for input pins on dmic capable codecs */
3388static int stac92xx_auto_create_dmic_input_ctls(struct hda_codec *codec,
3389 const struct auto_pin_cfg *cfg)
3390{
3391 struct sigmatel_spec *spec = codec->spec;
3392 struct hda_input_mux *dimux = &spec->private_dimux;
3393 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003394 int err, i, j;
3395 char name[32];
Matt Porter8b657272006-10-26 17:12:59 +02003396
3397 dimux->items[dimux->num_items].label = stac92xx_dmic_labels[0];
3398 dimux->items[dimux->num_items].index = 0;
3399 dimux->num_items++;
3400
3401 for (i = 0; i < spec->num_dmics; i++) {
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003402 hda_nid_t nid;
Matt Porter8b657272006-10-26 17:12:59 +02003403 int index;
3404 int num_cons;
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003405 unsigned int wcaps;
Matt Porter8b657272006-10-26 17:12:59 +02003406 unsigned int def_conf;
3407
Takashi Iwai330ee992009-02-20 14:33:36 +01003408 def_conf = snd_hda_codec_get_pincfg(codec, spec->dmic_nids[i]);
Matt Porter8b657272006-10-26 17:12:59 +02003409 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3410 continue;
3411
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003412 nid = spec->dmic_nids[i];
Matt Porter8b657272006-10-26 17:12:59 +02003413 num_cons = snd_hda_get_connections(codec,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003414 spec->dmux_nids[0],
Matt Porter8b657272006-10-26 17:12:59 +02003415 con_lst,
3416 HDA_MAX_NUM_INPUTS);
3417 for (j = 0; j < num_cons; j++)
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003418 if (con_lst[j] == nid) {
Matt Porter8b657272006-10-26 17:12:59 +02003419 index = j;
3420 goto found;
3421 }
3422 continue;
3423found:
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003424 wcaps = get_wcaps(codec, nid) &
3425 (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP);
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003426
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003427 if (wcaps) {
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003428 sprintf(name, "%s Capture Volume",
3429 stac92xx_dmic_labels[dimux->num_items]);
3430
3431 err = stac92xx_add_control(spec,
3432 STAC_CTL_WIDGET_VOL,
3433 name,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003434 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3435 (wcaps & AC_WCAP_OUT_AMP) ?
3436 HDA_OUTPUT : HDA_INPUT));
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003437 if (err < 0)
3438 return err;
3439 }
3440
Matt Porter8b657272006-10-26 17:12:59 +02003441 dimux->items[dimux->num_items].label =
3442 stac92xx_dmic_labels[dimux->num_items];
3443 dimux->items[dimux->num_items].index = index;
3444 dimux->num_items++;
3445 }
3446
3447 return 0;
3448}
3449
Mattc7d4b2f2005-06-27 14:59:41 +02003450/* create playback/capture controls for input pins */
3451static int stac92xx_auto_create_analog_input_ctls(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
3452{
3453 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +02003454 struct hda_input_mux *imux = &spec->private_imux;
3455 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
3456 int i, j, k;
3457
3458 for (i = 0; i < AUTO_PIN_LAST; i++) {
Takashi Iwai314634b2006-09-21 11:56:18 +02003459 int index;
Mattc7d4b2f2005-06-27 14:59:41 +02003460
Takashi Iwai314634b2006-09-21 11:56:18 +02003461 if (!cfg->input_pins[i])
3462 continue;
3463 index = -1;
3464 for (j = 0; j < spec->num_muxes; j++) {
3465 int num_cons;
3466 num_cons = snd_hda_get_connections(codec,
3467 spec->mux_nids[j],
3468 con_lst,
3469 HDA_MAX_NUM_INPUTS);
3470 for (k = 0; k < num_cons; k++)
3471 if (con_lst[k] == cfg->input_pins[i]) {
3472 index = k;
3473 goto found;
3474 }
Mattc7d4b2f2005-06-27 14:59:41 +02003475 }
Takashi Iwai314634b2006-09-21 11:56:18 +02003476 continue;
3477 found:
3478 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
3479 imux->items[imux->num_items].index = index;
3480 imux->num_items++;
Mattc7d4b2f2005-06-27 14:59:41 +02003481 }
3482
Steve Longerbeam7b0438992007-05-03 20:50:03 +02003483 if (imux->num_items) {
Sam Revitch62fe78e2006-05-10 15:09:17 +02003484 /*
3485 * Set the current input for the muxes.
3486 * The STAC9221 has two input muxes with identical source
3487 * NID lists. Hopefully this won't get confused.
3488 */
3489 for (i = 0; i < spec->num_muxes; i++) {
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003490 snd_hda_codec_write_cache(codec, spec->mux_nids[i], 0,
3491 AC_VERB_SET_CONNECT_SEL,
3492 imux->items[0].index);
Sam Revitch62fe78e2006-05-10 15:09:17 +02003493 }
3494 }
3495
Mattc7d4b2f2005-06-27 14:59:41 +02003496 return 0;
3497}
3498
Mattc7d4b2f2005-06-27 14:59:41 +02003499static void stac92xx_auto_init_multi_out(struct hda_codec *codec)
3500{
3501 struct sigmatel_spec *spec = codec->spec;
3502 int i;
3503
3504 for (i = 0; i < spec->autocfg.line_outs; i++) {
3505 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3506 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
3507 }
3508}
3509
3510static void stac92xx_auto_init_hp_out(struct hda_codec *codec)
3511{
3512 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003513 int i;
Mattc7d4b2f2005-06-27 14:59:41 +02003514
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003515 for (i = 0; i < spec->autocfg.hp_outs; i++) {
3516 hda_nid_t pin;
3517 pin = spec->autocfg.hp_pins[i];
3518 if (pin) /* connect to front */
3519 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3520 }
3521 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
3522 hda_nid_t pin;
3523 pin = spec->autocfg.speaker_pins[i];
3524 if (pin) /* connect to front */
3525 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN);
3526 }
Mattc7d4b2f2005-06-27 14:59:41 +02003527}
3528
Matt Porter3cc08dc2006-01-23 15:27:49 +01003529static int stac92xx_parse_auto_config(struct hda_codec *codec, hda_nid_t dig_out, hda_nid_t dig_in)
Mattc7d4b2f2005-06-27 14:59:41 +02003530{
3531 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003532 int hp_swap = 0;
Mattc7d4b2f2005-06-27 14:59:41 +02003533 int err;
3534
Matt Porter8b657272006-10-26 17:12:59 +02003535 if ((err = snd_hda_parse_pin_def_config(codec,
3536 &spec->autocfg,
3537 spec->dmic_nids)) < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003538 return err;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003539 if (! spec->autocfg.line_outs)
Matt Porter869264c2006-01-25 19:20:50 +01003540 return 0; /* can't find valid pin config */
Takashi Iwai19039bd2006-06-28 15:52:16 +02003541
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003542 /* If we have no real line-out pin and multiple hp-outs, HPs should
3543 * be set up as multi-channel outputs.
3544 */
3545 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT &&
3546 spec->autocfg.hp_outs > 1) {
3547 /* Copy hp_outs to line_outs, backup line_outs in
3548 * speaker_outs so that the following routines can handle
3549 * HP pins as primary outputs.
3550 */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003551 snd_printdd("stac92xx: Enabling multi-HPs workaround\n");
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003552 memcpy(spec->autocfg.speaker_pins, spec->autocfg.line_out_pins,
3553 sizeof(spec->autocfg.line_out_pins));
3554 spec->autocfg.speaker_outs = spec->autocfg.line_outs;
3555 memcpy(spec->autocfg.line_out_pins, spec->autocfg.hp_pins,
3556 sizeof(spec->autocfg.hp_pins));
3557 spec->autocfg.line_outs = spec->autocfg.hp_outs;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003558 spec->autocfg.line_out_type = AUTO_PIN_HP_OUT;
3559 spec->autocfg.hp_outs = 0;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003560 hp_swap = 1;
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003561 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003562 if (spec->autocfg.mono_out_pin) {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003563 int dir = get_wcaps(codec, spec->autocfg.mono_out_pin) &
3564 (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP);
Matthew Ranostay09a99952008-01-24 11:49:21 +01003565 u32 caps = query_amp_caps(codec,
3566 spec->autocfg.mono_out_pin, dir);
3567 hda_nid_t conn_list[1];
3568
3569 /* get the mixer node and then the mono mux if it exists */
3570 if (snd_hda_get_connections(codec,
3571 spec->autocfg.mono_out_pin, conn_list, 1) &&
3572 snd_hda_get_connections(codec, conn_list[0],
3573 conn_list, 1)) {
3574
3575 int wcaps = get_wcaps(codec, conn_list[0]);
3576 int wid_type = (wcaps & AC_WCAP_TYPE)
3577 >> AC_WCAP_TYPE_SHIFT;
3578 /* LR swap check, some stac925x have a mux that
3579 * changes the DACs output path instead of the
3580 * mono-mux path.
3581 */
3582 if (wid_type == AC_WID_AUD_SEL &&
3583 !(wcaps & AC_WCAP_LR_SWAP))
3584 spec->mono_nid = conn_list[0];
3585 }
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003586 if (dir) {
3587 hda_nid_t nid = spec->autocfg.mono_out_pin;
3588
3589 /* most mono outs have a least a mute/unmute switch */
3590 dir = (dir & AC_WCAP_OUT_AMP) ? HDA_OUTPUT : HDA_INPUT;
3591 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
3592 "Mono Playback Switch",
3593 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
Matthew Ranostay09a99952008-01-24 11:49:21 +01003594 if (err < 0)
3595 return err;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003596 /* check for volume support for the amp */
3597 if ((caps & AC_AMPCAP_NUM_STEPS)
3598 >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3599 err = stac92xx_add_control(spec,
3600 STAC_CTL_WIDGET_VOL,
3601 "Mono Playback Volume",
3602 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
3603 if (err < 0)
3604 return err;
3605 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003606 }
3607
3608 stac92xx_auto_set_pinctl(codec, spec->autocfg.mono_out_pin,
3609 AC_PINCTL_OUT_EN);
3610 }
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003611
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003612 if (!spec->multiout.num_dacs) {
3613 err = stac92xx_auto_fill_dac_nids(codec);
3614 if (err < 0)
Takashi Iwai19039bd2006-06-28 15:52:16 +02003615 return err;
Takashi Iwaic9280d62009-01-15 17:31:00 +01003616 err = stac92xx_auto_create_multi_out_ctls(codec,
3617 &spec->autocfg);
3618 if (err < 0)
3619 return err;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003620 }
Mattc7d4b2f2005-06-27 14:59:41 +02003621
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003622 /* setup analog beep controls */
3623 if (spec->anabeep_nid > 0) {
3624 err = stac92xx_auto_create_beep_ctls(codec,
3625 spec->anabeep_nid);
3626 if (err < 0)
3627 return err;
3628 }
3629
3630 /* setup digital beep controls and input device */
3631#ifdef CONFIG_SND_HDA_INPUT_BEEP
3632 if (spec->digbeep_nid > 0) {
3633 hda_nid_t nid = spec->digbeep_nid;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003634 unsigned int caps;
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003635
3636 err = stac92xx_auto_create_beep_ctls(codec, nid);
3637 if (err < 0)
3638 return err;
3639 err = snd_hda_attach_beep_device(codec, nid);
3640 if (err < 0)
3641 return err;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003642 /* if no beep switch is available, make its own one */
3643 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3644 if (codec->beep &&
3645 !((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT)) {
3646 err = stac92xx_beep_switch_ctl(codec);
3647 if (err < 0)
3648 return err;
3649 }
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003650 }
3651#endif
3652
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003653 err = stac92xx_auto_create_hp_ctls(codec, &spec->autocfg);
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003654 if (err < 0)
3655 return err;
3656
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003657 /* All output parsing done, now restore the swapped hp pins */
3658 if (hp_swap) {
3659 memcpy(spec->autocfg.hp_pins, spec->autocfg.line_out_pins,
3660 sizeof(spec->autocfg.hp_pins));
3661 spec->autocfg.hp_outs = spec->autocfg.line_outs;
3662 spec->autocfg.line_out_type = AUTO_PIN_HP_OUT;
3663 spec->autocfg.line_outs = 0;
3664 }
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003665
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003666 err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg);
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003667 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003668 return err;
3669
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003670 if (spec->mono_nid > 0) {
3671 err = stac92xx_auto_create_mono_output_ctls(codec);
3672 if (err < 0)
3673 return err;
3674 }
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04003675 if (spec->num_amps > 0) {
Matthew Ranostay89385032008-09-11 09:49:39 -04003676 err = stac92xx_auto_create_amp_output_ctls(codec);
3677 if (err < 0)
3678 return err;
3679 }
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04003680 if (spec->num_dmics > 0 && !spec->dinput_mux)
Matt Porter8b657272006-10-26 17:12:59 +02003681 if ((err = stac92xx_auto_create_dmic_input_ctls(codec,
3682 &spec->autocfg)) < 0)
3683 return err;
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003684 if (spec->num_muxes > 0) {
3685 err = stac92xx_auto_create_mux_input_ctls(codec);
3686 if (err < 0)
3687 return err;
3688 }
Matthew Ranostayd9737752008-09-07 12:03:41 +02003689 if (spec->num_smuxes > 0) {
3690 err = stac92xx_auto_create_spdif_mux_ctls(codec);
3691 if (err < 0)
3692 return err;
3693 }
Matt Porter8b657272006-10-26 17:12:59 +02003694
Takashi Iwaie3c75962009-01-23 11:57:22 +01003695 err = stac92xx_add_input_source(spec);
3696 if (err < 0)
3697 return err;
3698
Mattc7d4b2f2005-06-27 14:59:41 +02003699 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
Matt Porter403d1942005-11-29 15:00:51 +01003700 if (spec->multiout.max_channels > 2)
Mattc7d4b2f2005-06-27 14:59:41 +02003701 spec->surr_switch = 1;
Mattc7d4b2f2005-06-27 14:59:41 +02003702
Takashi Iwai0852d7a2009-02-11 11:35:15 +01003703 if (spec->autocfg.dig_outs)
Matt Porter3cc08dc2006-01-23 15:27:49 +01003704 spec->multiout.dig_out_nid = dig_out;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003705 if (dig_in && spec->autocfg.dig_in_pin)
Matt Porter3cc08dc2006-01-23 15:27:49 +01003706 spec->dig_in_nid = dig_in;
Mattc7d4b2f2005-06-27 14:59:41 +02003707
Takashi Iwai603c4012008-07-30 15:01:44 +02003708 if (spec->kctls.list)
3709 spec->mixers[spec->num_mixers++] = spec->kctls.list;
Mattc7d4b2f2005-06-27 14:59:41 +02003710
3711 spec->input_mux = &spec->private_imux;
Matthew Ranostayf8ccbf62008-12-20 17:36:28 -05003712 if (!spec->dinput_mux)
3713 spec->dinput_mux = &spec->private_dimux;
Matthew Ranostayd9737752008-09-07 12:03:41 +02003714 spec->sinput_mux = &spec->private_smux;
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003715 spec->mono_mux = &spec->private_mono_mux;
Matthew Ranostay89385032008-09-11 09:49:39 -04003716 spec->amp_mux = &spec->private_amp_mux;
Mattc7d4b2f2005-06-27 14:59:41 +02003717 return 1;
3718}
3719
Takashi Iwai82bc9552006-03-21 11:24:42 +01003720/* add playback controls for HP output */
3721static int stac9200_auto_create_hp_ctls(struct hda_codec *codec,
3722 struct auto_pin_cfg *cfg)
3723{
3724 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003725 hda_nid_t pin = cfg->hp_pins[0];
Takashi Iwai82bc9552006-03-21 11:24:42 +01003726 unsigned int wid_caps;
3727
3728 if (! pin)
3729 return 0;
3730
3731 wid_caps = get_wcaps(codec, pin);
Takashi Iwai505cb342006-03-27 12:51:52 +02003732 if (wid_caps & AC_WCAP_UNSOL_CAP)
Takashi Iwai82bc9552006-03-21 11:24:42 +01003733 spec->hp_detect = 1;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003734
3735 return 0;
3736}
3737
Richard Fish160ea0d2006-09-06 13:58:25 +02003738/* add playback controls for LFE output */
3739static int stac9200_auto_create_lfe_ctls(struct hda_codec *codec,
3740 struct auto_pin_cfg *cfg)
3741{
3742 struct sigmatel_spec *spec = codec->spec;
3743 int err;
3744 hda_nid_t lfe_pin = 0x0;
3745 int i;
3746
3747 /*
3748 * search speaker outs and line outs for a mono speaker pin
3749 * with an amp. If one is found, add LFE controls
3750 * for it.
3751 */
3752 for (i = 0; i < spec->autocfg.speaker_outs && lfe_pin == 0x0; i++) {
3753 hda_nid_t pin = spec->autocfg.speaker_pins[i];
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003754 unsigned int wcaps = get_wcaps(codec, pin);
Richard Fish160ea0d2006-09-06 13:58:25 +02003755 wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
3756 if (wcaps == AC_WCAP_OUT_AMP)
3757 /* found a mono speaker with an amp, must be lfe */
3758 lfe_pin = pin;
3759 }
3760
3761 /* if speaker_outs is 0, then speakers may be in line_outs */
3762 if (lfe_pin == 0 && spec->autocfg.speaker_outs == 0) {
3763 for (i = 0; i < spec->autocfg.line_outs && lfe_pin == 0x0; i++) {
3764 hda_nid_t pin = spec->autocfg.line_out_pins[i];
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003765 unsigned int defcfg;
Takashi Iwai330ee992009-02-20 14:33:36 +01003766 defcfg = snd_hda_codec_get_pincfg(codec, pin);
Harvey Harrison8b551782008-02-29 11:56:48 +01003767 if (get_defcfg_device(defcfg) == AC_JACK_SPEAKER) {
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003768 unsigned int wcaps = get_wcaps(codec, pin);
Richard Fish160ea0d2006-09-06 13:58:25 +02003769 wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
3770 if (wcaps == AC_WCAP_OUT_AMP)
3771 /* found a mono speaker with an amp,
3772 must be lfe */
3773 lfe_pin = pin;
3774 }
3775 }
3776 }
3777
3778 if (lfe_pin) {
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003779 err = create_controls(codec, "LFE", lfe_pin, 1);
Richard Fish160ea0d2006-09-06 13:58:25 +02003780 if (err < 0)
3781 return err;
3782 }
3783
3784 return 0;
3785}
3786
Mattc7d4b2f2005-06-27 14:59:41 +02003787static int stac9200_parse_auto_config(struct hda_codec *codec)
3788{
3789 struct sigmatel_spec *spec = codec->spec;
3790 int err;
3791
Kailang Yangdf694da2005-12-05 19:42:22 +01003792 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003793 return err;
3794
3795 if ((err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg)) < 0)
3796 return err;
3797
Takashi Iwai82bc9552006-03-21 11:24:42 +01003798 if ((err = stac9200_auto_create_hp_ctls(codec, &spec->autocfg)) < 0)
3799 return err;
3800
Richard Fish160ea0d2006-09-06 13:58:25 +02003801 if ((err = stac9200_auto_create_lfe_ctls(codec, &spec->autocfg)) < 0)
3802 return err;
3803
Takashi Iwai355a0ec2008-11-11 16:46:19 +01003804 if (spec->num_muxes > 0) {
3805 err = stac92xx_auto_create_mux_input_ctls(codec);
3806 if (err < 0)
3807 return err;
3808 }
3809
Takashi Iwaie3c75962009-01-23 11:57:22 +01003810 err = stac92xx_add_input_source(spec);
3811 if (err < 0)
3812 return err;
3813
Takashi Iwai0852d7a2009-02-11 11:35:15 +01003814 if (spec->autocfg.dig_outs)
Mattc7d4b2f2005-06-27 14:59:41 +02003815 spec->multiout.dig_out_nid = 0x05;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003816 if (spec->autocfg.dig_in_pin)
Mattc7d4b2f2005-06-27 14:59:41 +02003817 spec->dig_in_nid = 0x04;
Mattc7d4b2f2005-06-27 14:59:41 +02003818
Takashi Iwai603c4012008-07-30 15:01:44 +02003819 if (spec->kctls.list)
3820 spec->mixers[spec->num_mixers++] = spec->kctls.list;
Mattc7d4b2f2005-06-27 14:59:41 +02003821
3822 spec->input_mux = &spec->private_imux;
Matt Porter8b657272006-10-26 17:12:59 +02003823 spec->dinput_mux = &spec->private_dimux;
Mattc7d4b2f2005-06-27 14:59:41 +02003824
3825 return 1;
3826}
3827
Sam Revitch62fe78e2006-05-10 15:09:17 +02003828/*
3829 * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
3830 * funky external mute control using GPIO pins.
3831 */
3832
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003833static void stac_gpio_set(struct hda_codec *codec, unsigned int mask,
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +01003834 unsigned int dir_mask, unsigned int data)
Sam Revitch62fe78e2006-05-10 15:09:17 +02003835{
3836 unsigned int gpiostate, gpiomask, gpiodir;
3837
3838 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
3839 AC_VERB_GET_GPIO_DATA, 0);
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +01003840 gpiostate = (gpiostate & ~dir_mask) | (data & dir_mask);
Sam Revitch62fe78e2006-05-10 15:09:17 +02003841
3842 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
3843 AC_VERB_GET_GPIO_MASK, 0);
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003844 gpiomask |= mask;
Sam Revitch62fe78e2006-05-10 15:09:17 +02003845
3846 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
3847 AC_VERB_GET_GPIO_DIRECTION, 0);
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +01003848 gpiodir |= dir_mask;
Sam Revitch62fe78e2006-05-10 15:09:17 +02003849
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003850 /* Configure GPIOx as CMOS */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003851 snd_hda_codec_write(codec, codec->afg, 0, 0x7e7, 0);
3852
3853 snd_hda_codec_write(codec, codec->afg, 0,
3854 AC_VERB_SET_GPIO_MASK, gpiomask);
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003855 snd_hda_codec_read(codec, codec->afg, 0,
3856 AC_VERB_SET_GPIO_DIRECTION, gpiodir); /* sync */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003857
3858 msleep(1);
3859
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003860 snd_hda_codec_read(codec, codec->afg, 0,
3861 AC_VERB_SET_GPIO_DATA, gpiostate); /* sync */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003862}
3863
Takashi Iwai95c09092009-04-14 16:15:29 +02003864#ifdef CONFIG_SND_JACK
3865static void stac92xx_free_jack_priv(struct snd_jack *jack)
3866{
3867 struct sigmatel_jack *jacks = jack->private_data;
3868 jacks->nid = 0;
3869 jacks->jack = NULL;
3870}
3871#endif
3872
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003873static int stac92xx_add_jack(struct hda_codec *codec,
3874 hda_nid_t nid, int type)
3875{
Takashi Iwaie4973e12008-11-18 09:32:42 +01003876#ifdef CONFIG_SND_JACK
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003877 struct sigmatel_spec *spec = codec->spec;
3878 struct sigmatel_jack *jack;
Takashi Iwai330ee992009-02-20 14:33:36 +01003879 int def_conf = snd_hda_codec_get_pincfg(codec, nid);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003880 int connectivity = get_defcfg_connect(def_conf);
3881 char name[32];
Takashi Iwai95c09092009-04-14 16:15:29 +02003882 int err;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003883
3884 if (connectivity && connectivity != AC_JACK_PORT_FIXED)
3885 return 0;
3886
3887 snd_array_init(&spec->jacks, sizeof(*jack), 32);
3888 jack = snd_array_new(&spec->jacks);
3889 if (!jack)
3890 return -ENOMEM;
3891 jack->nid = nid;
3892 jack->type = type;
3893
3894 sprintf(name, "%s at %s %s Jack",
3895 snd_hda_get_jack_type(def_conf),
3896 snd_hda_get_jack_connectivity(def_conf),
3897 snd_hda_get_jack_location(def_conf));
3898
Takashi Iwai95c09092009-04-14 16:15:29 +02003899 err = snd_jack_new(codec->bus->card, name, type, &jack->jack);
3900 if (err < 0) {
3901 jack->nid = 0;
3902 return err;
3903 }
3904 jack->jack->private_data = jack;
3905 jack->jack->private_free = stac92xx_free_jack_priv;
Takashi Iwaie4973e12008-11-18 09:32:42 +01003906#endif
Takashi Iwai95c09092009-04-14 16:15:29 +02003907 return 0;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003908}
3909
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003910static int stac_add_event(struct sigmatel_spec *spec, hda_nid_t nid,
3911 unsigned char type, int data)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003912{
3913 struct sigmatel_event *event;
3914
3915 snd_array_init(&spec->events, sizeof(*event), 32);
3916 event = snd_array_new(&spec->events);
3917 if (!event)
3918 return -ENOMEM;
3919 event->nid = nid;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003920 event->type = type;
3921 event->tag = spec->events.used;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003922 event->data = data;
3923
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003924 return event->tag;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003925}
3926
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003927static struct sigmatel_event *stac_get_event(struct hda_codec *codec,
3928 hda_nid_t nid, unsigned char type)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003929{
3930 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003931 struct sigmatel_event *event = spec->events.list;
3932 int i;
3933
3934 for (i = 0; i < spec->events.used; i++, event++) {
3935 if (event->nid == nid && event->type == type)
3936 return event;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003937 }
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003938 return NULL;
3939}
3940
3941static struct sigmatel_event *stac_get_event_from_tag(struct hda_codec *codec,
3942 unsigned char tag)
3943{
3944 struct sigmatel_spec *spec = codec->spec;
3945 struct sigmatel_event *event = spec->events.list;
3946 int i;
3947
3948 for (i = 0; i < spec->events.used; i++, event++) {
3949 if (event->tag == tag)
3950 return event;
3951 }
3952 return NULL;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003953}
3954
Takashi Iwai314634b2006-09-21 11:56:18 +02003955static void enable_pin_detect(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003956 unsigned int type)
Takashi Iwai314634b2006-09-21 11:56:18 +02003957{
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003958 struct sigmatel_event *event;
3959 int tag;
3960
3961 if (!(get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP))
3962 return;
3963 event = stac_get_event(codec, nid, type);
3964 if (event)
3965 tag = event->tag;
3966 else
3967 tag = stac_add_event(codec->spec, nid, type, 0);
3968 if (tag < 0)
3969 return;
3970 snd_hda_codec_write_cache(codec, nid, 0,
3971 AC_VERB_SET_UNSOLICITED_ENABLE,
3972 AC_USRSP_EN | tag);
Takashi Iwai314634b2006-09-21 11:56:18 +02003973}
3974
Matthew Ranostaya64135a2008-01-10 16:55:06 +01003975static int is_nid_hp_pin(struct auto_pin_cfg *cfg, hda_nid_t nid)
3976{
3977 int i;
3978 for (i = 0; i < cfg->hp_outs; i++)
3979 if (cfg->hp_pins[i] == nid)
3980 return 1; /* nid is a HP-Out */
3981
3982 return 0; /* nid is not a HP-Out */
3983};
3984
Matthew Ranostayb76c8502008-02-06 14:49:44 +01003985static void stac92xx_power_down(struct hda_codec *codec)
3986{
3987 struct sigmatel_spec *spec = codec->spec;
3988
3989 /* power down inactive DACs */
3990 hda_nid_t *dac;
3991 for (dac = spec->dac_list; *dac; dac++)
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003992 if (!check_all_dac_nids(spec, *dac))
Takashi Iwai8c2f7672008-12-01 11:54:35 +01003993 snd_hda_codec_write(codec, *dac, 0,
Matthew Ranostayb76c8502008-02-06 14:49:44 +01003994 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
3995}
3996
Takashi Iwaif73d3582008-11-25 08:21:51 +01003997static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
3998 int enable);
3999
Takashi Iwai6565e4f2009-03-02 14:38:35 +01004000/* override some hints from the hwdep entry */
4001static void stac_store_hints(struct hda_codec *codec)
4002{
4003 struct sigmatel_spec *spec = codec->spec;
4004 const char *p;
4005 int val;
4006
4007 val = snd_hda_get_bool_hint(codec, "hp_detect");
4008 if (val >= 0)
4009 spec->hp_detect = val;
4010 p = snd_hda_get_hint(codec, "gpio_mask");
4011 if (p) {
4012 spec->gpio_mask = simple_strtoul(p, NULL, 0);
4013 spec->eapd_mask = spec->gpio_dir = spec->gpio_data =
4014 spec->gpio_mask;
4015 }
4016 p = snd_hda_get_hint(codec, "gpio_dir");
4017 if (p)
4018 spec->gpio_dir = simple_strtoul(p, NULL, 0) & spec->gpio_mask;
4019 p = snd_hda_get_hint(codec, "gpio_data");
4020 if (p)
4021 spec->gpio_data = simple_strtoul(p, NULL, 0) & spec->gpio_mask;
4022 p = snd_hda_get_hint(codec, "eapd_mask");
4023 if (p)
4024 spec->eapd_mask = simple_strtoul(p, NULL, 0) & spec->gpio_mask;
4025 val = snd_hda_get_bool_hint(codec, "eapd_switch");
4026 if (val >= 0)
4027 spec->eapd_switch = val;
4028}
4029
Mattc7d4b2f2005-06-27 14:59:41 +02004030static int stac92xx_init(struct hda_codec *codec)
4031{
4032 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai82bc9552006-03-21 11:24:42 +01004033 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaif73d3582008-11-25 08:21:51 +01004034 unsigned int gpio;
Takashi Iwaie4973e12008-11-18 09:32:42 +01004035 int i;
Mattc7d4b2f2005-06-27 14:59:41 +02004036
Mattc7d4b2f2005-06-27 14:59:41 +02004037 snd_hda_sequence_write(codec, spec->init);
4038
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004039 /* power down adcs initially */
4040 if (spec->powerdown_adcs)
4041 for (i = 0; i < spec->num_adcs; i++)
Takashi Iwai8c2f7672008-12-01 11:54:35 +01004042 snd_hda_codec_write(codec,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004043 spec->adc_nids[i], 0,
4044 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004045
Takashi Iwai6565e4f2009-03-02 14:38:35 +01004046 /* override some hints */
4047 stac_store_hints(codec);
4048
Takashi Iwaif73d3582008-11-25 08:21:51 +01004049 /* set up GPIO */
4050 gpio = spec->gpio_data;
4051 /* turn on EAPD statically when spec->eapd_switch isn't set.
4052 * otherwise, unsol event will turn it on/off dynamically
4053 */
4054 if (!spec->eapd_switch)
4055 gpio |= spec->eapd_mask;
4056 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, gpio);
4057
Takashi Iwai82bc9552006-03-21 11:24:42 +01004058 /* set up pins */
4059 if (spec->hp_detect) {
Takashi Iwai505cb342006-03-27 12:51:52 +02004060 /* Enable unsolicited responses on the HP widget */
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004061 for (i = 0; i < cfg->hp_outs; i++) {
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004062 hda_nid_t nid = cfg->hp_pins[i];
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004063 enable_pin_detect(codec, nid, STAC_HP_EVENT);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004064 }
Takashi Iwai0a07acaf2007-03-13 10:40:23 +01004065 /* force to enable the first line-out; the others are set up
4066 * in unsol_event
4067 */
4068 stac92xx_auto_set_pinctl(codec, spec->autocfg.line_out_pins[0],
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004069 AC_PINCTL_OUT_EN);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004070 /* fake event to set up pins */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004071 stac_issue_unsol_event(codec, spec->autocfg.hp_pins[0],
4072 STAC_HP_EVENT);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004073 } else {
4074 stac92xx_auto_init_multi_out(codec);
4075 stac92xx_auto_init_hp_out(codec);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004076 for (i = 0; i < cfg->hp_outs; i++)
4077 stac_toggle_power_map(codec, cfg->hp_pins[i], 1);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004078 }
4079 for (i = 0; i < AUTO_PIN_LAST; i++) {
Takashi Iwaic960a032006-03-23 17:06:28 +01004080 hda_nid_t nid = cfg->input_pins[i];
4081 if (nid) {
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004082 unsigned int pinctl, conf;
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004083 if (i == AUTO_PIN_MIC || i == AUTO_PIN_FRONT_MIC) {
4084 /* for mic pins, force to initialize */
4085 pinctl = stac92xx_get_vref(codec, nid);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004086 pinctl |= AC_PINCTL_IN_EN;
4087 stac92xx_auto_set_pinctl(codec, nid, pinctl);
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004088 } else {
4089 pinctl = snd_hda_codec_read(codec, nid, 0,
4090 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4091 /* if PINCTL already set then skip */
Takashi Iwai5dd17cb2009-05-07 16:22:53 +02004092 /* Also, if both INPUT and OUTPUT are set,
4093 * it must be a BIOS bug; need to override, too
4094 */
4095 if (!(pinctl & AC_PINCTL_IN_EN) ||
4096 (pinctl & AC_PINCTL_OUT_EN)) {
4097 pinctl &= ~AC_PINCTL_OUT_EN;
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004098 pinctl |= AC_PINCTL_IN_EN;
4099 stac92xx_auto_set_pinctl(codec, nid,
4100 pinctl);
4101 }
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004102 }
Takashi Iwai330ee992009-02-20 14:33:36 +01004103 conf = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004104 if (get_defcfg_connect(conf) != AC_JACK_PORT_FIXED) {
4105 enable_pin_detect(codec, nid,
4106 STAC_INSERT_EVENT);
4107 stac_issue_unsol_event(codec, nid,
4108 STAC_INSERT_EVENT);
4109 }
Takashi Iwaic960a032006-03-23 17:06:28 +01004110 }
Takashi Iwai82bc9552006-03-21 11:24:42 +01004111 }
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004112 for (i = 0; i < spec->num_dmics; i++)
4113 stac92xx_auto_set_pinctl(codec, spec->dmic_nids[i],
4114 AC_PINCTL_IN_EN);
Takashi Iwai0852d7a2009-02-11 11:35:15 +01004115 if (cfg->dig_out_pins[0])
4116 stac92xx_auto_set_pinctl(codec, cfg->dig_out_pins[0],
Takashi Iwai82bc9552006-03-21 11:24:42 +01004117 AC_PINCTL_OUT_EN);
4118 if (cfg->dig_in_pin)
4119 stac92xx_auto_set_pinctl(codec, cfg->dig_in_pin,
4120 AC_PINCTL_IN_EN);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004121 for (i = 0; i < spec->num_pwrs; i++) {
4122 hda_nid_t nid = spec->pwr_nids[i];
4123 int pinctl, def_conf;
Takashi Iwai82bc9552006-03-21 11:24:42 +01004124
Takashi Iwaieb632122008-12-19 16:39:48 +01004125 /* power on when no jack detection is available */
4126 if (!spec->hp_detect) {
4127 stac_toggle_power_map(codec, nid, 1);
4128 continue;
4129 }
4130
4131 if (is_nid_hp_pin(cfg, nid))
Takashi Iwaif73d3582008-11-25 08:21:51 +01004132 continue; /* already has an unsol event */
Sam Revitch62fe78e2006-05-10 15:09:17 +02004133
Takashi Iwaif73d3582008-11-25 08:21:51 +01004134 pinctl = snd_hda_codec_read(codec, nid, 0,
4135 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4136 /* outputs are only ports capable of power management
4137 * any attempts on powering down a input port cause the
4138 * referenced VREF to act quirky.
4139 */
Takashi Iwaieb632122008-12-19 16:39:48 +01004140 if (pinctl & AC_PINCTL_IN_EN) {
4141 stac_toggle_power_map(codec, nid, 1);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004142 continue;
Takashi Iwaieb632122008-12-19 16:39:48 +01004143 }
Takashi Iwai330ee992009-02-20 14:33:36 +01004144 def_conf = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004145 def_conf = get_defcfg_connect(def_conf);
4146 /* skip any ports that don't have jacks since presence
4147 * detection is useless */
4148 if (def_conf != AC_JACK_PORT_COMPLEX) {
4149 if (def_conf != AC_JACK_PORT_NONE)
4150 stac_toggle_power_map(codec, nid, 1);
4151 continue;
4152 }
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004153 if (!stac_get_event(codec, nid, STAC_INSERT_EVENT)) {
4154 enable_pin_detect(codec, nid, STAC_PWR_EVENT);
4155 stac_issue_unsol_event(codec, nid, STAC_PWR_EVENT);
4156 }
Takashi Iwaif73d3582008-11-25 08:21:51 +01004157 }
4158 if (spec->dac_list)
4159 stac92xx_power_down(codec);
Mattc7d4b2f2005-06-27 14:59:41 +02004160 return 0;
4161}
4162
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004163static void stac92xx_free_jacks(struct hda_codec *codec)
4164{
Takashi Iwaie4973e12008-11-18 09:32:42 +01004165#ifdef CONFIG_SND_JACK
Takashi Iwaib94d35392008-11-21 09:08:06 +01004166 /* free jack instances manually when clearing/reconfiguring */
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004167 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaib94d35392008-11-21 09:08:06 +01004168 if (!codec->bus->shutdown && spec->jacks.list) {
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004169 struct sigmatel_jack *jacks = spec->jacks.list;
4170 int i;
Takashi Iwai95c09092009-04-14 16:15:29 +02004171 for (i = 0; i < spec->jacks.used; i++, jacks++) {
4172 if (jacks->jack)
4173 snd_device_free(codec->bus->card, jacks->jack);
4174 }
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004175 }
4176 snd_array_free(&spec->jacks);
Takashi Iwaie4973e12008-11-18 09:32:42 +01004177#endif
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004178}
4179
Takashi Iwai603c4012008-07-30 15:01:44 +02004180static void stac92xx_free_kctls(struct hda_codec *codec)
4181{
4182 struct sigmatel_spec *spec = codec->spec;
4183
4184 if (spec->kctls.list) {
4185 struct snd_kcontrol_new *kctl = spec->kctls.list;
4186 int i;
4187 for (i = 0; i < spec->kctls.used; i++)
4188 kfree(kctl[i].name);
4189 }
4190 snd_array_free(&spec->kctls);
4191}
4192
Matt2f2f4252005-04-13 14:45:30 +02004193static void stac92xx_free(struct hda_codec *codec)
4194{
Mattc7d4b2f2005-06-27 14:59:41 +02004195 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +02004196
4197 if (! spec)
4198 return;
4199
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004200 stac92xx_free_jacks(codec);
4201 snd_array_free(&spec->events);
Richard Fish11b44bb2006-08-23 18:31:34 +02004202
Mattc7d4b2f2005-06-27 14:59:41 +02004203 kfree(spec);
Matthew Ranostay1cd22242008-07-18 18:20:52 +02004204 snd_hda_detach_beep_device(codec);
Matt2f2f4252005-04-13 14:45:30 +02004205}
4206
Matt4e550962005-07-04 17:51:39 +02004207static void stac92xx_set_pinctl(struct hda_codec *codec, hda_nid_t nid,
4208 unsigned int flag)
4209{
Takashi Iwai8ce84192009-01-22 16:59:20 +01004210 unsigned int old_ctl, pin_ctl;
4211
4212 pin_ctl = snd_hda_codec_read(codec, nid,
Matt4e550962005-07-04 17:51:39 +02004213 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
Steve Longerbeam7b0438992007-05-03 20:50:03 +02004214
Takashi Iwaif9acba42007-05-29 18:01:06 +02004215 if (pin_ctl & AC_PINCTL_IN_EN) {
4216 /*
4217 * we need to check the current set-up direction of
4218 * shared input pins since they can be switched via
4219 * "xxx as Output" mixer switch
4220 */
4221 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004222 if (nid == spec->line_switch || nid == spec->mic_switch)
Takashi Iwaif9acba42007-05-29 18:01:06 +02004223 return;
4224 }
4225
Takashi Iwai8ce84192009-01-22 16:59:20 +01004226 old_ctl = pin_ctl;
Steve Longerbeam7b0438992007-05-03 20:50:03 +02004227 /* if setting pin direction bits, clear the current
4228 direction bits first */
4229 if (flag & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN))
4230 pin_ctl &= ~(AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
4231
Takashi Iwai8ce84192009-01-22 16:59:20 +01004232 pin_ctl |= flag;
4233 if (old_ctl != pin_ctl)
4234 snd_hda_codec_write_cache(codec, nid, 0,
4235 AC_VERB_SET_PIN_WIDGET_CONTROL,
4236 pin_ctl);
Matt4e550962005-07-04 17:51:39 +02004237}
4238
4239static void stac92xx_reset_pinctl(struct hda_codec *codec, hda_nid_t nid,
4240 unsigned int flag)
4241{
4242 unsigned int pin_ctl = snd_hda_codec_read(codec, nid,
4243 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
Takashi Iwai8ce84192009-01-22 16:59:20 +01004244 if (pin_ctl & flag)
4245 snd_hda_codec_write_cache(codec, nid, 0,
4246 AC_VERB_SET_PIN_WIDGET_CONTROL,
4247 pin_ctl & ~flag);
Matt4e550962005-07-04 17:51:39 +02004248}
4249
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004250static int get_pin_presence(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwai314634b2006-09-21 11:56:18 +02004251{
4252 if (!nid)
4253 return 0;
4254 if (snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PIN_SENSE, 0x00)
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004255 & (1 << 31))
4256 return 1;
Takashi Iwai314634b2006-09-21 11:56:18 +02004257 return 0;
4258}
4259
Takashi Iwaid7a89432008-11-12 09:48:04 +01004260/* return non-zero if the hp-pin of the given array index isn't
4261 * a jack-detection target
4262 */
4263static int no_hp_sensing(struct sigmatel_spec *spec, int i)
4264{
4265 struct auto_pin_cfg *cfg = &spec->autocfg;
4266
4267 /* ignore sensing of shared line and mic jacks */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004268 if (cfg->hp_pins[i] == spec->line_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004269 return 1;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004270 if (cfg->hp_pins[i] == spec->mic_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004271 return 1;
4272 /* ignore if the pin is set as line-out */
4273 if (cfg->hp_pins[i] == spec->hp_switch)
4274 return 1;
4275 return 0;
4276}
4277
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004278static void stac92xx_hp_detect(struct hda_codec *codec)
Matt4e550962005-07-04 17:51:39 +02004279{
4280 struct sigmatel_spec *spec = codec->spec;
4281 struct auto_pin_cfg *cfg = &spec->autocfg;
4282 int i, presence;
4283
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004284 presence = 0;
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +01004285 if (spec->gpio_mute)
4286 presence = !(snd_hda_codec_read(codec, codec->afg, 0,
4287 AC_VERB_GET_GPIO_DATA, 0) & spec->gpio_mute);
4288
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004289 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwai314634b2006-09-21 11:56:18 +02004290 if (presence)
4291 break;
Takashi Iwaid7a89432008-11-12 09:48:04 +01004292 if (no_hp_sensing(spec, i))
4293 continue;
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004294 presence = get_pin_presence(codec, cfg->hp_pins[i]);
4295 if (presence) {
4296 unsigned int pinctl;
4297 pinctl = snd_hda_codec_read(codec, cfg->hp_pins[i], 0,
4298 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4299 if (pinctl & AC_PINCTL_IN_EN)
4300 presence = 0; /* mic- or line-input */
4301 }
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004302 }
Matt4e550962005-07-04 17:51:39 +02004303
4304 if (presence) {
Takashi Iwaid7a89432008-11-12 09:48:04 +01004305 /* disable lineouts */
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02004306 if (spec->hp_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004307 stac92xx_reset_pinctl(codec, spec->hp_switch,
4308 AC_PINCTL_OUT_EN);
Matt4e550962005-07-04 17:51:39 +02004309 for (i = 0; i < cfg->line_outs; i++)
4310 stac92xx_reset_pinctl(codec, cfg->line_out_pins[i],
4311 AC_PINCTL_OUT_EN);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004312 for (i = 0; i < cfg->speaker_outs; i++)
4313 stac92xx_reset_pinctl(codec, cfg->speaker_pins[i],
4314 AC_PINCTL_OUT_EN);
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05004315 if (spec->eapd_mask && spec->eapd_switch)
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02004316 stac_gpio_set(codec, spec->gpio_mask,
4317 spec->gpio_dir, spec->gpio_data &
4318 ~spec->eapd_mask);
Matt4e550962005-07-04 17:51:39 +02004319 } else {
Takashi Iwaid7a89432008-11-12 09:48:04 +01004320 /* enable lineouts */
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02004321 if (spec->hp_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004322 stac92xx_set_pinctl(codec, spec->hp_switch,
4323 AC_PINCTL_OUT_EN);
Matt4e550962005-07-04 17:51:39 +02004324 for (i = 0; i < cfg->line_outs; i++)
4325 stac92xx_set_pinctl(codec, cfg->line_out_pins[i],
4326 AC_PINCTL_OUT_EN);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004327 for (i = 0; i < cfg->speaker_outs; i++)
4328 stac92xx_set_pinctl(codec, cfg->speaker_pins[i],
4329 AC_PINCTL_OUT_EN);
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05004330 if (spec->eapd_mask && spec->eapd_switch)
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02004331 stac_gpio_set(codec, spec->gpio_mask,
4332 spec->gpio_dir, spec->gpio_data |
4333 spec->eapd_mask);
Matt4e550962005-07-04 17:51:39 +02004334 }
Takashi Iwaid7a89432008-11-12 09:48:04 +01004335 /* toggle hp outs */
4336 for (i = 0; i < cfg->hp_outs; i++) {
4337 unsigned int val = AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN;
4338 if (no_hp_sensing(spec, i))
4339 continue;
4340 if (presence)
4341 stac92xx_set_pinctl(codec, cfg->hp_pins[i], val);
Takashi Iwai8317e0b2009-01-14 07:56:51 +01004342#if 0 /* FIXME */
4343/* Resetting the pinctl like below may lead to (a sort of) regressions
4344 * on some devices since they use the HP pin actually for line/speaker
4345 * outs although the default pin config shows a different pin (that is
4346 * wrong and useless).
4347 *
4348 * So, it's basically a problem of default pin configs, likely a BIOS issue.
4349 * But, disabling the code below just works around it, and I'm too tired of
4350 * bug reports with such devices...
4351 */
Takashi Iwaid7a89432008-11-12 09:48:04 +01004352 else
4353 stac92xx_reset_pinctl(codec, cfg->hp_pins[i], val);
Takashi Iwai8317e0b2009-01-14 07:56:51 +01004354#endif /* FIXME */
Takashi Iwaid7a89432008-11-12 09:48:04 +01004355 }
Matt4e550962005-07-04 17:51:39 +02004356}
4357
Takashi Iwaif73d3582008-11-25 08:21:51 +01004358static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
4359 int enable)
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004360{
4361 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaif73d3582008-11-25 08:21:51 +01004362 unsigned int idx, val;
4363
4364 for (idx = 0; idx < spec->num_pwrs; idx++) {
4365 if (spec->pwr_nids[idx] == nid)
4366 break;
4367 }
4368 if (idx >= spec->num_pwrs)
4369 return;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004370
4371 /* several codecs have two power down bits */
4372 if (spec->pwr_mapping)
4373 idx = spec->pwr_mapping[idx];
4374 else
4375 idx = 1 << idx;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004376
Takashi Iwaif73d3582008-11-25 08:21:51 +01004377 val = snd_hda_codec_read(codec, codec->afg, 0, 0x0fec, 0x0) & 0xff;
4378 if (enable)
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004379 val &= ~idx;
4380 else
4381 val |= idx;
4382
4383 /* power down unused output ports */
4384 snd_hda_codec_write(codec, codec->afg, 0, 0x7ec, val);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004385}
4386
Takashi Iwaif73d3582008-11-25 08:21:51 +01004387static void stac92xx_pin_sense(struct hda_codec *codec, hda_nid_t nid)
4388{
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004389 stac_toggle_power_map(codec, nid, get_pin_presence(codec, nid));
Takashi Iwaif73d3582008-11-25 08:21:51 +01004390}
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004391
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004392static void stac92xx_report_jack(struct hda_codec *codec, hda_nid_t nid)
4393{
4394 struct sigmatel_spec *spec = codec->spec;
4395 struct sigmatel_jack *jacks = spec->jacks.list;
4396
4397 if (jacks) {
4398 int i;
4399 for (i = 0; i < spec->jacks.used; i++) {
4400 if (jacks->nid == nid) {
4401 unsigned int pin_ctl =
4402 snd_hda_codec_read(codec, nid,
4403 0, AC_VERB_GET_PIN_WIDGET_CONTROL,
4404 0x00);
4405 int type = jacks->type;
4406 if (type == (SND_JACK_LINEOUT
4407 | SND_JACK_HEADPHONE))
4408 type = (pin_ctl & AC_PINCTL_HP_EN)
4409 ? SND_JACK_HEADPHONE : SND_JACK_LINEOUT;
4410 snd_jack_report(jacks->jack,
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004411 get_pin_presence(codec, nid)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004412 ? type : 0);
4413 }
4414 jacks++;
4415 }
4416 }
4417}
Matt2f2f4252005-04-13 14:45:30 +02004418
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004419static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid,
4420 unsigned char type)
4421{
4422 struct sigmatel_event *event = stac_get_event(codec, nid, type);
4423 if (!event)
4424 return;
4425 codec->patch_ops.unsol_event(codec, (unsigned)event->tag << 26);
4426}
4427
Takashi Iwai314634b2006-09-21 11:56:18 +02004428static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res)
4429{
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004430 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004431 struct sigmatel_event *event;
4432 int tag, data;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004433
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004434 tag = (res >> 26) & 0x7f;
4435 event = stac_get_event_from_tag(codec, tag);
4436 if (!event)
4437 return;
4438
4439 switch (event->type) {
Takashi Iwai314634b2006-09-21 11:56:18 +02004440 case STAC_HP_EVENT:
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004441 stac92xx_hp_detect(codec);
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004442 /* fallthru */
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004443 case STAC_INSERT_EVENT:
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004444 case STAC_PWR_EVENT:
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004445 if (spec->num_pwrs > 0)
4446 stac92xx_pin_sense(codec, event->nid);
4447 stac92xx_report_jack(codec, event->nid);
Matthew Ranostayfd60cc82009-04-06 09:30:46 -04004448
4449 switch (codec->subsystem_id) {
4450 case 0x103c308f:
4451 if (event->nid == 0xb) {
4452 int pin = AC_PINCTL_IN_EN;
4453
4454 if (get_pin_presence(codec, 0xa)
4455 && get_pin_presence(codec, 0xb))
4456 pin |= AC_PINCTL_VREF_80;
4457 if (!get_pin_presence(codec, 0xb))
4458 pin |= AC_PINCTL_VREF_80;
4459
4460 /* toggle VREF state based on mic + hp pin
4461 * status
4462 */
4463 stac92xx_auto_set_pinctl(codec, 0x0a, pin);
4464 }
4465 }
Matthew Ranostay72474be2008-10-09 09:32:17 -04004466 break;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004467 case STAC_VREF_EVENT:
4468 data = snd_hda_codec_read(codec, codec->afg, 0,
4469 AC_VERB_GET_GPIO_DATA, 0);
Matthew Ranostay72474be2008-10-09 09:32:17 -04004470 /* toggle VREF state based on GPIOx status */
4471 snd_hda_codec_write(codec, codec->afg, 0, 0x7e0,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004472 !!(data & (1 << event->data)));
Matthew Ranostay72474be2008-10-09 09:32:17 -04004473 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02004474 }
4475}
4476
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004477#ifdef CONFIG_PROC_FS
4478static void stac92hd_proc_hook(struct snd_info_buffer *buffer,
4479 struct hda_codec *codec, hda_nid_t nid)
4480{
4481 if (nid == codec->afg)
4482 snd_iprintf(buffer, "Power-Map: 0x%02x\n",
4483 snd_hda_codec_read(codec, nid, 0, 0x0fec, 0x0));
4484}
4485
4486static void analog_loop_proc_hook(struct snd_info_buffer *buffer,
4487 struct hda_codec *codec,
4488 unsigned int verb)
4489{
4490 snd_iprintf(buffer, "Analog Loopback: 0x%02x\n",
4491 snd_hda_codec_read(codec, codec->afg, 0, verb, 0));
4492}
4493
4494/* stac92hd71bxx, stac92hd73xx */
4495static void stac92hd7x_proc_hook(struct snd_info_buffer *buffer,
4496 struct hda_codec *codec, hda_nid_t nid)
4497{
4498 stac92hd_proc_hook(buffer, codec, nid);
4499 if (nid == codec->afg)
4500 analog_loop_proc_hook(buffer, codec, 0xfa0);
4501}
4502
4503static void stac9205_proc_hook(struct snd_info_buffer *buffer,
4504 struct hda_codec *codec, hda_nid_t nid)
4505{
4506 if (nid == codec->afg)
4507 analog_loop_proc_hook(buffer, codec, 0xfe0);
4508}
4509
4510static void stac927x_proc_hook(struct snd_info_buffer *buffer,
4511 struct hda_codec *codec, hda_nid_t nid)
4512{
4513 if (nid == codec->afg)
4514 analog_loop_proc_hook(buffer, codec, 0xfeb);
4515}
4516#else
4517#define stac92hd_proc_hook NULL
4518#define stac92hd7x_proc_hook NULL
4519#define stac9205_proc_hook NULL
4520#define stac927x_proc_hook NULL
4521#endif
4522
Takashi Iwaicb53c622007-08-10 17:21:45 +02004523#ifdef SND_HDA_NEEDS_RESUME
Mattff6fdc32005-06-27 15:06:52 +02004524static int stac92xx_resume(struct hda_codec *codec)
4525{
Takashi Iwaidc81bed2007-09-03 09:36:36 +02004526 struct sigmatel_spec *spec = codec->spec;
4527
Takashi Iwai2c885872008-11-18 09:36:55 +01004528 stac92xx_init(codec);
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004529 snd_hda_codec_resume_amp(codec);
4530 snd_hda_codec_resume_cache(codec);
Takashi Iwai2c885872008-11-18 09:36:55 +01004531 /* fake event to set up pins again to override cached values */
Takashi Iwaidc81bed2007-09-03 09:36:36 +02004532 if (spec->hp_detect)
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004533 stac_issue_unsol_event(codec, spec->autocfg.hp_pins[0],
4534 STAC_HP_EVENT);
Mattff6fdc32005-06-27 15:06:52 +02004535 return 0;
4536}
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004537
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004538
4539/*
4540 * using power check for controlling mute led of HP HDX notebooks
4541 * check for mute state only on Speakers (nid = 0x10)
4542 *
4543 * For this feature CONFIG_SND_HDA_POWER_SAVE is needed, otherwise
4544 * the LED is NOT working properly !
4545 */
4546
4547#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwai6fce61a2009-03-10 07:48:57 +01004548static int stac92xx_hp_hdx_check_power_status(struct hda_codec *codec,
4549 hda_nid_t nid)
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004550{
4551 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai6fce61a2009-03-10 07:48:57 +01004552
4553 if (nid == 0x10) {
4554 if (snd_hda_codec_amp_read(codec, nid, 0, HDA_OUTPUT, 0) &
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004555 HDA_AMP_MUTE)
4556 spec->gpio_data &= ~0x08; /* orange */
4557 else
4558 spec->gpio_data |= 0x08; /* white */
Takashi Iwai6fce61a2009-03-10 07:48:57 +01004559
4560 stac_gpio_set(codec, spec->gpio_mask,
4561 spec->gpio_dir,
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004562 spec->gpio_data);
4563 }
4564
4565 return 0;
4566}
4567#endif
4568
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004569static int stac92xx_suspend(struct hda_codec *codec, pm_message_t state)
4570{
4571 struct sigmatel_spec *spec = codec->spec;
4572 if (spec->eapd_mask)
4573 stac_gpio_set(codec, spec->gpio_mask,
4574 spec->gpio_dir, spec->gpio_data &
4575 ~spec->eapd_mask);
4576 return 0;
4577}
Mattff6fdc32005-06-27 15:06:52 +02004578#endif
4579
Matt2f2f4252005-04-13 14:45:30 +02004580static struct hda_codec_ops stac92xx_patch_ops = {
4581 .build_controls = stac92xx_build_controls,
4582 .build_pcms = stac92xx_build_pcms,
4583 .init = stac92xx_init,
4584 .free = stac92xx_free,
Matt4e550962005-07-04 17:51:39 +02004585 .unsol_event = stac92xx_unsol_event,
Takashi Iwaicb53c622007-08-10 17:21:45 +02004586#ifdef SND_HDA_NEEDS_RESUME
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004587 .suspend = stac92xx_suspend,
Mattff6fdc32005-06-27 15:06:52 +02004588 .resume = stac92xx_resume,
4589#endif
Matt2f2f4252005-04-13 14:45:30 +02004590};
4591
4592static int patch_stac9200(struct hda_codec *codec)
4593{
4594 struct sigmatel_spec *spec;
Mattc7d4b2f2005-06-27 14:59:41 +02004595 int err;
Matt2f2f4252005-04-13 14:45:30 +02004596
Takashi Iwaie560d8d2005-09-09 14:21:46 +02004597 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Matt2f2f4252005-04-13 14:45:30 +02004598 if (spec == NULL)
4599 return -ENOMEM;
4600
4601 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02004602 spec->num_pins = ARRAY_SIZE(stac9200_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02004603 spec->pin_nids = stac9200_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004604 spec->board_config = snd_hda_check_board_config(codec, STAC_9200_MODELS,
4605 stac9200_models,
4606 stac9200_cfg_tbl);
Takashi Iwai330ee992009-02-20 14:33:36 +01004607 if (spec->board_config < 0)
Richard Fish11b44bb2006-08-23 18:31:34 +02004608 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9200, using BIOS defaults\n");
Takashi Iwai330ee992009-02-20 14:33:36 +01004609 else
4610 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01004611 stac9200_brd_tbl[spec->board_config]);
Matt2f2f4252005-04-13 14:45:30 +02004612
4613 spec->multiout.max_channels = 2;
4614 spec->multiout.num_dacs = 1;
4615 spec->multiout.dac_nids = stac9200_dac_nids;
4616 spec->adc_nids = stac9200_adc_nids;
4617 spec->mux_nids = stac9200_mux_nids;
Mattdabbed62005-06-14 10:19:34 +02004618 spec->num_muxes = 1;
Matt Porter8b657272006-10-26 17:12:59 +02004619 spec->num_dmics = 0;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02004620 spec->num_adcs = 1;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004621 spec->num_pwrs = 0;
Mattc7d4b2f2005-06-27 14:59:41 +02004622
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02004623 if (spec->board_config == STAC_9200_M4 ||
4624 spec->board_config == STAC_9200_M4_2 ||
Tobin Davisbf277782008-02-03 20:31:47 +01004625 spec->board_config == STAC_9200_OQO)
Takashi Iwai1194b5b2007-10-10 10:04:26 +02004626 spec->init = stac9200_eapd_init;
4627 else
4628 spec->init = stac9200_core_init;
Matt2f2f4252005-04-13 14:45:30 +02004629 spec->mixer = stac9200_mixer;
Mattc7d4b2f2005-06-27 14:59:41 +02004630
Takashi Iwai117f2572008-03-18 09:53:23 +01004631 if (spec->board_config == STAC_9200_PANASONIC) {
4632 spec->gpio_mask = spec->gpio_dir = 0x09;
4633 spec->gpio_data = 0x00;
4634 }
4635
Mattc7d4b2f2005-06-27 14:59:41 +02004636 err = stac9200_parse_auto_config(codec);
4637 if (err < 0) {
4638 stac92xx_free(codec);
4639 return err;
4640 }
Matt2f2f4252005-04-13 14:45:30 +02004641
Takashi Iwai2acc9dc2009-01-09 16:57:14 +01004642 /* CF-74 has no headphone detection, and the driver should *NOT*
4643 * do detection and HP/speaker toggle because the hardware does it.
4644 */
4645 if (spec->board_config == STAC_9200_PANASONIC)
4646 spec->hp_detect = 0;
4647
Matt2f2f4252005-04-13 14:45:30 +02004648 codec->patch_ops = stac92xx_patch_ops;
4649
4650 return 0;
4651}
4652
Tobin Davis8e21c342007-01-08 11:04:17 +01004653static int patch_stac925x(struct hda_codec *codec)
4654{
4655 struct sigmatel_spec *spec;
4656 int err;
4657
4658 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4659 if (spec == NULL)
4660 return -ENOMEM;
4661
4662 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02004663 spec->num_pins = ARRAY_SIZE(stac925x_pin_nids);
Tobin Davis8e21c342007-01-08 11:04:17 +01004664 spec->pin_nids = stac925x_pin_nids;
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02004665
4666 /* Check first for codec ID */
4667 spec->board_config = snd_hda_check_board_codec_sid_config(codec,
4668 STAC_925x_MODELS,
4669 stac925x_models,
4670 stac925x_codec_id_cfg_tbl);
4671
4672 /* Now checks for PCI ID, if codec ID is not found */
4673 if (spec->board_config < 0)
4674 spec->board_config = snd_hda_check_board_config(codec,
4675 STAC_925x_MODELS,
Tobin Davis8e21c342007-01-08 11:04:17 +01004676 stac925x_models,
4677 stac925x_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01004678 again:
Takashi Iwai330ee992009-02-20 14:33:36 +01004679 if (spec->board_config < 0)
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02004680 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC925x,"
Tobin Davis2c11f952007-05-17 09:36:34 +02004681 "using BIOS defaults\n");
Takashi Iwai330ee992009-02-20 14:33:36 +01004682 else
4683 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01004684 stac925x_brd_tbl[spec->board_config]);
Tobin Davis8e21c342007-01-08 11:04:17 +01004685
4686 spec->multiout.max_channels = 2;
4687 spec->multiout.num_dacs = 1;
4688 spec->multiout.dac_nids = stac925x_dac_nids;
4689 spec->adc_nids = stac925x_adc_nids;
4690 spec->mux_nids = stac925x_mux_nids;
4691 spec->num_muxes = 1;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02004692 spec->num_adcs = 1;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004693 spec->num_pwrs = 0;
Tobin Davis2c11f952007-05-17 09:36:34 +02004694 switch (codec->vendor_id) {
4695 case 0x83847632: /* STAC9202 */
4696 case 0x83847633: /* STAC9202D */
4697 case 0x83847636: /* STAC9251 */
4698 case 0x83847637: /* STAC9251D */
Takashi Iwaif6e98522007-10-16 14:27:04 +02004699 spec->num_dmics = STAC925X_NUM_DMICS;
Tobin Davis2c11f952007-05-17 09:36:34 +02004700 spec->dmic_nids = stac925x_dmic_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +01004701 spec->num_dmuxes = ARRAY_SIZE(stac925x_dmux_nids);
4702 spec->dmux_nids = stac925x_dmux_nids;
Tobin Davis2c11f952007-05-17 09:36:34 +02004703 break;
4704 default:
4705 spec->num_dmics = 0;
4706 break;
4707 }
Tobin Davis8e21c342007-01-08 11:04:17 +01004708
4709 spec->init = stac925x_core_init;
4710 spec->mixer = stac925x_mixer;
4711
4712 err = stac92xx_parse_auto_config(codec, 0x8, 0x7);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01004713 if (!err) {
4714 if (spec->board_config < 0) {
4715 printk(KERN_WARNING "hda_codec: No auto-config is "
4716 "available, default to model=ref\n");
4717 spec->board_config = STAC_925x_REF;
4718 goto again;
4719 }
4720 err = -EINVAL;
4721 }
Tobin Davis8e21c342007-01-08 11:04:17 +01004722 if (err < 0) {
4723 stac92xx_free(codec);
4724 return err;
4725 }
4726
4727 codec->patch_ops = stac92xx_patch_ops;
4728
4729 return 0;
4730}
4731
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004732static struct hda_input_mux stac92hd73xx_dmux = {
4733 .num_items = 4,
4734 .items = {
4735 { "Analog Inputs", 0x0b },
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004736 { "Digital Mic 1", 0x09 },
4737 { "Digital Mic 2", 0x0a },
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004738 { "CD", 0x08 },
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004739 }
4740};
4741
4742static int patch_stac92hd73xx(struct hda_codec *codec)
4743{
4744 struct sigmatel_spec *spec;
4745 hda_nid_t conn[STAC92HD73_DAC_COUNT + 2];
4746 int err = 0;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004747 int num_dacs;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004748
4749 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4750 if (spec == NULL)
4751 return -ENOMEM;
4752
4753 codec->spec = spec;
Matthew Ranostaye99d32b2008-09-09 10:46:38 +02004754 codec->slave_dig_outs = stac92hd73xx_slave_dig_outs;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004755 spec->num_pins = ARRAY_SIZE(stac92hd73xx_pin_nids);
4756 spec->pin_nids = stac92hd73xx_pin_nids;
4757 spec->board_config = snd_hda_check_board_config(codec,
4758 STAC_92HD73XX_MODELS,
4759 stac92hd73xx_models,
4760 stac92hd73xx_cfg_tbl);
4761again:
Takashi Iwai330ee992009-02-20 14:33:36 +01004762 if (spec->board_config < 0)
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004763 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
4764 " STAC92HD73XX, using BIOS defaults\n");
Takashi Iwai330ee992009-02-20 14:33:36 +01004765 else
4766 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01004767 stac92hd73xx_brd_tbl[spec->board_config]);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004768
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004769 num_dacs = snd_hda_get_connections(codec, 0x0a,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004770 conn, STAC92HD73_DAC_COUNT + 2) - 1;
4771
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004772 if (num_dacs < 3 || num_dacs > 5) {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004773 printk(KERN_WARNING "hda_codec: Could not determine "
4774 "number of channels defaulting to DAC count\n");
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004775 num_dacs = STAC92HD73_DAC_COUNT;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004776 }
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004777 switch (num_dacs) {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004778 case 0x3: /* 6 Channel */
4779 spec->mixer = stac92hd73xx_6ch_mixer;
4780 spec->init = stac92hd73xx_6ch_core_init;
Takashi Iwaid78d7a92009-03-02 14:26:25 +01004781 spec->aloopback_ctl = stac92hd73xx_6ch_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004782 break;
4783 case 0x4: /* 8 Channel */
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004784 spec->mixer = stac92hd73xx_8ch_mixer;
4785 spec->init = stac92hd73xx_8ch_core_init;
Takashi Iwaid78d7a92009-03-02 14:26:25 +01004786 spec->aloopback_ctl = stac92hd73xx_8ch_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004787 break;
4788 case 0x5: /* 10 Channel */
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004789 spec->mixer = stac92hd73xx_10ch_mixer;
4790 spec->init = stac92hd73xx_10ch_core_init;
Takashi Iwaid78d7a92009-03-02 14:26:25 +01004791 spec->aloopback_ctl = stac92hd73xx_10ch_loopback;
4792 break;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004793 }
4794 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004795
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004796 spec->aloopback_mask = 0x01;
4797 spec->aloopback_shift = 8;
4798
Matthew Ranostay1cd22242008-07-18 18:20:52 +02004799 spec->digbeep_nid = 0x1c;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004800 spec->mux_nids = stac92hd73xx_mux_nids;
4801 spec->adc_nids = stac92hd73xx_adc_nids;
4802 spec->dmic_nids = stac92hd73xx_dmic_nids;
4803 spec->dmux_nids = stac92hd73xx_dmux_nids;
Matthew Ranostayd9737752008-09-07 12:03:41 +02004804 spec->smux_nids = stac92hd73xx_smux_nids;
Matthew Ranostay89385032008-09-11 09:49:39 -04004805 spec->amp_nids = stac92hd73xx_amp_nids;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004806 spec->num_amps = ARRAY_SIZE(stac92hd73xx_amp_nids);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004807
4808 spec->num_muxes = ARRAY_SIZE(stac92hd73xx_mux_nids);
4809 spec->num_adcs = ARRAY_SIZE(stac92hd73xx_adc_nids);
Takashi Iwai1697055e2007-12-18 18:05:52 +01004810 spec->num_dmuxes = ARRAY_SIZE(stac92hd73xx_dmux_nids);
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004811 memcpy(&spec->private_dimux, &stac92hd73xx_dmux,
4812 sizeof(stac92hd73xx_dmux));
4813
Matthew Ranostaya7662642008-02-21 07:51:14 +01004814 switch (spec->board_config) {
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05004815 case STAC_DELL_EQ:
Matthew Ranostayd654a662008-03-14 08:46:51 +01004816 spec->init = dell_eq_core_init;
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05004817 /* fallthru */
Takashi Iwai661cd8f2008-11-25 15:18:29 +01004818 case STAC_DELL_M6_AMIC:
4819 case STAC_DELL_M6_DMIC:
4820 case STAC_DELL_M6_BOTH:
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004821 spec->num_smuxes = 0;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004822 spec->mixer = &stac92hd73xx_6ch_mixer[DELL_M6_MIXER];
4823 spec->amp_nids = &stac92hd73xx_amp_nids[DELL_M6_AMP];
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05004824 spec->eapd_switch = 0;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004825 spec->num_amps = 1;
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05004826
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004827 if (spec->board_config != STAC_DELL_EQ)
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05004828 spec->init = dell_m6_core_init;
Takashi Iwai661cd8f2008-11-25 15:18:29 +01004829 switch (spec->board_config) {
4830 case STAC_DELL_M6_AMIC: /* Analog Mics */
Takashi Iwai330ee992009-02-20 14:33:36 +01004831 snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
Matthew Ranostaya7662642008-02-21 07:51:14 +01004832 spec->num_dmics = 0;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004833 spec->private_dimux.num_items = 1;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004834 break;
Takashi Iwai661cd8f2008-11-25 15:18:29 +01004835 case STAC_DELL_M6_DMIC: /* Digital Mics */
Takashi Iwai330ee992009-02-20 14:33:36 +01004836 snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
Matthew Ranostaya7662642008-02-21 07:51:14 +01004837 spec->num_dmics = 1;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004838 spec->private_dimux.num_items = 2;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004839 break;
Takashi Iwai661cd8f2008-11-25 15:18:29 +01004840 case STAC_DELL_M6_BOTH: /* Both */
Takashi Iwai330ee992009-02-20 14:33:36 +01004841 snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
4842 snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
Matthew Ranostaya7662642008-02-21 07:51:14 +01004843 spec->num_dmics = 1;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004844 spec->private_dimux.num_items = 2;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004845 break;
4846 }
4847 break;
4848 default:
4849 spec->num_dmics = STAC92HD73XX_NUM_DMICS;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004850 spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids);
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05004851 spec->eapd_switch = 1;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004852 }
Matthew Ranostayb2c4f4d2008-09-26 10:06:40 -04004853 if (spec->board_config > STAC_92HD73XX_REF) {
4854 /* GPIO0 High = Enable EAPD */
4855 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
4856 spec->gpio_data = 0x01;
4857 }
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004858 spec->dinput_mux = &spec->private_dimux;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004859
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004860 spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids);
4861 spec->pwr_nids = stac92hd73xx_pwr_nids;
4862
Matthew Ranostayd9737752008-09-07 12:03:41 +02004863 err = stac92xx_parse_auto_config(codec, 0x25, 0x27);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004864
4865 if (!err) {
4866 if (spec->board_config < 0) {
4867 printk(KERN_WARNING "hda_codec: No auto-config is "
4868 "available, default to model=ref\n");
4869 spec->board_config = STAC_92HD73XX_REF;
4870 goto again;
4871 }
4872 err = -EINVAL;
4873 }
4874
4875 if (err < 0) {
4876 stac92xx_free(codec);
4877 return err;
4878 }
4879
Takashi Iwai9e43f0d2008-12-17 14:51:01 +01004880 if (spec->board_config == STAC_92HD73XX_NO_JD)
4881 spec->hp_detect = 0;
4882
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004883 codec->patch_ops = stac92xx_patch_ops;
4884
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004885 codec->proc_widget_hook = stac92hd7x_proc_hook;
4886
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004887 return 0;
4888}
4889
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004890static struct hda_input_mux stac92hd83xxx_dmux = {
4891 .num_items = 3,
4892 .items = {
4893 { "Analog Inputs", 0x03 },
4894 { "Digital Mic 1", 0x04 },
4895 { "Digital Mic 2", 0x05 },
4896 }
4897};
4898
4899static int patch_stac92hd83xxx(struct hda_codec *codec)
4900{
4901 struct sigmatel_spec *spec;
Matthew Ranostay65557f32009-01-20 16:50:25 -05004902 hda_nid_t conn[STAC92HD83_DAC_COUNT + 1];
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004903 int err;
Matthew Ranostay65557f32009-01-20 16:50:25 -05004904 int num_dacs;
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05004905 hda_nid_t nid;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004906
4907 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4908 if (spec == NULL)
4909 return -ENOMEM;
4910
4911 codec->spec = spec;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04004912 codec->slave_dig_outs = stac92hd83xxx_slave_dig_outs;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004913 spec->mono_nid = 0x19;
4914 spec->digbeep_nid = 0x21;
4915 spec->dmic_nids = stac92hd83xxx_dmic_nids;
4916 spec->dmux_nids = stac92hd83xxx_dmux_nids;
4917 spec->adc_nids = stac92hd83xxx_adc_nids;
4918 spec->pwr_nids = stac92hd83xxx_pwr_nids;
Matthew Ranostayc15c5062009-01-13 13:30:07 -05004919 spec->amp_nids = stac92hd83xxx_amp_nids;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004920 spec->pwr_mapping = stac92hd83xxx_pwr_mapping;
4921 spec->num_pwrs = ARRAY_SIZE(stac92hd83xxx_pwr_nids);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004922 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004923
4924 spec->init = stac92hd83xxx_core_init;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004925 spec->mixer = stac92hd83xxx_mixer;
4926 spec->num_pins = ARRAY_SIZE(stac92hd83xxx_pin_nids);
4927 spec->num_dmuxes = ARRAY_SIZE(stac92hd83xxx_dmux_nids);
4928 spec->num_adcs = ARRAY_SIZE(stac92hd83xxx_adc_nids);
Matthew Ranostayc15c5062009-01-13 13:30:07 -05004929 spec->num_amps = ARRAY_SIZE(stac92hd83xxx_amp_nids);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004930 spec->num_dmics = STAC92HD83XXX_NUM_DMICS;
4931 spec->dinput_mux = &stac92hd83xxx_dmux;
4932 spec->pin_nids = stac92hd83xxx_pin_nids;
4933 spec->board_config = snd_hda_check_board_config(codec,
4934 STAC_92HD83XXX_MODELS,
4935 stac92hd83xxx_models,
4936 stac92hd83xxx_cfg_tbl);
4937again:
Takashi Iwai330ee992009-02-20 14:33:36 +01004938 if (spec->board_config < 0)
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004939 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
4940 " STAC92HD83XXX, using BIOS defaults\n");
Takashi Iwai330ee992009-02-20 14:33:36 +01004941 else
4942 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01004943 stac92hd83xxx_brd_tbl[spec->board_config]);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004944
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05004945 switch (codec->vendor_id) {
4946 case 0x111d7604:
4947 case 0x111d7605:
Matthew Ranostayff2e7332009-04-01 14:49:48 -04004948 case 0x111d76d5:
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05004949 if (spec->board_config == STAC_92HD83XXX_PWR_REF)
4950 break;
4951 spec->num_pwrs = 0;
4952 break;
4953 }
4954
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004955 err = stac92xx_parse_auto_config(codec, 0x1d, 0);
4956 if (!err) {
4957 if (spec->board_config < 0) {
4958 printk(KERN_WARNING "hda_codec: No auto-config is "
4959 "available, default to model=ref\n");
4960 spec->board_config = STAC_92HD83XXX_REF;
4961 goto again;
4962 }
4963 err = -EINVAL;
4964 }
4965
4966 if (err < 0) {
4967 stac92xx_free(codec);
4968 return err;
4969 }
4970
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05004971 switch (spec->board_config) {
4972 case STAC_DELL_S14:
4973 nid = 0xf;
4974 break;
4975 default:
4976 nid = 0xe;
4977 break;
4978 }
4979
4980 num_dacs = snd_hda_get_connections(codec, nid,
4981 conn, STAC92HD83_DAC_COUNT + 1) - 1;
4982
4983 /* set port X to select the last DAC
4984 */
4985 snd_hda_codec_write_cache(codec, nid, 0,
4986 AC_VERB_SET_CONNECT_SEL, num_dacs);
4987
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004988 codec->patch_ops = stac92xx_patch_ops;
4989
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004990 codec->proc_widget_hook = stac92hd_proc_hook;
4991
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004992 return 0;
4993}
4994
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05004995static struct hda_input_mux stac92hd71bxx_dmux_nomixer = {
4996 .num_items = 3,
4997 .items = {
4998 { "Analog Inputs", 0x00 },
4999 { "Digital Mic 1", 0x02 },
5000 { "Digital Mic 2", 0x03 },
5001 }
5002};
5003
5004static struct hda_input_mux stac92hd71bxx_dmux_amixer = {
Matthew Ranostay4b33c762008-10-10 09:07:23 -04005005 .num_items = 4,
5006 .items = {
5007 { "Analog Inputs", 0x00 },
5008 { "Mixer", 0x01 },
5009 { "Digital Mic 1", 0x02 },
5010 { "Digital Mic 2", 0x03 },
5011 }
5012};
5013
Takashi Iwai330ee992009-02-20 14:33:36 +01005014/* get the pin connection (fixed, none, etc) */
5015static unsigned int stac_get_defcfg_connect(struct hda_codec *codec, int idx)
5016{
5017 struct sigmatel_spec *spec = codec->spec;
5018 unsigned int cfg;
5019
5020 cfg = snd_hda_codec_get_pincfg(codec, spec->pin_nids[idx]);
5021 return get_defcfg_connect(cfg);
5022}
5023
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005024static int stac92hd71bxx_connected_ports(struct hda_codec *codec,
5025 hda_nid_t *nids, int num_nids)
5026{
5027 struct sigmatel_spec *spec = codec->spec;
5028 int idx, num;
5029 unsigned int def_conf;
5030
5031 for (num = 0; num < num_nids; num++) {
5032 for (idx = 0; idx < spec->num_pins; idx++)
5033 if (spec->pin_nids[idx] == nids[num])
5034 break;
5035 if (idx >= spec->num_pins)
5036 break;
Takashi Iwai330ee992009-02-20 14:33:36 +01005037 def_conf = stac_get_defcfg_connect(codec, idx);
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005038 if (def_conf == AC_JACK_PORT_NONE)
5039 break;
5040 }
5041 return num;
5042}
5043
5044static int stac92hd71bxx_connected_smuxes(struct hda_codec *codec,
5045 hda_nid_t dig0pin)
5046{
5047 struct sigmatel_spec *spec = codec->spec;
5048 int idx;
5049
5050 for (idx = 0; idx < spec->num_pins; idx++)
5051 if (spec->pin_nids[idx] == dig0pin)
5052 break;
5053 if ((idx + 2) >= spec->num_pins)
5054 return 0;
5055
5056 /* dig1pin case */
Takashi Iwai330ee992009-02-20 14:33:36 +01005057 if (stac_get_defcfg_connect(codec, idx + 1) != AC_JACK_PORT_NONE)
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005058 return 2;
5059
5060 /* dig0pin + dig2pin case */
Takashi Iwai330ee992009-02-20 14:33:36 +01005061 if (stac_get_defcfg_connect(codec, idx + 2) != AC_JACK_PORT_NONE)
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005062 return 2;
Takashi Iwai330ee992009-02-20 14:33:36 +01005063 if (stac_get_defcfg_connect(codec, idx) != AC_JACK_PORT_NONE)
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005064 return 1;
5065 else
5066 return 0;
5067}
5068
Matthew Ranostaye035b842007-11-06 11:53:55 +01005069static int patch_stac92hd71bxx(struct hda_codec *codec)
5070{
5071 struct sigmatel_spec *spec;
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05005072 struct hda_verb *unmute_init = stac92hd71bxx_unmute_core_init;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005073 int err = 0;
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005074 unsigned int ndmic_nids = 0;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005075
5076 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5077 if (spec == NULL)
5078 return -ENOMEM;
5079
5080 codec->spec = spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005081 codec->patch_ops = stac92xx_patch_ops;
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05005082 spec->num_pins = STAC92HD71BXX_NUM_PINS;
5083 switch (codec->vendor_id) {
5084 case 0x111d76b6:
5085 case 0x111d76b7:
5086 spec->pin_nids = stac92hd71bxx_pin_nids_4port;
5087 break;
5088 case 0x111d7603:
5089 case 0x111d7608:
5090 /* On 92HD75Bx 0x27 isn't a pin nid */
5091 spec->num_pins--;
5092 /* fallthrough */
5093 default:
5094 spec->pin_nids = stac92hd71bxx_pin_nids_6port;
5095 }
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005096 spec->num_pwrs = ARRAY_SIZE(stac92hd71bxx_pwr_nids);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005097 spec->board_config = snd_hda_check_board_config(codec,
5098 STAC_92HD71BXX_MODELS,
5099 stac92hd71bxx_models,
5100 stac92hd71bxx_cfg_tbl);
5101again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005102 if (spec->board_config < 0)
Matthew Ranostaye035b842007-11-06 11:53:55 +01005103 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
5104 " STAC92HD71BXX, using BIOS defaults\n");
Takashi Iwai330ee992009-02-20 14:33:36 +01005105 else
5106 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01005107 stac92hd71bxx_brd_tbl[spec->board_config]);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005108
Takashi Iwai41c3b642008-11-18 10:45:15 +01005109 if (spec->board_config > STAC_92HD71BXX_REF) {
5110 /* GPIO0 = EAPD */
5111 spec->gpio_mask = 0x01;
5112 spec->gpio_dir = 0x01;
5113 spec->gpio_data = 0x01;
5114 }
5115
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005116 spec->dmic_nids = stac92hd71bxx_dmic_nids;
5117 spec->dmux_nids = stac92hd71bxx_dmux_nids;
5118
Matthew Ranostay541eee82007-12-14 12:08:04 +01005119 switch (codec->vendor_id) {
5120 case 0x111d76b6: /* 4 Port without Analog Mixer */
5121 case 0x111d76b7:
Herton Ronaldo Krzesinski23c7b522009-02-08 19:51:28 -02005122 unmute_init++;
5123 /* fallthru */
Matthew Ranostay541eee82007-12-14 12:08:04 +01005124 case 0x111d76b4: /* 6 Port without Analog Mixer */
5125 case 0x111d76b5:
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005126 memcpy(&spec->private_dimux, &stac92hd71bxx_dmux_nomixer,
5127 sizeof(stac92hd71bxx_dmux_nomixer));
Matthew Ranostay541eee82007-12-14 12:08:04 +01005128 spec->mixer = stac92hd71bxx_mixer;
5129 spec->init = stac92hd71bxx_core_init;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04005130 codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005131 spec->num_dmics = stac92hd71bxx_connected_ports(codec,
5132 stac92hd71bxx_dmic_nids,
5133 STAC92HD71BXX_NUM_DMICS);
5134 if (spec->num_dmics) {
5135 spec->num_dmuxes = ARRAY_SIZE(stac92hd71bxx_dmux_nids);
5136 spec->dinput_mux = &spec->private_dimux;
5137 ndmic_nids = ARRAY_SIZE(stac92hd71bxx_dmic_nids) - 1;
5138 }
Matthew Ranostay541eee82007-12-14 12:08:04 +01005139 break;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005140 case 0x111d7608: /* 5 Port with Analog Mixer */
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005141 memcpy(&spec->private_dimux, &stac92hd71bxx_dmux_amixer,
5142 sizeof(stac92hd71bxx_dmux_amixer));
5143 spec->private_dimux.num_items--;
Takashi Iwai8e5f2622008-11-15 19:28:54 +01005144 switch (spec->board_config) {
5145 case STAC_HP_M4:
Matthew Ranostay72474be2008-10-09 09:32:17 -04005146 /* Enable VREF power saving on GPIO1 detect */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005147 err = stac_add_event(spec, codec->afg,
5148 STAC_VREF_EVENT, 0x02);
5149 if (err < 0)
5150 return err;
Takashi Iwaic5d08bb2008-11-18 10:55:36 +01005151 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay72474be2008-10-09 09:32:17 -04005152 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x02);
5153 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04005154 AC_VERB_SET_UNSOLICITED_ENABLE,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005155 AC_USRSP_EN | err);
Matthew Ranostay72474be2008-10-09 09:32:17 -04005156 spec->gpio_mask |= 0x02;
5157 break;
5158 }
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005159 if ((codec->revision_id & 0xf) == 0 ||
Takashi Iwai8c2f7672008-12-01 11:54:35 +01005160 (codec->revision_id & 0xf) == 1)
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005161 spec->stream_delay = 40; /* 40 milliseconds */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005162
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005163 /* no output amps */
5164 spec->num_pwrs = 0;
5165 spec->mixer = stac92hd71bxx_analog_mixer;
Matthew Ranostay4b33c762008-10-10 09:07:23 -04005166 spec->dinput_mux = &spec->private_dimux;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005167
5168 /* disable VSW */
5169 spec->init = &stac92hd71bxx_analog_core_init[HD_DISABLE_PORTF];
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05005170 unmute_init++;
Takashi Iwai330ee992009-02-20 14:33:36 +01005171 snd_hda_codec_set_pincfg(codec, 0x0f, 0x40f000f0);
5172 snd_hda_codec_set_pincfg(codec, 0x19, 0x40f000f3);
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005173 stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS - 1] = 0;
5174 spec->num_dmics = stac92hd71bxx_connected_ports(codec,
5175 stac92hd71bxx_dmic_nids,
5176 STAC92HD71BXX_NUM_DMICS - 1);
5177 spec->num_dmuxes = ARRAY_SIZE(stac92hd71bxx_dmux_nids);
5178 ndmic_nids = ARRAY_SIZE(stac92hd71bxx_dmic_nids) - 2;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005179 break;
5180 case 0x111d7603: /* 6 Port with Analog Mixer */
Takashi Iwai8c2f7672008-12-01 11:54:35 +01005181 if ((codec->revision_id & 0xf) == 1)
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005182 spec->stream_delay = 40; /* 40 milliseconds */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005183
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005184 /* no output amps */
5185 spec->num_pwrs = 0;
5186 /* fallthru */
Matthew Ranostay541eee82007-12-14 12:08:04 +01005187 default:
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005188 memcpy(&spec->private_dimux, &stac92hd71bxx_dmux_amixer,
5189 sizeof(stac92hd71bxx_dmux_amixer));
Matthew Ranostay4b33c762008-10-10 09:07:23 -04005190 spec->dinput_mux = &spec->private_dimux;
Matthew Ranostay541eee82007-12-14 12:08:04 +01005191 spec->mixer = stac92hd71bxx_analog_mixer;
5192 spec->init = stac92hd71bxx_analog_core_init;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04005193 codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005194 spec->num_dmics = stac92hd71bxx_connected_ports(codec,
5195 stac92hd71bxx_dmic_nids,
5196 STAC92HD71BXX_NUM_DMICS);
5197 spec->num_dmuxes = ARRAY_SIZE(stac92hd71bxx_dmux_nids);
5198 ndmic_nids = ARRAY_SIZE(stac92hd71bxx_dmic_nids) - 1;
Matthew Ranostay541eee82007-12-14 12:08:04 +01005199 }
5200
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05005201 if (get_wcaps(codec, 0xa) & AC_WCAP_IN_AMP)
5202 snd_hda_sequence_write_cache(codec, unmute_init);
5203
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005204 spec->aloopback_ctl = stac92hd71bxx_loopback;
Matthew Ranostay4b33c762008-10-10 09:07:23 -04005205 spec->aloopback_mask = 0x50;
Matthew Ranostay541eee82007-12-14 12:08:04 +01005206 spec->aloopback_shift = 0;
5207
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005208 spec->powerdown_adcs = 1;
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005209 spec->digbeep_nid = 0x26;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005210 spec->mux_nids = stac92hd71bxx_mux_nids;
5211 spec->adc_nids = stac92hd71bxx_adc_nids;
Matthew Ranostayd9737752008-09-07 12:03:41 +02005212 spec->smux_nids = stac92hd71bxx_smux_nids;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005213 spec->pwr_nids = stac92hd71bxx_pwr_nids;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005214
5215 spec->num_muxes = ARRAY_SIZE(stac92hd71bxx_mux_nids);
5216 spec->num_adcs = ARRAY_SIZE(stac92hd71bxx_adc_nids);
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005217 spec->num_smuxes = stac92hd71bxx_connected_smuxes(codec, 0x1e);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005218
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005219 switch (spec->board_config) {
5220 case STAC_HP_M4:
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005221 /* enable internal microphone */
Takashi Iwai330ee992009-02-20 14:33:36 +01005222 snd_hda_codec_set_pincfg(codec, 0x0e, 0x01813040);
Matthew Ranostayb9aea712008-10-09 08:37:28 -04005223 stac92xx_auto_set_pinctl(codec, 0x0e,
5224 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80);
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05005225 /* fallthru */
5226 case STAC_DELL_M4_2:
5227 spec->num_dmics = 0;
5228 spec->num_smuxes = 0;
5229 spec->num_dmuxes = 0;
5230 break;
5231 case STAC_DELL_M4_1:
5232 case STAC_DELL_M4_3:
5233 spec->num_dmics = 1;
5234 spec->num_smuxes = 0;
Takashi Iwaiea18aa42009-02-27 17:36:33 +01005235 spec->num_dmuxes = 1;
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005236 break;
Herton Ronaldo Krzesinskie2ea57a2009-02-16 10:23:00 +01005237 case STAC_HP_DV5:
Takashi Iwai330ee992009-02-20 14:33:36 +01005238 snd_hda_codec_set_pincfg(codec, 0x0d, 0x90170010);
Herton Ronaldo Krzesinskie2ea57a2009-02-16 10:23:00 +01005239 stac92xx_auto_set_pinctl(codec, 0x0d, AC_PINCTL_OUT_EN);
5240 break;
Christoph Plattnerae6241f2009-03-08 23:19:05 +01005241 case STAC_HP_HDX:
5242 spec->num_dmics = 1;
5243 spec->num_dmuxes = 1;
5244 spec->num_smuxes = 1;
Takashi Iwai6fce61a2009-03-10 07:48:57 +01005245 /*
Christoph Plattner443e26d2009-03-10 00:05:56 +01005246 * For controlling MUTE LED on HP HDX16/HDX18 notebooks,
5247 * the CONFIG_SND_HDA_POWER_SAVE is needed to be set.
5248 */
5249#ifdef CONFIG_SND_HDA_POWER_SAVE
5250 /* orange/white mute led on GPIO3, orange=0, white=1 */
5251 spec->gpio_mask |= 0x08;
5252 spec->gpio_dir |= 0x08;
5253 spec->gpio_data |= 0x08; /* set to white */
5254
5255 /* register check_power_status callback. */
Takashi Iwai6fce61a2009-03-10 07:48:57 +01005256 codec->patch_ops.check_power_status =
Christoph Plattner443e26d2009-03-10 00:05:56 +01005257 stac92xx_hp_hdx_check_power_status;
5258#endif
Christoph Plattnerae6241f2009-03-08 23:19:05 +01005259 break;
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005260 };
5261
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005262 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostay4b33c762008-10-10 09:07:23 -04005263 if (spec->dinput_mux)
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005264 spec->private_dimux.num_items += spec->num_dmics - ndmic_nids;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005265
Herton Ronaldo Krzesinski29d4ab42009-02-04 11:37:27 -05005266 err = stac92xx_parse_auto_config(codec, 0x21, 0);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005267 if (!err) {
5268 if (spec->board_config < 0) {
5269 printk(KERN_WARNING "hda_codec: No auto-config is "
5270 "available, default to model=ref\n");
5271 spec->board_config = STAC_92HD71BXX_REF;
5272 goto again;
5273 }
5274 err = -EINVAL;
5275 }
5276
5277 if (err < 0) {
5278 stac92xx_free(codec);
5279 return err;
5280 }
5281
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005282 codec->proc_widget_hook = stac92hd7x_proc_hook;
5283
Matthew Ranostaye035b842007-11-06 11:53:55 +01005284 return 0;
5285};
5286
Matt2f2f4252005-04-13 14:45:30 +02005287static int patch_stac922x(struct hda_codec *codec)
5288{
5289 struct sigmatel_spec *spec;
Mattc7d4b2f2005-06-27 14:59:41 +02005290 int err;
Matt2f2f4252005-04-13 14:45:30 +02005291
Takashi Iwaie560d8d2005-09-09 14:21:46 +02005292 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Matt2f2f4252005-04-13 14:45:30 +02005293 if (spec == NULL)
5294 return -ENOMEM;
5295
5296 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005297 spec->num_pins = ARRAY_SIZE(stac922x_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005298 spec->pin_nids = stac922x_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005299 spec->board_config = snd_hda_check_board_config(codec, STAC_922X_MODELS,
5300 stac922x_models,
5301 stac922x_cfg_tbl);
Nicolas Boichat536319a2008-07-21 22:18:01 +08005302 if (spec->board_config == STAC_INTEL_MAC_AUTO) {
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +01005303 spec->gpio_mask = spec->gpio_dir = 0x03;
5304 spec->gpio_data = 0x03;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005305 /* Intel Macs have all same PCI SSID, so we need to check
5306 * codec SSID to distinguish the exact models
5307 */
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01005308 printk(KERN_INFO "hda_codec: STAC922x, Apple subsys_id=%x\n", codec->subsystem_id);
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005309 switch (codec->subsystem_id) {
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005310
5311 case 0x106b0800:
5312 spec->board_config = STAC_INTEL_MAC_V1;
Abhijit Bhopatkarc45e20e2007-04-17 11:57:16 +02005313 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005314 case 0x106b0600:
5315 case 0x106b0700:
5316 spec->board_config = STAC_INTEL_MAC_V2;
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01005317 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005318 case 0x106b0e00:
5319 case 0x106b0f00:
5320 case 0x106b1600:
5321 case 0x106b1700:
5322 case 0x106b0200:
5323 case 0x106b1e00:
5324 spec->board_config = STAC_INTEL_MAC_V3;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005325 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005326 case 0x106b1a00:
5327 case 0x00000100:
5328 spec->board_config = STAC_INTEL_MAC_V4;
Sylvain FORETf16928f2007-04-27 14:22:36 +02005329 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005330 case 0x106b0a00:
5331 case 0x106b2200:
5332 spec->board_config = STAC_INTEL_MAC_V5;
Takashi Iwai0dae0f82007-05-21 12:41:29 +02005333 break;
Nicolas Boichat536319a2008-07-21 22:18:01 +08005334 default:
5335 spec->board_config = STAC_INTEL_MAC_V3;
5336 break;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005337 }
5338 }
5339
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005340 again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005341 if (spec->board_config < 0)
Richard Fish11b44bb2006-08-23 18:31:34 +02005342 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC922x, "
5343 "using BIOS defaults\n");
Takashi Iwai330ee992009-02-20 14:33:36 +01005344 else
5345 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01005346 stac922x_brd_tbl[spec->board_config]);
Matt2f2f4252005-04-13 14:45:30 +02005347
Matt2f2f4252005-04-13 14:45:30 +02005348 spec->adc_nids = stac922x_adc_nids;
5349 spec->mux_nids = stac922x_mux_nids;
Takashi Iwai25494132007-03-12 12:36:16 +01005350 spec->num_muxes = ARRAY_SIZE(stac922x_mux_nids);
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005351 spec->num_adcs = ARRAY_SIZE(stac922x_adc_nids);
Matt Porter8b657272006-10-26 17:12:59 +02005352 spec->num_dmics = 0;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005353 spec->num_pwrs = 0;
Mattc7d4b2f2005-06-27 14:59:41 +02005354
5355 spec->init = stac922x_core_init;
Matt2f2f4252005-04-13 14:45:30 +02005356 spec->mixer = stac922x_mixer;
Mattc7d4b2f2005-06-27 14:59:41 +02005357
5358 spec->multiout.dac_nids = spec->dac_nids;
Takashi Iwai19039bd2006-06-28 15:52:16 +02005359
Matt Porter3cc08dc2006-01-23 15:27:49 +01005360 err = stac92xx_parse_auto_config(codec, 0x08, 0x09);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005361 if (!err) {
5362 if (spec->board_config < 0) {
5363 printk(KERN_WARNING "hda_codec: No auto-config is "
5364 "available, default to model=ref\n");
5365 spec->board_config = STAC_D945_REF;
5366 goto again;
5367 }
5368 err = -EINVAL;
5369 }
Matt Porter3cc08dc2006-01-23 15:27:49 +01005370 if (err < 0) {
5371 stac92xx_free(codec);
5372 return err;
5373 }
5374
5375 codec->patch_ops = stac92xx_patch_ops;
5376
Takashi Iwai807a46362007-05-29 19:01:37 +02005377 /* Fix Mux capture level; max to 2 */
5378 snd_hda_override_amp_caps(codec, 0x12, HDA_OUTPUT,
5379 (0 << AC_AMPCAP_OFFSET_SHIFT) |
5380 (2 << AC_AMPCAP_NUM_STEPS_SHIFT) |
5381 (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5382 (0 << AC_AMPCAP_MUTE_SHIFT));
5383
Matt Porter3cc08dc2006-01-23 15:27:49 +01005384 return 0;
5385}
5386
5387static int patch_stac927x(struct hda_codec *codec)
5388{
5389 struct sigmatel_spec *spec;
5390 int err;
5391
5392 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5393 if (spec == NULL)
5394 return -ENOMEM;
5395
5396 codec->spec = spec;
Matthew Ranostay45c1d852009-02-04 17:49:41 -05005397 codec->slave_dig_outs = stac927x_slave_dig_outs;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005398 spec->num_pins = ARRAY_SIZE(stac927x_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005399 spec->pin_nids = stac927x_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005400 spec->board_config = snd_hda_check_board_config(codec, STAC_927X_MODELS,
5401 stac927x_models,
5402 stac927x_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005403 again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005404 if (spec->board_config < 0)
Herton Ronaldo Krzesinskic98041f2009-02-11 20:33:15 -02005405 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
5406 "STAC927x, using BIOS defaults\n");
Takashi Iwai330ee992009-02-20 14:33:36 +01005407 else
5408 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01005409 stac927x_brd_tbl[spec->board_config]);
Matt Porter3cc08dc2006-01-23 15:27:49 +01005410
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005411 spec->digbeep_nid = 0x23;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005412 spec->adc_nids = stac927x_adc_nids;
5413 spec->num_adcs = ARRAY_SIZE(stac927x_adc_nids);
5414 spec->mux_nids = stac927x_mux_nids;
5415 spec->num_muxes = ARRAY_SIZE(stac927x_mux_nids);
Matthew Ranostayd9737752008-09-07 12:03:41 +02005416 spec->smux_nids = stac927x_smux_nids;
5417 spec->num_smuxes = ARRAY_SIZE(stac927x_smux_nids);
Matthew Ranostay65973632008-09-16 10:39:37 -04005418 spec->spdif_labels = stac927x_spdif_labels;
Matthew Ranostayb76c8502008-02-06 14:49:44 +01005419 spec->dac_list = stac927x_dac_nids;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005420 spec->multiout.dac_nids = spec->dac_nids;
5421
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005422 switch (spec->board_config) {
Tobin Davis93ed1502006-09-01 21:03:12 +02005423 case STAC_D965_3ST:
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005424 case STAC_D965_5ST:
5425 /* GPIO0 High = Enable EAPD */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005426 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x01;
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +01005427 spec->gpio_data = 0x01;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005428 spec->num_dmics = 0;
5429
Tobin Davis93ed1502006-09-01 21:03:12 +02005430 spec->init = d965_core_init;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005431 spec->mixer = stac927x_mixer;
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005432 break;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005433 case STAC_DELL_BIOS:
Matthew Ranostay780c8be2008-04-14 13:32:27 +02005434 switch (codec->subsystem_id) {
5435 case 0x10280209:
5436 case 0x1028022e:
5437 /* correct the device field to SPDIF out */
Takashi Iwai330ee992009-02-20 14:33:36 +01005438 snd_hda_codec_set_pincfg(codec, 0x21, 0x01442070);
Matthew Ranostay780c8be2008-04-14 13:32:27 +02005439 break;
5440 };
Matthew Ranostay03d7ca12008-02-21 07:51:46 +01005441 /* configure the analog microphone on some laptops */
Takashi Iwai330ee992009-02-20 14:33:36 +01005442 snd_hda_codec_set_pincfg(codec, 0x0c, 0x90a79130);
Matthew Ranostay2f32d902008-01-10 13:06:26 +01005443 /* correct the front output jack as a hp out */
Takashi Iwai330ee992009-02-20 14:33:36 +01005444 snd_hda_codec_set_pincfg(codec, 0x0f, 0x0227011f);
Matthew Ranostayc481fca2008-01-07 12:18:28 +01005445 /* correct the front input jack as a mic */
Takashi Iwai330ee992009-02-20 14:33:36 +01005446 snd_hda_codec_set_pincfg(codec, 0x0e, 0x02a79130);
Matthew Ranostayc481fca2008-01-07 12:18:28 +01005447 /* fallthru */
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005448 case STAC_DELL_3ST:
5449 /* GPIO2 High = Enable EAPD */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005450 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x04;
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +01005451 spec->gpio_data = 0x04;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005452 spec->dmic_nids = stac927x_dmic_nids;
5453 spec->num_dmics = STAC927X_NUM_DMICS;
5454
Tobin Davis93ed1502006-09-01 21:03:12 +02005455 spec->init = d965_core_init;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005456 spec->mixer = stac927x_mixer;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005457 spec->dmux_nids = stac927x_dmux_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +01005458 spec->num_dmuxes = ARRAY_SIZE(stac927x_dmux_nids);
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005459 break;
5460 default:
Matthew Ranostayb2c4f4d2008-09-26 10:06:40 -04005461 if (spec->board_config > STAC_D965_REF) {
5462 /* GPIO0 High = Enable EAPD */
5463 spec->eapd_mask = spec->gpio_mask = 0x01;
5464 spec->gpio_dir = spec->gpio_data = 0x01;
5465 }
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005466 spec->num_dmics = 0;
5467
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005468 spec->init = stac927x_core_init;
5469 spec->mixer = stac927x_mixer;
5470 }
Matt Porter3cc08dc2006-01-23 15:27:49 +01005471
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005472 spec->num_pwrs = 0;
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005473 spec->aloopback_ctl = stac927x_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005474 spec->aloopback_mask = 0x40;
5475 spec->aloopback_shift = 0;
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05005476 spec->eapd_switch = 1;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005477
Matt Porter3cc08dc2006-01-23 15:27:49 +01005478 err = stac92xx_parse_auto_config(codec, 0x1e, 0x20);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005479 if (!err) {
5480 if (spec->board_config < 0) {
5481 printk(KERN_WARNING "hda_codec: No auto-config is "
5482 "available, default to model=ref\n");
5483 spec->board_config = STAC_D965_REF;
5484 goto again;
5485 }
5486 err = -EINVAL;
5487 }
Mattc7d4b2f2005-06-27 14:59:41 +02005488 if (err < 0) {
5489 stac92xx_free(codec);
5490 return err;
5491 }
Matt2f2f4252005-04-13 14:45:30 +02005492
5493 codec->patch_ops = stac92xx_patch_ops;
5494
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005495 codec->proc_widget_hook = stac927x_proc_hook;
5496
Takashi Iwai52987652008-01-16 16:09:47 +01005497 /*
5498 * !!FIXME!!
5499 * The STAC927x seem to require fairly long delays for certain
5500 * command sequences. With too short delays (even if the answer
5501 * is set to RIRB properly), it results in the silence output
5502 * on some hardwares like Dell.
5503 *
5504 * The below flag enables the longer delay (see get_response
5505 * in hda_intel.c).
5506 */
5507 codec->bus->needs_damn_long_delay = 1;
5508
Takashi Iwaie28d8322008-12-17 13:48:29 +01005509 /* no jack detecion for ref-no-jd model */
5510 if (spec->board_config == STAC_D965_REF_NO_JD)
5511 spec->hp_detect = 0;
5512
Matt2f2f4252005-04-13 14:45:30 +02005513 return 0;
5514}
5515
Matt Porterf3302a52006-07-31 12:49:34 +02005516static int patch_stac9205(struct hda_codec *codec)
5517{
5518 struct sigmatel_spec *spec;
Takashi Iwai82599802007-07-31 15:56:24 +02005519 int err;
Matt Porterf3302a52006-07-31 12:49:34 +02005520
5521 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5522 if (spec == NULL)
5523 return -ENOMEM;
5524
5525 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005526 spec->num_pins = ARRAY_SIZE(stac9205_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005527 spec->pin_nids = stac9205_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005528 spec->board_config = snd_hda_check_board_config(codec, STAC_9205_MODELS,
5529 stac9205_models,
5530 stac9205_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005531 again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005532 if (spec->board_config < 0)
Richard Fish11b44bb2006-08-23 18:31:34 +02005533 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9205, using BIOS defaults\n");
Takashi Iwai330ee992009-02-20 14:33:36 +01005534 else
5535 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01005536 stac9205_brd_tbl[spec->board_config]);
Matt Porterf3302a52006-07-31 12:49:34 +02005537
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005538 spec->digbeep_nid = 0x23;
Matt Porterf3302a52006-07-31 12:49:34 +02005539 spec->adc_nids = stac9205_adc_nids;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005540 spec->num_adcs = ARRAY_SIZE(stac9205_adc_nids);
Matt Porterf3302a52006-07-31 12:49:34 +02005541 spec->mux_nids = stac9205_mux_nids;
Takashi Iwai25494132007-03-12 12:36:16 +01005542 spec->num_muxes = ARRAY_SIZE(stac9205_mux_nids);
Matthew Ranostayd9737752008-09-07 12:03:41 +02005543 spec->smux_nids = stac9205_smux_nids;
5544 spec->num_smuxes = ARRAY_SIZE(stac9205_smux_nids);
Matt Porter8b657272006-10-26 17:12:59 +02005545 spec->dmic_nids = stac9205_dmic_nids;
Takashi Iwaif6e98522007-10-16 14:27:04 +02005546 spec->num_dmics = STAC9205_NUM_DMICS;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005547 spec->dmux_nids = stac9205_dmux_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +01005548 spec->num_dmuxes = ARRAY_SIZE(stac9205_dmux_nids);
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005549 spec->num_pwrs = 0;
Matt Porterf3302a52006-07-31 12:49:34 +02005550
5551 spec->init = stac9205_core_init;
5552 spec->mixer = stac9205_mixer;
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005553 spec->aloopback_ctl = stac9205_loopback;
Matt Porterf3302a52006-07-31 12:49:34 +02005554
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005555 spec->aloopback_mask = 0x40;
5556 spec->aloopback_shift = 0;
Takashi Iwaid9a42682009-01-22 17:40:18 +01005557 /* Turn on/off EAPD per HP plugging */
5558 if (spec->board_config != STAC_9205_EAPD)
5559 spec->eapd_switch = 1;
Matt Porterf3302a52006-07-31 12:49:34 +02005560 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostay87d48362007-07-17 11:52:24 +02005561
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005562 switch (spec->board_config){
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005563 case STAC_9205_DELL_M43:
Matthew Ranostay87d48362007-07-17 11:52:24 +02005564 /* Enable SPDIF in/out */
Takashi Iwai330ee992009-02-20 14:33:36 +01005565 snd_hda_codec_set_pincfg(codec, 0x1f, 0x01441030);
5566 snd_hda_codec_set_pincfg(codec, 0x20, 0x1c410030);
Matt Porter33382402006-12-18 13:17:28 +01005567
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +01005568 /* Enable unsol response for GPIO4/Dock HP connection */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005569 err = stac_add_event(spec, codec->afg, STAC_VREF_EVENT, 0x01);
5570 if (err < 0)
5571 return err;
Takashi Iwaic5d08bb2008-11-18 10:55:36 +01005572 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +01005573 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10);
5574 snd_hda_codec_write_cache(codec, codec->afg, 0,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005575 AC_VERB_SET_UNSOLICITED_ENABLE,
5576 AC_USRSP_EN | err);
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +01005577
5578 spec->gpio_dir = 0x0b;
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005579 spec->eapd_mask = 0x01;
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +01005580 spec->gpio_mask = 0x1b;
5581 spec->gpio_mute = 0x10;
Matthew Ranostaye2e7d622008-01-24 15:32:15 +01005582 /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute,
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +01005583 * GPIO3 Low = DRM
Matthew Ranostay87d48362007-07-17 11:52:24 +02005584 */
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +01005585 spec->gpio_data = 0x01;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005586 break;
Matthew Ranostayb2c4f4d2008-09-26 10:06:40 -04005587 case STAC_9205_REF:
5588 /* SPDIF-In enabled */
5589 break;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005590 default:
5591 /* GPIO0 High = EAPD */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005592 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
Matthew Ranostay4fe5195c2008-01-29 15:28:44 +01005593 spec->gpio_data = 0x01;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005594 break;
5595 }
Matthew Ranostay87d48362007-07-17 11:52:24 +02005596
Matt Porterf3302a52006-07-31 12:49:34 +02005597 err = stac92xx_parse_auto_config(codec, 0x1f, 0x20);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005598 if (!err) {
5599 if (spec->board_config < 0) {
5600 printk(KERN_WARNING "hda_codec: No auto-config is "
5601 "available, default to model=ref\n");
5602 spec->board_config = STAC_9205_REF;
5603 goto again;
5604 }
5605 err = -EINVAL;
5606 }
Matt Porterf3302a52006-07-31 12:49:34 +02005607 if (err < 0) {
5608 stac92xx_free(codec);
5609 return err;
5610 }
5611
5612 codec->patch_ops = stac92xx_patch_ops;
5613
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005614 codec->proc_widget_hook = stac9205_proc_hook;
5615
Matt Porterf3302a52006-07-31 12:49:34 +02005616 return 0;
5617}
5618
Matt2f2f4252005-04-13 14:45:30 +02005619/*
Guillaume Munch6d859062006-08-22 17:15:47 +02005620 * STAC9872 hack
Takashi Iwaidb064e52006-03-16 16:04:58 +01005621 */
5622
Takashi Iwai1e137f92009-01-21 07:41:22 +01005623static struct hda_verb stac9872_core_init[] = {
Takashi Iwai1624cb92007-07-05 13:10:51 +02005624 {0x15, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mic-sel: 0a,0d,14,02 */
Takashi Iwaidb064e52006-03-16 16:04:58 +01005625 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */
5626 {}
5627};
5628
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005629static struct snd_kcontrol_new stac9872_mixer[] = {
5630 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_INPUT),
5631 HDA_CODEC_MUTE("Capture Switch", 0x09, 0, HDA_INPUT),
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005632 { } /* end */
5633};
5634
5635static hda_nid_t stac9872_pin_nids[] = {
5636 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
5637 0x11, 0x13, 0x14,
5638};
5639
5640static hda_nid_t stac9872_adc_nids[] = {
5641 0x8 /*,0x6*/
5642};
5643
5644static hda_nid_t stac9872_mux_nids[] = {
5645 0x15
5646};
5647
Takashi Iwai307282c2009-03-12 18:17:58 +01005648static unsigned int stac9872_vaio_pin_configs[9] = {
5649 0x03211020, 0x411111f0, 0x411111f0, 0x03a15030,
5650 0x411111f0, 0x90170110, 0x411111f0, 0x411111f0,
5651 0x90a7013e
5652};
5653
5654static const char *stac9872_models[STAC_9872_MODELS] = {
5655 [STAC_9872_AUTO] = "auto",
5656 [STAC_9872_VAIO] = "vaio",
5657};
5658
5659static unsigned int *stac9872_brd_tbl[STAC_9872_MODELS] = {
5660 [STAC_9872_VAIO] = stac9872_vaio_pin_configs,
5661};
5662
5663static struct snd_pci_quirk stac9872_cfg_tbl[] = {
5664 {} /* terminator */
5665};
5666
Guillaume Munch6d859062006-08-22 17:15:47 +02005667static int patch_stac9872(struct hda_codec *codec)
Takashi Iwaidb064e52006-03-16 16:04:58 +01005668{
5669 struct sigmatel_spec *spec;
Takashi Iwai1e137f92009-01-21 07:41:22 +01005670 int err;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005671
Takashi Iwaidb064e52006-03-16 16:04:58 +01005672 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5673 if (spec == NULL)
5674 return -ENOMEM;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005675 codec->spec = spec;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005676
5677 spec->board_config = snd_hda_check_board_config(codec, STAC_9872_MODELS,
5678 stac9872_models,
5679 stac9872_cfg_tbl);
Takashi Iwai307282c2009-03-12 18:17:58 +01005680 if (spec->board_config < 0)
5681 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9872, "
5682 "using BIOS defaults\n");
5683 else
5684 stac92xx_set_config_regs(codec,
5685 stac9872_brd_tbl[spec->board_config]);
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005686
Takashi Iwai1e137f92009-01-21 07:41:22 +01005687 spec->num_pins = ARRAY_SIZE(stac9872_pin_nids);
5688 spec->pin_nids = stac9872_pin_nids;
5689 spec->multiout.dac_nids = spec->dac_nids;
5690 spec->num_adcs = ARRAY_SIZE(stac9872_adc_nids);
5691 spec->adc_nids = stac9872_adc_nids;
5692 spec->num_muxes = ARRAY_SIZE(stac9872_mux_nids);
5693 spec->mux_nids = stac9872_mux_nids;
5694 spec->mixer = stac9872_mixer;
5695 spec->init = stac9872_core_init;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005696
Takashi Iwai1e137f92009-01-21 07:41:22 +01005697 err = stac92xx_parse_auto_config(codec, 0x10, 0x12);
5698 if (err < 0) {
5699 stac92xx_free(codec);
5700 return -EINVAL;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005701 }
Takashi Iwai1e137f92009-01-21 07:41:22 +01005702 spec->input_mux = &spec->private_imux;
5703 codec->patch_ops = stac92xx_patch_ops;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005704 return 0;
5705}
5706
5707
5708/*
Matt2f2f4252005-04-13 14:45:30 +02005709 * patch entries
5710 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005711static struct hda_codec_preset snd_hda_preset_sigmatel[] = {
Matt2f2f4252005-04-13 14:45:30 +02005712 { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 },
5713 { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x },
5714 { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x },
5715 { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x },
5716 { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x },
5717 { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x },
5718 { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x },
Matt Porter22a27c72006-07-06 18:49:10 +02005719 { .id = 0x83847618, .name = "STAC9227", .patch = patch_stac927x },
5720 { .id = 0x83847619, .name = "STAC9227", .patch = patch_stac927x },
5721 { .id = 0x83847616, .name = "STAC9228", .patch = patch_stac927x },
5722 { .id = 0x83847617, .name = "STAC9228", .patch = patch_stac927x },
5723 { .id = 0x83847614, .name = "STAC9229", .patch = patch_stac927x },
5724 { .id = 0x83847615, .name = "STAC9229", .patch = patch_stac927x },
Matt Porter3cc08dc2006-01-23 15:27:49 +01005725 { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x },
5726 { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x },
5727 { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x },
5728 { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x },
5729 { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x },
5730 { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x },
5731 { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x },
5732 { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x },
5733 { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x },
5734 { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x },
Tobin Davis8e21c342007-01-08 11:04:17 +01005735 { .id = 0x83847632, .name = "STAC9202", .patch = patch_stac925x },
5736 { .id = 0x83847633, .name = "STAC9202D", .patch = patch_stac925x },
5737 { .id = 0x83847634, .name = "STAC9250", .patch = patch_stac925x },
5738 { .id = 0x83847635, .name = "STAC9250D", .patch = patch_stac925x },
5739 { .id = 0x83847636, .name = "STAC9251", .patch = patch_stac925x },
5740 { .id = 0x83847637, .name = "STAC9250D", .patch = patch_stac925x },
Takashi Iwai7bd3c0f2008-05-02 12:28:02 +02005741 { .id = 0x83847645, .name = "92HD206X", .patch = patch_stac927x },
5742 { .id = 0x83847646, .name = "92HD206D", .patch = patch_stac927x },
Guillaume Munch6d859062006-08-22 17:15:47 +02005743 /* The following does not take into account .id=0x83847661 when subsys =
5744 * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are
5745 * currently not fully supported.
5746 */
5747 { .id = 0x83847661, .name = "CXD9872RD/K", .patch = patch_stac9872 },
5748 { .id = 0x83847662, .name = "STAC9872AK", .patch = patch_stac9872 },
5749 { .id = 0x83847664, .name = "CXD9872AKD", .patch = patch_stac9872 },
Matt Porterf3302a52006-07-31 12:49:34 +02005750 { .id = 0x838476a0, .name = "STAC9205", .patch = patch_stac9205 },
5751 { .id = 0x838476a1, .name = "STAC9205D", .patch = patch_stac9205 },
5752 { .id = 0x838476a2, .name = "STAC9204", .patch = patch_stac9205 },
5753 { .id = 0x838476a3, .name = "STAC9204D", .patch = patch_stac9205 },
5754 { .id = 0x838476a4, .name = "STAC9255", .patch = patch_stac9205 },
5755 { .id = 0x838476a5, .name = "STAC9255D", .patch = patch_stac9205 },
5756 { .id = 0x838476a6, .name = "STAC9254", .patch = patch_stac9205 },
5757 { .id = 0x838476a7, .name = "STAC9254D", .patch = patch_stac9205 },
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005758 { .id = 0x111d7603, .name = "92HD75B3X5", .patch = patch_stac92hd71bxx},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005759 { .id = 0x111d7604, .name = "92HD83C1X5", .patch = patch_stac92hd83xxx},
5760 { .id = 0x111d7605, .name = "92HD81B1X5", .patch = patch_stac92hd83xxx},
Matthew Ranostayff2e7332009-04-01 14:49:48 -04005761 { .id = 0x111d76d5, .name = "92HD81B1C5", .patch = patch_stac92hd83xxx},
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005762 { .id = 0x111d7608, .name = "92HD75B2X5", .patch = patch_stac92hd71bxx},
Matthew Ranostay541eee82007-12-14 12:08:04 +01005763 { .id = 0x111d7674, .name = "92HD73D1X5", .patch = patch_stac92hd73xx },
5764 { .id = 0x111d7675, .name = "92HD73C1X5", .patch = patch_stac92hd73xx },
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005765 { .id = 0x111d7676, .name = "92HD73E1X5", .patch = patch_stac92hd73xx },
Matthew Ranostay541eee82007-12-14 12:08:04 +01005766 { .id = 0x111d76b0, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
5767 { .id = 0x111d76b1, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
5768 { .id = 0x111d76b2, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
5769 { .id = 0x111d76b3, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
5770 { .id = 0x111d76b4, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
5771 { .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
5772 { .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
5773 { .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
Matt2f2f4252005-04-13 14:45:30 +02005774 {} /* terminator */
5775};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005776
5777MODULE_ALIAS("snd-hda-codec-id:8384*");
5778MODULE_ALIAS("snd-hda-codec-id:111d*");
5779
5780MODULE_LICENSE("GPL");
5781MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec");
5782
5783static struct hda_codec_preset_list sigmatel_list = {
5784 .preset = snd_hda_preset_sigmatel,
5785 .owner = THIS_MODULE,
5786};
5787
5788static int __init patch_sigmatel_init(void)
5789{
5790 return snd_hda_add_codec_preset(&sigmatel_list);
5791}
5792
5793static void __exit patch_sigmatel_exit(void)
5794{
5795 snd_hda_delete_codec_preset(&sigmatel_list);
5796}
5797
5798module_init(patch_sigmatel_init)
5799module_exit(patch_sigmatel_exit)