blob: 3f85731055c0524c5a0c728a25776836ef624395 [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 {
46 STAC_REF,
Tobin Davisbf277782008-02-03 20:31:47 +010047 STAC_9200_OQO,
Takashi Iwaidfe495d2007-08-23 19:04:28 +020048 STAC_9200_DELL_D21,
49 STAC_9200_DELL_D22,
50 STAC_9200_DELL_D23,
51 STAC_9200_DELL_M21,
52 STAC_9200_DELL_M22,
53 STAC_9200_DELL_M23,
54 STAC_9200_DELL_M24,
55 STAC_9200_DELL_M25,
56 STAC_9200_DELL_M26,
57 STAC_9200_DELL_M27,
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +020058 STAC_9200_M4,
59 STAC_9200_M4_2,
Takashi Iwai117f2572008-03-18 09:53:23 +010060 STAC_9200_PANASONIC,
Takashi Iwaif5fcc132006-11-24 17:07:44 +010061 STAC_9200_MODELS
62};
63
64enum {
65 STAC_9205_REF,
Takashi Iwaidfe495d2007-08-23 19:04:28 +020066 STAC_9205_DELL_M42,
Tobin Davisae0a8ed2007-08-13 15:50:29 +020067 STAC_9205_DELL_M43,
68 STAC_9205_DELL_M44,
Takashi Iwaif5fcc132006-11-24 17:07:44 +010069 STAC_9205_MODELS
70};
71
72enum {
Takashi Iwai9e43f0d2008-12-17 14:51:01 +010073 STAC_92HD73XX_NO_JD, /* no jack-detection */
Matthew Ranostaye1f0d662007-12-13 17:47:21 +010074 STAC_92HD73XX_REF,
Takashi Iwai661cd8f2008-11-25 15:18:29 +010075 STAC_DELL_M6_AMIC,
76 STAC_DELL_M6_DMIC,
77 STAC_DELL_M6_BOTH,
Matthew Ranostay6b3ab212008-11-03 08:12:43 -050078 STAC_DELL_EQ,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +010079 STAC_92HD73XX_MODELS
80};
81
82enum {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +020083 STAC_92HD83XXX_REF,
84 STAC_92HD83XXX_MODELS
85};
86
87enum {
Matthew Ranostaye035b842007-11-06 11:53:55 +010088 STAC_92HD71BXX_REF,
Matthew Ranostaya7662642008-02-21 07:51:14 +010089 STAC_DELL_M4_1,
90 STAC_DELL_M4_2,
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -050091 STAC_DELL_M4_3,
Matthew Ranostay6a14f582008-09-12 12:02:30 -040092 STAC_HP_M4,
Takashi Iwai1b0652e2009-01-14 08:27:35 +010093 STAC_HP_DV5,
Matthew Ranostaye035b842007-11-06 11:53:55 +010094 STAC_92HD71BXX_MODELS
95};
96
97enum {
Tobin Davis8e21c342007-01-08 11:04:17 +010098 STAC_925x_REF,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +020099 STAC_M1,
100 STAC_M1_2,
101 STAC_M2,
Tobin Davis8e21c342007-01-08 11:04:17 +0100102 STAC_M2_2,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +0200103 STAC_M3,
104 STAC_M5,
105 STAC_M6,
Tobin Davis8e21c342007-01-08 11:04:17 +0100106 STAC_925x_MODELS
107};
108
109enum {
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100110 STAC_D945_REF,
111 STAC_D945GTP3,
112 STAC_D945GTP5,
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +0200113 STAC_INTEL_MAC_V1,
114 STAC_INTEL_MAC_V2,
115 STAC_INTEL_MAC_V3,
116 STAC_INTEL_MAC_V4,
117 STAC_INTEL_MAC_V5,
Nicolas Boichat536319a2008-07-21 22:18:01 +0800118 STAC_INTEL_MAC_AUTO, /* This model is selected if no module parameter
119 * is given, one of the above models will be
120 * chosen according to the subsystem id. */
Takashi Iwaidfe495d2007-08-23 19:04:28 +0200121 /* for backward compatibility */
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100122 STAC_MACMINI,
Takashi Iwai3fc24d82007-02-16 13:27:18 +0100123 STAC_MACBOOK,
Nicolas Boichat6f0778d2007-03-15 12:38:15 +0100124 STAC_MACBOOK_PRO_V1,
125 STAC_MACBOOK_PRO_V2,
Sylvain FORETf16928f2007-04-27 14:22:36 +0200126 STAC_IMAC_INTEL,
Takashi Iwai0dae0f82007-05-21 12:41:29 +0200127 STAC_IMAC_INTEL_20,
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -0300128 STAC_ECS_202,
Takashi Iwaidfe495d2007-08-23 19:04:28 +0200129 STAC_922X_DELL_D81,
130 STAC_922X_DELL_D82,
131 STAC_922X_DELL_M81,
132 STAC_922X_DELL_M82,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100133 STAC_922X_MODELS
134};
135
136enum {
Takashi Iwaie28d8322008-12-17 13:48:29 +0100137 STAC_D965_REF_NO_JD, /* no jack-detection */
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100138 STAC_D965_REF,
139 STAC_D965_3ST,
140 STAC_D965_5ST,
Tobin Davis4ff076e2007-08-07 11:48:12 +0200141 STAC_DELL_3ST,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +0100142 STAC_DELL_BIOS,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100143 STAC_927X_MODELS
144};
Matt Porter403d1942005-11-29 15:00:51 +0100145
Matthew Ranostay74aeaab2008-10-25 01:06:04 -0400146struct sigmatel_event {
147 hda_nid_t nid;
Takashi Iwaic6e4c662008-11-25 11:58:19 +0100148 unsigned char type;
149 unsigned char tag;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -0400150 int data;
151};
152
153struct sigmatel_jack {
154 hda_nid_t nid;
155 int type;
156 struct snd_jack *jack;
157};
158
Matt2f2f4252005-04-13 14:45:30 +0200159struct sigmatel_spec {
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100160 struct snd_kcontrol_new *mixers[4];
Mattc7d4b2f2005-06-27 14:59:41 +0200161 unsigned int num_mixers;
162
Matt Porter403d1942005-11-29 15:00:51 +0100163 int board_config;
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -0500164 unsigned int eapd_switch: 1;
Mattc7d4b2f2005-06-27 14:59:41 +0200165 unsigned int surr_switch: 1;
Matt Porter3cc08dc2006-01-23 15:27:49 +0100166 unsigned int alt_switch: 1;
Takashi Iwai82bc9552006-03-21 11:24:42 +0100167 unsigned int hp_detect: 1;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400168 unsigned int spdif_mute: 1;
Takashi Iwai7c7767e2009-01-20 15:28:38 +0100169 unsigned int check_volume_offset:1;
Mattc7d4b2f2005-06-27 14:59:41 +0200170
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100171 /* gpio lines */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +0200172 unsigned int eapd_mask;
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100173 unsigned int gpio_mask;
174 unsigned int gpio_dir;
175 unsigned int gpio_data;
176 unsigned int gpio_mute;
177
Matthew Ranostay8daaaa92008-08-15 07:45:52 +0200178 /* stream */
179 unsigned int stream_delay;
180
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100181 /* analog loopback */
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100182 unsigned char aloopback_mask;
183 unsigned char aloopback_shift;
Takashi Iwai82599802007-07-31 15:56:24 +0200184
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100185 /* power management */
186 unsigned int num_pwrs;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200187 unsigned int *pwr_mapping;
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100188 hda_nid_t *pwr_nids;
Matthew Ranostayb76c8502008-02-06 14:49:44 +0100189 hda_nid_t *dac_list;
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100190
Matthew Ranostay74aeaab2008-10-25 01:06:04 -0400191 /* jack detection */
192 struct snd_array jacks;
193
194 /* events */
195 struct snd_array events;
196
Matt2f2f4252005-04-13 14:45:30 +0200197 /* playback */
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100198 struct hda_input_mux *mono_mux;
Matthew Ranostay89385032008-09-11 09:49:39 -0400199 struct hda_input_mux *amp_mux;
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100200 unsigned int cur_mmux;
Matt2f2f4252005-04-13 14:45:30 +0200201 struct hda_multi_out multiout;
Matt Porter3cc08dc2006-01-23 15:27:49 +0100202 hda_nid_t dac_nids[5];
Takashi Iwaic21ca4a2008-12-19 09:26:08 +0100203 hda_nid_t hp_dacs[5];
204 hda_nid_t speaker_dacs[5];
Matt2f2f4252005-04-13 14:45:30 +0200205
Takashi Iwai7c7767e2009-01-20 15:28:38 +0100206 int volume_offset;
207
Matt2f2f4252005-04-13 14:45:30 +0200208 /* capture */
209 hda_nid_t *adc_nids;
Matt2f2f4252005-04-13 14:45:30 +0200210 unsigned int num_adcs;
Mattdabbed62005-06-14 10:19:34 +0200211 hda_nid_t *mux_nids;
212 unsigned int num_muxes;
Matt Porter8b657272006-10-26 17:12:59 +0200213 hda_nid_t *dmic_nids;
214 unsigned int num_dmics;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100215 hda_nid_t *dmux_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +0100216 unsigned int num_dmuxes;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200217 hda_nid_t *smux_nids;
218 unsigned int num_smuxes;
Matthew Ranostay65973632008-09-16 10:39:37 -0400219 const char **spdif_labels;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200220
Mattdabbed62005-06-14 10:19:34 +0200221 hda_nid_t dig_in_nid;
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100222 hda_nid_t mono_nid;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200223 hda_nid_t anabeep_nid;
224 hda_nid_t digbeep_nid;
Matt2f2f4252005-04-13 14:45:30 +0200225
Matt2f2f4252005-04-13 14:45:30 +0200226 /* pin widgets */
227 hda_nid_t *pin_nids;
228 unsigned int num_pins;
Matt2f2f4252005-04-13 14:45:30 +0200229 unsigned int *pin_configs;
Matt2f2f4252005-04-13 14:45:30 +0200230
231 /* codec specific stuff */
232 struct hda_verb *init;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100233 struct snd_kcontrol_new *mixer;
Matt2f2f4252005-04-13 14:45:30 +0200234
235 /* capture source */
Matt Porter8b657272006-10-26 17:12:59 +0200236 struct hda_input_mux *dinput_mux;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100237 unsigned int cur_dmux[2];
Mattc7d4b2f2005-06-27 14:59:41 +0200238 struct hda_input_mux *input_mux;
Matt Porter3cc08dc2006-01-23 15:27:49 +0100239 unsigned int cur_mux[3];
Matthew Ranostayd9737752008-09-07 12:03:41 +0200240 struct hda_input_mux *sinput_mux;
241 unsigned int cur_smux[2];
Matthew Ranostay2a9c7812008-09-13 16:45:39 -0400242 unsigned int cur_amux;
243 hda_nid_t *amp_nids;
244 unsigned int num_amps;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +0200245 unsigned int powerdown_adcs;
Matt2f2f4252005-04-13 14:45:30 +0200246
Matt Porter403d1942005-11-29 15:00:51 +0100247 /* i/o switches */
248 unsigned int io_switch[2];
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +0200249 unsigned int clfe_swap;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +0100250 hda_nid_t line_switch; /* shared line-in for input and output */
251 hda_nid_t mic_switch; /* shared mic-in for input and output */
252 hda_nid_t hp_switch; /* NID of HP as line-out */
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200253 unsigned int aloopback;
Matt2f2f4252005-04-13 14:45:30 +0200254
Mattc7d4b2f2005-06-27 14:59:41 +0200255 struct hda_pcm pcm_rec[2]; /* PCM information */
256
257 /* dynamic controls and input_mux */
258 struct auto_pin_cfg autocfg;
Takashi Iwai603c4012008-07-30 15:01:44 +0200259 struct snd_array kctls;
Matt Porter8b657272006-10-26 17:12:59 +0200260 struct hda_input_mux private_dimux;
Mattc7d4b2f2005-06-27 14:59:41 +0200261 struct hda_input_mux private_imux;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200262 struct hda_input_mux private_smux;
Matthew Ranostay89385032008-09-11 09:49:39 -0400263 struct hda_input_mux private_amp_mux;
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100264 struct hda_input_mux private_mono_mux;
Matt2f2f4252005-04-13 14:45:30 +0200265};
266
267static hda_nid_t stac9200_adc_nids[1] = {
268 0x03,
269};
270
271static hda_nid_t stac9200_mux_nids[1] = {
272 0x0c,
273};
274
275static hda_nid_t stac9200_dac_nids[1] = {
276 0x02,
277};
278
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100279static hda_nid_t stac92hd73xx_pwr_nids[8] = {
280 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
281 0x0f, 0x10, 0x11
282};
283
Matthew Ranostay0ffa9802008-09-08 11:20:05 -0400284static hda_nid_t stac92hd73xx_slave_dig_outs[2] = {
285 0x26, 0,
286};
287
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100288static hda_nid_t stac92hd73xx_adc_nids[2] = {
289 0x1a, 0x1b
290};
291
Matthew Ranostay2a9c7812008-09-13 16:45:39 -0400292#define DELL_M6_AMP 2
293static hda_nid_t stac92hd73xx_amp_nids[3] = {
294 0x0b, 0x0c, 0x0e
Matthew Ranostay89385032008-09-11 09:49:39 -0400295};
296
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100297#define STAC92HD73XX_NUM_DMICS 2
298static hda_nid_t stac92hd73xx_dmic_nids[STAC92HD73XX_NUM_DMICS + 1] = {
299 0x13, 0x14, 0
300};
301
302#define STAC92HD73_DAC_COUNT 5
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100303
304static hda_nid_t stac92hd73xx_mux_nids[4] = {
305 0x28, 0x29, 0x2a, 0x2b,
306};
307
308static hda_nid_t stac92hd73xx_dmux_nids[2] = {
309 0x20, 0x21,
310};
311
Matthew Ranostayd9737752008-09-07 12:03:41 +0200312static hda_nid_t stac92hd73xx_smux_nids[2] = {
313 0x22, 0x23,
314};
315
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200316#define STAC92HD83XXX_NUM_DMICS 2
317static hda_nid_t stac92hd83xxx_dmic_nids[STAC92HD83XXX_NUM_DMICS + 1] = {
318 0x11, 0x12, 0
319};
320
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200321#define STAC92HD83_DAC_COUNT 3
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200322
323static hda_nid_t stac92hd83xxx_dmux_nids[2] = {
324 0x17, 0x18,
325};
326
327static hda_nid_t stac92hd83xxx_adc_nids[2] = {
328 0x15, 0x16,
329};
330
331static hda_nid_t stac92hd83xxx_pwr_nids[4] = {
332 0xa, 0xb, 0xd, 0xe,
333};
334
Matthew Ranostay0ffa9802008-09-08 11:20:05 -0400335static hda_nid_t stac92hd83xxx_slave_dig_outs[2] = {
336 0x1e, 0,
337};
338
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200339static unsigned int stac92hd83xxx_pwr_mapping[4] = {
Matthew Ranostay989738c2009-01-17 18:47:27 -0500340 0x03, 0x0c, 0x20, 0x80,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200341};
342
Takashi Iwai9248f262009-01-14 09:40:25 +0100343static hda_nid_t stac92hd83xxx_amp_nids[1] = {
Matthew Ranostayc15c5062009-01-13 13:30:07 -0500344 0xc,
345};
346
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100347static hda_nid_t stac92hd71bxx_pwr_nids[3] = {
348 0x0a, 0x0d, 0x0f
349};
350
Matthew Ranostaye035b842007-11-06 11:53:55 +0100351static hda_nid_t stac92hd71bxx_adc_nids[2] = {
352 0x12, 0x13,
353};
354
355static hda_nid_t stac92hd71bxx_mux_nids[2] = {
356 0x1a, 0x1b
357};
358
Matthew Ranostay4b33c762008-10-10 09:07:23 -0400359static hda_nid_t stac92hd71bxx_dmux_nids[2] = {
360 0x1c, 0x1d,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100361};
362
Matthew Ranostayd9737752008-09-07 12:03:41 +0200363static hda_nid_t stac92hd71bxx_smux_nids[2] = {
364 0x24, 0x25,
365};
366
Matthew Ranostaye035b842007-11-06 11:53:55 +0100367#define STAC92HD71BXX_NUM_DMICS 2
368static hda_nid_t stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS + 1] = {
369 0x18, 0x19, 0
370};
371
Matthew Ranostay0ffa9802008-09-08 11:20:05 -0400372static hda_nid_t stac92hd71bxx_slave_dig_outs[2] = {
373 0x22, 0
374};
375
Tobin Davis8e21c342007-01-08 11:04:17 +0100376static hda_nid_t stac925x_adc_nids[1] = {
377 0x03,
378};
379
380static hda_nid_t stac925x_mux_nids[1] = {
381 0x0f,
382};
383
384static hda_nid_t stac925x_dac_nids[1] = {
385 0x02,
386};
387
Takashi Iwaif6e98522007-10-16 14:27:04 +0200388#define STAC925X_NUM_DMICS 1
389static hda_nid_t stac925x_dmic_nids[STAC925X_NUM_DMICS + 1] = {
390 0x15, 0
Tobin Davis2c11f952007-05-17 09:36:34 +0200391};
392
Takashi Iwai1697055e2007-12-18 18:05:52 +0100393static hda_nid_t stac925x_dmux_nids[1] = {
394 0x14,
395};
396
Matt2f2f4252005-04-13 14:45:30 +0200397static hda_nid_t stac922x_adc_nids[2] = {
398 0x06, 0x07,
399};
400
401static hda_nid_t stac922x_mux_nids[2] = {
402 0x12, 0x13,
403};
404
Matt Porter3cc08dc2006-01-23 15:27:49 +0100405static hda_nid_t stac927x_adc_nids[3] = {
406 0x07, 0x08, 0x09
407};
408
409static hda_nid_t stac927x_mux_nids[3] = {
410 0x15, 0x16, 0x17
411};
412
Matthew Ranostayd9737752008-09-07 12:03:41 +0200413static hda_nid_t stac927x_smux_nids[1] = {
414 0x21,
415};
416
Matthew Ranostayb76c8502008-02-06 14:49:44 +0100417static hda_nid_t stac927x_dac_nids[6] = {
418 0x02, 0x03, 0x04, 0x05, 0x06, 0
419};
420
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100421static hda_nid_t stac927x_dmux_nids[1] = {
422 0x1b,
423};
424
Matthew Ranostay7f168592007-10-18 17:38:17 +0200425#define STAC927X_NUM_DMICS 2
426static hda_nid_t stac927x_dmic_nids[STAC927X_NUM_DMICS + 1] = {
427 0x13, 0x14, 0
428};
429
Matthew Ranostay65973632008-09-16 10:39:37 -0400430static const char *stac927x_spdif_labels[5] = {
431 "Digital Playback", "ADAT", "Analog Mux 1",
432 "Analog Mux 2", "Analog Mux 3"
433};
434
Matt Porterf3302a52006-07-31 12:49:34 +0200435static hda_nid_t stac9205_adc_nids[2] = {
436 0x12, 0x13
437};
438
439static hda_nid_t stac9205_mux_nids[2] = {
440 0x19, 0x1a
441};
442
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100443static hda_nid_t stac9205_dmux_nids[1] = {
Takashi Iwai1697055e2007-12-18 18:05:52 +0100444 0x1d,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100445};
446
Matthew Ranostayd9737752008-09-07 12:03:41 +0200447static hda_nid_t stac9205_smux_nids[1] = {
448 0x21,
449};
450
Takashi Iwaif6e98522007-10-16 14:27:04 +0200451#define STAC9205_NUM_DMICS 2
452static hda_nid_t stac9205_dmic_nids[STAC9205_NUM_DMICS + 1] = {
453 0x17, 0x18, 0
Matt Porter8b657272006-10-26 17:12:59 +0200454};
455
Mattc7d4b2f2005-06-27 14:59:41 +0200456static hda_nid_t stac9200_pin_nids[8] = {
Tobin Davis93ed1502006-09-01 21:03:12 +0200457 0x08, 0x09, 0x0d, 0x0e,
458 0x0f, 0x10, 0x11, 0x12,
Matt2f2f4252005-04-13 14:45:30 +0200459};
460
Tobin Davis8e21c342007-01-08 11:04:17 +0100461static hda_nid_t stac925x_pin_nids[8] = {
462 0x07, 0x08, 0x0a, 0x0b,
463 0x0c, 0x0d, 0x10, 0x11,
464};
465
Matt2f2f4252005-04-13 14:45:30 +0200466static hda_nid_t stac922x_pin_nids[10] = {
467 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
468 0x0f, 0x10, 0x11, 0x15, 0x1b,
469};
470
Matthew Ranostaya7662642008-02-21 07:51:14 +0100471static hda_nid_t stac92hd73xx_pin_nids[13] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100472 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
473 0x0f, 0x10, 0x11, 0x12, 0x13,
Matthew Ranostayd9737752008-09-07 12:03:41 +0200474 0x14, 0x22, 0x23
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100475};
476
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200477static hda_nid_t stac92hd83xxx_pin_nids[14] = {
478 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
479 0x0f, 0x10, 0x11, 0x12, 0x13,
480 0x1d, 0x1e, 0x1f, 0x20
481};
Matthew Ranostay0ffa9802008-09-08 11:20:05 -0400482static hda_nid_t stac92hd71bxx_pin_nids[11] = {
Matthew Ranostaye035b842007-11-06 11:53:55 +0100483 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
484 0x0f, 0x14, 0x18, 0x19, 0x1e,
Matthew Ranostay0ffa9802008-09-08 11:20:05 -0400485 0x1f,
Matthew Ranostaye035b842007-11-06 11:53:55 +0100486};
487
Matt Porter3cc08dc2006-01-23 15:27:49 +0100488static hda_nid_t stac927x_pin_nids[14] = {
489 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
490 0x0f, 0x10, 0x11, 0x12, 0x13,
491 0x14, 0x21, 0x22, 0x23,
492};
493
Matt Porterf3302a52006-07-31 12:49:34 +0200494static hda_nid_t stac9205_pin_nids[12] = {
495 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
496 0x0f, 0x14, 0x16, 0x17, 0x18,
497 0x21, 0x22,
Matt Porterf3302a52006-07-31 12:49:34 +0200498};
499
Matthew Ranostay89385032008-09-11 09:49:39 -0400500#define stac92xx_amp_volume_info snd_hda_mixer_amp_volume_info
501
502static int stac92xx_amp_volume_get(struct snd_kcontrol *kcontrol,
503 struct snd_ctl_elem_value *ucontrol)
504{
505 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
506 struct sigmatel_spec *spec = codec->spec;
507 hda_nid_t nid = spec->amp_nids[spec->cur_amux];
508
509 kcontrol->private_value ^= get_amp_nid(kcontrol);
510 kcontrol->private_value |= nid;
511
512 return snd_hda_mixer_amp_volume_get(kcontrol, ucontrol);
513}
514
515static int stac92xx_amp_volume_put(struct snd_kcontrol *kcontrol,
516 struct snd_ctl_elem_value *ucontrol)
517{
518 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
519 struct sigmatel_spec *spec = codec->spec;
520 hda_nid_t nid = spec->amp_nids[spec->cur_amux];
521
522 kcontrol->private_value ^= get_amp_nid(kcontrol);
523 kcontrol->private_value |= nid;
524
525 return snd_hda_mixer_amp_volume_put(kcontrol, ucontrol);
526}
527
Matt Porter8b657272006-10-26 17:12:59 +0200528static int stac92xx_dmux_enum_info(struct snd_kcontrol *kcontrol,
529 struct snd_ctl_elem_info *uinfo)
530{
531 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
532 struct sigmatel_spec *spec = codec->spec;
533 return snd_hda_input_mux_info(spec->dinput_mux, uinfo);
534}
535
536static int stac92xx_dmux_enum_get(struct snd_kcontrol *kcontrol,
537 struct snd_ctl_elem_value *ucontrol)
538{
539 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
540 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100541 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Matt Porter8b657272006-10-26 17:12:59 +0200542
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100543 ucontrol->value.enumerated.item[0] = spec->cur_dmux[dmux_idx];
Matt Porter8b657272006-10-26 17:12:59 +0200544 return 0;
545}
546
547static int stac92xx_dmux_enum_put(struct snd_kcontrol *kcontrol,
548 struct snd_ctl_elem_value *ucontrol)
549{
550 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
551 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100552 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Matt Porter8b657272006-10-26 17:12:59 +0200553
554 return snd_hda_input_mux_put(codec, spec->dinput_mux, ucontrol,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100555 spec->dmux_nids[dmux_idx], &spec->cur_dmux[dmux_idx]);
Matt Porter8b657272006-10-26 17:12:59 +0200556}
557
Matthew Ranostayd9737752008-09-07 12:03:41 +0200558static int stac92xx_smux_enum_info(struct snd_kcontrol *kcontrol,
559 struct snd_ctl_elem_info *uinfo)
560{
561 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
562 struct sigmatel_spec *spec = codec->spec;
563 return snd_hda_input_mux_info(spec->sinput_mux, uinfo);
564}
565
566static int stac92xx_smux_enum_get(struct snd_kcontrol *kcontrol,
567 struct snd_ctl_elem_value *ucontrol)
568{
569 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
570 struct sigmatel_spec *spec = codec->spec;
571 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
572
573 ucontrol->value.enumerated.item[0] = spec->cur_smux[smux_idx];
574 return 0;
575}
576
577static int stac92xx_smux_enum_put(struct snd_kcontrol *kcontrol,
578 struct snd_ctl_elem_value *ucontrol)
579{
580 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
581 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400582 struct hda_input_mux *smux = &spec->private_smux;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200583 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400584 int err, val;
585 hda_nid_t nid;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200586
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400587 err = snd_hda_input_mux_put(codec, spec->sinput_mux, ucontrol,
Matthew Ranostayd9737752008-09-07 12:03:41 +0200588 spec->smux_nids[smux_idx], &spec->cur_smux[smux_idx]);
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400589 if (err < 0)
590 return err;
591
592 if (spec->spdif_mute) {
593 if (smux_idx == 0)
594 nid = spec->multiout.dig_out_nid;
595 else
596 nid = codec->slave_dig_outs[smux_idx - 1];
597 if (spec->cur_smux[smux_idx] == smux->num_items - 1)
Takashi Iwaic9b46f92008-12-01 11:42:09 +0100598 val = HDA_AMP_MUTE;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400599 else
Takashi Iwaic9b46f92008-12-01 11:42:09 +0100600 val = 0;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400601 /* un/mute SPDIF out */
Takashi Iwaic9b46f92008-12-01 11:42:09 +0100602 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
603 HDA_AMP_MUTE, val);
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400604 }
605 return 0;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200606}
607
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100608static int stac92xx_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Matt2f2f4252005-04-13 14:45:30 +0200609{
610 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
611 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +0200612 return snd_hda_input_mux_info(spec->input_mux, uinfo);
Matt2f2f4252005-04-13 14:45:30 +0200613}
614
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100615static int stac92xx_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Matt2f2f4252005-04-13 14:45:30 +0200616{
617 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
618 struct sigmatel_spec *spec = codec->spec;
619 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
620
621 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
622 return 0;
623}
624
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100625static int stac92xx_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Matt2f2f4252005-04-13 14:45:30 +0200626{
627 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
628 struct sigmatel_spec *spec = codec->spec;
629 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
630
Mattc7d4b2f2005-06-27 14:59:41 +0200631 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
Matt2f2f4252005-04-13 14:45:30 +0200632 spec->mux_nids[adc_idx], &spec->cur_mux[adc_idx]);
633}
634
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100635static int stac92xx_mono_mux_enum_info(struct snd_kcontrol *kcontrol,
636 struct snd_ctl_elem_info *uinfo)
637{
638 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
639 struct sigmatel_spec *spec = codec->spec;
640 return snd_hda_input_mux_info(spec->mono_mux, uinfo);
641}
642
643static int stac92xx_mono_mux_enum_get(struct snd_kcontrol *kcontrol,
644 struct snd_ctl_elem_value *ucontrol)
645{
646 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
647 struct sigmatel_spec *spec = codec->spec;
648
649 ucontrol->value.enumerated.item[0] = spec->cur_mmux;
650 return 0;
651}
652
653static int stac92xx_mono_mux_enum_put(struct snd_kcontrol *kcontrol,
654 struct snd_ctl_elem_value *ucontrol)
655{
656 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
657 struct sigmatel_spec *spec = codec->spec;
658
659 return snd_hda_input_mux_put(codec, spec->mono_mux, ucontrol,
660 spec->mono_nid, &spec->cur_mmux);
661}
662
Matthew Ranostay89385032008-09-11 09:49:39 -0400663static int stac92xx_amp_mux_enum_info(struct snd_kcontrol *kcontrol,
664 struct snd_ctl_elem_info *uinfo)
665{
666 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
667 struct sigmatel_spec *spec = codec->spec;
668 return snd_hda_input_mux_info(spec->amp_mux, uinfo);
669}
670
671static int stac92xx_amp_mux_enum_get(struct snd_kcontrol *kcontrol,
672 struct snd_ctl_elem_value *ucontrol)
673{
674 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
675 struct sigmatel_spec *spec = codec->spec;
676
677 ucontrol->value.enumerated.item[0] = spec->cur_amux;
678 return 0;
679}
680
681static int stac92xx_amp_mux_enum_put(struct snd_kcontrol *kcontrol,
682 struct snd_ctl_elem_value *ucontrol)
683{
684 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
685 struct sigmatel_spec *spec = codec->spec;
686 struct snd_kcontrol *ctl =
687 snd_hda_find_mixer_ctl(codec, "Amp Capture Volume");
688 if (!ctl)
689 return -EINVAL;
690
691 snd_ctl_notify(codec->bus->card, SNDRV_CTL_EVENT_MASK_VALUE |
692 SNDRV_CTL_EVENT_MASK_INFO, &ctl->id);
693
694 return snd_hda_input_mux_put(codec, spec->amp_mux, ucontrol,
695 0, &spec->cur_amux);
696}
697
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200698#define stac92xx_aloopback_info snd_ctl_boolean_mono_info
699
700static int stac92xx_aloopback_get(struct snd_kcontrol *kcontrol,
701 struct snd_ctl_elem_value *ucontrol)
702{
703 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100704 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200705 struct sigmatel_spec *spec = codec->spec;
706
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100707 ucontrol->value.integer.value[0] = !!(spec->aloopback &
708 (spec->aloopback_mask << idx));
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200709 return 0;
710}
711
712static int stac92xx_aloopback_put(struct snd_kcontrol *kcontrol,
713 struct snd_ctl_elem_value *ucontrol)
714{
715 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
716 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100717 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200718 unsigned int dac_mode;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100719 unsigned int val, idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200720
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100721 idx_val = spec->aloopback_mask << idx;
722 if (ucontrol->value.integer.value[0])
723 val = spec->aloopback | idx_val;
724 else
725 val = spec->aloopback & ~idx_val;
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100726 if (spec->aloopback == val)
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200727 return 0;
728
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100729 spec->aloopback = val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200730
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100731 /* Only return the bits defined by the shift value of the
732 * first two bytes of the mask
733 */
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200734 dac_mode = snd_hda_codec_read(codec, codec->afg, 0,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100735 kcontrol->private_value & 0xFFFF, 0x0);
736 dac_mode >>= spec->aloopback_shift;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200737
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100738 if (spec->aloopback & idx_val) {
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200739 snd_hda_power_up(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100740 dac_mode |= idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200741 } else {
742 snd_hda_power_down(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100743 dac_mode &= ~idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200744 }
745
746 snd_hda_codec_write_cache(codec, codec->afg, 0,
747 kcontrol->private_value >> 16, dac_mode);
748
749 return 1;
750}
751
Mattc7d4b2f2005-06-27 14:59:41 +0200752static struct hda_verb stac9200_core_init[] = {
Matt2f2f4252005-04-13 14:45:30 +0200753 /* set dac0mux for dac converter */
Mattc7d4b2f2005-06-27 14:59:41 +0200754 { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
Matt2f2f4252005-04-13 14:45:30 +0200755 {}
756};
757
Takashi Iwai1194b5b2007-10-10 10:04:26 +0200758static struct hda_verb stac9200_eapd_init[] = {
759 /* set dac0mux for dac converter */
760 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
761 {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
762 {}
763};
764
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100765static struct hda_verb stac92hd73xx_6ch_core_init[] = {
766 /* set master volume and direct control */
767 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100768 /* setup adcs to point to mixer */
769 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
770 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100771 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
772 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
773 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
774 /* setup import muxs */
775 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
776 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
777 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
778 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00},
779 {}
780};
781
Matthew Ranostayd654a662008-03-14 08:46:51 +0100782static struct hda_verb dell_eq_core_init[] = {
783 /* set master volume to max value without distortion
784 * and direct control */
785 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec},
Matthew Ranostayd654a662008-03-14 08:46:51 +0100786 /* setup adcs to point to mixer */
787 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
788 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
789 /* setup import muxs */
790 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
791 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
792 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
793 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00},
794 {}
795};
796
Matthew Ranostay52fe0f92008-02-29 12:08:20 +0100797static struct hda_verb dell_m6_core_init[] = {
Matthew Ranostay6b3ab212008-11-03 08:12:43 -0500798 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostay52fe0f92008-02-29 12:08:20 +0100799 /* setup adcs to point to mixer */
800 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
801 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
802 /* setup import muxs */
803 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
804 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
805 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
806 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00},
807 {}
808};
809
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100810static struct hda_verb stac92hd73xx_8ch_core_init[] = {
811 /* set master volume and direct control */
812 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100813 /* setup adcs to point to mixer */
814 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
815 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100816 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
817 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
818 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
819 /* setup import muxs */
820 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
821 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
822 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
823 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x03},
824 {}
825};
826
827static struct hda_verb stac92hd73xx_10ch_core_init[] = {
828 /* set master volume and direct control */
829 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100830 /* dac3 is connected to import3 mux */
831 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0xb07f},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100832 /* setup adcs to point to mixer */
833 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
834 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100835 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
836 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
837 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
838 /* setup import muxs */
839 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
840 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
841 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
842 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x03},
843 {}
844};
845
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200846static struct hda_verb stac92hd83xxx_core_init[] = {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200847 { 0xa, AC_VERB_SET_CONNECT_SEL, 0x0},
848 { 0xb, AC_VERB_SET_CONNECT_SEL, 0x0},
849 { 0xd, AC_VERB_SET_CONNECT_SEL, 0x1},
850
851 /* power state controls amps */
852 { 0x01, AC_VERB_SET_EAPD, 1 << 2},
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -0200853 {}
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200854};
855
Matthew Ranostaye035b842007-11-06 11:53:55 +0100856static struct hda_verb stac92hd71bxx_core_init[] = {
857 /* set master volume and direct control */
858 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostay541eee82007-12-14 12:08:04 +0100859 /* unmute right and left channels for nodes 0x0a, 0xd, 0x0f */
860 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
861 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
862 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -0200863 {}
Matthew Ranostay541eee82007-12-14 12:08:04 +0100864};
865
Matthew Ranostay4b33c762008-10-10 09:07:23 -0400866#define HD_DISABLE_PORTF 2
Matthew Ranostay541eee82007-12-14 12:08:04 +0100867static struct hda_verb stac92hd71bxx_analog_core_init[] = {
Matthew Ranostayaafc4412008-06-13 18:04:33 +0200868 /* start of config #1 */
869
870 /* connect port 0f to audio mixer */
871 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x2},
Matthew Ranostayaafc4412008-06-13 18:04:33 +0200872 /* unmute right and left channels for node 0x0f */
873 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
874 /* start of config #2 */
875
Matthew Ranostay541eee82007-12-14 12:08:04 +0100876 /* set master volume and direct control */
877 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostayaafc4412008-06-13 18:04:33 +0200878 /* unmute right and left channels for nodes 0x0a, 0xd */
Matthew Ranostaye035b842007-11-06 11:53:55 +0100879 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
880 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Matthew Ranostaye035b842007-11-06 11:53:55 +0100881 {}
882};
883
Tobin Davis8e21c342007-01-08 11:04:17 +0100884static struct hda_verb stac925x_core_init[] = {
885 /* set dac0mux for dac converter */
886 { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwaic9280d62009-01-15 17:31:00 +0100887 /* mute the master volume */
888 { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
Tobin Davis8e21c342007-01-08 11:04:17 +0100889 {}
890};
891
Mattc7d4b2f2005-06-27 14:59:41 +0200892static struct hda_verb stac922x_core_init[] = {
Matt2f2f4252005-04-13 14:45:30 +0200893 /* set master volume and direct control */
Mattc7d4b2f2005-06-27 14:59:41 +0200894 { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matt2f2f4252005-04-13 14:45:30 +0200895 {}
896};
897
Tobin Davis93ed1502006-09-01 21:03:12 +0200898static struct hda_verb d965_core_init[] = {
Takashi Iwai19039bd2006-06-28 15:52:16 +0200899 /* set master volume and direct control */
Tobin Davis93ed1502006-09-01 21:03:12 +0200900 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Takashi Iwai19039bd2006-06-28 15:52:16 +0200901 /* unmute node 0x1b */
902 { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
903 /* select node 0x03 as DAC */
904 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
905 {}
906};
907
Matt Porter3cc08dc2006-01-23 15:27:49 +0100908static struct hda_verb stac927x_core_init[] = {
909 /* set master volume and direct control */
910 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200911 /* enable analog pc beep path */
912 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
Matt Porter3cc08dc2006-01-23 15:27:49 +0100913 {}
914};
915
Matt Porterf3302a52006-07-31 12:49:34 +0200916static struct hda_verb stac9205_core_init[] = {
917 /* set master volume and direct control */
918 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200919 /* enable analog pc beep path */
920 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
Matt Porterf3302a52006-07-31 12:49:34 +0200921 {}
922};
923
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100924#define STAC_MONO_MUX \
925 { \
926 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
927 .name = "Mono Mux", \
928 .count = 1, \
929 .info = stac92xx_mono_mux_enum_info, \
930 .get = stac92xx_mono_mux_enum_get, \
931 .put = stac92xx_mono_mux_enum_put, \
932 }
933
Matthew Ranostay89385032008-09-11 09:49:39 -0400934#define STAC_AMP_MUX \
935 { \
936 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
937 .name = "Amp Selector Capture Switch", \
938 .count = 1, \
939 .info = stac92xx_amp_mux_enum_info, \
940 .get = stac92xx_amp_mux_enum_get, \
941 .put = stac92xx_amp_mux_enum_put, \
942 }
943
944#define STAC_AMP_VOL(xname, nid, chs, idx, dir) \
945 { \
946 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
947 .name = xname, \
948 .index = 0, \
949 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
950 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
951 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \
952 .info = stac92xx_amp_volume_info, \
953 .get = stac92xx_amp_volume_get, \
954 .put = stac92xx_amp_volume_put, \
955 .tlv = { .c = snd_hda_mixer_amp_tlv }, \
956 .private_value = HDA_COMPOSE_AMP_VAL(nid, chs, idx, dir) \
957 }
958
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +0200959#define STAC_INPUT_SOURCE(cnt) \
Maxim Levitskyca7c5a82007-08-31 12:52:19 +0200960 { \
961 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
962 .name = "Input Source", \
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +0200963 .count = cnt, \
Maxim Levitskyca7c5a82007-08-31 12:52:19 +0200964 .info = stac92xx_mux_enum_info, \
965 .get = stac92xx_mux_enum_get, \
966 .put = stac92xx_mux_enum_put, \
967 }
968
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100969#define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200970 { \
971 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
972 .name = "Analog Loopback", \
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100973 .count = cnt, \
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200974 .info = stac92xx_aloopback_info, \
975 .get = stac92xx_aloopback_get, \
976 .put = stac92xx_aloopback_put, \
977 .private_value = verb_read | (verb_write << 16), \
978 }
979
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100980static struct snd_kcontrol_new stac9200_mixer[] = {
Matt2f2f4252005-04-13 14:45:30 +0200981 HDA_CODEC_VOLUME("Master Playback Volume", 0xb, 0, HDA_OUTPUT),
982 HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +0200983 STAC_INPUT_SOURCE(1),
Matt2f2f4252005-04-13 14:45:30 +0200984 HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT),
985 HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT),
Matt2f2f4252005-04-13 14:45:30 +0200986 { } /* end */
987};
988
Matthew Ranostay2a9c7812008-09-13 16:45:39 -0400989#define DELL_M6_MIXER 6
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100990static struct snd_kcontrol_new stac92hd73xx_6ch_mixer[] = {
Matthew Ranostay2a9c7812008-09-13 16:45:39 -0400991 /* start of config #1 */
992 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
993 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
994
995 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
996 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
997
998 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
999 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1000
1001 /* start of config #2 */
1002 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1003 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1004
1005 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1006 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1007
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001008 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3),
1009
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001010 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT),
1011 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT),
1012
1013 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT),
1014 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT),
1015
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001016 { } /* end */
1017};
1018
1019static struct snd_kcontrol_new stac92hd73xx_8ch_mixer[] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001020 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4),
1021
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001022 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT),
1023 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT),
1024
1025 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT),
1026 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT),
1027
1028 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
1029 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
1030
1031 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1032 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1033
1034 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
1035 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
1036
1037 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1038 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1039
1040 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
1041 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1042 { } /* end */
1043};
1044
1045static struct snd_kcontrol_new stac92hd73xx_10ch_mixer[] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001046 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5),
1047
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001048 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT),
1049 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT),
1050
1051 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT),
1052 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT),
1053
1054 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
1055 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
1056
1057 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1058 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1059
1060 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
1061 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
1062
1063 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1064 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1065
1066 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
1067 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1068 { } /* end */
1069};
1070
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001071
1072static struct snd_kcontrol_new stac92hd83xxx_mixer[] = {
1073 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x17, 0x0, HDA_OUTPUT),
1074 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x17, 0x0, HDA_OUTPUT),
1075
1076 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x18, 0x0, HDA_OUTPUT),
1077 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x18, 0x0, HDA_OUTPUT),
1078
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001079 HDA_CODEC_VOLUME("DAC0 Capture Volume", 0x1b, 0x3, HDA_INPUT),
1080 HDA_CODEC_MUTE("DAC0 Capture Switch", 0x1b, 0x3, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001081
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001082 HDA_CODEC_VOLUME("DAC1 Capture Volume", 0x1b, 0x4, HDA_INPUT),
1083 HDA_CODEC_MUTE("DAC1 Capture Switch", 0x1b, 0x4, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001084
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001085 HDA_CODEC_VOLUME("Front Mic Capture Volume", 0x1b, 0x0, HDA_INPUT),
1086 HDA_CODEC_MUTE("Front Mic Capture Switch", 0x1b, 0x0, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001087
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001088 HDA_CODEC_VOLUME("Line In Capture Volume", 0x1b, 0x2, HDA_INPUT),
1089 HDA_CODEC_MUTE("Line In Capture Switch", 0x1b, 0x2, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001090
1091 /*
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001092 HDA_CODEC_VOLUME("Mic Capture Volume", 0x1b, 0x1, HDA_INPUT),
1093 HDA_CODEC_MUTE("Mic Capture Switch", 0x1b 0x1, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001094 */
1095 { } /* end */
1096};
1097
Matthew Ranostay541eee82007-12-14 12:08:04 +01001098static struct snd_kcontrol_new stac92hd71bxx_analog_mixer[] = {
Matthew Ranostaye035b842007-11-06 11:53:55 +01001099 STAC_INPUT_SOURCE(2),
Matthew Ranostay4b33c762008-10-10 09:07:23 -04001100 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2),
Matthew Ranostaye035b842007-11-06 11:53:55 +01001101
Matthew Ranostay9b359472007-11-07 13:03:12 +01001102 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x1c, 0x0, HDA_OUTPUT),
1103 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1c, 0x0, HDA_OUTPUT),
Matthew Ranostay9b359472007-11-07 13:03:12 +01001104
1105 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x1d, 0x0, HDA_OUTPUT),
1106 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1d, 0x0, HDA_OUTPUT),
Matthew Ranostay1cd22242008-07-18 18:20:52 +02001107 /* analog pc-beep replaced with digital beep support */
1108 /*
Matthew Ranostayf7c5dda2008-07-10 17:49:11 +02001109 HDA_CODEC_VOLUME("PC Beep Volume", 0x17, 0x2, HDA_INPUT),
1110 HDA_CODEC_MUTE("PC Beep Switch", 0x17, 0x2, HDA_INPUT),
Matthew Ranostay1cd22242008-07-18 18:20:52 +02001111 */
Matthew Ranostayf7c5dda2008-07-10 17:49:11 +02001112
Matthew Ranostay687cb982008-10-11 13:52:43 -04001113 HDA_CODEC_MUTE("Import0 Mux Capture Switch", 0x17, 0x0, HDA_INPUT),
1114 HDA_CODEC_VOLUME("Import0 Mux Capture Volume", 0x17, 0x0, HDA_INPUT),
Matthew Ranostay4b33c762008-10-10 09:07:23 -04001115
Matthew Ranostay687cb982008-10-11 13:52:43 -04001116 HDA_CODEC_MUTE("Import1 Mux Capture Switch", 0x17, 0x1, HDA_INPUT),
1117 HDA_CODEC_VOLUME("Import1 Mux Capture Volume", 0x17, 0x1, HDA_INPUT),
Matthew Ranostay4b33c762008-10-10 09:07:23 -04001118
1119 HDA_CODEC_MUTE("DAC0 Capture Switch", 0x17, 0x3, HDA_INPUT),
1120 HDA_CODEC_VOLUME("DAC0 Capture Volume", 0x17, 0x3, HDA_INPUT),
1121
1122 HDA_CODEC_MUTE("DAC1 Capture Switch", 0x17, 0x4, HDA_INPUT),
1123 HDA_CODEC_VOLUME("DAC1 Capture Volume", 0x17, 0x4, HDA_INPUT),
Matthew Ranostaye035b842007-11-06 11:53:55 +01001124 { } /* end */
1125};
1126
Matthew Ranostay541eee82007-12-14 12:08:04 +01001127static struct snd_kcontrol_new stac92hd71bxx_mixer[] = {
Matthew Ranostay541eee82007-12-14 12:08:04 +01001128 STAC_INPUT_SOURCE(2),
1129 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2),
1130
Matthew Ranostay541eee82007-12-14 12:08:04 +01001131 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x1c, 0x0, HDA_OUTPUT),
1132 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1c, 0x0, HDA_OUTPUT),
Matthew Ranostay541eee82007-12-14 12:08:04 +01001133
1134 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x1d, 0x0, HDA_OUTPUT),
1135 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1d, 0x0, HDA_OUTPUT),
Matthew Ranostay541eee82007-12-14 12:08:04 +01001136 { } /* end */
1137};
1138
Tobin Davis8e21c342007-01-08 11:04:17 +01001139static struct snd_kcontrol_new stac925x_mixer[] = {
Takashi Iwaic9280d62009-01-15 17:31:00 +01001140 HDA_CODEC_VOLUME("Master Playback Volume", 0x0e, 0, HDA_OUTPUT),
1141 HDA_CODEC_MUTE("Master Playback Switch", 0x0e, 0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001142 STAC_INPUT_SOURCE(1),
Tobin Davis8e21c342007-01-08 11:04:17 +01001143 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_OUTPUT),
Mauro Carvalho Chehab587755f2008-05-25 18:20:06 +02001144 HDA_CODEC_MUTE("Capture Switch", 0x14, 0, HDA_OUTPUT),
Tobin Davis8e21c342007-01-08 11:04:17 +01001145 { } /* end */
1146};
1147
Takashi Iwaid1d985f2006-11-23 19:27:12 +01001148static struct snd_kcontrol_new stac9205_mixer[] = {
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001149 STAC_INPUT_SOURCE(2),
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001150 STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001151
1152 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x1b, 0x0, HDA_INPUT),
1153 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1d, 0x0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001154
1155 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x1c, 0x0, HDA_INPUT),
1156 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1e, 0x0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001157 { } /* end */
1158};
1159
1160/* This needs to be generated dynamically based on sequence */
1161static struct snd_kcontrol_new stac922x_mixer[] = {
1162 STAC_INPUT_SOURCE(2),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001163 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x17, 0x0, HDA_INPUT),
1164 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x17, 0x0, HDA_INPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001165
1166 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x18, 0x0, HDA_INPUT),
1167 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x18, 0x0, HDA_INPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001168 { } /* end */
1169};
1170
1171
1172static struct snd_kcontrol_new stac927x_mixer[] = {
1173 STAC_INPUT_SOURCE(3),
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001174 STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001175
1176 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x18, 0x0, HDA_INPUT),
1177 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1b, 0x0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001178
1179 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x19, 0x0, HDA_INPUT),
1180 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1c, 0x0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001181
1182 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x2, 0x1A, 0x0, HDA_INPUT),
1183 HDA_CODEC_MUTE_IDX("Capture Switch", 0x2, 0x1d, 0x0, HDA_OUTPUT),
Matt Porterf3302a52006-07-31 12:49:34 +02001184 { } /* end */
1185};
1186
Takashi Iwai1697055e2007-12-18 18:05:52 +01001187static struct snd_kcontrol_new stac_dmux_mixer = {
1188 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1189 .name = "Digital Input Source",
1190 /* count set later */
1191 .info = stac92xx_dmux_enum_info,
1192 .get = stac92xx_dmux_enum_get,
1193 .put = stac92xx_dmux_enum_put,
1194};
1195
Matthew Ranostayd9737752008-09-07 12:03:41 +02001196static struct snd_kcontrol_new stac_smux_mixer = {
1197 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Matthew Ranostaye3487972008-09-08 11:36:59 -04001198 .name = "IEC958 Playback Source",
Matthew Ranostayd9737752008-09-07 12:03:41 +02001199 /* count set later */
1200 .info = stac92xx_smux_enum_info,
1201 .get = stac92xx_smux_enum_get,
1202 .put = stac92xx_smux_enum_put,
1203};
1204
Takashi Iwai2134ea42008-01-10 16:53:55 +01001205static const char *slave_vols[] = {
1206 "Front Playback Volume",
1207 "Surround Playback Volume",
1208 "Center Playback Volume",
1209 "LFE Playback Volume",
1210 "Side Playback Volume",
1211 "Headphone Playback Volume",
1212 "Headphone Playback Volume",
1213 "Speaker Playback Volume",
1214 "External Speaker Playback Volume",
1215 "Speaker2 Playback Volume",
1216 NULL
1217};
1218
1219static const char *slave_sws[] = {
1220 "Front Playback Switch",
1221 "Surround Playback Switch",
1222 "Center Playback Switch",
1223 "LFE Playback Switch",
1224 "Side Playback Switch",
1225 "Headphone Playback Switch",
1226 "Headphone Playback Switch",
1227 "Speaker Playback Switch",
1228 "External Speaker Playback Switch",
1229 "Speaker2 Playback Switch",
Takashi Iwaiedb54a52008-01-29 12:47:02 +01001230 "IEC958 Playback Switch",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001231 NULL
1232};
1233
Takashi Iwai603c4012008-07-30 15:01:44 +02001234static void stac92xx_free_kctls(struct hda_codec *codec);
Takashi Iwaie4973e12008-11-18 09:32:42 +01001235static int stac92xx_add_jack(struct hda_codec *codec, hda_nid_t nid, int type);
Takashi Iwai603c4012008-07-30 15:01:44 +02001236
Matt2f2f4252005-04-13 14:45:30 +02001237static int stac92xx_build_controls(struct hda_codec *codec)
1238{
1239 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaie4973e12008-11-18 09:32:42 +01001240 struct auto_pin_cfg *cfg = &spec->autocfg;
1241 hda_nid_t nid;
Matt2f2f4252005-04-13 14:45:30 +02001242 int err;
Mattc7d4b2f2005-06-27 14:59:41 +02001243 int i;
Matt2f2f4252005-04-13 14:45:30 +02001244
1245 err = snd_hda_add_new_ctls(codec, spec->mixer);
1246 if (err < 0)
1247 return err;
Mattc7d4b2f2005-06-27 14:59:41 +02001248
1249 for (i = 0; i < spec->num_mixers; i++) {
1250 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1251 if (err < 0)
1252 return err;
1253 }
Takashi Iwai1697055e2007-12-18 18:05:52 +01001254 if (spec->num_dmuxes > 0) {
1255 stac_dmux_mixer.count = spec->num_dmuxes;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001256 err = snd_hda_ctl_add(codec,
Takashi Iwai1697055e2007-12-18 18:05:52 +01001257 snd_ctl_new1(&stac_dmux_mixer, codec));
1258 if (err < 0)
1259 return err;
1260 }
Matthew Ranostayd9737752008-09-07 12:03:41 +02001261 if (spec->num_smuxes > 0) {
Matthew Ranostay00ef50c2008-09-27 18:13:47 -04001262 int wcaps = get_wcaps(codec, spec->multiout.dig_out_nid);
1263 struct hda_input_mux *smux = &spec->private_smux;
1264 /* check for mute support on SPDIF out */
1265 if (wcaps & AC_WCAP_OUT_AMP) {
1266 smux->items[smux->num_items].label = "Off";
1267 smux->items[smux->num_items].index = 0;
1268 smux->num_items++;
1269 spec->spdif_mute = 1;
1270 }
Matthew Ranostayd9737752008-09-07 12:03:41 +02001271 stac_smux_mixer.count = spec->num_smuxes;
Takashi Iwai4f2d23e2008-12-19 10:14:13 +01001272 err = snd_hda_ctl_add(codec,
Matthew Ranostayd9737752008-09-07 12:03:41 +02001273 snd_ctl_new1(&stac_smux_mixer, codec));
1274 if (err < 0)
1275 return err;
1276 }
Mattc7d4b2f2005-06-27 14:59:41 +02001277
Mattdabbed62005-06-14 10:19:34 +02001278 if (spec->multiout.dig_out_nid) {
1279 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
1280 if (err < 0)
1281 return err;
Takashi Iwai9a081602008-02-12 18:37:26 +01001282 err = snd_hda_create_spdif_share_sw(codec,
1283 &spec->multiout);
1284 if (err < 0)
1285 return err;
1286 spec->multiout.share_spdif = 1;
Mattdabbed62005-06-14 10:19:34 +02001287 }
Harvey Harrisonda74ae32008-10-21 20:28:04 -07001288 if (spec->dig_in_nid && !(spec->gpio_dir & 0x01)) {
Mattdabbed62005-06-14 10:19:34 +02001289 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1290 if (err < 0)
1291 return err;
1292 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001293
1294 /* if we have no master control, let's create it */
1295 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001296 unsigned int vmaster_tlv[4];
Takashi Iwai2134ea42008-01-10 16:53:55 +01001297 snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0],
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001298 HDA_OUTPUT, vmaster_tlv);
Takashi Iwai7c7767e2009-01-20 15:28:38 +01001299 /* correct volume offset */
1300 vmaster_tlv[2] += vmaster_tlv[3] * spec->volume_offset;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001301 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001302 vmaster_tlv, slave_vols);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001303 if (err < 0)
1304 return err;
1305 }
1306 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1307 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1308 NULL, slave_sws);
1309 if (err < 0)
1310 return err;
1311 }
1312
Takashi Iwai603c4012008-07-30 15:01:44 +02001313 stac92xx_free_kctls(codec); /* no longer needed */
Takashi Iwaie4973e12008-11-18 09:32:42 +01001314
1315 /* create jack input elements */
1316 if (spec->hp_detect) {
1317 for (i = 0; i < cfg->hp_outs; i++) {
1318 int type = SND_JACK_HEADPHONE;
1319 nid = cfg->hp_pins[i];
1320 /* jack detection */
1321 if (cfg->hp_outs == i)
1322 type |= SND_JACK_LINEOUT;
1323 err = stac92xx_add_jack(codec, nid, type);
1324 if (err < 0)
1325 return err;
1326 }
1327 }
1328 for (i = 0; i < cfg->line_outs; i++) {
1329 err = stac92xx_add_jack(codec, cfg->line_out_pins[i],
1330 SND_JACK_LINEOUT);
1331 if (err < 0)
1332 return err;
1333 }
1334 for (i = 0; i < AUTO_PIN_LAST; i++) {
1335 nid = cfg->input_pins[i];
1336 if (nid) {
1337 err = stac92xx_add_jack(codec, nid,
1338 SND_JACK_MICROPHONE);
1339 if (err < 0)
1340 return err;
1341 }
1342 }
1343
Mattdabbed62005-06-14 10:19:34 +02001344 return 0;
Matt2f2f4252005-04-13 14:45:30 +02001345}
1346
Matt Porter403d1942005-11-29 15:00:51 +01001347static unsigned int ref9200_pin_configs[8] = {
Mattdabbed62005-06-14 10:19:34 +02001348 0x01c47010, 0x01447010, 0x0221401f, 0x01114010,
Matt2f2f4252005-04-13 14:45:30 +02001349 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1350};
1351
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001352static unsigned int gateway9200_m4_pin_configs[8] = {
1353 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1354 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1355};
1356static unsigned int gateway9200_m4_2_pin_configs[8] = {
1357 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1358 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1359};
1360
1361/*
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001362 STAC 9200 pin configs for
1363 102801A8
1364 102801DE
1365 102801E8
1366*/
1367static unsigned int dell9200_d21_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001368 0x400001f0, 0x400001f1, 0x02214030, 0x01014010,
1369 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001370};
1371
1372/*
1373 STAC 9200 pin configs for
1374 102801C0
1375 102801C1
1376*/
1377static unsigned int dell9200_d22_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001378 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1379 0x01813020, 0x02a19021, 0x90100140, 0x400001f2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001380};
1381
1382/*
1383 STAC 9200 pin configs for
1384 102801C4 (Dell Dimension E310)
1385 102801C5
1386 102801C7
1387 102801D9
1388 102801DA
1389 102801E3
1390*/
1391static unsigned int dell9200_d23_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001392 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1393 0x01813020, 0x01a19021, 0x90100140, 0x400001f2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001394};
1395
1396
1397/*
1398 STAC 9200-32 pin configs for
1399 102801B5 (Dell Inspiron 630m)
1400 102801D8 (Dell Inspiron 640m)
1401*/
1402static unsigned int dell9200_m21_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001403 0x40c003fa, 0x03441340, 0x0321121f, 0x90170310,
1404 0x408003fb, 0x03a11020, 0x401003fc, 0x403003fd,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001405};
1406
1407/*
1408 STAC 9200-32 pin configs for
1409 102801C2 (Dell Latitude D620)
1410 102801C8
1411 102801CC (Dell Latitude D820)
1412 102801D4
1413 102801D6
1414*/
1415static unsigned int dell9200_m22_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001416 0x40c003fa, 0x0144131f, 0x0321121f, 0x90170310,
1417 0x90a70321, 0x03a11020, 0x401003fb, 0x40f000fc,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001418};
1419
1420/*
1421 STAC 9200-32 pin configs for
1422 102801CE (Dell XPS M1710)
1423 102801CF (Dell Precision M90)
1424*/
1425static unsigned int dell9200_m23_pin_configs[8] = {
1426 0x40c003fa, 0x01441340, 0x0421421f, 0x90170310,
1427 0x408003fb, 0x04a1102e, 0x90170311, 0x403003fc,
1428};
1429
1430/*
1431 STAC 9200-32 pin configs for
1432 102801C9
1433 102801CA
1434 102801CB (Dell Latitude 120L)
1435 102801D3
1436*/
1437static unsigned int dell9200_m24_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001438 0x40c003fa, 0x404003fb, 0x0321121f, 0x90170310,
1439 0x408003fc, 0x03a11020, 0x401003fd, 0x403003fe,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001440};
1441
1442/*
1443 STAC 9200-32 pin configs for
1444 102801BD (Dell Inspiron E1505n)
1445 102801EE
1446 102801EF
1447*/
1448static unsigned int dell9200_m25_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001449 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1450 0x408003fb, 0x04a11020, 0x401003fc, 0x403003fd,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001451};
1452
1453/*
1454 STAC 9200-32 pin configs for
1455 102801F5 (Dell Inspiron 1501)
1456 102801F6
1457*/
1458static unsigned int dell9200_m26_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001459 0x40c003fa, 0x404003fb, 0x0421121f, 0x90170310,
1460 0x408003fc, 0x04a11020, 0x401003fd, 0x403003fe,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001461};
1462
1463/*
1464 STAC 9200-32
1465 102801CD (Dell Inspiron E1705/9400)
1466*/
1467static unsigned int dell9200_m27_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001468 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1469 0x90170310, 0x04a11020, 0x90170310, 0x40f003fc,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001470};
1471
Tobin Davisbf277782008-02-03 20:31:47 +01001472static unsigned int oqo9200_pin_configs[8] = {
1473 0x40c000f0, 0x404000f1, 0x0221121f, 0x02211210,
1474 0x90170111, 0x90a70120, 0x400000f2, 0x400000f3,
1475};
1476
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001477
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001478static unsigned int *stac9200_brd_tbl[STAC_9200_MODELS] = {
1479 [STAC_REF] = ref9200_pin_configs,
Tobin Davisbf277782008-02-03 20:31:47 +01001480 [STAC_9200_OQO] = oqo9200_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001481 [STAC_9200_DELL_D21] = dell9200_d21_pin_configs,
1482 [STAC_9200_DELL_D22] = dell9200_d22_pin_configs,
1483 [STAC_9200_DELL_D23] = dell9200_d23_pin_configs,
1484 [STAC_9200_DELL_M21] = dell9200_m21_pin_configs,
1485 [STAC_9200_DELL_M22] = dell9200_m22_pin_configs,
1486 [STAC_9200_DELL_M23] = dell9200_m23_pin_configs,
1487 [STAC_9200_DELL_M24] = dell9200_m24_pin_configs,
1488 [STAC_9200_DELL_M25] = dell9200_m25_pin_configs,
1489 [STAC_9200_DELL_M26] = dell9200_m26_pin_configs,
1490 [STAC_9200_DELL_M27] = dell9200_m27_pin_configs,
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001491 [STAC_9200_M4] = gateway9200_m4_pin_configs,
1492 [STAC_9200_M4_2] = gateway9200_m4_2_pin_configs,
Takashi Iwai117f2572008-03-18 09:53:23 +01001493 [STAC_9200_PANASONIC] = ref9200_pin_configs,
Matt Porter403d1942005-11-29 15:00:51 +01001494};
1495
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001496static const char *stac9200_models[STAC_9200_MODELS] = {
1497 [STAC_REF] = "ref",
Tobin Davisbf277782008-02-03 20:31:47 +01001498 [STAC_9200_OQO] = "oqo",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001499 [STAC_9200_DELL_D21] = "dell-d21",
1500 [STAC_9200_DELL_D22] = "dell-d22",
1501 [STAC_9200_DELL_D23] = "dell-d23",
1502 [STAC_9200_DELL_M21] = "dell-m21",
1503 [STAC_9200_DELL_M22] = "dell-m22",
1504 [STAC_9200_DELL_M23] = "dell-m23",
1505 [STAC_9200_DELL_M24] = "dell-m24",
1506 [STAC_9200_DELL_M25] = "dell-m25",
1507 [STAC_9200_DELL_M26] = "dell-m26",
1508 [STAC_9200_DELL_M27] = "dell-m27",
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001509 [STAC_9200_M4] = "gateway-m4",
1510 [STAC_9200_M4_2] = "gateway-m4-2",
Takashi Iwai117f2572008-03-18 09:53:23 +01001511 [STAC_9200_PANASONIC] = "panasonic",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001512};
1513
1514static struct snd_pci_quirk stac9200_cfg_tbl[] = {
1515 /* SigmaTel reference board */
1516 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1517 "DFI LanParty", STAC_REF),
Matt Portere7377072006-11-06 11:20:38 +01001518 /* Dell laptops have BIOS problem */
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001519 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8,
1520 "unknown Dell", STAC_9200_DELL_D21),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001521 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001522 "Dell Inspiron 630m", STAC_9200_DELL_M21),
1523 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd,
1524 "Dell Inspiron E1505n", STAC_9200_DELL_M25),
1525 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0,
1526 "unknown Dell", STAC_9200_DELL_D22),
1527 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1,
1528 "unknown Dell", STAC_9200_DELL_D22),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001529 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001530 "Dell Latitude D620", STAC_9200_DELL_M22),
1531 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5,
1532 "unknown Dell", STAC_9200_DELL_D23),
1533 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7,
1534 "unknown Dell", STAC_9200_DELL_D23),
1535 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8,
1536 "unknown Dell", STAC_9200_DELL_M22),
1537 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9,
1538 "unknown Dell", STAC_9200_DELL_M24),
1539 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca,
1540 "unknown Dell", STAC_9200_DELL_M24),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001541 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001542 "Dell Latitude 120L", STAC_9200_DELL_M24),
Cory T. Tusar877b8662007-01-30 17:30:55 +01001543 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001544 "Dell Latitude D820", STAC_9200_DELL_M22),
Mikael Nilsson46f02ca2007-02-13 12:46:16 +01001545 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001546 "Dell Inspiron E1705/9400", STAC_9200_DELL_M27),
Mikael Nilsson46f02ca2007-02-13 12:46:16 +01001547 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001548 "Dell XPS M1710", STAC_9200_DELL_M23),
Takashi Iwaif0f96742007-02-14 00:59:17 +01001549 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001550 "Dell Precision M90", STAC_9200_DELL_M23),
1551 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3,
1552 "unknown Dell", STAC_9200_DELL_M22),
1553 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4,
1554 "unknown Dell", STAC_9200_DELL_M22),
Daniel T Chen8286c532007-05-15 11:46:23 +02001555 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001556 "unknown Dell", STAC_9200_DELL_M22),
Tobin Davis49c605d2007-05-17 09:38:24 +02001557 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001558 "Dell Inspiron 640m", STAC_9200_DELL_M21),
1559 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9,
1560 "unknown Dell", STAC_9200_DELL_D23),
1561 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da,
1562 "unknown Dell", STAC_9200_DELL_D23),
1563 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de,
1564 "unknown Dell", STAC_9200_DELL_D21),
1565 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3,
1566 "unknown Dell", STAC_9200_DELL_D23),
1567 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8,
1568 "unknown Dell", STAC_9200_DELL_D21),
1569 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee,
1570 "unknown Dell", STAC_9200_DELL_M25),
1571 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef,
1572 "unknown Dell", STAC_9200_DELL_M25),
Tobin Davis49c605d2007-05-17 09:38:24 +02001573 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001574 "Dell Inspiron 1501", STAC_9200_DELL_M26),
1575 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6,
1576 "unknown Dell", STAC_9200_DELL_M26),
Tobin Davis49c605d2007-05-17 09:38:24 +02001577 /* Panasonic */
Takashi Iwai117f2572008-03-18 09:53:23 +01001578 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC),
Takashi Iwai1194b5b2007-10-10 10:04:26 +02001579 /* Gateway machines needs EAPD to be set on resume */
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001580 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4),
1581 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2),
1582 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2),
Tobin Davisbf277782008-02-03 20:31:47 +01001583 /* OQO Mobile */
1584 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO),
Matt Porter403d1942005-11-29 15:00:51 +01001585 {} /* terminator */
1586};
1587
Tobin Davis8e21c342007-01-08 11:04:17 +01001588static unsigned int ref925x_pin_configs[8] = {
1589 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021,
Matthew Ranostay09a99952008-01-24 11:49:21 +01001590 0x90a70320, 0x02214210, 0x01019020, 0x9033032e,
Tobin Davis8e21c342007-01-08 11:04:17 +01001591};
1592
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001593static unsigned int stac925xM1_pin_configs[8] = {
1594 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1595 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
Tobin Davis8e21c342007-01-08 11:04:17 +01001596};
1597
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001598static unsigned int stac925xM1_2_pin_configs[8] = {
1599 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1600 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1601};
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001602
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001603static unsigned int stac925xM2_pin_configs[8] = {
1604 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1605 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
Tobin Davis2c11f952007-05-17 09:36:34 +02001606};
1607
Tobin Davis8e21c342007-01-08 11:04:17 +01001608static unsigned int stac925xM2_2_pin_configs[8] = {
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001609 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1610 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1611};
1612
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001613static unsigned int stac925xM3_pin_configs[8] = {
1614 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1615 0x40a000f0, 0x90100210, 0x400003f1, 0x503303f3,
1616};
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001617
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001618static unsigned int stac925xM5_pin_configs[8] = {
1619 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1620 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1621};
1622
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001623static unsigned int stac925xM6_pin_configs[8] = {
1624 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1625 0x40a000f0, 0x90100210, 0x400003f1, 0x90330320,
Tobin Davis8e21c342007-01-08 11:04:17 +01001626};
1627
1628static unsigned int *stac925x_brd_tbl[STAC_925x_MODELS] = {
1629 [STAC_REF] = ref925x_pin_configs,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001630 [STAC_M1] = stac925xM1_pin_configs,
1631 [STAC_M1_2] = stac925xM1_2_pin_configs,
1632 [STAC_M2] = stac925xM2_pin_configs,
Tobin Davis8e21c342007-01-08 11:04:17 +01001633 [STAC_M2_2] = stac925xM2_2_pin_configs,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001634 [STAC_M3] = stac925xM3_pin_configs,
1635 [STAC_M5] = stac925xM5_pin_configs,
1636 [STAC_M6] = stac925xM6_pin_configs,
Tobin Davis8e21c342007-01-08 11:04:17 +01001637};
1638
1639static const char *stac925x_models[STAC_925x_MODELS] = {
1640 [STAC_REF] = "ref",
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001641 [STAC_M1] = "m1",
1642 [STAC_M1_2] = "m1-2",
1643 [STAC_M2] = "m2",
Tobin Davis8e21c342007-01-08 11:04:17 +01001644 [STAC_M2_2] = "m2-2",
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001645 [STAC_M3] = "m3",
1646 [STAC_M5] = "m5",
1647 [STAC_M6] = "m6",
Tobin Davis8e21c342007-01-08 11:04:17 +01001648};
1649
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001650static struct snd_pci_quirk stac925x_codec_id_cfg_tbl[] = {
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001651 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2),
1652 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5),
1653 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1),
1654 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001655 SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001656 /* Not sure about the brand name for those */
1657 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1),
1658 SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3),
1659 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6),
1660 SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001661 {} /* terminator */
Tobin Davis8e21c342007-01-08 11:04:17 +01001662};
1663
1664static struct snd_pci_quirk stac925x_cfg_tbl[] = {
1665 /* SigmaTel reference board */
1666 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF),
Tobin Davis2c11f952007-05-17 09:36:34 +02001667 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001668
1669 /* Default table for unknown ID */
1670 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2),
1671
Tobin Davis8e21c342007-01-08 11:04:17 +01001672 {} /* terminator */
1673};
1674
Matthew Ranostaya7662642008-02-21 07:51:14 +01001675static unsigned int ref92hd73xx_pin_configs[13] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001676 0x02214030, 0x02a19040, 0x01a19020, 0x02214030,
1677 0x0181302e, 0x01014010, 0x01014020, 0x01014030,
1678 0x02319040, 0x90a000f0, 0x90a000f0, 0x01452050,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001679 0x01452050,
1680};
1681
1682static unsigned int dell_m6_pin_configs[13] = {
1683 0x0321101f, 0x4f00000f, 0x4f0000f0, 0x90170110,
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02001684 0x03a11020, 0x0321101f, 0x4f0000f0, 0x4f0000f0,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001685 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1686 0x4f0000f0,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001687};
1688
1689static unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = {
Matthew Ranostaya7662642008-02-21 07:51:14 +01001690 [STAC_92HD73XX_REF] = ref92hd73xx_pin_configs,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001691 [STAC_DELL_M6_AMIC] = dell_m6_pin_configs,
1692 [STAC_DELL_M6_DMIC] = dell_m6_pin_configs,
1693 [STAC_DELL_M6_BOTH] = dell_m6_pin_configs,
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05001694 [STAC_DELL_EQ] = dell_m6_pin_configs,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001695};
1696
1697static const char *stac92hd73xx_models[STAC_92HD73XX_MODELS] = {
Takashi Iwai9e43f0d2008-12-17 14:51:01 +01001698 [STAC_92HD73XX_NO_JD] = "no-jd",
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001699 [STAC_92HD73XX_REF] = "ref",
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001700 [STAC_DELL_M6_AMIC] = "dell-m6-amic",
1701 [STAC_DELL_M6_DMIC] = "dell-m6-dmic",
1702 [STAC_DELL_M6_BOTH] = "dell-m6",
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05001703 [STAC_DELL_EQ] = "dell-eq",
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001704};
1705
1706static struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = {
1707 /* SigmaTel reference board */
1708 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001709 "DFI LanParty", STAC_92HD73XX_REF),
1710 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001711 "Dell Studio 1535", STAC_DELL_M6_DMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001712 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001713 "unknown Dell", STAC_DELL_M6_DMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001714 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001715 "unknown Dell", STAC_DELL_M6_BOTH),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001716 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001717 "unknown Dell", STAC_DELL_M6_BOTH),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001718 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001719 "unknown Dell", STAC_DELL_M6_AMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001720 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001721 "unknown Dell", STAC_DELL_M6_AMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001722 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001723 "unknown Dell", STAC_DELL_M6_DMIC),
1724 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0272,
1725 "unknown Dell", STAC_DELL_M6_DMIC),
Takashi Iwaib0fc5e02008-11-21 08:37:03 +01001726 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x029f,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001727 "Dell Studio 1537", STAC_DELL_M6_DMIC),
Joerg Schirottkefa620e92008-12-19 08:13:49 +01001728 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a0,
1729 "Dell Studio 17", STAC_DELL_M6_DMIC),
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001730 {} /* terminator */
1731};
1732
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001733static unsigned int ref92hd83xxx_pin_configs[14] = {
1734 0x02214030, 0x02211010, 0x02a19020, 0x02170130,
1735 0x01014050, 0x01819040, 0x01014020, 0x90a3014e,
1736 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x40f000f0,
1737 0x01451160, 0x98560170,
1738};
1739
1740static unsigned int *stac92hd83xxx_brd_tbl[STAC_92HD83XXX_MODELS] = {
1741 [STAC_92HD83XXX_REF] = ref92hd83xxx_pin_configs,
1742};
1743
1744static const char *stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = {
1745 [STAC_92HD83XXX_REF] = "ref",
1746};
1747
1748static struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = {
1749 /* SigmaTel reference board */
1750 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
Takashi Iwaif9d088b2009-01-13 11:54:49 +01001751 "DFI LanParty", STAC_92HD83XXX_REF),
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -02001752 {} /* terminator */
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001753};
1754
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04001755static unsigned int ref92hd71bxx_pin_configs[11] = {
Matthew Ranostaye035b842007-11-06 11:53:55 +01001756 0x02214030, 0x02a19040, 0x01a19020, 0x01014010,
Matthew Ranostay4b33c762008-10-10 09:07:23 -04001757 0x0181302e, 0x01014010, 0x01019020, 0x90a000f0,
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04001758 0x90a000f0, 0x01452050, 0x01452050,
Matthew Ranostaye035b842007-11-06 11:53:55 +01001759};
1760
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04001761static unsigned int dell_m4_1_pin_configs[11] = {
Matthew Ranostaya7662642008-02-21 07:51:14 +01001762 0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110,
Matthew Ranostay07bcb312008-03-20 12:10:57 +01001763 0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0,
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04001764 0x40f000f0, 0x4f0000f0, 0x4f0000f0,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001765};
1766
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04001767static unsigned int dell_m4_2_pin_configs[11] = {
Matthew Ranostaya7662642008-02-21 07:51:14 +01001768 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1769 0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0,
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04001770 0x40f000f0, 0x044413b0, 0x044413b0,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001771};
1772
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001773static unsigned int dell_m4_3_pin_configs[11] = {
1774 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1775 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a000f0,
1776 0x40f000f0, 0x044413b0, 0x044413b0,
1777};
1778
Matthew Ranostaye035b842007-11-06 11:53:55 +01001779static unsigned int *stac92hd71bxx_brd_tbl[STAC_92HD71BXX_MODELS] = {
1780 [STAC_92HD71BXX_REF] = ref92hd71bxx_pin_configs,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001781 [STAC_DELL_M4_1] = dell_m4_1_pin_configs,
1782 [STAC_DELL_M4_2] = dell_m4_2_pin_configs,
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001783 [STAC_DELL_M4_3] = dell_m4_3_pin_configs,
Matthew Ranostay6a14f582008-09-12 12:02:30 -04001784 [STAC_HP_M4] = NULL,
Takashi Iwai1b0652e2009-01-14 08:27:35 +01001785 [STAC_HP_DV5] = NULL,
Matthew Ranostaye035b842007-11-06 11:53:55 +01001786};
1787
1788static const char *stac92hd71bxx_models[STAC_92HD71BXX_MODELS] = {
1789 [STAC_92HD71BXX_REF] = "ref",
Matthew Ranostaya7662642008-02-21 07:51:14 +01001790 [STAC_DELL_M4_1] = "dell-m4-1",
1791 [STAC_DELL_M4_2] = "dell-m4-2",
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001792 [STAC_DELL_M4_3] = "dell-m4-3",
Matthew Ranostay6a14f582008-09-12 12:02:30 -04001793 [STAC_HP_M4] = "hp-m4",
Takashi Iwai1b0652e2009-01-14 08:27:35 +01001794 [STAC_HP_DV5] = "hp-dv5",
Matthew Ranostaye035b842007-11-06 11:53:55 +01001795};
1796
1797static struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = {
1798 /* SigmaTel reference board */
1799 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1800 "DFI LanParty", STAC_92HD71BXX_REF),
Takashi Iwai80bf2722008-11-18 10:48:41 +01001801 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30f2,
1802 "HP dv5", STAC_HP_M4),
1803 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30f4,
1804 "HP dv7", STAC_HP_M4),
Takashi Iwaie0c0e942009-01-22 12:58:11 +01001805 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30f7,
1806 "HP dv4", STAC_HP_DV5),
Takashi Iwai69dfaef2008-12-20 16:57:50 +01001807 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30fc,
1808 "HP dv7", STAC_HP_M4),
Giuseppe Bilottadafb70c2009-01-13 08:58:49 -05001809 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3603,
Takashi Iwai1b0652e2009-01-14 08:27:35 +01001810 "HP dv5", STAC_HP_DV5),
Matthew Ranostay9a9e2352008-09-26 10:37:03 -04001811 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a,
1812 "unknown HP", STAC_HP_M4),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001813 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,
1814 "unknown Dell", STAC_DELL_M4_1),
1815 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234,
1816 "unknown Dell", STAC_DELL_M4_1),
1817 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250,
1818 "unknown Dell", STAC_DELL_M4_1),
1819 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f,
1820 "unknown Dell", STAC_DELL_M4_1),
1821 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d,
1822 "unknown Dell", STAC_DELL_M4_1),
1823 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251,
1824 "unknown Dell", STAC_DELL_M4_1),
1825 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277,
1826 "unknown Dell", STAC_DELL_M4_1),
1827 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263,
1828 "unknown Dell", STAC_DELL_M4_2),
1829 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265,
1830 "unknown Dell", STAC_DELL_M4_2),
1831 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262,
1832 "unknown Dell", STAC_DELL_M4_2),
1833 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264,
1834 "unknown Dell", STAC_DELL_M4_2),
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001835 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa,
1836 "unknown Dell", STAC_DELL_M4_3),
Matthew Ranostaye035b842007-11-06 11:53:55 +01001837 {} /* terminator */
1838};
1839
Matt Porter403d1942005-11-29 15:00:51 +01001840static unsigned int ref922x_pin_configs[10] = {
1841 0x01014010, 0x01016011, 0x01012012, 0x0221401f,
1842 0x01813122, 0x01011014, 0x01441030, 0x01c41030,
Matt2f2f4252005-04-13 14:45:30 +02001843 0x40000100, 0x40000100,
1844};
1845
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001846/*
1847 STAC 922X pin configs for
1848 102801A7
1849 102801AB
1850 102801A9
1851 102801D1
1852 102801D2
1853*/
1854static unsigned int dell_922x_d81_pin_configs[10] = {
1855 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1856 0x02a19020, 0x01117011, 0x400001f0, 0x400001f1,
1857 0x01813122, 0x400001f2,
1858};
1859
1860/*
1861 STAC 922X pin configs for
1862 102801AC
1863 102801D0
1864*/
1865static unsigned int dell_922x_d82_pin_configs[10] = {
1866 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1867 0x02a19020, 0x01117011, 0x01451140, 0x400001f0,
1868 0x01813122, 0x400001f1,
1869};
1870
1871/*
1872 STAC 922X pin configs for
1873 102801BF
1874*/
1875static unsigned int dell_922x_m81_pin_configs[10] = {
1876 0x0321101f, 0x01112024, 0x01111222, 0x91174220,
1877 0x03a11050, 0x01116221, 0x90a70330, 0x01452340,
1878 0x40C003f1, 0x405003f0,
1879};
1880
1881/*
1882 STAC 9221 A1 pin configs for
1883 102801D7 (Dell XPS M1210)
1884*/
1885static unsigned int dell_922x_m82_pin_configs[10] = {
Jiang Zhe7f9310c2007-11-12 12:43:37 +01001886 0x02211211, 0x408103ff, 0x02a1123e, 0x90100310,
1887 0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001888 0x508003f3, 0x405003f4,
1889};
1890
Matt Porter403d1942005-11-29 15:00:51 +01001891static unsigned int d945gtp3_pin_configs[10] = {
Matt Porter869264c2006-01-25 19:20:50 +01001892 0x0221401f, 0x01a19022, 0x01813021, 0x01014010,
Matt Porter403d1942005-11-29 15:00:51 +01001893 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1894 0x02a19120, 0x40000100,
1895};
1896
1897static unsigned int d945gtp5_pin_configs[10] = {
Matt Porter869264c2006-01-25 19:20:50 +01001898 0x0221401f, 0x01011012, 0x01813024, 0x01014010,
1899 0x01a19021, 0x01016011, 0x01452130, 0x40000100,
Matt Porter403d1942005-11-29 15:00:51 +01001900 0x02a19320, 0x40000100,
1901};
1902
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001903static unsigned int intel_mac_v1_pin_configs[10] = {
1904 0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd,
1905 0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240,
Takashi Iwai3fc24d82007-02-16 13:27:18 +01001906 0x400000fc, 0x400000fb,
1907};
1908
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001909static unsigned int intel_mac_v2_pin_configs[10] = {
1910 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1911 0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa,
Sylvain FORETf16928f2007-04-27 14:22:36 +02001912 0x400000fc, 0x400000fb,
1913};
1914
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001915static unsigned int intel_mac_v3_pin_configs[10] = {
1916 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1917 0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240,
1918 0x400000fc, 0x400000fb,
1919};
1920
1921static unsigned int intel_mac_v4_pin_configs[10] = {
1922 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1923 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1924 0x400000fc, 0x400000fb,
1925};
1926
1927static unsigned int intel_mac_v5_pin_configs[10] = {
1928 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1929 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1930 0x400000fc, 0x400000fb,
Takashi Iwai0dae0f82007-05-21 12:41:29 +02001931};
1932
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001933static unsigned int ecs202_pin_configs[10] = {
1934 0x0221401f, 0x02a19020, 0x01a19020, 0x01114010,
1935 0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1,
1936 0x9037012e, 0x40e000f2,
1937};
Takashi Iwai76c08822007-06-19 12:17:42 +02001938
Takashi Iwai19039bd2006-06-28 15:52:16 +02001939static unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001940 [STAC_D945_REF] = ref922x_pin_configs,
Takashi Iwai19039bd2006-06-28 15:52:16 +02001941 [STAC_D945GTP3] = d945gtp3_pin_configs,
1942 [STAC_D945GTP5] = d945gtp5_pin_configs,
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001943 [STAC_INTEL_MAC_V1] = intel_mac_v1_pin_configs,
1944 [STAC_INTEL_MAC_V2] = intel_mac_v2_pin_configs,
1945 [STAC_INTEL_MAC_V3] = intel_mac_v3_pin_configs,
1946 [STAC_INTEL_MAC_V4] = intel_mac_v4_pin_configs,
1947 [STAC_INTEL_MAC_V5] = intel_mac_v5_pin_configs,
Nicolas Boichat536319a2008-07-21 22:18:01 +08001948 [STAC_INTEL_MAC_AUTO] = intel_mac_v3_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001949 /* for backward compatibility */
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001950 [STAC_MACMINI] = intel_mac_v3_pin_configs,
1951 [STAC_MACBOOK] = intel_mac_v5_pin_configs,
1952 [STAC_MACBOOK_PRO_V1] = intel_mac_v3_pin_configs,
1953 [STAC_MACBOOK_PRO_V2] = intel_mac_v3_pin_configs,
1954 [STAC_IMAC_INTEL] = intel_mac_v2_pin_configs,
1955 [STAC_IMAC_INTEL_20] = intel_mac_v3_pin_configs,
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001956 [STAC_ECS_202] = ecs202_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001957 [STAC_922X_DELL_D81] = dell_922x_d81_pin_configs,
1958 [STAC_922X_DELL_D82] = dell_922x_d82_pin_configs,
1959 [STAC_922X_DELL_M81] = dell_922x_m81_pin_configs,
1960 [STAC_922X_DELL_M82] = dell_922x_m82_pin_configs,
Matt Porter403d1942005-11-29 15:00:51 +01001961};
1962
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001963static const char *stac922x_models[STAC_922X_MODELS] = {
1964 [STAC_D945_REF] = "ref",
1965 [STAC_D945GTP5] = "5stack",
1966 [STAC_D945GTP3] = "3stack",
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001967 [STAC_INTEL_MAC_V1] = "intel-mac-v1",
1968 [STAC_INTEL_MAC_V2] = "intel-mac-v2",
1969 [STAC_INTEL_MAC_V3] = "intel-mac-v3",
1970 [STAC_INTEL_MAC_V4] = "intel-mac-v4",
1971 [STAC_INTEL_MAC_V5] = "intel-mac-v5",
Nicolas Boichat536319a2008-07-21 22:18:01 +08001972 [STAC_INTEL_MAC_AUTO] = "intel-mac-auto",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001973 /* for backward compatibility */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001974 [STAC_MACMINI] = "macmini",
Takashi Iwai3fc24d82007-02-16 13:27:18 +01001975 [STAC_MACBOOK] = "macbook",
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01001976 [STAC_MACBOOK_PRO_V1] = "macbook-pro-v1",
1977 [STAC_MACBOOK_PRO_V2] = "macbook-pro",
Sylvain FORETf16928f2007-04-27 14:22:36 +02001978 [STAC_IMAC_INTEL] = "imac-intel",
Takashi Iwai0dae0f82007-05-21 12:41:29 +02001979 [STAC_IMAC_INTEL_20] = "imac-intel-20",
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001980 [STAC_ECS_202] = "ecs202",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001981 [STAC_922X_DELL_D81] = "dell-d81",
1982 [STAC_922X_DELL_D82] = "dell-d82",
1983 [STAC_922X_DELL_M81] = "dell-m81",
1984 [STAC_922X_DELL_M82] = "dell-m82",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001985};
1986
1987static struct snd_pci_quirk stac922x_cfg_tbl[] = {
1988 /* SigmaTel reference board */
1989 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1990 "DFI LanParty", STAC_D945_REF),
1991 /* Intel 945G based systems */
1992 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101,
1993 "Intel D945G", STAC_D945GTP3),
1994 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202,
1995 "Intel D945G", STAC_D945GTP3),
1996 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606,
1997 "Intel D945G", STAC_D945GTP3),
1998 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601,
1999 "Intel D945G", STAC_D945GTP3),
2000 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111,
2001 "Intel D945G", STAC_D945GTP3),
2002 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115,
2003 "Intel D945G", STAC_D945GTP3),
2004 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116,
2005 "Intel D945G", STAC_D945GTP3),
2006 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117,
2007 "Intel D945G", STAC_D945GTP3),
2008 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118,
2009 "Intel D945G", STAC_D945GTP3),
2010 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119,
2011 "Intel D945G", STAC_D945GTP3),
2012 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826,
2013 "Intel D945G", STAC_D945GTP3),
2014 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049,
2015 "Intel D945G", STAC_D945GTP3),
2016 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055,
2017 "Intel D945G", STAC_D945GTP3),
2018 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048,
2019 "Intel D945G", STAC_D945GTP3),
2020 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110,
2021 "Intel D945G", STAC_D945GTP3),
2022 /* Intel D945G 5-stack systems */
2023 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404,
2024 "Intel D945G", STAC_D945GTP5),
2025 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303,
2026 "Intel D945G", STAC_D945GTP5),
2027 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013,
2028 "Intel D945G", STAC_D945GTP5),
2029 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417,
2030 "Intel D945G", STAC_D945GTP5),
2031 /* Intel 945P based systems */
2032 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b,
2033 "Intel D945P", STAC_D945GTP3),
2034 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112,
2035 "Intel D945P", STAC_D945GTP3),
2036 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d,
2037 "Intel D945P", STAC_D945GTP3),
2038 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909,
2039 "Intel D945P", STAC_D945GTP3),
2040 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505,
2041 "Intel D945P", STAC_D945GTP3),
2042 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707,
2043 "Intel D945P", STAC_D945GTP5),
2044 /* other systems */
Nicolas Boichat536319a2008-07-21 22:18:01 +08002045 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002046 SND_PCI_QUIRK(0x8384, 0x7680,
Nicolas Boichat536319a2008-07-21 22:18:01 +08002047 "Mac", STAC_INTEL_MAC_AUTO),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002048 /* Dell systems */
2049 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7,
2050 "unknown Dell", STAC_922X_DELL_D81),
2051 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9,
2052 "unknown Dell", STAC_922X_DELL_D81),
2053 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab,
2054 "unknown Dell", STAC_922X_DELL_D81),
2055 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac,
2056 "unknown Dell", STAC_922X_DELL_D82),
2057 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf,
2058 "unknown Dell", STAC_922X_DELL_M81),
2059 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0,
2060 "unknown Dell", STAC_922X_DELL_D82),
2061 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1,
2062 "unknown Dell", STAC_922X_DELL_D81),
2063 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2,
2064 "unknown Dell", STAC_922X_DELL_D81),
2065 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
2066 "Dell XPS M1210", STAC_922X_DELL_M82),
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03002067 /* ECS/PC Chips boards */
2068 SND_PCI_QUIRK(0x1019, 0x2144,
2069 "ECS/PC chips", STAC_ECS_202),
2070 SND_PCI_QUIRK(0x1019, 0x2608,
2071 "ECS/PC chips", STAC_ECS_202),
2072 SND_PCI_QUIRK(0x1019, 0x2633,
2073 "ECS/PC chips P17G/1333", STAC_ECS_202),
2074 SND_PCI_QUIRK(0x1019, 0x2811,
2075 "ECS/PC chips", STAC_ECS_202),
2076 SND_PCI_QUIRK(0x1019, 0x2812,
2077 "ECS/PC chips", STAC_ECS_202),
2078 SND_PCI_QUIRK(0x1019, 0x2813,
2079 "ECS/PC chips", STAC_ECS_202),
2080 SND_PCI_QUIRK(0x1019, 0x2814,
2081 "ECS/PC chips", STAC_ECS_202),
2082 SND_PCI_QUIRK(0x1019, 0x2815,
2083 "ECS/PC chips", STAC_ECS_202),
2084 SND_PCI_QUIRK(0x1019, 0x2816,
2085 "ECS/PC chips", STAC_ECS_202),
2086 SND_PCI_QUIRK(0x1019, 0x2817,
2087 "ECS/PC chips", STAC_ECS_202),
2088 SND_PCI_QUIRK(0x1019, 0x2818,
2089 "ECS/PC chips", STAC_ECS_202),
2090 SND_PCI_QUIRK(0x1019, 0x2819,
2091 "ECS/PC chips", STAC_ECS_202),
2092 SND_PCI_QUIRK(0x1019, 0x2820,
2093 "ECS/PC chips", STAC_ECS_202),
Matt Porter403d1942005-11-29 15:00:51 +01002094 {} /* terminator */
2095};
2096
Matt Porter3cc08dc2006-01-23 15:27:49 +01002097static unsigned int ref927x_pin_configs[14] = {
Tobin Davis93ed1502006-09-01 21:03:12 +02002098 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2099 0x01a19040, 0x01011012, 0x01016011, 0x0101201f,
2100 0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070,
2101 0x01c42190, 0x40000100,
Matt Porter3cc08dc2006-01-23 15:27:49 +01002102};
2103
Tobin Davis93ed1502006-09-01 21:03:12 +02002104static unsigned int d965_3st_pin_configs[14] = {
Tobin Davis81d3dbd2006-08-22 19:44:45 +02002105 0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
2106 0x01a19021, 0x01813024, 0x40000100, 0x40000100,
2107 0x40000100, 0x40000100, 0x40000100, 0x40000100,
2108 0x40000100, 0x40000100
2109};
2110
Tobin Davis93ed1502006-09-01 21:03:12 +02002111static unsigned int d965_5st_pin_configs[14] = {
2112 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2113 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2114 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2115 0x40000100, 0x40000100
2116};
2117
Tobin Davis4ff076e2007-08-07 11:48:12 +02002118static unsigned int dell_3st_pin_configs[14] = {
2119 0x02211230, 0x02a11220, 0x01a19040, 0x01114210,
2120 0x01111212, 0x01116211, 0x01813050, 0x01112214,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002121 0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb,
Tobin Davis4ff076e2007-08-07 11:48:12 +02002122 0x40c003fc, 0x40000100
2123};
2124
Tobin Davis93ed1502006-09-01 21:03:12 +02002125static unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = {
Takashi Iwaie28d8322008-12-17 13:48:29 +01002126 [STAC_D965_REF_NO_JD] = ref927x_pin_configs,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002127 [STAC_D965_REF] = ref927x_pin_configs,
2128 [STAC_D965_3ST] = d965_3st_pin_configs,
2129 [STAC_D965_5ST] = d965_5st_pin_configs,
2130 [STAC_DELL_3ST] = dell_3st_pin_configs,
2131 [STAC_DELL_BIOS] = NULL,
Matt Porter3cc08dc2006-01-23 15:27:49 +01002132};
2133
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002134static const char *stac927x_models[STAC_927X_MODELS] = {
Takashi Iwaie28d8322008-12-17 13:48:29 +01002135 [STAC_D965_REF_NO_JD] = "ref-no-jd",
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002136 [STAC_D965_REF] = "ref",
2137 [STAC_D965_3ST] = "3stack",
2138 [STAC_D965_5ST] = "5stack",
2139 [STAC_DELL_3ST] = "dell-3stack",
2140 [STAC_DELL_BIOS] = "dell-bios",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002141};
2142
2143static struct snd_pci_quirk stac927x_cfg_tbl[] = {
2144 /* SigmaTel reference board */
2145 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2146 "DFI LanParty", STAC_D965_REF),
Tobin Davis81d3dbd2006-08-22 19:44:45 +02002147 /* Intel 946 based systems */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002148 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST),
2149 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST),
Tobin Davis93ed1502006-09-01 21:03:12 +02002150 /* 965 based 3 stack systems */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002151 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2116, "Intel D965", STAC_D965_3ST),
2152 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2115, "Intel D965", STAC_D965_3ST),
2153 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2114, "Intel D965", STAC_D965_3ST),
2154 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2113, "Intel D965", STAC_D965_3ST),
2155 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2112, "Intel D965", STAC_D965_3ST),
2156 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2111, "Intel D965", STAC_D965_3ST),
2157 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2110, "Intel D965", STAC_D965_3ST),
2158 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2009, "Intel D965", STAC_D965_3ST),
2159 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2008, "Intel D965", STAC_D965_3ST),
2160 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2007, "Intel D965", STAC_D965_3ST),
2161 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2006, "Intel D965", STAC_D965_3ST),
2162 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2005, "Intel D965", STAC_D965_3ST),
2163 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2004, "Intel D965", STAC_D965_3ST),
2164 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2003, "Intel D965", STAC_D965_3ST),
2165 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2002, "Intel D965", STAC_D965_3ST),
2166 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2001, "Intel D965", STAC_D965_3ST),
Tobin Davis4ff076e2007-08-07 11:48:12 +02002167 /* Dell 3 stack systems */
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002168 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f7, "Dell XPS M1730", STAC_DELL_3ST),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002169 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST),
Tobin Davis4ff076e2007-08-07 11:48:12 +02002170 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST),
2171 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002172 /* Dell 3 stack systems with verb table in BIOS */
Matthew Ranostay2f32d902008-01-10 13:06:26 +01002173 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS),
2174 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002175 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS),
Takashi Iwai24918b62008-09-30 12:58:54 +02002176 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_3ST),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002177 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS),
2178 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS),
2179 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS),
2180 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS),
Tobin Davis93ed1502006-09-01 21:03:12 +02002181 /* 965 based 5 stack systems */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002182 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2301, "Intel D965", STAC_D965_5ST),
2183 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2302, "Intel D965", STAC_D965_5ST),
2184 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2303, "Intel D965", STAC_D965_5ST),
2185 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2304, "Intel D965", STAC_D965_5ST),
2186 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2305, "Intel D965", STAC_D965_5ST),
2187 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2501, "Intel D965", STAC_D965_5ST),
2188 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2502, "Intel D965", STAC_D965_5ST),
2189 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2503, "Intel D965", STAC_D965_5ST),
2190 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2504, "Intel D965", STAC_D965_5ST),
Matt Porter3cc08dc2006-01-23 15:27:49 +01002191 {} /* terminator */
2192};
2193
Matt Porterf3302a52006-07-31 12:49:34 +02002194static unsigned int ref9205_pin_configs[12] = {
2195 0x40000100, 0x40000100, 0x01016011, 0x01014010,
Matthew Ranostay09a99952008-01-24 11:49:21 +01002196 0x01813122, 0x01a19021, 0x01019020, 0x40000100,
Matt Porter8b657272006-10-26 17:12:59 +02002197 0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030
Matt Porterf3302a52006-07-31 12:49:34 +02002198};
2199
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002200/*
2201 STAC 9205 pin configs for
2202 102801F1
2203 102801F2
2204 102801FC
2205 102801FD
2206 10280204
2207 1028021F
Matthew Ranostay3fa2ef72008-01-11 11:39:06 +01002208 10280228 (Dell Vostro 1500)
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002209*/
2210static unsigned int dell_9205_m42_pin_configs[12] = {
2211 0x0321101F, 0x03A11020, 0x400003FA, 0x90170310,
2212 0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9,
2213 0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE,
2214};
2215
2216/*
2217 STAC 9205 pin configs for
2218 102801F9
2219 102801FA
2220 102801FE
2221 102801FF (Dell Precision M4300)
2222 10280206
2223 10280200
2224 10280201
2225*/
2226static unsigned int dell_9205_m43_pin_configs[12] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002227 0x0321101f, 0x03a11020, 0x90a70330, 0x90170310,
2228 0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9,
2229 0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8,
2230};
2231
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002232static unsigned int dell_9205_m44_pin_configs[12] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002233 0x0421101f, 0x04a11020, 0x400003fa, 0x90170310,
2234 0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9,
2235 0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe,
2236};
2237
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002238static unsigned int *stac9205_brd_tbl[STAC_9205_MODELS] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002239 [STAC_9205_REF] = ref9205_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002240 [STAC_9205_DELL_M42] = dell_9205_m42_pin_configs,
2241 [STAC_9205_DELL_M43] = dell_9205_m43_pin_configs,
2242 [STAC_9205_DELL_M44] = dell_9205_m44_pin_configs,
Matt Porterf3302a52006-07-31 12:49:34 +02002243};
2244
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002245static const char *stac9205_models[STAC_9205_MODELS] = {
2246 [STAC_9205_REF] = "ref",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002247 [STAC_9205_DELL_M42] = "dell-m42",
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002248 [STAC_9205_DELL_M43] = "dell-m43",
2249 [STAC_9205_DELL_M44] = "dell-m44",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002250};
2251
2252static struct snd_pci_quirk stac9205_cfg_tbl[] = {
2253 /* SigmaTel reference board */
2254 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2255 "DFI LanParty", STAC_9205_REF),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002256 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1,
2257 "unknown Dell", STAC_9205_DELL_M42),
2258 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2,
2259 "unknown Dell", STAC_9205_DELL_M42),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002260 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8,
Matthew Ranostayb44ef2f2007-09-18 00:52:38 +02002261 "Dell Precision", STAC_9205_DELL_M43),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002262 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9,
2263 "Dell Precision", STAC_9205_DELL_M43),
2264 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa,
2265 "Dell Precision", STAC_9205_DELL_M43),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002266 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc,
2267 "unknown Dell", STAC_9205_DELL_M42),
2268 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd,
2269 "unknown Dell", STAC_9205_DELL_M42),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002270 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe,
2271 "Dell Precision", STAC_9205_DELL_M43),
2272 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002273 "Dell Precision M4300", STAC_9205_DELL_M43),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002274 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204,
2275 "unknown Dell", STAC_9205_DELL_M42),
Takashi Iwai45499152008-06-12 16:27:24 +02002276 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206,
2277 "Dell Precision", STAC_9205_DELL_M43),
2278 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b,
2279 "Dell Precision", STAC_9205_DELL_M43),
2280 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c,
2281 "Dell Precision", STAC_9205_DELL_M43),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002282 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f,
2283 "Dell Inspiron", STAC_9205_DELL_M44),
Matthew Ranostay3fa2ef72008-01-11 11:39:06 +01002284 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228,
2285 "Dell Vostro 1500", STAC_9205_DELL_M42),
Matt Porterf3302a52006-07-31 12:49:34 +02002286 {} /* terminator */
2287};
2288
Richard Fish11b44bb2006-08-23 18:31:34 +02002289static int stac92xx_save_bios_config_regs(struct hda_codec *codec)
2290{
2291 int i;
2292 struct sigmatel_spec *spec = codec->spec;
2293
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01002294 kfree(spec->pin_configs);
2295 spec->pin_configs = kcalloc(spec->num_pins, sizeof(*spec->pin_configs),
2296 GFP_KERNEL);
2297 if (!spec->pin_configs)
2298 return -ENOMEM;
Richard Fish11b44bb2006-08-23 18:31:34 +02002299
2300 for (i = 0; i < spec->num_pins; i++) {
2301 hda_nid_t nid = spec->pin_nids[i];
2302 unsigned int pin_cfg;
2303
2304 pin_cfg = snd_hda_codec_read(codec, nid, 0,
2305 AC_VERB_GET_CONFIG_DEFAULT, 0x00);
2306 snd_printdd(KERN_INFO "hda_codec: pin nid %2.2x bios pin config %8.8x\n",
2307 nid, pin_cfg);
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01002308 spec->pin_configs[i] = pin_cfg;
Richard Fish11b44bb2006-08-23 18:31:34 +02002309 }
2310
2311 return 0;
2312}
2313
Matthew Ranostay87d48362007-07-17 11:52:24 +02002314static void stac92xx_set_config_reg(struct hda_codec *codec,
2315 hda_nid_t pin_nid, unsigned int pin_config)
2316{
2317 int i;
2318 snd_hda_codec_write(codec, pin_nid, 0,
2319 AC_VERB_SET_CONFIG_DEFAULT_BYTES_0,
2320 pin_config & 0x000000ff);
2321 snd_hda_codec_write(codec, pin_nid, 0,
2322 AC_VERB_SET_CONFIG_DEFAULT_BYTES_1,
2323 (pin_config & 0x0000ff00) >> 8);
2324 snd_hda_codec_write(codec, pin_nid, 0,
2325 AC_VERB_SET_CONFIG_DEFAULT_BYTES_2,
2326 (pin_config & 0x00ff0000) >> 16);
2327 snd_hda_codec_write(codec, pin_nid, 0,
2328 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3,
2329 pin_config >> 24);
2330 i = snd_hda_codec_read(codec, pin_nid, 0,
2331 AC_VERB_GET_CONFIG_DEFAULT,
2332 0x00);
2333 snd_printdd(KERN_INFO "hda_codec: pin nid %2.2x pin config %8.8x\n",
2334 pin_nid, i);
2335}
2336
Matt2f2f4252005-04-13 14:45:30 +02002337static void stac92xx_set_config_regs(struct hda_codec *codec)
2338{
2339 int i;
2340 struct sigmatel_spec *spec = codec->spec;
Matt2f2f4252005-04-13 14:45:30 +02002341
Matthew Ranostay87d48362007-07-17 11:52:24 +02002342 if (!spec->pin_configs)
2343 return;
Richard Fish11b44bb2006-08-23 18:31:34 +02002344
Matthew Ranostay87d48362007-07-17 11:52:24 +02002345 for (i = 0; i < spec->num_pins; i++)
2346 stac92xx_set_config_reg(codec, spec->pin_nids[i],
2347 spec->pin_configs[i]);
Matt2f2f4252005-04-13 14:45:30 +02002348}
Matt2f2f4252005-04-13 14:45:30 +02002349
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01002350static int stac_save_pin_cfgs(struct hda_codec *codec, unsigned int *pins)
2351{
2352 struct sigmatel_spec *spec = codec->spec;
2353
2354 if (!pins)
2355 return stac92xx_save_bios_config_regs(codec);
2356
2357 kfree(spec->pin_configs);
2358 spec->pin_configs = kmemdup(pins,
2359 spec->num_pins * sizeof(*pins),
2360 GFP_KERNEL);
2361 if (!spec->pin_configs)
2362 return -ENOMEM;
2363
2364 stac92xx_set_config_regs(codec);
2365 return 0;
2366}
2367
2368static void stac_change_pin_config(struct hda_codec *codec, hda_nid_t nid,
2369 unsigned int cfg)
2370{
2371 struct sigmatel_spec *spec = codec->spec;
2372 int i;
2373
2374 for (i = 0; i < spec->num_pins; i++) {
2375 if (spec->pin_nids[i] == nid) {
2376 spec->pin_configs[i] = cfg;
2377 stac92xx_set_config_reg(codec, nid, cfg);
2378 break;
2379 }
2380 }
2381}
2382
Matt2f2f4252005-04-13 14:45:30 +02002383/*
2384 * Analog playback callbacks
2385 */
2386static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo,
2387 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002388 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002389{
2390 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002391 if (spec->stream_delay)
2392 msleep(spec->stream_delay);
Takashi Iwai9a081602008-02-12 18:37:26 +01002393 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2394 hinfo);
Matt2f2f4252005-04-13 14:45:30 +02002395}
2396
2397static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2398 struct hda_codec *codec,
2399 unsigned int stream_tag,
2400 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002401 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002402{
2403 struct sigmatel_spec *spec = codec->spec;
Matt Porter403d1942005-11-29 15:00:51 +01002404 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag, format, substream);
Matt2f2f4252005-04-13 14:45:30 +02002405}
2406
2407static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2408 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002409 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002410{
2411 struct sigmatel_spec *spec = codec->spec;
2412 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2413}
2414
2415/*
Mattdabbed62005-06-14 10:19:34 +02002416 * Digital playback callbacks
2417 */
2418static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2419 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002420 struct snd_pcm_substream *substream)
Mattdabbed62005-06-14 10:19:34 +02002421{
2422 struct sigmatel_spec *spec = codec->spec;
2423 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2424}
2425
2426static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2427 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002428 struct snd_pcm_substream *substream)
Mattdabbed62005-06-14 10:19:34 +02002429{
2430 struct sigmatel_spec *spec = codec->spec;
2431 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2432}
2433
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002434static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2435 struct hda_codec *codec,
2436 unsigned int stream_tag,
2437 unsigned int format,
2438 struct snd_pcm_substream *substream)
2439{
2440 struct sigmatel_spec *spec = codec->spec;
2441 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2442 stream_tag, format, substream);
2443}
2444
Mattdabbed62005-06-14 10:19:34 +02002445
2446/*
Matt2f2f4252005-04-13 14:45:30 +02002447 * Analog capture callbacks
2448 */
2449static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2450 struct hda_codec *codec,
2451 unsigned int stream_tag,
2452 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002453 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002454{
2455 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002456 hda_nid_t nid = spec->adc_nids[substream->number];
Matt2f2f4252005-04-13 14:45:30 +02002457
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002458 if (spec->powerdown_adcs) {
2459 msleep(40);
Takashi Iwai8c2f7672008-12-01 11:54:35 +01002460 snd_hda_codec_write(codec, nid, 0,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002461 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
2462 }
2463 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Matt2f2f4252005-04-13 14:45:30 +02002464 return 0;
2465}
2466
2467static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2468 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002469 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002470{
2471 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002472 hda_nid_t nid = spec->adc_nids[substream->number];
Matt2f2f4252005-04-13 14:45:30 +02002473
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002474 snd_hda_codec_cleanup_stream(codec, nid);
2475 if (spec->powerdown_adcs)
Takashi Iwai8c2f7672008-12-01 11:54:35 +01002476 snd_hda_codec_write(codec, nid, 0,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002477 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
Matt2f2f4252005-04-13 14:45:30 +02002478 return 0;
2479}
2480
Mattdabbed62005-06-14 10:19:34 +02002481static struct hda_pcm_stream stac92xx_pcm_digital_playback = {
2482 .substreams = 1,
2483 .channels_min = 2,
2484 .channels_max = 2,
2485 /* NID is set in stac92xx_build_pcms */
2486 .ops = {
2487 .open = stac92xx_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002488 .close = stac92xx_dig_playback_pcm_close,
2489 .prepare = stac92xx_dig_playback_pcm_prepare
Mattdabbed62005-06-14 10:19:34 +02002490 },
2491};
2492
2493static struct hda_pcm_stream stac92xx_pcm_digital_capture = {
2494 .substreams = 1,
2495 .channels_min = 2,
2496 .channels_max = 2,
2497 /* NID is set in stac92xx_build_pcms */
2498};
2499
Matt2f2f4252005-04-13 14:45:30 +02002500static struct hda_pcm_stream stac92xx_pcm_analog_playback = {
2501 .substreams = 1,
2502 .channels_min = 2,
Mattc7d4b2f2005-06-27 14:59:41 +02002503 .channels_max = 8,
Matt2f2f4252005-04-13 14:45:30 +02002504 .nid = 0x02, /* NID to query formats and rates */
2505 .ops = {
2506 .open = stac92xx_playback_pcm_open,
2507 .prepare = stac92xx_playback_pcm_prepare,
2508 .cleanup = stac92xx_playback_pcm_cleanup
2509 },
2510};
2511
Matt Porter3cc08dc2006-01-23 15:27:49 +01002512static struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = {
2513 .substreams = 1,
2514 .channels_min = 2,
2515 .channels_max = 2,
2516 .nid = 0x06, /* NID to query formats and rates */
2517 .ops = {
2518 .open = stac92xx_playback_pcm_open,
2519 .prepare = stac92xx_playback_pcm_prepare,
2520 .cleanup = stac92xx_playback_pcm_cleanup
2521 },
2522};
2523
Matt2f2f4252005-04-13 14:45:30 +02002524static struct hda_pcm_stream stac92xx_pcm_analog_capture = {
Matt2f2f4252005-04-13 14:45:30 +02002525 .channels_min = 2,
2526 .channels_max = 2,
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02002527 /* NID + .substreams is set in stac92xx_build_pcms */
Matt2f2f4252005-04-13 14:45:30 +02002528 .ops = {
2529 .prepare = stac92xx_capture_pcm_prepare,
2530 .cleanup = stac92xx_capture_pcm_cleanup
2531 },
2532};
2533
2534static int stac92xx_build_pcms(struct hda_codec *codec)
2535{
2536 struct sigmatel_spec *spec = codec->spec;
2537 struct hda_pcm *info = spec->pcm_rec;
2538
2539 codec->num_pcms = 1;
2540 codec->pcm_info = info;
2541
Mattc7d4b2f2005-06-27 14:59:41 +02002542 info->name = "STAC92xx Analog";
Matt2f2f4252005-04-13 14:45:30 +02002543 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback;
Matt2f2f4252005-04-13 14:45:30 +02002544 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture;
Matt Porter3cc08dc2006-01-23 15:27:49 +01002545 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02002546 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adcs;
Matt Porter3cc08dc2006-01-23 15:27:49 +01002547
2548 if (spec->alt_switch) {
2549 codec->num_pcms++;
2550 info++;
2551 info->name = "STAC92xx Analog Alt";
2552 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback;
2553 }
Matt2f2f4252005-04-13 14:45:30 +02002554
Mattdabbed62005-06-14 10:19:34 +02002555 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2556 codec->num_pcms++;
2557 info++;
2558 info->name = "STAC92xx Digital";
Takashi Iwai8c441982009-01-20 18:30:20 +01002559 info->pcm_type = spec->autocfg.dig_out_type;
Mattdabbed62005-06-14 10:19:34 +02002560 if (spec->multiout.dig_out_nid) {
2561 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback;
2562 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2563 }
2564 if (spec->dig_in_nid) {
2565 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture;
2566 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2567 }
2568 }
2569
Matt2f2f4252005-04-13 14:45:30 +02002570 return 0;
2571}
2572
Takashi Iwaic960a032006-03-23 17:06:28 +01002573static unsigned int stac92xx_get_vref(struct hda_codec *codec, hda_nid_t nid)
2574{
2575 unsigned int pincap = snd_hda_param_read(codec, nid,
2576 AC_PAR_PIN_CAP);
2577 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
2578 if (pincap & AC_PINCAP_VREF_100)
2579 return AC_PINCTL_VREF_100;
2580 if (pincap & AC_PINCAP_VREF_80)
2581 return AC_PINCTL_VREF_80;
2582 if (pincap & AC_PINCAP_VREF_50)
2583 return AC_PINCTL_VREF_50;
2584 if (pincap & AC_PINCAP_VREF_GRD)
2585 return AC_PINCTL_VREF_GRD;
2586 return 0;
2587}
2588
Matt Porter403d1942005-11-29 15:00:51 +01002589static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type)
2590
2591{
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002592 snd_hda_codec_write_cache(codec, nid, 0,
2593 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
Matt Porter403d1942005-11-29 15:00:51 +01002594}
2595
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002596#define stac92xx_hp_switch_info snd_ctl_boolean_mono_info
2597
2598static int stac92xx_hp_switch_get(struct snd_kcontrol *kcontrol,
2599 struct snd_ctl_elem_value *ucontrol)
2600{
2601 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2602 struct sigmatel_spec *spec = codec->spec;
2603
Takashi Iwaid7a89432008-11-12 09:48:04 +01002604 ucontrol->value.integer.value[0] = !!spec->hp_switch;
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002605 return 0;
2606}
2607
Takashi Iwaic6e4c662008-11-25 11:58:19 +01002608static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid,
2609 unsigned char type);
2610
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002611static int stac92xx_hp_switch_put(struct snd_kcontrol *kcontrol,
2612 struct snd_ctl_elem_value *ucontrol)
2613{
2614 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2615 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaid7a89432008-11-12 09:48:04 +01002616 int nid = kcontrol->private_value;
2617
2618 spec->hp_switch = ucontrol->value.integer.value[0] ? nid : 0;
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002619
2620 /* check to be sure that the ports are upto date with
2621 * switch changes
2622 */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01002623 stac_issue_unsol_event(codec, nid, STAC_HP_EVENT);
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002624
2625 return 1;
2626}
2627
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002628#define stac92xx_io_switch_info snd_ctl_boolean_mono_info
Matt Porter403d1942005-11-29 15:00:51 +01002629
2630static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2631{
2632 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2633 struct sigmatel_spec *spec = codec->spec;
2634 int io_idx = kcontrol-> private_value & 0xff;
2635
2636 ucontrol->value.integer.value[0] = spec->io_switch[io_idx];
2637 return 0;
2638}
2639
2640static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2641{
2642 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2643 struct sigmatel_spec *spec = codec->spec;
2644 hda_nid_t nid = kcontrol->private_value >> 8;
2645 int io_idx = kcontrol-> private_value & 0xff;
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002646 unsigned short val = !!ucontrol->value.integer.value[0];
Matt Porter403d1942005-11-29 15:00:51 +01002647
2648 spec->io_switch[io_idx] = val;
2649
2650 if (val)
2651 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
Takashi Iwaic960a032006-03-23 17:06:28 +01002652 else {
2653 unsigned int pinctl = AC_PINCTL_IN_EN;
2654 if (io_idx) /* set VREF for mic */
2655 pinctl |= stac92xx_get_vref(codec, nid);
2656 stac92xx_auto_set_pinctl(codec, nid, pinctl);
2657 }
Jiang Zhe40c1d302007-11-12 13:05:16 +01002658
2659 /* check the auto-mute again: we need to mute/unmute the speaker
2660 * appropriately according to the pin direction
2661 */
2662 if (spec->hp_detect)
Takashi Iwaic6e4c662008-11-25 11:58:19 +01002663 stac_issue_unsol_event(codec, nid, STAC_HP_EVENT);
Jiang Zhe40c1d302007-11-12 13:05:16 +01002664
Matt Porter403d1942005-11-29 15:00:51 +01002665 return 1;
2666}
2667
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002668#define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info
2669
2670static int stac92xx_clfe_switch_get(struct snd_kcontrol *kcontrol,
2671 struct snd_ctl_elem_value *ucontrol)
2672{
2673 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2674 struct sigmatel_spec *spec = codec->spec;
2675
2676 ucontrol->value.integer.value[0] = spec->clfe_swap;
2677 return 0;
2678}
2679
2680static int stac92xx_clfe_switch_put(struct snd_kcontrol *kcontrol,
2681 struct snd_ctl_elem_value *ucontrol)
2682{
2683 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2684 struct sigmatel_spec *spec = codec->spec;
2685 hda_nid_t nid = kcontrol->private_value & 0xff;
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002686 unsigned int val = !!ucontrol->value.integer.value[0];
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002687
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002688 if (spec->clfe_swap == val)
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002689 return 0;
2690
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002691 spec->clfe_swap = val;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002692
2693 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
2694 spec->clfe_swap ? 0x4 : 0x0);
2695
2696 return 1;
2697}
2698
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002699#define STAC_CODEC_HP_SWITCH(xname) \
2700 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2701 .name = xname, \
2702 .index = 0, \
2703 .info = stac92xx_hp_switch_info, \
2704 .get = stac92xx_hp_switch_get, \
2705 .put = stac92xx_hp_switch_put, \
2706 }
2707
Matt Porter403d1942005-11-29 15:00:51 +01002708#define STAC_CODEC_IO_SWITCH(xname, xpval) \
2709 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2710 .name = xname, \
2711 .index = 0, \
2712 .info = stac92xx_io_switch_info, \
2713 .get = stac92xx_io_switch_get, \
2714 .put = stac92xx_io_switch_put, \
2715 .private_value = xpval, \
2716 }
2717
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002718#define STAC_CODEC_CLFE_SWITCH(xname, xpval) \
2719 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2720 .name = xname, \
2721 .index = 0, \
2722 .info = stac92xx_clfe_switch_info, \
2723 .get = stac92xx_clfe_switch_get, \
2724 .put = stac92xx_clfe_switch_put, \
2725 .private_value = xpval, \
2726 }
Matt Porter403d1942005-11-29 15:00:51 +01002727
Mattc7d4b2f2005-06-27 14:59:41 +02002728enum {
2729 STAC_CTL_WIDGET_VOL,
2730 STAC_CTL_WIDGET_MUTE,
Matthew Ranostay09a99952008-01-24 11:49:21 +01002731 STAC_CTL_WIDGET_MONO_MUX,
Matthew Ranostay89385032008-09-11 09:49:39 -04002732 STAC_CTL_WIDGET_AMP_MUX,
2733 STAC_CTL_WIDGET_AMP_VOL,
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002734 STAC_CTL_WIDGET_HP_SWITCH,
Matt Porter403d1942005-11-29 15:00:51 +01002735 STAC_CTL_WIDGET_IO_SWITCH,
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002736 STAC_CTL_WIDGET_CLFE_SWITCH
Mattc7d4b2f2005-06-27 14:59:41 +02002737};
2738
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002739static struct snd_kcontrol_new stac92xx_control_templates[] = {
Mattc7d4b2f2005-06-27 14:59:41 +02002740 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2741 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Matthew Ranostay09a99952008-01-24 11:49:21 +01002742 STAC_MONO_MUX,
Matthew Ranostay89385032008-09-11 09:49:39 -04002743 STAC_AMP_MUX,
2744 STAC_AMP_VOL(NULL, 0, 0, 0, 0),
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002745 STAC_CODEC_HP_SWITCH(NULL),
Matt Porter403d1942005-11-29 15:00:51 +01002746 STAC_CODEC_IO_SWITCH(NULL, 0),
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002747 STAC_CODEC_CLFE_SWITCH(NULL, 0),
Mattc7d4b2f2005-06-27 14:59:41 +02002748};
2749
2750/* add dynamic controls */
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002751static int stac92xx_add_control_temp(struct sigmatel_spec *spec,
2752 struct snd_kcontrol_new *ktemp,
2753 int idx, const char *name,
2754 unsigned long val)
Mattc7d4b2f2005-06-27 14:59:41 +02002755{
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002756 struct snd_kcontrol_new *knew;
Mattc7d4b2f2005-06-27 14:59:41 +02002757
Takashi Iwai603c4012008-07-30 15:01:44 +02002758 snd_array_init(&spec->kctls, sizeof(*knew), 32);
2759 knew = snd_array_new(&spec->kctls);
2760 if (!knew)
2761 return -ENOMEM;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002762 *knew = *ktemp;
Matthew Ranostay4682eee2008-08-15 07:43:24 +02002763 knew->index = idx;
Takashi Iwai82fe0c52005-06-30 10:54:33 +02002764 knew->name = kstrdup(name, GFP_KERNEL);
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002765 if (!knew->name)
Mattc7d4b2f2005-06-27 14:59:41 +02002766 return -ENOMEM;
2767 knew->private_value = val;
Mattc7d4b2f2005-06-27 14:59:41 +02002768 return 0;
2769}
2770
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002771static inline int stac92xx_add_control_idx(struct sigmatel_spec *spec,
2772 int type, int idx, const char *name,
2773 unsigned long val)
2774{
2775 return stac92xx_add_control_temp(spec,
2776 &stac92xx_control_templates[type],
2777 idx, name, val);
2778}
2779
Matthew Ranostay4682eee2008-08-15 07:43:24 +02002780
2781/* add dynamic controls */
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002782static inline int stac92xx_add_control(struct sigmatel_spec *spec, int type,
2783 const char *name, unsigned long val)
Matthew Ranostay4682eee2008-08-15 07:43:24 +02002784{
2785 return stac92xx_add_control_idx(spec, type, 0, name, val);
2786}
2787
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002788/* check whether the line-input can be used as line-out */
2789static hda_nid_t check_line_out_switch(struct hda_codec *codec)
Matt Porter403d1942005-11-29 15:00:51 +01002790{
2791 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002792 struct auto_pin_cfg *cfg = &spec->autocfg;
2793 hda_nid_t nid;
2794 unsigned int pincap;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002795
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002796 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2797 return 0;
2798 nid = cfg->input_pins[AUTO_PIN_LINE];
2799 pincap = snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);
2800 if (pincap & AC_PINCAP_OUT)
2801 return nid;
Matt Porter403d1942005-11-29 15:00:51 +01002802 return 0;
2803}
2804
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002805/* check whether the mic-input can be used as line-out */
2806static hda_nid_t check_mic_out_switch(struct hda_codec *codec)
2807{
2808 struct sigmatel_spec *spec = codec->spec;
2809 struct auto_pin_cfg *cfg = &spec->autocfg;
2810 unsigned int def_conf, pincap;
2811 unsigned int mic_pin;
2812
2813 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2814 return 0;
2815 mic_pin = AUTO_PIN_MIC;
2816 for (;;) {
2817 hda_nid_t nid = cfg->input_pins[mic_pin];
2818 def_conf = snd_hda_codec_read(codec, nid, 0,
2819 AC_VERB_GET_CONFIG_DEFAULT, 0);
2820 /* some laptops have an internal analog microphone
2821 * which can't be used as a output */
2822 if (get_defcfg_connect(def_conf) != AC_JACK_PORT_FIXED) {
2823 pincap = snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);
2824 if (pincap & AC_PINCAP_OUT)
2825 return nid;
2826 }
2827 if (mic_pin == AUTO_PIN_MIC)
2828 mic_pin = AUTO_PIN_FRONT_MIC;
2829 else
2830 break;
2831 }
2832 return 0;
2833}
Steve Longerbeam7b043892007-05-03 20:50:03 +02002834
2835static int is_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2836{
2837 int i;
2838
2839 for (i = 0; i < spec->multiout.num_dacs; i++) {
2840 if (spec->multiout.dac_nids[i] == nid)
2841 return 1;
2842 }
2843
2844 return 0;
2845}
2846
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002847static int check_all_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2848{
2849 int i;
2850 if (is_in_dac_nids(spec, nid))
2851 return 1;
2852 for (i = 0; i < spec->autocfg.hp_outs; i++)
2853 if (spec->hp_dacs[i] == nid)
2854 return 1;
2855 for (i = 0; i < spec->autocfg.speaker_outs; i++)
2856 if (spec->speaker_dacs[i] == nid)
2857 return 1;
2858 return 0;
2859}
2860
2861static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid)
2862{
2863 struct sigmatel_spec *spec = codec->spec;
2864 int j, conn_len;
2865 hda_nid_t conn[HDA_MAX_CONNECTIONS];
2866 unsigned int wcaps, wtype;
2867
2868 conn_len = snd_hda_get_connections(codec, nid, conn,
2869 HDA_MAX_CONNECTIONS);
2870 for (j = 0; j < conn_len; j++) {
2871 wcaps = snd_hda_param_read(codec, conn[j],
2872 AC_PAR_AUDIO_WIDGET_CAP);
2873 wtype = (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
2874 /* we check only analog outputs */
2875 if (wtype != AC_WID_AUD_OUT || (wcaps & AC_WCAP_DIGITAL))
2876 continue;
2877 /* if this route has a free DAC, assign it */
2878 if (!check_all_dac_nids(spec, conn[j])) {
2879 if (conn_len > 1) {
2880 /* select this DAC in the pin's input mux */
2881 snd_hda_codec_write_cache(codec, nid, 0,
2882 AC_VERB_SET_CONNECT_SEL, j);
2883 }
2884 return conn[j];
2885 }
2886 }
2887 return 0;
2888}
2889
2890static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
2891static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
2892
Matt Porter3cc08dc2006-01-23 15:27:49 +01002893/*
Steve Longerbeam7b043892007-05-03 20:50:03 +02002894 * Fill in the dac_nids table from the parsed pin configuration
2895 * This function only works when every pin in line_out_pins[]
2896 * contains atleast one DAC in its connection list. Some 92xx
2897 * codecs are not connected directly to a DAC, such as the 9200
2898 * and 9202/925x. For those, dac_nids[] must be hard-coded.
Matt Porter3cc08dc2006-01-23 15:27:49 +01002899 */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002900static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec)
Mattc7d4b2f2005-06-27 14:59:41 +02002901{
2902 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002903 struct auto_pin_cfg *cfg = &spec->autocfg;
2904 int i;
2905 hda_nid_t nid, dac;
Steve Longerbeam7b043892007-05-03 20:50:03 +02002906
Mattc7d4b2f2005-06-27 14:59:41 +02002907 for (i = 0; i < cfg->line_outs; i++) {
2908 nid = cfg->line_out_pins[i];
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002909 dac = get_unassigned_dac(codec, nid);
2910 if (!dac) {
Takashi Iwaidf802952007-07-02 19:18:00 +02002911 if (spec->multiout.num_dacs > 0) {
2912 /* we have already working output pins,
2913 * so let's drop the broken ones again
2914 */
2915 cfg->line_outs = spec->multiout.num_dacs;
2916 break;
2917 }
Steve Longerbeam7b043892007-05-03 20:50:03 +02002918 /* error out, no available DAC found */
2919 snd_printk(KERN_ERR
2920 "%s: No available DAC for pin 0x%x\n",
2921 __func__, nid);
2922 return -ENODEV;
2923 }
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002924 add_spec_dacs(spec, dac);
2925 }
Steve Longerbeam7b043892007-05-03 20:50:03 +02002926
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002927 /* add line-in as output */
2928 nid = check_line_out_switch(codec);
2929 if (nid) {
2930 dac = get_unassigned_dac(codec, nid);
2931 if (dac) {
2932 snd_printdd("STAC: Add line-in 0x%x as output %d\n",
2933 nid, cfg->line_outs);
2934 cfg->line_out_pins[cfg->line_outs] = nid;
2935 cfg->line_outs++;
2936 spec->line_switch = nid;
2937 add_spec_dacs(spec, dac);
2938 }
2939 }
2940 /* add mic as output */
2941 nid = check_mic_out_switch(codec);
2942 if (nid) {
2943 dac = get_unassigned_dac(codec, nid);
2944 if (dac) {
2945 snd_printdd("STAC: Add mic-in 0x%x as output %d\n",
2946 nid, cfg->line_outs);
2947 cfg->line_out_pins[cfg->line_outs] = nid;
2948 cfg->line_outs++;
2949 spec->mic_switch = nid;
2950 add_spec_dacs(spec, dac);
Steve Longerbeam7b043892007-05-03 20:50:03 +02002951 }
Mattc7d4b2f2005-06-27 14:59:41 +02002952 }
2953
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002954 for (i = 0; i < cfg->hp_outs; i++) {
2955 nid = cfg->hp_pins[i];
2956 dac = get_unassigned_dac(codec, nid);
2957 if (dac) {
2958 if (!spec->multiout.hp_nid)
2959 spec->multiout.hp_nid = dac;
2960 else
2961 add_spec_extra_dacs(spec, dac);
2962 }
2963 spec->hp_dacs[i] = dac;
2964 }
2965
2966 for (i = 0; i < cfg->speaker_outs; i++) {
2967 nid = cfg->speaker_pins[i];
2968 dac = get_unassigned_dac(codec, nid);
2969 if (dac)
2970 add_spec_extra_dacs(spec, dac);
2971 spec->speaker_dacs[i] = dac;
2972 }
2973
2974 snd_printd("stac92xx: dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
Steve Longerbeam7b043892007-05-03 20:50:03 +02002975 spec->multiout.num_dacs,
2976 spec->multiout.dac_nids[0],
2977 spec->multiout.dac_nids[1],
2978 spec->multiout.dac_nids[2],
2979 spec->multiout.dac_nids[3],
2980 spec->multiout.dac_nids[4]);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002981
Mattc7d4b2f2005-06-27 14:59:41 +02002982 return 0;
2983}
2984
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002985/* create volume control/switch for the given prefx type */
Takashi Iwai7c7767e2009-01-20 15:28:38 +01002986static int create_controls(struct hda_codec *codec, const char *pfx,
2987 hda_nid_t nid, int chs)
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002988{
Takashi Iwai7c7767e2009-01-20 15:28:38 +01002989 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002990 char name[32];
2991 int err;
2992
Takashi Iwai7c7767e2009-01-20 15:28:38 +01002993 if (!spec->check_volume_offset) {
2994 unsigned int caps, step, nums, db_scale;
2995 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
2996 step = (caps & AC_AMPCAP_STEP_SIZE) >>
2997 AC_AMPCAP_STEP_SIZE_SHIFT;
2998 step = (step + 1) * 25; /* in .01dB unit */
2999 nums = (caps & AC_AMPCAP_NUM_STEPS) >>
3000 AC_AMPCAP_NUM_STEPS_SHIFT;
3001 db_scale = nums * step;
3002 /* if dB scale is over -64dB, and finer enough,
3003 * let's reduce it to half
3004 */
3005 if (db_scale > 6400 && nums >= 0x1f)
3006 spec->volume_offset = nums / 2;
3007 spec->check_volume_offset = 1;
3008 }
3009
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003010 sprintf(name, "%s Playback Volume", pfx);
3011 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, name,
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003012 HDA_COMPOSE_AMP_VAL_OFS(nid, chs, 0, HDA_OUTPUT,
3013 spec->volume_offset));
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003014 if (err < 0)
3015 return err;
3016 sprintf(name, "%s Playback Switch", pfx);
3017 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, name,
3018 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
3019 if (err < 0)
3020 return err;
3021 return 0;
3022}
3023
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003024static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
3025{
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003026 if (spec->multiout.num_dacs > 4) {
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003027 printk(KERN_WARNING "stac92xx: No space for DAC 0x%x\n", nid);
3028 return 1;
3029 } else {
3030 spec->multiout.dac_nids[spec->multiout.num_dacs] = nid;
3031 spec->multiout.num_dacs++;
3032 }
3033 return 0;
3034}
3035
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003036static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003037{
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003038 int i;
3039 for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++) {
3040 if (!spec->multiout.extra_out_nid[i]) {
3041 spec->multiout.extra_out_nid[i] = nid;
3042 return 0;
3043 }
3044 }
3045 printk(KERN_WARNING "stac92xx: No space for extra DAC 0x%x\n", nid);
3046 return 1;
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003047}
3048
Takashi Iwai76624532008-12-19 10:09:47 +01003049static int is_unique_dac(struct sigmatel_spec *spec, hda_nid_t nid)
3050{
3051 int i;
3052
3053 if (spec->autocfg.line_outs != 1)
3054 return 0;
3055 if (spec->multiout.hp_nid == nid)
3056 return 0;
3057 for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++)
3058 if (spec->multiout.extra_out_nid[i] == nid)
3059 return 0;
3060 return 1;
3061}
3062
Mattc7d4b2f2005-06-27 14:59:41 +02003063/* add playback controls from the parsed DAC table */
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003064static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec,
Takashi Iwai19039bd2006-06-28 15:52:16 +02003065 const struct auto_pin_cfg *cfg)
Mattc7d4b2f2005-06-27 14:59:41 +02003066{
Takashi Iwai76624532008-12-19 10:09:47 +01003067 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai19039bd2006-06-28 15:52:16 +02003068 static const char *chname[4] = {
3069 "Front", "Surround", NULL /*CLFE*/, "Side"
3070 };
Matthew Ranostayd21995e2008-10-13 13:22:45 -04003071 hda_nid_t nid = 0;
Takashi Iwai91589232008-12-19 15:59:40 +01003072 int i, err;
3073 unsigned int wid_caps;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003074
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003075 for (i = 0; i < cfg->line_outs && spec->multiout.dac_nids[i]; i++) {
Mattc7d4b2f2005-06-27 14:59:41 +02003076 nid = spec->multiout.dac_nids[i];
Mattc7d4b2f2005-06-27 14:59:41 +02003077 if (i == 2) {
3078 /* Center/LFE */
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003079 err = create_controls(codec, "Center", nid, 1);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003080 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003081 return err;
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003082 err = create_controls(codec, "LFE", nid, 2);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003083 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003084 return err;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003085
3086 wid_caps = get_wcaps(codec, nid);
3087
3088 if (wid_caps & AC_WCAP_LR_SWAP) {
3089 err = stac92xx_add_control(spec,
3090 STAC_CTL_WIDGET_CLFE_SWITCH,
3091 "Swap Center/LFE Playback Switch", nid);
3092
3093 if (err < 0)
3094 return err;
3095 }
3096
Mattc7d4b2f2005-06-27 14:59:41 +02003097 } else {
Takashi Iwai76624532008-12-19 10:09:47 +01003098 const char *name = chname[i];
3099 /* if it's a single DAC, assign a better name */
3100 if (!i && is_unique_dac(spec, nid)) {
3101 switch (cfg->line_out_type) {
3102 case AUTO_PIN_HP_OUT:
3103 name = "Headphone";
3104 break;
3105 case AUTO_PIN_SPEAKER_OUT:
3106 name = "Speaker";
3107 break;
3108 }
3109 }
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003110 err = create_controls(codec, name, nid, 3);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003111 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003112 return err;
3113 }
3114 }
3115
Takashi Iwaia9cb5c92008-11-24 07:51:11 +01003116 if (cfg->hp_outs > 1 && cfg->line_out_type == AUTO_PIN_LINE_OUT) {
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02003117 err = stac92xx_add_control(spec,
3118 STAC_CTL_WIDGET_HP_SWITCH,
Takashi Iwaid7a89432008-11-12 09:48:04 +01003119 "Headphone as Line Out Switch",
3120 cfg->hp_pins[cfg->hp_outs - 1]);
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02003121 if (err < 0)
3122 return err;
3123 }
3124
Matthew Ranostayb5895dc2008-01-25 15:24:50 +01003125 if (spec->line_switch) {
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003126 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_IO_SWITCH,
3127 "Line In as Output Switch",
3128 spec->line_switch << 8);
3129 if (err < 0)
3130 return err;
Matthew Ranostayb5895dc2008-01-25 15:24:50 +01003131 }
Matt Porter403d1942005-11-29 15:00:51 +01003132
Matthew Ranostayb5895dc2008-01-25 15:24:50 +01003133 if (spec->mic_switch) {
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003134 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_IO_SWITCH,
3135 "Mic as Output Switch",
3136 (spec->mic_switch << 8) | 1);
3137 if (err < 0)
3138 return err;
Matthew Ranostayb5895dc2008-01-25 15:24:50 +01003139 }
Matt Porter403d1942005-11-29 15:00:51 +01003140
Mattc7d4b2f2005-06-27 14:59:41 +02003141 return 0;
3142}
3143
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003144/* add playback controls for Speaker and HP outputs */
3145static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec,
3146 struct auto_pin_cfg *cfg)
Mattc7d4b2f2005-06-27 14:59:41 +02003147{
3148 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +02003149 hda_nid_t nid;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003150 int i, err, nums;
Mattc7d4b2f2005-06-27 14:59:41 +02003151
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003152 nums = 0;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003153 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003154 static const char *pfxs[] = {
3155 "Headphone", "Headphone2", "Headphone3",
3156 };
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003157 unsigned int wid_caps = get_wcaps(codec, cfg->hp_pins[i]);
3158 if (wid_caps & AC_WCAP_UNSOL_CAP)
3159 spec->hp_detect = 1;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003160 if (nums >= ARRAY_SIZE(pfxs))
Mattc7d4b2f2005-06-27 14:59:41 +02003161 continue;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003162 nid = spec->hp_dacs[i];
3163 if (!nid)
3164 continue;
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003165 err = create_controls(codec, pfxs[nums++], nid, 3);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003166 if (err < 0)
3167 return err;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003168 }
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003169 nums = 0;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003170 for (i = 0; i < cfg->speaker_outs; i++) {
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003171 static const char *pfxs[] = {
3172 "Speaker", "External Speaker", "Speaker2",
3173 };
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003174 if (nums >= ARRAY_SIZE(pfxs))
3175 continue;
3176 nid = spec->speaker_dacs[i];
3177 if (!nid)
3178 continue;
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003179 err = create_controls(codec, pfxs[nums++], nid, 3);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003180 if (err < 0)
3181 return err;
3182 }
Mattc7d4b2f2005-06-27 14:59:41 +02003183 return 0;
3184}
3185
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003186/* labels for mono mux outputs */
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003187static const char *stac92xx_mono_labels[4] = {
3188 "DAC0", "DAC1", "Mixer", "DAC2"
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003189};
3190
3191/* create mono mux for mono out on capable codecs */
3192static int stac92xx_auto_create_mono_output_ctls(struct hda_codec *codec)
3193{
3194 struct sigmatel_spec *spec = codec->spec;
3195 struct hda_input_mux *mono_mux = &spec->private_mono_mux;
3196 int i, num_cons;
3197 hda_nid_t con_lst[ARRAY_SIZE(stac92xx_mono_labels)];
3198
3199 num_cons = snd_hda_get_connections(codec,
3200 spec->mono_nid,
3201 con_lst,
3202 HDA_MAX_NUM_INPUTS);
3203 if (!num_cons || num_cons > ARRAY_SIZE(stac92xx_mono_labels))
3204 return -EINVAL;
3205
3206 for (i = 0; i < num_cons; i++) {
3207 mono_mux->items[mono_mux->num_items].label =
3208 stac92xx_mono_labels[i];
3209 mono_mux->items[mono_mux->num_items].index = i;
3210 mono_mux->num_items++;
3211 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003212
3213 return stac92xx_add_control(spec, STAC_CTL_WIDGET_MONO_MUX,
3214 "Mono Mux", spec->mono_nid);
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003215}
3216
Matthew Ranostay89385032008-09-11 09:49:39 -04003217/* labels for amp mux outputs */
3218static const char *stac92xx_amp_labels[3] = {
Matthew Ranostay4b33c762008-10-10 09:07:23 -04003219 "Front Microphone", "Microphone", "Line In",
Matthew Ranostay89385032008-09-11 09:49:39 -04003220};
3221
3222/* create amp out controls mux on capable codecs */
3223static int stac92xx_auto_create_amp_output_ctls(struct hda_codec *codec)
3224{
3225 struct sigmatel_spec *spec = codec->spec;
3226 struct hda_input_mux *amp_mux = &spec->private_amp_mux;
3227 int i, err;
3228
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04003229 for (i = 0; i < spec->num_amps; i++) {
Matthew Ranostay89385032008-09-11 09:49:39 -04003230 amp_mux->items[amp_mux->num_items].label =
3231 stac92xx_amp_labels[i];
3232 amp_mux->items[amp_mux->num_items].index = i;
3233 amp_mux->num_items++;
3234 }
3235
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04003236 if (spec->num_amps > 1) {
3237 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_AMP_MUX,
3238 "Amp Selector Capture Switch", 0);
3239 if (err < 0)
3240 return err;
3241 }
Matthew Ranostay89385032008-09-11 09:49:39 -04003242 return stac92xx_add_control(spec, STAC_CTL_WIDGET_AMP_VOL,
3243 "Amp Capture Volume",
3244 HDA_COMPOSE_AMP_VAL(spec->amp_nids[0], 3, 0, HDA_INPUT));
3245}
3246
3247
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003248/* create PC beep volume controls */
3249static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec,
3250 hda_nid_t nid)
3251{
3252 struct sigmatel_spec *spec = codec->spec;
3253 u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3254 int err;
3255
3256 /* check for mute support for the the amp */
3257 if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) {
3258 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
3259 "PC Beep Playback Switch",
3260 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3261 if (err < 0)
3262 return err;
3263 }
3264
3265 /* check to see if there is volume support for the amp */
3266 if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3267 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL,
3268 "PC Beep Playback Volume",
3269 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3270 if (err < 0)
3271 return err;
3272 }
3273 return 0;
3274}
3275
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003276#ifdef CONFIG_SND_HDA_INPUT_BEEP
3277#define stac92xx_dig_beep_switch_info snd_ctl_boolean_mono_info
3278
3279static int stac92xx_dig_beep_switch_get(struct snd_kcontrol *kcontrol,
3280 struct snd_ctl_elem_value *ucontrol)
3281{
3282 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3283 ucontrol->value.integer.value[0] = codec->beep->enabled;
3284 return 0;
3285}
3286
3287static int stac92xx_dig_beep_switch_put(struct snd_kcontrol *kcontrol,
3288 struct snd_ctl_elem_value *ucontrol)
3289{
3290 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3291 int enabled = !!ucontrol->value.integer.value[0];
3292 if (codec->beep->enabled != enabled) {
3293 codec->beep->enabled = enabled;
3294 return 1;
3295 }
3296 return 0;
3297}
3298
3299static struct snd_kcontrol_new stac92xx_dig_beep_ctrl = {
3300 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3301 .info = stac92xx_dig_beep_switch_info,
3302 .get = stac92xx_dig_beep_switch_get,
3303 .put = stac92xx_dig_beep_switch_put,
3304};
3305
3306static int stac92xx_beep_switch_ctl(struct hda_codec *codec)
3307{
3308 return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl,
3309 0, "PC Beep Playback Switch", 0);
3310}
3311#endif
3312
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003313static int stac92xx_auto_create_mux_input_ctls(struct hda_codec *codec)
3314{
3315 struct sigmatel_spec *spec = codec->spec;
3316 int wcaps, nid, i, err = 0;
3317
3318 for (i = 0; i < spec->num_muxes; i++) {
3319 nid = spec->mux_nids[i];
3320 wcaps = get_wcaps(codec, nid);
3321
3322 if (wcaps & AC_WCAP_OUT_AMP) {
3323 err = stac92xx_add_control_idx(spec,
3324 STAC_CTL_WIDGET_VOL, i, "Mux Capture Volume",
3325 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3326 if (err < 0)
3327 return err;
3328 }
3329 }
3330 return 0;
3331};
3332
Matthew Ranostayd9737752008-09-07 12:03:41 +02003333static const char *stac92xx_spdif_labels[3] = {
Matthew Ranostay65973632008-09-16 10:39:37 -04003334 "Digital Playback", "Analog Mux 1", "Analog Mux 2",
Matthew Ranostayd9737752008-09-07 12:03:41 +02003335};
3336
3337static int stac92xx_auto_create_spdif_mux_ctls(struct hda_codec *codec)
3338{
3339 struct sigmatel_spec *spec = codec->spec;
3340 struct hda_input_mux *spdif_mux = &spec->private_smux;
Matthew Ranostay65973632008-09-16 10:39:37 -04003341 const char **labels = spec->spdif_labels;
Matthew Ranostayd9737752008-09-07 12:03:41 +02003342 int i, num_cons;
Matthew Ranostay65973632008-09-16 10:39:37 -04003343 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
Matthew Ranostayd9737752008-09-07 12:03:41 +02003344
3345 num_cons = snd_hda_get_connections(codec,
3346 spec->smux_nids[0],
3347 con_lst,
3348 HDA_MAX_NUM_INPUTS);
Matthew Ranostay65973632008-09-16 10:39:37 -04003349 if (!num_cons)
Matthew Ranostayd9737752008-09-07 12:03:41 +02003350 return -EINVAL;
3351
Matthew Ranostay65973632008-09-16 10:39:37 -04003352 if (!labels)
3353 labels = stac92xx_spdif_labels;
3354
Matthew Ranostayd9737752008-09-07 12:03:41 +02003355 for (i = 0; i < num_cons; i++) {
Matthew Ranostay65973632008-09-16 10:39:37 -04003356 spdif_mux->items[spdif_mux->num_items].label = labels[i];
Matthew Ranostayd9737752008-09-07 12:03:41 +02003357 spdif_mux->items[spdif_mux->num_items].index = i;
3358 spdif_mux->num_items++;
3359 }
3360
3361 return 0;
3362}
3363
Matt Porter8b657272006-10-26 17:12:59 +02003364/* labels for dmic mux inputs */
Adrian Bunkddc2cec2006-11-20 12:03:44 +01003365static const char *stac92xx_dmic_labels[5] = {
Matt Porter8b657272006-10-26 17:12:59 +02003366 "Analog Inputs", "Digital Mic 1", "Digital Mic 2",
3367 "Digital Mic 3", "Digital Mic 4"
3368};
3369
3370/* create playback/capture controls for input pins on dmic capable codecs */
3371static int stac92xx_auto_create_dmic_input_ctls(struct hda_codec *codec,
3372 const struct auto_pin_cfg *cfg)
3373{
3374 struct sigmatel_spec *spec = codec->spec;
3375 struct hda_input_mux *dimux = &spec->private_dimux;
3376 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003377 int err, i, j;
3378 char name[32];
Matt Porter8b657272006-10-26 17:12:59 +02003379
3380 dimux->items[dimux->num_items].label = stac92xx_dmic_labels[0];
3381 dimux->items[dimux->num_items].index = 0;
3382 dimux->num_items++;
3383
3384 for (i = 0; i < spec->num_dmics; i++) {
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003385 hda_nid_t nid;
Matt Porter8b657272006-10-26 17:12:59 +02003386 int index;
3387 int num_cons;
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003388 unsigned int wcaps;
Matt Porter8b657272006-10-26 17:12:59 +02003389 unsigned int def_conf;
3390
3391 def_conf = snd_hda_codec_read(codec,
3392 spec->dmic_nids[i],
3393 0,
3394 AC_VERB_GET_CONFIG_DEFAULT,
3395 0);
3396 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3397 continue;
3398
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003399 nid = spec->dmic_nids[i];
Matt Porter8b657272006-10-26 17:12:59 +02003400 num_cons = snd_hda_get_connections(codec,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003401 spec->dmux_nids[0],
Matt Porter8b657272006-10-26 17:12:59 +02003402 con_lst,
3403 HDA_MAX_NUM_INPUTS);
3404 for (j = 0; j < num_cons; j++)
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003405 if (con_lst[j] == nid) {
Matt Porter8b657272006-10-26 17:12:59 +02003406 index = j;
3407 goto found;
3408 }
3409 continue;
3410found:
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003411 wcaps = get_wcaps(codec, nid) &
3412 (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP);
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003413
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003414 if (wcaps) {
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003415 sprintf(name, "%s Capture Volume",
3416 stac92xx_dmic_labels[dimux->num_items]);
3417
3418 err = stac92xx_add_control(spec,
3419 STAC_CTL_WIDGET_VOL,
3420 name,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003421 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3422 (wcaps & AC_WCAP_OUT_AMP) ?
3423 HDA_OUTPUT : HDA_INPUT));
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003424 if (err < 0)
3425 return err;
3426 }
3427
Matt Porter8b657272006-10-26 17:12:59 +02003428 dimux->items[dimux->num_items].label =
3429 stac92xx_dmic_labels[dimux->num_items];
3430 dimux->items[dimux->num_items].index = index;
3431 dimux->num_items++;
3432 }
3433
3434 return 0;
3435}
3436
Mattc7d4b2f2005-06-27 14:59:41 +02003437/* create playback/capture controls for input pins */
3438static int stac92xx_auto_create_analog_input_ctls(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
3439{
3440 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +02003441 struct hda_input_mux *imux = &spec->private_imux;
3442 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
3443 int i, j, k;
3444
3445 for (i = 0; i < AUTO_PIN_LAST; i++) {
Takashi Iwai314634b2006-09-21 11:56:18 +02003446 int index;
Mattc7d4b2f2005-06-27 14:59:41 +02003447
Takashi Iwai314634b2006-09-21 11:56:18 +02003448 if (!cfg->input_pins[i])
3449 continue;
3450 index = -1;
3451 for (j = 0; j < spec->num_muxes; j++) {
3452 int num_cons;
3453 num_cons = snd_hda_get_connections(codec,
3454 spec->mux_nids[j],
3455 con_lst,
3456 HDA_MAX_NUM_INPUTS);
3457 for (k = 0; k < num_cons; k++)
3458 if (con_lst[k] == cfg->input_pins[i]) {
3459 index = k;
3460 goto found;
3461 }
Mattc7d4b2f2005-06-27 14:59:41 +02003462 }
Takashi Iwai314634b2006-09-21 11:56:18 +02003463 continue;
3464 found:
3465 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
3466 imux->items[imux->num_items].index = index;
3467 imux->num_items++;
Mattc7d4b2f2005-06-27 14:59:41 +02003468 }
3469
Steve Longerbeam7b043892007-05-03 20:50:03 +02003470 if (imux->num_items) {
Sam Revitch62fe78e2006-05-10 15:09:17 +02003471 /*
3472 * Set the current input for the muxes.
3473 * The STAC9221 has two input muxes with identical source
3474 * NID lists. Hopefully this won't get confused.
3475 */
3476 for (i = 0; i < spec->num_muxes; i++) {
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003477 snd_hda_codec_write_cache(codec, spec->mux_nids[i], 0,
3478 AC_VERB_SET_CONNECT_SEL,
3479 imux->items[0].index);
Sam Revitch62fe78e2006-05-10 15:09:17 +02003480 }
3481 }
3482
Mattc7d4b2f2005-06-27 14:59:41 +02003483 return 0;
3484}
3485
Mattc7d4b2f2005-06-27 14:59:41 +02003486static void stac92xx_auto_init_multi_out(struct hda_codec *codec)
3487{
3488 struct sigmatel_spec *spec = codec->spec;
3489 int i;
3490
3491 for (i = 0; i < spec->autocfg.line_outs; i++) {
3492 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3493 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
3494 }
3495}
3496
3497static void stac92xx_auto_init_hp_out(struct hda_codec *codec)
3498{
3499 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003500 int i;
Mattc7d4b2f2005-06-27 14:59:41 +02003501
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003502 for (i = 0; i < spec->autocfg.hp_outs; i++) {
3503 hda_nid_t pin;
3504 pin = spec->autocfg.hp_pins[i];
3505 if (pin) /* connect to front */
3506 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3507 }
3508 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
3509 hda_nid_t pin;
3510 pin = spec->autocfg.speaker_pins[i];
3511 if (pin) /* connect to front */
3512 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN);
3513 }
Mattc7d4b2f2005-06-27 14:59:41 +02003514}
3515
Matt Porter3cc08dc2006-01-23 15:27:49 +01003516static 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 +02003517{
3518 struct sigmatel_spec *spec = codec->spec;
3519 int err;
3520
Matt Porter8b657272006-10-26 17:12:59 +02003521 if ((err = snd_hda_parse_pin_def_config(codec,
3522 &spec->autocfg,
3523 spec->dmic_nids)) < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003524 return err;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003525 if (! spec->autocfg.line_outs)
Matt Porter869264c2006-01-25 19:20:50 +01003526 return 0; /* can't find valid pin config */
Takashi Iwai19039bd2006-06-28 15:52:16 +02003527
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003528 /* If we have no real line-out pin and multiple hp-outs, HPs should
3529 * be set up as multi-channel outputs.
3530 */
3531 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT &&
3532 spec->autocfg.hp_outs > 1) {
3533 /* Copy hp_outs to line_outs, backup line_outs in
3534 * speaker_outs so that the following routines can handle
3535 * HP pins as primary outputs.
3536 */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003537 snd_printdd("stac92xx: Enabling multi-HPs workaround\n");
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003538 memcpy(spec->autocfg.speaker_pins, spec->autocfg.line_out_pins,
3539 sizeof(spec->autocfg.line_out_pins));
3540 spec->autocfg.speaker_outs = spec->autocfg.line_outs;
3541 memcpy(spec->autocfg.line_out_pins, spec->autocfg.hp_pins,
3542 sizeof(spec->autocfg.hp_pins));
3543 spec->autocfg.line_outs = spec->autocfg.hp_outs;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003544 spec->autocfg.line_out_type = AUTO_PIN_HP_OUT;
3545 spec->autocfg.hp_outs = 0;
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003546 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003547 if (spec->autocfg.mono_out_pin) {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003548 int dir = get_wcaps(codec, spec->autocfg.mono_out_pin) &
3549 (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP);
Matthew Ranostay09a99952008-01-24 11:49:21 +01003550 u32 caps = query_amp_caps(codec,
3551 spec->autocfg.mono_out_pin, dir);
3552 hda_nid_t conn_list[1];
3553
3554 /* get the mixer node and then the mono mux if it exists */
3555 if (snd_hda_get_connections(codec,
3556 spec->autocfg.mono_out_pin, conn_list, 1) &&
3557 snd_hda_get_connections(codec, conn_list[0],
3558 conn_list, 1)) {
3559
3560 int wcaps = get_wcaps(codec, conn_list[0]);
3561 int wid_type = (wcaps & AC_WCAP_TYPE)
3562 >> AC_WCAP_TYPE_SHIFT;
3563 /* LR swap check, some stac925x have a mux that
3564 * changes the DACs output path instead of the
3565 * mono-mux path.
3566 */
3567 if (wid_type == AC_WID_AUD_SEL &&
3568 !(wcaps & AC_WCAP_LR_SWAP))
3569 spec->mono_nid = conn_list[0];
3570 }
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003571 if (dir) {
3572 hda_nid_t nid = spec->autocfg.mono_out_pin;
3573
3574 /* most mono outs have a least a mute/unmute switch */
3575 dir = (dir & AC_WCAP_OUT_AMP) ? HDA_OUTPUT : HDA_INPUT;
3576 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
3577 "Mono Playback Switch",
3578 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
Matthew Ranostay09a99952008-01-24 11:49:21 +01003579 if (err < 0)
3580 return err;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003581 /* check for volume support for the amp */
3582 if ((caps & AC_AMPCAP_NUM_STEPS)
3583 >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3584 err = stac92xx_add_control(spec,
3585 STAC_CTL_WIDGET_VOL,
3586 "Mono Playback Volume",
3587 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
3588 if (err < 0)
3589 return err;
3590 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003591 }
3592
3593 stac92xx_auto_set_pinctl(codec, spec->autocfg.mono_out_pin,
3594 AC_PINCTL_OUT_EN);
3595 }
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003596
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003597 if (!spec->multiout.num_dacs) {
3598 err = stac92xx_auto_fill_dac_nids(codec);
3599 if (err < 0)
Takashi Iwai19039bd2006-06-28 15:52:16 +02003600 return err;
Takashi Iwaic9280d62009-01-15 17:31:00 +01003601 err = stac92xx_auto_create_multi_out_ctls(codec,
3602 &spec->autocfg);
3603 if (err < 0)
3604 return err;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003605 }
Mattc7d4b2f2005-06-27 14:59:41 +02003606
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003607 /* setup analog beep controls */
3608 if (spec->anabeep_nid > 0) {
3609 err = stac92xx_auto_create_beep_ctls(codec,
3610 spec->anabeep_nid);
3611 if (err < 0)
3612 return err;
3613 }
3614
3615 /* setup digital beep controls and input device */
3616#ifdef CONFIG_SND_HDA_INPUT_BEEP
3617 if (spec->digbeep_nid > 0) {
3618 hda_nid_t nid = spec->digbeep_nid;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003619 unsigned int caps;
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003620
3621 err = stac92xx_auto_create_beep_ctls(codec, nid);
3622 if (err < 0)
3623 return err;
3624 err = snd_hda_attach_beep_device(codec, nid);
3625 if (err < 0)
3626 return err;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003627 /* if no beep switch is available, make its own one */
3628 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3629 if (codec->beep &&
3630 !((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT)) {
3631 err = stac92xx_beep_switch_ctl(codec);
3632 if (err < 0)
3633 return err;
3634 }
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003635 }
3636#endif
3637
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003638 err = stac92xx_auto_create_hp_ctls(codec, &spec->autocfg);
3639
3640 if (err < 0)
3641 return err;
3642
3643 err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg);
3644
3645 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003646 return err;
3647
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003648 if (spec->mono_nid > 0) {
3649 err = stac92xx_auto_create_mono_output_ctls(codec);
3650 if (err < 0)
3651 return err;
3652 }
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04003653 if (spec->num_amps > 0) {
Matthew Ranostay89385032008-09-11 09:49:39 -04003654 err = stac92xx_auto_create_amp_output_ctls(codec);
3655 if (err < 0)
3656 return err;
3657 }
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04003658 if (spec->num_dmics > 0 && !spec->dinput_mux)
Matt Porter8b657272006-10-26 17:12:59 +02003659 if ((err = stac92xx_auto_create_dmic_input_ctls(codec,
3660 &spec->autocfg)) < 0)
3661 return err;
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003662 if (spec->num_muxes > 0) {
3663 err = stac92xx_auto_create_mux_input_ctls(codec);
3664 if (err < 0)
3665 return err;
3666 }
Matthew Ranostayd9737752008-09-07 12:03:41 +02003667 if (spec->num_smuxes > 0) {
3668 err = stac92xx_auto_create_spdif_mux_ctls(codec);
3669 if (err < 0)
3670 return err;
3671 }
Matt Porter8b657272006-10-26 17:12:59 +02003672
Mattc7d4b2f2005-06-27 14:59:41 +02003673 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
Matt Porter403d1942005-11-29 15:00:51 +01003674 if (spec->multiout.max_channels > 2)
Mattc7d4b2f2005-06-27 14:59:41 +02003675 spec->surr_switch = 1;
Mattc7d4b2f2005-06-27 14:59:41 +02003676
Takashi Iwai82bc9552006-03-21 11:24:42 +01003677 if (spec->autocfg.dig_out_pin)
Matt Porter3cc08dc2006-01-23 15:27:49 +01003678 spec->multiout.dig_out_nid = dig_out;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003679 if (dig_in && spec->autocfg.dig_in_pin)
Matt Porter3cc08dc2006-01-23 15:27:49 +01003680 spec->dig_in_nid = dig_in;
Mattc7d4b2f2005-06-27 14:59:41 +02003681
Takashi Iwai603c4012008-07-30 15:01:44 +02003682 if (spec->kctls.list)
3683 spec->mixers[spec->num_mixers++] = spec->kctls.list;
Mattc7d4b2f2005-06-27 14:59:41 +02003684
3685 spec->input_mux = &spec->private_imux;
Matthew Ranostayf8ccbf62008-12-20 17:36:28 -05003686 if (!spec->dinput_mux)
3687 spec->dinput_mux = &spec->private_dimux;
Matthew Ranostayd9737752008-09-07 12:03:41 +02003688 spec->sinput_mux = &spec->private_smux;
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003689 spec->mono_mux = &spec->private_mono_mux;
Matthew Ranostay89385032008-09-11 09:49:39 -04003690 spec->amp_mux = &spec->private_amp_mux;
Mattc7d4b2f2005-06-27 14:59:41 +02003691 return 1;
3692}
3693
Takashi Iwai82bc9552006-03-21 11:24:42 +01003694/* add playback controls for HP output */
3695static int stac9200_auto_create_hp_ctls(struct hda_codec *codec,
3696 struct auto_pin_cfg *cfg)
3697{
3698 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003699 hda_nid_t pin = cfg->hp_pins[0];
Takashi Iwai82bc9552006-03-21 11:24:42 +01003700 unsigned int wid_caps;
3701
3702 if (! pin)
3703 return 0;
3704
3705 wid_caps = get_wcaps(codec, pin);
Takashi Iwai505cb342006-03-27 12:51:52 +02003706 if (wid_caps & AC_WCAP_UNSOL_CAP)
Takashi Iwai82bc9552006-03-21 11:24:42 +01003707 spec->hp_detect = 1;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003708
3709 return 0;
3710}
3711
Richard Fish160ea0d2006-09-06 13:58:25 +02003712/* add playback controls for LFE output */
3713static int stac9200_auto_create_lfe_ctls(struct hda_codec *codec,
3714 struct auto_pin_cfg *cfg)
3715{
3716 struct sigmatel_spec *spec = codec->spec;
3717 int err;
3718 hda_nid_t lfe_pin = 0x0;
3719 int i;
3720
3721 /*
3722 * search speaker outs and line outs for a mono speaker pin
3723 * with an amp. If one is found, add LFE controls
3724 * for it.
3725 */
3726 for (i = 0; i < spec->autocfg.speaker_outs && lfe_pin == 0x0; i++) {
3727 hda_nid_t pin = spec->autocfg.speaker_pins[i];
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003728 unsigned int wcaps = get_wcaps(codec, pin);
Richard Fish160ea0d2006-09-06 13:58:25 +02003729 wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
3730 if (wcaps == AC_WCAP_OUT_AMP)
3731 /* found a mono speaker with an amp, must be lfe */
3732 lfe_pin = pin;
3733 }
3734
3735 /* if speaker_outs is 0, then speakers may be in line_outs */
3736 if (lfe_pin == 0 && spec->autocfg.speaker_outs == 0) {
3737 for (i = 0; i < spec->autocfg.line_outs && lfe_pin == 0x0; i++) {
3738 hda_nid_t pin = spec->autocfg.line_out_pins[i];
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003739 unsigned int defcfg;
Harvey Harrison8b551782008-02-29 11:56:48 +01003740 defcfg = snd_hda_codec_read(codec, pin, 0,
Richard Fish160ea0d2006-09-06 13:58:25 +02003741 AC_VERB_GET_CONFIG_DEFAULT,
3742 0x00);
Harvey Harrison8b551782008-02-29 11:56:48 +01003743 if (get_defcfg_device(defcfg) == AC_JACK_SPEAKER) {
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003744 unsigned int wcaps = get_wcaps(codec, pin);
Richard Fish160ea0d2006-09-06 13:58:25 +02003745 wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
3746 if (wcaps == AC_WCAP_OUT_AMP)
3747 /* found a mono speaker with an amp,
3748 must be lfe */
3749 lfe_pin = pin;
3750 }
3751 }
3752 }
3753
3754 if (lfe_pin) {
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003755 err = create_controls(codec, "LFE", lfe_pin, 1);
Richard Fish160ea0d2006-09-06 13:58:25 +02003756 if (err < 0)
3757 return err;
3758 }
3759
3760 return 0;
3761}
3762
Mattc7d4b2f2005-06-27 14:59:41 +02003763static int stac9200_parse_auto_config(struct hda_codec *codec)
3764{
3765 struct sigmatel_spec *spec = codec->spec;
3766 int err;
3767
Kailang Yangdf694da2005-12-05 19:42:22 +01003768 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003769 return err;
3770
3771 if ((err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg)) < 0)
3772 return err;
3773
Takashi Iwai82bc9552006-03-21 11:24:42 +01003774 if ((err = stac9200_auto_create_hp_ctls(codec, &spec->autocfg)) < 0)
3775 return err;
3776
Richard Fish160ea0d2006-09-06 13:58:25 +02003777 if ((err = stac9200_auto_create_lfe_ctls(codec, &spec->autocfg)) < 0)
3778 return err;
3779
Takashi Iwai355a0ec2008-11-11 16:46:19 +01003780 if (spec->num_muxes > 0) {
3781 err = stac92xx_auto_create_mux_input_ctls(codec);
3782 if (err < 0)
3783 return err;
3784 }
3785
Takashi Iwai82bc9552006-03-21 11:24:42 +01003786 if (spec->autocfg.dig_out_pin)
Mattc7d4b2f2005-06-27 14:59:41 +02003787 spec->multiout.dig_out_nid = 0x05;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003788 if (spec->autocfg.dig_in_pin)
Mattc7d4b2f2005-06-27 14:59:41 +02003789 spec->dig_in_nid = 0x04;
Mattc7d4b2f2005-06-27 14:59:41 +02003790
Takashi Iwai603c4012008-07-30 15:01:44 +02003791 if (spec->kctls.list)
3792 spec->mixers[spec->num_mixers++] = spec->kctls.list;
Mattc7d4b2f2005-06-27 14:59:41 +02003793
3794 spec->input_mux = &spec->private_imux;
Matt Porter8b657272006-10-26 17:12:59 +02003795 spec->dinput_mux = &spec->private_dimux;
Mattc7d4b2f2005-06-27 14:59:41 +02003796
3797 return 1;
3798}
3799
Sam Revitch62fe78e2006-05-10 15:09:17 +02003800/*
3801 * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
3802 * funky external mute control using GPIO pins.
3803 */
3804
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003805static void stac_gpio_set(struct hda_codec *codec, unsigned int mask,
Matthew Ranostay4fe51952008-01-29 15:28:44 +01003806 unsigned int dir_mask, unsigned int data)
Sam Revitch62fe78e2006-05-10 15:09:17 +02003807{
3808 unsigned int gpiostate, gpiomask, gpiodir;
3809
3810 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
3811 AC_VERB_GET_GPIO_DATA, 0);
Matthew Ranostay4fe51952008-01-29 15:28:44 +01003812 gpiostate = (gpiostate & ~dir_mask) | (data & dir_mask);
Sam Revitch62fe78e2006-05-10 15:09:17 +02003813
3814 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
3815 AC_VERB_GET_GPIO_MASK, 0);
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003816 gpiomask |= mask;
Sam Revitch62fe78e2006-05-10 15:09:17 +02003817
3818 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
3819 AC_VERB_GET_GPIO_DIRECTION, 0);
Matthew Ranostay4fe51952008-01-29 15:28:44 +01003820 gpiodir |= dir_mask;
Sam Revitch62fe78e2006-05-10 15:09:17 +02003821
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003822 /* Configure GPIOx as CMOS */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003823 snd_hda_codec_write(codec, codec->afg, 0, 0x7e7, 0);
3824
3825 snd_hda_codec_write(codec, codec->afg, 0,
3826 AC_VERB_SET_GPIO_MASK, gpiomask);
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003827 snd_hda_codec_read(codec, codec->afg, 0,
3828 AC_VERB_SET_GPIO_DIRECTION, gpiodir); /* sync */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003829
3830 msleep(1);
3831
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003832 snd_hda_codec_read(codec, codec->afg, 0,
3833 AC_VERB_SET_GPIO_DATA, gpiostate); /* sync */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003834}
3835
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003836static int stac92xx_add_jack(struct hda_codec *codec,
3837 hda_nid_t nid, int type)
3838{
Takashi Iwaie4973e12008-11-18 09:32:42 +01003839#ifdef CONFIG_SND_JACK
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003840 struct sigmatel_spec *spec = codec->spec;
3841 struct sigmatel_jack *jack;
3842 int def_conf = snd_hda_codec_read(codec, nid,
3843 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
3844 int connectivity = get_defcfg_connect(def_conf);
3845 char name[32];
3846
3847 if (connectivity && connectivity != AC_JACK_PORT_FIXED)
3848 return 0;
3849
3850 snd_array_init(&spec->jacks, sizeof(*jack), 32);
3851 jack = snd_array_new(&spec->jacks);
3852 if (!jack)
3853 return -ENOMEM;
3854 jack->nid = nid;
3855 jack->type = type;
3856
3857 sprintf(name, "%s at %s %s Jack",
3858 snd_hda_get_jack_type(def_conf),
3859 snd_hda_get_jack_connectivity(def_conf),
3860 snd_hda_get_jack_location(def_conf));
3861
3862 return snd_jack_new(codec->bus->card, name, type, &jack->jack);
Takashi Iwaie4973e12008-11-18 09:32:42 +01003863#else
3864 return 0;
3865#endif
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003866}
3867
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003868static int stac_add_event(struct sigmatel_spec *spec, hda_nid_t nid,
3869 unsigned char type, int data)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003870{
3871 struct sigmatel_event *event;
3872
3873 snd_array_init(&spec->events, sizeof(*event), 32);
3874 event = snd_array_new(&spec->events);
3875 if (!event)
3876 return -ENOMEM;
3877 event->nid = nid;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003878 event->type = type;
3879 event->tag = spec->events.used;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003880 event->data = data;
3881
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003882 return event->tag;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003883}
3884
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003885static struct sigmatel_event *stac_get_event(struct hda_codec *codec,
3886 hda_nid_t nid, unsigned char type)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003887{
3888 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003889 struct sigmatel_event *event = spec->events.list;
3890 int i;
3891
3892 for (i = 0; i < spec->events.used; i++, event++) {
3893 if (event->nid == nid && event->type == type)
3894 return event;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003895 }
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003896 return NULL;
3897}
3898
3899static struct sigmatel_event *stac_get_event_from_tag(struct hda_codec *codec,
3900 unsigned char tag)
3901{
3902 struct sigmatel_spec *spec = codec->spec;
3903 struct sigmatel_event *event = spec->events.list;
3904 int i;
3905
3906 for (i = 0; i < spec->events.used; i++, event++) {
3907 if (event->tag == tag)
3908 return event;
3909 }
3910 return NULL;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003911}
3912
Takashi Iwai314634b2006-09-21 11:56:18 +02003913static void enable_pin_detect(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003914 unsigned int type)
Takashi Iwai314634b2006-09-21 11:56:18 +02003915{
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003916 struct sigmatel_event *event;
3917 int tag;
3918
3919 if (!(get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP))
3920 return;
3921 event = stac_get_event(codec, nid, type);
3922 if (event)
3923 tag = event->tag;
3924 else
3925 tag = stac_add_event(codec->spec, nid, type, 0);
3926 if (tag < 0)
3927 return;
3928 snd_hda_codec_write_cache(codec, nid, 0,
3929 AC_VERB_SET_UNSOLICITED_ENABLE,
3930 AC_USRSP_EN | tag);
Takashi Iwai314634b2006-09-21 11:56:18 +02003931}
3932
Matthew Ranostaya64135a2008-01-10 16:55:06 +01003933static int is_nid_hp_pin(struct auto_pin_cfg *cfg, hda_nid_t nid)
3934{
3935 int i;
3936 for (i = 0; i < cfg->hp_outs; i++)
3937 if (cfg->hp_pins[i] == nid)
3938 return 1; /* nid is a HP-Out */
3939
3940 return 0; /* nid is not a HP-Out */
3941};
3942
Matthew Ranostayb76c8502008-02-06 14:49:44 +01003943static void stac92xx_power_down(struct hda_codec *codec)
3944{
3945 struct sigmatel_spec *spec = codec->spec;
3946
3947 /* power down inactive DACs */
3948 hda_nid_t *dac;
3949 for (dac = spec->dac_list; *dac; dac++)
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003950 if (!check_all_dac_nids(spec, *dac))
Takashi Iwai8c2f7672008-12-01 11:54:35 +01003951 snd_hda_codec_write(codec, *dac, 0,
Matthew Ranostayb76c8502008-02-06 14:49:44 +01003952 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
3953}
3954
Takashi Iwaif73d3582008-11-25 08:21:51 +01003955static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
3956 int enable);
3957
Mattc7d4b2f2005-06-27 14:59:41 +02003958static int stac92xx_init(struct hda_codec *codec)
3959{
3960 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003961 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaif73d3582008-11-25 08:21:51 +01003962 unsigned int gpio;
Takashi Iwaie4973e12008-11-18 09:32:42 +01003963 int i;
Mattc7d4b2f2005-06-27 14:59:41 +02003964
Mattc7d4b2f2005-06-27 14:59:41 +02003965 snd_hda_sequence_write(codec, spec->init);
3966
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02003967 /* power down adcs initially */
3968 if (spec->powerdown_adcs)
3969 for (i = 0; i < spec->num_adcs; i++)
Takashi Iwai8c2f7672008-12-01 11:54:35 +01003970 snd_hda_codec_write(codec,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02003971 spec->adc_nids[i], 0,
3972 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
Takashi Iwaif73d3582008-11-25 08:21:51 +01003973
3974 /* set up GPIO */
3975 gpio = spec->gpio_data;
3976 /* turn on EAPD statically when spec->eapd_switch isn't set.
3977 * otherwise, unsol event will turn it on/off dynamically
3978 */
3979 if (!spec->eapd_switch)
3980 gpio |= spec->eapd_mask;
3981 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, gpio);
3982
Takashi Iwai82bc9552006-03-21 11:24:42 +01003983 /* set up pins */
3984 if (spec->hp_detect) {
Takashi Iwai505cb342006-03-27 12:51:52 +02003985 /* Enable unsolicited responses on the HP widget */
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003986 for (i = 0; i < cfg->hp_outs; i++) {
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003987 hda_nid_t nid = cfg->hp_pins[i];
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003988 enable_pin_detect(codec, nid, STAC_HP_EVENT);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003989 }
Takashi Iwai0a07acaf2007-03-13 10:40:23 +01003990 /* force to enable the first line-out; the others are set up
3991 * in unsol_event
3992 */
3993 stac92xx_auto_set_pinctl(codec, spec->autocfg.line_out_pins[0],
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003994 AC_PINCTL_OUT_EN);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003995 /* fake event to set up pins */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003996 stac_issue_unsol_event(codec, spec->autocfg.hp_pins[0],
3997 STAC_HP_EVENT);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003998 } else {
3999 stac92xx_auto_init_multi_out(codec);
4000 stac92xx_auto_init_hp_out(codec);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004001 for (i = 0; i < cfg->hp_outs; i++)
4002 stac_toggle_power_map(codec, cfg->hp_pins[i], 1);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004003 }
4004 for (i = 0; i < AUTO_PIN_LAST; i++) {
Takashi Iwaic960a032006-03-23 17:06:28 +01004005 hda_nid_t nid = cfg->input_pins[i];
4006 if (nid) {
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004007 unsigned int pinctl, conf;
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004008 if (i == AUTO_PIN_MIC || i == AUTO_PIN_FRONT_MIC) {
4009 /* for mic pins, force to initialize */
4010 pinctl = stac92xx_get_vref(codec, nid);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004011 pinctl |= AC_PINCTL_IN_EN;
4012 stac92xx_auto_set_pinctl(codec, nid, pinctl);
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004013 } else {
4014 pinctl = snd_hda_codec_read(codec, nid, 0,
4015 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4016 /* if PINCTL already set then skip */
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004017 if (!(pinctl & AC_PINCTL_IN_EN)) {
4018 pinctl |= AC_PINCTL_IN_EN;
4019 stac92xx_auto_set_pinctl(codec, nid,
4020 pinctl);
4021 }
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004022 }
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004023 conf = snd_hda_codec_read(codec, nid, 0,
4024 AC_VERB_GET_CONFIG_DEFAULT, 0);
4025 if (get_defcfg_connect(conf) != AC_JACK_PORT_FIXED) {
4026 enable_pin_detect(codec, nid,
4027 STAC_INSERT_EVENT);
4028 stac_issue_unsol_event(codec, nid,
4029 STAC_INSERT_EVENT);
4030 }
Takashi Iwaic960a032006-03-23 17:06:28 +01004031 }
Takashi Iwai82bc9552006-03-21 11:24:42 +01004032 }
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004033 for (i = 0; i < spec->num_dmics; i++)
4034 stac92xx_auto_set_pinctl(codec, spec->dmic_nids[i],
4035 AC_PINCTL_IN_EN);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004036 if (cfg->dig_out_pin)
4037 stac92xx_auto_set_pinctl(codec, cfg->dig_out_pin,
4038 AC_PINCTL_OUT_EN);
4039 if (cfg->dig_in_pin)
4040 stac92xx_auto_set_pinctl(codec, cfg->dig_in_pin,
4041 AC_PINCTL_IN_EN);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004042 for (i = 0; i < spec->num_pwrs; i++) {
4043 hda_nid_t nid = spec->pwr_nids[i];
4044 int pinctl, def_conf;
Takashi Iwai82bc9552006-03-21 11:24:42 +01004045
Takashi Iwaieb632122008-12-19 16:39:48 +01004046 /* power on when no jack detection is available */
4047 if (!spec->hp_detect) {
4048 stac_toggle_power_map(codec, nid, 1);
4049 continue;
4050 }
4051
4052 if (is_nid_hp_pin(cfg, nid))
Takashi Iwaif73d3582008-11-25 08:21:51 +01004053 continue; /* already has an unsol event */
Sam Revitch62fe78e2006-05-10 15:09:17 +02004054
Takashi Iwaif73d3582008-11-25 08:21:51 +01004055 pinctl = snd_hda_codec_read(codec, nid, 0,
4056 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4057 /* outputs are only ports capable of power management
4058 * any attempts on powering down a input port cause the
4059 * referenced VREF to act quirky.
4060 */
Takashi Iwaieb632122008-12-19 16:39:48 +01004061 if (pinctl & AC_PINCTL_IN_EN) {
4062 stac_toggle_power_map(codec, nid, 1);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004063 continue;
Takashi Iwaieb632122008-12-19 16:39:48 +01004064 }
Takashi Iwaif73d3582008-11-25 08:21:51 +01004065 def_conf = snd_hda_codec_read(codec, nid, 0,
4066 AC_VERB_GET_CONFIG_DEFAULT, 0);
4067 def_conf = get_defcfg_connect(def_conf);
4068 /* skip any ports that don't have jacks since presence
4069 * detection is useless */
4070 if (def_conf != AC_JACK_PORT_COMPLEX) {
4071 if (def_conf != AC_JACK_PORT_NONE)
4072 stac_toggle_power_map(codec, nid, 1);
4073 continue;
4074 }
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004075 if (!stac_get_event(codec, nid, STAC_INSERT_EVENT)) {
4076 enable_pin_detect(codec, nid, STAC_PWR_EVENT);
4077 stac_issue_unsol_event(codec, nid, STAC_PWR_EVENT);
4078 }
Takashi Iwaif73d3582008-11-25 08:21:51 +01004079 }
4080 if (spec->dac_list)
4081 stac92xx_power_down(codec);
Mattc7d4b2f2005-06-27 14:59:41 +02004082 return 0;
4083}
4084
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004085static void stac92xx_free_jacks(struct hda_codec *codec)
4086{
Takashi Iwaie4973e12008-11-18 09:32:42 +01004087#ifdef CONFIG_SND_JACK
Takashi Iwaib94d35392008-11-21 09:08:06 +01004088 /* free jack instances manually when clearing/reconfiguring */
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004089 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaib94d35392008-11-21 09:08:06 +01004090 if (!codec->bus->shutdown && spec->jacks.list) {
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004091 struct sigmatel_jack *jacks = spec->jacks.list;
4092 int i;
4093 for (i = 0; i < spec->jacks.used; i++)
4094 snd_device_free(codec->bus->card, &jacks[i].jack);
4095 }
4096 snd_array_free(&spec->jacks);
Takashi Iwaie4973e12008-11-18 09:32:42 +01004097#endif
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004098}
4099
Takashi Iwai603c4012008-07-30 15:01:44 +02004100static void stac92xx_free_kctls(struct hda_codec *codec)
4101{
4102 struct sigmatel_spec *spec = codec->spec;
4103
4104 if (spec->kctls.list) {
4105 struct snd_kcontrol_new *kctl = spec->kctls.list;
4106 int i;
4107 for (i = 0; i < spec->kctls.used; i++)
4108 kfree(kctl[i].name);
4109 }
4110 snd_array_free(&spec->kctls);
4111}
4112
Matt2f2f4252005-04-13 14:45:30 +02004113static void stac92xx_free(struct hda_codec *codec)
4114{
Mattc7d4b2f2005-06-27 14:59:41 +02004115 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +02004116
4117 if (! spec)
4118 return;
4119
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01004120 kfree(spec->pin_configs);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004121 stac92xx_free_jacks(codec);
4122 snd_array_free(&spec->events);
Richard Fish11b44bb2006-08-23 18:31:34 +02004123
Mattc7d4b2f2005-06-27 14:59:41 +02004124 kfree(spec);
Matthew Ranostay1cd22242008-07-18 18:20:52 +02004125 snd_hda_detach_beep_device(codec);
Matt2f2f4252005-04-13 14:45:30 +02004126}
4127
Matt4e550962005-07-04 17:51:39 +02004128static void stac92xx_set_pinctl(struct hda_codec *codec, hda_nid_t nid,
4129 unsigned int flag)
4130{
Takashi Iwai8ce84192009-01-22 16:59:20 +01004131 unsigned int old_ctl, pin_ctl;
4132
4133 pin_ctl = snd_hda_codec_read(codec, nid,
Matt4e550962005-07-04 17:51:39 +02004134 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
Steve Longerbeam7b043892007-05-03 20:50:03 +02004135
Takashi Iwaif9acba42007-05-29 18:01:06 +02004136 if (pin_ctl & AC_PINCTL_IN_EN) {
4137 /*
4138 * we need to check the current set-up direction of
4139 * shared input pins since they can be switched via
4140 * "xxx as Output" mixer switch
4141 */
4142 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004143 if (nid == spec->line_switch || nid == spec->mic_switch)
Takashi Iwaif9acba42007-05-29 18:01:06 +02004144 return;
4145 }
4146
Takashi Iwai8ce84192009-01-22 16:59:20 +01004147 old_ctl = pin_ctl;
Steve Longerbeam7b043892007-05-03 20:50:03 +02004148 /* if setting pin direction bits, clear the current
4149 direction bits first */
4150 if (flag & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN))
4151 pin_ctl &= ~(AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
4152
Takashi Iwai8ce84192009-01-22 16:59:20 +01004153 pin_ctl |= flag;
4154 if (old_ctl != pin_ctl)
4155 snd_hda_codec_write_cache(codec, nid, 0,
4156 AC_VERB_SET_PIN_WIDGET_CONTROL,
4157 pin_ctl);
Matt4e550962005-07-04 17:51:39 +02004158}
4159
4160static void stac92xx_reset_pinctl(struct hda_codec *codec, hda_nid_t nid,
4161 unsigned int flag)
4162{
4163 unsigned int pin_ctl = snd_hda_codec_read(codec, nid,
4164 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
Takashi Iwai8ce84192009-01-22 16:59:20 +01004165 if (pin_ctl & flag)
4166 snd_hda_codec_write_cache(codec, nid, 0,
4167 AC_VERB_SET_PIN_WIDGET_CONTROL,
4168 pin_ctl & ~flag);
Matt4e550962005-07-04 17:51:39 +02004169}
4170
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004171static int get_pin_presence(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwai314634b2006-09-21 11:56:18 +02004172{
4173 if (!nid)
4174 return 0;
4175 if (snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PIN_SENSE, 0x00)
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004176 & (1 << 31))
4177 return 1;
Takashi Iwai314634b2006-09-21 11:56:18 +02004178 return 0;
4179}
4180
Takashi Iwaid7a89432008-11-12 09:48:04 +01004181/* return non-zero if the hp-pin of the given array index isn't
4182 * a jack-detection target
4183 */
4184static int no_hp_sensing(struct sigmatel_spec *spec, int i)
4185{
4186 struct auto_pin_cfg *cfg = &spec->autocfg;
4187
4188 /* ignore sensing of shared line and mic jacks */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004189 if (cfg->hp_pins[i] == spec->line_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004190 return 1;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004191 if (cfg->hp_pins[i] == spec->mic_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004192 return 1;
4193 /* ignore if the pin is set as line-out */
4194 if (cfg->hp_pins[i] == spec->hp_switch)
4195 return 1;
4196 return 0;
4197}
4198
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004199static void stac92xx_hp_detect(struct hda_codec *codec)
Matt4e550962005-07-04 17:51:39 +02004200{
4201 struct sigmatel_spec *spec = codec->spec;
4202 struct auto_pin_cfg *cfg = &spec->autocfg;
4203 int i, presence;
4204
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004205 presence = 0;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01004206 if (spec->gpio_mute)
4207 presence = !(snd_hda_codec_read(codec, codec->afg, 0,
4208 AC_VERB_GET_GPIO_DATA, 0) & spec->gpio_mute);
4209
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004210 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwai314634b2006-09-21 11:56:18 +02004211 if (presence)
4212 break;
Takashi Iwaid7a89432008-11-12 09:48:04 +01004213 if (no_hp_sensing(spec, i))
4214 continue;
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004215 presence = get_pin_presence(codec, cfg->hp_pins[i]);
4216 if (presence) {
4217 unsigned int pinctl;
4218 pinctl = snd_hda_codec_read(codec, cfg->hp_pins[i], 0,
4219 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4220 if (pinctl & AC_PINCTL_IN_EN)
4221 presence = 0; /* mic- or line-input */
4222 }
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004223 }
Matt4e550962005-07-04 17:51:39 +02004224
4225 if (presence) {
Takashi Iwaid7a89432008-11-12 09:48:04 +01004226 /* disable lineouts */
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02004227 if (spec->hp_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004228 stac92xx_reset_pinctl(codec, spec->hp_switch,
4229 AC_PINCTL_OUT_EN);
Matt4e550962005-07-04 17:51:39 +02004230 for (i = 0; i < cfg->line_outs; i++)
4231 stac92xx_reset_pinctl(codec, cfg->line_out_pins[i],
4232 AC_PINCTL_OUT_EN);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004233 for (i = 0; i < cfg->speaker_outs; i++)
4234 stac92xx_reset_pinctl(codec, cfg->speaker_pins[i],
4235 AC_PINCTL_OUT_EN);
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05004236 if (spec->eapd_mask && spec->eapd_switch)
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02004237 stac_gpio_set(codec, spec->gpio_mask,
4238 spec->gpio_dir, spec->gpio_data &
4239 ~spec->eapd_mask);
Matt4e550962005-07-04 17:51:39 +02004240 } else {
Takashi Iwaid7a89432008-11-12 09:48:04 +01004241 /* enable lineouts */
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02004242 if (spec->hp_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004243 stac92xx_set_pinctl(codec, spec->hp_switch,
4244 AC_PINCTL_OUT_EN);
Matt4e550962005-07-04 17:51:39 +02004245 for (i = 0; i < cfg->line_outs; i++)
4246 stac92xx_set_pinctl(codec, cfg->line_out_pins[i],
4247 AC_PINCTL_OUT_EN);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004248 for (i = 0; i < cfg->speaker_outs; i++)
4249 stac92xx_set_pinctl(codec, cfg->speaker_pins[i],
4250 AC_PINCTL_OUT_EN);
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05004251 if (spec->eapd_mask && spec->eapd_switch)
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02004252 stac_gpio_set(codec, spec->gpio_mask,
4253 spec->gpio_dir, spec->gpio_data |
4254 spec->eapd_mask);
Matt4e550962005-07-04 17:51:39 +02004255 }
Takashi Iwaid7a89432008-11-12 09:48:04 +01004256 /* toggle hp outs */
4257 for (i = 0; i < cfg->hp_outs; i++) {
4258 unsigned int val = AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN;
4259 if (no_hp_sensing(spec, i))
4260 continue;
4261 if (presence)
4262 stac92xx_set_pinctl(codec, cfg->hp_pins[i], val);
Takashi Iwai8317e0b2009-01-14 07:56:51 +01004263#if 0 /* FIXME */
4264/* Resetting the pinctl like below may lead to (a sort of) regressions
4265 * on some devices since they use the HP pin actually for line/speaker
4266 * outs although the default pin config shows a different pin (that is
4267 * wrong and useless).
4268 *
4269 * So, it's basically a problem of default pin configs, likely a BIOS issue.
4270 * But, disabling the code below just works around it, and I'm too tired of
4271 * bug reports with such devices...
4272 */
Takashi Iwaid7a89432008-11-12 09:48:04 +01004273 else
4274 stac92xx_reset_pinctl(codec, cfg->hp_pins[i], val);
Takashi Iwai8317e0b2009-01-14 07:56:51 +01004275#endif /* FIXME */
Takashi Iwaid7a89432008-11-12 09:48:04 +01004276 }
Matt4e550962005-07-04 17:51:39 +02004277}
4278
Takashi Iwaif73d3582008-11-25 08:21:51 +01004279static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
4280 int enable)
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004281{
4282 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaif73d3582008-11-25 08:21:51 +01004283 unsigned int idx, val;
4284
4285 for (idx = 0; idx < spec->num_pwrs; idx++) {
4286 if (spec->pwr_nids[idx] == nid)
4287 break;
4288 }
4289 if (idx >= spec->num_pwrs)
4290 return;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004291
4292 /* several codecs have two power down bits */
4293 if (spec->pwr_mapping)
4294 idx = spec->pwr_mapping[idx];
4295 else
4296 idx = 1 << idx;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004297
Takashi Iwaif73d3582008-11-25 08:21:51 +01004298 val = snd_hda_codec_read(codec, codec->afg, 0, 0x0fec, 0x0) & 0xff;
4299 if (enable)
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004300 val &= ~idx;
4301 else
4302 val |= idx;
4303
4304 /* power down unused output ports */
4305 snd_hda_codec_write(codec, codec->afg, 0, 0x7ec, val);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004306}
4307
Takashi Iwaif73d3582008-11-25 08:21:51 +01004308static void stac92xx_pin_sense(struct hda_codec *codec, hda_nid_t nid)
4309{
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004310 stac_toggle_power_map(codec, nid, get_pin_presence(codec, nid));
Takashi Iwaif73d3582008-11-25 08:21:51 +01004311}
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004312
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004313static void stac92xx_report_jack(struct hda_codec *codec, hda_nid_t nid)
4314{
4315 struct sigmatel_spec *spec = codec->spec;
4316 struct sigmatel_jack *jacks = spec->jacks.list;
4317
4318 if (jacks) {
4319 int i;
4320 for (i = 0; i < spec->jacks.used; i++) {
4321 if (jacks->nid == nid) {
4322 unsigned int pin_ctl =
4323 snd_hda_codec_read(codec, nid,
4324 0, AC_VERB_GET_PIN_WIDGET_CONTROL,
4325 0x00);
4326 int type = jacks->type;
4327 if (type == (SND_JACK_LINEOUT
4328 | SND_JACK_HEADPHONE))
4329 type = (pin_ctl & AC_PINCTL_HP_EN)
4330 ? SND_JACK_HEADPHONE : SND_JACK_LINEOUT;
4331 snd_jack_report(jacks->jack,
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004332 get_pin_presence(codec, nid)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004333 ? type : 0);
4334 }
4335 jacks++;
4336 }
4337 }
4338}
Matt2f2f4252005-04-13 14:45:30 +02004339
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004340static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid,
4341 unsigned char type)
4342{
4343 struct sigmatel_event *event = stac_get_event(codec, nid, type);
4344 if (!event)
4345 return;
4346 codec->patch_ops.unsol_event(codec, (unsigned)event->tag << 26);
4347}
4348
Takashi Iwai314634b2006-09-21 11:56:18 +02004349static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res)
4350{
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004351 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004352 struct sigmatel_event *event;
4353 int tag, data;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004354
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004355 tag = (res >> 26) & 0x7f;
4356 event = stac_get_event_from_tag(codec, tag);
4357 if (!event)
4358 return;
4359
4360 switch (event->type) {
Takashi Iwai314634b2006-09-21 11:56:18 +02004361 case STAC_HP_EVENT:
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004362 stac92xx_hp_detect(codec);
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004363 /* fallthru */
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004364 case STAC_INSERT_EVENT:
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004365 case STAC_PWR_EVENT:
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004366 if (spec->num_pwrs > 0)
4367 stac92xx_pin_sense(codec, event->nid);
4368 stac92xx_report_jack(codec, event->nid);
Matthew Ranostay72474be2008-10-09 09:32:17 -04004369 break;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004370 case STAC_VREF_EVENT:
4371 data = snd_hda_codec_read(codec, codec->afg, 0,
4372 AC_VERB_GET_GPIO_DATA, 0);
Matthew Ranostay72474be2008-10-09 09:32:17 -04004373 /* toggle VREF state based on GPIOx status */
4374 snd_hda_codec_write(codec, codec->afg, 0, 0x7e0,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004375 !!(data & (1 << event->data)));
Matthew Ranostay72474be2008-10-09 09:32:17 -04004376 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02004377 }
4378}
4379
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004380#ifdef CONFIG_PROC_FS
4381static void stac92hd_proc_hook(struct snd_info_buffer *buffer,
4382 struct hda_codec *codec, hda_nid_t nid)
4383{
4384 if (nid == codec->afg)
4385 snd_iprintf(buffer, "Power-Map: 0x%02x\n",
4386 snd_hda_codec_read(codec, nid, 0, 0x0fec, 0x0));
4387}
4388
4389static void analog_loop_proc_hook(struct snd_info_buffer *buffer,
4390 struct hda_codec *codec,
4391 unsigned int verb)
4392{
4393 snd_iprintf(buffer, "Analog Loopback: 0x%02x\n",
4394 snd_hda_codec_read(codec, codec->afg, 0, verb, 0));
4395}
4396
4397/* stac92hd71bxx, stac92hd73xx */
4398static void stac92hd7x_proc_hook(struct snd_info_buffer *buffer,
4399 struct hda_codec *codec, hda_nid_t nid)
4400{
4401 stac92hd_proc_hook(buffer, codec, nid);
4402 if (nid == codec->afg)
4403 analog_loop_proc_hook(buffer, codec, 0xfa0);
4404}
4405
4406static void stac9205_proc_hook(struct snd_info_buffer *buffer,
4407 struct hda_codec *codec, hda_nid_t nid)
4408{
4409 if (nid == codec->afg)
4410 analog_loop_proc_hook(buffer, codec, 0xfe0);
4411}
4412
4413static void stac927x_proc_hook(struct snd_info_buffer *buffer,
4414 struct hda_codec *codec, hda_nid_t nid)
4415{
4416 if (nid == codec->afg)
4417 analog_loop_proc_hook(buffer, codec, 0xfeb);
4418}
4419#else
4420#define stac92hd_proc_hook NULL
4421#define stac92hd7x_proc_hook NULL
4422#define stac9205_proc_hook NULL
4423#define stac927x_proc_hook NULL
4424#endif
4425
Takashi Iwaicb53c622007-08-10 17:21:45 +02004426#ifdef SND_HDA_NEEDS_RESUME
Mattff6fdc32005-06-27 15:06:52 +02004427static int stac92xx_resume(struct hda_codec *codec)
4428{
Takashi Iwaidc81bed2007-09-03 09:36:36 +02004429 struct sigmatel_spec *spec = codec->spec;
4430
Richard Fish11b44bb2006-08-23 18:31:34 +02004431 stac92xx_set_config_regs(codec);
Takashi Iwai2c885872008-11-18 09:36:55 +01004432 stac92xx_init(codec);
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004433 snd_hda_codec_resume_amp(codec);
4434 snd_hda_codec_resume_cache(codec);
Takashi Iwai2c885872008-11-18 09:36:55 +01004435 /* fake event to set up pins again to override cached values */
Takashi Iwaidc81bed2007-09-03 09:36:36 +02004436 if (spec->hp_detect)
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004437 stac_issue_unsol_event(codec, spec->autocfg.hp_pins[0],
4438 STAC_HP_EVENT);
Mattff6fdc32005-06-27 15:06:52 +02004439 return 0;
4440}
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004441
4442static int stac92xx_suspend(struct hda_codec *codec, pm_message_t state)
4443{
4444 struct sigmatel_spec *spec = codec->spec;
4445 if (spec->eapd_mask)
4446 stac_gpio_set(codec, spec->gpio_mask,
4447 spec->gpio_dir, spec->gpio_data &
4448 ~spec->eapd_mask);
4449 return 0;
4450}
Mattff6fdc32005-06-27 15:06:52 +02004451#endif
4452
Matt2f2f4252005-04-13 14:45:30 +02004453static struct hda_codec_ops stac92xx_patch_ops = {
4454 .build_controls = stac92xx_build_controls,
4455 .build_pcms = stac92xx_build_pcms,
4456 .init = stac92xx_init,
4457 .free = stac92xx_free,
Matt4e550962005-07-04 17:51:39 +02004458 .unsol_event = stac92xx_unsol_event,
Takashi Iwaicb53c622007-08-10 17:21:45 +02004459#ifdef SND_HDA_NEEDS_RESUME
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004460 .suspend = stac92xx_suspend,
Mattff6fdc32005-06-27 15:06:52 +02004461 .resume = stac92xx_resume,
4462#endif
Matt2f2f4252005-04-13 14:45:30 +02004463};
4464
4465static int patch_stac9200(struct hda_codec *codec)
4466{
4467 struct sigmatel_spec *spec;
Mattc7d4b2f2005-06-27 14:59:41 +02004468 int err;
Matt2f2f4252005-04-13 14:45:30 +02004469
Takashi Iwaie560d8d2005-09-09 14:21:46 +02004470 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Matt2f2f4252005-04-13 14:45:30 +02004471 if (spec == NULL)
4472 return -ENOMEM;
4473
4474 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02004475 spec->num_pins = ARRAY_SIZE(stac9200_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02004476 spec->pin_nids = stac9200_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004477 spec->board_config = snd_hda_check_board_config(codec, STAC_9200_MODELS,
4478 stac9200_models,
4479 stac9200_cfg_tbl);
Richard Fish11b44bb2006-08-23 18:31:34 +02004480 if (spec->board_config < 0) {
4481 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9200, using BIOS defaults\n");
4482 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01004483 } else
4484 err = stac_save_pin_cfgs(codec,
4485 stac9200_brd_tbl[spec->board_config]);
4486 if (err < 0) {
4487 stac92xx_free(codec);
4488 return err;
Matt Porter403d1942005-11-29 15:00:51 +01004489 }
Matt2f2f4252005-04-13 14:45:30 +02004490
4491 spec->multiout.max_channels = 2;
4492 spec->multiout.num_dacs = 1;
4493 spec->multiout.dac_nids = stac9200_dac_nids;
4494 spec->adc_nids = stac9200_adc_nids;
4495 spec->mux_nids = stac9200_mux_nids;
Mattdabbed62005-06-14 10:19:34 +02004496 spec->num_muxes = 1;
Matt Porter8b657272006-10-26 17:12:59 +02004497 spec->num_dmics = 0;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02004498 spec->num_adcs = 1;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004499 spec->num_pwrs = 0;
Mattc7d4b2f2005-06-27 14:59:41 +02004500
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02004501 if (spec->board_config == STAC_9200_M4 ||
4502 spec->board_config == STAC_9200_M4_2 ||
Tobin Davisbf277782008-02-03 20:31:47 +01004503 spec->board_config == STAC_9200_OQO)
Takashi Iwai1194b5b2007-10-10 10:04:26 +02004504 spec->init = stac9200_eapd_init;
4505 else
4506 spec->init = stac9200_core_init;
Matt2f2f4252005-04-13 14:45:30 +02004507 spec->mixer = stac9200_mixer;
Mattc7d4b2f2005-06-27 14:59:41 +02004508
Takashi Iwai117f2572008-03-18 09:53:23 +01004509 if (spec->board_config == STAC_9200_PANASONIC) {
4510 spec->gpio_mask = spec->gpio_dir = 0x09;
4511 spec->gpio_data = 0x00;
4512 }
4513
Mattc7d4b2f2005-06-27 14:59:41 +02004514 err = stac9200_parse_auto_config(codec);
4515 if (err < 0) {
4516 stac92xx_free(codec);
4517 return err;
4518 }
Matt2f2f4252005-04-13 14:45:30 +02004519
Takashi Iwai2acc9dc2009-01-09 16:57:14 +01004520 /* CF-74 has no headphone detection, and the driver should *NOT*
4521 * do detection and HP/speaker toggle because the hardware does it.
4522 */
4523 if (spec->board_config == STAC_9200_PANASONIC)
4524 spec->hp_detect = 0;
4525
Matt2f2f4252005-04-13 14:45:30 +02004526 codec->patch_ops = stac92xx_patch_ops;
4527
4528 return 0;
4529}
4530
Tobin Davis8e21c342007-01-08 11:04:17 +01004531static int patch_stac925x(struct hda_codec *codec)
4532{
4533 struct sigmatel_spec *spec;
4534 int err;
4535
4536 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4537 if (spec == NULL)
4538 return -ENOMEM;
4539
4540 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02004541 spec->num_pins = ARRAY_SIZE(stac925x_pin_nids);
Tobin Davis8e21c342007-01-08 11:04:17 +01004542 spec->pin_nids = stac925x_pin_nids;
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02004543
4544 /* Check first for codec ID */
4545 spec->board_config = snd_hda_check_board_codec_sid_config(codec,
4546 STAC_925x_MODELS,
4547 stac925x_models,
4548 stac925x_codec_id_cfg_tbl);
4549
4550 /* Now checks for PCI ID, if codec ID is not found */
4551 if (spec->board_config < 0)
4552 spec->board_config = snd_hda_check_board_config(codec,
4553 STAC_925x_MODELS,
Tobin Davis8e21c342007-01-08 11:04:17 +01004554 stac925x_models,
4555 stac925x_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01004556 again:
Tobin Davis8e21c342007-01-08 11:04:17 +01004557 if (spec->board_config < 0) {
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02004558 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC925x,"
Tobin Davis2c11f952007-05-17 09:36:34 +02004559 "using BIOS defaults\n");
Tobin Davis8e21c342007-01-08 11:04:17 +01004560 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01004561 } else
4562 err = stac_save_pin_cfgs(codec,
4563 stac925x_brd_tbl[spec->board_config]);
4564 if (err < 0) {
4565 stac92xx_free(codec);
4566 return err;
Tobin Davis8e21c342007-01-08 11:04:17 +01004567 }
4568
4569 spec->multiout.max_channels = 2;
4570 spec->multiout.num_dacs = 1;
4571 spec->multiout.dac_nids = stac925x_dac_nids;
4572 spec->adc_nids = stac925x_adc_nids;
4573 spec->mux_nids = stac925x_mux_nids;
4574 spec->num_muxes = 1;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02004575 spec->num_adcs = 1;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004576 spec->num_pwrs = 0;
Tobin Davis2c11f952007-05-17 09:36:34 +02004577 switch (codec->vendor_id) {
4578 case 0x83847632: /* STAC9202 */
4579 case 0x83847633: /* STAC9202D */
4580 case 0x83847636: /* STAC9251 */
4581 case 0x83847637: /* STAC9251D */
Takashi Iwaif6e98522007-10-16 14:27:04 +02004582 spec->num_dmics = STAC925X_NUM_DMICS;
Tobin Davis2c11f952007-05-17 09:36:34 +02004583 spec->dmic_nids = stac925x_dmic_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +01004584 spec->num_dmuxes = ARRAY_SIZE(stac925x_dmux_nids);
4585 spec->dmux_nids = stac925x_dmux_nids;
Tobin Davis2c11f952007-05-17 09:36:34 +02004586 break;
4587 default:
4588 spec->num_dmics = 0;
4589 break;
4590 }
Tobin Davis8e21c342007-01-08 11:04:17 +01004591
4592 spec->init = stac925x_core_init;
4593 spec->mixer = stac925x_mixer;
4594
4595 err = stac92xx_parse_auto_config(codec, 0x8, 0x7);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01004596 if (!err) {
4597 if (spec->board_config < 0) {
4598 printk(KERN_WARNING "hda_codec: No auto-config is "
4599 "available, default to model=ref\n");
4600 spec->board_config = STAC_925x_REF;
4601 goto again;
4602 }
4603 err = -EINVAL;
4604 }
Tobin Davis8e21c342007-01-08 11:04:17 +01004605 if (err < 0) {
4606 stac92xx_free(codec);
4607 return err;
4608 }
4609
4610 codec->patch_ops = stac92xx_patch_ops;
4611
4612 return 0;
4613}
4614
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004615static struct hda_input_mux stac92hd73xx_dmux = {
4616 .num_items = 4,
4617 .items = {
4618 { "Analog Inputs", 0x0b },
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004619 { "Digital Mic 1", 0x09 },
4620 { "Digital Mic 2", 0x0a },
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004621 { "CD", 0x08 },
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004622 }
4623};
4624
4625static int patch_stac92hd73xx(struct hda_codec *codec)
4626{
4627 struct sigmatel_spec *spec;
4628 hda_nid_t conn[STAC92HD73_DAC_COUNT + 2];
4629 int err = 0;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004630 int num_dacs;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004631
4632 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4633 if (spec == NULL)
4634 return -ENOMEM;
4635
4636 codec->spec = spec;
Matthew Ranostaye99d32b2008-09-09 10:46:38 +02004637 codec->slave_dig_outs = stac92hd73xx_slave_dig_outs;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004638 spec->num_pins = ARRAY_SIZE(stac92hd73xx_pin_nids);
4639 spec->pin_nids = stac92hd73xx_pin_nids;
4640 spec->board_config = snd_hda_check_board_config(codec,
4641 STAC_92HD73XX_MODELS,
4642 stac92hd73xx_models,
4643 stac92hd73xx_cfg_tbl);
4644again:
4645 if (spec->board_config < 0) {
4646 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
4647 " STAC92HD73XX, using BIOS defaults\n");
4648 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01004649 } else
4650 err = stac_save_pin_cfgs(codec,
4651 stac92hd73xx_brd_tbl[spec->board_config]);
4652 if (err < 0) {
4653 stac92xx_free(codec);
4654 return err;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004655 }
4656
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004657 num_dacs = snd_hda_get_connections(codec, 0x0a,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004658 conn, STAC92HD73_DAC_COUNT + 2) - 1;
4659
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004660 if (num_dacs < 3 || num_dacs > 5) {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004661 printk(KERN_WARNING "hda_codec: Could not determine "
4662 "number of channels defaulting to DAC count\n");
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004663 num_dacs = STAC92HD73_DAC_COUNT;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004664 }
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004665 switch (num_dacs) {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004666 case 0x3: /* 6 Channel */
4667 spec->mixer = stac92hd73xx_6ch_mixer;
4668 spec->init = stac92hd73xx_6ch_core_init;
4669 break;
4670 case 0x4: /* 8 Channel */
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004671 spec->mixer = stac92hd73xx_8ch_mixer;
4672 spec->init = stac92hd73xx_8ch_core_init;
4673 break;
4674 case 0x5: /* 10 Channel */
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004675 spec->mixer = stac92hd73xx_10ch_mixer;
4676 spec->init = stac92hd73xx_10ch_core_init;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004677 }
4678 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004679
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004680 spec->aloopback_mask = 0x01;
4681 spec->aloopback_shift = 8;
4682
Matthew Ranostay1cd22242008-07-18 18:20:52 +02004683 spec->digbeep_nid = 0x1c;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004684 spec->mux_nids = stac92hd73xx_mux_nids;
4685 spec->adc_nids = stac92hd73xx_adc_nids;
4686 spec->dmic_nids = stac92hd73xx_dmic_nids;
4687 spec->dmux_nids = stac92hd73xx_dmux_nids;
Matthew Ranostayd9737752008-09-07 12:03:41 +02004688 spec->smux_nids = stac92hd73xx_smux_nids;
Matthew Ranostay89385032008-09-11 09:49:39 -04004689 spec->amp_nids = stac92hd73xx_amp_nids;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004690 spec->num_amps = ARRAY_SIZE(stac92hd73xx_amp_nids);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004691
4692 spec->num_muxes = ARRAY_SIZE(stac92hd73xx_mux_nids);
4693 spec->num_adcs = ARRAY_SIZE(stac92hd73xx_adc_nids);
Takashi Iwai1697055e2007-12-18 18:05:52 +01004694 spec->num_dmuxes = ARRAY_SIZE(stac92hd73xx_dmux_nids);
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004695 memcpy(&spec->private_dimux, &stac92hd73xx_dmux,
4696 sizeof(stac92hd73xx_dmux));
4697
Matthew Ranostaya7662642008-02-21 07:51:14 +01004698 switch (spec->board_config) {
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05004699 case STAC_DELL_EQ:
Matthew Ranostayd654a662008-03-14 08:46:51 +01004700 spec->init = dell_eq_core_init;
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05004701 /* fallthru */
Takashi Iwai661cd8f2008-11-25 15:18:29 +01004702 case STAC_DELL_M6_AMIC:
4703 case STAC_DELL_M6_DMIC:
4704 case STAC_DELL_M6_BOTH:
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004705 spec->num_smuxes = 0;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004706 spec->mixer = &stac92hd73xx_6ch_mixer[DELL_M6_MIXER];
4707 spec->amp_nids = &stac92hd73xx_amp_nids[DELL_M6_AMP];
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05004708 spec->eapd_switch = 0;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004709 spec->num_amps = 1;
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05004710
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004711 if (spec->board_config != STAC_DELL_EQ)
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05004712 spec->init = dell_m6_core_init;
Takashi Iwai661cd8f2008-11-25 15:18:29 +01004713 switch (spec->board_config) {
4714 case STAC_DELL_M6_AMIC: /* Analog Mics */
Matthew Ranostaya7662642008-02-21 07:51:14 +01004715 stac92xx_set_config_reg(codec, 0x0b, 0x90A70170);
4716 spec->num_dmics = 0;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004717 spec->private_dimux.num_items = 1;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004718 break;
Takashi Iwai661cd8f2008-11-25 15:18:29 +01004719 case STAC_DELL_M6_DMIC: /* Digital Mics */
Matthew Ranostaya7662642008-02-21 07:51:14 +01004720 stac92xx_set_config_reg(codec, 0x13, 0x90A60160);
4721 spec->num_dmics = 1;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004722 spec->private_dimux.num_items = 2;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004723 break;
Takashi Iwai661cd8f2008-11-25 15:18:29 +01004724 case STAC_DELL_M6_BOTH: /* Both */
Matthew Ranostaya7662642008-02-21 07:51:14 +01004725 stac92xx_set_config_reg(codec, 0x0b, 0x90A70170);
4726 stac92xx_set_config_reg(codec, 0x13, 0x90A60160);
4727 spec->num_dmics = 1;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004728 spec->private_dimux.num_items = 2;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004729 break;
4730 }
4731 break;
4732 default:
4733 spec->num_dmics = STAC92HD73XX_NUM_DMICS;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004734 spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids);
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05004735 spec->eapd_switch = 1;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004736 }
Matthew Ranostayb2c4f4d2008-09-26 10:06:40 -04004737 if (spec->board_config > STAC_92HD73XX_REF) {
4738 /* GPIO0 High = Enable EAPD */
4739 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
4740 spec->gpio_data = 0x01;
4741 }
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004742 spec->dinput_mux = &spec->private_dimux;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004743
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004744 spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids);
4745 spec->pwr_nids = stac92hd73xx_pwr_nids;
4746
Matthew Ranostayd9737752008-09-07 12:03:41 +02004747 err = stac92xx_parse_auto_config(codec, 0x25, 0x27);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004748
4749 if (!err) {
4750 if (spec->board_config < 0) {
4751 printk(KERN_WARNING "hda_codec: No auto-config is "
4752 "available, default to model=ref\n");
4753 spec->board_config = STAC_92HD73XX_REF;
4754 goto again;
4755 }
4756 err = -EINVAL;
4757 }
4758
4759 if (err < 0) {
4760 stac92xx_free(codec);
4761 return err;
4762 }
4763
Takashi Iwai9e43f0d2008-12-17 14:51:01 +01004764 if (spec->board_config == STAC_92HD73XX_NO_JD)
4765 spec->hp_detect = 0;
4766
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004767 codec->patch_ops = stac92xx_patch_ops;
4768
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004769 codec->proc_widget_hook = stac92hd7x_proc_hook;
4770
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004771 return 0;
4772}
4773
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004774static struct hda_input_mux stac92hd83xxx_dmux = {
4775 .num_items = 3,
4776 .items = {
4777 { "Analog Inputs", 0x03 },
4778 { "Digital Mic 1", 0x04 },
4779 { "Digital Mic 2", 0x05 },
4780 }
4781};
4782
4783static int patch_stac92hd83xxx(struct hda_codec *codec)
4784{
4785 struct sigmatel_spec *spec;
Matthew Ranostay65557f32009-01-20 16:50:25 -05004786 hda_nid_t conn[STAC92HD83_DAC_COUNT + 1];
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004787 int err;
Matthew Ranostay65557f32009-01-20 16:50:25 -05004788 int num_dacs;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004789
4790 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4791 if (spec == NULL)
4792 return -ENOMEM;
4793
4794 codec->spec = spec;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04004795 codec->slave_dig_outs = stac92hd83xxx_slave_dig_outs;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004796 spec->mono_nid = 0x19;
4797 spec->digbeep_nid = 0x21;
4798 spec->dmic_nids = stac92hd83xxx_dmic_nids;
4799 spec->dmux_nids = stac92hd83xxx_dmux_nids;
4800 spec->adc_nids = stac92hd83xxx_adc_nids;
4801 spec->pwr_nids = stac92hd83xxx_pwr_nids;
Matthew Ranostayc15c5062009-01-13 13:30:07 -05004802 spec->amp_nids = stac92hd83xxx_amp_nids;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004803 spec->pwr_mapping = stac92hd83xxx_pwr_mapping;
4804 spec->num_pwrs = ARRAY_SIZE(stac92hd83xxx_pwr_nids);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004805 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004806
Matthew Ranostay65557f32009-01-20 16:50:25 -05004807
4808 /* set port 0xe to select the last DAC
4809 */
4810 num_dacs = snd_hda_get_connections(codec, 0x0e,
4811 conn, STAC92HD83_DAC_COUNT + 1) - 1;
4812
4813 snd_hda_codec_write_cache(codec, 0xe, 0,
4814 AC_VERB_SET_CONNECT_SEL, num_dacs);
4815
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004816 spec->init = stac92hd83xxx_core_init;
4817 switch (codec->vendor_id) {
4818 case 0x111d7605:
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004819 break;
4820 default:
4821 spec->num_pwrs--;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004822 }
4823
4824 spec->mixer = stac92hd83xxx_mixer;
4825 spec->num_pins = ARRAY_SIZE(stac92hd83xxx_pin_nids);
4826 spec->num_dmuxes = ARRAY_SIZE(stac92hd83xxx_dmux_nids);
4827 spec->num_adcs = ARRAY_SIZE(stac92hd83xxx_adc_nids);
Matthew Ranostayc15c5062009-01-13 13:30:07 -05004828 spec->num_amps = ARRAY_SIZE(stac92hd83xxx_amp_nids);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004829 spec->num_dmics = STAC92HD83XXX_NUM_DMICS;
4830 spec->dinput_mux = &stac92hd83xxx_dmux;
4831 spec->pin_nids = stac92hd83xxx_pin_nids;
4832 spec->board_config = snd_hda_check_board_config(codec,
4833 STAC_92HD83XXX_MODELS,
4834 stac92hd83xxx_models,
4835 stac92hd83xxx_cfg_tbl);
4836again:
4837 if (spec->board_config < 0) {
4838 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
4839 " STAC92HD83XXX, using BIOS defaults\n");
4840 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01004841 } else
4842 err = stac_save_pin_cfgs(codec,
4843 stac92hd83xxx_brd_tbl[spec->board_config]);
4844 if (err < 0) {
4845 stac92xx_free(codec);
4846 return err;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004847 }
4848
4849 err = stac92xx_parse_auto_config(codec, 0x1d, 0);
4850 if (!err) {
4851 if (spec->board_config < 0) {
4852 printk(KERN_WARNING "hda_codec: No auto-config is "
4853 "available, default to model=ref\n");
4854 spec->board_config = STAC_92HD83XXX_REF;
4855 goto again;
4856 }
4857 err = -EINVAL;
4858 }
4859
4860 if (err < 0) {
4861 stac92xx_free(codec);
4862 return err;
4863 }
4864
4865 codec->patch_ops = stac92xx_patch_ops;
4866
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004867 codec->proc_widget_hook = stac92hd_proc_hook;
4868
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004869 return 0;
4870}
4871
Matthew Ranostay4b33c762008-10-10 09:07:23 -04004872static struct hda_input_mux stac92hd71bxx_dmux = {
4873 .num_items = 4,
4874 .items = {
4875 { "Analog Inputs", 0x00 },
4876 { "Mixer", 0x01 },
4877 { "Digital Mic 1", 0x02 },
4878 { "Digital Mic 2", 0x03 },
4879 }
4880};
4881
Matthew Ranostaye035b842007-11-06 11:53:55 +01004882static int patch_stac92hd71bxx(struct hda_codec *codec)
4883{
4884 struct sigmatel_spec *spec;
4885 int err = 0;
4886
4887 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4888 if (spec == NULL)
4889 return -ENOMEM;
4890
4891 codec->spec = spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004892 codec->patch_ops = stac92xx_patch_ops;
Matthew Ranostaye035b842007-11-06 11:53:55 +01004893 spec->num_pins = ARRAY_SIZE(stac92hd71bxx_pin_nids);
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004894 spec->num_pwrs = ARRAY_SIZE(stac92hd71bxx_pwr_nids);
Matthew Ranostaye035b842007-11-06 11:53:55 +01004895 spec->pin_nids = stac92hd71bxx_pin_nids;
Matthew Ranostay4b33c762008-10-10 09:07:23 -04004896 memcpy(&spec->private_dimux, &stac92hd71bxx_dmux,
4897 sizeof(stac92hd71bxx_dmux));
Matthew Ranostaye035b842007-11-06 11:53:55 +01004898 spec->board_config = snd_hda_check_board_config(codec,
4899 STAC_92HD71BXX_MODELS,
4900 stac92hd71bxx_models,
4901 stac92hd71bxx_cfg_tbl);
4902again:
4903 if (spec->board_config < 0) {
4904 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
4905 " STAC92HD71BXX, using BIOS defaults\n");
4906 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01004907 } else
4908 err = stac_save_pin_cfgs(codec,
4909 stac92hd71bxx_brd_tbl[spec->board_config]);
4910 if (err < 0) {
4911 stac92xx_free(codec);
4912 return err;
Matthew Ranostaye035b842007-11-06 11:53:55 +01004913 }
4914
Takashi Iwai41c3b642008-11-18 10:45:15 +01004915 if (spec->board_config > STAC_92HD71BXX_REF) {
4916 /* GPIO0 = EAPD */
4917 spec->gpio_mask = 0x01;
4918 spec->gpio_dir = 0x01;
4919 spec->gpio_data = 0x01;
4920 }
4921
Matthew Ranostay541eee82007-12-14 12:08:04 +01004922 switch (codec->vendor_id) {
4923 case 0x111d76b6: /* 4 Port without Analog Mixer */
4924 case 0x111d76b7:
4925 case 0x111d76b4: /* 6 Port without Analog Mixer */
4926 case 0x111d76b5:
4927 spec->mixer = stac92hd71bxx_mixer;
4928 spec->init = stac92hd71bxx_core_init;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04004929 codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
Matthew Ranostay541eee82007-12-14 12:08:04 +01004930 break;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004931 case 0x111d7608: /* 5 Port with Analog Mixer */
Takashi Iwai8e5f2622008-11-15 19:28:54 +01004932 switch (spec->board_config) {
4933 case STAC_HP_M4:
Matthew Ranostay72474be2008-10-09 09:32:17 -04004934 /* Enable VREF power saving on GPIO1 detect */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004935 err = stac_add_event(spec, codec->afg,
4936 STAC_VREF_EVENT, 0x02);
4937 if (err < 0)
4938 return err;
Takashi Iwaic5d08bb2008-11-18 10:55:36 +01004939 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay72474be2008-10-09 09:32:17 -04004940 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x02);
4941 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004942 AC_VERB_SET_UNSOLICITED_ENABLE,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004943 AC_USRSP_EN | err);
Matthew Ranostay72474be2008-10-09 09:32:17 -04004944 spec->gpio_mask |= 0x02;
4945 break;
4946 }
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004947 if ((codec->revision_id & 0xf) == 0 ||
Takashi Iwai8c2f7672008-12-01 11:54:35 +01004948 (codec->revision_id & 0xf) == 1)
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004949 spec->stream_delay = 40; /* 40 milliseconds */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004950
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004951 /* no output amps */
4952 spec->num_pwrs = 0;
4953 spec->mixer = stac92hd71bxx_analog_mixer;
Matthew Ranostay4b33c762008-10-10 09:07:23 -04004954 spec->dinput_mux = &spec->private_dimux;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004955
4956 /* disable VSW */
4957 spec->init = &stac92hd71bxx_analog_core_init[HD_DISABLE_PORTF];
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01004958 stac_change_pin_config(codec, 0xf, 0x40f000f0);
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004959 break;
4960 case 0x111d7603: /* 6 Port with Analog Mixer */
Takashi Iwai8c2f7672008-12-01 11:54:35 +01004961 if ((codec->revision_id & 0xf) == 1)
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004962 spec->stream_delay = 40; /* 40 milliseconds */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004963
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004964 /* no output amps */
4965 spec->num_pwrs = 0;
4966 /* fallthru */
Matthew Ranostay541eee82007-12-14 12:08:04 +01004967 default:
Matthew Ranostay4b33c762008-10-10 09:07:23 -04004968 spec->dinput_mux = &spec->private_dimux;
Matthew Ranostay541eee82007-12-14 12:08:04 +01004969 spec->mixer = stac92hd71bxx_analog_mixer;
4970 spec->init = stac92hd71bxx_analog_core_init;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04004971 codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
Matthew Ranostay541eee82007-12-14 12:08:04 +01004972 }
4973
Matthew Ranostay4b33c762008-10-10 09:07:23 -04004974 spec->aloopback_mask = 0x50;
Matthew Ranostay541eee82007-12-14 12:08:04 +01004975 spec->aloopback_shift = 0;
4976
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004977 spec->powerdown_adcs = 1;
Matthew Ranostay1cd22242008-07-18 18:20:52 +02004978 spec->digbeep_nid = 0x26;
Matthew Ranostaye035b842007-11-06 11:53:55 +01004979 spec->mux_nids = stac92hd71bxx_mux_nids;
4980 spec->adc_nids = stac92hd71bxx_adc_nids;
4981 spec->dmic_nids = stac92hd71bxx_dmic_nids;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004982 spec->dmux_nids = stac92hd71bxx_dmux_nids;
Matthew Ranostayd9737752008-09-07 12:03:41 +02004983 spec->smux_nids = stac92hd71bxx_smux_nids;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02004984 spec->pwr_nids = stac92hd71bxx_pwr_nids;
Matthew Ranostaye035b842007-11-06 11:53:55 +01004985
4986 spec->num_muxes = ARRAY_SIZE(stac92hd71bxx_mux_nids);
4987 spec->num_adcs = ARRAY_SIZE(stac92hd71bxx_adc_nids);
Matthew Ranostaye035b842007-11-06 11:53:55 +01004988
Matthew Ranostay6a14f582008-09-12 12:02:30 -04004989 switch (spec->board_config) {
4990 case STAC_HP_M4:
Matthew Ranostay6a14f582008-09-12 12:02:30 -04004991 /* enable internal microphone */
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01004992 stac_change_pin_config(codec, 0x0e, 0x01813040);
Matthew Ranostayb9aea712008-10-09 08:37:28 -04004993 stac92xx_auto_set_pinctl(codec, 0x0e,
4994 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80);
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05004995 /* fallthru */
4996 case STAC_DELL_M4_2:
4997 spec->num_dmics = 0;
4998 spec->num_smuxes = 0;
4999 spec->num_dmuxes = 0;
5000 break;
5001 case STAC_DELL_M4_1:
5002 case STAC_DELL_M4_3:
5003 spec->num_dmics = 1;
5004 spec->num_smuxes = 0;
5005 spec->num_dmuxes = 0;
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005006 break;
5007 default:
5008 spec->num_dmics = STAC92HD71BXX_NUM_DMICS;
5009 spec->num_smuxes = ARRAY_SIZE(stac92hd71bxx_smux_nids);
5010 spec->num_dmuxes = ARRAY_SIZE(stac92hd71bxx_dmux_nids);
5011 };
5012
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005013 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostay4b33c762008-10-10 09:07:23 -04005014 if (spec->dinput_mux)
5015 spec->private_dimux.num_items +=
5016 spec->num_dmics -
5017 (ARRAY_SIZE(stac92hd71bxx_dmic_nids) - 1);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005018
5019 err = stac92xx_parse_auto_config(codec, 0x21, 0x23);
5020 if (!err) {
5021 if (spec->board_config < 0) {
5022 printk(KERN_WARNING "hda_codec: No auto-config is "
5023 "available, default to model=ref\n");
5024 spec->board_config = STAC_92HD71BXX_REF;
5025 goto again;
5026 }
5027 err = -EINVAL;
5028 }
5029
5030 if (err < 0) {
5031 stac92xx_free(codec);
5032 return err;
5033 }
5034
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005035 codec->proc_widget_hook = stac92hd7x_proc_hook;
5036
Matthew Ranostaye035b842007-11-06 11:53:55 +01005037 return 0;
5038};
5039
Matt2f2f4252005-04-13 14:45:30 +02005040static int patch_stac922x(struct hda_codec *codec)
5041{
5042 struct sigmatel_spec *spec;
Mattc7d4b2f2005-06-27 14:59:41 +02005043 int err;
Matt2f2f4252005-04-13 14:45:30 +02005044
Takashi Iwaie560d8d2005-09-09 14:21:46 +02005045 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Matt2f2f4252005-04-13 14:45:30 +02005046 if (spec == NULL)
5047 return -ENOMEM;
5048
5049 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005050 spec->num_pins = ARRAY_SIZE(stac922x_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005051 spec->pin_nids = stac922x_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005052 spec->board_config = snd_hda_check_board_config(codec, STAC_922X_MODELS,
5053 stac922x_models,
5054 stac922x_cfg_tbl);
Nicolas Boichat536319a2008-07-21 22:18:01 +08005055 if (spec->board_config == STAC_INTEL_MAC_AUTO) {
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005056 spec->gpio_mask = spec->gpio_dir = 0x03;
5057 spec->gpio_data = 0x03;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005058 /* Intel Macs have all same PCI SSID, so we need to check
5059 * codec SSID to distinguish the exact models
5060 */
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01005061 printk(KERN_INFO "hda_codec: STAC922x, Apple subsys_id=%x\n", codec->subsystem_id);
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005062 switch (codec->subsystem_id) {
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005063
5064 case 0x106b0800:
5065 spec->board_config = STAC_INTEL_MAC_V1;
Abhijit Bhopatkarc45e20e2007-04-17 11:57:16 +02005066 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005067 case 0x106b0600:
5068 case 0x106b0700:
5069 spec->board_config = STAC_INTEL_MAC_V2;
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01005070 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005071 case 0x106b0e00:
5072 case 0x106b0f00:
5073 case 0x106b1600:
5074 case 0x106b1700:
5075 case 0x106b0200:
5076 case 0x106b1e00:
5077 spec->board_config = STAC_INTEL_MAC_V3;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005078 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005079 case 0x106b1a00:
5080 case 0x00000100:
5081 spec->board_config = STAC_INTEL_MAC_V4;
Sylvain FORETf16928f2007-04-27 14:22:36 +02005082 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005083 case 0x106b0a00:
5084 case 0x106b2200:
5085 spec->board_config = STAC_INTEL_MAC_V5;
Takashi Iwai0dae0f82007-05-21 12:41:29 +02005086 break;
Nicolas Boichat536319a2008-07-21 22:18:01 +08005087 default:
5088 spec->board_config = STAC_INTEL_MAC_V3;
5089 break;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005090 }
5091 }
5092
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005093 again:
Richard Fish11b44bb2006-08-23 18:31:34 +02005094 if (spec->board_config < 0) {
5095 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC922x, "
5096 "using BIOS defaults\n");
5097 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01005098 } else
5099 err = stac_save_pin_cfgs(codec,
5100 stac922x_brd_tbl[spec->board_config]);
5101 if (err < 0) {
5102 stac92xx_free(codec);
5103 return err;
Matt Porter403d1942005-11-29 15:00:51 +01005104 }
Matt2f2f4252005-04-13 14:45:30 +02005105
Matt2f2f4252005-04-13 14:45:30 +02005106 spec->adc_nids = stac922x_adc_nids;
5107 spec->mux_nids = stac922x_mux_nids;
Takashi Iwai25494132007-03-12 12:36:16 +01005108 spec->num_muxes = ARRAY_SIZE(stac922x_mux_nids);
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005109 spec->num_adcs = ARRAY_SIZE(stac922x_adc_nids);
Matt Porter8b657272006-10-26 17:12:59 +02005110 spec->num_dmics = 0;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005111 spec->num_pwrs = 0;
Mattc7d4b2f2005-06-27 14:59:41 +02005112
5113 spec->init = stac922x_core_init;
Matt2f2f4252005-04-13 14:45:30 +02005114 spec->mixer = stac922x_mixer;
Mattc7d4b2f2005-06-27 14:59:41 +02005115
5116 spec->multiout.dac_nids = spec->dac_nids;
Takashi Iwai19039bd2006-06-28 15:52:16 +02005117
Matt Porter3cc08dc2006-01-23 15:27:49 +01005118 err = stac92xx_parse_auto_config(codec, 0x08, 0x09);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005119 if (!err) {
5120 if (spec->board_config < 0) {
5121 printk(KERN_WARNING "hda_codec: No auto-config is "
5122 "available, default to model=ref\n");
5123 spec->board_config = STAC_D945_REF;
5124 goto again;
5125 }
5126 err = -EINVAL;
5127 }
Matt Porter3cc08dc2006-01-23 15:27:49 +01005128 if (err < 0) {
5129 stac92xx_free(codec);
5130 return err;
5131 }
5132
5133 codec->patch_ops = stac92xx_patch_ops;
5134
Takashi Iwai807a46362007-05-29 19:01:37 +02005135 /* Fix Mux capture level; max to 2 */
5136 snd_hda_override_amp_caps(codec, 0x12, HDA_OUTPUT,
5137 (0 << AC_AMPCAP_OFFSET_SHIFT) |
5138 (2 << AC_AMPCAP_NUM_STEPS_SHIFT) |
5139 (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5140 (0 << AC_AMPCAP_MUTE_SHIFT));
5141
Matt Porter3cc08dc2006-01-23 15:27:49 +01005142 return 0;
5143}
5144
5145static int patch_stac927x(struct hda_codec *codec)
5146{
5147 struct sigmatel_spec *spec;
5148 int err;
5149
5150 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5151 if (spec == NULL)
5152 return -ENOMEM;
5153
5154 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005155 spec->num_pins = ARRAY_SIZE(stac927x_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005156 spec->pin_nids = stac927x_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005157 spec->board_config = snd_hda_check_board_config(codec, STAC_927X_MODELS,
5158 stac927x_models,
5159 stac927x_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005160 again:
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005161 if (spec->board_config < 0 || !stac927x_brd_tbl[spec->board_config]) {
5162 if (spec->board_config < 0)
5163 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
5164 "STAC927x, using BIOS defaults\n");
Richard Fish11b44bb2006-08-23 18:31:34 +02005165 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01005166 } else
5167 err = stac_save_pin_cfgs(codec,
5168 stac927x_brd_tbl[spec->board_config]);
5169 if (err < 0) {
5170 stac92xx_free(codec);
5171 return err;
Matt Porter3cc08dc2006-01-23 15:27:49 +01005172 }
5173
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005174 spec->digbeep_nid = 0x23;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005175 spec->adc_nids = stac927x_adc_nids;
5176 spec->num_adcs = ARRAY_SIZE(stac927x_adc_nids);
5177 spec->mux_nids = stac927x_mux_nids;
5178 spec->num_muxes = ARRAY_SIZE(stac927x_mux_nids);
Matthew Ranostayd9737752008-09-07 12:03:41 +02005179 spec->smux_nids = stac927x_smux_nids;
5180 spec->num_smuxes = ARRAY_SIZE(stac927x_smux_nids);
Matthew Ranostay65973632008-09-16 10:39:37 -04005181 spec->spdif_labels = stac927x_spdif_labels;
Matthew Ranostayb76c8502008-02-06 14:49:44 +01005182 spec->dac_list = stac927x_dac_nids;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005183 spec->multiout.dac_nids = spec->dac_nids;
5184
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005185 switch (spec->board_config) {
Tobin Davis93ed1502006-09-01 21:03:12 +02005186 case STAC_D965_3ST:
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005187 case STAC_D965_5ST:
5188 /* GPIO0 High = Enable EAPD */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005189 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x01;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005190 spec->gpio_data = 0x01;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005191 spec->num_dmics = 0;
5192
Tobin Davis93ed1502006-09-01 21:03:12 +02005193 spec->init = d965_core_init;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005194 spec->mixer = stac927x_mixer;
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005195 break;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005196 case STAC_DELL_BIOS:
Matthew Ranostay780c8be2008-04-14 13:32:27 +02005197 switch (codec->subsystem_id) {
5198 case 0x10280209:
5199 case 0x1028022e:
5200 /* correct the device field to SPDIF out */
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01005201 stac_change_pin_config(codec, 0x21, 0x01442070);
Matthew Ranostay780c8be2008-04-14 13:32:27 +02005202 break;
5203 };
Matthew Ranostay03d7ca12008-02-21 07:51:46 +01005204 /* configure the analog microphone on some laptops */
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01005205 stac_change_pin_config(codec, 0x0c, 0x90a79130);
Matthew Ranostay2f32d902008-01-10 13:06:26 +01005206 /* correct the front output jack as a hp out */
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01005207 stac_change_pin_config(codec, 0x0f, 0x0227011f);
Matthew Ranostayc481fca2008-01-07 12:18:28 +01005208 /* correct the front input jack as a mic */
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01005209 stac_change_pin_config(codec, 0x0e, 0x02a79130);
Matthew Ranostayc481fca2008-01-07 12:18:28 +01005210 /* fallthru */
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005211 case STAC_DELL_3ST:
5212 /* GPIO2 High = Enable EAPD */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005213 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x04;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005214 spec->gpio_data = 0x04;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005215 spec->dmic_nids = stac927x_dmic_nids;
5216 spec->num_dmics = STAC927X_NUM_DMICS;
5217
Tobin Davis93ed1502006-09-01 21:03:12 +02005218 spec->init = d965_core_init;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005219 spec->mixer = stac927x_mixer;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005220 spec->dmux_nids = stac927x_dmux_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +01005221 spec->num_dmuxes = ARRAY_SIZE(stac927x_dmux_nids);
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005222 break;
5223 default:
Matthew Ranostayb2c4f4d2008-09-26 10:06:40 -04005224 if (spec->board_config > STAC_D965_REF) {
5225 /* GPIO0 High = Enable EAPD */
5226 spec->eapd_mask = spec->gpio_mask = 0x01;
5227 spec->gpio_dir = spec->gpio_data = 0x01;
5228 }
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005229 spec->num_dmics = 0;
5230
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005231 spec->init = stac927x_core_init;
5232 spec->mixer = stac927x_mixer;
5233 }
Matt Porter3cc08dc2006-01-23 15:27:49 +01005234
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005235 spec->num_pwrs = 0;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005236 spec->aloopback_mask = 0x40;
5237 spec->aloopback_shift = 0;
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05005238 spec->eapd_switch = 1;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005239
Matt Porter3cc08dc2006-01-23 15:27:49 +01005240 err = stac92xx_parse_auto_config(codec, 0x1e, 0x20);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005241 if (!err) {
5242 if (spec->board_config < 0) {
5243 printk(KERN_WARNING "hda_codec: No auto-config is "
5244 "available, default to model=ref\n");
5245 spec->board_config = STAC_D965_REF;
5246 goto again;
5247 }
5248 err = -EINVAL;
5249 }
Mattc7d4b2f2005-06-27 14:59:41 +02005250 if (err < 0) {
5251 stac92xx_free(codec);
5252 return err;
5253 }
Matt2f2f4252005-04-13 14:45:30 +02005254
5255 codec->patch_ops = stac92xx_patch_ops;
5256
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005257 codec->proc_widget_hook = stac927x_proc_hook;
5258
Takashi Iwai52987652008-01-16 16:09:47 +01005259 /*
5260 * !!FIXME!!
5261 * The STAC927x seem to require fairly long delays for certain
5262 * command sequences. With too short delays (even if the answer
5263 * is set to RIRB properly), it results in the silence output
5264 * on some hardwares like Dell.
5265 *
5266 * The below flag enables the longer delay (see get_response
5267 * in hda_intel.c).
5268 */
5269 codec->bus->needs_damn_long_delay = 1;
5270
Takashi Iwaie28d8322008-12-17 13:48:29 +01005271 /* no jack detecion for ref-no-jd model */
5272 if (spec->board_config == STAC_D965_REF_NO_JD)
5273 spec->hp_detect = 0;
5274
Matt2f2f4252005-04-13 14:45:30 +02005275 return 0;
5276}
5277
Matt Porterf3302a52006-07-31 12:49:34 +02005278static int patch_stac9205(struct hda_codec *codec)
5279{
5280 struct sigmatel_spec *spec;
Takashi Iwai82599802007-07-31 15:56:24 +02005281 int err;
Matt Porterf3302a52006-07-31 12:49:34 +02005282
5283 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5284 if (spec == NULL)
5285 return -ENOMEM;
5286
5287 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005288 spec->num_pins = ARRAY_SIZE(stac9205_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005289 spec->pin_nids = stac9205_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005290 spec->board_config = snd_hda_check_board_config(codec, STAC_9205_MODELS,
5291 stac9205_models,
5292 stac9205_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005293 again:
Richard Fish11b44bb2006-08-23 18:31:34 +02005294 if (spec->board_config < 0) {
5295 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9205, using BIOS defaults\n");
5296 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01005297 } else
5298 err = stac_save_pin_cfgs(codec,
5299 stac9205_brd_tbl[spec->board_config]);
5300 if (err < 0) {
5301 stac92xx_free(codec);
5302 return err;
Matt Porterf3302a52006-07-31 12:49:34 +02005303 }
5304
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005305 spec->digbeep_nid = 0x23;
Matt Porterf3302a52006-07-31 12:49:34 +02005306 spec->adc_nids = stac9205_adc_nids;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005307 spec->num_adcs = ARRAY_SIZE(stac9205_adc_nids);
Matt Porterf3302a52006-07-31 12:49:34 +02005308 spec->mux_nids = stac9205_mux_nids;
Takashi Iwai25494132007-03-12 12:36:16 +01005309 spec->num_muxes = ARRAY_SIZE(stac9205_mux_nids);
Matthew Ranostayd9737752008-09-07 12:03:41 +02005310 spec->smux_nids = stac9205_smux_nids;
5311 spec->num_smuxes = ARRAY_SIZE(stac9205_smux_nids);
Matt Porter8b657272006-10-26 17:12:59 +02005312 spec->dmic_nids = stac9205_dmic_nids;
Takashi Iwaif6e98522007-10-16 14:27:04 +02005313 spec->num_dmics = STAC9205_NUM_DMICS;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005314 spec->dmux_nids = stac9205_dmux_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +01005315 spec->num_dmuxes = ARRAY_SIZE(stac9205_dmux_nids);
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005316 spec->num_pwrs = 0;
Matt Porterf3302a52006-07-31 12:49:34 +02005317
5318 spec->init = stac9205_core_init;
5319 spec->mixer = stac9205_mixer;
5320
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005321 spec->aloopback_mask = 0x40;
5322 spec->aloopback_shift = 0;
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05005323 spec->eapd_switch = 1;
Matt Porterf3302a52006-07-31 12:49:34 +02005324 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostay87d48362007-07-17 11:52:24 +02005325
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005326 switch (spec->board_config){
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005327 case STAC_9205_DELL_M43:
Matthew Ranostay87d48362007-07-17 11:52:24 +02005328 /* Enable SPDIF in/out */
Takashi Iwaiaf9f341a2008-11-18 10:38:56 +01005329 stac_change_pin_config(codec, 0x1f, 0x01441030);
5330 stac_change_pin_config(codec, 0x20, 0x1c410030);
Matt Porter33382402006-12-18 13:17:28 +01005331
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005332 /* Enable unsol response for GPIO4/Dock HP connection */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005333 err = stac_add_event(spec, codec->afg, STAC_VREF_EVENT, 0x01);
5334 if (err < 0)
5335 return err;
Takashi Iwaic5d08bb2008-11-18 10:55:36 +01005336 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005337 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10);
5338 snd_hda_codec_write_cache(codec, codec->afg, 0,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005339 AC_VERB_SET_UNSOLICITED_ENABLE,
5340 AC_USRSP_EN | err);
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005341
5342 spec->gpio_dir = 0x0b;
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005343 spec->eapd_mask = 0x01;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005344 spec->gpio_mask = 0x1b;
5345 spec->gpio_mute = 0x10;
Matthew Ranostaye2e7d622008-01-24 15:32:15 +01005346 /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute,
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005347 * GPIO3 Low = DRM
Matthew Ranostay87d48362007-07-17 11:52:24 +02005348 */
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005349 spec->gpio_data = 0x01;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005350 break;
Matthew Ranostayb2c4f4d2008-09-26 10:06:40 -04005351 case STAC_9205_REF:
5352 /* SPDIF-In enabled */
5353 break;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005354 default:
5355 /* GPIO0 High = EAPD */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005356 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005357 spec->gpio_data = 0x01;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005358 break;
5359 }
Matthew Ranostay87d48362007-07-17 11:52:24 +02005360
Matt Porterf3302a52006-07-31 12:49:34 +02005361 err = stac92xx_parse_auto_config(codec, 0x1f, 0x20);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005362 if (!err) {
5363 if (spec->board_config < 0) {
5364 printk(KERN_WARNING "hda_codec: No auto-config is "
5365 "available, default to model=ref\n");
5366 spec->board_config = STAC_9205_REF;
5367 goto again;
5368 }
5369 err = -EINVAL;
5370 }
Matt Porterf3302a52006-07-31 12:49:34 +02005371 if (err < 0) {
5372 stac92xx_free(codec);
5373 return err;
5374 }
5375
5376 codec->patch_ops = stac92xx_patch_ops;
5377
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005378 codec->proc_widget_hook = stac9205_proc_hook;
5379
Matt Porterf3302a52006-07-31 12:49:34 +02005380 return 0;
5381}
5382
Matt2f2f4252005-04-13 14:45:30 +02005383/*
Guillaume Munch6d859062006-08-22 17:15:47 +02005384 * STAC9872 hack
Takashi Iwaidb064e52006-03-16 16:04:58 +01005385 */
5386
Takashi Iwai1e137f92009-01-21 07:41:22 +01005387static struct hda_verb stac9872_core_init[] = {
Takashi Iwai1624cb92007-07-05 13:10:51 +02005388 {0x15, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mic-sel: 0a,0d,14,02 */
Takashi Iwaidb064e52006-03-16 16:04:58 +01005389 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */
5390 {}
5391};
5392
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005393static struct snd_kcontrol_new stac9872_mixer[] = {
5394 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_INPUT),
5395 HDA_CODEC_MUTE("Capture Switch", 0x09, 0, HDA_INPUT),
5396 STAC_INPUT_SOURCE(1),
5397 { } /* end */
5398};
5399
5400static hda_nid_t stac9872_pin_nids[] = {
5401 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
5402 0x11, 0x13, 0x14,
5403};
5404
5405static hda_nid_t stac9872_adc_nids[] = {
5406 0x8 /*,0x6*/
5407};
5408
5409static hda_nid_t stac9872_mux_nids[] = {
5410 0x15
5411};
5412
Guillaume Munch6d859062006-08-22 17:15:47 +02005413static int patch_stac9872(struct hda_codec *codec)
Takashi Iwaidb064e52006-03-16 16:04:58 +01005414{
5415 struct sigmatel_spec *spec;
Takashi Iwai1e137f92009-01-21 07:41:22 +01005416 int err;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005417
Takashi Iwaidb064e52006-03-16 16:04:58 +01005418 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5419 if (spec == NULL)
5420 return -ENOMEM;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005421 codec->spec = spec;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005422
Takashi Iwai1e137f92009-01-21 07:41:22 +01005423#if 0 /* no model right now */
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005424 spec->board_config = snd_hda_check_board_config(codec, STAC_9872_MODELS,
5425 stac9872_models,
5426 stac9872_cfg_tbl);
Takashi Iwai1e137f92009-01-21 07:41:22 +01005427#endif
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005428
Takashi Iwai1e137f92009-01-21 07:41:22 +01005429 spec->num_pins = ARRAY_SIZE(stac9872_pin_nids);
5430 spec->pin_nids = stac9872_pin_nids;
5431 spec->multiout.dac_nids = spec->dac_nids;
5432 spec->num_adcs = ARRAY_SIZE(stac9872_adc_nids);
5433 spec->adc_nids = stac9872_adc_nids;
5434 spec->num_muxes = ARRAY_SIZE(stac9872_mux_nids);
5435 spec->mux_nids = stac9872_mux_nids;
5436 spec->mixer = stac9872_mixer;
5437 spec->init = stac9872_core_init;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005438
Takashi Iwai1e137f92009-01-21 07:41:22 +01005439 err = stac92xx_parse_auto_config(codec, 0x10, 0x12);
5440 if (err < 0) {
5441 stac92xx_free(codec);
5442 return -EINVAL;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005443 }
Takashi Iwai1e137f92009-01-21 07:41:22 +01005444 spec->input_mux = &spec->private_imux;
5445 codec->patch_ops = stac92xx_patch_ops;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005446 return 0;
5447}
5448
5449
5450/*
Matt2f2f4252005-04-13 14:45:30 +02005451 * patch entries
5452 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005453static struct hda_codec_preset snd_hda_preset_sigmatel[] = {
Matt2f2f4252005-04-13 14:45:30 +02005454 { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 },
5455 { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x },
5456 { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x },
5457 { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x },
5458 { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x },
5459 { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x },
5460 { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x },
Matt Porter22a27c72006-07-06 18:49:10 +02005461 { .id = 0x83847618, .name = "STAC9227", .patch = patch_stac927x },
5462 { .id = 0x83847619, .name = "STAC9227", .patch = patch_stac927x },
5463 { .id = 0x83847616, .name = "STAC9228", .patch = patch_stac927x },
5464 { .id = 0x83847617, .name = "STAC9228", .patch = patch_stac927x },
5465 { .id = 0x83847614, .name = "STAC9229", .patch = patch_stac927x },
5466 { .id = 0x83847615, .name = "STAC9229", .patch = patch_stac927x },
Matt Porter3cc08dc2006-01-23 15:27:49 +01005467 { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x },
5468 { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x },
5469 { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x },
5470 { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x },
5471 { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x },
5472 { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x },
5473 { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x },
5474 { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x },
5475 { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x },
5476 { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x },
Tobin Davis8e21c342007-01-08 11:04:17 +01005477 { .id = 0x83847632, .name = "STAC9202", .patch = patch_stac925x },
5478 { .id = 0x83847633, .name = "STAC9202D", .patch = patch_stac925x },
5479 { .id = 0x83847634, .name = "STAC9250", .patch = patch_stac925x },
5480 { .id = 0x83847635, .name = "STAC9250D", .patch = patch_stac925x },
5481 { .id = 0x83847636, .name = "STAC9251", .patch = patch_stac925x },
5482 { .id = 0x83847637, .name = "STAC9250D", .patch = patch_stac925x },
Takashi Iwai7bd3c0f2008-05-02 12:28:02 +02005483 { .id = 0x83847645, .name = "92HD206X", .patch = patch_stac927x },
5484 { .id = 0x83847646, .name = "92HD206D", .patch = patch_stac927x },
Guillaume Munch6d859062006-08-22 17:15:47 +02005485 /* The following does not take into account .id=0x83847661 when subsys =
5486 * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are
5487 * currently not fully supported.
5488 */
5489 { .id = 0x83847661, .name = "CXD9872RD/K", .patch = patch_stac9872 },
5490 { .id = 0x83847662, .name = "STAC9872AK", .patch = patch_stac9872 },
5491 { .id = 0x83847664, .name = "CXD9872AKD", .patch = patch_stac9872 },
Matt Porterf3302a52006-07-31 12:49:34 +02005492 { .id = 0x838476a0, .name = "STAC9205", .patch = patch_stac9205 },
5493 { .id = 0x838476a1, .name = "STAC9205D", .patch = patch_stac9205 },
5494 { .id = 0x838476a2, .name = "STAC9204", .patch = patch_stac9205 },
5495 { .id = 0x838476a3, .name = "STAC9204D", .patch = patch_stac9205 },
5496 { .id = 0x838476a4, .name = "STAC9255", .patch = patch_stac9205 },
5497 { .id = 0x838476a5, .name = "STAC9255D", .patch = patch_stac9205 },
5498 { .id = 0x838476a6, .name = "STAC9254", .patch = patch_stac9205 },
5499 { .id = 0x838476a7, .name = "STAC9254D", .patch = patch_stac9205 },
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005500 { .id = 0x111d7603, .name = "92HD75B3X5", .patch = patch_stac92hd71bxx},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005501 { .id = 0x111d7604, .name = "92HD83C1X5", .patch = patch_stac92hd83xxx},
5502 { .id = 0x111d7605, .name = "92HD81B1X5", .patch = patch_stac92hd83xxx},
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005503 { .id = 0x111d7608, .name = "92HD75B2X5", .patch = patch_stac92hd71bxx},
Matthew Ranostay541eee82007-12-14 12:08:04 +01005504 { .id = 0x111d7674, .name = "92HD73D1X5", .patch = patch_stac92hd73xx },
5505 { .id = 0x111d7675, .name = "92HD73C1X5", .patch = patch_stac92hd73xx },
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005506 { .id = 0x111d7676, .name = "92HD73E1X5", .patch = patch_stac92hd73xx },
Matthew Ranostay541eee82007-12-14 12:08:04 +01005507 { .id = 0x111d76b0, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
5508 { .id = 0x111d76b1, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
5509 { .id = 0x111d76b2, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
5510 { .id = 0x111d76b3, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
5511 { .id = 0x111d76b4, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
5512 { .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
5513 { .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
5514 { .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
Matt2f2f4252005-04-13 14:45:30 +02005515 {} /* terminator */
5516};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005517
5518MODULE_ALIAS("snd-hda-codec-id:8384*");
5519MODULE_ALIAS("snd-hda-codec-id:111d*");
5520
5521MODULE_LICENSE("GPL");
5522MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec");
5523
5524static struct hda_codec_preset_list sigmatel_list = {
5525 .preset = snd_hda_preset_sigmatel,
5526 .owner = THIS_MODULE,
5527};
5528
5529static int __init patch_sigmatel_init(void)
5530{
5531 return snd_hda_add_codec_preset(&sigmatel_list);
5532}
5533
5534static void __exit patch_sigmatel_exit(void)
5535{
5536 snd_hda_delete_codec_preset(&sigmatel_list);
5537}
5538
5539module_init(patch_sigmatel_init)
5540module_exit(patch_sigmatel_exit)