blob: 85dc642d1130ce6afc233e03e1c367340e673b9e [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 Iwaid9a42682009-01-22 17:40:18 +010069 STAC_9205_EAPD,
Takashi Iwaif5fcc132006-11-24 17:07:44 +010070 STAC_9205_MODELS
71};
72
73enum {
Takashi Iwai9e43f0d2008-12-17 14:51:01 +010074 STAC_92HD73XX_NO_JD, /* no jack-detection */
Matthew Ranostaye1f0d662007-12-13 17:47:21 +010075 STAC_92HD73XX_REF,
Takashi Iwai661cd8f2008-11-25 15:18:29 +010076 STAC_DELL_M6_AMIC,
77 STAC_DELL_M6_DMIC,
78 STAC_DELL_M6_BOTH,
Matthew Ranostay6b3ab212008-11-03 08:12:43 -050079 STAC_DELL_EQ,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +010080 STAC_92HD73XX_MODELS
81};
82
83enum {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +020084 STAC_92HD83XXX_REF,
Matthew Ranostay32ed3f42009-01-22 20:53:29 -050085 STAC_92HD83XXX_PWR_REF,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +020086 STAC_92HD83XXX_MODELS
87};
88
89enum {
Matthew Ranostaye035b842007-11-06 11:53:55 +010090 STAC_92HD71BXX_REF,
Matthew Ranostaya7662642008-02-21 07:51:14 +010091 STAC_DELL_M4_1,
92 STAC_DELL_M4_2,
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -050093 STAC_DELL_M4_3,
Matthew Ranostay6a14f582008-09-12 12:02:30 -040094 STAC_HP_M4,
Takashi Iwai1b0652e2009-01-14 08:27:35 +010095 STAC_HP_DV5,
Matthew Ranostaye035b842007-11-06 11:53:55 +010096 STAC_92HD71BXX_MODELS
97};
98
99enum {
Tobin Davis8e21c342007-01-08 11:04:17 +0100100 STAC_925x_REF,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +0200101 STAC_M1,
102 STAC_M1_2,
103 STAC_M2,
Tobin Davis8e21c342007-01-08 11:04:17 +0100104 STAC_M2_2,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +0200105 STAC_M3,
106 STAC_M5,
107 STAC_M6,
Tobin Davis8e21c342007-01-08 11:04:17 +0100108 STAC_925x_MODELS
109};
110
111enum {
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100112 STAC_D945_REF,
113 STAC_D945GTP3,
114 STAC_D945GTP5,
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +0200115 STAC_INTEL_MAC_V1,
116 STAC_INTEL_MAC_V2,
117 STAC_INTEL_MAC_V3,
118 STAC_INTEL_MAC_V4,
119 STAC_INTEL_MAC_V5,
Nicolas Boichat536319a2008-07-21 22:18:01 +0800120 STAC_INTEL_MAC_AUTO, /* This model is selected if no module parameter
121 * is given, one of the above models will be
122 * chosen according to the subsystem id. */
Takashi Iwaidfe495d2007-08-23 19:04:28 +0200123 /* for backward compatibility */
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100124 STAC_MACMINI,
Takashi Iwai3fc24d82007-02-16 13:27:18 +0100125 STAC_MACBOOK,
Nicolas Boichat6f0778d2007-03-15 12:38:15 +0100126 STAC_MACBOOK_PRO_V1,
127 STAC_MACBOOK_PRO_V2,
Sylvain FORETf16928f2007-04-27 14:22:36 +0200128 STAC_IMAC_INTEL,
Takashi Iwai0dae0f82007-05-21 12:41:29 +0200129 STAC_IMAC_INTEL_20,
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -0300130 STAC_ECS_202,
Takashi Iwaidfe495d2007-08-23 19:04:28 +0200131 STAC_922X_DELL_D81,
132 STAC_922X_DELL_D82,
133 STAC_922X_DELL_M81,
134 STAC_922X_DELL_M82,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100135 STAC_922X_MODELS
136};
137
138enum {
Takashi Iwaie28d8322008-12-17 13:48:29 +0100139 STAC_D965_REF_NO_JD, /* no jack-detection */
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100140 STAC_D965_REF,
141 STAC_D965_3ST,
142 STAC_D965_5ST,
Tobin Davis4ff076e2007-08-07 11:48:12 +0200143 STAC_DELL_3ST,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +0100144 STAC_DELL_BIOS,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100145 STAC_927X_MODELS
146};
Matt Porter403d1942005-11-29 15:00:51 +0100147
Matthew Ranostay74aeaab2008-10-25 01:06:04 -0400148struct sigmatel_event {
149 hda_nid_t nid;
Takashi Iwaic6e4c662008-11-25 11:58:19 +0100150 unsigned char type;
151 unsigned char tag;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -0400152 int data;
153};
154
155struct sigmatel_jack {
156 hda_nid_t nid;
157 int type;
158 struct snd_jack *jack;
159};
160
Matt2f2f4252005-04-13 14:45:30 +0200161struct sigmatel_spec {
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100162 struct snd_kcontrol_new *mixers[4];
Mattc7d4b2f2005-06-27 14:59:41 +0200163 unsigned int num_mixers;
164
Matt Porter403d1942005-11-29 15:00:51 +0100165 int board_config;
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -0500166 unsigned int eapd_switch: 1;
Mattc7d4b2f2005-06-27 14:59:41 +0200167 unsigned int surr_switch: 1;
Matt Porter3cc08dc2006-01-23 15:27:49 +0100168 unsigned int alt_switch: 1;
Takashi Iwai82bc9552006-03-21 11:24:42 +0100169 unsigned int hp_detect: 1;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400170 unsigned int spdif_mute: 1;
Takashi Iwai7c7767e2009-01-20 15:28:38 +0100171 unsigned int check_volume_offset:1;
Mattc7d4b2f2005-06-27 14:59:41 +0200172
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100173 /* gpio lines */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +0200174 unsigned int eapd_mask;
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100175 unsigned int gpio_mask;
176 unsigned int gpio_dir;
177 unsigned int gpio_data;
178 unsigned int gpio_mute;
179
Matthew Ranostay8daaaa92008-08-15 07:45:52 +0200180 /* stream */
181 unsigned int stream_delay;
182
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100183 /* analog loopback */
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100184 unsigned char aloopback_mask;
185 unsigned char aloopback_shift;
Takashi Iwai82599802007-07-31 15:56:24 +0200186
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100187 /* power management */
188 unsigned int num_pwrs;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200189 unsigned int *pwr_mapping;
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100190 hda_nid_t *pwr_nids;
Matthew Ranostayb76c8502008-02-06 14:49:44 +0100191 hda_nid_t *dac_list;
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100192
Matthew Ranostay74aeaab2008-10-25 01:06:04 -0400193 /* jack detection */
194 struct snd_array jacks;
195
196 /* events */
197 struct snd_array events;
198
Matt2f2f4252005-04-13 14:45:30 +0200199 /* playback */
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100200 struct hda_input_mux *mono_mux;
Matthew Ranostay89385032008-09-11 09:49:39 -0400201 struct hda_input_mux *amp_mux;
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100202 unsigned int cur_mmux;
Matt2f2f4252005-04-13 14:45:30 +0200203 struct hda_multi_out multiout;
Matt Porter3cc08dc2006-01-23 15:27:49 +0100204 hda_nid_t dac_nids[5];
Takashi Iwaic21ca4a2008-12-19 09:26:08 +0100205 hda_nid_t hp_dacs[5];
206 hda_nid_t speaker_dacs[5];
Matt2f2f4252005-04-13 14:45:30 +0200207
Takashi Iwai7c7767e2009-01-20 15:28:38 +0100208 int volume_offset;
209
Matt2f2f4252005-04-13 14:45:30 +0200210 /* capture */
211 hda_nid_t *adc_nids;
Matt2f2f4252005-04-13 14:45:30 +0200212 unsigned int num_adcs;
Mattdabbed62005-06-14 10:19:34 +0200213 hda_nid_t *mux_nids;
214 unsigned int num_muxes;
Matt Porter8b657272006-10-26 17:12:59 +0200215 hda_nid_t *dmic_nids;
216 unsigned int num_dmics;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100217 hda_nid_t *dmux_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +0100218 unsigned int num_dmuxes;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200219 hda_nid_t *smux_nids;
220 unsigned int num_smuxes;
Matthew Ranostay65973632008-09-16 10:39:37 -0400221 const char **spdif_labels;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200222
Mattdabbed62005-06-14 10:19:34 +0200223 hda_nid_t dig_in_nid;
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100224 hda_nid_t mono_nid;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200225 hda_nid_t anabeep_nid;
226 hda_nid_t digbeep_nid;
Matt2f2f4252005-04-13 14:45:30 +0200227
Matt2f2f4252005-04-13 14:45:30 +0200228 /* pin widgets */
229 hda_nid_t *pin_nids;
230 unsigned int num_pins;
Matt2f2f4252005-04-13 14:45:30 +0200231 unsigned int *pin_configs;
Matt2f2f4252005-04-13 14:45:30 +0200232
233 /* codec specific stuff */
234 struct hda_verb *init;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100235 struct snd_kcontrol_new *mixer;
Matt2f2f4252005-04-13 14:45:30 +0200236
237 /* capture source */
Matt Porter8b657272006-10-26 17:12:59 +0200238 struct hda_input_mux *dinput_mux;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100239 unsigned int cur_dmux[2];
Mattc7d4b2f2005-06-27 14:59:41 +0200240 struct hda_input_mux *input_mux;
Matt Porter3cc08dc2006-01-23 15:27:49 +0100241 unsigned int cur_mux[3];
Matthew Ranostayd9737752008-09-07 12:03:41 +0200242 struct hda_input_mux *sinput_mux;
243 unsigned int cur_smux[2];
Matthew Ranostay2a9c7812008-09-13 16:45:39 -0400244 unsigned int cur_amux;
245 hda_nid_t *amp_nids;
246 unsigned int num_amps;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +0200247 unsigned int powerdown_adcs;
Matt2f2f4252005-04-13 14:45:30 +0200248
Matt Porter403d1942005-11-29 15:00:51 +0100249 /* i/o switches */
250 unsigned int io_switch[2];
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +0200251 unsigned int clfe_swap;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +0100252 hda_nid_t line_switch; /* shared line-in for input and output */
253 hda_nid_t mic_switch; /* shared mic-in for input and output */
254 hda_nid_t hp_switch; /* NID of HP as line-out */
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200255 unsigned int aloopback;
Matt2f2f4252005-04-13 14:45:30 +0200256
Mattc7d4b2f2005-06-27 14:59:41 +0200257 struct hda_pcm pcm_rec[2]; /* PCM information */
258
259 /* dynamic controls and input_mux */
260 struct auto_pin_cfg autocfg;
Takashi Iwai603c4012008-07-30 15:01:44 +0200261 struct snd_array kctls;
Matt Porter8b657272006-10-26 17:12:59 +0200262 struct hda_input_mux private_dimux;
Mattc7d4b2f2005-06-27 14:59:41 +0200263 struct hda_input_mux private_imux;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200264 struct hda_input_mux private_smux;
Matthew Ranostay89385032008-09-11 09:49:39 -0400265 struct hda_input_mux private_amp_mux;
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100266 struct hda_input_mux private_mono_mux;
Matt2f2f4252005-04-13 14:45:30 +0200267};
268
269static hda_nid_t stac9200_adc_nids[1] = {
270 0x03,
271};
272
273static hda_nid_t stac9200_mux_nids[1] = {
274 0x0c,
275};
276
277static hda_nid_t stac9200_dac_nids[1] = {
278 0x02,
279};
280
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100281static hda_nid_t stac92hd73xx_pwr_nids[8] = {
282 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
283 0x0f, 0x10, 0x11
284};
285
Matthew Ranostay0ffa9802008-09-08 11:20:05 -0400286static hda_nid_t stac92hd73xx_slave_dig_outs[2] = {
287 0x26, 0,
288};
289
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100290static hda_nid_t stac92hd73xx_adc_nids[2] = {
291 0x1a, 0x1b
292};
293
Matthew Ranostay2a9c7812008-09-13 16:45:39 -0400294#define DELL_M6_AMP 2
295static hda_nid_t stac92hd73xx_amp_nids[3] = {
296 0x0b, 0x0c, 0x0e
Matthew Ranostay89385032008-09-11 09:49:39 -0400297};
298
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100299#define STAC92HD73XX_NUM_DMICS 2
300static hda_nid_t stac92hd73xx_dmic_nids[STAC92HD73XX_NUM_DMICS + 1] = {
301 0x13, 0x14, 0
302};
303
304#define STAC92HD73_DAC_COUNT 5
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100305
306static hda_nid_t stac92hd73xx_mux_nids[4] = {
307 0x28, 0x29, 0x2a, 0x2b,
308};
309
310static hda_nid_t stac92hd73xx_dmux_nids[2] = {
311 0x20, 0x21,
312};
313
Matthew Ranostayd9737752008-09-07 12:03:41 +0200314static hda_nid_t stac92hd73xx_smux_nids[2] = {
315 0x22, 0x23,
316};
317
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200318#define STAC92HD83XXX_NUM_DMICS 2
319static hda_nid_t stac92hd83xxx_dmic_nids[STAC92HD83XXX_NUM_DMICS + 1] = {
320 0x11, 0x12, 0
321};
322
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200323#define STAC92HD83_DAC_COUNT 3
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200324
325static hda_nid_t stac92hd83xxx_dmux_nids[2] = {
326 0x17, 0x18,
327};
328
329static hda_nid_t stac92hd83xxx_adc_nids[2] = {
330 0x15, 0x16,
331};
332
333static hda_nid_t stac92hd83xxx_pwr_nids[4] = {
334 0xa, 0xb, 0xd, 0xe,
335};
336
Matthew Ranostay0ffa9802008-09-08 11:20:05 -0400337static hda_nid_t stac92hd83xxx_slave_dig_outs[2] = {
338 0x1e, 0,
339};
340
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200341static unsigned int stac92hd83xxx_pwr_mapping[4] = {
Matthew Ranostay87e88a72009-01-22 20:38:42 -0500342 0x03, 0x0c, 0x20, 0x40,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200343};
344
Takashi Iwai9248f262009-01-14 09:40:25 +0100345static hda_nid_t stac92hd83xxx_amp_nids[1] = {
Matthew Ranostayc15c5062009-01-13 13:30:07 -0500346 0xc,
347};
348
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100349static hda_nid_t stac92hd71bxx_pwr_nids[3] = {
350 0x0a, 0x0d, 0x0f
351};
352
Matthew Ranostaye035b842007-11-06 11:53:55 +0100353static hda_nid_t stac92hd71bxx_adc_nids[2] = {
354 0x12, 0x13,
355};
356
357static hda_nid_t stac92hd71bxx_mux_nids[2] = {
358 0x1a, 0x1b
359};
360
Matthew Ranostay4b33c762008-10-10 09:07:23 -0400361static hda_nid_t stac92hd71bxx_dmux_nids[2] = {
362 0x1c, 0x1d,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100363};
364
Matthew Ranostayd9737752008-09-07 12:03:41 +0200365static hda_nid_t stac92hd71bxx_smux_nids[2] = {
366 0x24, 0x25,
367};
368
Matthew Ranostaye035b842007-11-06 11:53:55 +0100369#define STAC92HD71BXX_NUM_DMICS 2
370static hda_nid_t stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS + 1] = {
371 0x18, 0x19, 0
372};
373
Matthew Ranostay0ffa9802008-09-08 11:20:05 -0400374static hda_nid_t stac92hd71bxx_slave_dig_outs[2] = {
375 0x22, 0
376};
377
Tobin Davis8e21c342007-01-08 11:04:17 +0100378static hda_nid_t stac925x_adc_nids[1] = {
379 0x03,
380};
381
382static hda_nid_t stac925x_mux_nids[1] = {
383 0x0f,
384};
385
386static hda_nid_t stac925x_dac_nids[1] = {
387 0x02,
388};
389
Takashi Iwaif6e98522007-10-16 14:27:04 +0200390#define STAC925X_NUM_DMICS 1
391static hda_nid_t stac925x_dmic_nids[STAC925X_NUM_DMICS + 1] = {
392 0x15, 0
Tobin Davis2c11f952007-05-17 09:36:34 +0200393};
394
Takashi Iwai1697055e2007-12-18 18:05:52 +0100395static hda_nid_t stac925x_dmux_nids[1] = {
396 0x14,
397};
398
Matt2f2f4252005-04-13 14:45:30 +0200399static hda_nid_t stac922x_adc_nids[2] = {
400 0x06, 0x07,
401};
402
403static hda_nid_t stac922x_mux_nids[2] = {
404 0x12, 0x13,
405};
406
Matthew Ranostay45c1d852009-02-04 17:49:41 -0500407static hda_nid_t stac927x_slave_dig_outs[2] = {
408 0x1f, 0,
409};
410
Matt Porter3cc08dc2006-01-23 15:27:49 +0100411static hda_nid_t stac927x_adc_nids[3] = {
412 0x07, 0x08, 0x09
413};
414
415static hda_nid_t stac927x_mux_nids[3] = {
416 0x15, 0x16, 0x17
417};
418
Matthew Ranostayd9737752008-09-07 12:03:41 +0200419static hda_nid_t stac927x_smux_nids[1] = {
420 0x21,
421};
422
Matthew Ranostayb76c8502008-02-06 14:49:44 +0100423static hda_nid_t stac927x_dac_nids[6] = {
424 0x02, 0x03, 0x04, 0x05, 0x06, 0
425};
426
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100427static hda_nid_t stac927x_dmux_nids[1] = {
428 0x1b,
429};
430
Matthew Ranostay7f168592007-10-18 17:38:17 +0200431#define STAC927X_NUM_DMICS 2
432static hda_nid_t stac927x_dmic_nids[STAC927X_NUM_DMICS + 1] = {
433 0x13, 0x14, 0
434};
435
Matthew Ranostay65973632008-09-16 10:39:37 -0400436static const char *stac927x_spdif_labels[5] = {
437 "Digital Playback", "ADAT", "Analog Mux 1",
438 "Analog Mux 2", "Analog Mux 3"
439};
440
Matt Porterf3302a52006-07-31 12:49:34 +0200441static hda_nid_t stac9205_adc_nids[2] = {
442 0x12, 0x13
443};
444
445static hda_nid_t stac9205_mux_nids[2] = {
446 0x19, 0x1a
447};
448
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100449static hda_nid_t stac9205_dmux_nids[1] = {
Takashi Iwai1697055e2007-12-18 18:05:52 +0100450 0x1d,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100451};
452
Matthew Ranostayd9737752008-09-07 12:03:41 +0200453static hda_nid_t stac9205_smux_nids[1] = {
454 0x21,
455};
456
Takashi Iwaif6e98522007-10-16 14:27:04 +0200457#define STAC9205_NUM_DMICS 2
458static hda_nid_t stac9205_dmic_nids[STAC9205_NUM_DMICS + 1] = {
459 0x17, 0x18, 0
Matt Porter8b657272006-10-26 17:12:59 +0200460};
461
Mattc7d4b2f2005-06-27 14:59:41 +0200462static hda_nid_t stac9200_pin_nids[8] = {
Tobin Davis93ed1502006-09-01 21:03:12 +0200463 0x08, 0x09, 0x0d, 0x0e,
464 0x0f, 0x10, 0x11, 0x12,
Matt2f2f4252005-04-13 14:45:30 +0200465};
466
Tobin Davis8e21c342007-01-08 11:04:17 +0100467static hda_nid_t stac925x_pin_nids[8] = {
468 0x07, 0x08, 0x0a, 0x0b,
469 0x0c, 0x0d, 0x10, 0x11,
470};
471
Matt2f2f4252005-04-13 14:45:30 +0200472static hda_nid_t stac922x_pin_nids[10] = {
473 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
474 0x0f, 0x10, 0x11, 0x15, 0x1b,
475};
476
Matthew Ranostaya7662642008-02-21 07:51:14 +0100477static hda_nid_t stac92hd73xx_pin_nids[13] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100478 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
479 0x0f, 0x10, 0x11, 0x12, 0x13,
Matthew Ranostayd9737752008-09-07 12:03:41 +0200480 0x14, 0x22, 0x23
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100481};
482
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200483static hda_nid_t stac92hd83xxx_pin_nids[14] = {
484 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
485 0x0f, 0x10, 0x11, 0x12, 0x13,
486 0x1d, 0x1e, 0x1f, 0x20
487};
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -0500488
489#define STAC92HD71BXX_NUM_PINS 13
490static hda_nid_t stac92hd71bxx_pin_nids_4port[STAC92HD71BXX_NUM_PINS] = {
491 0x0a, 0x0b, 0x0c, 0x0d, 0x00,
492 0x00, 0x14, 0x18, 0x19, 0x1e,
493 0x1f, 0x20, 0x27
494};
495static hda_nid_t stac92hd71bxx_pin_nids_6port[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaye035b842007-11-06 11:53:55 +0100496 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
497 0x0f, 0x14, 0x18, 0x19, 0x1e,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -0500498 0x1f, 0x20, 0x27
Matthew Ranostaye035b842007-11-06 11:53:55 +0100499};
500
Matt Porter3cc08dc2006-01-23 15:27:49 +0100501static hda_nid_t stac927x_pin_nids[14] = {
502 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
503 0x0f, 0x10, 0x11, 0x12, 0x13,
504 0x14, 0x21, 0x22, 0x23,
505};
506
Matt Porterf3302a52006-07-31 12:49:34 +0200507static hda_nid_t stac9205_pin_nids[12] = {
508 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
509 0x0f, 0x14, 0x16, 0x17, 0x18,
510 0x21, 0x22,
Matt Porterf3302a52006-07-31 12:49:34 +0200511};
512
Matthew Ranostay89385032008-09-11 09:49:39 -0400513#define stac92xx_amp_volume_info snd_hda_mixer_amp_volume_info
514
515static int stac92xx_amp_volume_get(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_get(kcontrol, ucontrol);
526}
527
528static int stac92xx_amp_volume_put(struct snd_kcontrol *kcontrol,
529 struct snd_ctl_elem_value *ucontrol)
530{
531 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
532 struct sigmatel_spec *spec = codec->spec;
533 hda_nid_t nid = spec->amp_nids[spec->cur_amux];
534
535 kcontrol->private_value ^= get_amp_nid(kcontrol);
536 kcontrol->private_value |= nid;
537
538 return snd_hda_mixer_amp_volume_put(kcontrol, ucontrol);
539}
540
Matt Porter8b657272006-10-26 17:12:59 +0200541static int stac92xx_dmux_enum_info(struct snd_kcontrol *kcontrol,
542 struct snd_ctl_elem_info *uinfo)
543{
544 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
545 struct sigmatel_spec *spec = codec->spec;
546 return snd_hda_input_mux_info(spec->dinput_mux, uinfo);
547}
548
549static int stac92xx_dmux_enum_get(struct snd_kcontrol *kcontrol,
550 struct snd_ctl_elem_value *ucontrol)
551{
552 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
553 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100554 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Matt Porter8b657272006-10-26 17:12:59 +0200555
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100556 ucontrol->value.enumerated.item[0] = spec->cur_dmux[dmux_idx];
Matt Porter8b657272006-10-26 17:12:59 +0200557 return 0;
558}
559
560static int stac92xx_dmux_enum_put(struct snd_kcontrol *kcontrol,
561 struct snd_ctl_elem_value *ucontrol)
562{
563 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
564 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100565 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Matt Porter8b657272006-10-26 17:12:59 +0200566
567 return snd_hda_input_mux_put(codec, spec->dinput_mux, ucontrol,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100568 spec->dmux_nids[dmux_idx], &spec->cur_dmux[dmux_idx]);
Matt Porter8b657272006-10-26 17:12:59 +0200569}
570
Matthew Ranostayd9737752008-09-07 12:03:41 +0200571static int stac92xx_smux_enum_info(struct snd_kcontrol *kcontrol,
572 struct snd_ctl_elem_info *uinfo)
573{
574 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
575 struct sigmatel_spec *spec = codec->spec;
576 return snd_hda_input_mux_info(spec->sinput_mux, uinfo);
577}
578
579static int stac92xx_smux_enum_get(struct snd_kcontrol *kcontrol,
580 struct snd_ctl_elem_value *ucontrol)
581{
582 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
583 struct sigmatel_spec *spec = codec->spec;
584 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
585
586 ucontrol->value.enumerated.item[0] = spec->cur_smux[smux_idx];
587 return 0;
588}
589
590static int stac92xx_smux_enum_put(struct snd_kcontrol *kcontrol,
591 struct snd_ctl_elem_value *ucontrol)
592{
593 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
594 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400595 struct hda_input_mux *smux = &spec->private_smux;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200596 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400597 int err, val;
598 hda_nid_t nid;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200599
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400600 err = snd_hda_input_mux_put(codec, spec->sinput_mux, ucontrol,
Matthew Ranostayd9737752008-09-07 12:03:41 +0200601 spec->smux_nids[smux_idx], &spec->cur_smux[smux_idx]);
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400602 if (err < 0)
603 return err;
604
605 if (spec->spdif_mute) {
606 if (smux_idx == 0)
607 nid = spec->multiout.dig_out_nid;
608 else
609 nid = codec->slave_dig_outs[smux_idx - 1];
610 if (spec->cur_smux[smux_idx] == smux->num_items - 1)
Takashi Iwaic9b46f92008-12-01 11:42:09 +0100611 val = HDA_AMP_MUTE;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400612 else
Takashi Iwaic9b46f92008-12-01 11:42:09 +0100613 val = 0;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400614 /* un/mute SPDIF out */
Takashi Iwaic9b46f92008-12-01 11:42:09 +0100615 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
616 HDA_AMP_MUTE, val);
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400617 }
618 return 0;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200619}
620
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100621static int stac92xx_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Matt2f2f4252005-04-13 14:45:30 +0200622{
623 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
624 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +0200625 return snd_hda_input_mux_info(spec->input_mux, uinfo);
Matt2f2f4252005-04-13 14:45:30 +0200626}
627
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100628static int stac92xx_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Matt2f2f4252005-04-13 14:45:30 +0200629{
630 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
631 struct sigmatel_spec *spec = codec->spec;
632 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
633
634 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
635 return 0;
636}
637
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100638static int stac92xx_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Matt2f2f4252005-04-13 14:45:30 +0200639{
640 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
641 struct sigmatel_spec *spec = codec->spec;
642 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
643
Mattc7d4b2f2005-06-27 14:59:41 +0200644 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
Matt2f2f4252005-04-13 14:45:30 +0200645 spec->mux_nids[adc_idx], &spec->cur_mux[adc_idx]);
646}
647
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100648static int stac92xx_mono_mux_enum_info(struct snd_kcontrol *kcontrol,
649 struct snd_ctl_elem_info *uinfo)
650{
651 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
652 struct sigmatel_spec *spec = codec->spec;
653 return snd_hda_input_mux_info(spec->mono_mux, uinfo);
654}
655
656static int stac92xx_mono_mux_enum_get(struct snd_kcontrol *kcontrol,
657 struct snd_ctl_elem_value *ucontrol)
658{
659 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
660 struct sigmatel_spec *spec = codec->spec;
661
662 ucontrol->value.enumerated.item[0] = spec->cur_mmux;
663 return 0;
664}
665
666static int stac92xx_mono_mux_enum_put(struct snd_kcontrol *kcontrol,
667 struct snd_ctl_elem_value *ucontrol)
668{
669 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
670 struct sigmatel_spec *spec = codec->spec;
671
672 return snd_hda_input_mux_put(codec, spec->mono_mux, ucontrol,
673 spec->mono_nid, &spec->cur_mmux);
674}
675
Matthew Ranostay89385032008-09-11 09:49:39 -0400676static int stac92xx_amp_mux_enum_info(struct snd_kcontrol *kcontrol,
677 struct snd_ctl_elem_info *uinfo)
678{
679 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
680 struct sigmatel_spec *spec = codec->spec;
681 return snd_hda_input_mux_info(spec->amp_mux, uinfo);
682}
683
684static int stac92xx_amp_mux_enum_get(struct snd_kcontrol *kcontrol,
685 struct snd_ctl_elem_value *ucontrol)
686{
687 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
688 struct sigmatel_spec *spec = codec->spec;
689
690 ucontrol->value.enumerated.item[0] = spec->cur_amux;
691 return 0;
692}
693
694static int stac92xx_amp_mux_enum_put(struct snd_kcontrol *kcontrol,
695 struct snd_ctl_elem_value *ucontrol)
696{
697 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
698 struct sigmatel_spec *spec = codec->spec;
699 struct snd_kcontrol *ctl =
700 snd_hda_find_mixer_ctl(codec, "Amp Capture Volume");
701 if (!ctl)
702 return -EINVAL;
703
704 snd_ctl_notify(codec->bus->card, SNDRV_CTL_EVENT_MASK_VALUE |
705 SNDRV_CTL_EVENT_MASK_INFO, &ctl->id);
706
707 return snd_hda_input_mux_put(codec, spec->amp_mux, ucontrol,
708 0, &spec->cur_amux);
709}
710
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200711#define stac92xx_aloopback_info snd_ctl_boolean_mono_info
712
713static int stac92xx_aloopback_get(struct snd_kcontrol *kcontrol,
714 struct snd_ctl_elem_value *ucontrol)
715{
716 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
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 struct sigmatel_spec *spec = codec->spec;
719
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100720 ucontrol->value.integer.value[0] = !!(spec->aloopback &
721 (spec->aloopback_mask << idx));
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200722 return 0;
723}
724
725static int stac92xx_aloopback_put(struct snd_kcontrol *kcontrol,
726 struct snd_ctl_elem_value *ucontrol)
727{
728 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
729 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100730 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200731 unsigned int dac_mode;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100732 unsigned int val, idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200733
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100734 idx_val = spec->aloopback_mask << idx;
735 if (ucontrol->value.integer.value[0])
736 val = spec->aloopback | idx_val;
737 else
738 val = spec->aloopback & ~idx_val;
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100739 if (spec->aloopback == val)
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200740 return 0;
741
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100742 spec->aloopback = val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200743
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100744 /* Only return the bits defined by the shift value of the
745 * first two bytes of the mask
746 */
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200747 dac_mode = snd_hda_codec_read(codec, codec->afg, 0,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100748 kcontrol->private_value & 0xFFFF, 0x0);
749 dac_mode >>= spec->aloopback_shift;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200750
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100751 if (spec->aloopback & idx_val) {
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200752 snd_hda_power_up(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100753 dac_mode |= idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200754 } else {
755 snd_hda_power_down(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100756 dac_mode &= ~idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200757 }
758
759 snd_hda_codec_write_cache(codec, codec->afg, 0,
760 kcontrol->private_value >> 16, dac_mode);
761
762 return 1;
763}
764
Mattc7d4b2f2005-06-27 14:59:41 +0200765static struct hda_verb stac9200_core_init[] = {
Matt2f2f4252005-04-13 14:45:30 +0200766 /* set dac0mux for dac converter */
Mattc7d4b2f2005-06-27 14:59:41 +0200767 { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
Matt2f2f4252005-04-13 14:45:30 +0200768 {}
769};
770
Takashi Iwai1194b5b2007-10-10 10:04:26 +0200771static struct hda_verb stac9200_eapd_init[] = {
772 /* set dac0mux for dac converter */
773 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
774 {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
775 {}
776};
777
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100778static struct hda_verb stac92hd73xx_6ch_core_init[] = {
779 /* set master volume and direct control */
780 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100781 /* setup adcs to point to mixer */
782 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
783 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100784 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
785 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
786 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
787 /* setup import muxs */
788 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
789 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
790 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
791 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00},
792 {}
793};
794
Matthew Ranostayd654a662008-03-14 08:46:51 +0100795static struct hda_verb dell_eq_core_init[] = {
796 /* set master volume to max value without distortion
797 * and direct control */
798 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec},
Matthew Ranostayd654a662008-03-14 08:46:51 +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 Ranostay52fe0f92008-02-29 12:08:20 +0100810static struct hda_verb dell_m6_core_init[] = {
Matthew Ranostay6b3ab212008-11-03 08:12:43 -0500811 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostay52fe0f92008-02-29 12:08:20 +0100812 /* setup adcs to point to mixer */
813 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
814 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
815 /* setup import muxs */
816 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
817 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
818 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
819 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00},
820 {}
821};
822
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100823static struct hda_verb stac92hd73xx_8ch_core_init[] = {
824 /* set master volume and direct control */
825 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100826 /* setup adcs to point to mixer */
827 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
828 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100829 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
830 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
831 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
832 /* setup import muxs */
833 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
834 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
835 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
836 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x03},
837 {}
838};
839
840static struct hda_verb stac92hd73xx_10ch_core_init[] = {
841 /* set master volume and direct control */
842 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100843 /* dac3 is connected to import3 mux */
844 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0xb07f},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100845 /* setup adcs to point to mixer */
846 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
847 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100848 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
849 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
850 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
851 /* setup import muxs */
852 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
853 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
854 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
855 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x03},
856 {}
857};
858
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200859static struct hda_verb stac92hd83xxx_core_init[] = {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200860 { 0xa, AC_VERB_SET_CONNECT_SEL, 0x0},
861 { 0xb, AC_VERB_SET_CONNECT_SEL, 0x0},
862 { 0xd, AC_VERB_SET_CONNECT_SEL, 0x1},
863
864 /* power state controls amps */
865 { 0x01, AC_VERB_SET_EAPD, 1 << 2},
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -0200866 {}
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200867};
868
Matthew Ranostaye035b842007-11-06 11:53:55 +0100869static struct hda_verb stac92hd71bxx_core_init[] = {
870 /* set master volume and direct control */
871 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -0200872 {}
Matthew Ranostay541eee82007-12-14 12:08:04 +0100873};
874
Matthew Ranostayca8d33f2009-01-26 09:33:52 -0500875#define HD_DISABLE_PORTF 1
Matthew Ranostay541eee82007-12-14 12:08:04 +0100876static struct hda_verb stac92hd71bxx_analog_core_init[] = {
Matthew Ranostayaafc4412008-06-13 18:04:33 +0200877 /* start of config #1 */
878
879 /* connect port 0f to audio mixer */
880 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x2},
Matthew Ranostayaafc4412008-06-13 18:04:33 +0200881 /* start of config #2 */
882
Matthew Ranostay541eee82007-12-14 12:08:04 +0100883 /* set master volume and direct control */
884 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostayca8d33f2009-01-26 09:33:52 -0500885 {}
886};
887
888static struct hda_verb stac92hd71bxx_unmute_core_init[] = {
889 /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */
890 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Matthew Ranostaye035b842007-11-06 11:53:55 +0100891 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
892 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Matthew Ranostaye035b842007-11-06 11:53:55 +0100893 {}
894};
895
Tobin Davis8e21c342007-01-08 11:04:17 +0100896static struct hda_verb stac925x_core_init[] = {
897 /* set dac0mux for dac converter */
898 { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwaic9280d62009-01-15 17:31:00 +0100899 /* mute the master volume */
900 { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
Tobin Davis8e21c342007-01-08 11:04:17 +0100901 {}
902};
903
Mattc7d4b2f2005-06-27 14:59:41 +0200904static struct hda_verb stac922x_core_init[] = {
Matt2f2f4252005-04-13 14:45:30 +0200905 /* set master volume and direct control */
Mattc7d4b2f2005-06-27 14:59:41 +0200906 { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matt2f2f4252005-04-13 14:45:30 +0200907 {}
908};
909
Tobin Davis93ed1502006-09-01 21:03:12 +0200910static struct hda_verb d965_core_init[] = {
Takashi Iwai19039bd2006-06-28 15:52:16 +0200911 /* set master volume and direct control */
Tobin Davis93ed1502006-09-01 21:03:12 +0200912 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Takashi Iwai19039bd2006-06-28 15:52:16 +0200913 /* unmute node 0x1b */
914 { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
915 /* select node 0x03 as DAC */
916 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
917 {}
918};
919
Matt Porter3cc08dc2006-01-23 15:27:49 +0100920static struct hda_verb stac927x_core_init[] = {
921 /* set master volume and direct control */
922 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200923 /* enable analog pc beep path */
924 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
Matt Porter3cc08dc2006-01-23 15:27:49 +0100925 {}
926};
927
Matt Porterf3302a52006-07-31 12:49:34 +0200928static struct hda_verb stac9205_core_init[] = {
929 /* set master volume and direct control */
930 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200931 /* enable analog pc beep path */
932 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
Matt Porterf3302a52006-07-31 12:49:34 +0200933 {}
934};
935
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100936#define STAC_MONO_MUX \
937 { \
938 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
939 .name = "Mono Mux", \
940 .count = 1, \
941 .info = stac92xx_mono_mux_enum_info, \
942 .get = stac92xx_mono_mux_enum_get, \
943 .put = stac92xx_mono_mux_enum_put, \
944 }
945
Matthew Ranostay89385032008-09-11 09:49:39 -0400946#define STAC_AMP_MUX \
947 { \
948 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
949 .name = "Amp Selector Capture Switch", \
950 .count = 1, \
951 .info = stac92xx_amp_mux_enum_info, \
952 .get = stac92xx_amp_mux_enum_get, \
953 .put = stac92xx_amp_mux_enum_put, \
954 }
955
956#define STAC_AMP_VOL(xname, nid, chs, idx, dir) \
957 { \
958 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
959 .name = xname, \
960 .index = 0, \
961 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
962 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
963 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \
964 .info = stac92xx_amp_volume_info, \
965 .get = stac92xx_amp_volume_get, \
966 .put = stac92xx_amp_volume_put, \
967 .tlv = { .c = snd_hda_mixer_amp_tlv }, \
968 .private_value = HDA_COMPOSE_AMP_VAL(nid, chs, idx, dir) \
969 }
970
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100971#define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200972 { \
973 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
974 .name = "Analog Loopback", \
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100975 .count = cnt, \
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200976 .info = stac92xx_aloopback_info, \
977 .get = stac92xx_aloopback_get, \
978 .put = stac92xx_aloopback_put, \
979 .private_value = verb_read | (verb_write << 16), \
980 }
981
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100982static struct snd_kcontrol_new stac9200_mixer[] = {
Matt2f2f4252005-04-13 14:45:30 +0200983 HDA_CODEC_VOLUME("Master Playback Volume", 0xb, 0, HDA_OUTPUT),
984 HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT),
Matt2f2f4252005-04-13 14:45:30 +0200985 HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT),
986 HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT),
Matt2f2f4252005-04-13 14:45:30 +0200987 { } /* end */
988};
989
Matthew Ranostay2a9c7812008-09-13 16:45:39 -0400990#define DELL_M6_MIXER 6
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100991static struct snd_kcontrol_new stac92hd73xx_6ch_mixer[] = {
Matthew Ranostay2a9c7812008-09-13 16:45:39 -0400992 /* start of config #1 */
993 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
994 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
995
996 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
997 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
998
999 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
1000 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1001
1002 /* start of config #2 */
1003 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1004 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1005
1006 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1007 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1008
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001009 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3),
1010
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001011 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT),
1012 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT),
1013
1014 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT),
1015 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT),
1016
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001017 { } /* end */
1018};
1019
1020static struct snd_kcontrol_new stac92hd73xx_8ch_mixer[] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001021 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4),
1022
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001023 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT),
1024 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT),
1025
1026 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT),
1027 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT),
1028
1029 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
1030 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
1031
1032 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1033 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1034
1035 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
1036 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
1037
1038 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1039 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1040
1041 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
1042 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1043 { } /* end */
1044};
1045
1046static struct snd_kcontrol_new stac92hd73xx_10ch_mixer[] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001047 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5),
1048
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001049 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT),
1050 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT),
1051
1052 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT),
1053 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT),
1054
1055 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
1056 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
1057
1058 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1059 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1060
1061 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
1062 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
1063
1064 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1065 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1066
1067 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
1068 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1069 { } /* end */
1070};
1071
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001072
1073static struct snd_kcontrol_new stac92hd83xxx_mixer[] = {
1074 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x17, 0x0, HDA_OUTPUT),
1075 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x17, 0x0, HDA_OUTPUT),
1076
1077 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x18, 0x0, HDA_OUTPUT),
1078 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x18, 0x0, HDA_OUTPUT),
1079
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001080 HDA_CODEC_VOLUME("DAC0 Capture Volume", 0x1b, 0x3, HDA_INPUT),
1081 HDA_CODEC_MUTE("DAC0 Capture Switch", 0x1b, 0x3, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001082
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001083 HDA_CODEC_VOLUME("DAC1 Capture Volume", 0x1b, 0x4, HDA_INPUT),
1084 HDA_CODEC_MUTE("DAC1 Capture Switch", 0x1b, 0x4, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001085
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001086 HDA_CODEC_VOLUME("Front Mic Capture Volume", 0x1b, 0x0, HDA_INPUT),
1087 HDA_CODEC_MUTE("Front Mic Capture Switch", 0x1b, 0x0, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001088
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001089 HDA_CODEC_VOLUME("Line In Capture Volume", 0x1b, 0x2, HDA_INPUT),
1090 HDA_CODEC_MUTE("Line In Capture Switch", 0x1b, 0x2, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001091
1092 /*
Matthew Ranostay74b7ff42008-12-20 17:47:24 -05001093 HDA_CODEC_VOLUME("Mic Capture Volume", 0x1b, 0x1, HDA_INPUT),
1094 HDA_CODEC_MUTE("Mic Capture Switch", 0x1b 0x1, HDA_INPUT),
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001095 */
1096 { } /* end */
1097};
1098
Matthew Ranostay541eee82007-12-14 12:08:04 +01001099static struct snd_kcontrol_new stac92hd71bxx_analog_mixer[] = {
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_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2),
1129
Matthew Ranostay541eee82007-12-14 12:08:04 +01001130 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x1c, 0x0, HDA_OUTPUT),
1131 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1c, 0x0, HDA_OUTPUT),
Matthew Ranostay541eee82007-12-14 12:08:04 +01001132
1133 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x1d, 0x0, HDA_OUTPUT),
1134 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1d, 0x0, HDA_OUTPUT),
Matthew Ranostay541eee82007-12-14 12:08:04 +01001135 { } /* end */
1136};
1137
Tobin Davis8e21c342007-01-08 11:04:17 +01001138static struct snd_kcontrol_new stac925x_mixer[] = {
Takashi Iwaic9280d62009-01-15 17:31:00 +01001139 HDA_CODEC_VOLUME("Master Playback Volume", 0x0e, 0, HDA_OUTPUT),
1140 HDA_CODEC_MUTE("Master Playback Switch", 0x0e, 0, HDA_OUTPUT),
Tobin Davis8e21c342007-01-08 11:04:17 +01001141 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_OUTPUT),
Mauro Carvalho Chehab587755f2008-05-25 18:20:06 +02001142 HDA_CODEC_MUTE("Capture Switch", 0x14, 0, HDA_OUTPUT),
Tobin Davis8e21c342007-01-08 11:04:17 +01001143 { } /* end */
1144};
1145
Takashi Iwaid1d985f2006-11-23 19:27:12 +01001146static struct snd_kcontrol_new stac9205_mixer[] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001147 STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001148
1149 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x1b, 0x0, HDA_INPUT),
1150 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1d, 0x0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001151
1152 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x1c, 0x0, HDA_INPUT),
1153 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1e, 0x0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001154 { } /* end */
1155};
1156
1157/* This needs to be generated dynamically based on sequence */
1158static struct snd_kcontrol_new stac922x_mixer[] = {
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001159 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x17, 0x0, HDA_INPUT),
1160 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x17, 0x0, HDA_INPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001161
1162 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x18, 0x0, HDA_INPUT),
1163 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x18, 0x0, HDA_INPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001164 { } /* end */
1165};
1166
1167
1168static struct snd_kcontrol_new stac927x_mixer[] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001169 STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001170
1171 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x18, 0x0, HDA_INPUT),
1172 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1b, 0x0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001173
1174 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x19, 0x0, HDA_INPUT),
1175 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1c, 0x0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001176
1177 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x2, 0x1A, 0x0, HDA_INPUT),
1178 HDA_CODEC_MUTE_IDX("Capture Switch", 0x2, 0x1d, 0x0, HDA_OUTPUT),
Matt Porterf3302a52006-07-31 12:49:34 +02001179 { } /* end */
1180};
1181
Takashi Iwai1697055e2007-12-18 18:05:52 +01001182static struct snd_kcontrol_new stac_dmux_mixer = {
1183 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1184 .name = "Digital Input Source",
1185 /* count set later */
1186 .info = stac92xx_dmux_enum_info,
1187 .get = stac92xx_dmux_enum_get,
1188 .put = stac92xx_dmux_enum_put,
1189};
1190
Matthew Ranostayd9737752008-09-07 12:03:41 +02001191static struct snd_kcontrol_new stac_smux_mixer = {
1192 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Matthew Ranostaye3487972008-09-08 11:36:59 -04001193 .name = "IEC958 Playback Source",
Matthew Ranostayd9737752008-09-07 12:03:41 +02001194 /* count set later */
1195 .info = stac92xx_smux_enum_info,
1196 .get = stac92xx_smux_enum_get,
1197 .put = stac92xx_smux_enum_put,
1198};
1199
Takashi Iwai2134ea42008-01-10 16:53:55 +01001200static const char *slave_vols[] = {
1201 "Front Playback Volume",
1202 "Surround Playback Volume",
1203 "Center Playback Volume",
1204 "LFE Playback Volume",
1205 "Side Playback Volume",
1206 "Headphone Playback Volume",
1207 "Headphone Playback Volume",
1208 "Speaker Playback Volume",
1209 "External Speaker Playback Volume",
1210 "Speaker2 Playback Volume",
1211 NULL
1212};
1213
1214static const char *slave_sws[] = {
1215 "Front Playback Switch",
1216 "Surround Playback Switch",
1217 "Center Playback Switch",
1218 "LFE Playback Switch",
1219 "Side Playback Switch",
1220 "Headphone Playback Switch",
1221 "Headphone Playback Switch",
1222 "Speaker Playback Switch",
1223 "External Speaker Playback Switch",
1224 "Speaker2 Playback Switch",
Takashi Iwaiedb54a52008-01-29 12:47:02 +01001225 "IEC958 Playback Switch",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001226 NULL
1227};
1228
Takashi Iwai603c4012008-07-30 15:01:44 +02001229static void stac92xx_free_kctls(struct hda_codec *codec);
Takashi Iwaie4973e12008-11-18 09:32:42 +01001230static int stac92xx_add_jack(struct hda_codec *codec, hda_nid_t nid, int type);
Takashi Iwai603c4012008-07-30 15:01:44 +02001231
Matt2f2f4252005-04-13 14:45:30 +02001232static int stac92xx_build_controls(struct hda_codec *codec)
1233{
1234 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaie4973e12008-11-18 09:32:42 +01001235 struct auto_pin_cfg *cfg = &spec->autocfg;
1236 hda_nid_t nid;
Matt2f2f4252005-04-13 14:45:30 +02001237 int err;
Mattc7d4b2f2005-06-27 14:59:41 +02001238 int i;
Matt2f2f4252005-04-13 14:45:30 +02001239
1240 err = snd_hda_add_new_ctls(codec, spec->mixer);
1241 if (err < 0)
1242 return err;
Mattc7d4b2f2005-06-27 14:59:41 +02001243
1244 for (i = 0; i < spec->num_mixers; i++) {
1245 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1246 if (err < 0)
1247 return err;
1248 }
Takashi Iwai1697055e2007-12-18 18:05:52 +01001249 if (spec->num_dmuxes > 0) {
1250 stac_dmux_mixer.count = spec->num_dmuxes;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001251 err = snd_hda_ctl_add(codec,
Takashi Iwai1697055e2007-12-18 18:05:52 +01001252 snd_ctl_new1(&stac_dmux_mixer, codec));
1253 if (err < 0)
1254 return err;
1255 }
Matthew Ranostayd9737752008-09-07 12:03:41 +02001256 if (spec->num_smuxes > 0) {
Matthew Ranostay00ef50c2008-09-27 18:13:47 -04001257 int wcaps = get_wcaps(codec, spec->multiout.dig_out_nid);
1258 struct hda_input_mux *smux = &spec->private_smux;
1259 /* check for mute support on SPDIF out */
1260 if (wcaps & AC_WCAP_OUT_AMP) {
1261 smux->items[smux->num_items].label = "Off";
1262 smux->items[smux->num_items].index = 0;
1263 smux->num_items++;
1264 spec->spdif_mute = 1;
1265 }
Matthew Ranostayd9737752008-09-07 12:03:41 +02001266 stac_smux_mixer.count = spec->num_smuxes;
Takashi Iwai4f2d23e2008-12-19 10:14:13 +01001267 err = snd_hda_ctl_add(codec,
Matthew Ranostayd9737752008-09-07 12:03:41 +02001268 snd_ctl_new1(&stac_smux_mixer, codec));
1269 if (err < 0)
1270 return err;
1271 }
Mattc7d4b2f2005-06-27 14:59:41 +02001272
Mattdabbed62005-06-14 10:19:34 +02001273 if (spec->multiout.dig_out_nid) {
1274 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
1275 if (err < 0)
1276 return err;
Takashi Iwai9a081602008-02-12 18:37:26 +01001277 err = snd_hda_create_spdif_share_sw(codec,
1278 &spec->multiout);
1279 if (err < 0)
1280 return err;
1281 spec->multiout.share_spdif = 1;
Mattdabbed62005-06-14 10:19:34 +02001282 }
Harvey Harrisonda74ae32008-10-21 20:28:04 -07001283 if (spec->dig_in_nid && !(spec->gpio_dir & 0x01)) {
Mattdabbed62005-06-14 10:19:34 +02001284 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1285 if (err < 0)
1286 return err;
1287 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001288
1289 /* if we have no master control, let's create it */
1290 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001291 unsigned int vmaster_tlv[4];
Takashi Iwai2134ea42008-01-10 16:53:55 +01001292 snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0],
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001293 HDA_OUTPUT, vmaster_tlv);
Takashi Iwai7c7767e2009-01-20 15:28:38 +01001294 /* correct volume offset */
1295 vmaster_tlv[2] += vmaster_tlv[3] * spec->volume_offset;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001296 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001297 vmaster_tlv, slave_vols);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001298 if (err < 0)
1299 return err;
1300 }
1301 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1302 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1303 NULL, slave_sws);
1304 if (err < 0)
1305 return err;
1306 }
1307
Takashi Iwai603c4012008-07-30 15:01:44 +02001308 stac92xx_free_kctls(codec); /* no longer needed */
Takashi Iwaie4973e12008-11-18 09:32:42 +01001309
1310 /* create jack input elements */
1311 if (spec->hp_detect) {
1312 for (i = 0; i < cfg->hp_outs; i++) {
1313 int type = SND_JACK_HEADPHONE;
1314 nid = cfg->hp_pins[i];
1315 /* jack detection */
1316 if (cfg->hp_outs == i)
1317 type |= SND_JACK_LINEOUT;
1318 err = stac92xx_add_jack(codec, nid, type);
1319 if (err < 0)
1320 return err;
1321 }
1322 }
1323 for (i = 0; i < cfg->line_outs; i++) {
1324 err = stac92xx_add_jack(codec, cfg->line_out_pins[i],
1325 SND_JACK_LINEOUT);
1326 if (err < 0)
1327 return err;
1328 }
1329 for (i = 0; i < AUTO_PIN_LAST; i++) {
1330 nid = cfg->input_pins[i];
1331 if (nid) {
1332 err = stac92xx_add_jack(codec, nid,
1333 SND_JACK_MICROPHONE);
1334 if (err < 0)
1335 return err;
1336 }
1337 }
1338
Mattdabbed62005-06-14 10:19:34 +02001339 return 0;
Matt2f2f4252005-04-13 14:45:30 +02001340}
1341
Matt Porter403d1942005-11-29 15:00:51 +01001342static unsigned int ref9200_pin_configs[8] = {
Mattdabbed62005-06-14 10:19:34 +02001343 0x01c47010, 0x01447010, 0x0221401f, 0x01114010,
Matt2f2f4252005-04-13 14:45:30 +02001344 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1345};
1346
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001347static unsigned int gateway9200_m4_pin_configs[8] = {
1348 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1349 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1350};
1351static unsigned int gateway9200_m4_2_pin_configs[8] = {
1352 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1353 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1354};
1355
1356/*
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001357 STAC 9200 pin configs for
1358 102801A8
1359 102801DE
1360 102801E8
1361*/
1362static unsigned int dell9200_d21_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001363 0x400001f0, 0x400001f1, 0x02214030, 0x01014010,
1364 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001365};
1366
1367/*
1368 STAC 9200 pin configs for
1369 102801C0
1370 102801C1
1371*/
1372static unsigned int dell9200_d22_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001373 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1374 0x01813020, 0x02a19021, 0x90100140, 0x400001f2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001375};
1376
1377/*
1378 STAC 9200 pin configs for
1379 102801C4 (Dell Dimension E310)
1380 102801C5
1381 102801C7
1382 102801D9
1383 102801DA
1384 102801E3
1385*/
1386static unsigned int dell9200_d23_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001387 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1388 0x01813020, 0x01a19021, 0x90100140, 0x400001f2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001389};
1390
1391
1392/*
1393 STAC 9200-32 pin configs for
1394 102801B5 (Dell Inspiron 630m)
1395 102801D8 (Dell Inspiron 640m)
1396*/
1397static unsigned int dell9200_m21_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001398 0x40c003fa, 0x03441340, 0x0321121f, 0x90170310,
1399 0x408003fb, 0x03a11020, 0x401003fc, 0x403003fd,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001400};
1401
1402/*
1403 STAC 9200-32 pin configs for
1404 102801C2 (Dell Latitude D620)
1405 102801C8
1406 102801CC (Dell Latitude D820)
1407 102801D4
1408 102801D6
1409*/
1410static unsigned int dell9200_m22_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001411 0x40c003fa, 0x0144131f, 0x0321121f, 0x90170310,
1412 0x90a70321, 0x03a11020, 0x401003fb, 0x40f000fc,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001413};
1414
1415/*
1416 STAC 9200-32 pin configs for
1417 102801CE (Dell XPS M1710)
1418 102801CF (Dell Precision M90)
1419*/
1420static unsigned int dell9200_m23_pin_configs[8] = {
1421 0x40c003fa, 0x01441340, 0x0421421f, 0x90170310,
1422 0x408003fb, 0x04a1102e, 0x90170311, 0x403003fc,
1423};
1424
1425/*
1426 STAC 9200-32 pin configs for
1427 102801C9
1428 102801CA
1429 102801CB (Dell Latitude 120L)
1430 102801D3
1431*/
1432static unsigned int dell9200_m24_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001433 0x40c003fa, 0x404003fb, 0x0321121f, 0x90170310,
1434 0x408003fc, 0x03a11020, 0x401003fd, 0x403003fe,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001435};
1436
1437/*
1438 STAC 9200-32 pin configs for
1439 102801BD (Dell Inspiron E1505n)
1440 102801EE
1441 102801EF
1442*/
1443static unsigned int dell9200_m25_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001444 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1445 0x408003fb, 0x04a11020, 0x401003fc, 0x403003fd,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001446};
1447
1448/*
1449 STAC 9200-32 pin configs for
1450 102801F5 (Dell Inspiron 1501)
1451 102801F6
1452*/
1453static unsigned int dell9200_m26_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001454 0x40c003fa, 0x404003fb, 0x0421121f, 0x90170310,
1455 0x408003fc, 0x04a11020, 0x401003fd, 0x403003fe,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001456};
1457
1458/*
1459 STAC 9200-32
1460 102801CD (Dell Inspiron E1705/9400)
1461*/
1462static unsigned int dell9200_m27_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001463 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1464 0x90170310, 0x04a11020, 0x90170310, 0x40f003fc,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001465};
1466
Tobin Davisbf277782008-02-03 20:31:47 +01001467static unsigned int oqo9200_pin_configs[8] = {
1468 0x40c000f0, 0x404000f1, 0x0221121f, 0x02211210,
1469 0x90170111, 0x90a70120, 0x400000f2, 0x400000f3,
1470};
1471
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001472
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001473static unsigned int *stac9200_brd_tbl[STAC_9200_MODELS] = {
1474 [STAC_REF] = ref9200_pin_configs,
Tobin Davisbf277782008-02-03 20:31:47 +01001475 [STAC_9200_OQO] = oqo9200_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001476 [STAC_9200_DELL_D21] = dell9200_d21_pin_configs,
1477 [STAC_9200_DELL_D22] = dell9200_d22_pin_configs,
1478 [STAC_9200_DELL_D23] = dell9200_d23_pin_configs,
1479 [STAC_9200_DELL_M21] = dell9200_m21_pin_configs,
1480 [STAC_9200_DELL_M22] = dell9200_m22_pin_configs,
1481 [STAC_9200_DELL_M23] = dell9200_m23_pin_configs,
1482 [STAC_9200_DELL_M24] = dell9200_m24_pin_configs,
1483 [STAC_9200_DELL_M25] = dell9200_m25_pin_configs,
1484 [STAC_9200_DELL_M26] = dell9200_m26_pin_configs,
1485 [STAC_9200_DELL_M27] = dell9200_m27_pin_configs,
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001486 [STAC_9200_M4] = gateway9200_m4_pin_configs,
1487 [STAC_9200_M4_2] = gateway9200_m4_2_pin_configs,
Takashi Iwai117f2572008-03-18 09:53:23 +01001488 [STAC_9200_PANASONIC] = ref9200_pin_configs,
Matt Porter403d1942005-11-29 15:00:51 +01001489};
1490
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001491static const char *stac9200_models[STAC_9200_MODELS] = {
1492 [STAC_REF] = "ref",
Tobin Davisbf277782008-02-03 20:31:47 +01001493 [STAC_9200_OQO] = "oqo",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001494 [STAC_9200_DELL_D21] = "dell-d21",
1495 [STAC_9200_DELL_D22] = "dell-d22",
1496 [STAC_9200_DELL_D23] = "dell-d23",
1497 [STAC_9200_DELL_M21] = "dell-m21",
1498 [STAC_9200_DELL_M22] = "dell-m22",
1499 [STAC_9200_DELL_M23] = "dell-m23",
1500 [STAC_9200_DELL_M24] = "dell-m24",
1501 [STAC_9200_DELL_M25] = "dell-m25",
1502 [STAC_9200_DELL_M26] = "dell-m26",
1503 [STAC_9200_DELL_M27] = "dell-m27",
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001504 [STAC_9200_M4] = "gateway-m4",
1505 [STAC_9200_M4_2] = "gateway-m4-2",
Takashi Iwai117f2572008-03-18 09:53:23 +01001506 [STAC_9200_PANASONIC] = "panasonic",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001507};
1508
1509static struct snd_pci_quirk stac9200_cfg_tbl[] = {
1510 /* SigmaTel reference board */
1511 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1512 "DFI LanParty", STAC_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001513 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1514 "DFI LanParty", STAC_REF),
Matt Portere7377072006-11-06 11:20:38 +01001515 /* Dell laptops have BIOS problem */
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001516 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8,
1517 "unknown Dell", STAC_9200_DELL_D21),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001518 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001519 "Dell Inspiron 630m", STAC_9200_DELL_M21),
1520 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd,
1521 "Dell Inspiron E1505n", STAC_9200_DELL_M25),
1522 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0,
1523 "unknown Dell", STAC_9200_DELL_D22),
1524 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1,
1525 "unknown Dell", STAC_9200_DELL_D22),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001526 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001527 "Dell Latitude D620", STAC_9200_DELL_M22),
1528 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5,
1529 "unknown Dell", STAC_9200_DELL_D23),
1530 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7,
1531 "unknown Dell", STAC_9200_DELL_D23),
1532 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8,
1533 "unknown Dell", STAC_9200_DELL_M22),
1534 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9,
1535 "unknown Dell", STAC_9200_DELL_M24),
1536 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca,
1537 "unknown Dell", STAC_9200_DELL_M24),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001538 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001539 "Dell Latitude 120L", STAC_9200_DELL_M24),
Cory T. Tusar877b8662007-01-30 17:30:55 +01001540 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001541 "Dell Latitude D820", STAC_9200_DELL_M22),
Mikael Nilsson46f02ca2007-02-13 12:46:16 +01001542 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001543 "Dell Inspiron E1705/9400", STAC_9200_DELL_M27),
Mikael Nilsson46f02ca2007-02-13 12:46:16 +01001544 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001545 "Dell XPS M1710", STAC_9200_DELL_M23),
Takashi Iwaif0f96742007-02-14 00:59:17 +01001546 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001547 "Dell Precision M90", STAC_9200_DELL_M23),
1548 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3,
1549 "unknown Dell", STAC_9200_DELL_M22),
1550 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4,
1551 "unknown Dell", STAC_9200_DELL_M22),
Daniel T Chen8286c532007-05-15 11:46:23 +02001552 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001553 "unknown Dell", STAC_9200_DELL_M22),
Tobin Davis49c605d2007-05-17 09:38:24 +02001554 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001555 "Dell Inspiron 640m", STAC_9200_DELL_M21),
1556 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9,
1557 "unknown Dell", STAC_9200_DELL_D23),
1558 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da,
1559 "unknown Dell", STAC_9200_DELL_D23),
1560 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de,
1561 "unknown Dell", STAC_9200_DELL_D21),
1562 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3,
1563 "unknown Dell", STAC_9200_DELL_D23),
1564 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8,
1565 "unknown Dell", STAC_9200_DELL_D21),
1566 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee,
1567 "unknown Dell", STAC_9200_DELL_M25),
1568 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef,
1569 "unknown Dell", STAC_9200_DELL_M25),
Tobin Davis49c605d2007-05-17 09:38:24 +02001570 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001571 "Dell Inspiron 1501", STAC_9200_DELL_M26),
1572 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6,
1573 "unknown Dell", STAC_9200_DELL_M26),
Tobin Davis49c605d2007-05-17 09:38:24 +02001574 /* Panasonic */
Takashi Iwai117f2572008-03-18 09:53:23 +01001575 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC),
Takashi Iwai1194b5b2007-10-10 10:04:26 +02001576 /* Gateway machines needs EAPD to be set on resume */
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001577 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4),
1578 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2),
1579 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2),
Tobin Davisbf277782008-02-03 20:31:47 +01001580 /* OQO Mobile */
1581 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO),
Matt Porter403d1942005-11-29 15:00:51 +01001582 {} /* terminator */
1583};
1584
Tobin Davis8e21c342007-01-08 11:04:17 +01001585static unsigned int ref925x_pin_configs[8] = {
1586 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021,
Matthew Ranostay09a99952008-01-24 11:49:21 +01001587 0x90a70320, 0x02214210, 0x01019020, 0x9033032e,
Tobin Davis8e21c342007-01-08 11:04:17 +01001588};
1589
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001590static unsigned int stac925xM1_pin_configs[8] = {
1591 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1592 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
Tobin Davis8e21c342007-01-08 11:04:17 +01001593};
1594
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001595static unsigned int stac925xM1_2_pin_configs[8] = {
1596 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1597 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1598};
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001599
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001600static unsigned int stac925xM2_pin_configs[8] = {
1601 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1602 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
Tobin Davis2c11f952007-05-17 09:36:34 +02001603};
1604
Tobin Davis8e21c342007-01-08 11:04:17 +01001605static unsigned int stac925xM2_2_pin_configs[8] = {
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001606 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1607 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1608};
1609
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001610static unsigned int stac925xM3_pin_configs[8] = {
1611 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1612 0x40a000f0, 0x90100210, 0x400003f1, 0x503303f3,
1613};
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001614
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001615static unsigned int stac925xM5_pin_configs[8] = {
1616 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1617 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1618};
1619
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001620static unsigned int stac925xM6_pin_configs[8] = {
1621 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1622 0x40a000f0, 0x90100210, 0x400003f1, 0x90330320,
Tobin Davis8e21c342007-01-08 11:04:17 +01001623};
1624
1625static unsigned int *stac925x_brd_tbl[STAC_925x_MODELS] = {
1626 [STAC_REF] = ref925x_pin_configs,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001627 [STAC_M1] = stac925xM1_pin_configs,
1628 [STAC_M1_2] = stac925xM1_2_pin_configs,
1629 [STAC_M2] = stac925xM2_pin_configs,
Tobin Davis8e21c342007-01-08 11:04:17 +01001630 [STAC_M2_2] = stac925xM2_2_pin_configs,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001631 [STAC_M3] = stac925xM3_pin_configs,
1632 [STAC_M5] = stac925xM5_pin_configs,
1633 [STAC_M6] = stac925xM6_pin_configs,
Tobin Davis8e21c342007-01-08 11:04:17 +01001634};
1635
1636static const char *stac925x_models[STAC_925x_MODELS] = {
1637 [STAC_REF] = "ref",
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001638 [STAC_M1] = "m1",
1639 [STAC_M1_2] = "m1-2",
1640 [STAC_M2] = "m2",
Tobin Davis8e21c342007-01-08 11:04:17 +01001641 [STAC_M2_2] = "m2-2",
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001642 [STAC_M3] = "m3",
1643 [STAC_M5] = "m5",
1644 [STAC_M6] = "m6",
Tobin Davis8e21c342007-01-08 11:04:17 +01001645};
1646
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001647static struct snd_pci_quirk stac925x_codec_id_cfg_tbl[] = {
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001648 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2),
1649 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5),
1650 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1),
1651 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001652 SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001653 /* Not sure about the brand name for those */
1654 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1),
1655 SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3),
1656 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6),
1657 SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001658 {} /* terminator */
Tobin Davis8e21c342007-01-08 11:04:17 +01001659};
1660
1661static struct snd_pci_quirk stac925x_cfg_tbl[] = {
1662 /* SigmaTel reference board */
1663 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001664 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, "DFI LanParty", STAC_REF),
Tobin Davis2c11f952007-05-17 09:36:34 +02001665 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001666
1667 /* Default table for unknown ID */
1668 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2),
1669
Tobin Davis8e21c342007-01-08 11:04:17 +01001670 {} /* terminator */
1671};
1672
Matthew Ranostaya7662642008-02-21 07:51:14 +01001673static unsigned int ref92hd73xx_pin_configs[13] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001674 0x02214030, 0x02a19040, 0x01a19020, 0x02214030,
1675 0x0181302e, 0x01014010, 0x01014020, 0x01014030,
1676 0x02319040, 0x90a000f0, 0x90a000f0, 0x01452050,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001677 0x01452050,
1678};
1679
1680static unsigned int dell_m6_pin_configs[13] = {
1681 0x0321101f, 0x4f00000f, 0x4f0000f0, 0x90170110,
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02001682 0x03a11020, 0x0321101f, 0x4f0000f0, 0x4f0000f0,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001683 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1684 0x4f0000f0,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001685};
1686
1687static unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = {
Matthew Ranostaya7662642008-02-21 07:51:14 +01001688 [STAC_92HD73XX_REF] = ref92hd73xx_pin_configs,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001689 [STAC_DELL_M6_AMIC] = dell_m6_pin_configs,
1690 [STAC_DELL_M6_DMIC] = dell_m6_pin_configs,
1691 [STAC_DELL_M6_BOTH] = dell_m6_pin_configs,
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05001692 [STAC_DELL_EQ] = dell_m6_pin_configs,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001693};
1694
1695static const char *stac92hd73xx_models[STAC_92HD73XX_MODELS] = {
Takashi Iwai9e43f0d2008-12-17 14:51:01 +01001696 [STAC_92HD73XX_NO_JD] = "no-jd",
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001697 [STAC_92HD73XX_REF] = "ref",
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001698 [STAC_DELL_M6_AMIC] = "dell-m6-amic",
1699 [STAC_DELL_M6_DMIC] = "dell-m6-dmic",
1700 [STAC_DELL_M6_BOTH] = "dell-m6",
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05001701 [STAC_DELL_EQ] = "dell-eq",
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001702};
1703
1704static struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = {
1705 /* SigmaTel reference board */
1706 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001707 "DFI LanParty", STAC_92HD73XX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001708 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1709 "DFI LanParty", STAC_92HD73XX_REF),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001710 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,
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05001742 [STAC_92HD83XXX_PWR_REF] = ref92hd83xxx_pin_configs,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001743};
1744
1745static const char *stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = {
1746 [STAC_92HD83XXX_REF] = "ref",
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05001747 [STAC_92HD83XXX_PWR_REF] = "mic-ref",
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001748};
1749
1750static struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = {
1751 /* SigmaTel reference board */
1752 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
Takashi Iwaif9d088b2009-01-13 11:54:49 +01001753 "DFI LanParty", STAC_92HD83XXX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001754 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1755 "DFI LanParty", STAC_92HD83XXX_REF),
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -02001756 {} /* terminator */
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001757};
1758
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001759static unsigned int ref92hd71bxx_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaye035b842007-11-06 11:53:55 +01001760 0x02214030, 0x02a19040, 0x01a19020, 0x01014010,
Matthew Ranostay4b33c762008-10-10 09:07:23 -04001761 0x0181302e, 0x01014010, 0x01019020, 0x90a000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001762 0x90a000f0, 0x01452050, 0x01452050, 0x00000000,
1763 0x00000000
Matthew Ranostaye035b842007-11-06 11:53:55 +01001764};
1765
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001766static unsigned int dell_m4_1_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaya7662642008-02-21 07:51:14 +01001767 0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110,
Matthew Ranostay07bcb312008-03-20 12:10:57 +01001768 0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001769 0x40f000f0, 0x4f0000f0, 0x4f0000f0, 0x00000000,
1770 0x00000000
Matthew Ranostaya7662642008-02-21 07:51:14 +01001771};
1772
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001773static unsigned int dell_m4_2_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaya7662642008-02-21 07:51:14 +01001774 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1775 0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001776 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1777 0x00000000
Matthew Ranostaya7662642008-02-21 07:51:14 +01001778};
1779
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001780static unsigned int dell_m4_3_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001781 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1782 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001783 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1784 0x00000000
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001785};
1786
Matthew Ranostaye035b842007-11-06 11:53:55 +01001787static unsigned int *stac92hd71bxx_brd_tbl[STAC_92HD71BXX_MODELS] = {
1788 [STAC_92HD71BXX_REF] = ref92hd71bxx_pin_configs,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001789 [STAC_DELL_M4_1] = dell_m4_1_pin_configs,
1790 [STAC_DELL_M4_2] = dell_m4_2_pin_configs,
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001791 [STAC_DELL_M4_3] = dell_m4_3_pin_configs,
Matthew Ranostay6a14f582008-09-12 12:02:30 -04001792 [STAC_HP_M4] = NULL,
Takashi Iwai1b0652e2009-01-14 08:27:35 +01001793 [STAC_HP_DV5] = NULL,
Matthew Ranostaye035b842007-11-06 11:53:55 +01001794};
1795
1796static const char *stac92hd71bxx_models[STAC_92HD71BXX_MODELS] = {
1797 [STAC_92HD71BXX_REF] = "ref",
Matthew Ranostaya7662642008-02-21 07:51:14 +01001798 [STAC_DELL_M4_1] = "dell-m4-1",
1799 [STAC_DELL_M4_2] = "dell-m4-2",
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001800 [STAC_DELL_M4_3] = "dell-m4-3",
Matthew Ranostay6a14f582008-09-12 12:02:30 -04001801 [STAC_HP_M4] = "hp-m4",
Takashi Iwai1b0652e2009-01-14 08:27:35 +01001802 [STAC_HP_DV5] = "hp-dv5",
Matthew Ranostaye035b842007-11-06 11:53:55 +01001803};
1804
1805static struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = {
1806 /* SigmaTel reference board */
1807 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1808 "DFI LanParty", STAC_92HD71BXX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001809 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1810 "DFI LanParty", STAC_92HD71BXX_REF),
Takashi Iwai80bf2722008-11-18 10:48:41 +01001811 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30f2,
1812 "HP dv5", STAC_HP_M4),
1813 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30f4,
1814 "HP dv7", STAC_HP_M4),
Takashi Iwaie0c0e942009-01-22 12:58:11 +01001815 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30f7,
1816 "HP dv4", STAC_HP_DV5),
Takashi Iwai69dfaef2008-12-20 16:57:50 +01001817 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30fc,
1818 "HP dv7", STAC_HP_M4),
Takashi Iwai42de55c2009-01-30 15:49:58 +01001819 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3600,
1820 "HP dv5", STAC_HP_DV5),
Giuseppe Bilottadafb70c2009-01-13 08:58:49 -05001821 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3603,
Takashi Iwai1b0652e2009-01-14 08:27:35 +01001822 "HP dv5", STAC_HP_DV5),
Matthew Ranostay9a9e2352008-09-26 10:37:03 -04001823 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a,
1824 "unknown HP", STAC_HP_M4),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001825 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,
1826 "unknown Dell", STAC_DELL_M4_1),
1827 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234,
1828 "unknown Dell", STAC_DELL_M4_1),
1829 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250,
1830 "unknown Dell", STAC_DELL_M4_1),
1831 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f,
1832 "unknown Dell", STAC_DELL_M4_1),
1833 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d,
1834 "unknown Dell", STAC_DELL_M4_1),
1835 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251,
1836 "unknown Dell", STAC_DELL_M4_1),
1837 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277,
1838 "unknown Dell", STAC_DELL_M4_1),
1839 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263,
1840 "unknown Dell", STAC_DELL_M4_2),
1841 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265,
1842 "unknown Dell", STAC_DELL_M4_2),
1843 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262,
1844 "unknown Dell", STAC_DELL_M4_2),
1845 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264,
1846 "unknown Dell", STAC_DELL_M4_2),
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001847 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa,
1848 "unknown Dell", STAC_DELL_M4_3),
Matthew Ranostaye035b842007-11-06 11:53:55 +01001849 {} /* terminator */
1850};
1851
Matt Porter403d1942005-11-29 15:00:51 +01001852static unsigned int ref922x_pin_configs[10] = {
1853 0x01014010, 0x01016011, 0x01012012, 0x0221401f,
1854 0x01813122, 0x01011014, 0x01441030, 0x01c41030,
Matt2f2f4252005-04-13 14:45:30 +02001855 0x40000100, 0x40000100,
1856};
1857
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001858/*
1859 STAC 922X pin configs for
1860 102801A7
1861 102801AB
1862 102801A9
1863 102801D1
1864 102801D2
1865*/
1866static unsigned int dell_922x_d81_pin_configs[10] = {
1867 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1868 0x02a19020, 0x01117011, 0x400001f0, 0x400001f1,
1869 0x01813122, 0x400001f2,
1870};
1871
1872/*
1873 STAC 922X pin configs for
1874 102801AC
1875 102801D0
1876*/
1877static unsigned int dell_922x_d82_pin_configs[10] = {
1878 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1879 0x02a19020, 0x01117011, 0x01451140, 0x400001f0,
1880 0x01813122, 0x400001f1,
1881};
1882
1883/*
1884 STAC 922X pin configs for
1885 102801BF
1886*/
1887static unsigned int dell_922x_m81_pin_configs[10] = {
1888 0x0321101f, 0x01112024, 0x01111222, 0x91174220,
1889 0x03a11050, 0x01116221, 0x90a70330, 0x01452340,
1890 0x40C003f1, 0x405003f0,
1891};
1892
1893/*
1894 STAC 9221 A1 pin configs for
1895 102801D7 (Dell XPS M1210)
1896*/
1897static unsigned int dell_922x_m82_pin_configs[10] = {
Jiang Zhe7f9310c2007-11-12 12:43:37 +01001898 0x02211211, 0x408103ff, 0x02a1123e, 0x90100310,
1899 0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001900 0x508003f3, 0x405003f4,
1901};
1902
Matt Porter403d1942005-11-29 15:00:51 +01001903static unsigned int d945gtp3_pin_configs[10] = {
Matt Porter869264c2006-01-25 19:20:50 +01001904 0x0221401f, 0x01a19022, 0x01813021, 0x01014010,
Matt Porter403d1942005-11-29 15:00:51 +01001905 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1906 0x02a19120, 0x40000100,
1907};
1908
1909static unsigned int d945gtp5_pin_configs[10] = {
Matt Porter869264c2006-01-25 19:20:50 +01001910 0x0221401f, 0x01011012, 0x01813024, 0x01014010,
1911 0x01a19021, 0x01016011, 0x01452130, 0x40000100,
Matt Porter403d1942005-11-29 15:00:51 +01001912 0x02a19320, 0x40000100,
1913};
1914
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001915static unsigned int intel_mac_v1_pin_configs[10] = {
1916 0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd,
1917 0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240,
Takashi Iwai3fc24d82007-02-16 13:27:18 +01001918 0x400000fc, 0x400000fb,
1919};
1920
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001921static unsigned int intel_mac_v2_pin_configs[10] = {
1922 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1923 0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa,
Sylvain FORETf16928f2007-04-27 14:22:36 +02001924 0x400000fc, 0x400000fb,
1925};
1926
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001927static unsigned int intel_mac_v3_pin_configs[10] = {
1928 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1929 0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240,
1930 0x400000fc, 0x400000fb,
1931};
1932
1933static unsigned int intel_mac_v4_pin_configs[10] = {
1934 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1935 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1936 0x400000fc, 0x400000fb,
1937};
1938
1939static unsigned int intel_mac_v5_pin_configs[10] = {
1940 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1941 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1942 0x400000fc, 0x400000fb,
Takashi Iwai0dae0f82007-05-21 12:41:29 +02001943};
1944
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001945static unsigned int ecs202_pin_configs[10] = {
1946 0x0221401f, 0x02a19020, 0x01a19020, 0x01114010,
1947 0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1,
1948 0x9037012e, 0x40e000f2,
1949};
Takashi Iwai76c08822007-06-19 12:17:42 +02001950
Takashi Iwai19039bd2006-06-28 15:52:16 +02001951static unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001952 [STAC_D945_REF] = ref922x_pin_configs,
Takashi Iwai19039bd2006-06-28 15:52:16 +02001953 [STAC_D945GTP3] = d945gtp3_pin_configs,
1954 [STAC_D945GTP5] = d945gtp5_pin_configs,
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001955 [STAC_INTEL_MAC_V1] = intel_mac_v1_pin_configs,
1956 [STAC_INTEL_MAC_V2] = intel_mac_v2_pin_configs,
1957 [STAC_INTEL_MAC_V3] = intel_mac_v3_pin_configs,
1958 [STAC_INTEL_MAC_V4] = intel_mac_v4_pin_configs,
1959 [STAC_INTEL_MAC_V5] = intel_mac_v5_pin_configs,
Nicolas Boichat536319a2008-07-21 22:18:01 +08001960 [STAC_INTEL_MAC_AUTO] = intel_mac_v3_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001961 /* for backward compatibility */
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001962 [STAC_MACMINI] = intel_mac_v3_pin_configs,
1963 [STAC_MACBOOK] = intel_mac_v5_pin_configs,
1964 [STAC_MACBOOK_PRO_V1] = intel_mac_v3_pin_configs,
1965 [STAC_MACBOOK_PRO_V2] = intel_mac_v3_pin_configs,
1966 [STAC_IMAC_INTEL] = intel_mac_v2_pin_configs,
1967 [STAC_IMAC_INTEL_20] = intel_mac_v3_pin_configs,
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001968 [STAC_ECS_202] = ecs202_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001969 [STAC_922X_DELL_D81] = dell_922x_d81_pin_configs,
1970 [STAC_922X_DELL_D82] = dell_922x_d82_pin_configs,
1971 [STAC_922X_DELL_M81] = dell_922x_m81_pin_configs,
1972 [STAC_922X_DELL_M82] = dell_922x_m82_pin_configs,
Matt Porter403d1942005-11-29 15:00:51 +01001973};
1974
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001975static const char *stac922x_models[STAC_922X_MODELS] = {
1976 [STAC_D945_REF] = "ref",
1977 [STAC_D945GTP5] = "5stack",
1978 [STAC_D945GTP3] = "3stack",
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001979 [STAC_INTEL_MAC_V1] = "intel-mac-v1",
1980 [STAC_INTEL_MAC_V2] = "intel-mac-v2",
1981 [STAC_INTEL_MAC_V3] = "intel-mac-v3",
1982 [STAC_INTEL_MAC_V4] = "intel-mac-v4",
1983 [STAC_INTEL_MAC_V5] = "intel-mac-v5",
Nicolas Boichat536319a2008-07-21 22:18:01 +08001984 [STAC_INTEL_MAC_AUTO] = "intel-mac-auto",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001985 /* for backward compatibility */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001986 [STAC_MACMINI] = "macmini",
Takashi Iwai3fc24d82007-02-16 13:27:18 +01001987 [STAC_MACBOOK] = "macbook",
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01001988 [STAC_MACBOOK_PRO_V1] = "macbook-pro-v1",
1989 [STAC_MACBOOK_PRO_V2] = "macbook-pro",
Sylvain FORETf16928f2007-04-27 14:22:36 +02001990 [STAC_IMAC_INTEL] = "imac-intel",
Takashi Iwai0dae0f82007-05-21 12:41:29 +02001991 [STAC_IMAC_INTEL_20] = "imac-intel-20",
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001992 [STAC_ECS_202] = "ecs202",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001993 [STAC_922X_DELL_D81] = "dell-d81",
1994 [STAC_922X_DELL_D82] = "dell-d82",
1995 [STAC_922X_DELL_M81] = "dell-m81",
1996 [STAC_922X_DELL_M82] = "dell-m82",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001997};
1998
1999static struct snd_pci_quirk stac922x_cfg_tbl[] = {
2000 /* SigmaTel reference board */
2001 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2002 "DFI LanParty", STAC_D945_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002003 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2004 "DFI LanParty", STAC_D945_REF),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002005 /* Intel 945G based systems */
2006 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101,
2007 "Intel D945G", STAC_D945GTP3),
2008 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202,
2009 "Intel D945G", STAC_D945GTP3),
2010 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606,
2011 "Intel D945G", STAC_D945GTP3),
2012 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601,
2013 "Intel D945G", STAC_D945GTP3),
2014 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111,
2015 "Intel D945G", STAC_D945GTP3),
2016 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115,
2017 "Intel D945G", STAC_D945GTP3),
2018 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116,
2019 "Intel D945G", STAC_D945GTP3),
2020 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117,
2021 "Intel D945G", STAC_D945GTP3),
2022 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118,
2023 "Intel D945G", STAC_D945GTP3),
2024 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119,
2025 "Intel D945G", STAC_D945GTP3),
2026 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826,
2027 "Intel D945G", STAC_D945GTP3),
2028 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049,
2029 "Intel D945G", STAC_D945GTP3),
2030 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055,
2031 "Intel D945G", STAC_D945GTP3),
2032 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048,
2033 "Intel D945G", STAC_D945GTP3),
2034 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110,
2035 "Intel D945G", STAC_D945GTP3),
2036 /* Intel D945G 5-stack systems */
2037 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404,
2038 "Intel D945G", STAC_D945GTP5),
2039 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303,
2040 "Intel D945G", STAC_D945GTP5),
2041 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013,
2042 "Intel D945G", STAC_D945GTP5),
2043 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417,
2044 "Intel D945G", STAC_D945GTP5),
2045 /* Intel 945P based systems */
2046 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b,
2047 "Intel D945P", STAC_D945GTP3),
2048 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112,
2049 "Intel D945P", STAC_D945GTP3),
2050 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d,
2051 "Intel D945P", STAC_D945GTP3),
2052 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909,
2053 "Intel D945P", STAC_D945GTP3),
2054 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505,
2055 "Intel D945P", STAC_D945GTP3),
2056 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707,
2057 "Intel D945P", STAC_D945GTP5),
Takashi Iwai8056d472009-01-23 09:09:43 +01002058 /* other intel */
2059 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0204,
2060 "Intel D945", STAC_D945_REF),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002061 /* other systems */
Nicolas Boichat536319a2008-07-21 22:18:01 +08002062 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002063 SND_PCI_QUIRK(0x8384, 0x7680,
Nicolas Boichat536319a2008-07-21 22:18:01 +08002064 "Mac", STAC_INTEL_MAC_AUTO),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002065 /* Dell systems */
2066 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7,
2067 "unknown Dell", STAC_922X_DELL_D81),
2068 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9,
2069 "unknown Dell", STAC_922X_DELL_D81),
2070 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab,
2071 "unknown Dell", STAC_922X_DELL_D81),
2072 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac,
2073 "unknown Dell", STAC_922X_DELL_D82),
2074 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf,
2075 "unknown Dell", STAC_922X_DELL_M81),
2076 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0,
2077 "unknown Dell", STAC_922X_DELL_D82),
2078 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1,
2079 "unknown Dell", STAC_922X_DELL_D81),
2080 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2,
2081 "unknown Dell", STAC_922X_DELL_D81),
2082 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
2083 "Dell XPS M1210", STAC_922X_DELL_M82),
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03002084 /* ECS/PC Chips boards */
2085 SND_PCI_QUIRK(0x1019, 0x2144,
2086 "ECS/PC chips", STAC_ECS_202),
2087 SND_PCI_QUIRK(0x1019, 0x2608,
2088 "ECS/PC chips", STAC_ECS_202),
2089 SND_PCI_QUIRK(0x1019, 0x2633,
2090 "ECS/PC chips P17G/1333", STAC_ECS_202),
2091 SND_PCI_QUIRK(0x1019, 0x2811,
2092 "ECS/PC chips", STAC_ECS_202),
2093 SND_PCI_QUIRK(0x1019, 0x2812,
2094 "ECS/PC chips", STAC_ECS_202),
2095 SND_PCI_QUIRK(0x1019, 0x2813,
2096 "ECS/PC chips", STAC_ECS_202),
2097 SND_PCI_QUIRK(0x1019, 0x2814,
2098 "ECS/PC chips", STAC_ECS_202),
2099 SND_PCI_QUIRK(0x1019, 0x2815,
2100 "ECS/PC chips", STAC_ECS_202),
2101 SND_PCI_QUIRK(0x1019, 0x2816,
2102 "ECS/PC chips", STAC_ECS_202),
2103 SND_PCI_QUIRK(0x1019, 0x2817,
2104 "ECS/PC chips", STAC_ECS_202),
2105 SND_PCI_QUIRK(0x1019, 0x2818,
2106 "ECS/PC chips", STAC_ECS_202),
2107 SND_PCI_QUIRK(0x1019, 0x2819,
2108 "ECS/PC chips", STAC_ECS_202),
2109 SND_PCI_QUIRK(0x1019, 0x2820,
2110 "ECS/PC chips", STAC_ECS_202),
Matt Porter403d1942005-11-29 15:00:51 +01002111 {} /* terminator */
2112};
2113
Matt Porter3cc08dc2006-01-23 15:27:49 +01002114static unsigned int ref927x_pin_configs[14] = {
Tobin Davis93ed1502006-09-01 21:03:12 +02002115 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2116 0x01a19040, 0x01011012, 0x01016011, 0x0101201f,
2117 0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070,
2118 0x01c42190, 0x40000100,
Matt Porter3cc08dc2006-01-23 15:27:49 +01002119};
2120
Tobin Davis93ed1502006-09-01 21:03:12 +02002121static unsigned int d965_3st_pin_configs[14] = {
Tobin Davis81d3dbd2006-08-22 19:44:45 +02002122 0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
2123 0x01a19021, 0x01813024, 0x40000100, 0x40000100,
2124 0x40000100, 0x40000100, 0x40000100, 0x40000100,
2125 0x40000100, 0x40000100
2126};
2127
Tobin Davis93ed1502006-09-01 21:03:12 +02002128static unsigned int d965_5st_pin_configs[14] = {
2129 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2130 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2131 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2132 0x40000100, 0x40000100
2133};
2134
Tobin Davis4ff076e2007-08-07 11:48:12 +02002135static unsigned int dell_3st_pin_configs[14] = {
2136 0x02211230, 0x02a11220, 0x01a19040, 0x01114210,
2137 0x01111212, 0x01116211, 0x01813050, 0x01112214,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002138 0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb,
Tobin Davis4ff076e2007-08-07 11:48:12 +02002139 0x40c003fc, 0x40000100
2140};
2141
Tobin Davis93ed1502006-09-01 21:03:12 +02002142static unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = {
Takashi Iwaie28d8322008-12-17 13:48:29 +01002143 [STAC_D965_REF_NO_JD] = ref927x_pin_configs,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002144 [STAC_D965_REF] = ref927x_pin_configs,
2145 [STAC_D965_3ST] = d965_3st_pin_configs,
2146 [STAC_D965_5ST] = d965_5st_pin_configs,
2147 [STAC_DELL_3ST] = dell_3st_pin_configs,
2148 [STAC_DELL_BIOS] = NULL,
Matt Porter3cc08dc2006-01-23 15:27:49 +01002149};
2150
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002151static const char *stac927x_models[STAC_927X_MODELS] = {
Takashi Iwaie28d8322008-12-17 13:48:29 +01002152 [STAC_D965_REF_NO_JD] = "ref-no-jd",
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002153 [STAC_D965_REF] = "ref",
2154 [STAC_D965_3ST] = "3stack",
2155 [STAC_D965_5ST] = "5stack",
2156 [STAC_DELL_3ST] = "dell-3stack",
2157 [STAC_DELL_BIOS] = "dell-bios",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002158};
2159
2160static struct snd_pci_quirk stac927x_cfg_tbl[] = {
2161 /* SigmaTel reference board */
2162 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2163 "DFI LanParty", STAC_D965_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002164 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2165 "DFI LanParty", STAC_D965_REF),
Tobin Davis81d3dbd2006-08-22 19:44:45 +02002166 /* Intel 946 based systems */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002167 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST),
2168 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST),
Tobin Davis93ed1502006-09-01 21:03:12 +02002169 /* 965 based 3 stack systems */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002170 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2116, "Intel D965", STAC_D965_3ST),
2171 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2115, "Intel D965", STAC_D965_3ST),
2172 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2114, "Intel D965", STAC_D965_3ST),
2173 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2113, "Intel D965", STAC_D965_3ST),
2174 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2112, "Intel D965", STAC_D965_3ST),
2175 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2111, "Intel D965", STAC_D965_3ST),
2176 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2110, "Intel D965", STAC_D965_3ST),
2177 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2009, "Intel D965", STAC_D965_3ST),
2178 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2008, "Intel D965", STAC_D965_3ST),
2179 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2007, "Intel D965", STAC_D965_3ST),
2180 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2006, "Intel D965", STAC_D965_3ST),
2181 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2005, "Intel D965", STAC_D965_3ST),
2182 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2004, "Intel D965", STAC_D965_3ST),
2183 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2003, "Intel D965", STAC_D965_3ST),
2184 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2002, "Intel D965", STAC_D965_3ST),
2185 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2001, "Intel D965", STAC_D965_3ST),
Tobin Davis4ff076e2007-08-07 11:48:12 +02002186 /* Dell 3 stack systems */
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002187 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f7, "Dell XPS M1730", STAC_DELL_3ST),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002188 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST),
Tobin Davis4ff076e2007-08-07 11:48:12 +02002189 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST),
2190 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002191 /* Dell 3 stack systems with verb table in BIOS */
Matthew Ranostay2f32d902008-01-10 13:06:26 +01002192 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS),
2193 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002194 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS),
Takashi Iwai24918b62008-09-30 12:58:54 +02002195 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_3ST),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002196 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS),
2197 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS),
2198 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS),
2199 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS),
Tobin Davis93ed1502006-09-01 21:03:12 +02002200 /* 965 based 5 stack systems */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002201 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2301, "Intel D965", STAC_D965_5ST),
2202 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2302, "Intel D965", STAC_D965_5ST),
2203 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2303, "Intel D965", STAC_D965_5ST),
2204 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2304, "Intel D965", STAC_D965_5ST),
2205 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2305, "Intel D965", STAC_D965_5ST),
2206 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2501, "Intel D965", STAC_D965_5ST),
2207 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2502, "Intel D965", STAC_D965_5ST),
2208 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2503, "Intel D965", STAC_D965_5ST),
2209 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2504, "Intel D965", STAC_D965_5ST),
Matt Porter3cc08dc2006-01-23 15:27:49 +01002210 {} /* terminator */
2211};
2212
Matt Porterf3302a52006-07-31 12:49:34 +02002213static unsigned int ref9205_pin_configs[12] = {
2214 0x40000100, 0x40000100, 0x01016011, 0x01014010,
Matthew Ranostay09a99952008-01-24 11:49:21 +01002215 0x01813122, 0x01a19021, 0x01019020, 0x40000100,
Matt Porter8b657272006-10-26 17:12:59 +02002216 0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030
Matt Porterf3302a52006-07-31 12:49:34 +02002217};
2218
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002219/*
2220 STAC 9205 pin configs for
2221 102801F1
2222 102801F2
2223 102801FC
2224 102801FD
2225 10280204
2226 1028021F
Matthew Ranostay3fa2ef72008-01-11 11:39:06 +01002227 10280228 (Dell Vostro 1500)
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002228*/
2229static unsigned int dell_9205_m42_pin_configs[12] = {
2230 0x0321101F, 0x03A11020, 0x400003FA, 0x90170310,
2231 0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9,
2232 0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE,
2233};
2234
2235/*
2236 STAC 9205 pin configs for
2237 102801F9
2238 102801FA
2239 102801FE
2240 102801FF (Dell Precision M4300)
2241 10280206
2242 10280200
2243 10280201
2244*/
2245static unsigned int dell_9205_m43_pin_configs[12] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002246 0x0321101f, 0x03a11020, 0x90a70330, 0x90170310,
2247 0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9,
2248 0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8,
2249};
2250
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002251static unsigned int dell_9205_m44_pin_configs[12] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002252 0x0421101f, 0x04a11020, 0x400003fa, 0x90170310,
2253 0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9,
2254 0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe,
2255};
2256
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002257static unsigned int *stac9205_brd_tbl[STAC_9205_MODELS] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002258 [STAC_9205_REF] = ref9205_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002259 [STAC_9205_DELL_M42] = dell_9205_m42_pin_configs,
2260 [STAC_9205_DELL_M43] = dell_9205_m43_pin_configs,
2261 [STAC_9205_DELL_M44] = dell_9205_m44_pin_configs,
Takashi Iwaid9a42682009-01-22 17:40:18 +01002262 [STAC_9205_EAPD] = NULL,
Matt Porterf3302a52006-07-31 12:49:34 +02002263};
2264
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002265static const char *stac9205_models[STAC_9205_MODELS] = {
2266 [STAC_9205_REF] = "ref",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002267 [STAC_9205_DELL_M42] = "dell-m42",
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002268 [STAC_9205_DELL_M43] = "dell-m43",
2269 [STAC_9205_DELL_M44] = "dell-m44",
Takashi Iwaid9a42682009-01-22 17:40:18 +01002270 [STAC_9205_EAPD] = "eapd",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002271};
2272
2273static struct snd_pci_quirk stac9205_cfg_tbl[] = {
2274 /* SigmaTel reference board */
2275 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2276 "DFI LanParty", STAC_9205_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002277 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2278 "DFI LanParty", STAC_9205_REF),
Takashi Iwaid9a42682009-01-22 17:40:18 +01002279 /* Dell */
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002280 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1,
2281 "unknown Dell", STAC_9205_DELL_M42),
2282 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2,
2283 "unknown Dell", STAC_9205_DELL_M42),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002284 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8,
Matthew Ranostayb44ef2f2007-09-18 00:52:38 +02002285 "Dell Precision", STAC_9205_DELL_M43),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002286 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9,
2287 "Dell Precision", STAC_9205_DELL_M43),
2288 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa,
2289 "Dell Precision", STAC_9205_DELL_M43),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002290 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc,
2291 "unknown Dell", STAC_9205_DELL_M42),
2292 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd,
2293 "unknown Dell", STAC_9205_DELL_M42),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002294 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe,
2295 "Dell Precision", STAC_9205_DELL_M43),
2296 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002297 "Dell Precision M4300", STAC_9205_DELL_M43),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002298 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204,
2299 "unknown Dell", STAC_9205_DELL_M42),
Takashi Iwai45499152008-06-12 16:27:24 +02002300 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206,
2301 "Dell Precision", STAC_9205_DELL_M43),
2302 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b,
2303 "Dell Precision", STAC_9205_DELL_M43),
2304 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c,
2305 "Dell Precision", STAC_9205_DELL_M43),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002306 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f,
2307 "Dell Inspiron", STAC_9205_DELL_M44),
Matthew Ranostay3fa2ef72008-01-11 11:39:06 +01002308 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228,
2309 "Dell Vostro 1500", STAC_9205_DELL_M42),
Takashi Iwaid9a42682009-01-22 17:40:18 +01002310 /* Gateway */
2311 SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD),
Matt Porterf3302a52006-07-31 12:49:34 +02002312 {} /* terminator */
2313};
2314
Richard Fish11b44bb2006-08-23 18:31:34 +02002315static int stac92xx_save_bios_config_regs(struct hda_codec *codec)
2316{
2317 int i;
2318 struct sigmatel_spec *spec = codec->spec;
2319
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01002320 kfree(spec->pin_configs);
2321 spec->pin_configs = kcalloc(spec->num_pins, sizeof(*spec->pin_configs),
2322 GFP_KERNEL);
2323 if (!spec->pin_configs)
2324 return -ENOMEM;
Richard Fish11b44bb2006-08-23 18:31:34 +02002325
2326 for (i = 0; i < spec->num_pins; i++) {
2327 hda_nid_t nid = spec->pin_nids[i];
2328 unsigned int pin_cfg;
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05002329
2330 if (!nid)
2331 continue;
Richard Fish11b44bb2006-08-23 18:31:34 +02002332 pin_cfg = snd_hda_codec_read(codec, nid, 0,
2333 AC_VERB_GET_CONFIG_DEFAULT, 0x00);
2334 snd_printdd(KERN_INFO "hda_codec: pin nid %2.2x bios pin config %8.8x\n",
2335 nid, pin_cfg);
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01002336 spec->pin_configs[i] = pin_cfg;
Richard Fish11b44bb2006-08-23 18:31:34 +02002337 }
2338
2339 return 0;
2340}
2341
Matthew Ranostay87d48362007-07-17 11:52:24 +02002342static void stac92xx_set_config_reg(struct hda_codec *codec,
2343 hda_nid_t pin_nid, unsigned int pin_config)
2344{
2345 int i;
2346 snd_hda_codec_write(codec, pin_nid, 0,
2347 AC_VERB_SET_CONFIG_DEFAULT_BYTES_0,
2348 pin_config & 0x000000ff);
2349 snd_hda_codec_write(codec, pin_nid, 0,
2350 AC_VERB_SET_CONFIG_DEFAULT_BYTES_1,
2351 (pin_config & 0x0000ff00) >> 8);
2352 snd_hda_codec_write(codec, pin_nid, 0,
2353 AC_VERB_SET_CONFIG_DEFAULT_BYTES_2,
2354 (pin_config & 0x00ff0000) >> 16);
2355 snd_hda_codec_write(codec, pin_nid, 0,
2356 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3,
2357 pin_config >> 24);
2358 i = snd_hda_codec_read(codec, pin_nid, 0,
2359 AC_VERB_GET_CONFIG_DEFAULT,
2360 0x00);
2361 snd_printdd(KERN_INFO "hda_codec: pin nid %2.2x pin config %8.8x\n",
2362 pin_nid, i);
2363}
2364
Matt2f2f4252005-04-13 14:45:30 +02002365static void stac92xx_set_config_regs(struct hda_codec *codec)
2366{
2367 int i;
2368 struct sigmatel_spec *spec = codec->spec;
Matt2f2f4252005-04-13 14:45:30 +02002369
Matthew Ranostay87d48362007-07-17 11:52:24 +02002370 if (!spec->pin_configs)
2371 return;
Richard Fish11b44bb2006-08-23 18:31:34 +02002372
Matthew Ranostay87d48362007-07-17 11:52:24 +02002373 for (i = 0; i < spec->num_pins; i++)
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05002374 if (spec->pin_nids[i] && spec->pin_configs[i])
2375 stac92xx_set_config_reg(codec, spec->pin_nids[i],
2376 spec->pin_configs[i]);
Matt2f2f4252005-04-13 14:45:30 +02002377}
Matt2f2f4252005-04-13 14:45:30 +02002378
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01002379static int stac_save_pin_cfgs(struct hda_codec *codec, unsigned int *pins)
2380{
2381 struct sigmatel_spec *spec = codec->spec;
2382
2383 if (!pins)
2384 return stac92xx_save_bios_config_regs(codec);
2385
2386 kfree(spec->pin_configs);
2387 spec->pin_configs = kmemdup(pins,
2388 spec->num_pins * sizeof(*pins),
2389 GFP_KERNEL);
2390 if (!spec->pin_configs)
2391 return -ENOMEM;
2392
2393 stac92xx_set_config_regs(codec);
2394 return 0;
2395}
2396
2397static void stac_change_pin_config(struct hda_codec *codec, hda_nid_t nid,
2398 unsigned int cfg)
2399{
2400 struct sigmatel_spec *spec = codec->spec;
2401 int i;
2402
2403 for (i = 0; i < spec->num_pins; i++) {
2404 if (spec->pin_nids[i] == nid) {
2405 spec->pin_configs[i] = cfg;
2406 stac92xx_set_config_reg(codec, nid, cfg);
2407 break;
2408 }
2409 }
2410}
2411
Matt2f2f4252005-04-13 14:45:30 +02002412/*
2413 * Analog playback callbacks
2414 */
2415static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo,
2416 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002417 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002418{
2419 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002420 if (spec->stream_delay)
2421 msleep(spec->stream_delay);
Takashi Iwai9a081602008-02-12 18:37:26 +01002422 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2423 hinfo);
Matt2f2f4252005-04-13 14:45:30 +02002424}
2425
2426static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2427 struct hda_codec *codec,
2428 unsigned int stream_tag,
2429 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002430 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002431{
2432 struct sigmatel_spec *spec = codec->spec;
Matt Porter403d1942005-11-29 15:00:51 +01002433 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag, format, substream);
Matt2f2f4252005-04-13 14:45:30 +02002434}
2435
2436static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2437 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002438 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002439{
2440 struct sigmatel_spec *spec = codec->spec;
2441 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2442}
2443
2444/*
Mattdabbed62005-06-14 10:19:34 +02002445 * Digital playback callbacks
2446 */
2447static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2448 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002449 struct snd_pcm_substream *substream)
Mattdabbed62005-06-14 10:19:34 +02002450{
2451 struct sigmatel_spec *spec = codec->spec;
2452 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2453}
2454
2455static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2456 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002457 struct snd_pcm_substream *substream)
Mattdabbed62005-06-14 10:19:34 +02002458{
2459 struct sigmatel_spec *spec = codec->spec;
2460 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2461}
2462
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002463static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2464 struct hda_codec *codec,
2465 unsigned int stream_tag,
2466 unsigned int format,
2467 struct snd_pcm_substream *substream)
2468{
2469 struct sigmatel_spec *spec = codec->spec;
2470 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2471 stream_tag, format, substream);
2472}
2473
Mattdabbed62005-06-14 10:19:34 +02002474
2475/*
Matt2f2f4252005-04-13 14:45:30 +02002476 * Analog capture callbacks
2477 */
2478static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2479 struct hda_codec *codec,
2480 unsigned int stream_tag,
2481 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002482 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002483{
2484 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002485 hda_nid_t nid = spec->adc_nids[substream->number];
Matt2f2f4252005-04-13 14:45:30 +02002486
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002487 if (spec->powerdown_adcs) {
2488 msleep(40);
Takashi Iwai8c2f7672008-12-01 11:54:35 +01002489 snd_hda_codec_write(codec, nid, 0,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002490 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
2491 }
2492 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Matt2f2f4252005-04-13 14:45:30 +02002493 return 0;
2494}
2495
2496static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2497 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002498 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002499{
2500 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002501 hda_nid_t nid = spec->adc_nids[substream->number];
Matt2f2f4252005-04-13 14:45:30 +02002502
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002503 snd_hda_codec_cleanup_stream(codec, nid);
2504 if (spec->powerdown_adcs)
Takashi Iwai8c2f7672008-12-01 11:54:35 +01002505 snd_hda_codec_write(codec, nid, 0,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002506 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
Matt2f2f4252005-04-13 14:45:30 +02002507 return 0;
2508}
2509
Mattdabbed62005-06-14 10:19:34 +02002510static struct hda_pcm_stream stac92xx_pcm_digital_playback = {
2511 .substreams = 1,
2512 .channels_min = 2,
2513 .channels_max = 2,
2514 /* NID is set in stac92xx_build_pcms */
2515 .ops = {
2516 .open = stac92xx_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002517 .close = stac92xx_dig_playback_pcm_close,
2518 .prepare = stac92xx_dig_playback_pcm_prepare
Mattdabbed62005-06-14 10:19:34 +02002519 },
2520};
2521
2522static struct hda_pcm_stream stac92xx_pcm_digital_capture = {
2523 .substreams = 1,
2524 .channels_min = 2,
2525 .channels_max = 2,
2526 /* NID is set in stac92xx_build_pcms */
2527};
2528
Matt2f2f4252005-04-13 14:45:30 +02002529static struct hda_pcm_stream stac92xx_pcm_analog_playback = {
2530 .substreams = 1,
2531 .channels_min = 2,
Mattc7d4b2f2005-06-27 14:59:41 +02002532 .channels_max = 8,
Matt2f2f4252005-04-13 14:45:30 +02002533 .nid = 0x02, /* NID to query formats and rates */
2534 .ops = {
2535 .open = stac92xx_playback_pcm_open,
2536 .prepare = stac92xx_playback_pcm_prepare,
2537 .cleanup = stac92xx_playback_pcm_cleanup
2538 },
2539};
2540
Matt Porter3cc08dc2006-01-23 15:27:49 +01002541static struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = {
2542 .substreams = 1,
2543 .channels_min = 2,
2544 .channels_max = 2,
2545 .nid = 0x06, /* NID to query formats and rates */
2546 .ops = {
2547 .open = stac92xx_playback_pcm_open,
2548 .prepare = stac92xx_playback_pcm_prepare,
2549 .cleanup = stac92xx_playback_pcm_cleanup
2550 },
2551};
2552
Matt2f2f4252005-04-13 14:45:30 +02002553static struct hda_pcm_stream stac92xx_pcm_analog_capture = {
Matt2f2f4252005-04-13 14:45:30 +02002554 .channels_min = 2,
2555 .channels_max = 2,
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02002556 /* NID + .substreams is set in stac92xx_build_pcms */
Matt2f2f4252005-04-13 14:45:30 +02002557 .ops = {
2558 .prepare = stac92xx_capture_pcm_prepare,
2559 .cleanup = stac92xx_capture_pcm_cleanup
2560 },
2561};
2562
2563static int stac92xx_build_pcms(struct hda_codec *codec)
2564{
2565 struct sigmatel_spec *spec = codec->spec;
2566 struct hda_pcm *info = spec->pcm_rec;
2567
2568 codec->num_pcms = 1;
2569 codec->pcm_info = info;
2570
Mattc7d4b2f2005-06-27 14:59:41 +02002571 info->name = "STAC92xx Analog";
Matt2f2f4252005-04-13 14:45:30 +02002572 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback;
Takashi Iwai00a602d2009-01-23 11:55:42 +01002573 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2574 spec->multiout.dac_nids[0];
Matt2f2f4252005-04-13 14:45:30 +02002575 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture;
Matt Porter3cc08dc2006-01-23 15:27:49 +01002576 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02002577 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adcs;
Matt Porter3cc08dc2006-01-23 15:27:49 +01002578
2579 if (spec->alt_switch) {
2580 codec->num_pcms++;
2581 info++;
2582 info->name = "STAC92xx Analog Alt";
2583 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback;
2584 }
Matt2f2f4252005-04-13 14:45:30 +02002585
Mattdabbed62005-06-14 10:19:34 +02002586 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2587 codec->num_pcms++;
2588 info++;
2589 info->name = "STAC92xx Digital";
Takashi Iwai8c441982009-01-20 18:30:20 +01002590 info->pcm_type = spec->autocfg.dig_out_type;
Mattdabbed62005-06-14 10:19:34 +02002591 if (spec->multiout.dig_out_nid) {
2592 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback;
2593 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2594 }
2595 if (spec->dig_in_nid) {
2596 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture;
2597 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2598 }
2599 }
2600
Matt2f2f4252005-04-13 14:45:30 +02002601 return 0;
2602}
2603
Takashi Iwaic960a032006-03-23 17:06:28 +01002604static unsigned int stac92xx_get_vref(struct hda_codec *codec, hda_nid_t nid)
2605{
2606 unsigned int pincap = snd_hda_param_read(codec, nid,
2607 AC_PAR_PIN_CAP);
2608 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
2609 if (pincap & AC_PINCAP_VREF_100)
2610 return AC_PINCTL_VREF_100;
2611 if (pincap & AC_PINCAP_VREF_80)
2612 return AC_PINCTL_VREF_80;
2613 if (pincap & AC_PINCAP_VREF_50)
2614 return AC_PINCTL_VREF_50;
2615 if (pincap & AC_PINCAP_VREF_GRD)
2616 return AC_PINCTL_VREF_GRD;
2617 return 0;
2618}
2619
Matt Porter403d1942005-11-29 15:00:51 +01002620static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type)
2621
2622{
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002623 snd_hda_codec_write_cache(codec, nid, 0,
2624 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
Matt Porter403d1942005-11-29 15:00:51 +01002625}
2626
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002627#define stac92xx_hp_switch_info snd_ctl_boolean_mono_info
2628
2629static int stac92xx_hp_switch_get(struct snd_kcontrol *kcontrol,
2630 struct snd_ctl_elem_value *ucontrol)
2631{
2632 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2633 struct sigmatel_spec *spec = codec->spec;
2634
Takashi Iwaid7a89432008-11-12 09:48:04 +01002635 ucontrol->value.integer.value[0] = !!spec->hp_switch;
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002636 return 0;
2637}
2638
Takashi Iwaic6e4c662008-11-25 11:58:19 +01002639static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid,
2640 unsigned char type);
2641
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002642static int stac92xx_hp_switch_put(struct snd_kcontrol *kcontrol,
2643 struct snd_ctl_elem_value *ucontrol)
2644{
2645 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2646 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaid7a89432008-11-12 09:48:04 +01002647 int nid = kcontrol->private_value;
2648
2649 spec->hp_switch = ucontrol->value.integer.value[0] ? nid : 0;
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002650
2651 /* check to be sure that the ports are upto date with
2652 * switch changes
2653 */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01002654 stac_issue_unsol_event(codec, nid, STAC_HP_EVENT);
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002655
2656 return 1;
2657}
2658
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002659#define stac92xx_io_switch_info snd_ctl_boolean_mono_info
Matt Porter403d1942005-11-29 15:00:51 +01002660
2661static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2662{
2663 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2664 struct sigmatel_spec *spec = codec->spec;
2665 int io_idx = kcontrol-> private_value & 0xff;
2666
2667 ucontrol->value.integer.value[0] = spec->io_switch[io_idx];
2668 return 0;
2669}
2670
2671static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2672{
2673 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2674 struct sigmatel_spec *spec = codec->spec;
2675 hda_nid_t nid = kcontrol->private_value >> 8;
2676 int io_idx = kcontrol-> private_value & 0xff;
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002677 unsigned short val = !!ucontrol->value.integer.value[0];
Matt Porter403d1942005-11-29 15:00:51 +01002678
2679 spec->io_switch[io_idx] = val;
2680
2681 if (val)
2682 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
Takashi Iwaic960a032006-03-23 17:06:28 +01002683 else {
2684 unsigned int pinctl = AC_PINCTL_IN_EN;
2685 if (io_idx) /* set VREF for mic */
2686 pinctl |= stac92xx_get_vref(codec, nid);
2687 stac92xx_auto_set_pinctl(codec, nid, pinctl);
2688 }
Jiang Zhe40c1d302007-11-12 13:05:16 +01002689
2690 /* check the auto-mute again: we need to mute/unmute the speaker
2691 * appropriately according to the pin direction
2692 */
2693 if (spec->hp_detect)
Takashi Iwaic6e4c662008-11-25 11:58:19 +01002694 stac_issue_unsol_event(codec, nid, STAC_HP_EVENT);
Jiang Zhe40c1d302007-11-12 13:05:16 +01002695
Matt Porter403d1942005-11-29 15:00:51 +01002696 return 1;
2697}
2698
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002699#define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info
2700
2701static int stac92xx_clfe_switch_get(struct snd_kcontrol *kcontrol,
2702 struct snd_ctl_elem_value *ucontrol)
2703{
2704 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2705 struct sigmatel_spec *spec = codec->spec;
2706
2707 ucontrol->value.integer.value[0] = spec->clfe_swap;
2708 return 0;
2709}
2710
2711static int stac92xx_clfe_switch_put(struct snd_kcontrol *kcontrol,
2712 struct snd_ctl_elem_value *ucontrol)
2713{
2714 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2715 struct sigmatel_spec *spec = codec->spec;
2716 hda_nid_t nid = kcontrol->private_value & 0xff;
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002717 unsigned int val = !!ucontrol->value.integer.value[0];
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002718
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002719 if (spec->clfe_swap == val)
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002720 return 0;
2721
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002722 spec->clfe_swap = val;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002723
2724 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
2725 spec->clfe_swap ? 0x4 : 0x0);
2726
2727 return 1;
2728}
2729
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002730#define STAC_CODEC_HP_SWITCH(xname) \
2731 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2732 .name = xname, \
2733 .index = 0, \
2734 .info = stac92xx_hp_switch_info, \
2735 .get = stac92xx_hp_switch_get, \
2736 .put = stac92xx_hp_switch_put, \
2737 }
2738
Matt Porter403d1942005-11-29 15:00:51 +01002739#define STAC_CODEC_IO_SWITCH(xname, xpval) \
2740 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2741 .name = xname, \
2742 .index = 0, \
2743 .info = stac92xx_io_switch_info, \
2744 .get = stac92xx_io_switch_get, \
2745 .put = stac92xx_io_switch_put, \
2746 .private_value = xpval, \
2747 }
2748
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002749#define STAC_CODEC_CLFE_SWITCH(xname, xpval) \
2750 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2751 .name = xname, \
2752 .index = 0, \
2753 .info = stac92xx_clfe_switch_info, \
2754 .get = stac92xx_clfe_switch_get, \
2755 .put = stac92xx_clfe_switch_put, \
2756 .private_value = xpval, \
2757 }
Matt Porter403d1942005-11-29 15:00:51 +01002758
Mattc7d4b2f2005-06-27 14:59:41 +02002759enum {
2760 STAC_CTL_WIDGET_VOL,
2761 STAC_CTL_WIDGET_MUTE,
Matthew Ranostay09a99952008-01-24 11:49:21 +01002762 STAC_CTL_WIDGET_MONO_MUX,
Matthew Ranostay89385032008-09-11 09:49:39 -04002763 STAC_CTL_WIDGET_AMP_MUX,
2764 STAC_CTL_WIDGET_AMP_VOL,
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002765 STAC_CTL_WIDGET_HP_SWITCH,
Matt Porter403d1942005-11-29 15:00:51 +01002766 STAC_CTL_WIDGET_IO_SWITCH,
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002767 STAC_CTL_WIDGET_CLFE_SWITCH
Mattc7d4b2f2005-06-27 14:59:41 +02002768};
2769
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002770static struct snd_kcontrol_new stac92xx_control_templates[] = {
Mattc7d4b2f2005-06-27 14:59:41 +02002771 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2772 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Matthew Ranostay09a99952008-01-24 11:49:21 +01002773 STAC_MONO_MUX,
Matthew Ranostay89385032008-09-11 09:49:39 -04002774 STAC_AMP_MUX,
2775 STAC_AMP_VOL(NULL, 0, 0, 0, 0),
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002776 STAC_CODEC_HP_SWITCH(NULL),
Matt Porter403d1942005-11-29 15:00:51 +01002777 STAC_CODEC_IO_SWITCH(NULL, 0),
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002778 STAC_CODEC_CLFE_SWITCH(NULL, 0),
Mattc7d4b2f2005-06-27 14:59:41 +02002779};
2780
2781/* add dynamic controls */
Takashi Iwaie3c75962009-01-23 11:57:22 +01002782static struct snd_kcontrol_new *
2783stac_control_new(struct sigmatel_spec *spec,
2784 struct snd_kcontrol_new *ktemp,
2785 const char *name)
Mattc7d4b2f2005-06-27 14:59:41 +02002786{
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002787 struct snd_kcontrol_new *knew;
Mattc7d4b2f2005-06-27 14:59:41 +02002788
Takashi Iwai603c4012008-07-30 15:01:44 +02002789 snd_array_init(&spec->kctls, sizeof(*knew), 32);
2790 knew = snd_array_new(&spec->kctls);
2791 if (!knew)
Takashi Iwaie3c75962009-01-23 11:57:22 +01002792 return NULL;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002793 *knew = *ktemp;
Takashi Iwai82fe0c52005-06-30 10:54:33 +02002794 knew->name = kstrdup(name, GFP_KERNEL);
Takashi Iwaie3c75962009-01-23 11:57:22 +01002795 if (!knew->name) {
2796 /* roolback */
2797 memset(knew, 0, sizeof(*knew));
2798 spec->kctls.alloced--;
2799 return NULL;
2800 }
2801 return knew;
2802}
2803
2804static int stac92xx_add_control_temp(struct sigmatel_spec *spec,
2805 struct snd_kcontrol_new *ktemp,
2806 int idx, const char *name,
2807 unsigned long val)
2808{
2809 struct snd_kcontrol_new *knew = stac_control_new(spec, ktemp, name);
2810 if (!knew)
Mattc7d4b2f2005-06-27 14:59:41 +02002811 return -ENOMEM;
Takashi Iwaie3c75962009-01-23 11:57:22 +01002812 knew->index = idx;
Mattc7d4b2f2005-06-27 14:59:41 +02002813 knew->private_value = val;
Mattc7d4b2f2005-06-27 14:59:41 +02002814 return 0;
2815}
2816
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002817static inline int stac92xx_add_control_idx(struct sigmatel_spec *spec,
2818 int type, int idx, const char *name,
2819 unsigned long val)
2820{
2821 return stac92xx_add_control_temp(spec,
2822 &stac92xx_control_templates[type],
2823 idx, name, val);
2824}
2825
Matthew Ranostay4682eee2008-08-15 07:43:24 +02002826
2827/* add dynamic controls */
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002828static inline int stac92xx_add_control(struct sigmatel_spec *spec, int type,
2829 const char *name, unsigned long val)
Matthew Ranostay4682eee2008-08-15 07:43:24 +02002830{
2831 return stac92xx_add_control_idx(spec, type, 0, name, val);
2832}
2833
Takashi Iwaie3c75962009-01-23 11:57:22 +01002834static struct snd_kcontrol_new stac_input_src_temp = {
2835 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2836 .name = "Input Source",
2837 .info = stac92xx_mux_enum_info,
2838 .get = stac92xx_mux_enum_get,
2839 .put = stac92xx_mux_enum_put,
2840};
2841
2842static int stac92xx_add_input_source(struct sigmatel_spec *spec)
2843{
2844 struct snd_kcontrol_new *knew;
2845 struct hda_input_mux *imux = &spec->private_imux;
2846
2847 if (!spec->num_adcs || imux->num_items <= 1)
2848 return 0; /* no need for input source control */
2849 knew = stac_control_new(spec, &stac_input_src_temp,
2850 stac_input_src_temp.name);
2851 if (!knew)
2852 return -ENOMEM;
2853 knew->count = spec->num_adcs;
2854 return 0;
2855}
2856
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002857/* check whether the line-input can be used as line-out */
2858static hda_nid_t check_line_out_switch(struct hda_codec *codec)
Matt Porter403d1942005-11-29 15:00:51 +01002859{
2860 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002861 struct auto_pin_cfg *cfg = &spec->autocfg;
2862 hda_nid_t nid;
2863 unsigned int pincap;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002864
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002865 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2866 return 0;
2867 nid = cfg->input_pins[AUTO_PIN_LINE];
2868 pincap = snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);
2869 if (pincap & AC_PINCAP_OUT)
2870 return nid;
Matt Porter403d1942005-11-29 15:00:51 +01002871 return 0;
2872}
2873
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002874/* check whether the mic-input can be used as line-out */
2875static hda_nid_t check_mic_out_switch(struct hda_codec *codec)
2876{
2877 struct sigmatel_spec *spec = codec->spec;
2878 struct auto_pin_cfg *cfg = &spec->autocfg;
2879 unsigned int def_conf, pincap;
2880 unsigned int mic_pin;
2881
2882 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2883 return 0;
2884 mic_pin = AUTO_PIN_MIC;
2885 for (;;) {
2886 hda_nid_t nid = cfg->input_pins[mic_pin];
2887 def_conf = snd_hda_codec_read(codec, nid, 0,
2888 AC_VERB_GET_CONFIG_DEFAULT, 0);
2889 /* some laptops have an internal analog microphone
2890 * which can't be used as a output */
2891 if (get_defcfg_connect(def_conf) != AC_JACK_PORT_FIXED) {
2892 pincap = snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);
2893 if (pincap & AC_PINCAP_OUT)
2894 return nid;
2895 }
2896 if (mic_pin == AUTO_PIN_MIC)
2897 mic_pin = AUTO_PIN_FRONT_MIC;
2898 else
2899 break;
2900 }
2901 return 0;
2902}
Steve Longerbeam7b043892007-05-03 20:50:03 +02002903
2904static int is_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2905{
2906 int i;
2907
2908 for (i = 0; i < spec->multiout.num_dacs; i++) {
2909 if (spec->multiout.dac_nids[i] == nid)
2910 return 1;
2911 }
2912
2913 return 0;
2914}
2915
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002916static int check_all_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2917{
2918 int i;
2919 if (is_in_dac_nids(spec, nid))
2920 return 1;
2921 for (i = 0; i < spec->autocfg.hp_outs; i++)
2922 if (spec->hp_dacs[i] == nid)
2923 return 1;
2924 for (i = 0; i < spec->autocfg.speaker_outs; i++)
2925 if (spec->speaker_dacs[i] == nid)
2926 return 1;
2927 return 0;
2928}
2929
2930static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid)
2931{
2932 struct sigmatel_spec *spec = codec->spec;
2933 int j, conn_len;
2934 hda_nid_t conn[HDA_MAX_CONNECTIONS];
2935 unsigned int wcaps, wtype;
2936
2937 conn_len = snd_hda_get_connections(codec, nid, conn,
2938 HDA_MAX_CONNECTIONS);
2939 for (j = 0; j < conn_len; j++) {
2940 wcaps = snd_hda_param_read(codec, conn[j],
2941 AC_PAR_AUDIO_WIDGET_CAP);
2942 wtype = (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
2943 /* we check only analog outputs */
2944 if (wtype != AC_WID_AUD_OUT || (wcaps & AC_WCAP_DIGITAL))
2945 continue;
2946 /* if this route has a free DAC, assign it */
2947 if (!check_all_dac_nids(spec, conn[j])) {
2948 if (conn_len > 1) {
2949 /* select this DAC in the pin's input mux */
2950 snd_hda_codec_write_cache(codec, nid, 0,
2951 AC_VERB_SET_CONNECT_SEL, j);
2952 }
2953 return conn[j];
2954 }
2955 }
2956 return 0;
2957}
2958
2959static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
2960static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
2961
Matt Porter3cc08dc2006-01-23 15:27:49 +01002962/*
Steve Longerbeam7b043892007-05-03 20:50:03 +02002963 * Fill in the dac_nids table from the parsed pin configuration
2964 * This function only works when every pin in line_out_pins[]
2965 * contains atleast one DAC in its connection list. Some 92xx
2966 * codecs are not connected directly to a DAC, such as the 9200
2967 * and 9202/925x. For those, dac_nids[] must be hard-coded.
Matt Porter3cc08dc2006-01-23 15:27:49 +01002968 */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002969static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec)
Mattc7d4b2f2005-06-27 14:59:41 +02002970{
2971 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002972 struct auto_pin_cfg *cfg = &spec->autocfg;
2973 int i;
2974 hda_nid_t nid, dac;
Steve Longerbeam7b043892007-05-03 20:50:03 +02002975
Mattc7d4b2f2005-06-27 14:59:41 +02002976 for (i = 0; i < cfg->line_outs; i++) {
2977 nid = cfg->line_out_pins[i];
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002978 dac = get_unassigned_dac(codec, nid);
2979 if (!dac) {
Takashi Iwaidf802952007-07-02 19:18:00 +02002980 if (spec->multiout.num_dacs > 0) {
2981 /* we have already working output pins,
2982 * so let's drop the broken ones again
2983 */
2984 cfg->line_outs = spec->multiout.num_dacs;
2985 break;
2986 }
Steve Longerbeam7b043892007-05-03 20:50:03 +02002987 /* error out, no available DAC found */
2988 snd_printk(KERN_ERR
2989 "%s: No available DAC for pin 0x%x\n",
2990 __func__, nid);
2991 return -ENODEV;
2992 }
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002993 add_spec_dacs(spec, dac);
2994 }
Steve Longerbeam7b043892007-05-03 20:50:03 +02002995
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002996 /* add line-in as output */
2997 nid = check_line_out_switch(codec);
2998 if (nid) {
2999 dac = get_unassigned_dac(codec, nid);
3000 if (dac) {
3001 snd_printdd("STAC: Add line-in 0x%x as output %d\n",
3002 nid, cfg->line_outs);
3003 cfg->line_out_pins[cfg->line_outs] = nid;
3004 cfg->line_outs++;
3005 spec->line_switch = nid;
3006 add_spec_dacs(spec, dac);
3007 }
3008 }
3009 /* add mic as output */
3010 nid = check_mic_out_switch(codec);
3011 if (nid) {
3012 dac = get_unassigned_dac(codec, nid);
3013 if (dac) {
3014 snd_printdd("STAC: Add mic-in 0x%x as output %d\n",
3015 nid, cfg->line_outs);
3016 cfg->line_out_pins[cfg->line_outs] = nid;
3017 cfg->line_outs++;
3018 spec->mic_switch = nid;
3019 add_spec_dacs(spec, dac);
Steve Longerbeam7b043892007-05-03 20:50:03 +02003020 }
Mattc7d4b2f2005-06-27 14:59:41 +02003021 }
3022
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003023 for (i = 0; i < cfg->hp_outs; i++) {
3024 nid = cfg->hp_pins[i];
3025 dac = get_unassigned_dac(codec, nid);
3026 if (dac) {
3027 if (!spec->multiout.hp_nid)
3028 spec->multiout.hp_nid = dac;
3029 else
3030 add_spec_extra_dacs(spec, dac);
3031 }
3032 spec->hp_dacs[i] = dac;
3033 }
3034
3035 for (i = 0; i < cfg->speaker_outs; i++) {
3036 nid = cfg->speaker_pins[i];
3037 dac = get_unassigned_dac(codec, nid);
3038 if (dac)
3039 add_spec_extra_dacs(spec, dac);
3040 spec->speaker_dacs[i] = dac;
3041 }
3042
3043 snd_printd("stac92xx: dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
Steve Longerbeam7b043892007-05-03 20:50:03 +02003044 spec->multiout.num_dacs,
3045 spec->multiout.dac_nids[0],
3046 spec->multiout.dac_nids[1],
3047 spec->multiout.dac_nids[2],
3048 spec->multiout.dac_nids[3],
3049 spec->multiout.dac_nids[4]);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003050
Mattc7d4b2f2005-06-27 14:59:41 +02003051 return 0;
3052}
3053
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003054/* create volume control/switch for the given prefx type */
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003055static int create_controls(struct hda_codec *codec, const char *pfx,
3056 hda_nid_t nid, int chs)
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003057{
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003058 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003059 char name[32];
3060 int err;
3061
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003062 if (!spec->check_volume_offset) {
3063 unsigned int caps, step, nums, db_scale;
3064 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3065 step = (caps & AC_AMPCAP_STEP_SIZE) >>
3066 AC_AMPCAP_STEP_SIZE_SHIFT;
3067 step = (step + 1) * 25; /* in .01dB unit */
3068 nums = (caps & AC_AMPCAP_NUM_STEPS) >>
3069 AC_AMPCAP_NUM_STEPS_SHIFT;
3070 db_scale = nums * step;
3071 /* if dB scale is over -64dB, and finer enough,
3072 * let's reduce it to half
3073 */
3074 if (db_scale > 6400 && nums >= 0x1f)
3075 spec->volume_offset = nums / 2;
3076 spec->check_volume_offset = 1;
3077 }
3078
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003079 sprintf(name, "%s Playback Volume", pfx);
3080 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, name,
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003081 HDA_COMPOSE_AMP_VAL_OFS(nid, chs, 0, HDA_OUTPUT,
3082 spec->volume_offset));
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003083 if (err < 0)
3084 return err;
3085 sprintf(name, "%s Playback Switch", pfx);
3086 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, name,
3087 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
3088 if (err < 0)
3089 return err;
3090 return 0;
3091}
3092
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003093static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
3094{
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003095 if (spec->multiout.num_dacs > 4) {
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003096 printk(KERN_WARNING "stac92xx: No space for DAC 0x%x\n", nid);
3097 return 1;
3098 } else {
3099 spec->multiout.dac_nids[spec->multiout.num_dacs] = nid;
3100 spec->multiout.num_dacs++;
3101 }
3102 return 0;
3103}
3104
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003105static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003106{
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003107 int i;
3108 for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++) {
3109 if (!spec->multiout.extra_out_nid[i]) {
3110 spec->multiout.extra_out_nid[i] = nid;
3111 return 0;
3112 }
3113 }
3114 printk(KERN_WARNING "stac92xx: No space for extra DAC 0x%x\n", nid);
3115 return 1;
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003116}
3117
Takashi Iwai76624532008-12-19 10:09:47 +01003118static int is_unique_dac(struct sigmatel_spec *spec, hda_nid_t nid)
3119{
3120 int i;
3121
3122 if (spec->autocfg.line_outs != 1)
3123 return 0;
3124 if (spec->multiout.hp_nid == nid)
3125 return 0;
3126 for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++)
3127 if (spec->multiout.extra_out_nid[i] == nid)
3128 return 0;
3129 return 1;
3130}
3131
Mattc7d4b2f2005-06-27 14:59:41 +02003132/* add playback controls from the parsed DAC table */
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003133static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec,
Takashi Iwai19039bd2006-06-28 15:52:16 +02003134 const struct auto_pin_cfg *cfg)
Mattc7d4b2f2005-06-27 14:59:41 +02003135{
Takashi Iwai76624532008-12-19 10:09:47 +01003136 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai19039bd2006-06-28 15:52:16 +02003137 static const char *chname[4] = {
3138 "Front", "Surround", NULL /*CLFE*/, "Side"
3139 };
Matthew Ranostayd21995e2008-10-13 13:22:45 -04003140 hda_nid_t nid = 0;
Takashi Iwai91589232008-12-19 15:59:40 +01003141 int i, err;
3142 unsigned int wid_caps;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003143
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003144 for (i = 0; i < cfg->line_outs && spec->multiout.dac_nids[i]; i++) {
Mattc7d4b2f2005-06-27 14:59:41 +02003145 nid = spec->multiout.dac_nids[i];
Mattc7d4b2f2005-06-27 14:59:41 +02003146 if (i == 2) {
3147 /* Center/LFE */
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003148 err = create_controls(codec, "Center", nid, 1);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003149 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003150 return err;
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003151 err = create_controls(codec, "LFE", nid, 2);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003152 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003153 return err;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003154
3155 wid_caps = get_wcaps(codec, nid);
3156
3157 if (wid_caps & AC_WCAP_LR_SWAP) {
3158 err = stac92xx_add_control(spec,
3159 STAC_CTL_WIDGET_CLFE_SWITCH,
3160 "Swap Center/LFE Playback Switch", nid);
3161
3162 if (err < 0)
3163 return err;
3164 }
3165
Mattc7d4b2f2005-06-27 14:59:41 +02003166 } else {
Takashi Iwai76624532008-12-19 10:09:47 +01003167 const char *name = chname[i];
3168 /* if it's a single DAC, assign a better name */
3169 if (!i && is_unique_dac(spec, nid)) {
3170 switch (cfg->line_out_type) {
3171 case AUTO_PIN_HP_OUT:
3172 name = "Headphone";
3173 break;
3174 case AUTO_PIN_SPEAKER_OUT:
3175 name = "Speaker";
3176 break;
3177 }
3178 }
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003179 err = create_controls(codec, name, nid, 3);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003180 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003181 return err;
3182 }
3183 }
3184
Takashi Iwaia9cb5c92008-11-24 07:51:11 +01003185 if (cfg->hp_outs > 1 && cfg->line_out_type == AUTO_PIN_LINE_OUT) {
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02003186 err = stac92xx_add_control(spec,
3187 STAC_CTL_WIDGET_HP_SWITCH,
Takashi Iwaid7a89432008-11-12 09:48:04 +01003188 "Headphone as Line Out Switch",
3189 cfg->hp_pins[cfg->hp_outs - 1]);
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02003190 if (err < 0)
3191 return err;
3192 }
3193
Matthew Ranostayb5895dc2008-01-25 15:24:50 +01003194 if (spec->line_switch) {
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003195 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_IO_SWITCH,
3196 "Line In as Output Switch",
3197 spec->line_switch << 8);
3198 if (err < 0)
3199 return err;
Matthew Ranostayb5895dc2008-01-25 15:24:50 +01003200 }
Matt Porter403d1942005-11-29 15:00:51 +01003201
Matthew Ranostayb5895dc2008-01-25 15:24:50 +01003202 if (spec->mic_switch) {
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003203 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_IO_SWITCH,
3204 "Mic as Output Switch",
3205 (spec->mic_switch << 8) | 1);
3206 if (err < 0)
3207 return err;
Matthew Ranostayb5895dc2008-01-25 15:24:50 +01003208 }
Matt Porter403d1942005-11-29 15:00:51 +01003209
Mattc7d4b2f2005-06-27 14:59:41 +02003210 return 0;
3211}
3212
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003213/* add playback controls for Speaker and HP outputs */
3214static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec,
3215 struct auto_pin_cfg *cfg)
Mattc7d4b2f2005-06-27 14:59:41 +02003216{
3217 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +02003218 hda_nid_t nid;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003219 int i, err, nums;
Mattc7d4b2f2005-06-27 14:59:41 +02003220
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003221 nums = 0;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003222 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003223 static const char *pfxs[] = {
3224 "Headphone", "Headphone2", "Headphone3",
3225 };
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003226 unsigned int wid_caps = get_wcaps(codec, cfg->hp_pins[i]);
3227 if (wid_caps & AC_WCAP_UNSOL_CAP)
3228 spec->hp_detect = 1;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003229 if (nums >= ARRAY_SIZE(pfxs))
Mattc7d4b2f2005-06-27 14:59:41 +02003230 continue;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003231 nid = spec->hp_dacs[i];
3232 if (!nid)
3233 continue;
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003234 err = create_controls(codec, pfxs[nums++], nid, 3);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003235 if (err < 0)
3236 return err;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003237 }
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003238 nums = 0;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003239 for (i = 0; i < cfg->speaker_outs; i++) {
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003240 static const char *pfxs[] = {
3241 "Speaker", "External Speaker", "Speaker2",
3242 };
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003243 if (nums >= ARRAY_SIZE(pfxs))
3244 continue;
3245 nid = spec->speaker_dacs[i];
3246 if (!nid)
3247 continue;
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003248 err = create_controls(codec, pfxs[nums++], nid, 3);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003249 if (err < 0)
3250 return err;
3251 }
Mattc7d4b2f2005-06-27 14:59:41 +02003252 return 0;
3253}
3254
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003255/* labels for mono mux outputs */
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003256static const char *stac92xx_mono_labels[4] = {
3257 "DAC0", "DAC1", "Mixer", "DAC2"
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003258};
3259
3260/* create mono mux for mono out on capable codecs */
3261static int stac92xx_auto_create_mono_output_ctls(struct hda_codec *codec)
3262{
3263 struct sigmatel_spec *spec = codec->spec;
3264 struct hda_input_mux *mono_mux = &spec->private_mono_mux;
3265 int i, num_cons;
3266 hda_nid_t con_lst[ARRAY_SIZE(stac92xx_mono_labels)];
3267
3268 num_cons = snd_hda_get_connections(codec,
3269 spec->mono_nid,
3270 con_lst,
3271 HDA_MAX_NUM_INPUTS);
3272 if (!num_cons || num_cons > ARRAY_SIZE(stac92xx_mono_labels))
3273 return -EINVAL;
3274
3275 for (i = 0; i < num_cons; i++) {
3276 mono_mux->items[mono_mux->num_items].label =
3277 stac92xx_mono_labels[i];
3278 mono_mux->items[mono_mux->num_items].index = i;
3279 mono_mux->num_items++;
3280 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003281
3282 return stac92xx_add_control(spec, STAC_CTL_WIDGET_MONO_MUX,
3283 "Mono Mux", spec->mono_nid);
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003284}
3285
Matthew Ranostay89385032008-09-11 09:49:39 -04003286/* labels for amp mux outputs */
3287static const char *stac92xx_amp_labels[3] = {
Matthew Ranostay4b33c762008-10-10 09:07:23 -04003288 "Front Microphone", "Microphone", "Line In",
Matthew Ranostay89385032008-09-11 09:49:39 -04003289};
3290
3291/* create amp out controls mux on capable codecs */
3292static int stac92xx_auto_create_amp_output_ctls(struct hda_codec *codec)
3293{
3294 struct sigmatel_spec *spec = codec->spec;
3295 struct hda_input_mux *amp_mux = &spec->private_amp_mux;
3296 int i, err;
3297
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04003298 for (i = 0; i < spec->num_amps; i++) {
Matthew Ranostay89385032008-09-11 09:49:39 -04003299 amp_mux->items[amp_mux->num_items].label =
3300 stac92xx_amp_labels[i];
3301 amp_mux->items[amp_mux->num_items].index = i;
3302 amp_mux->num_items++;
3303 }
3304
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04003305 if (spec->num_amps > 1) {
3306 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_AMP_MUX,
3307 "Amp Selector Capture Switch", 0);
3308 if (err < 0)
3309 return err;
3310 }
Matthew Ranostay89385032008-09-11 09:49:39 -04003311 return stac92xx_add_control(spec, STAC_CTL_WIDGET_AMP_VOL,
3312 "Amp Capture Volume",
3313 HDA_COMPOSE_AMP_VAL(spec->amp_nids[0], 3, 0, HDA_INPUT));
3314}
3315
3316
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003317/* create PC beep volume controls */
3318static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec,
3319 hda_nid_t nid)
3320{
3321 struct sigmatel_spec *spec = codec->spec;
3322 u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3323 int err;
3324
3325 /* check for mute support for the the amp */
3326 if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) {
3327 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
3328 "PC Beep Playback Switch",
3329 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3330 if (err < 0)
3331 return err;
3332 }
3333
3334 /* check to see if there is volume support for the amp */
3335 if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3336 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL,
3337 "PC Beep Playback Volume",
3338 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3339 if (err < 0)
3340 return err;
3341 }
3342 return 0;
3343}
3344
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003345#ifdef CONFIG_SND_HDA_INPUT_BEEP
3346#define stac92xx_dig_beep_switch_info snd_ctl_boolean_mono_info
3347
3348static int stac92xx_dig_beep_switch_get(struct snd_kcontrol *kcontrol,
3349 struct snd_ctl_elem_value *ucontrol)
3350{
3351 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3352 ucontrol->value.integer.value[0] = codec->beep->enabled;
3353 return 0;
3354}
3355
3356static int stac92xx_dig_beep_switch_put(struct snd_kcontrol *kcontrol,
3357 struct snd_ctl_elem_value *ucontrol)
3358{
3359 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3360 int enabled = !!ucontrol->value.integer.value[0];
3361 if (codec->beep->enabled != enabled) {
3362 codec->beep->enabled = enabled;
3363 return 1;
3364 }
3365 return 0;
3366}
3367
3368static struct snd_kcontrol_new stac92xx_dig_beep_ctrl = {
3369 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3370 .info = stac92xx_dig_beep_switch_info,
3371 .get = stac92xx_dig_beep_switch_get,
3372 .put = stac92xx_dig_beep_switch_put,
3373};
3374
3375static int stac92xx_beep_switch_ctl(struct hda_codec *codec)
3376{
3377 return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl,
3378 0, "PC Beep Playback Switch", 0);
3379}
3380#endif
3381
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003382static int stac92xx_auto_create_mux_input_ctls(struct hda_codec *codec)
3383{
3384 struct sigmatel_spec *spec = codec->spec;
3385 int wcaps, nid, i, err = 0;
3386
3387 for (i = 0; i < spec->num_muxes; i++) {
3388 nid = spec->mux_nids[i];
3389 wcaps = get_wcaps(codec, nid);
3390
3391 if (wcaps & AC_WCAP_OUT_AMP) {
3392 err = stac92xx_add_control_idx(spec,
3393 STAC_CTL_WIDGET_VOL, i, "Mux Capture Volume",
3394 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3395 if (err < 0)
3396 return err;
3397 }
3398 }
3399 return 0;
3400};
3401
Matthew Ranostayd9737752008-09-07 12:03:41 +02003402static const char *stac92xx_spdif_labels[3] = {
Matthew Ranostay65973632008-09-16 10:39:37 -04003403 "Digital Playback", "Analog Mux 1", "Analog Mux 2",
Matthew Ranostayd9737752008-09-07 12:03:41 +02003404};
3405
3406static int stac92xx_auto_create_spdif_mux_ctls(struct hda_codec *codec)
3407{
3408 struct sigmatel_spec *spec = codec->spec;
3409 struct hda_input_mux *spdif_mux = &spec->private_smux;
Matthew Ranostay65973632008-09-16 10:39:37 -04003410 const char **labels = spec->spdif_labels;
Matthew Ranostayd9737752008-09-07 12:03:41 +02003411 int i, num_cons;
Matthew Ranostay65973632008-09-16 10:39:37 -04003412 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
Matthew Ranostayd9737752008-09-07 12:03:41 +02003413
3414 num_cons = snd_hda_get_connections(codec,
3415 spec->smux_nids[0],
3416 con_lst,
3417 HDA_MAX_NUM_INPUTS);
Matthew Ranostay65973632008-09-16 10:39:37 -04003418 if (!num_cons)
Matthew Ranostayd9737752008-09-07 12:03:41 +02003419 return -EINVAL;
3420
Matthew Ranostay65973632008-09-16 10:39:37 -04003421 if (!labels)
3422 labels = stac92xx_spdif_labels;
3423
Matthew Ranostayd9737752008-09-07 12:03:41 +02003424 for (i = 0; i < num_cons; i++) {
Matthew Ranostay65973632008-09-16 10:39:37 -04003425 spdif_mux->items[spdif_mux->num_items].label = labels[i];
Matthew Ranostayd9737752008-09-07 12:03:41 +02003426 spdif_mux->items[spdif_mux->num_items].index = i;
3427 spdif_mux->num_items++;
3428 }
3429
3430 return 0;
3431}
3432
Matt Porter8b657272006-10-26 17:12:59 +02003433/* labels for dmic mux inputs */
Adrian Bunkddc2cec2006-11-20 12:03:44 +01003434static const char *stac92xx_dmic_labels[5] = {
Matt Porter8b657272006-10-26 17:12:59 +02003435 "Analog Inputs", "Digital Mic 1", "Digital Mic 2",
3436 "Digital Mic 3", "Digital Mic 4"
3437};
3438
3439/* create playback/capture controls for input pins on dmic capable codecs */
3440static int stac92xx_auto_create_dmic_input_ctls(struct hda_codec *codec,
3441 const struct auto_pin_cfg *cfg)
3442{
3443 struct sigmatel_spec *spec = codec->spec;
3444 struct hda_input_mux *dimux = &spec->private_dimux;
3445 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003446 int err, i, j;
3447 char name[32];
Matt Porter8b657272006-10-26 17:12:59 +02003448
3449 dimux->items[dimux->num_items].label = stac92xx_dmic_labels[0];
3450 dimux->items[dimux->num_items].index = 0;
3451 dimux->num_items++;
3452
3453 for (i = 0; i < spec->num_dmics; i++) {
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003454 hda_nid_t nid;
Matt Porter8b657272006-10-26 17:12:59 +02003455 int index;
3456 int num_cons;
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003457 unsigned int wcaps;
Matt Porter8b657272006-10-26 17:12:59 +02003458 unsigned int def_conf;
3459
3460 def_conf = snd_hda_codec_read(codec,
3461 spec->dmic_nids[i],
3462 0,
3463 AC_VERB_GET_CONFIG_DEFAULT,
3464 0);
3465 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3466 continue;
3467
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003468 nid = spec->dmic_nids[i];
Matt Porter8b657272006-10-26 17:12:59 +02003469 num_cons = snd_hda_get_connections(codec,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01003470 spec->dmux_nids[0],
Matt Porter8b657272006-10-26 17:12:59 +02003471 con_lst,
3472 HDA_MAX_NUM_INPUTS);
3473 for (j = 0; j < num_cons; j++)
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003474 if (con_lst[j] == nid) {
Matt Porter8b657272006-10-26 17:12:59 +02003475 index = j;
3476 goto found;
3477 }
3478 continue;
3479found:
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003480 wcaps = get_wcaps(codec, nid) &
3481 (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP);
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003482
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003483 if (wcaps) {
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003484 sprintf(name, "%s Capture Volume",
3485 stac92xx_dmic_labels[dimux->num_items]);
3486
3487 err = stac92xx_add_control(spec,
3488 STAC_CTL_WIDGET_VOL,
3489 name,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003490 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3491 (wcaps & AC_WCAP_OUT_AMP) ?
3492 HDA_OUTPUT : HDA_INPUT));
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003493 if (err < 0)
3494 return err;
3495 }
3496
Matt Porter8b657272006-10-26 17:12:59 +02003497 dimux->items[dimux->num_items].label =
3498 stac92xx_dmic_labels[dimux->num_items];
3499 dimux->items[dimux->num_items].index = index;
3500 dimux->num_items++;
3501 }
3502
3503 return 0;
3504}
3505
Mattc7d4b2f2005-06-27 14:59:41 +02003506/* create playback/capture controls for input pins */
3507static int stac92xx_auto_create_analog_input_ctls(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
3508{
3509 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +02003510 struct hda_input_mux *imux = &spec->private_imux;
3511 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
3512 int i, j, k;
3513
3514 for (i = 0; i < AUTO_PIN_LAST; i++) {
Takashi Iwai314634b2006-09-21 11:56:18 +02003515 int index;
Mattc7d4b2f2005-06-27 14:59:41 +02003516
Takashi Iwai314634b2006-09-21 11:56:18 +02003517 if (!cfg->input_pins[i])
3518 continue;
3519 index = -1;
3520 for (j = 0; j < spec->num_muxes; j++) {
3521 int num_cons;
3522 num_cons = snd_hda_get_connections(codec,
3523 spec->mux_nids[j],
3524 con_lst,
3525 HDA_MAX_NUM_INPUTS);
3526 for (k = 0; k < num_cons; k++)
3527 if (con_lst[k] == cfg->input_pins[i]) {
3528 index = k;
3529 goto found;
3530 }
Mattc7d4b2f2005-06-27 14:59:41 +02003531 }
Takashi Iwai314634b2006-09-21 11:56:18 +02003532 continue;
3533 found:
3534 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
3535 imux->items[imux->num_items].index = index;
3536 imux->num_items++;
Mattc7d4b2f2005-06-27 14:59:41 +02003537 }
3538
Steve Longerbeam7b043892007-05-03 20:50:03 +02003539 if (imux->num_items) {
Sam Revitch62fe78e2006-05-10 15:09:17 +02003540 /*
3541 * Set the current input for the muxes.
3542 * The STAC9221 has two input muxes with identical source
3543 * NID lists. Hopefully this won't get confused.
3544 */
3545 for (i = 0; i < spec->num_muxes; i++) {
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003546 snd_hda_codec_write_cache(codec, spec->mux_nids[i], 0,
3547 AC_VERB_SET_CONNECT_SEL,
3548 imux->items[0].index);
Sam Revitch62fe78e2006-05-10 15:09:17 +02003549 }
3550 }
3551
Mattc7d4b2f2005-06-27 14:59:41 +02003552 return 0;
3553}
3554
Mattc7d4b2f2005-06-27 14:59:41 +02003555static void stac92xx_auto_init_multi_out(struct hda_codec *codec)
3556{
3557 struct sigmatel_spec *spec = codec->spec;
3558 int i;
3559
3560 for (i = 0; i < spec->autocfg.line_outs; i++) {
3561 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3562 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
3563 }
3564}
3565
3566static void stac92xx_auto_init_hp_out(struct hda_codec *codec)
3567{
3568 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003569 int i;
Mattc7d4b2f2005-06-27 14:59:41 +02003570
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003571 for (i = 0; i < spec->autocfg.hp_outs; i++) {
3572 hda_nid_t pin;
3573 pin = spec->autocfg.hp_pins[i];
3574 if (pin) /* connect to front */
3575 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3576 }
3577 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
3578 hda_nid_t pin;
3579 pin = spec->autocfg.speaker_pins[i];
3580 if (pin) /* connect to front */
3581 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN);
3582 }
Mattc7d4b2f2005-06-27 14:59:41 +02003583}
3584
Matt Porter3cc08dc2006-01-23 15:27:49 +01003585static 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 +02003586{
3587 struct sigmatel_spec *spec = codec->spec;
3588 int err;
3589
Matt Porter8b657272006-10-26 17:12:59 +02003590 if ((err = snd_hda_parse_pin_def_config(codec,
3591 &spec->autocfg,
3592 spec->dmic_nids)) < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003593 return err;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003594 if (! spec->autocfg.line_outs)
Matt Porter869264c2006-01-25 19:20:50 +01003595 return 0; /* can't find valid pin config */
Takashi Iwai19039bd2006-06-28 15:52:16 +02003596
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003597 /* If we have no real line-out pin and multiple hp-outs, HPs should
3598 * be set up as multi-channel outputs.
3599 */
3600 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT &&
3601 spec->autocfg.hp_outs > 1) {
3602 /* Copy hp_outs to line_outs, backup line_outs in
3603 * speaker_outs so that the following routines can handle
3604 * HP pins as primary outputs.
3605 */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003606 snd_printdd("stac92xx: Enabling multi-HPs workaround\n");
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003607 memcpy(spec->autocfg.speaker_pins, spec->autocfg.line_out_pins,
3608 sizeof(spec->autocfg.line_out_pins));
3609 spec->autocfg.speaker_outs = spec->autocfg.line_outs;
3610 memcpy(spec->autocfg.line_out_pins, spec->autocfg.hp_pins,
3611 sizeof(spec->autocfg.hp_pins));
3612 spec->autocfg.line_outs = spec->autocfg.hp_outs;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003613 spec->autocfg.line_out_type = AUTO_PIN_HP_OUT;
3614 spec->autocfg.hp_outs = 0;
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003615 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003616 if (spec->autocfg.mono_out_pin) {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003617 int dir = get_wcaps(codec, spec->autocfg.mono_out_pin) &
3618 (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP);
Matthew Ranostay09a99952008-01-24 11:49:21 +01003619 u32 caps = query_amp_caps(codec,
3620 spec->autocfg.mono_out_pin, dir);
3621 hda_nid_t conn_list[1];
3622
3623 /* get the mixer node and then the mono mux if it exists */
3624 if (snd_hda_get_connections(codec,
3625 spec->autocfg.mono_out_pin, conn_list, 1) &&
3626 snd_hda_get_connections(codec, conn_list[0],
3627 conn_list, 1)) {
3628
3629 int wcaps = get_wcaps(codec, conn_list[0]);
3630 int wid_type = (wcaps & AC_WCAP_TYPE)
3631 >> AC_WCAP_TYPE_SHIFT;
3632 /* LR swap check, some stac925x have a mux that
3633 * changes the DACs output path instead of the
3634 * mono-mux path.
3635 */
3636 if (wid_type == AC_WID_AUD_SEL &&
3637 !(wcaps & AC_WCAP_LR_SWAP))
3638 spec->mono_nid = conn_list[0];
3639 }
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003640 if (dir) {
3641 hda_nid_t nid = spec->autocfg.mono_out_pin;
3642
3643 /* most mono outs have a least a mute/unmute switch */
3644 dir = (dir & AC_WCAP_OUT_AMP) ? HDA_OUTPUT : HDA_INPUT;
3645 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
3646 "Mono Playback Switch",
3647 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
Matthew Ranostay09a99952008-01-24 11:49:21 +01003648 if (err < 0)
3649 return err;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003650 /* check for volume support for the amp */
3651 if ((caps & AC_AMPCAP_NUM_STEPS)
3652 >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3653 err = stac92xx_add_control(spec,
3654 STAC_CTL_WIDGET_VOL,
3655 "Mono Playback Volume",
3656 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
3657 if (err < 0)
3658 return err;
3659 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003660 }
3661
3662 stac92xx_auto_set_pinctl(codec, spec->autocfg.mono_out_pin,
3663 AC_PINCTL_OUT_EN);
3664 }
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003665
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003666 if (!spec->multiout.num_dacs) {
3667 err = stac92xx_auto_fill_dac_nids(codec);
3668 if (err < 0)
Takashi Iwai19039bd2006-06-28 15:52:16 +02003669 return err;
Takashi Iwaic9280d62009-01-15 17:31:00 +01003670 err = stac92xx_auto_create_multi_out_ctls(codec,
3671 &spec->autocfg);
3672 if (err < 0)
3673 return err;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003674 }
Mattc7d4b2f2005-06-27 14:59:41 +02003675
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003676 /* setup analog beep controls */
3677 if (spec->anabeep_nid > 0) {
3678 err = stac92xx_auto_create_beep_ctls(codec,
3679 spec->anabeep_nid);
3680 if (err < 0)
3681 return err;
3682 }
3683
3684 /* setup digital beep controls and input device */
3685#ifdef CONFIG_SND_HDA_INPUT_BEEP
3686 if (spec->digbeep_nid > 0) {
3687 hda_nid_t nid = spec->digbeep_nid;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003688 unsigned int caps;
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003689
3690 err = stac92xx_auto_create_beep_ctls(codec, nid);
3691 if (err < 0)
3692 return err;
3693 err = snd_hda_attach_beep_device(codec, nid);
3694 if (err < 0)
3695 return err;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003696 /* if no beep switch is available, make its own one */
3697 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3698 if (codec->beep &&
3699 !((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT)) {
3700 err = stac92xx_beep_switch_ctl(codec);
3701 if (err < 0)
3702 return err;
3703 }
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003704 }
3705#endif
3706
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003707 err = stac92xx_auto_create_hp_ctls(codec, &spec->autocfg);
3708
3709 if (err < 0)
3710 return err;
3711
3712 err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg);
3713
3714 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003715 return err;
3716
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003717 if (spec->mono_nid > 0) {
3718 err = stac92xx_auto_create_mono_output_ctls(codec);
3719 if (err < 0)
3720 return err;
3721 }
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04003722 if (spec->num_amps > 0) {
Matthew Ranostay89385032008-09-11 09:49:39 -04003723 err = stac92xx_auto_create_amp_output_ctls(codec);
3724 if (err < 0)
3725 return err;
3726 }
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04003727 if (spec->num_dmics > 0 && !spec->dinput_mux)
Matt Porter8b657272006-10-26 17:12:59 +02003728 if ((err = stac92xx_auto_create_dmic_input_ctls(codec,
3729 &spec->autocfg)) < 0)
3730 return err;
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003731 if (spec->num_muxes > 0) {
3732 err = stac92xx_auto_create_mux_input_ctls(codec);
3733 if (err < 0)
3734 return err;
3735 }
Matthew Ranostayd9737752008-09-07 12:03:41 +02003736 if (spec->num_smuxes > 0) {
3737 err = stac92xx_auto_create_spdif_mux_ctls(codec);
3738 if (err < 0)
3739 return err;
3740 }
Matt Porter8b657272006-10-26 17:12:59 +02003741
Takashi Iwaie3c75962009-01-23 11:57:22 +01003742 err = stac92xx_add_input_source(spec);
3743 if (err < 0)
3744 return err;
3745
Mattc7d4b2f2005-06-27 14:59:41 +02003746 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
Matt Porter403d1942005-11-29 15:00:51 +01003747 if (spec->multiout.max_channels > 2)
Mattc7d4b2f2005-06-27 14:59:41 +02003748 spec->surr_switch = 1;
Mattc7d4b2f2005-06-27 14:59:41 +02003749
Takashi Iwai82bc9552006-03-21 11:24:42 +01003750 if (spec->autocfg.dig_out_pin)
Matt Porter3cc08dc2006-01-23 15:27:49 +01003751 spec->multiout.dig_out_nid = dig_out;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003752 if (dig_in && spec->autocfg.dig_in_pin)
Matt Porter3cc08dc2006-01-23 15:27:49 +01003753 spec->dig_in_nid = dig_in;
Mattc7d4b2f2005-06-27 14:59:41 +02003754
Takashi Iwai603c4012008-07-30 15:01:44 +02003755 if (spec->kctls.list)
3756 spec->mixers[spec->num_mixers++] = spec->kctls.list;
Mattc7d4b2f2005-06-27 14:59:41 +02003757
3758 spec->input_mux = &spec->private_imux;
Matthew Ranostayf8ccbf62008-12-20 17:36:28 -05003759 if (!spec->dinput_mux)
3760 spec->dinput_mux = &spec->private_dimux;
Matthew Ranostayd9737752008-09-07 12:03:41 +02003761 spec->sinput_mux = &spec->private_smux;
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003762 spec->mono_mux = &spec->private_mono_mux;
Matthew Ranostay89385032008-09-11 09:49:39 -04003763 spec->amp_mux = &spec->private_amp_mux;
Mattc7d4b2f2005-06-27 14:59:41 +02003764 return 1;
3765}
3766
Takashi Iwai82bc9552006-03-21 11:24:42 +01003767/* add playback controls for HP output */
3768static int stac9200_auto_create_hp_ctls(struct hda_codec *codec,
3769 struct auto_pin_cfg *cfg)
3770{
3771 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003772 hda_nid_t pin = cfg->hp_pins[0];
Takashi Iwai82bc9552006-03-21 11:24:42 +01003773 unsigned int wid_caps;
3774
3775 if (! pin)
3776 return 0;
3777
3778 wid_caps = get_wcaps(codec, pin);
Takashi Iwai505cb342006-03-27 12:51:52 +02003779 if (wid_caps & AC_WCAP_UNSOL_CAP)
Takashi Iwai82bc9552006-03-21 11:24:42 +01003780 spec->hp_detect = 1;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003781
3782 return 0;
3783}
3784
Richard Fish160ea0d2006-09-06 13:58:25 +02003785/* add playback controls for LFE output */
3786static int stac9200_auto_create_lfe_ctls(struct hda_codec *codec,
3787 struct auto_pin_cfg *cfg)
3788{
3789 struct sigmatel_spec *spec = codec->spec;
3790 int err;
3791 hda_nid_t lfe_pin = 0x0;
3792 int i;
3793
3794 /*
3795 * search speaker outs and line outs for a mono speaker pin
3796 * with an amp. If one is found, add LFE controls
3797 * for it.
3798 */
3799 for (i = 0; i < spec->autocfg.speaker_outs && lfe_pin == 0x0; i++) {
3800 hda_nid_t pin = spec->autocfg.speaker_pins[i];
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003801 unsigned int wcaps = get_wcaps(codec, pin);
Richard Fish160ea0d2006-09-06 13:58:25 +02003802 wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
3803 if (wcaps == AC_WCAP_OUT_AMP)
3804 /* found a mono speaker with an amp, must be lfe */
3805 lfe_pin = pin;
3806 }
3807
3808 /* if speaker_outs is 0, then speakers may be in line_outs */
3809 if (lfe_pin == 0 && spec->autocfg.speaker_outs == 0) {
3810 for (i = 0; i < spec->autocfg.line_outs && lfe_pin == 0x0; i++) {
3811 hda_nid_t pin = spec->autocfg.line_out_pins[i];
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003812 unsigned int defcfg;
Harvey Harrison8b551782008-02-29 11:56:48 +01003813 defcfg = snd_hda_codec_read(codec, pin, 0,
Richard Fish160ea0d2006-09-06 13:58:25 +02003814 AC_VERB_GET_CONFIG_DEFAULT,
3815 0x00);
Harvey Harrison8b551782008-02-29 11:56:48 +01003816 if (get_defcfg_device(defcfg) == AC_JACK_SPEAKER) {
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003817 unsigned int wcaps = get_wcaps(codec, pin);
Richard Fish160ea0d2006-09-06 13:58:25 +02003818 wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
3819 if (wcaps == AC_WCAP_OUT_AMP)
3820 /* found a mono speaker with an amp,
3821 must be lfe */
3822 lfe_pin = pin;
3823 }
3824 }
3825 }
3826
3827 if (lfe_pin) {
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003828 err = create_controls(codec, "LFE", lfe_pin, 1);
Richard Fish160ea0d2006-09-06 13:58:25 +02003829 if (err < 0)
3830 return err;
3831 }
3832
3833 return 0;
3834}
3835
Mattc7d4b2f2005-06-27 14:59:41 +02003836static int stac9200_parse_auto_config(struct hda_codec *codec)
3837{
3838 struct sigmatel_spec *spec = codec->spec;
3839 int err;
3840
Kailang Yangdf694da2005-12-05 19:42:22 +01003841 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003842 return err;
3843
3844 if ((err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg)) < 0)
3845 return err;
3846
Takashi Iwai82bc9552006-03-21 11:24:42 +01003847 if ((err = stac9200_auto_create_hp_ctls(codec, &spec->autocfg)) < 0)
3848 return err;
3849
Richard Fish160ea0d2006-09-06 13:58:25 +02003850 if ((err = stac9200_auto_create_lfe_ctls(codec, &spec->autocfg)) < 0)
3851 return err;
3852
Takashi Iwai355a0ec2008-11-11 16:46:19 +01003853 if (spec->num_muxes > 0) {
3854 err = stac92xx_auto_create_mux_input_ctls(codec);
3855 if (err < 0)
3856 return err;
3857 }
3858
Takashi Iwaie3c75962009-01-23 11:57:22 +01003859 err = stac92xx_add_input_source(spec);
3860 if (err < 0)
3861 return err;
3862
Takashi Iwai82bc9552006-03-21 11:24:42 +01003863 if (spec->autocfg.dig_out_pin)
Mattc7d4b2f2005-06-27 14:59:41 +02003864 spec->multiout.dig_out_nid = 0x05;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003865 if (spec->autocfg.dig_in_pin)
Mattc7d4b2f2005-06-27 14:59:41 +02003866 spec->dig_in_nid = 0x04;
Mattc7d4b2f2005-06-27 14:59:41 +02003867
Takashi Iwai603c4012008-07-30 15:01:44 +02003868 if (spec->kctls.list)
3869 spec->mixers[spec->num_mixers++] = spec->kctls.list;
Mattc7d4b2f2005-06-27 14:59:41 +02003870
3871 spec->input_mux = &spec->private_imux;
Matt Porter8b657272006-10-26 17:12:59 +02003872 spec->dinput_mux = &spec->private_dimux;
Mattc7d4b2f2005-06-27 14:59:41 +02003873
3874 return 1;
3875}
3876
Sam Revitch62fe78e2006-05-10 15:09:17 +02003877/*
3878 * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
3879 * funky external mute control using GPIO pins.
3880 */
3881
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003882static void stac_gpio_set(struct hda_codec *codec, unsigned int mask,
Matthew Ranostay4fe51952008-01-29 15:28:44 +01003883 unsigned int dir_mask, unsigned int data)
Sam Revitch62fe78e2006-05-10 15:09:17 +02003884{
3885 unsigned int gpiostate, gpiomask, gpiodir;
3886
3887 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
3888 AC_VERB_GET_GPIO_DATA, 0);
Matthew Ranostay4fe51952008-01-29 15:28:44 +01003889 gpiostate = (gpiostate & ~dir_mask) | (data & dir_mask);
Sam Revitch62fe78e2006-05-10 15:09:17 +02003890
3891 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
3892 AC_VERB_GET_GPIO_MASK, 0);
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003893 gpiomask |= mask;
Sam Revitch62fe78e2006-05-10 15:09:17 +02003894
3895 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
3896 AC_VERB_GET_GPIO_DIRECTION, 0);
Matthew Ranostay4fe51952008-01-29 15:28:44 +01003897 gpiodir |= dir_mask;
Sam Revitch62fe78e2006-05-10 15:09:17 +02003898
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003899 /* Configure GPIOx as CMOS */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003900 snd_hda_codec_write(codec, codec->afg, 0, 0x7e7, 0);
3901
3902 snd_hda_codec_write(codec, codec->afg, 0,
3903 AC_VERB_SET_GPIO_MASK, gpiomask);
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003904 snd_hda_codec_read(codec, codec->afg, 0,
3905 AC_VERB_SET_GPIO_DIRECTION, gpiodir); /* sync */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003906
3907 msleep(1);
3908
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003909 snd_hda_codec_read(codec, codec->afg, 0,
3910 AC_VERB_SET_GPIO_DATA, gpiostate); /* sync */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003911}
3912
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003913static int stac92xx_add_jack(struct hda_codec *codec,
3914 hda_nid_t nid, int type)
3915{
Takashi Iwaie4973e12008-11-18 09:32:42 +01003916#ifdef CONFIG_SND_JACK
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003917 struct sigmatel_spec *spec = codec->spec;
3918 struct sigmatel_jack *jack;
3919 int def_conf = snd_hda_codec_read(codec, nid,
3920 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
3921 int connectivity = get_defcfg_connect(def_conf);
3922 char name[32];
3923
3924 if (connectivity && connectivity != AC_JACK_PORT_FIXED)
3925 return 0;
3926
3927 snd_array_init(&spec->jacks, sizeof(*jack), 32);
3928 jack = snd_array_new(&spec->jacks);
3929 if (!jack)
3930 return -ENOMEM;
3931 jack->nid = nid;
3932 jack->type = type;
3933
3934 sprintf(name, "%s at %s %s Jack",
3935 snd_hda_get_jack_type(def_conf),
3936 snd_hda_get_jack_connectivity(def_conf),
3937 snd_hda_get_jack_location(def_conf));
3938
3939 return snd_jack_new(codec->bus->card, name, type, &jack->jack);
Takashi Iwaie4973e12008-11-18 09:32:42 +01003940#else
3941 return 0;
3942#endif
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003943}
3944
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003945static int stac_add_event(struct sigmatel_spec *spec, hda_nid_t nid,
3946 unsigned char type, int data)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003947{
3948 struct sigmatel_event *event;
3949
3950 snd_array_init(&spec->events, sizeof(*event), 32);
3951 event = snd_array_new(&spec->events);
3952 if (!event)
3953 return -ENOMEM;
3954 event->nid = nid;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003955 event->type = type;
3956 event->tag = spec->events.used;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003957 event->data = data;
3958
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003959 return event->tag;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003960}
3961
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003962static struct sigmatel_event *stac_get_event(struct hda_codec *codec,
3963 hda_nid_t nid, unsigned char type)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003964{
3965 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003966 struct sigmatel_event *event = spec->events.list;
3967 int i;
3968
3969 for (i = 0; i < spec->events.used; i++, event++) {
3970 if (event->nid == nid && event->type == type)
3971 return event;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003972 }
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003973 return NULL;
3974}
3975
3976static struct sigmatel_event *stac_get_event_from_tag(struct hda_codec *codec,
3977 unsigned char tag)
3978{
3979 struct sigmatel_spec *spec = codec->spec;
3980 struct sigmatel_event *event = spec->events.list;
3981 int i;
3982
3983 for (i = 0; i < spec->events.used; i++, event++) {
3984 if (event->tag == tag)
3985 return event;
3986 }
3987 return NULL;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003988}
3989
Takashi Iwai314634b2006-09-21 11:56:18 +02003990static void enable_pin_detect(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003991 unsigned int type)
Takashi Iwai314634b2006-09-21 11:56:18 +02003992{
Takashi Iwaic6e4c662008-11-25 11:58:19 +01003993 struct sigmatel_event *event;
3994 int tag;
3995
3996 if (!(get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP))
3997 return;
3998 event = stac_get_event(codec, nid, type);
3999 if (event)
4000 tag = event->tag;
4001 else
4002 tag = stac_add_event(codec->spec, nid, type, 0);
4003 if (tag < 0)
4004 return;
4005 snd_hda_codec_write_cache(codec, nid, 0,
4006 AC_VERB_SET_UNSOLICITED_ENABLE,
4007 AC_USRSP_EN | tag);
Takashi Iwai314634b2006-09-21 11:56:18 +02004008}
4009
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004010static int is_nid_hp_pin(struct auto_pin_cfg *cfg, hda_nid_t nid)
4011{
4012 int i;
4013 for (i = 0; i < cfg->hp_outs; i++)
4014 if (cfg->hp_pins[i] == nid)
4015 return 1; /* nid is a HP-Out */
4016
4017 return 0; /* nid is not a HP-Out */
4018};
4019
Matthew Ranostayb76c8502008-02-06 14:49:44 +01004020static void stac92xx_power_down(struct hda_codec *codec)
4021{
4022 struct sigmatel_spec *spec = codec->spec;
4023
4024 /* power down inactive DACs */
4025 hda_nid_t *dac;
4026 for (dac = spec->dac_list; *dac; dac++)
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004027 if (!check_all_dac_nids(spec, *dac))
Takashi Iwai8c2f7672008-12-01 11:54:35 +01004028 snd_hda_codec_write(codec, *dac, 0,
Matthew Ranostayb76c8502008-02-06 14:49:44 +01004029 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
4030}
4031
Takashi Iwaif73d3582008-11-25 08:21:51 +01004032static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
4033 int enable);
4034
Mattc7d4b2f2005-06-27 14:59:41 +02004035static int stac92xx_init(struct hda_codec *codec)
4036{
4037 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai82bc9552006-03-21 11:24:42 +01004038 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaif73d3582008-11-25 08:21:51 +01004039 unsigned int gpio;
Takashi Iwaie4973e12008-11-18 09:32:42 +01004040 int i;
Mattc7d4b2f2005-06-27 14:59:41 +02004041
Mattc7d4b2f2005-06-27 14:59:41 +02004042 snd_hda_sequence_write(codec, spec->init);
4043
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004044 /* power down adcs initially */
4045 if (spec->powerdown_adcs)
4046 for (i = 0; i < spec->num_adcs; i++)
Takashi Iwai8c2f7672008-12-01 11:54:35 +01004047 snd_hda_codec_write(codec,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004048 spec->adc_nids[i], 0,
4049 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004050
4051 /* set up GPIO */
4052 gpio = spec->gpio_data;
4053 /* turn on EAPD statically when spec->eapd_switch isn't set.
4054 * otherwise, unsol event will turn it on/off dynamically
4055 */
4056 if (!spec->eapd_switch)
4057 gpio |= spec->eapd_mask;
4058 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, gpio);
4059
Takashi Iwai82bc9552006-03-21 11:24:42 +01004060 /* set up pins */
4061 if (spec->hp_detect) {
Takashi Iwai505cb342006-03-27 12:51:52 +02004062 /* Enable unsolicited responses on the HP widget */
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004063 for (i = 0; i < cfg->hp_outs; i++) {
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004064 hda_nid_t nid = cfg->hp_pins[i];
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004065 enable_pin_detect(codec, nid, STAC_HP_EVENT);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004066 }
Takashi Iwai0a07acaf2007-03-13 10:40:23 +01004067 /* force to enable the first line-out; the others are set up
4068 * in unsol_event
4069 */
4070 stac92xx_auto_set_pinctl(codec, spec->autocfg.line_out_pins[0],
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004071 AC_PINCTL_OUT_EN);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004072 /* fake event to set up pins */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004073 stac_issue_unsol_event(codec, spec->autocfg.hp_pins[0],
4074 STAC_HP_EVENT);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004075 } else {
4076 stac92xx_auto_init_multi_out(codec);
4077 stac92xx_auto_init_hp_out(codec);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004078 for (i = 0; i < cfg->hp_outs; i++)
4079 stac_toggle_power_map(codec, cfg->hp_pins[i], 1);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004080 }
4081 for (i = 0; i < AUTO_PIN_LAST; i++) {
Takashi Iwaic960a032006-03-23 17:06:28 +01004082 hda_nid_t nid = cfg->input_pins[i];
4083 if (nid) {
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004084 unsigned int pinctl, conf;
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004085 if (i == AUTO_PIN_MIC || i == AUTO_PIN_FRONT_MIC) {
4086 /* for mic pins, force to initialize */
4087 pinctl = stac92xx_get_vref(codec, nid);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004088 pinctl |= AC_PINCTL_IN_EN;
4089 stac92xx_auto_set_pinctl(codec, nid, pinctl);
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004090 } else {
4091 pinctl = snd_hda_codec_read(codec, nid, 0,
4092 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4093 /* if PINCTL already set then skip */
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004094 if (!(pinctl & AC_PINCTL_IN_EN)) {
4095 pinctl |= AC_PINCTL_IN_EN;
4096 stac92xx_auto_set_pinctl(codec, nid,
4097 pinctl);
4098 }
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004099 }
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004100 conf = snd_hda_codec_read(codec, nid, 0,
4101 AC_VERB_GET_CONFIG_DEFAULT, 0);
4102 if (get_defcfg_connect(conf) != AC_JACK_PORT_FIXED) {
4103 enable_pin_detect(codec, nid,
4104 STAC_INSERT_EVENT);
4105 stac_issue_unsol_event(codec, nid,
4106 STAC_INSERT_EVENT);
4107 }
Takashi Iwaic960a032006-03-23 17:06:28 +01004108 }
Takashi Iwai82bc9552006-03-21 11:24:42 +01004109 }
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004110 for (i = 0; i < spec->num_dmics; i++)
4111 stac92xx_auto_set_pinctl(codec, spec->dmic_nids[i],
4112 AC_PINCTL_IN_EN);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004113 if (cfg->dig_out_pin)
4114 stac92xx_auto_set_pinctl(codec, cfg->dig_out_pin,
4115 AC_PINCTL_OUT_EN);
4116 if (cfg->dig_in_pin)
4117 stac92xx_auto_set_pinctl(codec, cfg->dig_in_pin,
4118 AC_PINCTL_IN_EN);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004119 for (i = 0; i < spec->num_pwrs; i++) {
4120 hda_nid_t nid = spec->pwr_nids[i];
4121 int pinctl, def_conf;
Takashi Iwai82bc9552006-03-21 11:24:42 +01004122
Takashi Iwaieb632122008-12-19 16:39:48 +01004123 /* power on when no jack detection is available */
4124 if (!spec->hp_detect) {
4125 stac_toggle_power_map(codec, nid, 1);
4126 continue;
4127 }
4128
4129 if (is_nid_hp_pin(cfg, nid))
Takashi Iwaif73d3582008-11-25 08:21:51 +01004130 continue; /* already has an unsol event */
Sam Revitch62fe78e2006-05-10 15:09:17 +02004131
Takashi Iwaif73d3582008-11-25 08:21:51 +01004132 pinctl = snd_hda_codec_read(codec, nid, 0,
4133 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4134 /* outputs are only ports capable of power management
4135 * any attempts on powering down a input port cause the
4136 * referenced VREF to act quirky.
4137 */
Takashi Iwaieb632122008-12-19 16:39:48 +01004138 if (pinctl & AC_PINCTL_IN_EN) {
4139 stac_toggle_power_map(codec, nid, 1);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004140 continue;
Takashi Iwaieb632122008-12-19 16:39:48 +01004141 }
Takashi Iwaif73d3582008-11-25 08:21:51 +01004142 def_conf = snd_hda_codec_read(codec, nid, 0,
4143 AC_VERB_GET_CONFIG_DEFAULT, 0);
4144 def_conf = get_defcfg_connect(def_conf);
4145 /* skip any ports that don't have jacks since presence
4146 * detection is useless */
4147 if (def_conf != AC_JACK_PORT_COMPLEX) {
4148 if (def_conf != AC_JACK_PORT_NONE)
4149 stac_toggle_power_map(codec, nid, 1);
4150 continue;
4151 }
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004152 if (!stac_get_event(codec, nid, STAC_INSERT_EVENT)) {
4153 enable_pin_detect(codec, nid, STAC_PWR_EVENT);
4154 stac_issue_unsol_event(codec, nid, STAC_PWR_EVENT);
4155 }
Takashi Iwaif73d3582008-11-25 08:21:51 +01004156 }
4157 if (spec->dac_list)
4158 stac92xx_power_down(codec);
Mattc7d4b2f2005-06-27 14:59:41 +02004159 return 0;
4160}
4161
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004162static void stac92xx_free_jacks(struct hda_codec *codec)
4163{
Takashi Iwaie4973e12008-11-18 09:32:42 +01004164#ifdef CONFIG_SND_JACK
Takashi Iwaib94d35392008-11-21 09:08:06 +01004165 /* free jack instances manually when clearing/reconfiguring */
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004166 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaib94d35392008-11-21 09:08:06 +01004167 if (!codec->bus->shutdown && spec->jacks.list) {
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004168 struct sigmatel_jack *jacks = spec->jacks.list;
4169 int i;
4170 for (i = 0; i < spec->jacks.used; i++)
4171 snd_device_free(codec->bus->card, &jacks[i].jack);
4172 }
4173 snd_array_free(&spec->jacks);
Takashi Iwaie4973e12008-11-18 09:32:42 +01004174#endif
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004175}
4176
Takashi Iwai603c4012008-07-30 15:01:44 +02004177static void stac92xx_free_kctls(struct hda_codec *codec)
4178{
4179 struct sigmatel_spec *spec = codec->spec;
4180
4181 if (spec->kctls.list) {
4182 struct snd_kcontrol_new *kctl = spec->kctls.list;
4183 int i;
4184 for (i = 0; i < spec->kctls.used; i++)
4185 kfree(kctl[i].name);
4186 }
4187 snd_array_free(&spec->kctls);
4188}
4189
Matt2f2f4252005-04-13 14:45:30 +02004190static void stac92xx_free(struct hda_codec *codec)
4191{
Mattc7d4b2f2005-06-27 14:59:41 +02004192 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +02004193
4194 if (! spec)
4195 return;
4196
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01004197 kfree(spec->pin_configs);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004198 stac92xx_free_jacks(codec);
4199 snd_array_free(&spec->events);
Richard Fish11b44bb2006-08-23 18:31:34 +02004200
Mattc7d4b2f2005-06-27 14:59:41 +02004201 kfree(spec);
Matthew Ranostay1cd22242008-07-18 18:20:52 +02004202 snd_hda_detach_beep_device(codec);
Matt2f2f4252005-04-13 14:45:30 +02004203}
4204
Matt4e550962005-07-04 17:51:39 +02004205static void stac92xx_set_pinctl(struct hda_codec *codec, hda_nid_t nid,
4206 unsigned int flag)
4207{
Takashi Iwai8ce84192009-01-22 16:59:20 +01004208 unsigned int old_ctl, pin_ctl;
4209
4210 pin_ctl = snd_hda_codec_read(codec, nid,
Matt4e550962005-07-04 17:51:39 +02004211 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
Steve Longerbeam7b043892007-05-03 20:50:03 +02004212
Takashi Iwaif9acba42007-05-29 18:01:06 +02004213 if (pin_ctl & AC_PINCTL_IN_EN) {
4214 /*
4215 * we need to check the current set-up direction of
4216 * shared input pins since they can be switched via
4217 * "xxx as Output" mixer switch
4218 */
4219 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004220 if (nid == spec->line_switch || nid == spec->mic_switch)
Takashi Iwaif9acba42007-05-29 18:01:06 +02004221 return;
4222 }
4223
Takashi Iwai8ce84192009-01-22 16:59:20 +01004224 old_ctl = pin_ctl;
Steve Longerbeam7b043892007-05-03 20:50:03 +02004225 /* if setting pin direction bits, clear the current
4226 direction bits first */
4227 if (flag & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN))
4228 pin_ctl &= ~(AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
4229
Takashi Iwai8ce84192009-01-22 16:59:20 +01004230 pin_ctl |= flag;
4231 if (old_ctl != pin_ctl)
4232 snd_hda_codec_write_cache(codec, nid, 0,
4233 AC_VERB_SET_PIN_WIDGET_CONTROL,
4234 pin_ctl);
Matt4e550962005-07-04 17:51:39 +02004235}
4236
4237static void stac92xx_reset_pinctl(struct hda_codec *codec, hda_nid_t nid,
4238 unsigned int flag)
4239{
4240 unsigned int pin_ctl = snd_hda_codec_read(codec, nid,
4241 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
Takashi Iwai8ce84192009-01-22 16:59:20 +01004242 if (pin_ctl & flag)
4243 snd_hda_codec_write_cache(codec, nid, 0,
4244 AC_VERB_SET_PIN_WIDGET_CONTROL,
4245 pin_ctl & ~flag);
Matt4e550962005-07-04 17:51:39 +02004246}
4247
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004248static int get_pin_presence(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwai314634b2006-09-21 11:56:18 +02004249{
4250 if (!nid)
4251 return 0;
4252 if (snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PIN_SENSE, 0x00)
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004253 & (1 << 31))
4254 return 1;
Takashi Iwai314634b2006-09-21 11:56:18 +02004255 return 0;
4256}
4257
Takashi Iwaid7a89432008-11-12 09:48:04 +01004258/* return non-zero if the hp-pin of the given array index isn't
4259 * a jack-detection target
4260 */
4261static int no_hp_sensing(struct sigmatel_spec *spec, int i)
4262{
4263 struct auto_pin_cfg *cfg = &spec->autocfg;
4264
4265 /* ignore sensing of shared line and mic jacks */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004266 if (cfg->hp_pins[i] == spec->line_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004267 return 1;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004268 if (cfg->hp_pins[i] == spec->mic_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004269 return 1;
4270 /* ignore if the pin is set as line-out */
4271 if (cfg->hp_pins[i] == spec->hp_switch)
4272 return 1;
4273 return 0;
4274}
4275
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004276static void stac92xx_hp_detect(struct hda_codec *codec)
Matt4e550962005-07-04 17:51:39 +02004277{
4278 struct sigmatel_spec *spec = codec->spec;
4279 struct auto_pin_cfg *cfg = &spec->autocfg;
4280 int i, presence;
4281
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004282 presence = 0;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01004283 if (spec->gpio_mute)
4284 presence = !(snd_hda_codec_read(codec, codec->afg, 0,
4285 AC_VERB_GET_GPIO_DATA, 0) & spec->gpio_mute);
4286
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004287 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwai314634b2006-09-21 11:56:18 +02004288 if (presence)
4289 break;
Takashi Iwaid7a89432008-11-12 09:48:04 +01004290 if (no_hp_sensing(spec, i))
4291 continue;
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004292 presence = get_pin_presence(codec, cfg->hp_pins[i]);
4293 if (presence) {
4294 unsigned int pinctl;
4295 pinctl = snd_hda_codec_read(codec, cfg->hp_pins[i], 0,
4296 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4297 if (pinctl & AC_PINCTL_IN_EN)
4298 presence = 0; /* mic- or line-input */
4299 }
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004300 }
Matt4e550962005-07-04 17:51:39 +02004301
4302 if (presence) {
Takashi Iwaid7a89432008-11-12 09:48:04 +01004303 /* disable lineouts */
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02004304 if (spec->hp_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004305 stac92xx_reset_pinctl(codec, spec->hp_switch,
4306 AC_PINCTL_OUT_EN);
Matt4e550962005-07-04 17:51:39 +02004307 for (i = 0; i < cfg->line_outs; i++)
4308 stac92xx_reset_pinctl(codec, cfg->line_out_pins[i],
4309 AC_PINCTL_OUT_EN);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004310 for (i = 0; i < cfg->speaker_outs; i++)
4311 stac92xx_reset_pinctl(codec, cfg->speaker_pins[i],
4312 AC_PINCTL_OUT_EN);
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05004313 if (spec->eapd_mask && spec->eapd_switch)
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02004314 stac_gpio_set(codec, spec->gpio_mask,
4315 spec->gpio_dir, spec->gpio_data &
4316 ~spec->eapd_mask);
Matt4e550962005-07-04 17:51:39 +02004317 } else {
Takashi Iwaid7a89432008-11-12 09:48:04 +01004318 /* enable lineouts */
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02004319 if (spec->hp_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004320 stac92xx_set_pinctl(codec, spec->hp_switch,
4321 AC_PINCTL_OUT_EN);
Matt4e550962005-07-04 17:51:39 +02004322 for (i = 0; i < cfg->line_outs; i++)
4323 stac92xx_set_pinctl(codec, cfg->line_out_pins[i],
4324 AC_PINCTL_OUT_EN);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004325 for (i = 0; i < cfg->speaker_outs; i++)
4326 stac92xx_set_pinctl(codec, cfg->speaker_pins[i],
4327 AC_PINCTL_OUT_EN);
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05004328 if (spec->eapd_mask && spec->eapd_switch)
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02004329 stac_gpio_set(codec, spec->gpio_mask,
4330 spec->gpio_dir, spec->gpio_data |
4331 spec->eapd_mask);
Matt4e550962005-07-04 17:51:39 +02004332 }
Takashi Iwaid7a89432008-11-12 09:48:04 +01004333 /* toggle hp outs */
4334 for (i = 0; i < cfg->hp_outs; i++) {
4335 unsigned int val = AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN;
4336 if (no_hp_sensing(spec, i))
4337 continue;
4338 if (presence)
4339 stac92xx_set_pinctl(codec, cfg->hp_pins[i], val);
Takashi Iwai8317e0b2009-01-14 07:56:51 +01004340#if 0 /* FIXME */
4341/* Resetting the pinctl like below may lead to (a sort of) regressions
4342 * on some devices since they use the HP pin actually for line/speaker
4343 * outs although the default pin config shows a different pin (that is
4344 * wrong and useless).
4345 *
4346 * So, it's basically a problem of default pin configs, likely a BIOS issue.
4347 * But, disabling the code below just works around it, and I'm too tired of
4348 * bug reports with such devices...
4349 */
Takashi Iwaid7a89432008-11-12 09:48:04 +01004350 else
4351 stac92xx_reset_pinctl(codec, cfg->hp_pins[i], val);
Takashi Iwai8317e0b2009-01-14 07:56:51 +01004352#endif /* FIXME */
Takashi Iwaid7a89432008-11-12 09:48:04 +01004353 }
Matt4e550962005-07-04 17:51:39 +02004354}
4355
Takashi Iwaif73d3582008-11-25 08:21:51 +01004356static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
4357 int enable)
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004358{
4359 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaif73d3582008-11-25 08:21:51 +01004360 unsigned int idx, val;
4361
4362 for (idx = 0; idx < spec->num_pwrs; idx++) {
4363 if (spec->pwr_nids[idx] == nid)
4364 break;
4365 }
4366 if (idx >= spec->num_pwrs)
4367 return;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004368
4369 /* several codecs have two power down bits */
4370 if (spec->pwr_mapping)
4371 idx = spec->pwr_mapping[idx];
4372 else
4373 idx = 1 << idx;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004374
Takashi Iwaif73d3582008-11-25 08:21:51 +01004375 val = snd_hda_codec_read(codec, codec->afg, 0, 0x0fec, 0x0) & 0xff;
4376 if (enable)
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004377 val &= ~idx;
4378 else
4379 val |= idx;
4380
4381 /* power down unused output ports */
4382 snd_hda_codec_write(codec, codec->afg, 0, 0x7ec, val);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004383}
4384
Takashi Iwaif73d3582008-11-25 08:21:51 +01004385static void stac92xx_pin_sense(struct hda_codec *codec, hda_nid_t nid)
4386{
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004387 stac_toggle_power_map(codec, nid, get_pin_presence(codec, nid));
Takashi Iwaif73d3582008-11-25 08:21:51 +01004388}
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004389
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004390static void stac92xx_report_jack(struct hda_codec *codec, hda_nid_t nid)
4391{
4392 struct sigmatel_spec *spec = codec->spec;
4393 struct sigmatel_jack *jacks = spec->jacks.list;
4394
4395 if (jacks) {
4396 int i;
4397 for (i = 0; i < spec->jacks.used; i++) {
4398 if (jacks->nid == nid) {
4399 unsigned int pin_ctl =
4400 snd_hda_codec_read(codec, nid,
4401 0, AC_VERB_GET_PIN_WIDGET_CONTROL,
4402 0x00);
4403 int type = jacks->type;
4404 if (type == (SND_JACK_LINEOUT
4405 | SND_JACK_HEADPHONE))
4406 type = (pin_ctl & AC_PINCTL_HP_EN)
4407 ? SND_JACK_HEADPHONE : SND_JACK_LINEOUT;
4408 snd_jack_report(jacks->jack,
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004409 get_pin_presence(codec, nid)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004410 ? type : 0);
4411 }
4412 jacks++;
4413 }
4414 }
4415}
Matt2f2f4252005-04-13 14:45:30 +02004416
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004417static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid,
4418 unsigned char type)
4419{
4420 struct sigmatel_event *event = stac_get_event(codec, nid, type);
4421 if (!event)
4422 return;
4423 codec->patch_ops.unsol_event(codec, (unsigned)event->tag << 26);
4424}
4425
Takashi Iwai314634b2006-09-21 11:56:18 +02004426static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res)
4427{
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004428 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004429 struct sigmatel_event *event;
4430 int tag, data;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004431
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004432 tag = (res >> 26) & 0x7f;
4433 event = stac_get_event_from_tag(codec, tag);
4434 if (!event)
4435 return;
4436
4437 switch (event->type) {
Takashi Iwai314634b2006-09-21 11:56:18 +02004438 case STAC_HP_EVENT:
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004439 stac92xx_hp_detect(codec);
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004440 /* fallthru */
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004441 case STAC_INSERT_EVENT:
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004442 case STAC_PWR_EVENT:
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004443 if (spec->num_pwrs > 0)
4444 stac92xx_pin_sense(codec, event->nid);
4445 stac92xx_report_jack(codec, event->nid);
Matthew Ranostay72474be2008-10-09 09:32:17 -04004446 break;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004447 case STAC_VREF_EVENT:
4448 data = snd_hda_codec_read(codec, codec->afg, 0,
4449 AC_VERB_GET_GPIO_DATA, 0);
Matthew Ranostay72474be2008-10-09 09:32:17 -04004450 /* toggle VREF state based on GPIOx status */
4451 snd_hda_codec_write(codec, codec->afg, 0, 0x7e0,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004452 !!(data & (1 << event->data)));
Matthew Ranostay72474be2008-10-09 09:32:17 -04004453 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02004454 }
4455}
4456
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004457#ifdef CONFIG_PROC_FS
4458static void stac92hd_proc_hook(struct snd_info_buffer *buffer,
4459 struct hda_codec *codec, hda_nid_t nid)
4460{
4461 if (nid == codec->afg)
4462 snd_iprintf(buffer, "Power-Map: 0x%02x\n",
4463 snd_hda_codec_read(codec, nid, 0, 0x0fec, 0x0));
4464}
4465
4466static void analog_loop_proc_hook(struct snd_info_buffer *buffer,
4467 struct hda_codec *codec,
4468 unsigned int verb)
4469{
4470 snd_iprintf(buffer, "Analog Loopback: 0x%02x\n",
4471 snd_hda_codec_read(codec, codec->afg, 0, verb, 0));
4472}
4473
4474/* stac92hd71bxx, stac92hd73xx */
4475static void stac92hd7x_proc_hook(struct snd_info_buffer *buffer,
4476 struct hda_codec *codec, hda_nid_t nid)
4477{
4478 stac92hd_proc_hook(buffer, codec, nid);
4479 if (nid == codec->afg)
4480 analog_loop_proc_hook(buffer, codec, 0xfa0);
4481}
4482
4483static void stac9205_proc_hook(struct snd_info_buffer *buffer,
4484 struct hda_codec *codec, hda_nid_t nid)
4485{
4486 if (nid == codec->afg)
4487 analog_loop_proc_hook(buffer, codec, 0xfe0);
4488}
4489
4490static void stac927x_proc_hook(struct snd_info_buffer *buffer,
4491 struct hda_codec *codec, hda_nid_t nid)
4492{
4493 if (nid == codec->afg)
4494 analog_loop_proc_hook(buffer, codec, 0xfeb);
4495}
4496#else
4497#define stac92hd_proc_hook NULL
4498#define stac92hd7x_proc_hook NULL
4499#define stac9205_proc_hook NULL
4500#define stac927x_proc_hook NULL
4501#endif
4502
Takashi Iwaicb53c622007-08-10 17:21:45 +02004503#ifdef SND_HDA_NEEDS_RESUME
Mattff6fdc32005-06-27 15:06:52 +02004504static int stac92xx_resume(struct hda_codec *codec)
4505{
Takashi Iwaidc81bed2007-09-03 09:36:36 +02004506 struct sigmatel_spec *spec = codec->spec;
4507
Richard Fish11b44bb2006-08-23 18:31:34 +02004508 stac92xx_set_config_regs(codec);
Takashi Iwai2c885872008-11-18 09:36:55 +01004509 stac92xx_init(codec);
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004510 snd_hda_codec_resume_amp(codec);
4511 snd_hda_codec_resume_cache(codec);
Takashi Iwai2c885872008-11-18 09:36:55 +01004512 /* fake event to set up pins again to override cached values */
Takashi Iwaidc81bed2007-09-03 09:36:36 +02004513 if (spec->hp_detect)
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004514 stac_issue_unsol_event(codec, spec->autocfg.hp_pins[0],
4515 STAC_HP_EVENT);
Mattff6fdc32005-06-27 15:06:52 +02004516 return 0;
4517}
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004518
4519static int stac92xx_suspend(struct hda_codec *codec, pm_message_t state)
4520{
4521 struct sigmatel_spec *spec = codec->spec;
4522 if (spec->eapd_mask)
4523 stac_gpio_set(codec, spec->gpio_mask,
4524 spec->gpio_dir, spec->gpio_data &
4525 ~spec->eapd_mask);
4526 return 0;
4527}
Mattff6fdc32005-06-27 15:06:52 +02004528#endif
4529
Matt2f2f4252005-04-13 14:45:30 +02004530static struct hda_codec_ops stac92xx_patch_ops = {
4531 .build_controls = stac92xx_build_controls,
4532 .build_pcms = stac92xx_build_pcms,
4533 .init = stac92xx_init,
4534 .free = stac92xx_free,
Matt4e550962005-07-04 17:51:39 +02004535 .unsol_event = stac92xx_unsol_event,
Takashi Iwaicb53c622007-08-10 17:21:45 +02004536#ifdef SND_HDA_NEEDS_RESUME
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004537 .suspend = stac92xx_suspend,
Mattff6fdc32005-06-27 15:06:52 +02004538 .resume = stac92xx_resume,
4539#endif
Matt2f2f4252005-04-13 14:45:30 +02004540};
4541
4542static int patch_stac9200(struct hda_codec *codec)
4543{
4544 struct sigmatel_spec *spec;
Mattc7d4b2f2005-06-27 14:59:41 +02004545 int err;
Matt2f2f4252005-04-13 14:45:30 +02004546
Takashi Iwaie560d8d2005-09-09 14:21:46 +02004547 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Matt2f2f4252005-04-13 14:45:30 +02004548 if (spec == NULL)
4549 return -ENOMEM;
4550
4551 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02004552 spec->num_pins = ARRAY_SIZE(stac9200_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02004553 spec->pin_nids = stac9200_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004554 spec->board_config = snd_hda_check_board_config(codec, STAC_9200_MODELS,
4555 stac9200_models,
4556 stac9200_cfg_tbl);
Richard Fish11b44bb2006-08-23 18:31:34 +02004557 if (spec->board_config < 0) {
4558 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9200, using BIOS defaults\n");
4559 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01004560 } else
4561 err = stac_save_pin_cfgs(codec,
4562 stac9200_brd_tbl[spec->board_config]);
4563 if (err < 0) {
4564 stac92xx_free(codec);
4565 return err;
Matt Porter403d1942005-11-29 15:00:51 +01004566 }
Matt2f2f4252005-04-13 14:45:30 +02004567
4568 spec->multiout.max_channels = 2;
4569 spec->multiout.num_dacs = 1;
4570 spec->multiout.dac_nids = stac9200_dac_nids;
4571 spec->adc_nids = stac9200_adc_nids;
4572 spec->mux_nids = stac9200_mux_nids;
Mattdabbed62005-06-14 10:19:34 +02004573 spec->num_muxes = 1;
Matt Porter8b657272006-10-26 17:12:59 +02004574 spec->num_dmics = 0;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02004575 spec->num_adcs = 1;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004576 spec->num_pwrs = 0;
Mattc7d4b2f2005-06-27 14:59:41 +02004577
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02004578 if (spec->board_config == STAC_9200_M4 ||
4579 spec->board_config == STAC_9200_M4_2 ||
Tobin Davisbf277782008-02-03 20:31:47 +01004580 spec->board_config == STAC_9200_OQO)
Takashi Iwai1194b5b2007-10-10 10:04:26 +02004581 spec->init = stac9200_eapd_init;
4582 else
4583 spec->init = stac9200_core_init;
Matt2f2f4252005-04-13 14:45:30 +02004584 spec->mixer = stac9200_mixer;
Mattc7d4b2f2005-06-27 14:59:41 +02004585
Takashi Iwai117f2572008-03-18 09:53:23 +01004586 if (spec->board_config == STAC_9200_PANASONIC) {
4587 spec->gpio_mask = spec->gpio_dir = 0x09;
4588 spec->gpio_data = 0x00;
4589 }
4590
Mattc7d4b2f2005-06-27 14:59:41 +02004591 err = stac9200_parse_auto_config(codec);
4592 if (err < 0) {
4593 stac92xx_free(codec);
4594 return err;
4595 }
Matt2f2f4252005-04-13 14:45:30 +02004596
Takashi Iwai2acc9dc2009-01-09 16:57:14 +01004597 /* CF-74 has no headphone detection, and the driver should *NOT*
4598 * do detection and HP/speaker toggle because the hardware does it.
4599 */
4600 if (spec->board_config == STAC_9200_PANASONIC)
4601 spec->hp_detect = 0;
4602
Matt2f2f4252005-04-13 14:45:30 +02004603 codec->patch_ops = stac92xx_patch_ops;
4604
4605 return 0;
4606}
4607
Tobin Davis8e21c342007-01-08 11:04:17 +01004608static int patch_stac925x(struct hda_codec *codec)
4609{
4610 struct sigmatel_spec *spec;
4611 int err;
4612
4613 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4614 if (spec == NULL)
4615 return -ENOMEM;
4616
4617 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02004618 spec->num_pins = ARRAY_SIZE(stac925x_pin_nids);
Tobin Davis8e21c342007-01-08 11:04:17 +01004619 spec->pin_nids = stac925x_pin_nids;
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02004620
4621 /* Check first for codec ID */
4622 spec->board_config = snd_hda_check_board_codec_sid_config(codec,
4623 STAC_925x_MODELS,
4624 stac925x_models,
4625 stac925x_codec_id_cfg_tbl);
4626
4627 /* Now checks for PCI ID, if codec ID is not found */
4628 if (spec->board_config < 0)
4629 spec->board_config = snd_hda_check_board_config(codec,
4630 STAC_925x_MODELS,
Tobin Davis8e21c342007-01-08 11:04:17 +01004631 stac925x_models,
4632 stac925x_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01004633 again:
Tobin Davis8e21c342007-01-08 11:04:17 +01004634 if (spec->board_config < 0) {
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02004635 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC925x,"
Tobin Davis2c11f952007-05-17 09:36:34 +02004636 "using BIOS defaults\n");
Tobin Davis8e21c342007-01-08 11:04:17 +01004637 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01004638 } else
4639 err = stac_save_pin_cfgs(codec,
4640 stac925x_brd_tbl[spec->board_config]);
4641 if (err < 0) {
4642 stac92xx_free(codec);
4643 return err;
Tobin Davis8e21c342007-01-08 11:04:17 +01004644 }
4645
4646 spec->multiout.max_channels = 2;
4647 spec->multiout.num_dacs = 1;
4648 spec->multiout.dac_nids = stac925x_dac_nids;
4649 spec->adc_nids = stac925x_adc_nids;
4650 spec->mux_nids = stac925x_mux_nids;
4651 spec->num_muxes = 1;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02004652 spec->num_adcs = 1;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004653 spec->num_pwrs = 0;
Tobin Davis2c11f952007-05-17 09:36:34 +02004654 switch (codec->vendor_id) {
4655 case 0x83847632: /* STAC9202 */
4656 case 0x83847633: /* STAC9202D */
4657 case 0x83847636: /* STAC9251 */
4658 case 0x83847637: /* STAC9251D */
Takashi Iwaif6e98522007-10-16 14:27:04 +02004659 spec->num_dmics = STAC925X_NUM_DMICS;
Tobin Davis2c11f952007-05-17 09:36:34 +02004660 spec->dmic_nids = stac925x_dmic_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +01004661 spec->num_dmuxes = ARRAY_SIZE(stac925x_dmux_nids);
4662 spec->dmux_nids = stac925x_dmux_nids;
Tobin Davis2c11f952007-05-17 09:36:34 +02004663 break;
4664 default:
4665 spec->num_dmics = 0;
4666 break;
4667 }
Tobin Davis8e21c342007-01-08 11:04:17 +01004668
4669 spec->init = stac925x_core_init;
4670 spec->mixer = stac925x_mixer;
4671
4672 err = stac92xx_parse_auto_config(codec, 0x8, 0x7);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01004673 if (!err) {
4674 if (spec->board_config < 0) {
4675 printk(KERN_WARNING "hda_codec: No auto-config is "
4676 "available, default to model=ref\n");
4677 spec->board_config = STAC_925x_REF;
4678 goto again;
4679 }
4680 err = -EINVAL;
4681 }
Tobin Davis8e21c342007-01-08 11:04:17 +01004682 if (err < 0) {
4683 stac92xx_free(codec);
4684 return err;
4685 }
4686
4687 codec->patch_ops = stac92xx_patch_ops;
4688
4689 return 0;
4690}
4691
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004692static struct hda_input_mux stac92hd73xx_dmux = {
4693 .num_items = 4,
4694 .items = {
4695 { "Analog Inputs", 0x0b },
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004696 { "Digital Mic 1", 0x09 },
4697 { "Digital Mic 2", 0x0a },
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004698 { "CD", 0x08 },
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004699 }
4700};
4701
4702static int patch_stac92hd73xx(struct hda_codec *codec)
4703{
4704 struct sigmatel_spec *spec;
4705 hda_nid_t conn[STAC92HD73_DAC_COUNT + 2];
4706 int err = 0;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004707 int num_dacs;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004708
4709 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4710 if (spec == NULL)
4711 return -ENOMEM;
4712
4713 codec->spec = spec;
Matthew Ranostaye99d32b2008-09-09 10:46:38 +02004714 codec->slave_dig_outs = stac92hd73xx_slave_dig_outs;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004715 spec->num_pins = ARRAY_SIZE(stac92hd73xx_pin_nids);
4716 spec->pin_nids = stac92hd73xx_pin_nids;
4717 spec->board_config = snd_hda_check_board_config(codec,
4718 STAC_92HD73XX_MODELS,
4719 stac92hd73xx_models,
4720 stac92hd73xx_cfg_tbl);
4721again:
4722 if (spec->board_config < 0) {
4723 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
4724 " STAC92HD73XX, using BIOS defaults\n");
4725 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01004726 } else
4727 err = stac_save_pin_cfgs(codec,
4728 stac92hd73xx_brd_tbl[spec->board_config]);
4729 if (err < 0) {
4730 stac92xx_free(codec);
4731 return err;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004732 }
4733
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004734 num_dacs = snd_hda_get_connections(codec, 0x0a,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004735 conn, STAC92HD73_DAC_COUNT + 2) - 1;
4736
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004737 if (num_dacs < 3 || num_dacs > 5) {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004738 printk(KERN_WARNING "hda_codec: Could not determine "
4739 "number of channels defaulting to DAC count\n");
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004740 num_dacs = STAC92HD73_DAC_COUNT;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004741 }
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004742 switch (num_dacs) {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004743 case 0x3: /* 6 Channel */
4744 spec->mixer = stac92hd73xx_6ch_mixer;
4745 spec->init = stac92hd73xx_6ch_core_init;
4746 break;
4747 case 0x4: /* 8 Channel */
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004748 spec->mixer = stac92hd73xx_8ch_mixer;
4749 spec->init = stac92hd73xx_8ch_core_init;
4750 break;
4751 case 0x5: /* 10 Channel */
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004752 spec->mixer = stac92hd73xx_10ch_mixer;
4753 spec->init = stac92hd73xx_10ch_core_init;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004754 }
4755 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004756
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004757 spec->aloopback_mask = 0x01;
4758 spec->aloopback_shift = 8;
4759
Matthew Ranostay1cd22242008-07-18 18:20:52 +02004760 spec->digbeep_nid = 0x1c;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004761 spec->mux_nids = stac92hd73xx_mux_nids;
4762 spec->adc_nids = stac92hd73xx_adc_nids;
4763 spec->dmic_nids = stac92hd73xx_dmic_nids;
4764 spec->dmux_nids = stac92hd73xx_dmux_nids;
Matthew Ranostayd9737752008-09-07 12:03:41 +02004765 spec->smux_nids = stac92hd73xx_smux_nids;
Matthew Ranostay89385032008-09-11 09:49:39 -04004766 spec->amp_nids = stac92hd73xx_amp_nids;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004767 spec->num_amps = ARRAY_SIZE(stac92hd73xx_amp_nids);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004768
4769 spec->num_muxes = ARRAY_SIZE(stac92hd73xx_mux_nids);
4770 spec->num_adcs = ARRAY_SIZE(stac92hd73xx_adc_nids);
Takashi Iwai1697055e2007-12-18 18:05:52 +01004771 spec->num_dmuxes = ARRAY_SIZE(stac92hd73xx_dmux_nids);
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004772 memcpy(&spec->private_dimux, &stac92hd73xx_dmux,
4773 sizeof(stac92hd73xx_dmux));
4774
Matthew Ranostaya7662642008-02-21 07:51:14 +01004775 switch (spec->board_config) {
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05004776 case STAC_DELL_EQ:
Matthew Ranostayd654a662008-03-14 08:46:51 +01004777 spec->init = dell_eq_core_init;
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05004778 /* fallthru */
Takashi Iwai661cd8f2008-11-25 15:18:29 +01004779 case STAC_DELL_M6_AMIC:
4780 case STAC_DELL_M6_DMIC:
4781 case STAC_DELL_M6_BOTH:
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004782 spec->num_smuxes = 0;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004783 spec->mixer = &stac92hd73xx_6ch_mixer[DELL_M6_MIXER];
4784 spec->amp_nids = &stac92hd73xx_amp_nids[DELL_M6_AMP];
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05004785 spec->eapd_switch = 0;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004786 spec->num_amps = 1;
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05004787
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004788 if (spec->board_config != STAC_DELL_EQ)
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05004789 spec->init = dell_m6_core_init;
Takashi Iwai661cd8f2008-11-25 15:18:29 +01004790 switch (spec->board_config) {
4791 case STAC_DELL_M6_AMIC: /* Analog Mics */
Matthew Ranostaya7662642008-02-21 07:51:14 +01004792 stac92xx_set_config_reg(codec, 0x0b, 0x90A70170);
4793 spec->num_dmics = 0;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004794 spec->private_dimux.num_items = 1;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004795 break;
Takashi Iwai661cd8f2008-11-25 15:18:29 +01004796 case STAC_DELL_M6_DMIC: /* Digital Mics */
Matthew Ranostaya7662642008-02-21 07:51:14 +01004797 stac92xx_set_config_reg(codec, 0x13, 0x90A60160);
4798 spec->num_dmics = 1;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004799 spec->private_dimux.num_items = 2;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004800 break;
Takashi Iwai661cd8f2008-11-25 15:18:29 +01004801 case STAC_DELL_M6_BOTH: /* Both */
Matthew Ranostaya7662642008-02-21 07:51:14 +01004802 stac92xx_set_config_reg(codec, 0x0b, 0x90A70170);
4803 stac92xx_set_config_reg(codec, 0x13, 0x90A60160);
4804 spec->num_dmics = 1;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004805 spec->private_dimux.num_items = 2;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004806 break;
4807 }
4808 break;
4809 default:
4810 spec->num_dmics = STAC92HD73XX_NUM_DMICS;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004811 spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids);
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05004812 spec->eapd_switch = 1;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004813 }
Matthew Ranostayb2c4f4d2008-09-26 10:06:40 -04004814 if (spec->board_config > STAC_92HD73XX_REF) {
4815 /* GPIO0 High = Enable EAPD */
4816 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
4817 spec->gpio_data = 0x01;
4818 }
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04004819 spec->dinput_mux = &spec->private_dimux;
Matthew Ranostaya7662642008-02-21 07:51:14 +01004820
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004821 spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids);
4822 spec->pwr_nids = stac92hd73xx_pwr_nids;
4823
Matthew Ranostayd9737752008-09-07 12:03:41 +02004824 err = stac92xx_parse_auto_config(codec, 0x25, 0x27);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004825
4826 if (!err) {
4827 if (spec->board_config < 0) {
4828 printk(KERN_WARNING "hda_codec: No auto-config is "
4829 "available, default to model=ref\n");
4830 spec->board_config = STAC_92HD73XX_REF;
4831 goto again;
4832 }
4833 err = -EINVAL;
4834 }
4835
4836 if (err < 0) {
4837 stac92xx_free(codec);
4838 return err;
4839 }
4840
Takashi Iwai9e43f0d2008-12-17 14:51:01 +01004841 if (spec->board_config == STAC_92HD73XX_NO_JD)
4842 spec->hp_detect = 0;
4843
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004844 codec->patch_ops = stac92xx_patch_ops;
4845
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004846 codec->proc_widget_hook = stac92hd7x_proc_hook;
4847
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004848 return 0;
4849}
4850
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004851static struct hda_input_mux stac92hd83xxx_dmux = {
4852 .num_items = 3,
4853 .items = {
4854 { "Analog Inputs", 0x03 },
4855 { "Digital Mic 1", 0x04 },
4856 { "Digital Mic 2", 0x05 },
4857 }
4858};
4859
4860static int patch_stac92hd83xxx(struct hda_codec *codec)
4861{
4862 struct sigmatel_spec *spec;
Matthew Ranostay65557f32009-01-20 16:50:25 -05004863 hda_nid_t conn[STAC92HD83_DAC_COUNT + 1];
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004864 int err;
Matthew Ranostay65557f32009-01-20 16:50:25 -05004865 int num_dacs;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004866
4867 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4868 if (spec == NULL)
4869 return -ENOMEM;
4870
4871 codec->spec = spec;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04004872 codec->slave_dig_outs = stac92hd83xxx_slave_dig_outs;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004873 spec->mono_nid = 0x19;
4874 spec->digbeep_nid = 0x21;
4875 spec->dmic_nids = stac92hd83xxx_dmic_nids;
4876 spec->dmux_nids = stac92hd83xxx_dmux_nids;
4877 spec->adc_nids = stac92hd83xxx_adc_nids;
4878 spec->pwr_nids = stac92hd83xxx_pwr_nids;
Matthew Ranostayc15c5062009-01-13 13:30:07 -05004879 spec->amp_nids = stac92hd83xxx_amp_nids;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004880 spec->pwr_mapping = stac92hd83xxx_pwr_mapping;
4881 spec->num_pwrs = ARRAY_SIZE(stac92hd83xxx_pwr_nids);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004882 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004883
Matthew Ranostay65557f32009-01-20 16:50:25 -05004884
4885 /* set port 0xe to select the last DAC
4886 */
4887 num_dacs = snd_hda_get_connections(codec, 0x0e,
4888 conn, STAC92HD83_DAC_COUNT + 1) - 1;
4889
4890 snd_hda_codec_write_cache(codec, 0xe, 0,
4891 AC_VERB_SET_CONNECT_SEL, num_dacs);
4892
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004893 spec->init = stac92hd83xxx_core_init;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004894 spec->mixer = stac92hd83xxx_mixer;
4895 spec->num_pins = ARRAY_SIZE(stac92hd83xxx_pin_nids);
4896 spec->num_dmuxes = ARRAY_SIZE(stac92hd83xxx_dmux_nids);
4897 spec->num_adcs = ARRAY_SIZE(stac92hd83xxx_adc_nids);
Matthew Ranostayc15c5062009-01-13 13:30:07 -05004898 spec->num_amps = ARRAY_SIZE(stac92hd83xxx_amp_nids);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004899 spec->num_dmics = STAC92HD83XXX_NUM_DMICS;
4900 spec->dinput_mux = &stac92hd83xxx_dmux;
4901 spec->pin_nids = stac92hd83xxx_pin_nids;
4902 spec->board_config = snd_hda_check_board_config(codec,
4903 STAC_92HD83XXX_MODELS,
4904 stac92hd83xxx_models,
4905 stac92hd83xxx_cfg_tbl);
4906again:
4907 if (spec->board_config < 0) {
4908 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
4909 " STAC92HD83XXX, using BIOS defaults\n");
4910 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01004911 } else
4912 err = stac_save_pin_cfgs(codec,
4913 stac92hd83xxx_brd_tbl[spec->board_config]);
4914 if (err < 0) {
4915 stac92xx_free(codec);
4916 return err;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004917 }
4918
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05004919 switch (codec->vendor_id) {
4920 case 0x111d7604:
4921 case 0x111d7605:
4922 if (spec->board_config == STAC_92HD83XXX_PWR_REF)
4923 break;
4924 spec->num_pwrs = 0;
4925 break;
4926 }
4927
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004928 err = stac92xx_parse_auto_config(codec, 0x1d, 0);
4929 if (!err) {
4930 if (spec->board_config < 0) {
4931 printk(KERN_WARNING "hda_codec: No auto-config is "
4932 "available, default to model=ref\n");
4933 spec->board_config = STAC_92HD83XXX_REF;
4934 goto again;
4935 }
4936 err = -EINVAL;
4937 }
4938
4939 if (err < 0) {
4940 stac92xx_free(codec);
4941 return err;
4942 }
4943
4944 codec->patch_ops = stac92xx_patch_ops;
4945
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004946 codec->proc_widget_hook = stac92hd_proc_hook;
4947
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004948 return 0;
4949}
4950
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05004951static struct hda_input_mux stac92hd71bxx_dmux_nomixer = {
4952 .num_items = 3,
4953 .items = {
4954 { "Analog Inputs", 0x00 },
4955 { "Digital Mic 1", 0x02 },
4956 { "Digital Mic 2", 0x03 },
4957 }
4958};
4959
4960static struct hda_input_mux stac92hd71bxx_dmux_amixer = {
Matthew Ranostay4b33c762008-10-10 09:07:23 -04004961 .num_items = 4,
4962 .items = {
4963 { "Analog Inputs", 0x00 },
4964 { "Mixer", 0x01 },
4965 { "Digital Mic 1", 0x02 },
4966 { "Digital Mic 2", 0x03 },
4967 }
4968};
4969
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05004970static int stac92hd71bxx_connected_ports(struct hda_codec *codec,
4971 hda_nid_t *nids, int num_nids)
4972{
4973 struct sigmatel_spec *spec = codec->spec;
4974 int idx, num;
4975 unsigned int def_conf;
4976
4977 for (num = 0; num < num_nids; num++) {
4978 for (idx = 0; idx < spec->num_pins; idx++)
4979 if (spec->pin_nids[idx] == nids[num])
4980 break;
4981 if (idx >= spec->num_pins)
4982 break;
4983 def_conf = get_defcfg_connect(spec->pin_configs[idx]);
4984 if (def_conf == AC_JACK_PORT_NONE)
4985 break;
4986 }
4987 return num;
4988}
4989
4990static int stac92hd71bxx_connected_smuxes(struct hda_codec *codec,
4991 hda_nid_t dig0pin)
4992{
4993 struct sigmatel_spec *spec = codec->spec;
4994 int idx;
4995
4996 for (idx = 0; idx < spec->num_pins; idx++)
4997 if (spec->pin_nids[idx] == dig0pin)
4998 break;
4999 if ((idx + 2) >= spec->num_pins)
5000 return 0;
5001
5002 /* dig1pin case */
5003 if (get_defcfg_connect(spec->pin_configs[idx+1]) != AC_JACK_PORT_NONE)
5004 return 2;
5005
5006 /* dig0pin + dig2pin case */
5007 if (get_defcfg_connect(spec->pin_configs[idx+2]) != AC_JACK_PORT_NONE)
5008 return 2;
5009 if (get_defcfg_connect(spec->pin_configs[idx]) != AC_JACK_PORT_NONE)
5010 return 1;
5011 else
5012 return 0;
5013}
5014
Matthew Ranostaye035b842007-11-06 11:53:55 +01005015static int patch_stac92hd71bxx(struct hda_codec *codec)
5016{
5017 struct sigmatel_spec *spec;
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05005018 struct hda_verb *unmute_init = stac92hd71bxx_unmute_core_init;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005019 int err = 0;
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005020 unsigned int ndmic_nids = 0;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005021
5022 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5023 if (spec == NULL)
5024 return -ENOMEM;
5025
5026 codec->spec = spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005027 codec->patch_ops = stac92xx_patch_ops;
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05005028 spec->num_pins = STAC92HD71BXX_NUM_PINS;
5029 switch (codec->vendor_id) {
5030 case 0x111d76b6:
5031 case 0x111d76b7:
5032 spec->pin_nids = stac92hd71bxx_pin_nids_4port;
5033 break;
5034 case 0x111d7603:
5035 case 0x111d7608:
5036 /* On 92HD75Bx 0x27 isn't a pin nid */
5037 spec->num_pins--;
5038 /* fallthrough */
5039 default:
5040 spec->pin_nids = stac92hd71bxx_pin_nids_6port;
5041 }
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005042 spec->num_pwrs = ARRAY_SIZE(stac92hd71bxx_pwr_nids);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005043 spec->board_config = snd_hda_check_board_config(codec,
5044 STAC_92HD71BXX_MODELS,
5045 stac92hd71bxx_models,
5046 stac92hd71bxx_cfg_tbl);
5047again:
5048 if (spec->board_config < 0) {
5049 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
5050 " STAC92HD71BXX, using BIOS defaults\n");
5051 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005052 } else
5053 err = stac_save_pin_cfgs(codec,
5054 stac92hd71bxx_brd_tbl[spec->board_config]);
5055 if (err < 0) {
5056 stac92xx_free(codec);
5057 return err;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005058 }
5059
Takashi Iwai41c3b642008-11-18 10:45:15 +01005060 if (spec->board_config > STAC_92HD71BXX_REF) {
5061 /* GPIO0 = EAPD */
5062 spec->gpio_mask = 0x01;
5063 spec->gpio_dir = 0x01;
5064 spec->gpio_data = 0x01;
5065 }
5066
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005067 spec->dmic_nids = stac92hd71bxx_dmic_nids;
5068 spec->dmux_nids = stac92hd71bxx_dmux_nids;
5069
Matthew Ranostay541eee82007-12-14 12:08:04 +01005070 switch (codec->vendor_id) {
5071 case 0x111d76b6: /* 4 Port without Analog Mixer */
5072 case 0x111d76b7:
5073 case 0x111d76b4: /* 6 Port without Analog Mixer */
5074 case 0x111d76b5:
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005075 memcpy(&spec->private_dimux, &stac92hd71bxx_dmux_nomixer,
5076 sizeof(stac92hd71bxx_dmux_nomixer));
Matthew Ranostay541eee82007-12-14 12:08:04 +01005077 spec->mixer = stac92hd71bxx_mixer;
5078 spec->init = stac92hd71bxx_core_init;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04005079 codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005080 spec->num_dmics = stac92hd71bxx_connected_ports(codec,
5081 stac92hd71bxx_dmic_nids,
5082 STAC92HD71BXX_NUM_DMICS);
5083 if (spec->num_dmics) {
5084 spec->num_dmuxes = ARRAY_SIZE(stac92hd71bxx_dmux_nids);
5085 spec->dinput_mux = &spec->private_dimux;
5086 ndmic_nids = ARRAY_SIZE(stac92hd71bxx_dmic_nids) - 1;
5087 }
Matthew Ranostay541eee82007-12-14 12:08:04 +01005088 break;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005089 case 0x111d7608: /* 5 Port with Analog Mixer */
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005090 memcpy(&spec->private_dimux, &stac92hd71bxx_dmux_amixer,
5091 sizeof(stac92hd71bxx_dmux_amixer));
5092 spec->private_dimux.num_items--;
Takashi Iwai8e5f2622008-11-15 19:28:54 +01005093 switch (spec->board_config) {
5094 case STAC_HP_M4:
Matthew Ranostay72474be2008-10-09 09:32:17 -04005095 /* Enable VREF power saving on GPIO1 detect */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005096 err = stac_add_event(spec, codec->afg,
5097 STAC_VREF_EVENT, 0x02);
5098 if (err < 0)
5099 return err;
Takashi Iwaic5d08bb2008-11-18 10:55:36 +01005100 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay72474be2008-10-09 09:32:17 -04005101 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x02);
5102 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04005103 AC_VERB_SET_UNSOLICITED_ENABLE,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005104 AC_USRSP_EN | err);
Matthew Ranostay72474be2008-10-09 09:32:17 -04005105 spec->gpio_mask |= 0x02;
5106 break;
5107 }
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005108 if ((codec->revision_id & 0xf) == 0 ||
Takashi Iwai8c2f7672008-12-01 11:54:35 +01005109 (codec->revision_id & 0xf) == 1)
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005110 spec->stream_delay = 40; /* 40 milliseconds */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005111
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005112 /* no output amps */
5113 spec->num_pwrs = 0;
5114 spec->mixer = stac92hd71bxx_analog_mixer;
Matthew Ranostay4b33c762008-10-10 09:07:23 -04005115 spec->dinput_mux = &spec->private_dimux;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005116
5117 /* disable VSW */
5118 spec->init = &stac92hd71bxx_analog_core_init[HD_DISABLE_PORTF];
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05005119 unmute_init++;
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05005120 stac_change_pin_config(codec, 0x0f, 0x40f000f0);
5121 stac_change_pin_config(codec, 0x19, 0x40f000f3);
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005122 stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS - 1] = 0;
5123 spec->num_dmics = stac92hd71bxx_connected_ports(codec,
5124 stac92hd71bxx_dmic_nids,
5125 STAC92HD71BXX_NUM_DMICS - 1);
5126 spec->num_dmuxes = ARRAY_SIZE(stac92hd71bxx_dmux_nids);
5127 ndmic_nids = ARRAY_SIZE(stac92hd71bxx_dmic_nids) - 2;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005128 break;
5129 case 0x111d7603: /* 6 Port with Analog Mixer */
Takashi Iwai8c2f7672008-12-01 11:54:35 +01005130 if ((codec->revision_id & 0xf) == 1)
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005131 spec->stream_delay = 40; /* 40 milliseconds */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005132
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005133 /* no output amps */
5134 spec->num_pwrs = 0;
5135 /* fallthru */
Matthew Ranostay541eee82007-12-14 12:08:04 +01005136 default:
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005137 memcpy(&spec->private_dimux, &stac92hd71bxx_dmux_amixer,
5138 sizeof(stac92hd71bxx_dmux_amixer));
Matthew Ranostay4b33c762008-10-10 09:07:23 -04005139 spec->dinput_mux = &spec->private_dimux;
Matthew Ranostay541eee82007-12-14 12:08:04 +01005140 spec->mixer = stac92hd71bxx_analog_mixer;
5141 spec->init = stac92hd71bxx_analog_core_init;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04005142 codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005143 spec->num_dmics = stac92hd71bxx_connected_ports(codec,
5144 stac92hd71bxx_dmic_nids,
5145 STAC92HD71BXX_NUM_DMICS);
5146 spec->num_dmuxes = ARRAY_SIZE(stac92hd71bxx_dmux_nids);
5147 ndmic_nids = ARRAY_SIZE(stac92hd71bxx_dmic_nids) - 1;
Matthew Ranostay541eee82007-12-14 12:08:04 +01005148 }
5149
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05005150 if (get_wcaps(codec, 0xa) & AC_WCAP_IN_AMP)
5151 snd_hda_sequence_write_cache(codec, unmute_init);
5152
Matthew Ranostay4b33c762008-10-10 09:07:23 -04005153 spec->aloopback_mask = 0x50;
Matthew Ranostay541eee82007-12-14 12:08:04 +01005154 spec->aloopback_shift = 0;
5155
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005156 spec->powerdown_adcs = 1;
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005157 spec->digbeep_nid = 0x26;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005158 spec->mux_nids = stac92hd71bxx_mux_nids;
5159 spec->adc_nids = stac92hd71bxx_adc_nids;
Matthew Ranostayd9737752008-09-07 12:03:41 +02005160 spec->smux_nids = stac92hd71bxx_smux_nids;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005161 spec->pwr_nids = stac92hd71bxx_pwr_nids;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005162
5163 spec->num_muxes = ARRAY_SIZE(stac92hd71bxx_mux_nids);
5164 spec->num_adcs = ARRAY_SIZE(stac92hd71bxx_adc_nids);
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005165 spec->num_smuxes = stac92hd71bxx_connected_smuxes(codec, 0x1e);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005166
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005167 switch (spec->board_config) {
5168 case STAC_HP_M4:
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005169 /* enable internal microphone */
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005170 stac_change_pin_config(codec, 0x0e, 0x01813040);
Matthew Ranostayb9aea712008-10-09 08:37:28 -04005171 stac92xx_auto_set_pinctl(codec, 0x0e,
5172 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80);
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05005173 /* fallthru */
5174 case STAC_DELL_M4_2:
5175 spec->num_dmics = 0;
5176 spec->num_smuxes = 0;
5177 spec->num_dmuxes = 0;
5178 break;
5179 case STAC_DELL_M4_1:
5180 case STAC_DELL_M4_3:
5181 spec->num_dmics = 1;
5182 spec->num_smuxes = 0;
5183 spec->num_dmuxes = 0;
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005184 break;
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005185 };
5186
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005187 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostay4b33c762008-10-10 09:07:23 -04005188 if (spec->dinput_mux)
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005189 spec->private_dimux.num_items += spec->num_dmics - ndmic_nids;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005190
Herton Ronaldo Krzesinski29d4ab42009-02-04 11:37:27 -05005191 err = stac92xx_parse_auto_config(codec, 0x21, 0);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005192 if (!err) {
5193 if (spec->board_config < 0) {
5194 printk(KERN_WARNING "hda_codec: No auto-config is "
5195 "available, default to model=ref\n");
5196 spec->board_config = STAC_92HD71BXX_REF;
5197 goto again;
5198 }
5199 err = -EINVAL;
5200 }
5201
5202 if (err < 0) {
5203 stac92xx_free(codec);
5204 return err;
5205 }
5206
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005207 codec->proc_widget_hook = stac92hd7x_proc_hook;
5208
Matthew Ranostaye035b842007-11-06 11:53:55 +01005209 return 0;
5210};
5211
Matt2f2f4252005-04-13 14:45:30 +02005212static int patch_stac922x(struct hda_codec *codec)
5213{
5214 struct sigmatel_spec *spec;
Mattc7d4b2f2005-06-27 14:59:41 +02005215 int err;
Matt2f2f4252005-04-13 14:45:30 +02005216
Takashi Iwaie560d8d2005-09-09 14:21:46 +02005217 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Matt2f2f4252005-04-13 14:45:30 +02005218 if (spec == NULL)
5219 return -ENOMEM;
5220
5221 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005222 spec->num_pins = ARRAY_SIZE(stac922x_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005223 spec->pin_nids = stac922x_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005224 spec->board_config = snd_hda_check_board_config(codec, STAC_922X_MODELS,
5225 stac922x_models,
5226 stac922x_cfg_tbl);
Nicolas Boichat536319a2008-07-21 22:18:01 +08005227 if (spec->board_config == STAC_INTEL_MAC_AUTO) {
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005228 spec->gpio_mask = spec->gpio_dir = 0x03;
5229 spec->gpio_data = 0x03;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005230 /* Intel Macs have all same PCI SSID, so we need to check
5231 * codec SSID to distinguish the exact models
5232 */
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01005233 printk(KERN_INFO "hda_codec: STAC922x, Apple subsys_id=%x\n", codec->subsystem_id);
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005234 switch (codec->subsystem_id) {
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005235
5236 case 0x106b0800:
5237 spec->board_config = STAC_INTEL_MAC_V1;
Abhijit Bhopatkarc45e20e2007-04-17 11:57:16 +02005238 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005239 case 0x106b0600:
5240 case 0x106b0700:
5241 spec->board_config = STAC_INTEL_MAC_V2;
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01005242 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005243 case 0x106b0e00:
5244 case 0x106b0f00:
5245 case 0x106b1600:
5246 case 0x106b1700:
5247 case 0x106b0200:
5248 case 0x106b1e00:
5249 spec->board_config = STAC_INTEL_MAC_V3;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005250 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005251 case 0x106b1a00:
5252 case 0x00000100:
5253 spec->board_config = STAC_INTEL_MAC_V4;
Sylvain FORETf16928f2007-04-27 14:22:36 +02005254 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005255 case 0x106b0a00:
5256 case 0x106b2200:
5257 spec->board_config = STAC_INTEL_MAC_V5;
Takashi Iwai0dae0f82007-05-21 12:41:29 +02005258 break;
Nicolas Boichat536319a2008-07-21 22:18:01 +08005259 default:
5260 spec->board_config = STAC_INTEL_MAC_V3;
5261 break;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005262 }
5263 }
5264
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005265 again:
Richard Fish11b44bb2006-08-23 18:31:34 +02005266 if (spec->board_config < 0) {
5267 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC922x, "
5268 "using BIOS defaults\n");
5269 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005270 } else
5271 err = stac_save_pin_cfgs(codec,
5272 stac922x_brd_tbl[spec->board_config]);
5273 if (err < 0) {
5274 stac92xx_free(codec);
5275 return err;
Matt Porter403d1942005-11-29 15:00:51 +01005276 }
Matt2f2f4252005-04-13 14:45:30 +02005277
Matt2f2f4252005-04-13 14:45:30 +02005278 spec->adc_nids = stac922x_adc_nids;
5279 spec->mux_nids = stac922x_mux_nids;
Takashi Iwai25494132007-03-12 12:36:16 +01005280 spec->num_muxes = ARRAY_SIZE(stac922x_mux_nids);
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005281 spec->num_adcs = ARRAY_SIZE(stac922x_adc_nids);
Matt Porter8b657272006-10-26 17:12:59 +02005282 spec->num_dmics = 0;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005283 spec->num_pwrs = 0;
Mattc7d4b2f2005-06-27 14:59:41 +02005284
5285 spec->init = stac922x_core_init;
Matt2f2f4252005-04-13 14:45:30 +02005286 spec->mixer = stac922x_mixer;
Mattc7d4b2f2005-06-27 14:59:41 +02005287
5288 spec->multiout.dac_nids = spec->dac_nids;
Takashi Iwai19039bd2006-06-28 15:52:16 +02005289
Matt Porter3cc08dc2006-01-23 15:27:49 +01005290 err = stac92xx_parse_auto_config(codec, 0x08, 0x09);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005291 if (!err) {
5292 if (spec->board_config < 0) {
5293 printk(KERN_WARNING "hda_codec: No auto-config is "
5294 "available, default to model=ref\n");
5295 spec->board_config = STAC_D945_REF;
5296 goto again;
5297 }
5298 err = -EINVAL;
5299 }
Matt Porter3cc08dc2006-01-23 15:27:49 +01005300 if (err < 0) {
5301 stac92xx_free(codec);
5302 return err;
5303 }
5304
5305 codec->patch_ops = stac92xx_patch_ops;
5306
Takashi Iwai807a46362007-05-29 19:01:37 +02005307 /* Fix Mux capture level; max to 2 */
5308 snd_hda_override_amp_caps(codec, 0x12, HDA_OUTPUT,
5309 (0 << AC_AMPCAP_OFFSET_SHIFT) |
5310 (2 << AC_AMPCAP_NUM_STEPS_SHIFT) |
5311 (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5312 (0 << AC_AMPCAP_MUTE_SHIFT));
5313
Matt Porter3cc08dc2006-01-23 15:27:49 +01005314 return 0;
5315}
5316
5317static int patch_stac927x(struct hda_codec *codec)
5318{
5319 struct sigmatel_spec *spec;
5320 int err;
5321
5322 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5323 if (spec == NULL)
5324 return -ENOMEM;
5325
5326 codec->spec = spec;
Matthew Ranostay45c1d852009-02-04 17:49:41 -05005327 codec->slave_dig_outs = stac927x_slave_dig_outs;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005328 spec->num_pins = ARRAY_SIZE(stac927x_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005329 spec->pin_nids = stac927x_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005330 spec->board_config = snd_hda_check_board_config(codec, STAC_927X_MODELS,
5331 stac927x_models,
5332 stac927x_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005333 again:
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005334 if (spec->board_config < 0 || !stac927x_brd_tbl[spec->board_config]) {
5335 if (spec->board_config < 0)
5336 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
5337 "STAC927x, using BIOS defaults\n");
Richard Fish11b44bb2006-08-23 18:31:34 +02005338 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005339 } else
5340 err = stac_save_pin_cfgs(codec,
5341 stac927x_brd_tbl[spec->board_config]);
5342 if (err < 0) {
5343 stac92xx_free(codec);
5344 return err;
Matt Porter3cc08dc2006-01-23 15:27:49 +01005345 }
5346
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005347 spec->digbeep_nid = 0x23;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005348 spec->adc_nids = stac927x_adc_nids;
5349 spec->num_adcs = ARRAY_SIZE(stac927x_adc_nids);
5350 spec->mux_nids = stac927x_mux_nids;
5351 spec->num_muxes = ARRAY_SIZE(stac927x_mux_nids);
Matthew Ranostayd9737752008-09-07 12:03:41 +02005352 spec->smux_nids = stac927x_smux_nids;
5353 spec->num_smuxes = ARRAY_SIZE(stac927x_smux_nids);
Matthew Ranostay65973632008-09-16 10:39:37 -04005354 spec->spdif_labels = stac927x_spdif_labels;
Matthew Ranostayb76c8502008-02-06 14:49:44 +01005355 spec->dac_list = stac927x_dac_nids;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005356 spec->multiout.dac_nids = spec->dac_nids;
5357
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005358 switch (spec->board_config) {
Tobin Davis93ed1502006-09-01 21:03:12 +02005359 case STAC_D965_3ST:
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005360 case STAC_D965_5ST:
5361 /* GPIO0 High = Enable EAPD */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005362 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x01;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005363 spec->gpio_data = 0x01;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005364 spec->num_dmics = 0;
5365
Tobin Davis93ed1502006-09-01 21:03:12 +02005366 spec->init = d965_core_init;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005367 spec->mixer = stac927x_mixer;
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005368 break;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005369 case STAC_DELL_BIOS:
Matthew Ranostay780c8be2008-04-14 13:32:27 +02005370 switch (codec->subsystem_id) {
5371 case 0x10280209:
5372 case 0x1028022e:
5373 /* correct the device field to SPDIF out */
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005374 stac_change_pin_config(codec, 0x21, 0x01442070);
Matthew Ranostay780c8be2008-04-14 13:32:27 +02005375 break;
5376 };
Matthew Ranostay03d7ca12008-02-21 07:51:46 +01005377 /* configure the analog microphone on some laptops */
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005378 stac_change_pin_config(codec, 0x0c, 0x90a79130);
Matthew Ranostay2f32d902008-01-10 13:06:26 +01005379 /* correct the front output jack as a hp out */
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005380 stac_change_pin_config(codec, 0x0f, 0x0227011f);
Matthew Ranostayc481fca2008-01-07 12:18:28 +01005381 /* correct the front input jack as a mic */
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005382 stac_change_pin_config(codec, 0x0e, 0x02a79130);
Matthew Ranostayc481fca2008-01-07 12:18:28 +01005383 /* fallthru */
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005384 case STAC_DELL_3ST:
5385 /* GPIO2 High = Enable EAPD */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005386 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x04;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005387 spec->gpio_data = 0x04;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005388 spec->dmic_nids = stac927x_dmic_nids;
5389 spec->num_dmics = STAC927X_NUM_DMICS;
5390
Tobin Davis93ed1502006-09-01 21:03:12 +02005391 spec->init = d965_core_init;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005392 spec->mixer = stac927x_mixer;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005393 spec->dmux_nids = stac927x_dmux_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +01005394 spec->num_dmuxes = ARRAY_SIZE(stac927x_dmux_nids);
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005395 break;
5396 default:
Matthew Ranostayb2c4f4d2008-09-26 10:06:40 -04005397 if (spec->board_config > STAC_D965_REF) {
5398 /* GPIO0 High = Enable EAPD */
5399 spec->eapd_mask = spec->gpio_mask = 0x01;
5400 spec->gpio_dir = spec->gpio_data = 0x01;
5401 }
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005402 spec->num_dmics = 0;
5403
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005404 spec->init = stac927x_core_init;
5405 spec->mixer = stac927x_mixer;
5406 }
Matt Porter3cc08dc2006-01-23 15:27:49 +01005407
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005408 spec->num_pwrs = 0;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005409 spec->aloopback_mask = 0x40;
5410 spec->aloopback_shift = 0;
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05005411 spec->eapd_switch = 1;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005412
Matt Porter3cc08dc2006-01-23 15:27:49 +01005413 err = stac92xx_parse_auto_config(codec, 0x1e, 0x20);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005414 if (!err) {
5415 if (spec->board_config < 0) {
5416 printk(KERN_WARNING "hda_codec: No auto-config is "
5417 "available, default to model=ref\n");
5418 spec->board_config = STAC_D965_REF;
5419 goto again;
5420 }
5421 err = -EINVAL;
5422 }
Mattc7d4b2f2005-06-27 14:59:41 +02005423 if (err < 0) {
5424 stac92xx_free(codec);
5425 return err;
5426 }
Matt2f2f4252005-04-13 14:45:30 +02005427
5428 codec->patch_ops = stac92xx_patch_ops;
5429
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005430 codec->proc_widget_hook = stac927x_proc_hook;
5431
Takashi Iwai52987652008-01-16 16:09:47 +01005432 /*
5433 * !!FIXME!!
5434 * The STAC927x seem to require fairly long delays for certain
5435 * command sequences. With too short delays (even if the answer
5436 * is set to RIRB properly), it results in the silence output
5437 * on some hardwares like Dell.
5438 *
5439 * The below flag enables the longer delay (see get_response
5440 * in hda_intel.c).
5441 */
5442 codec->bus->needs_damn_long_delay = 1;
5443
Takashi Iwaie28d8322008-12-17 13:48:29 +01005444 /* no jack detecion for ref-no-jd model */
5445 if (spec->board_config == STAC_D965_REF_NO_JD)
5446 spec->hp_detect = 0;
5447
Matt2f2f4252005-04-13 14:45:30 +02005448 return 0;
5449}
5450
Matt Porterf3302a52006-07-31 12:49:34 +02005451static int patch_stac9205(struct hda_codec *codec)
5452{
5453 struct sigmatel_spec *spec;
Takashi Iwai82599802007-07-31 15:56:24 +02005454 int err;
Matt Porterf3302a52006-07-31 12:49:34 +02005455
5456 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5457 if (spec == NULL)
5458 return -ENOMEM;
5459
5460 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005461 spec->num_pins = ARRAY_SIZE(stac9205_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005462 spec->pin_nids = stac9205_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005463 spec->board_config = snd_hda_check_board_config(codec, STAC_9205_MODELS,
5464 stac9205_models,
5465 stac9205_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005466 again:
Richard Fish11b44bb2006-08-23 18:31:34 +02005467 if (spec->board_config < 0) {
5468 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9205, using BIOS defaults\n");
5469 err = stac92xx_save_bios_config_regs(codec);
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005470 } else
5471 err = stac_save_pin_cfgs(codec,
5472 stac9205_brd_tbl[spec->board_config]);
5473 if (err < 0) {
5474 stac92xx_free(codec);
5475 return err;
Matt Porterf3302a52006-07-31 12:49:34 +02005476 }
5477
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005478 spec->digbeep_nid = 0x23;
Matt Porterf3302a52006-07-31 12:49:34 +02005479 spec->adc_nids = stac9205_adc_nids;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005480 spec->num_adcs = ARRAY_SIZE(stac9205_adc_nids);
Matt Porterf3302a52006-07-31 12:49:34 +02005481 spec->mux_nids = stac9205_mux_nids;
Takashi Iwai25494132007-03-12 12:36:16 +01005482 spec->num_muxes = ARRAY_SIZE(stac9205_mux_nids);
Matthew Ranostayd9737752008-09-07 12:03:41 +02005483 spec->smux_nids = stac9205_smux_nids;
5484 spec->num_smuxes = ARRAY_SIZE(stac9205_smux_nids);
Matt Porter8b657272006-10-26 17:12:59 +02005485 spec->dmic_nids = stac9205_dmic_nids;
Takashi Iwaif6e98522007-10-16 14:27:04 +02005486 spec->num_dmics = STAC9205_NUM_DMICS;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005487 spec->dmux_nids = stac9205_dmux_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +01005488 spec->num_dmuxes = ARRAY_SIZE(stac9205_dmux_nids);
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005489 spec->num_pwrs = 0;
Matt Porterf3302a52006-07-31 12:49:34 +02005490
5491 spec->init = stac9205_core_init;
5492 spec->mixer = stac9205_mixer;
5493
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005494 spec->aloopback_mask = 0x40;
5495 spec->aloopback_shift = 0;
Takashi Iwaid9a42682009-01-22 17:40:18 +01005496 /* Turn on/off EAPD per HP plugging */
5497 if (spec->board_config != STAC_9205_EAPD)
5498 spec->eapd_switch = 1;
Matt Porterf3302a52006-07-31 12:49:34 +02005499 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostay87d48362007-07-17 11:52:24 +02005500
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005501 switch (spec->board_config){
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005502 case STAC_9205_DELL_M43:
Matthew Ranostay87d48362007-07-17 11:52:24 +02005503 /* Enable SPDIF in/out */
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005504 stac_change_pin_config(codec, 0x1f, 0x01441030);
5505 stac_change_pin_config(codec, 0x20, 0x1c410030);
Matt Porter33382402006-12-18 13:17:28 +01005506
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005507 /* Enable unsol response for GPIO4/Dock HP connection */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005508 err = stac_add_event(spec, codec->afg, STAC_VREF_EVENT, 0x01);
5509 if (err < 0)
5510 return err;
Takashi Iwaic5d08bb2008-11-18 10:55:36 +01005511 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005512 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10);
5513 snd_hda_codec_write_cache(codec, codec->afg, 0,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005514 AC_VERB_SET_UNSOLICITED_ENABLE,
5515 AC_USRSP_EN | err);
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005516
5517 spec->gpio_dir = 0x0b;
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005518 spec->eapd_mask = 0x01;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005519 spec->gpio_mask = 0x1b;
5520 spec->gpio_mute = 0x10;
Matthew Ranostaye2e7d622008-01-24 15:32:15 +01005521 /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute,
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005522 * GPIO3 Low = DRM
Matthew Ranostay87d48362007-07-17 11:52:24 +02005523 */
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005524 spec->gpio_data = 0x01;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005525 break;
Matthew Ranostayb2c4f4d2008-09-26 10:06:40 -04005526 case STAC_9205_REF:
5527 /* SPDIF-In enabled */
5528 break;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005529 default:
5530 /* GPIO0 High = EAPD */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005531 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005532 spec->gpio_data = 0x01;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005533 break;
5534 }
Matthew Ranostay87d48362007-07-17 11:52:24 +02005535
Matt Porterf3302a52006-07-31 12:49:34 +02005536 err = stac92xx_parse_auto_config(codec, 0x1f, 0x20);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005537 if (!err) {
5538 if (spec->board_config < 0) {
5539 printk(KERN_WARNING "hda_codec: No auto-config is "
5540 "available, default to model=ref\n");
5541 spec->board_config = STAC_9205_REF;
5542 goto again;
5543 }
5544 err = -EINVAL;
5545 }
Matt Porterf3302a52006-07-31 12:49:34 +02005546 if (err < 0) {
5547 stac92xx_free(codec);
5548 return err;
5549 }
5550
5551 codec->patch_ops = stac92xx_patch_ops;
5552
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005553 codec->proc_widget_hook = stac9205_proc_hook;
5554
Matt Porterf3302a52006-07-31 12:49:34 +02005555 return 0;
5556}
5557
Matt2f2f4252005-04-13 14:45:30 +02005558/*
Guillaume Munch6d859062006-08-22 17:15:47 +02005559 * STAC9872 hack
Takashi Iwaidb064e52006-03-16 16:04:58 +01005560 */
5561
Takashi Iwai1e137f92009-01-21 07:41:22 +01005562static struct hda_verb stac9872_core_init[] = {
Takashi Iwai1624cb92007-07-05 13:10:51 +02005563 {0x15, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mic-sel: 0a,0d,14,02 */
Takashi Iwaidb064e52006-03-16 16:04:58 +01005564 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */
5565 {}
5566};
5567
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005568static struct snd_kcontrol_new stac9872_mixer[] = {
5569 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_INPUT),
5570 HDA_CODEC_MUTE("Capture Switch", 0x09, 0, HDA_INPUT),
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005571 { } /* end */
5572};
5573
5574static hda_nid_t stac9872_pin_nids[] = {
5575 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
5576 0x11, 0x13, 0x14,
5577};
5578
5579static hda_nid_t stac9872_adc_nids[] = {
5580 0x8 /*,0x6*/
5581};
5582
5583static hda_nid_t stac9872_mux_nids[] = {
5584 0x15
5585};
5586
Guillaume Munch6d859062006-08-22 17:15:47 +02005587static int patch_stac9872(struct hda_codec *codec)
Takashi Iwaidb064e52006-03-16 16:04:58 +01005588{
5589 struct sigmatel_spec *spec;
Takashi Iwai1e137f92009-01-21 07:41:22 +01005590 int err;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005591
Takashi Iwaidb064e52006-03-16 16:04:58 +01005592 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5593 if (spec == NULL)
5594 return -ENOMEM;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005595 codec->spec = spec;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005596
Takashi Iwai1e137f92009-01-21 07:41:22 +01005597#if 0 /* no model right now */
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005598 spec->board_config = snd_hda_check_board_config(codec, STAC_9872_MODELS,
5599 stac9872_models,
5600 stac9872_cfg_tbl);
Takashi Iwai1e137f92009-01-21 07:41:22 +01005601#endif
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005602
Takashi Iwai1e137f92009-01-21 07:41:22 +01005603 spec->num_pins = ARRAY_SIZE(stac9872_pin_nids);
5604 spec->pin_nids = stac9872_pin_nids;
5605 spec->multiout.dac_nids = spec->dac_nids;
5606 spec->num_adcs = ARRAY_SIZE(stac9872_adc_nids);
5607 spec->adc_nids = stac9872_adc_nids;
5608 spec->num_muxes = ARRAY_SIZE(stac9872_mux_nids);
5609 spec->mux_nids = stac9872_mux_nids;
5610 spec->mixer = stac9872_mixer;
5611 spec->init = stac9872_core_init;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005612
Takashi Iwai1e137f92009-01-21 07:41:22 +01005613 err = stac92xx_parse_auto_config(codec, 0x10, 0x12);
5614 if (err < 0) {
5615 stac92xx_free(codec);
5616 return -EINVAL;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005617 }
Takashi Iwai1e137f92009-01-21 07:41:22 +01005618 spec->input_mux = &spec->private_imux;
5619 codec->patch_ops = stac92xx_patch_ops;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005620 return 0;
5621}
5622
5623
5624/*
Matt2f2f4252005-04-13 14:45:30 +02005625 * patch entries
5626 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005627static struct hda_codec_preset snd_hda_preset_sigmatel[] = {
Matt2f2f4252005-04-13 14:45:30 +02005628 { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 },
5629 { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x },
5630 { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x },
5631 { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x },
5632 { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x },
5633 { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x },
5634 { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x },
Matt Porter22a27c72006-07-06 18:49:10 +02005635 { .id = 0x83847618, .name = "STAC9227", .patch = patch_stac927x },
5636 { .id = 0x83847619, .name = "STAC9227", .patch = patch_stac927x },
5637 { .id = 0x83847616, .name = "STAC9228", .patch = patch_stac927x },
5638 { .id = 0x83847617, .name = "STAC9228", .patch = patch_stac927x },
5639 { .id = 0x83847614, .name = "STAC9229", .patch = patch_stac927x },
5640 { .id = 0x83847615, .name = "STAC9229", .patch = patch_stac927x },
Matt Porter3cc08dc2006-01-23 15:27:49 +01005641 { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x },
5642 { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x },
5643 { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x },
5644 { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x },
5645 { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x },
5646 { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x },
5647 { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x },
5648 { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x },
5649 { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x },
5650 { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x },
Tobin Davis8e21c342007-01-08 11:04:17 +01005651 { .id = 0x83847632, .name = "STAC9202", .patch = patch_stac925x },
5652 { .id = 0x83847633, .name = "STAC9202D", .patch = patch_stac925x },
5653 { .id = 0x83847634, .name = "STAC9250", .patch = patch_stac925x },
5654 { .id = 0x83847635, .name = "STAC9250D", .patch = patch_stac925x },
5655 { .id = 0x83847636, .name = "STAC9251", .patch = patch_stac925x },
5656 { .id = 0x83847637, .name = "STAC9250D", .patch = patch_stac925x },
Takashi Iwai7bd3c0f2008-05-02 12:28:02 +02005657 { .id = 0x83847645, .name = "92HD206X", .patch = patch_stac927x },
5658 { .id = 0x83847646, .name = "92HD206D", .patch = patch_stac927x },
Guillaume Munch6d859062006-08-22 17:15:47 +02005659 /* The following does not take into account .id=0x83847661 when subsys =
5660 * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are
5661 * currently not fully supported.
5662 */
5663 { .id = 0x83847661, .name = "CXD9872RD/K", .patch = patch_stac9872 },
5664 { .id = 0x83847662, .name = "STAC9872AK", .patch = patch_stac9872 },
5665 { .id = 0x83847664, .name = "CXD9872AKD", .patch = patch_stac9872 },
Matt Porterf3302a52006-07-31 12:49:34 +02005666 { .id = 0x838476a0, .name = "STAC9205", .patch = patch_stac9205 },
5667 { .id = 0x838476a1, .name = "STAC9205D", .patch = patch_stac9205 },
5668 { .id = 0x838476a2, .name = "STAC9204", .patch = patch_stac9205 },
5669 { .id = 0x838476a3, .name = "STAC9204D", .patch = patch_stac9205 },
5670 { .id = 0x838476a4, .name = "STAC9255", .patch = patch_stac9205 },
5671 { .id = 0x838476a5, .name = "STAC9255D", .patch = patch_stac9205 },
5672 { .id = 0x838476a6, .name = "STAC9254", .patch = patch_stac9205 },
5673 { .id = 0x838476a7, .name = "STAC9254D", .patch = patch_stac9205 },
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005674 { .id = 0x111d7603, .name = "92HD75B3X5", .patch = patch_stac92hd71bxx},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005675 { .id = 0x111d7604, .name = "92HD83C1X5", .patch = patch_stac92hd83xxx},
5676 { .id = 0x111d7605, .name = "92HD81B1X5", .patch = patch_stac92hd83xxx},
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005677 { .id = 0x111d7608, .name = "92HD75B2X5", .patch = patch_stac92hd71bxx},
Matthew Ranostay541eee82007-12-14 12:08:04 +01005678 { .id = 0x111d7674, .name = "92HD73D1X5", .patch = patch_stac92hd73xx },
5679 { .id = 0x111d7675, .name = "92HD73C1X5", .patch = patch_stac92hd73xx },
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005680 { .id = 0x111d7676, .name = "92HD73E1X5", .patch = patch_stac92hd73xx },
Matthew Ranostay541eee82007-12-14 12:08:04 +01005681 { .id = 0x111d76b0, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
5682 { .id = 0x111d76b1, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
5683 { .id = 0x111d76b2, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
5684 { .id = 0x111d76b3, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
5685 { .id = 0x111d76b4, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
5686 { .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
5687 { .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
5688 { .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
Matt2f2f4252005-04-13 14:45:30 +02005689 {} /* terminator */
5690};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005691
5692MODULE_ALIAS("snd-hda-codec-id:8384*");
5693MODULE_ALIAS("snd-hda-codec-id:111d*");
5694
5695MODULE_LICENSE("GPL");
5696MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec");
5697
5698static struct hda_codec_preset_list sigmatel_list = {
5699 .preset = snd_hda_preset_sigmatel,
5700 .owner = THIS_MODULE,
5701};
5702
5703static int __init patch_sigmatel_init(void)
5704{
5705 return snd_hda_add_codec_preset(&sigmatel_list);
5706}
5707
5708static void __exit patch_sigmatel_exit(void)
5709{
5710 snd_hda_delete_codec_preset(&sigmatel_list);
5711}
5712
5713module_init(patch_sigmatel_init)
5714module_exit(patch_sigmatel_exit)