blob: 8eb6508cd991214e4c06de4891d959059913d998 [file] [log] [blame]
Matt2f2f4252005-04-13 14:45:30 +02001/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
4 * HD audio interface patch for SigmaTel STAC92xx
5 *
6 * Copyright (c) 2005 Embedded Alley Solutions, Inc.
Matt Porter403d1942005-11-29 15:00:51 +01007 * Matt Porter <mporter@embeddedalley.com>
Matt2f2f4252005-04-13 14:45:30 +02008 *
9 * Based on patch_cmedia.c and patch_realtek.c
10 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
11 *
12 * This driver is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This driver is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 */
26
Matt2f2f4252005-04-13 14:45:30 +020027#include <linux/init.h>
28#include <linux/delay.h>
29#include <linux/slab.h>
30#include <linux/pci.h>
Vitaliy Kulikov5bdaaad2009-11-04 07:57:45 +010031#include <linux/dmi.h>
Matt2f2f4252005-04-13 14:45:30 +020032#include <sound/core.h>
Mattc7d4b2f2005-06-27 14:59:41 +020033#include <sound/asoundef.h>
Matthew Ranostay45a6ac12008-10-15 14:45:38 -040034#include <sound/jack.h>
Matt2f2f4252005-04-13 14:45:30 +020035#include "hda_codec.h"
36#include "hda_local.h"
Matthew Ranostay1cd22242008-07-18 18:20:52 +020037#include "hda_beep.h"
Matt2f2f4252005-04-13 14:45:30 +020038
Takashi Iwaic6e4c662008-11-25 11:58:19 +010039enum {
40 STAC_VREF_EVENT = 1,
41 STAC_INSERT_EVENT,
42 STAC_PWR_EVENT,
43 STAC_HP_EVENT,
Takashi Iwaifefd67f2009-07-30 18:03:05 +020044 STAC_LO_EVENT,
Takashi Iwai3d21d3f2009-07-29 14:32:56 +020045 STAC_MIC_EVENT,
Takashi Iwaic6e4c662008-11-25 11:58:19 +010046};
Matt4e550962005-07-04 17:51:39 +020047
Takashi Iwaif5fcc132006-11-24 17:07:44 +010048enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +010049 STAC_AUTO,
Takashi Iwaif5fcc132006-11-24 17:07:44 +010050 STAC_REF,
Tobin Davisbf277782008-02-03 20:31:47 +010051 STAC_9200_OQO,
Takashi Iwaidfe495d2007-08-23 19:04:28 +020052 STAC_9200_DELL_D21,
53 STAC_9200_DELL_D22,
54 STAC_9200_DELL_D23,
55 STAC_9200_DELL_M21,
56 STAC_9200_DELL_M22,
57 STAC_9200_DELL_M23,
58 STAC_9200_DELL_M24,
59 STAC_9200_DELL_M25,
60 STAC_9200_DELL_M26,
61 STAC_9200_DELL_M27,
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +020062 STAC_9200_M4,
63 STAC_9200_M4_2,
Takashi Iwai117f2572008-03-18 09:53:23 +010064 STAC_9200_PANASONIC,
Takashi Iwaif5fcc132006-11-24 17:07:44 +010065 STAC_9200_MODELS
66};
67
68enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +010069 STAC_9205_AUTO,
Takashi Iwaif5fcc132006-11-24 17:07:44 +010070 STAC_9205_REF,
Takashi Iwaidfe495d2007-08-23 19:04:28 +020071 STAC_9205_DELL_M42,
Tobin Davisae0a8ed2007-08-13 15:50:29 +020072 STAC_9205_DELL_M43,
73 STAC_9205_DELL_M44,
Takashi Iwaid9a42682009-01-22 17:40:18 +010074 STAC_9205_EAPD,
Takashi Iwaif5fcc132006-11-24 17:07:44 +010075 STAC_9205_MODELS
76};
77
78enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +010079 STAC_92HD73XX_AUTO,
Takashi Iwai9e43f0d2008-12-17 14:51:01 +010080 STAC_92HD73XX_NO_JD, /* no jack-detection */
Matthew Ranostaye1f0d662007-12-13 17:47:21 +010081 STAC_92HD73XX_REF,
Wu Fengguangae709442009-08-19 17:05:11 +080082 STAC_92HD73XX_INTEL,
Takashi Iwai661cd8f2008-11-25 15:18:29 +010083 STAC_DELL_M6_AMIC,
84 STAC_DELL_M6_DMIC,
85 STAC_DELL_M6_BOTH,
Matthew Ranostay6b3ab212008-11-03 08:12:43 -050086 STAC_DELL_EQ,
Takashi Iwai842ae632009-09-02 07:43:08 +020087 STAC_ALIENWARE_M17X,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +010088 STAC_92HD73XX_MODELS
89};
90
91enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +010092 STAC_92HD83XXX_AUTO,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +020093 STAC_92HD83XXX_REF,
Matthew Ranostay32ed3f42009-01-22 20:53:29 -050094 STAC_92HD83XXX_PWR_REF,
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -050095 STAC_DELL_S14,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +020096 STAC_92HD83XXX_MODELS
97};
98
99enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +0100100 STAC_92HD71BXX_AUTO,
Matthew Ranostaye035b842007-11-06 11:53:55 +0100101 STAC_92HD71BXX_REF,
Matthew Ranostaya7662642008-02-21 07:51:14 +0100102 STAC_DELL_M4_1,
103 STAC_DELL_M4_2,
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -0500104 STAC_DELL_M4_3,
Matthew Ranostay6a14f582008-09-12 12:02:30 -0400105 STAC_HP_M4,
Takashi Iwai1b0652e2009-01-14 08:27:35 +0100106 STAC_HP_DV5,
Christoph Plattnerae6241f2009-03-08 23:19:05 +0100107 STAC_HP_HDX,
James Gardiner514bf542009-05-03 04:00:44 -0400108 STAC_HP_DV4_1222NR,
Matthew Ranostaye035b842007-11-06 11:53:55 +0100109 STAC_92HD71BXX_MODELS
110};
111
112enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +0100113 STAC_925x_AUTO,
Tobin Davis8e21c342007-01-08 11:04:17 +0100114 STAC_925x_REF,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +0200115 STAC_M1,
116 STAC_M1_2,
117 STAC_M2,
Tobin Davis8e21c342007-01-08 11:04:17 +0100118 STAC_M2_2,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +0200119 STAC_M3,
120 STAC_M5,
121 STAC_M6,
Tobin Davis8e21c342007-01-08 11:04:17 +0100122 STAC_925x_MODELS
123};
124
125enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +0100126 STAC_922X_AUTO,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100127 STAC_D945_REF,
128 STAC_D945GTP3,
129 STAC_D945GTP5,
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +0200130 STAC_INTEL_MAC_V1,
131 STAC_INTEL_MAC_V2,
132 STAC_INTEL_MAC_V3,
133 STAC_INTEL_MAC_V4,
134 STAC_INTEL_MAC_V5,
Nicolas Boichat536319a2008-07-21 22:18:01 +0800135 STAC_INTEL_MAC_AUTO, /* This model is selected if no module parameter
136 * is given, one of the above models will be
137 * chosen according to the subsystem id. */
Takashi Iwaidfe495d2007-08-23 19:04:28 +0200138 /* for backward compatibility */
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100139 STAC_MACMINI,
Takashi Iwai3fc24d82007-02-16 13:27:18 +0100140 STAC_MACBOOK,
Nicolas Boichat6f0778d2007-03-15 12:38:15 +0100141 STAC_MACBOOK_PRO_V1,
142 STAC_MACBOOK_PRO_V2,
Sylvain FORETf16928f2007-04-27 14:22:36 +0200143 STAC_IMAC_INTEL,
Takashi Iwai0dae0f82007-05-21 12:41:29 +0200144 STAC_IMAC_INTEL_20,
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -0300145 STAC_ECS_202,
Takashi Iwaidfe495d2007-08-23 19:04:28 +0200146 STAC_922X_DELL_D81,
147 STAC_922X_DELL_D82,
148 STAC_922X_DELL_M81,
149 STAC_922X_DELL_M82,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100150 STAC_922X_MODELS
151};
152
153enum {
Takashi Iwai1607b8e2009-02-26 16:50:43 +0100154 STAC_927X_AUTO,
Takashi Iwaie28d8322008-12-17 13:48:29 +0100155 STAC_D965_REF_NO_JD, /* no jack-detection */
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100156 STAC_D965_REF,
157 STAC_D965_3ST,
158 STAC_D965_5ST,
Takashi Iwai679d92e2009-05-24 19:00:08 +0200159 STAC_D965_5ST_NO_FP,
Tobin Davis4ff076e2007-08-07 11:48:12 +0200160 STAC_DELL_3ST,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +0100161 STAC_DELL_BIOS,
Takashi Iwai54930532009-10-11 17:38:29 +0200162 STAC_927X_VOLKNOB,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100163 STAC_927X_MODELS
164};
Matt Porter403d1942005-11-29 15:00:51 +0100165
Takashi Iwai307282c2009-03-12 18:17:58 +0100166enum {
167 STAC_9872_AUTO,
168 STAC_9872_VAIO,
169 STAC_9872_MODELS
170};
171
Matthew Ranostay74aeaab2008-10-25 01:06:04 -0400172struct sigmatel_event {
173 hda_nid_t nid;
Takashi Iwaic6e4c662008-11-25 11:58:19 +0100174 unsigned char type;
175 unsigned char tag;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -0400176 int data;
177};
178
179struct sigmatel_jack {
180 hda_nid_t nid;
181 int type;
182 struct snd_jack *jack;
183};
184
Takashi Iwai3d21d3f2009-07-29 14:32:56 +0200185struct sigmatel_mic_route {
186 hda_nid_t pin;
Takashi Iwai02d33322009-10-01 16:38:11 +0200187 signed char mux_idx;
188 signed char dmux_idx;
Takashi Iwai3d21d3f2009-07-29 14:32:56 +0200189};
190
Matt2f2f4252005-04-13 14:45:30 +0200191struct sigmatel_spec {
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100192 struct snd_kcontrol_new *mixers[4];
Mattc7d4b2f2005-06-27 14:59:41 +0200193 unsigned int num_mixers;
194
Matt Porter403d1942005-11-29 15:00:51 +0100195 int board_config;
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -0500196 unsigned int eapd_switch: 1;
Mattc7d4b2f2005-06-27 14:59:41 +0200197 unsigned int surr_switch: 1;
Matt Porter3cc08dc2006-01-23 15:27:49 +0100198 unsigned int alt_switch: 1;
Takashi Iwai82bc9552006-03-21 11:24:42 +0100199 unsigned int hp_detect: 1;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400200 unsigned int spdif_mute: 1;
Takashi Iwai7c7767e2009-01-20 15:28:38 +0100201 unsigned int check_volume_offset:1;
Takashi Iwai3d21d3f2009-07-29 14:32:56 +0200202 unsigned int auto_mic:1;
Mattc7d4b2f2005-06-27 14:59:41 +0200203
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100204 /* gpio lines */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +0200205 unsigned int eapd_mask;
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100206 unsigned int gpio_mask;
207 unsigned int gpio_dir;
208 unsigned int gpio_data;
209 unsigned int gpio_mute;
Takashi Iwai86d190e2009-05-26 15:18:58 +0200210 unsigned int gpio_led;
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100211
Matthew Ranostay8daaaa92008-08-15 07:45:52 +0200212 /* stream */
213 unsigned int stream_delay;
214
Matthew Ranostay4fe51952008-01-29 15:28:44 +0100215 /* analog loopback */
Takashi Iwaid78d7a92009-03-02 14:26:25 +0100216 struct snd_kcontrol_new *aloopback_ctl;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100217 unsigned char aloopback_mask;
218 unsigned char aloopback_shift;
Takashi Iwai82599802007-07-31 15:56:24 +0200219
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100220 /* power management */
221 unsigned int num_pwrs;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200222 unsigned int *pwr_mapping;
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100223 hda_nid_t *pwr_nids;
Matthew Ranostayb76c8502008-02-06 14:49:44 +0100224 hda_nid_t *dac_list;
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100225
Matthew Ranostay74aeaab2008-10-25 01:06:04 -0400226 /* jack detection */
227 struct snd_array jacks;
228
229 /* events */
230 struct snd_array events;
231
Matt2f2f4252005-04-13 14:45:30 +0200232 /* playback */
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100233 struct hda_input_mux *mono_mux;
234 unsigned int cur_mmux;
Matt2f2f4252005-04-13 14:45:30 +0200235 struct hda_multi_out multiout;
Matt Porter3cc08dc2006-01-23 15:27:49 +0100236 hda_nid_t dac_nids[5];
Takashi Iwaic21ca4a2008-12-19 09:26:08 +0100237 hda_nid_t hp_dacs[5];
238 hda_nid_t speaker_dacs[5];
Matt2f2f4252005-04-13 14:45:30 +0200239
Takashi Iwai7c7767e2009-01-20 15:28:38 +0100240 int volume_offset;
241
Matt2f2f4252005-04-13 14:45:30 +0200242 /* capture */
243 hda_nid_t *adc_nids;
Matt2f2f4252005-04-13 14:45:30 +0200244 unsigned int num_adcs;
Mattdabbed62005-06-14 10:19:34 +0200245 hda_nid_t *mux_nids;
246 unsigned int num_muxes;
Matt Porter8b657272006-10-26 17:12:59 +0200247 hda_nid_t *dmic_nids;
248 unsigned int num_dmics;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100249 hda_nid_t *dmux_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +0100250 unsigned int num_dmuxes;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200251 hda_nid_t *smux_nids;
252 unsigned int num_smuxes;
Takashi Iwai5207e102009-07-30 13:09:08 +0200253 unsigned int num_analog_muxes;
Takashi Iwai6479c632009-07-28 18:20:25 +0200254
255 unsigned long *capvols; /* amp-volume attr: HDA_COMPOSE_AMP_VAL() */
256 unsigned long *capsws; /* amp-mute attr: HDA_COMPOSE_AMP_VAL() */
257 unsigned int num_caps; /* number of capture volume/switch elements */
258
Takashi Iwai3d21d3f2009-07-29 14:32:56 +0200259 struct sigmatel_mic_route ext_mic;
260 struct sigmatel_mic_route int_mic;
261
Matthew Ranostay65973632008-09-16 10:39:37 -0400262 const char **spdif_labels;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200263
Mattdabbed62005-06-14 10:19:34 +0200264 hda_nid_t dig_in_nid;
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100265 hda_nid_t mono_nid;
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200266 hda_nid_t anabeep_nid;
267 hda_nid_t digbeep_nid;
Matt2f2f4252005-04-13 14:45:30 +0200268
Matt2f2f4252005-04-13 14:45:30 +0200269 /* pin widgets */
270 hda_nid_t *pin_nids;
271 unsigned int num_pins;
Matt2f2f4252005-04-13 14:45:30 +0200272
273 /* codec specific stuff */
274 struct hda_verb *init;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100275 struct snd_kcontrol_new *mixer;
Matt2f2f4252005-04-13 14:45:30 +0200276
277 /* capture source */
Matt Porter8b657272006-10-26 17:12:59 +0200278 struct hda_input_mux *dinput_mux;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100279 unsigned int cur_dmux[2];
Mattc7d4b2f2005-06-27 14:59:41 +0200280 struct hda_input_mux *input_mux;
Matt Porter3cc08dc2006-01-23 15:27:49 +0100281 unsigned int cur_mux[3];
Matthew Ranostayd9737752008-09-07 12:03:41 +0200282 struct hda_input_mux *sinput_mux;
283 unsigned int cur_smux[2];
Matthew Ranostay2a9c7812008-09-13 16:45:39 -0400284 unsigned int cur_amux;
285 hda_nid_t *amp_nids;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +0200286 unsigned int powerdown_adcs;
Matt2f2f4252005-04-13 14:45:30 +0200287
Matt Porter403d1942005-11-29 15:00:51 +0100288 /* i/o switches */
289 unsigned int io_switch[2];
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +0200290 unsigned int clfe_swap;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +0100291 hda_nid_t line_switch; /* shared line-in for input and output */
292 hda_nid_t mic_switch; /* shared mic-in for input and output */
293 hda_nid_t hp_switch; /* NID of HP as line-out */
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200294 unsigned int aloopback;
Matt2f2f4252005-04-13 14:45:30 +0200295
Mattc7d4b2f2005-06-27 14:59:41 +0200296 struct hda_pcm pcm_rec[2]; /* PCM information */
297
298 /* dynamic controls and input_mux */
299 struct auto_pin_cfg autocfg;
Takashi Iwai603c4012008-07-30 15:01:44 +0200300 struct snd_array kctls;
Matt Porter8b657272006-10-26 17:12:59 +0200301 struct hda_input_mux private_dimux;
Mattc7d4b2f2005-06-27 14:59:41 +0200302 struct hda_input_mux private_imux;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200303 struct hda_input_mux private_smux;
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100304 struct hda_input_mux private_mono_mux;
Matt2f2f4252005-04-13 14:45:30 +0200305};
306
307static hda_nid_t stac9200_adc_nids[1] = {
308 0x03,
309};
310
311static hda_nid_t stac9200_mux_nids[1] = {
312 0x0c,
313};
314
315static hda_nid_t stac9200_dac_nids[1] = {
316 0x02,
317};
318
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100319static hda_nid_t stac92hd73xx_pwr_nids[8] = {
320 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
321 0x0f, 0x10, 0x11
322};
323
Matthew Ranostay0ffa9802008-09-08 11:20:05 -0400324static hda_nid_t stac92hd73xx_slave_dig_outs[2] = {
325 0x26, 0,
326};
327
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100328static hda_nid_t stac92hd73xx_adc_nids[2] = {
329 0x1a, 0x1b
330};
331
332#define STAC92HD73XX_NUM_DMICS 2
333static hda_nid_t stac92hd73xx_dmic_nids[STAC92HD73XX_NUM_DMICS + 1] = {
334 0x13, 0x14, 0
335};
336
337#define STAC92HD73_DAC_COUNT 5
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100338
Takashi Iwaie2aec172009-09-02 01:00:05 +0200339static hda_nid_t stac92hd73xx_mux_nids[2] = {
340 0x20, 0x21,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100341};
342
343static hda_nid_t stac92hd73xx_dmux_nids[2] = {
344 0x20, 0x21,
345};
346
Matthew Ranostayd9737752008-09-07 12:03:41 +0200347static hda_nid_t stac92hd73xx_smux_nids[2] = {
348 0x22, 0x23,
349};
350
Takashi Iwai6479c632009-07-28 18:20:25 +0200351#define STAC92HD73XX_NUM_CAPS 2
352static unsigned long stac92hd73xx_capvols[] = {
353 HDA_COMPOSE_AMP_VAL(0x20, 3, 0, HDA_OUTPUT),
354 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT),
355};
356#define stac92hd73xx_capsws stac92hd73xx_capvols
357
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200358#define STAC92HD83_DAC_COUNT 3
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200359
Takashi Iwai667067d2009-08-13 18:14:42 +0200360static hda_nid_t stac92hd83xxx_mux_nids[2] = {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200361 0x17, 0x18,
362};
363
364static hda_nid_t stac92hd83xxx_adc_nids[2] = {
365 0x15, 0x16,
366};
367
368static hda_nid_t stac92hd83xxx_pwr_nids[4] = {
369 0xa, 0xb, 0xd, 0xe,
370};
371
Matthew Ranostay0ffa9802008-09-08 11:20:05 -0400372static hda_nid_t stac92hd83xxx_slave_dig_outs[2] = {
373 0x1e, 0,
374};
375
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200376static unsigned int stac92hd83xxx_pwr_mapping[4] = {
Matthew Ranostay87e88a72009-01-22 20:38:42 -0500377 0x03, 0x0c, 0x20, 0x40,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200378};
379
Takashi Iwai6479c632009-07-28 18:20:25 +0200380#define STAC92HD83XXX_NUM_CAPS 2
381static unsigned long stac92hd83xxx_capvols[] = {
382 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_OUTPUT),
383 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_OUTPUT),
384};
385#define stac92hd83xxx_capsws stac92hd83xxx_capvols
386
Matthew Ranostaya64135a2008-01-10 16:55:06 +0100387static hda_nid_t stac92hd71bxx_pwr_nids[3] = {
388 0x0a, 0x0d, 0x0f
389};
390
Matthew Ranostaye035b842007-11-06 11:53:55 +0100391static hda_nid_t stac92hd71bxx_adc_nids[2] = {
392 0x12, 0x13,
393};
394
395static hda_nid_t stac92hd71bxx_mux_nids[2] = {
396 0x1a, 0x1b
397};
398
Matthew Ranostay4b33c762008-10-10 09:07:23 -0400399static hda_nid_t stac92hd71bxx_dmux_nids[2] = {
400 0x1c, 0x1d,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100401};
402
Matthew Ranostayd9737752008-09-07 12:03:41 +0200403static hda_nid_t stac92hd71bxx_smux_nids[2] = {
404 0x24, 0x25,
405};
406
Matthew Ranostaye035b842007-11-06 11:53:55 +0100407#define STAC92HD71BXX_NUM_DMICS 2
408static hda_nid_t stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS + 1] = {
409 0x18, 0x19, 0
410};
411
Matthew Ranostay0ffa9802008-09-08 11:20:05 -0400412static hda_nid_t stac92hd71bxx_slave_dig_outs[2] = {
413 0x22, 0
414};
415
Takashi Iwai6479c632009-07-28 18:20:25 +0200416#define STAC92HD71BXX_NUM_CAPS 2
417static unsigned long stac92hd71bxx_capvols[] = {
418 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT),
419 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
420};
421#define stac92hd71bxx_capsws stac92hd71bxx_capvols
422
Tobin Davis8e21c342007-01-08 11:04:17 +0100423static hda_nid_t stac925x_adc_nids[1] = {
424 0x03,
425};
426
427static hda_nid_t stac925x_mux_nids[1] = {
428 0x0f,
429};
430
431static hda_nid_t stac925x_dac_nids[1] = {
432 0x02,
433};
434
Takashi Iwaif6e98522007-10-16 14:27:04 +0200435#define STAC925X_NUM_DMICS 1
436static hda_nid_t stac925x_dmic_nids[STAC925X_NUM_DMICS + 1] = {
437 0x15, 0
Tobin Davis2c11f952007-05-17 09:36:34 +0200438};
439
Takashi Iwai1697055e2007-12-18 18:05:52 +0100440static hda_nid_t stac925x_dmux_nids[1] = {
441 0x14,
442};
443
Takashi Iwai6479c632009-07-28 18:20:25 +0200444static unsigned long stac925x_capvols[] = {
445 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_OUTPUT),
446};
447static unsigned long stac925x_capsws[] = {
448 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
449};
450
Matt2f2f4252005-04-13 14:45:30 +0200451static hda_nid_t stac922x_adc_nids[2] = {
452 0x06, 0x07,
453};
454
455static hda_nid_t stac922x_mux_nids[2] = {
456 0x12, 0x13,
457};
458
Takashi Iwai6479c632009-07-28 18:20:25 +0200459#define STAC922X_NUM_CAPS 2
460static unsigned long stac922x_capvols[] = {
461 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_INPUT),
462 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT),
463};
464#define stac922x_capsws stac922x_capvols
465
Matthew Ranostay45c1d852009-02-04 17:49:41 -0500466static hda_nid_t stac927x_slave_dig_outs[2] = {
467 0x1f, 0,
468};
469
Matt Porter3cc08dc2006-01-23 15:27:49 +0100470static hda_nid_t stac927x_adc_nids[3] = {
471 0x07, 0x08, 0x09
472};
473
474static hda_nid_t stac927x_mux_nids[3] = {
475 0x15, 0x16, 0x17
476};
477
Matthew Ranostayd9737752008-09-07 12:03:41 +0200478static hda_nid_t stac927x_smux_nids[1] = {
479 0x21,
480};
481
Matthew Ranostayb76c8502008-02-06 14:49:44 +0100482static hda_nid_t stac927x_dac_nids[6] = {
483 0x02, 0x03, 0x04, 0x05, 0x06, 0
484};
485
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100486static hda_nid_t stac927x_dmux_nids[1] = {
487 0x1b,
488};
489
Matthew Ranostay7f168592007-10-18 17:38:17 +0200490#define STAC927X_NUM_DMICS 2
491static hda_nid_t stac927x_dmic_nids[STAC927X_NUM_DMICS + 1] = {
492 0x13, 0x14, 0
493};
494
Takashi Iwai6479c632009-07-28 18:20:25 +0200495#define STAC927X_NUM_CAPS 3
496static unsigned long stac927x_capvols[] = {
497 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT),
498 HDA_COMPOSE_AMP_VAL(0x19, 3, 0, HDA_INPUT),
499 HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_INPUT),
500};
501static unsigned long stac927x_capsws[] = {
502 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT),
503 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT),
504 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
505};
506
Matthew Ranostay65973632008-09-16 10:39:37 -0400507static const char *stac927x_spdif_labels[5] = {
508 "Digital Playback", "ADAT", "Analog Mux 1",
509 "Analog Mux 2", "Analog Mux 3"
510};
511
Matt Porterf3302a52006-07-31 12:49:34 +0200512static hda_nid_t stac9205_adc_nids[2] = {
513 0x12, 0x13
514};
515
516static hda_nid_t stac9205_mux_nids[2] = {
517 0x19, 0x1a
518};
519
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100520static hda_nid_t stac9205_dmux_nids[1] = {
Takashi Iwai1697055e2007-12-18 18:05:52 +0100521 0x1d,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100522};
523
Matthew Ranostayd9737752008-09-07 12:03:41 +0200524static hda_nid_t stac9205_smux_nids[1] = {
525 0x21,
526};
527
Takashi Iwaif6e98522007-10-16 14:27:04 +0200528#define STAC9205_NUM_DMICS 2
529static hda_nid_t stac9205_dmic_nids[STAC9205_NUM_DMICS + 1] = {
530 0x17, 0x18, 0
Matt Porter8b657272006-10-26 17:12:59 +0200531};
532
Takashi Iwai6479c632009-07-28 18:20:25 +0200533#define STAC9205_NUM_CAPS 2
534static unsigned long stac9205_capvols[] = {
535 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_INPUT),
536 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_INPUT),
537};
538static unsigned long stac9205_capsws[] = {
539 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
540 HDA_COMPOSE_AMP_VAL(0x1e, 3, 0, HDA_OUTPUT),
541};
542
Mattc7d4b2f2005-06-27 14:59:41 +0200543static hda_nid_t stac9200_pin_nids[8] = {
Tobin Davis93ed1502006-09-01 21:03:12 +0200544 0x08, 0x09, 0x0d, 0x0e,
545 0x0f, 0x10, 0x11, 0x12,
Matt2f2f4252005-04-13 14:45:30 +0200546};
547
Tobin Davis8e21c342007-01-08 11:04:17 +0100548static hda_nid_t stac925x_pin_nids[8] = {
549 0x07, 0x08, 0x0a, 0x0b,
550 0x0c, 0x0d, 0x10, 0x11,
551};
552
Matt2f2f4252005-04-13 14:45:30 +0200553static hda_nid_t stac922x_pin_nids[10] = {
554 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
555 0x0f, 0x10, 0x11, 0x15, 0x1b,
556};
557
Matthew Ranostaya7662642008-02-21 07:51:14 +0100558static hda_nid_t stac92hd73xx_pin_nids[13] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100559 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
560 0x0f, 0x10, 0x11, 0x12, 0x13,
Matthew Ranostayd9737752008-09-07 12:03:41 +0200561 0x14, 0x22, 0x23
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100562};
563
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -0500564static hda_nid_t stac92hd83xxx_pin_nids[10] = {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200565 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -0500566 0x0f, 0x10, 0x11, 0x1f, 0x20,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200567};
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -0500568
569#define STAC92HD71BXX_NUM_PINS 13
570static hda_nid_t stac92hd71bxx_pin_nids_4port[STAC92HD71BXX_NUM_PINS] = {
571 0x0a, 0x0b, 0x0c, 0x0d, 0x00,
572 0x00, 0x14, 0x18, 0x19, 0x1e,
573 0x1f, 0x20, 0x27
574};
575static hda_nid_t stac92hd71bxx_pin_nids_6port[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaye035b842007-11-06 11:53:55 +0100576 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
577 0x0f, 0x14, 0x18, 0x19, 0x1e,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -0500578 0x1f, 0x20, 0x27
Matthew Ranostaye035b842007-11-06 11:53:55 +0100579};
580
Matt Porter3cc08dc2006-01-23 15:27:49 +0100581static hda_nid_t stac927x_pin_nids[14] = {
582 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
583 0x0f, 0x10, 0x11, 0x12, 0x13,
584 0x14, 0x21, 0x22, 0x23,
585};
586
Matt Porterf3302a52006-07-31 12:49:34 +0200587static hda_nid_t stac9205_pin_nids[12] = {
588 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
589 0x0f, 0x14, 0x16, 0x17, 0x18,
590 0x21, 0x22,
Matt Porterf3302a52006-07-31 12:49:34 +0200591};
592
Matt Porter8b657272006-10-26 17:12:59 +0200593static int stac92xx_dmux_enum_info(struct snd_kcontrol *kcontrol,
594 struct snd_ctl_elem_info *uinfo)
595{
596 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
597 struct sigmatel_spec *spec = codec->spec;
598 return snd_hda_input_mux_info(spec->dinput_mux, uinfo);
599}
600
601static int stac92xx_dmux_enum_get(struct snd_kcontrol *kcontrol,
602 struct snd_ctl_elem_value *ucontrol)
603{
604 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
605 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100606 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Matt Porter8b657272006-10-26 17:12:59 +0200607
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100608 ucontrol->value.enumerated.item[0] = spec->cur_dmux[dmux_idx];
Matt Porter8b657272006-10-26 17:12:59 +0200609 return 0;
610}
611
612static int stac92xx_dmux_enum_put(struct snd_kcontrol *kcontrol,
613 struct snd_ctl_elem_value *ucontrol)
614{
615 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
616 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100617 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Matt Porter8b657272006-10-26 17:12:59 +0200618
619 return snd_hda_input_mux_put(codec, spec->dinput_mux, ucontrol,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100620 spec->dmux_nids[dmux_idx], &spec->cur_dmux[dmux_idx]);
Matt Porter8b657272006-10-26 17:12:59 +0200621}
622
Matthew Ranostayd9737752008-09-07 12:03:41 +0200623static int stac92xx_smux_enum_info(struct snd_kcontrol *kcontrol,
624 struct snd_ctl_elem_info *uinfo)
625{
626 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
627 struct sigmatel_spec *spec = codec->spec;
628 return snd_hda_input_mux_info(spec->sinput_mux, uinfo);
629}
630
631static int stac92xx_smux_enum_get(struct snd_kcontrol *kcontrol,
632 struct snd_ctl_elem_value *ucontrol)
633{
634 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
635 struct sigmatel_spec *spec = codec->spec;
636 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
637
638 ucontrol->value.enumerated.item[0] = spec->cur_smux[smux_idx];
639 return 0;
640}
641
642static int stac92xx_smux_enum_put(struct snd_kcontrol *kcontrol,
643 struct snd_ctl_elem_value *ucontrol)
644{
645 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
646 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400647 struct hda_input_mux *smux = &spec->private_smux;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200648 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400649 int err, val;
650 hda_nid_t nid;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200651
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400652 err = snd_hda_input_mux_put(codec, spec->sinput_mux, ucontrol,
Matthew Ranostayd9737752008-09-07 12:03:41 +0200653 spec->smux_nids[smux_idx], &spec->cur_smux[smux_idx]);
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400654 if (err < 0)
655 return err;
656
657 if (spec->spdif_mute) {
658 if (smux_idx == 0)
659 nid = spec->multiout.dig_out_nid;
660 else
661 nid = codec->slave_dig_outs[smux_idx - 1];
662 if (spec->cur_smux[smux_idx] == smux->num_items - 1)
Takashi Iwaic9b46f92008-12-01 11:42:09 +0100663 val = HDA_AMP_MUTE;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400664 else
Takashi Iwaic9b46f92008-12-01 11:42:09 +0100665 val = 0;
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400666 /* un/mute SPDIF out */
Takashi Iwaic9b46f92008-12-01 11:42:09 +0100667 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
668 HDA_AMP_MUTE, val);
Matthew Ranostay00ef50c2008-09-27 18:13:47 -0400669 }
670 return 0;
Matthew Ranostayd9737752008-09-07 12:03:41 +0200671}
672
Nickolas Lloyd2fc99892009-05-15 15:33:30 +0200673static unsigned int stac92xx_vref_set(struct hda_codec *codec,
674 hda_nid_t nid, unsigned int new_vref)
675{
Takashi Iwaib8621512009-06-22 08:00:10 +0200676 int error;
Nickolas Lloyd2fc99892009-05-15 15:33:30 +0200677 unsigned int pincfg;
678 pincfg = snd_hda_codec_read(codec, nid, 0,
679 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
680
681 pincfg &= 0xff;
682 pincfg &= ~(AC_PINCTL_VREFEN | AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
683 pincfg |= new_vref;
684
685 if (new_vref == AC_PINCTL_VREF_HIZ)
686 pincfg |= AC_PINCTL_OUT_EN;
687 else
688 pincfg |= AC_PINCTL_IN_EN;
689
690 error = snd_hda_codec_write_cache(codec, nid, 0,
691 AC_VERB_SET_PIN_WIDGET_CONTROL, pincfg);
692 if (error < 0)
693 return error;
694 else
695 return 1;
696}
697
698static unsigned int stac92xx_vref_get(struct hda_codec *codec, hda_nid_t nid)
699{
700 unsigned int vref;
701 vref = snd_hda_codec_read(codec, nid, 0,
702 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
703 vref &= AC_PINCTL_VREFEN;
704 return vref;
705}
706
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100707static int stac92xx_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Matt2f2f4252005-04-13 14:45:30 +0200708{
709 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
710 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +0200711 return snd_hda_input_mux_info(spec->input_mux, uinfo);
Matt2f2f4252005-04-13 14:45:30 +0200712}
713
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100714static int stac92xx_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Matt2f2f4252005-04-13 14:45:30 +0200715{
716 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
717 struct sigmatel_spec *spec = codec->spec;
718 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
719
720 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
721 return 0;
722}
723
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100724static int stac92xx_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Matt2f2f4252005-04-13 14:45:30 +0200725{
726 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
727 struct sigmatel_spec *spec = codec->spec;
728 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwai5207e102009-07-30 13:09:08 +0200729 const struct hda_input_mux *imux = spec->input_mux;
730 unsigned int idx, prev_idx;
Matt2f2f4252005-04-13 14:45:30 +0200731
Takashi Iwai5207e102009-07-30 13:09:08 +0200732 idx = ucontrol->value.enumerated.item[0];
733 if (idx >= imux->num_items)
734 idx = imux->num_items - 1;
735 prev_idx = spec->cur_mux[adc_idx];
736 if (prev_idx == idx)
737 return 0;
738 if (idx < spec->num_analog_muxes) {
739 snd_hda_codec_write_cache(codec, spec->mux_nids[adc_idx], 0,
740 AC_VERB_SET_CONNECT_SEL,
741 imux->items[idx].index);
742 if (prev_idx >= spec->num_analog_muxes) {
743 imux = spec->dinput_mux;
744 /* 0 = analog */
745 snd_hda_codec_write_cache(codec,
746 spec->dmux_nids[adc_idx], 0,
747 AC_VERB_SET_CONNECT_SEL,
748 imux->items[0].index);
749 }
750 } else {
751 imux = spec->dinput_mux;
752 snd_hda_codec_write_cache(codec, spec->dmux_nids[adc_idx], 0,
753 AC_VERB_SET_CONNECT_SEL,
754 imux->items[idx - 1].index);
755 }
756 spec->cur_mux[adc_idx] = idx;
757 return 1;
Matt2f2f4252005-04-13 14:45:30 +0200758}
759
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100760static int stac92xx_mono_mux_enum_info(struct snd_kcontrol *kcontrol,
761 struct snd_ctl_elem_info *uinfo)
762{
763 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
764 struct sigmatel_spec *spec = codec->spec;
765 return snd_hda_input_mux_info(spec->mono_mux, uinfo);
766}
767
768static int stac92xx_mono_mux_enum_get(struct snd_kcontrol *kcontrol,
769 struct snd_ctl_elem_value *ucontrol)
770{
771 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
772 struct sigmatel_spec *spec = codec->spec;
773
774 ucontrol->value.enumerated.item[0] = spec->cur_mmux;
775 return 0;
776}
777
778static int stac92xx_mono_mux_enum_put(struct snd_kcontrol *kcontrol,
779 struct snd_ctl_elem_value *ucontrol)
780{
781 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
782 struct sigmatel_spec *spec = codec->spec;
783
784 return snd_hda_input_mux_put(codec, spec->mono_mux, ucontrol,
785 spec->mono_nid, &spec->cur_mmux);
786}
787
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200788#define stac92xx_aloopback_info snd_ctl_boolean_mono_info
789
790static int stac92xx_aloopback_get(struct snd_kcontrol *kcontrol,
791 struct snd_ctl_elem_value *ucontrol)
792{
793 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100794 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200795 struct sigmatel_spec *spec = codec->spec;
796
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100797 ucontrol->value.integer.value[0] = !!(spec->aloopback &
798 (spec->aloopback_mask << idx));
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200799 return 0;
800}
801
802static int stac92xx_aloopback_put(struct snd_kcontrol *kcontrol,
803 struct snd_ctl_elem_value *ucontrol)
804{
805 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
806 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100807 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200808 unsigned int dac_mode;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100809 unsigned int val, idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200810
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100811 idx_val = spec->aloopback_mask << idx;
812 if (ucontrol->value.integer.value[0])
813 val = spec->aloopback | idx_val;
814 else
815 val = spec->aloopback & ~idx_val;
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100816 if (spec->aloopback == val)
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200817 return 0;
818
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100819 spec->aloopback = val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200820
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100821 /* Only return the bits defined by the shift value of the
822 * first two bytes of the mask
823 */
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200824 dac_mode = snd_hda_codec_read(codec, codec->afg, 0,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100825 kcontrol->private_value & 0xFFFF, 0x0);
826 dac_mode >>= spec->aloopback_shift;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200827
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100828 if (spec->aloopback & idx_val) {
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200829 snd_hda_power_up(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100830 dac_mode |= idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200831 } else {
832 snd_hda_power_down(codec);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100833 dac_mode &= ~idx_val;
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200834 }
835
836 snd_hda_codec_write_cache(codec, codec->afg, 0,
837 kcontrol->private_value >> 16, dac_mode);
838
839 return 1;
840}
841
Mattc7d4b2f2005-06-27 14:59:41 +0200842static struct hda_verb stac9200_core_init[] = {
Matt2f2f4252005-04-13 14:45:30 +0200843 /* set dac0mux for dac converter */
Mattc7d4b2f2005-06-27 14:59:41 +0200844 { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
Matt2f2f4252005-04-13 14:45:30 +0200845 {}
846};
847
Takashi Iwai1194b5b2007-10-10 10:04:26 +0200848static struct hda_verb stac9200_eapd_init[] = {
849 /* set dac0mux for dac converter */
850 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
851 {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
852 {}
853};
854
Matthew Ranostayd654a662008-03-14 08:46:51 +0100855static struct hda_verb dell_eq_core_init[] = {
856 /* set master volume to max value without distortion
857 * and direct control */
858 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec},
Matthew Ranostayd654a662008-03-14 08:46:51 +0100859 {}
860};
861
Takashi Iwaie2aec172009-09-02 01:00:05 +0200862static struct hda_verb stac92hd73xx_core_init[] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100863 /* set master volume and direct control */
864 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100865 {}
866};
867
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200868static struct hda_verb stac92hd83xxx_core_init[] = {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200869 /* power state controls amps */
870 { 0x01, AC_VERB_SET_EAPD, 1 << 2},
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -0200871 {}
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200872};
873
Matthew Ranostaye035b842007-11-06 11:53:55 +0100874static struct hda_verb stac92hd71bxx_core_init[] = {
875 /* set master volume and direct control */
876 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -0200877 {}
Matthew Ranostay541eee82007-12-14 12:08:04 +0100878};
879
Matthew Ranostayca8d33f2009-01-26 09:33:52 -0500880static struct hda_verb stac92hd71bxx_unmute_core_init[] = {
881 /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */
882 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Matthew Ranostaye035b842007-11-06 11:53:55 +0100883 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
884 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Matthew Ranostaye035b842007-11-06 11:53:55 +0100885 {}
886};
887
Tobin Davis8e21c342007-01-08 11:04:17 +0100888static struct hda_verb stac925x_core_init[] = {
889 /* set dac0mux for dac converter */
890 { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwaic9280d62009-01-15 17:31:00 +0100891 /* mute the master volume */
892 { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
Tobin Davis8e21c342007-01-08 11:04:17 +0100893 {}
894};
895
Mattc7d4b2f2005-06-27 14:59:41 +0200896static struct hda_verb stac922x_core_init[] = {
Matt2f2f4252005-04-13 14:45:30 +0200897 /* set master volume and direct control */
Mattc7d4b2f2005-06-27 14:59:41 +0200898 { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matt2f2f4252005-04-13 14:45:30 +0200899 {}
900};
901
Tobin Davis93ed1502006-09-01 21:03:12 +0200902static struct hda_verb d965_core_init[] = {
Takashi Iwai19039bd2006-06-28 15:52:16 +0200903 /* set master volume and direct control */
Tobin Davis93ed1502006-09-01 21:03:12 +0200904 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Takashi Iwai19039bd2006-06-28 15:52:16 +0200905 /* unmute node 0x1b */
906 { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
907 /* select node 0x03 as DAC */
908 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
909 {}
910};
911
Takashi Iwaiccca7cd2009-10-13 15:32:21 +0200912static struct hda_verb dell_3st_core_init[] = {
913 /* don't set delta bit */
914 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
915 /* unmute node 0x1b */
916 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
917 /* select node 0x03 as DAC */
918 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
919 {}
920};
921
Matt Porter3cc08dc2006-01-23 15:27:49 +0100922static struct hda_verb stac927x_core_init[] = {
923 /* set master volume and direct control */
924 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostay1cd22242008-07-18 18:20:52 +0200925 /* enable analog pc beep path */
926 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
Matt Porter3cc08dc2006-01-23 15:27:49 +0100927 {}
928};
929
Takashi Iwai54930532009-10-11 17:38:29 +0200930static struct hda_verb stac927x_volknob_core_init[] = {
931 /* don't set delta bit */
932 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
933 /* enable analog pc beep path */
934 {0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
935 {}
936};
937
Matt Porterf3302a52006-07-31 12:49:34 +0200938static struct hda_verb stac9205_core_init[] = {
939 /* set master volume and direct control */
940 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +0200941 /* enable analog pc beep path */
942 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
Matt Porterf3302a52006-07-31 12:49:34 +0200943 {}
944};
945
Matthew Ranostayb22b4822008-01-22 12:32:30 +0100946#define STAC_MONO_MUX \
947 { \
948 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
949 .name = "Mono Mux", \
950 .count = 1, \
951 .info = stac92xx_mono_mux_enum_info, \
952 .get = stac92xx_mono_mux_enum_get, \
953 .put = stac92xx_mono_mux_enum_put, \
954 }
955
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100956#define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200957 { \
958 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
959 .name = "Analog Loopback", \
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100960 .count = cnt, \
Maxim Levitsky5f10c4a2007-09-03 15:29:37 +0200961 .info = stac92xx_aloopback_info, \
962 .get = stac92xx_aloopback_get, \
963 .put = stac92xx_aloopback_put, \
964 .private_value = verb_read | (verb_write << 16), \
965 }
966
Nickolas Lloyd2fc99892009-05-15 15:33:30 +0200967#define DC_BIAS(xname, idx, nid) \
968 { \
969 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
970 .name = xname, \
971 .index = idx, \
972 .info = stac92xx_dc_bias_info, \
973 .get = stac92xx_dc_bias_get, \
974 .put = stac92xx_dc_bias_put, \
975 .private_value = nid, \
976 }
977
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100978static struct snd_kcontrol_new stac9200_mixer[] = {
Matt2f2f4252005-04-13 14:45:30 +0200979 HDA_CODEC_VOLUME("Master Playback Volume", 0xb, 0, HDA_OUTPUT),
980 HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT),
Matt2f2f4252005-04-13 14:45:30 +0200981 HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT),
982 HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT),
Matt2f2f4252005-04-13 14:45:30 +0200983 { } /* end */
984};
985
Takashi Iwaid78d7a92009-03-02 14:26:25 +0100986static struct snd_kcontrol_new stac92hd73xx_6ch_loopback[] = {
987 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3),
988 {}
989};
Matthew Ranostaye1f0d662007-12-13 17:47:21 +0100990
Takashi Iwaid78d7a92009-03-02 14:26:25 +0100991static struct snd_kcontrol_new stac92hd73xx_8ch_loopback[] = {
992 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4),
993 {}
994};
995
996static struct snd_kcontrol_new stac92hd73xx_10ch_loopback[] = {
997 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5),
998 {}
999};
1000
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001001
Takashi Iwaid78d7a92009-03-02 14:26:25 +01001002static struct snd_kcontrol_new stac92hd71bxx_loopback[] = {
1003 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2)
1004};
Matthew Ranostay541eee82007-12-14 12:08:04 +01001005
Tobin Davis8e21c342007-01-08 11:04:17 +01001006static struct snd_kcontrol_new stac925x_mixer[] = {
Takashi Iwaic9280d62009-01-15 17:31:00 +01001007 HDA_CODEC_VOLUME("Master Playback Volume", 0x0e, 0, HDA_OUTPUT),
1008 HDA_CODEC_MUTE("Master Playback Switch", 0x0e, 0, HDA_OUTPUT),
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02001009 { } /* end */
1010};
1011
Takashi Iwaid78d7a92009-03-02 14:26:25 +01001012static struct snd_kcontrol_new stac9205_loopback[] = {
1013 STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1),
1014 {}
1015};
1016
Takashi Iwaid78d7a92009-03-02 14:26:25 +01001017static struct snd_kcontrol_new stac927x_loopback[] = {
1018 STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1),
1019 {}
1020};
1021
Takashi Iwai1697055e2007-12-18 18:05:52 +01001022static struct snd_kcontrol_new stac_dmux_mixer = {
1023 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1024 .name = "Digital Input Source",
1025 /* count set later */
1026 .info = stac92xx_dmux_enum_info,
1027 .get = stac92xx_dmux_enum_get,
1028 .put = stac92xx_dmux_enum_put,
1029};
1030
Matthew Ranostayd9737752008-09-07 12:03:41 +02001031static struct snd_kcontrol_new stac_smux_mixer = {
1032 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Matthew Ranostaye3487972008-09-08 11:36:59 -04001033 .name = "IEC958 Playback Source",
Matthew Ranostayd9737752008-09-07 12:03:41 +02001034 /* count set later */
1035 .info = stac92xx_smux_enum_info,
1036 .get = stac92xx_smux_enum_get,
1037 .put = stac92xx_smux_enum_put,
1038};
1039
Takashi Iwai2134ea42008-01-10 16:53:55 +01001040static const char *slave_vols[] = {
1041 "Front Playback Volume",
1042 "Surround Playback Volume",
1043 "Center Playback Volume",
1044 "LFE Playback Volume",
1045 "Side Playback Volume",
1046 "Headphone Playback Volume",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001047 "Speaker Playback Volume",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001048 NULL
1049};
1050
1051static const char *slave_sws[] = {
1052 "Front Playback Switch",
1053 "Surround Playback Switch",
1054 "Center Playback Switch",
1055 "LFE Playback Switch",
1056 "Side Playback Switch",
1057 "Headphone Playback Switch",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001058 "Speaker Playback Switch",
Takashi Iwaiedb54a52008-01-29 12:47:02 +01001059 "IEC958 Playback Switch",
Takashi Iwai2134ea42008-01-10 16:53:55 +01001060 NULL
1061};
1062
Takashi Iwai603c4012008-07-30 15:01:44 +02001063static void stac92xx_free_kctls(struct hda_codec *codec);
Takashi Iwaie4973e12008-11-18 09:32:42 +01001064static int stac92xx_add_jack(struct hda_codec *codec, hda_nid_t nid, int type);
Takashi Iwai603c4012008-07-30 15:01:44 +02001065
Matt2f2f4252005-04-13 14:45:30 +02001066static int stac92xx_build_controls(struct hda_codec *codec)
1067{
1068 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaie4973e12008-11-18 09:32:42 +01001069 struct auto_pin_cfg *cfg = &spec->autocfg;
1070 hda_nid_t nid;
Matt2f2f4252005-04-13 14:45:30 +02001071 int err;
Mattc7d4b2f2005-06-27 14:59:41 +02001072 int i;
Matt2f2f4252005-04-13 14:45:30 +02001073
Takashi Iwai6479c632009-07-28 18:20:25 +02001074 if (spec->mixer) {
1075 err = snd_hda_add_new_ctls(codec, spec->mixer);
1076 if (err < 0)
1077 return err;
1078 }
Mattc7d4b2f2005-06-27 14:59:41 +02001079
1080 for (i = 0; i < spec->num_mixers; i++) {
1081 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1082 if (err < 0)
1083 return err;
1084 }
Takashi Iwai5207e102009-07-30 13:09:08 +02001085 if (!spec->auto_mic && spec->num_dmuxes > 0 &&
1086 snd_hda_get_bool_hint(codec, "separate_dmux") == 1) {
Takashi Iwai1697055e2007-12-18 18:05:52 +01001087 stac_dmux_mixer.count = spec->num_dmuxes;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001088 err = snd_hda_ctl_add(codec,
Takashi Iwai1697055e2007-12-18 18:05:52 +01001089 snd_ctl_new1(&stac_dmux_mixer, codec));
1090 if (err < 0)
1091 return err;
1092 }
Matthew Ranostayd9737752008-09-07 12:03:41 +02001093 if (spec->num_smuxes > 0) {
Matthew Ranostay00ef50c2008-09-27 18:13:47 -04001094 int wcaps = get_wcaps(codec, spec->multiout.dig_out_nid);
1095 struct hda_input_mux *smux = &spec->private_smux;
1096 /* check for mute support on SPDIF out */
1097 if (wcaps & AC_WCAP_OUT_AMP) {
1098 smux->items[smux->num_items].label = "Off";
1099 smux->items[smux->num_items].index = 0;
1100 smux->num_items++;
1101 spec->spdif_mute = 1;
1102 }
Matthew Ranostayd9737752008-09-07 12:03:41 +02001103 stac_smux_mixer.count = spec->num_smuxes;
Takashi Iwai4f2d23e2008-12-19 10:14:13 +01001104 err = snd_hda_ctl_add(codec,
Matthew Ranostayd9737752008-09-07 12:03:41 +02001105 snd_ctl_new1(&stac_smux_mixer, codec));
1106 if (err < 0)
1107 return err;
1108 }
Mattc7d4b2f2005-06-27 14:59:41 +02001109
Mattdabbed62005-06-14 10:19:34 +02001110 if (spec->multiout.dig_out_nid) {
1111 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
1112 if (err < 0)
1113 return err;
Takashi Iwai9a081602008-02-12 18:37:26 +01001114 err = snd_hda_create_spdif_share_sw(codec,
1115 &spec->multiout);
1116 if (err < 0)
1117 return err;
1118 spec->multiout.share_spdif = 1;
Mattdabbed62005-06-14 10:19:34 +02001119 }
Harvey Harrisonda74ae32008-10-21 20:28:04 -07001120 if (spec->dig_in_nid && !(spec->gpio_dir & 0x01)) {
Mattdabbed62005-06-14 10:19:34 +02001121 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1122 if (err < 0)
1123 return err;
1124 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001125
1126 /* if we have no master control, let's create it */
1127 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001128 unsigned int vmaster_tlv[4];
Takashi Iwai2134ea42008-01-10 16:53:55 +01001129 snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0],
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001130 HDA_OUTPUT, vmaster_tlv);
Takashi Iwai7c7767e2009-01-20 15:28:38 +01001131 /* correct volume offset */
1132 vmaster_tlv[2] += vmaster_tlv[3] * spec->volume_offset;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001133 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
Takashi Iwai1c82ed12008-02-18 13:05:50 +01001134 vmaster_tlv, slave_vols);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001135 if (err < 0)
1136 return err;
1137 }
1138 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1139 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1140 NULL, slave_sws);
1141 if (err < 0)
1142 return err;
1143 }
1144
Takashi Iwaid78d7a92009-03-02 14:26:25 +01001145 if (spec->aloopback_ctl &&
1146 snd_hda_get_bool_hint(codec, "loopback") == 1) {
1147 err = snd_hda_add_new_ctls(codec, spec->aloopback_ctl);
1148 if (err < 0)
1149 return err;
1150 }
1151
Takashi Iwai603c4012008-07-30 15:01:44 +02001152 stac92xx_free_kctls(codec); /* no longer needed */
Takashi Iwaie4973e12008-11-18 09:32:42 +01001153
1154 /* create jack input elements */
1155 if (spec->hp_detect) {
1156 for (i = 0; i < cfg->hp_outs; i++) {
1157 int type = SND_JACK_HEADPHONE;
1158 nid = cfg->hp_pins[i];
1159 /* jack detection */
1160 if (cfg->hp_outs == i)
1161 type |= SND_JACK_LINEOUT;
1162 err = stac92xx_add_jack(codec, nid, type);
1163 if (err < 0)
1164 return err;
1165 }
1166 }
1167 for (i = 0; i < cfg->line_outs; i++) {
1168 err = stac92xx_add_jack(codec, cfg->line_out_pins[i],
1169 SND_JACK_LINEOUT);
1170 if (err < 0)
1171 return err;
1172 }
1173 for (i = 0; i < AUTO_PIN_LAST; i++) {
1174 nid = cfg->input_pins[i];
1175 if (nid) {
1176 err = stac92xx_add_jack(codec, nid,
1177 SND_JACK_MICROPHONE);
1178 if (err < 0)
1179 return err;
1180 }
1181 }
1182
Mattdabbed62005-06-14 10:19:34 +02001183 return 0;
Matt2f2f4252005-04-13 14:45:30 +02001184}
1185
Matt Porter403d1942005-11-29 15:00:51 +01001186static unsigned int ref9200_pin_configs[8] = {
Mattdabbed62005-06-14 10:19:34 +02001187 0x01c47010, 0x01447010, 0x0221401f, 0x01114010,
Matt2f2f4252005-04-13 14:45:30 +02001188 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1189};
1190
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001191static unsigned int gateway9200_m4_pin_configs[8] = {
1192 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1193 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1194};
1195static unsigned int gateway9200_m4_2_pin_configs[8] = {
1196 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1197 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1198};
1199
1200/*
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001201 STAC 9200 pin configs for
1202 102801A8
1203 102801DE
1204 102801E8
1205*/
1206static unsigned int dell9200_d21_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001207 0x400001f0, 0x400001f1, 0x02214030, 0x01014010,
1208 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001209};
1210
1211/*
1212 STAC 9200 pin configs for
1213 102801C0
1214 102801C1
1215*/
1216static unsigned int dell9200_d22_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001217 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1218 0x01813020, 0x02a19021, 0x90100140, 0x400001f2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001219};
1220
1221/*
1222 STAC 9200 pin configs for
1223 102801C4 (Dell Dimension E310)
1224 102801C5
1225 102801C7
1226 102801D9
1227 102801DA
1228 102801E3
1229*/
1230static unsigned int dell9200_d23_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001231 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1232 0x01813020, 0x01a19021, 0x90100140, 0x400001f2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001233};
1234
1235
1236/*
1237 STAC 9200-32 pin configs for
1238 102801B5 (Dell Inspiron 630m)
1239 102801D8 (Dell Inspiron 640m)
1240*/
1241static unsigned int dell9200_m21_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001242 0x40c003fa, 0x03441340, 0x0321121f, 0x90170310,
1243 0x408003fb, 0x03a11020, 0x401003fc, 0x403003fd,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001244};
1245
1246/*
1247 STAC 9200-32 pin configs for
1248 102801C2 (Dell Latitude D620)
1249 102801C8
1250 102801CC (Dell Latitude D820)
1251 102801D4
1252 102801D6
1253*/
1254static unsigned int dell9200_m22_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001255 0x40c003fa, 0x0144131f, 0x0321121f, 0x90170310,
1256 0x90a70321, 0x03a11020, 0x401003fb, 0x40f000fc,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001257};
1258
1259/*
1260 STAC 9200-32 pin configs for
1261 102801CE (Dell XPS M1710)
1262 102801CF (Dell Precision M90)
1263*/
1264static unsigned int dell9200_m23_pin_configs[8] = {
1265 0x40c003fa, 0x01441340, 0x0421421f, 0x90170310,
1266 0x408003fb, 0x04a1102e, 0x90170311, 0x403003fc,
1267};
1268
1269/*
1270 STAC 9200-32 pin configs for
1271 102801C9
1272 102801CA
1273 102801CB (Dell Latitude 120L)
1274 102801D3
1275*/
1276static unsigned int dell9200_m24_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001277 0x40c003fa, 0x404003fb, 0x0321121f, 0x90170310,
1278 0x408003fc, 0x03a11020, 0x401003fd, 0x403003fe,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001279};
1280
1281/*
1282 STAC 9200-32 pin configs for
1283 102801BD (Dell Inspiron E1505n)
1284 102801EE
1285 102801EF
1286*/
1287static unsigned int dell9200_m25_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001288 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1289 0x408003fb, 0x04a11020, 0x401003fc, 0x403003fd,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001290};
1291
1292/*
1293 STAC 9200-32 pin configs for
1294 102801F5 (Dell Inspiron 1501)
1295 102801F6
1296*/
1297static unsigned int dell9200_m26_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001298 0x40c003fa, 0x404003fb, 0x0421121f, 0x90170310,
1299 0x408003fc, 0x04a11020, 0x401003fd, 0x403003fe,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001300};
1301
1302/*
1303 STAC 9200-32
1304 102801CD (Dell Inspiron E1705/9400)
1305*/
1306static unsigned int dell9200_m27_pin_configs[8] = {
Takashi Iwaiaf6c0162007-09-05 23:46:03 +02001307 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1308 0x90170310, 0x04a11020, 0x90170310, 0x40f003fc,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001309};
1310
Tobin Davisbf277782008-02-03 20:31:47 +01001311static unsigned int oqo9200_pin_configs[8] = {
1312 0x40c000f0, 0x404000f1, 0x0221121f, 0x02211210,
1313 0x90170111, 0x90a70120, 0x400000f2, 0x400000f3,
1314};
1315
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001316
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001317static unsigned int *stac9200_brd_tbl[STAC_9200_MODELS] = {
1318 [STAC_REF] = ref9200_pin_configs,
Tobin Davisbf277782008-02-03 20:31:47 +01001319 [STAC_9200_OQO] = oqo9200_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001320 [STAC_9200_DELL_D21] = dell9200_d21_pin_configs,
1321 [STAC_9200_DELL_D22] = dell9200_d22_pin_configs,
1322 [STAC_9200_DELL_D23] = dell9200_d23_pin_configs,
1323 [STAC_9200_DELL_M21] = dell9200_m21_pin_configs,
1324 [STAC_9200_DELL_M22] = dell9200_m22_pin_configs,
1325 [STAC_9200_DELL_M23] = dell9200_m23_pin_configs,
1326 [STAC_9200_DELL_M24] = dell9200_m24_pin_configs,
1327 [STAC_9200_DELL_M25] = dell9200_m25_pin_configs,
1328 [STAC_9200_DELL_M26] = dell9200_m26_pin_configs,
1329 [STAC_9200_DELL_M27] = dell9200_m27_pin_configs,
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001330 [STAC_9200_M4] = gateway9200_m4_pin_configs,
1331 [STAC_9200_M4_2] = gateway9200_m4_2_pin_configs,
Takashi Iwai117f2572008-03-18 09:53:23 +01001332 [STAC_9200_PANASONIC] = ref9200_pin_configs,
Matt Porter403d1942005-11-29 15:00:51 +01001333};
1334
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001335static const char *stac9200_models[STAC_9200_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01001336 [STAC_AUTO] = "auto",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001337 [STAC_REF] = "ref",
Tobin Davisbf277782008-02-03 20:31:47 +01001338 [STAC_9200_OQO] = "oqo",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001339 [STAC_9200_DELL_D21] = "dell-d21",
1340 [STAC_9200_DELL_D22] = "dell-d22",
1341 [STAC_9200_DELL_D23] = "dell-d23",
1342 [STAC_9200_DELL_M21] = "dell-m21",
1343 [STAC_9200_DELL_M22] = "dell-m22",
1344 [STAC_9200_DELL_M23] = "dell-m23",
1345 [STAC_9200_DELL_M24] = "dell-m24",
1346 [STAC_9200_DELL_M25] = "dell-m25",
1347 [STAC_9200_DELL_M26] = "dell-m26",
1348 [STAC_9200_DELL_M27] = "dell-m27",
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001349 [STAC_9200_M4] = "gateway-m4",
1350 [STAC_9200_M4_2] = "gateway-m4-2",
Takashi Iwai117f2572008-03-18 09:53:23 +01001351 [STAC_9200_PANASONIC] = "panasonic",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001352};
1353
1354static struct snd_pci_quirk stac9200_cfg_tbl[] = {
1355 /* SigmaTel reference board */
1356 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1357 "DFI LanParty", STAC_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001358 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1359 "DFI LanParty", STAC_REF),
Matt Portere7377072006-11-06 11:20:38 +01001360 /* Dell laptops have BIOS problem */
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001361 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8,
1362 "unknown Dell", STAC_9200_DELL_D21),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001363 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001364 "Dell Inspiron 630m", STAC_9200_DELL_M21),
1365 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd,
1366 "Dell Inspiron E1505n", STAC_9200_DELL_M25),
1367 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0,
1368 "unknown Dell", STAC_9200_DELL_D22),
1369 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1,
1370 "unknown Dell", STAC_9200_DELL_D22),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001371 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001372 "Dell Latitude D620", STAC_9200_DELL_M22),
1373 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5,
1374 "unknown Dell", STAC_9200_DELL_D23),
1375 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7,
1376 "unknown Dell", STAC_9200_DELL_D23),
1377 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8,
1378 "unknown Dell", STAC_9200_DELL_M22),
1379 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9,
1380 "unknown Dell", STAC_9200_DELL_M24),
1381 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca,
1382 "unknown Dell", STAC_9200_DELL_M24),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001383 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001384 "Dell Latitude 120L", STAC_9200_DELL_M24),
Cory T. Tusar877b8662007-01-30 17:30:55 +01001385 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001386 "Dell Latitude D820", STAC_9200_DELL_M22),
Mikael Nilsson46f02ca2007-02-13 12:46:16 +01001387 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001388 "Dell Inspiron E1705/9400", STAC_9200_DELL_M27),
Mikael Nilsson46f02ca2007-02-13 12:46:16 +01001389 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001390 "Dell XPS M1710", STAC_9200_DELL_M23),
Takashi Iwaif0f96742007-02-14 00:59:17 +01001391 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001392 "Dell Precision M90", STAC_9200_DELL_M23),
1393 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3,
1394 "unknown Dell", STAC_9200_DELL_M22),
1395 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4,
1396 "unknown Dell", STAC_9200_DELL_M22),
Daniel T Chen8286c532007-05-15 11:46:23 +02001397 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001398 "unknown Dell", STAC_9200_DELL_M22),
Tobin Davis49c605d2007-05-17 09:38:24 +02001399 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001400 "Dell Inspiron 640m", STAC_9200_DELL_M21),
1401 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9,
1402 "unknown Dell", STAC_9200_DELL_D23),
1403 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da,
1404 "unknown Dell", STAC_9200_DELL_D23),
1405 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de,
1406 "unknown Dell", STAC_9200_DELL_D21),
1407 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3,
1408 "unknown Dell", STAC_9200_DELL_D23),
1409 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8,
1410 "unknown Dell", STAC_9200_DELL_D21),
1411 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee,
1412 "unknown Dell", STAC_9200_DELL_M25),
1413 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef,
1414 "unknown Dell", STAC_9200_DELL_M25),
Tobin Davis49c605d2007-05-17 09:38:24 +02001415 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001416 "Dell Inspiron 1501", STAC_9200_DELL_M26),
1417 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6,
1418 "unknown Dell", STAC_9200_DELL_M26),
Tobin Davis49c605d2007-05-17 09:38:24 +02001419 /* Panasonic */
Takashi Iwai117f2572008-03-18 09:53:23 +01001420 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC),
Takashi Iwai1194b5b2007-10-10 10:04:26 +02001421 /* Gateway machines needs EAPD to be set on resume */
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001422 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4),
1423 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2),
1424 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2),
Tobin Davisbf277782008-02-03 20:31:47 +01001425 /* OQO Mobile */
1426 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO),
Matt Porter403d1942005-11-29 15:00:51 +01001427 {} /* terminator */
1428};
1429
Tobin Davis8e21c342007-01-08 11:04:17 +01001430static unsigned int ref925x_pin_configs[8] = {
1431 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021,
Matthew Ranostay09a99952008-01-24 11:49:21 +01001432 0x90a70320, 0x02214210, 0x01019020, 0x9033032e,
Tobin Davis8e21c342007-01-08 11:04:17 +01001433};
1434
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001435static unsigned int stac925xM1_pin_configs[8] = {
1436 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1437 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
Tobin Davis8e21c342007-01-08 11:04:17 +01001438};
1439
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001440static unsigned int stac925xM1_2_pin_configs[8] = {
1441 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1442 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1443};
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001444
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001445static unsigned int stac925xM2_pin_configs[8] = {
1446 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1447 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
Tobin Davis2c11f952007-05-17 09:36:34 +02001448};
1449
Tobin Davis8e21c342007-01-08 11:04:17 +01001450static unsigned int stac925xM2_2_pin_configs[8] = {
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001451 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1452 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1453};
1454
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001455static unsigned int stac925xM3_pin_configs[8] = {
1456 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1457 0x40a000f0, 0x90100210, 0x400003f1, 0x503303f3,
1458};
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001459
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001460static unsigned int stac925xM5_pin_configs[8] = {
1461 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1462 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1463};
1464
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001465static unsigned int stac925xM6_pin_configs[8] = {
1466 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1467 0x40a000f0, 0x90100210, 0x400003f1, 0x90330320,
Tobin Davis8e21c342007-01-08 11:04:17 +01001468};
1469
1470static unsigned int *stac925x_brd_tbl[STAC_925x_MODELS] = {
1471 [STAC_REF] = ref925x_pin_configs,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001472 [STAC_M1] = stac925xM1_pin_configs,
1473 [STAC_M1_2] = stac925xM1_2_pin_configs,
1474 [STAC_M2] = stac925xM2_pin_configs,
Tobin Davis8e21c342007-01-08 11:04:17 +01001475 [STAC_M2_2] = stac925xM2_2_pin_configs,
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001476 [STAC_M3] = stac925xM3_pin_configs,
1477 [STAC_M5] = stac925xM5_pin_configs,
1478 [STAC_M6] = stac925xM6_pin_configs,
Tobin Davis8e21c342007-01-08 11:04:17 +01001479};
1480
1481static const char *stac925x_models[STAC_925x_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01001482 [STAC_925x_AUTO] = "auto",
Tobin Davis8e21c342007-01-08 11:04:17 +01001483 [STAC_REF] = "ref",
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001484 [STAC_M1] = "m1",
1485 [STAC_M1_2] = "m1-2",
1486 [STAC_M2] = "m2",
Tobin Davis8e21c342007-01-08 11:04:17 +01001487 [STAC_M2_2] = "m2-2",
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001488 [STAC_M3] = "m3",
1489 [STAC_M5] = "m5",
1490 [STAC_M6] = "m6",
Tobin Davis8e21c342007-01-08 11:04:17 +01001491};
1492
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001493static struct snd_pci_quirk stac925x_codec_id_cfg_tbl[] = {
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02001494 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2),
1495 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5),
1496 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1),
1497 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001498 SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001499 /* Not sure about the brand name for those */
1500 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1),
1501 SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3),
1502 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6),
1503 SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001504 {} /* terminator */
Tobin Davis8e21c342007-01-08 11:04:17 +01001505};
1506
1507static struct snd_pci_quirk stac925x_cfg_tbl[] = {
1508 /* SigmaTel reference board */
1509 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001510 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, "DFI LanParty", STAC_REF),
Tobin Davis2c11f952007-05-17 09:36:34 +02001511 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF),
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02001512
1513 /* Default table for unknown ID */
1514 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2),
1515
Tobin Davis8e21c342007-01-08 11:04:17 +01001516 {} /* terminator */
1517};
1518
Matthew Ranostaya7662642008-02-21 07:51:14 +01001519static unsigned int ref92hd73xx_pin_configs[13] = {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001520 0x02214030, 0x02a19040, 0x01a19020, 0x02214030,
1521 0x0181302e, 0x01014010, 0x01014020, 0x01014030,
1522 0x02319040, 0x90a000f0, 0x90a000f0, 0x01452050,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001523 0x01452050,
1524};
1525
1526static unsigned int dell_m6_pin_configs[13] = {
1527 0x0321101f, 0x4f00000f, 0x4f0000f0, 0x90170110,
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02001528 0x03a11020, 0x0321101f, 0x4f0000f0, 0x4f0000f0,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001529 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1530 0x4f0000f0,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001531};
1532
Takashi Iwai842ae632009-09-02 07:43:08 +02001533static unsigned int alienware_m17x_pin_configs[13] = {
1534 0x0321101f, 0x0321101f, 0x03a11020, 0x03014020,
1535 0x90170110, 0x4f0000f0, 0x4f0000f0, 0x4f0000f0,
1536 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1537 0x904601b0,
1538};
1539
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001540static unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = {
Matthew Ranostaya7662642008-02-21 07:51:14 +01001541 [STAC_92HD73XX_REF] = ref92hd73xx_pin_configs,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001542 [STAC_DELL_M6_AMIC] = dell_m6_pin_configs,
1543 [STAC_DELL_M6_DMIC] = dell_m6_pin_configs,
1544 [STAC_DELL_M6_BOTH] = dell_m6_pin_configs,
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05001545 [STAC_DELL_EQ] = dell_m6_pin_configs,
Takashi Iwai842ae632009-09-02 07:43:08 +02001546 [STAC_ALIENWARE_M17X] = alienware_m17x_pin_configs,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001547};
1548
1549static const char *stac92hd73xx_models[STAC_92HD73XX_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01001550 [STAC_92HD73XX_AUTO] = "auto",
Takashi Iwai9e43f0d2008-12-17 14:51:01 +01001551 [STAC_92HD73XX_NO_JD] = "no-jd",
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001552 [STAC_92HD73XX_REF] = "ref",
Wu Fengguangae709442009-08-19 17:05:11 +08001553 [STAC_92HD73XX_INTEL] = "intel",
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001554 [STAC_DELL_M6_AMIC] = "dell-m6-amic",
1555 [STAC_DELL_M6_DMIC] = "dell-m6-dmic",
1556 [STAC_DELL_M6_BOTH] = "dell-m6",
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05001557 [STAC_DELL_EQ] = "dell-eq",
Takashi Iwai842ae632009-09-02 07:43:08 +02001558 [STAC_ALIENWARE_M17X] = "alienware",
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001559};
1560
1561static struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = {
1562 /* SigmaTel reference board */
1563 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001564 "DFI LanParty", STAC_92HD73XX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001565 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1566 "DFI LanParty", STAC_92HD73XX_REF),
Wu Fengguangae709442009-08-19 17:05:11 +08001567 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5002,
1568 "Intel DG45ID", STAC_92HD73XX_INTEL),
1569 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5003,
1570 "Intel DG45FC", STAC_92HD73XX_INTEL),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001571 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001572 "Dell Studio 1535", STAC_DELL_M6_DMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001573 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001574 "unknown Dell", STAC_DELL_M6_DMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001575 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001576 "unknown Dell", STAC_DELL_M6_BOTH),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001577 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001578 "unknown Dell", STAC_DELL_M6_BOTH),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001579 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001580 "unknown Dell", STAC_DELL_M6_AMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001581 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001582 "unknown Dell", STAC_DELL_M6_AMIC),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001583 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001584 "unknown Dell", STAC_DELL_M6_DMIC),
1585 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0272,
1586 "unknown Dell", STAC_DELL_M6_DMIC),
Takashi Iwaib0fc5e02008-11-21 08:37:03 +01001587 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x029f,
Takashi Iwai661cd8f2008-11-25 15:18:29 +01001588 "Dell Studio 1537", STAC_DELL_M6_DMIC),
Joerg Schirottkefa620e92008-12-19 08:13:49 +01001589 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a0,
1590 "Dell Studio 17", STAC_DELL_M6_DMIC),
Takashi Iwai626f5ce2009-07-28 00:54:39 +02001591 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02be,
1592 "Dell Studio 1555", STAC_DELL_M6_DMIC),
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001593 {} /* terminator */
1594};
1595
Takashi Iwai842ae632009-09-02 07:43:08 +02001596static struct snd_pci_quirk stac92hd73xx_codec_id_cfg_tbl[] = {
1597 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a1,
1598 "Alienware M17x", STAC_ALIENWARE_M17X),
1599 {} /* terminator */
1600};
1601
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001602static unsigned int ref92hd83xxx_pin_configs[10] = {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001603 0x02214030, 0x02211010, 0x02a19020, 0x02170130,
1604 0x01014050, 0x01819040, 0x01014020, 0x90a3014e,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001605 0x01451160, 0x98560170,
1606};
1607
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001608static unsigned int dell_s14_pin_configs[10] = {
Takashi Iwai69b56552009-09-15 12:37:42 +02001609 0x0221403f, 0x0221101f, 0x02a19020, 0x90170110,
1610 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a60160,
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001611 0x40f000f0, 0x40f000f0,
1612};
1613
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001614static unsigned int *stac92hd83xxx_brd_tbl[STAC_92HD83XXX_MODELS] = {
1615 [STAC_92HD83XXX_REF] = ref92hd83xxx_pin_configs,
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05001616 [STAC_92HD83XXX_PWR_REF] = ref92hd83xxx_pin_configs,
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001617 [STAC_DELL_S14] = dell_s14_pin_configs,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001618};
1619
1620static const char *stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01001621 [STAC_92HD83XXX_AUTO] = "auto",
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001622 [STAC_92HD83XXX_REF] = "ref",
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05001623 [STAC_92HD83XXX_PWR_REF] = "mic-ref",
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001624 [STAC_DELL_S14] = "dell-s14",
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001625};
1626
1627static struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = {
1628 /* SigmaTel reference board */
1629 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
Takashi Iwaif9d088b2009-01-13 11:54:49 +01001630 "DFI LanParty", STAC_92HD83XXX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001631 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1632 "DFI LanParty", STAC_92HD83XXX_REF),
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001633 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ba,
1634 "unknown Dell", STAC_DELL_S14),
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -02001635 {} /* terminator */
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001636};
1637
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001638static unsigned int ref92hd71bxx_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaye035b842007-11-06 11:53:55 +01001639 0x02214030, 0x02a19040, 0x01a19020, 0x01014010,
Matthew Ranostay4b33c762008-10-10 09:07:23 -04001640 0x0181302e, 0x01014010, 0x01019020, 0x90a000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001641 0x90a000f0, 0x01452050, 0x01452050, 0x00000000,
1642 0x00000000
Matthew Ranostaye035b842007-11-06 11:53:55 +01001643};
1644
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001645static unsigned int dell_m4_1_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaya7662642008-02-21 07:51:14 +01001646 0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110,
Matthew Ranostay07bcb312008-03-20 12:10:57 +01001647 0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001648 0x40f000f0, 0x4f0000f0, 0x4f0000f0, 0x00000000,
1649 0x00000000
Matthew Ranostaya7662642008-02-21 07:51:14 +01001650};
1651
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001652static unsigned int dell_m4_2_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaya7662642008-02-21 07:51:14 +01001653 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1654 0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001655 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1656 0x00000000
Matthew Ranostaya7662642008-02-21 07:51:14 +01001657};
1658
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001659static unsigned int dell_m4_3_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001660 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1661 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001662 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1663 0x00000000
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001664};
1665
Matthew Ranostaye035b842007-11-06 11:53:55 +01001666static unsigned int *stac92hd71bxx_brd_tbl[STAC_92HD71BXX_MODELS] = {
1667 [STAC_92HD71BXX_REF] = ref92hd71bxx_pin_configs,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001668 [STAC_DELL_M4_1] = dell_m4_1_pin_configs,
1669 [STAC_DELL_M4_2] = dell_m4_2_pin_configs,
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001670 [STAC_DELL_M4_3] = dell_m4_3_pin_configs,
Matthew Ranostay6a14f582008-09-12 12:02:30 -04001671 [STAC_HP_M4] = NULL,
Takashi Iwai1b0652e2009-01-14 08:27:35 +01001672 [STAC_HP_DV5] = NULL,
Christoph Plattnerae6241f2009-03-08 23:19:05 +01001673 [STAC_HP_HDX] = NULL,
James Gardiner514bf542009-05-03 04:00:44 -04001674 [STAC_HP_DV4_1222NR] = NULL,
Matthew Ranostaye035b842007-11-06 11:53:55 +01001675};
1676
1677static const char *stac92hd71bxx_models[STAC_92HD71BXX_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01001678 [STAC_92HD71BXX_AUTO] = "auto",
Matthew Ranostaye035b842007-11-06 11:53:55 +01001679 [STAC_92HD71BXX_REF] = "ref",
Matthew Ranostaya7662642008-02-21 07:51:14 +01001680 [STAC_DELL_M4_1] = "dell-m4-1",
1681 [STAC_DELL_M4_2] = "dell-m4-2",
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001682 [STAC_DELL_M4_3] = "dell-m4-3",
Matthew Ranostay6a14f582008-09-12 12:02:30 -04001683 [STAC_HP_M4] = "hp-m4",
Takashi Iwai1b0652e2009-01-14 08:27:35 +01001684 [STAC_HP_DV5] = "hp-dv5",
Christoph Plattnerae6241f2009-03-08 23:19:05 +01001685 [STAC_HP_HDX] = "hp-hdx",
James Gardiner514bf542009-05-03 04:00:44 -04001686 [STAC_HP_DV4_1222NR] = "hp-dv4-1222nr",
Matthew Ranostaye035b842007-11-06 11:53:55 +01001687};
1688
1689static struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = {
1690 /* SigmaTel reference board */
1691 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1692 "DFI LanParty", STAC_92HD71BXX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001693 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1694 "DFI LanParty", STAC_92HD71BXX_REF),
James Gardiner514bf542009-05-03 04:00:44 -04001695 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30fb,
1696 "HP dv4-1222nr", STAC_HP_DV4_1222NR),
Vitaliy Kulikov5bdaaad2009-11-04 07:57:45 +01001697 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x1720,
1698 "HP", STAC_HP_DV5),
Takashi Iwai58d83952009-03-13 17:04:34 +01001699 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3080,
1700 "HP", STAC_HP_DV5),
Takashi Iwai2ae466f2009-02-16 14:16:36 +01001701 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x30f0,
1702 "HP dv4-7", STAC_HP_DV5),
1703 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3600,
1704 "HP dv4-7", STAC_HP_DV5),
Takashi Iwai6fce61a2009-03-10 07:48:57 +01001705 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3610,
1706 "HP HDX", STAC_HP_HDX), /* HDX18 */
Matthew Ranostay9a9e2352008-09-26 10:37:03 -04001707 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a,
Takashi Iwai2ae466f2009-02-16 14:16:36 +01001708 "HP mini 1000", STAC_HP_M4),
Christoph Plattnerae6241f2009-03-08 23:19:05 +01001709 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361b,
Takashi Iwai6fce61a2009-03-10 07:48:57 +01001710 "HP HDX", STAC_HP_HDX), /* HDX16 */
Takashi Iwai6e34c032009-09-14 15:42:18 +02001711 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3620,
1712 "HP dv6", STAC_HP_DV5),
Takashi Iwai1972d022009-08-06 08:44:43 +02001713 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x7010,
1714 "HP", STAC_HP_DV5),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001715 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,
1716 "unknown Dell", STAC_DELL_M4_1),
1717 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234,
1718 "unknown Dell", STAC_DELL_M4_1),
1719 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250,
1720 "unknown Dell", STAC_DELL_M4_1),
1721 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f,
1722 "unknown Dell", STAC_DELL_M4_1),
1723 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d,
1724 "unknown Dell", STAC_DELL_M4_1),
1725 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251,
1726 "unknown Dell", STAC_DELL_M4_1),
1727 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277,
1728 "unknown Dell", STAC_DELL_M4_1),
1729 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263,
1730 "unknown Dell", STAC_DELL_M4_2),
1731 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265,
1732 "unknown Dell", STAC_DELL_M4_2),
1733 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262,
1734 "unknown Dell", STAC_DELL_M4_2),
1735 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264,
1736 "unknown Dell", STAC_DELL_M4_2),
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001737 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa,
1738 "unknown Dell", STAC_DELL_M4_3),
Matthew Ranostaye035b842007-11-06 11:53:55 +01001739 {} /* terminator */
1740};
1741
Matt Porter403d1942005-11-29 15:00:51 +01001742static unsigned int ref922x_pin_configs[10] = {
1743 0x01014010, 0x01016011, 0x01012012, 0x0221401f,
1744 0x01813122, 0x01011014, 0x01441030, 0x01c41030,
Matt2f2f4252005-04-13 14:45:30 +02001745 0x40000100, 0x40000100,
1746};
1747
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001748/*
1749 STAC 922X pin configs for
1750 102801A7
1751 102801AB
1752 102801A9
1753 102801D1
1754 102801D2
1755*/
1756static unsigned int dell_922x_d81_pin_configs[10] = {
1757 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1758 0x02a19020, 0x01117011, 0x400001f0, 0x400001f1,
1759 0x01813122, 0x400001f2,
1760};
1761
1762/*
1763 STAC 922X pin configs for
1764 102801AC
1765 102801D0
1766*/
1767static unsigned int dell_922x_d82_pin_configs[10] = {
1768 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1769 0x02a19020, 0x01117011, 0x01451140, 0x400001f0,
1770 0x01813122, 0x400001f1,
1771};
1772
1773/*
1774 STAC 922X pin configs for
1775 102801BF
1776*/
1777static unsigned int dell_922x_m81_pin_configs[10] = {
1778 0x0321101f, 0x01112024, 0x01111222, 0x91174220,
1779 0x03a11050, 0x01116221, 0x90a70330, 0x01452340,
1780 0x40C003f1, 0x405003f0,
1781};
1782
1783/*
1784 STAC 9221 A1 pin configs for
1785 102801D7 (Dell XPS M1210)
1786*/
1787static unsigned int dell_922x_m82_pin_configs[10] = {
Jiang Zhe7f9310c2007-11-12 12:43:37 +01001788 0x02211211, 0x408103ff, 0x02a1123e, 0x90100310,
1789 0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001790 0x508003f3, 0x405003f4,
1791};
1792
Matt Porter403d1942005-11-29 15:00:51 +01001793static unsigned int d945gtp3_pin_configs[10] = {
Matt Porter869264c2006-01-25 19:20:50 +01001794 0x0221401f, 0x01a19022, 0x01813021, 0x01014010,
Matt Porter403d1942005-11-29 15:00:51 +01001795 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1796 0x02a19120, 0x40000100,
1797};
1798
1799static unsigned int d945gtp5_pin_configs[10] = {
Matt Porter869264c2006-01-25 19:20:50 +01001800 0x0221401f, 0x01011012, 0x01813024, 0x01014010,
1801 0x01a19021, 0x01016011, 0x01452130, 0x40000100,
Matt Porter403d1942005-11-29 15:00:51 +01001802 0x02a19320, 0x40000100,
1803};
1804
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001805static unsigned int intel_mac_v1_pin_configs[10] = {
1806 0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd,
1807 0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240,
Takashi Iwai3fc24d82007-02-16 13:27:18 +01001808 0x400000fc, 0x400000fb,
1809};
1810
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001811static unsigned int intel_mac_v2_pin_configs[10] = {
1812 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1813 0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa,
Sylvain FORETf16928f2007-04-27 14:22:36 +02001814 0x400000fc, 0x400000fb,
1815};
1816
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001817static unsigned int intel_mac_v3_pin_configs[10] = {
1818 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1819 0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240,
1820 0x400000fc, 0x400000fb,
1821};
1822
1823static unsigned int intel_mac_v4_pin_configs[10] = {
1824 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1825 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1826 0x400000fc, 0x400000fb,
1827};
1828
1829static unsigned int intel_mac_v5_pin_configs[10] = {
1830 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1831 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1832 0x400000fc, 0x400000fb,
Takashi Iwai0dae0f82007-05-21 12:41:29 +02001833};
1834
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001835static unsigned int ecs202_pin_configs[10] = {
1836 0x0221401f, 0x02a19020, 0x01a19020, 0x01114010,
1837 0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1,
1838 0x9037012e, 0x40e000f2,
1839};
Takashi Iwai76c08822007-06-19 12:17:42 +02001840
Takashi Iwai19039bd2006-06-28 15:52:16 +02001841static unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001842 [STAC_D945_REF] = ref922x_pin_configs,
Takashi Iwai19039bd2006-06-28 15:52:16 +02001843 [STAC_D945GTP3] = d945gtp3_pin_configs,
1844 [STAC_D945GTP5] = d945gtp5_pin_configs,
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001845 [STAC_INTEL_MAC_V1] = intel_mac_v1_pin_configs,
1846 [STAC_INTEL_MAC_V2] = intel_mac_v2_pin_configs,
1847 [STAC_INTEL_MAC_V3] = intel_mac_v3_pin_configs,
1848 [STAC_INTEL_MAC_V4] = intel_mac_v4_pin_configs,
1849 [STAC_INTEL_MAC_V5] = intel_mac_v5_pin_configs,
Nicolas Boichat536319a2008-07-21 22:18:01 +08001850 [STAC_INTEL_MAC_AUTO] = intel_mac_v3_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001851 /* for backward compatibility */
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001852 [STAC_MACMINI] = intel_mac_v3_pin_configs,
1853 [STAC_MACBOOK] = intel_mac_v5_pin_configs,
1854 [STAC_MACBOOK_PRO_V1] = intel_mac_v3_pin_configs,
1855 [STAC_MACBOOK_PRO_V2] = intel_mac_v3_pin_configs,
1856 [STAC_IMAC_INTEL] = intel_mac_v2_pin_configs,
1857 [STAC_IMAC_INTEL_20] = intel_mac_v3_pin_configs,
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001858 [STAC_ECS_202] = ecs202_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001859 [STAC_922X_DELL_D81] = dell_922x_d81_pin_configs,
1860 [STAC_922X_DELL_D82] = dell_922x_d82_pin_configs,
1861 [STAC_922X_DELL_M81] = dell_922x_m81_pin_configs,
1862 [STAC_922X_DELL_M82] = dell_922x_m82_pin_configs,
Matt Porter403d1942005-11-29 15:00:51 +01001863};
1864
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001865static const char *stac922x_models[STAC_922X_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01001866 [STAC_922X_AUTO] = "auto",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001867 [STAC_D945_REF] = "ref",
1868 [STAC_D945GTP5] = "5stack",
1869 [STAC_D945GTP3] = "3stack",
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001870 [STAC_INTEL_MAC_V1] = "intel-mac-v1",
1871 [STAC_INTEL_MAC_V2] = "intel-mac-v2",
1872 [STAC_INTEL_MAC_V3] = "intel-mac-v3",
1873 [STAC_INTEL_MAC_V4] = "intel-mac-v4",
1874 [STAC_INTEL_MAC_V5] = "intel-mac-v5",
Nicolas Boichat536319a2008-07-21 22:18:01 +08001875 [STAC_INTEL_MAC_AUTO] = "intel-mac-auto",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001876 /* for backward compatibility */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001877 [STAC_MACMINI] = "macmini",
Takashi Iwai3fc24d82007-02-16 13:27:18 +01001878 [STAC_MACBOOK] = "macbook",
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01001879 [STAC_MACBOOK_PRO_V1] = "macbook-pro-v1",
1880 [STAC_MACBOOK_PRO_V2] = "macbook-pro",
Sylvain FORETf16928f2007-04-27 14:22:36 +02001881 [STAC_IMAC_INTEL] = "imac-intel",
Takashi Iwai0dae0f82007-05-21 12:41:29 +02001882 [STAC_IMAC_INTEL_20] = "imac-intel-20",
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001883 [STAC_ECS_202] = "ecs202",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001884 [STAC_922X_DELL_D81] = "dell-d81",
1885 [STAC_922X_DELL_D82] = "dell-d82",
1886 [STAC_922X_DELL_M81] = "dell-m81",
1887 [STAC_922X_DELL_M82] = "dell-m82",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001888};
1889
1890static struct snd_pci_quirk stac922x_cfg_tbl[] = {
1891 /* SigmaTel reference board */
1892 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1893 "DFI LanParty", STAC_D945_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001894 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1895 "DFI LanParty", STAC_D945_REF),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001896 /* Intel 945G based systems */
1897 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101,
1898 "Intel D945G", STAC_D945GTP3),
1899 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202,
1900 "Intel D945G", STAC_D945GTP3),
1901 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606,
1902 "Intel D945G", STAC_D945GTP3),
1903 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601,
1904 "Intel D945G", STAC_D945GTP3),
1905 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111,
1906 "Intel D945G", STAC_D945GTP3),
1907 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115,
1908 "Intel D945G", STAC_D945GTP3),
1909 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116,
1910 "Intel D945G", STAC_D945GTP3),
1911 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117,
1912 "Intel D945G", STAC_D945GTP3),
1913 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118,
1914 "Intel D945G", STAC_D945GTP3),
1915 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119,
1916 "Intel D945G", STAC_D945GTP3),
1917 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826,
1918 "Intel D945G", STAC_D945GTP3),
1919 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049,
1920 "Intel D945G", STAC_D945GTP3),
1921 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055,
1922 "Intel D945G", STAC_D945GTP3),
1923 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048,
1924 "Intel D945G", STAC_D945GTP3),
1925 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110,
1926 "Intel D945G", STAC_D945GTP3),
1927 /* Intel D945G 5-stack systems */
1928 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404,
1929 "Intel D945G", STAC_D945GTP5),
1930 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303,
1931 "Intel D945G", STAC_D945GTP5),
1932 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013,
1933 "Intel D945G", STAC_D945GTP5),
1934 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417,
1935 "Intel D945G", STAC_D945GTP5),
1936 /* Intel 945P based systems */
1937 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b,
1938 "Intel D945P", STAC_D945GTP3),
1939 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112,
1940 "Intel D945P", STAC_D945GTP3),
1941 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d,
1942 "Intel D945P", STAC_D945GTP3),
1943 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909,
1944 "Intel D945P", STAC_D945GTP3),
1945 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505,
1946 "Intel D945P", STAC_D945GTP3),
1947 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707,
1948 "Intel D945P", STAC_D945GTP5),
Takashi Iwai8056d472009-01-23 09:09:43 +01001949 /* other intel */
1950 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0204,
1951 "Intel D945", STAC_D945_REF),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001952 /* other systems */
Nicolas Boichat536319a2008-07-21 22:18:01 +08001953 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001954 SND_PCI_QUIRK(0x8384, 0x7680,
Nicolas Boichat536319a2008-07-21 22:18:01 +08001955 "Mac", STAC_INTEL_MAC_AUTO),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001956 /* Dell systems */
1957 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7,
1958 "unknown Dell", STAC_922X_DELL_D81),
1959 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9,
1960 "unknown Dell", STAC_922X_DELL_D81),
1961 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab,
1962 "unknown Dell", STAC_922X_DELL_D81),
1963 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac,
1964 "unknown Dell", STAC_922X_DELL_D82),
1965 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf,
1966 "unknown Dell", STAC_922X_DELL_M81),
1967 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0,
1968 "unknown Dell", STAC_922X_DELL_D82),
1969 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1,
1970 "unknown Dell", STAC_922X_DELL_D81),
1971 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2,
1972 "unknown Dell", STAC_922X_DELL_D81),
1973 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
1974 "Dell XPS M1210", STAC_922X_DELL_M82),
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001975 /* ECS/PC Chips boards */
Takashi Iwaidea0a502009-02-09 17:14:52 +01001976 SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000,
Herton Ronaldo Krzesinski8663ae52009-02-08 19:50:34 -02001977 "ECS/PC chips", STAC_ECS_202),
Matt Porter403d1942005-11-29 15:00:51 +01001978 {} /* terminator */
1979};
1980
Matt Porter3cc08dc2006-01-23 15:27:49 +01001981static unsigned int ref927x_pin_configs[14] = {
Tobin Davis93ed1502006-09-01 21:03:12 +02001982 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
1983 0x01a19040, 0x01011012, 0x01016011, 0x0101201f,
1984 0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070,
1985 0x01c42190, 0x40000100,
Matt Porter3cc08dc2006-01-23 15:27:49 +01001986};
1987
Tobin Davis93ed1502006-09-01 21:03:12 +02001988static unsigned int d965_3st_pin_configs[14] = {
Tobin Davis81d3dbd2006-08-22 19:44:45 +02001989 0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
1990 0x01a19021, 0x01813024, 0x40000100, 0x40000100,
1991 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1992 0x40000100, 0x40000100
1993};
1994
Tobin Davis93ed1502006-09-01 21:03:12 +02001995static unsigned int d965_5st_pin_configs[14] = {
1996 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
1997 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
1998 0x40000100, 0x40000100, 0x40000100, 0x01442070,
1999 0x40000100, 0x40000100
2000};
2001
Takashi Iwai679d92e2009-05-24 19:00:08 +02002002static unsigned int d965_5st_no_fp_pin_configs[14] = {
2003 0x40000100, 0x40000100, 0x0181304e, 0x01014010,
2004 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2005 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2006 0x40000100, 0x40000100
2007};
2008
Tobin Davis4ff076e2007-08-07 11:48:12 +02002009static unsigned int dell_3st_pin_configs[14] = {
2010 0x02211230, 0x02a11220, 0x01a19040, 0x01114210,
2011 0x01111212, 0x01116211, 0x01813050, 0x01112214,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002012 0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb,
Tobin Davis4ff076e2007-08-07 11:48:12 +02002013 0x40c003fc, 0x40000100
2014};
2015
Tobin Davis93ed1502006-09-01 21:03:12 +02002016static unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = {
Takashi Iwaie28d8322008-12-17 13:48:29 +01002017 [STAC_D965_REF_NO_JD] = ref927x_pin_configs,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002018 [STAC_D965_REF] = ref927x_pin_configs,
2019 [STAC_D965_3ST] = d965_3st_pin_configs,
2020 [STAC_D965_5ST] = d965_5st_pin_configs,
Takashi Iwai679d92e2009-05-24 19:00:08 +02002021 [STAC_D965_5ST_NO_FP] = d965_5st_no_fp_pin_configs,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002022 [STAC_DELL_3ST] = dell_3st_pin_configs,
2023 [STAC_DELL_BIOS] = NULL,
Takashi Iwai54930532009-10-11 17:38:29 +02002024 [STAC_927X_VOLKNOB] = NULL,
Matt Porter3cc08dc2006-01-23 15:27:49 +01002025};
2026
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002027static const char *stac927x_models[STAC_927X_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01002028 [STAC_927X_AUTO] = "auto",
Takashi Iwaie28d8322008-12-17 13:48:29 +01002029 [STAC_D965_REF_NO_JD] = "ref-no-jd",
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002030 [STAC_D965_REF] = "ref",
2031 [STAC_D965_3ST] = "3stack",
2032 [STAC_D965_5ST] = "5stack",
Takashi Iwai679d92e2009-05-24 19:00:08 +02002033 [STAC_D965_5ST_NO_FP] = "5stack-no-fp",
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002034 [STAC_DELL_3ST] = "dell-3stack",
2035 [STAC_DELL_BIOS] = "dell-bios",
Takashi Iwai54930532009-10-11 17:38:29 +02002036 [STAC_927X_VOLKNOB] = "volknob",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002037};
2038
2039static struct snd_pci_quirk stac927x_cfg_tbl[] = {
2040 /* SigmaTel reference board */
2041 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2042 "DFI LanParty", STAC_D965_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002043 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2044 "DFI LanParty", STAC_D965_REF),
Tobin Davis81d3dbd2006-08-22 19:44:45 +02002045 /* Intel 946 based systems */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002046 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST),
2047 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST),
Tobin Davis93ed1502006-09-01 21:03:12 +02002048 /* 965 based 3 stack systems */
Takashi Iwaidea0a502009-02-09 17:14:52 +01002049 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2100,
2050 "Intel D965", STAC_D965_3ST),
2051 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2000,
2052 "Intel D965", STAC_D965_3ST),
Tobin Davis4ff076e2007-08-07 11:48:12 +02002053 /* Dell 3 stack systems */
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002054 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f7, "Dell XPS M1730", STAC_DELL_3ST),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002055 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST),
Tobin Davis4ff076e2007-08-07 11:48:12 +02002056 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST),
2057 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002058 /* Dell 3 stack systems with verb table in BIOS */
Matthew Ranostay2f32d902008-01-10 13:06:26 +01002059 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS),
2060 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002061 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS),
Chengu Wang84d3dc22009-07-30 19:43:55 +08002062 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_BIOS),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002063 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS),
2064 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS),
2065 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS),
2066 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS),
Tobin Davis93ed1502006-09-01 21:03:12 +02002067 /* 965 based 5 stack systems */
Takashi Iwaidea0a502009-02-09 17:14:52 +01002068 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2300,
2069 "Intel D965", STAC_D965_5ST),
2070 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2500,
2071 "Intel D965", STAC_D965_5ST),
Takashi Iwai54930532009-10-11 17:38:29 +02002072 /* volume-knob fixes */
2073 SND_PCI_QUIRK_VENDOR(0x10cf, "FSC", STAC_927X_VOLKNOB),
Matt Porter3cc08dc2006-01-23 15:27:49 +01002074 {} /* terminator */
2075};
2076
Matt Porterf3302a52006-07-31 12:49:34 +02002077static unsigned int ref9205_pin_configs[12] = {
2078 0x40000100, 0x40000100, 0x01016011, 0x01014010,
Matthew Ranostay09a99952008-01-24 11:49:21 +01002079 0x01813122, 0x01a19021, 0x01019020, 0x40000100,
Matt Porter8b657272006-10-26 17:12:59 +02002080 0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030
Matt Porterf3302a52006-07-31 12:49:34 +02002081};
2082
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002083/*
2084 STAC 9205 pin configs for
2085 102801F1
2086 102801F2
2087 102801FC
2088 102801FD
2089 10280204
2090 1028021F
Matthew Ranostay3fa2ef72008-01-11 11:39:06 +01002091 10280228 (Dell Vostro 1500)
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002092*/
2093static unsigned int dell_9205_m42_pin_configs[12] = {
2094 0x0321101F, 0x03A11020, 0x400003FA, 0x90170310,
2095 0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9,
2096 0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE,
2097};
2098
2099/*
2100 STAC 9205 pin configs for
2101 102801F9
2102 102801FA
2103 102801FE
2104 102801FF (Dell Precision M4300)
2105 10280206
2106 10280200
2107 10280201
2108*/
2109static unsigned int dell_9205_m43_pin_configs[12] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002110 0x0321101f, 0x03a11020, 0x90a70330, 0x90170310,
2111 0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9,
2112 0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8,
2113};
2114
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002115static unsigned int dell_9205_m44_pin_configs[12] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002116 0x0421101f, 0x04a11020, 0x400003fa, 0x90170310,
2117 0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9,
2118 0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe,
2119};
2120
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002121static unsigned int *stac9205_brd_tbl[STAC_9205_MODELS] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002122 [STAC_9205_REF] = ref9205_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002123 [STAC_9205_DELL_M42] = dell_9205_m42_pin_configs,
2124 [STAC_9205_DELL_M43] = dell_9205_m43_pin_configs,
2125 [STAC_9205_DELL_M44] = dell_9205_m44_pin_configs,
Takashi Iwaid9a42682009-01-22 17:40:18 +01002126 [STAC_9205_EAPD] = NULL,
Matt Porterf3302a52006-07-31 12:49:34 +02002127};
2128
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002129static const char *stac9205_models[STAC_9205_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01002130 [STAC_9205_AUTO] = "auto",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002131 [STAC_9205_REF] = "ref",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002132 [STAC_9205_DELL_M42] = "dell-m42",
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002133 [STAC_9205_DELL_M43] = "dell-m43",
2134 [STAC_9205_DELL_M44] = "dell-m44",
Takashi Iwaid9a42682009-01-22 17:40:18 +01002135 [STAC_9205_EAPD] = "eapd",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002136};
2137
2138static struct snd_pci_quirk stac9205_cfg_tbl[] = {
2139 /* SigmaTel reference board */
2140 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2141 "DFI LanParty", STAC_9205_REF),
Herton Ronaldo Krzesinski02358fc2009-07-04 01:44:59 -03002142 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xfb30,
2143 "SigmaTel", STAC_9205_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002144 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2145 "DFI LanParty", STAC_9205_REF),
Takashi Iwaid9a42682009-01-22 17:40:18 +01002146 /* Dell */
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002147 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1,
2148 "unknown Dell", STAC_9205_DELL_M42),
2149 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2,
2150 "unknown Dell", STAC_9205_DELL_M42),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002151 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8,
Matthew Ranostayb44ef2f2007-09-18 00:52:38 +02002152 "Dell Precision", STAC_9205_DELL_M43),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002153 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9,
2154 "Dell Precision", STAC_9205_DELL_M43),
2155 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa,
2156 "Dell Precision", STAC_9205_DELL_M43),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002157 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc,
2158 "unknown Dell", STAC_9205_DELL_M42),
2159 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd,
2160 "unknown Dell", STAC_9205_DELL_M42),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002161 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe,
2162 "Dell Precision", STAC_9205_DELL_M43),
2163 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002164 "Dell Precision M4300", STAC_9205_DELL_M43),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002165 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204,
2166 "unknown Dell", STAC_9205_DELL_M42),
Takashi Iwai45499152008-06-12 16:27:24 +02002167 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206,
2168 "Dell Precision", STAC_9205_DELL_M43),
2169 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b,
2170 "Dell Precision", STAC_9205_DELL_M43),
2171 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c,
2172 "Dell Precision", STAC_9205_DELL_M43),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002173 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f,
2174 "Dell Inspiron", STAC_9205_DELL_M44),
Matthew Ranostay3fa2ef72008-01-11 11:39:06 +01002175 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228,
2176 "Dell Vostro 1500", STAC_9205_DELL_M42),
Takashi Iwaid9a42682009-01-22 17:40:18 +01002177 /* Gateway */
Hao Song42b95f02009-07-20 15:01:16 +08002178 SND_PCI_QUIRK(0x107b, 0x0560, "Gateway T6834c", STAC_9205_EAPD),
Takashi Iwaid9a42682009-01-22 17:40:18 +01002179 SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD),
Matt Porterf3302a52006-07-31 12:49:34 +02002180 {} /* terminator */
2181};
2182
Takashi Iwai330ee992009-02-20 14:33:36 +01002183static void stac92xx_set_config_regs(struct hda_codec *codec,
2184 unsigned int *pincfgs)
Matt2f2f4252005-04-13 14:45:30 +02002185{
2186 int i;
2187 struct sigmatel_spec *spec = codec->spec;
Matt2f2f4252005-04-13 14:45:30 +02002188
Takashi Iwai330ee992009-02-20 14:33:36 +01002189 if (!pincfgs)
2190 return;
Richard Fish11b44bb2006-08-23 18:31:34 +02002191
Matthew Ranostay87d48362007-07-17 11:52:24 +02002192 for (i = 0; i < spec->num_pins; i++)
Takashi Iwai330ee992009-02-20 14:33:36 +01002193 if (spec->pin_nids[i] && pincfgs[i])
2194 snd_hda_codec_set_pincfg(codec, spec->pin_nids[i],
2195 pincfgs[i]);
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01002196}
2197
Matt2f2f4252005-04-13 14:45:30 +02002198/*
2199 * Analog playback callbacks
2200 */
2201static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo,
2202 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002203 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002204{
2205 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002206 if (spec->stream_delay)
2207 msleep(spec->stream_delay);
Takashi Iwai9a081602008-02-12 18:37:26 +01002208 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2209 hinfo);
Matt2f2f4252005-04-13 14:45:30 +02002210}
2211
2212static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2213 struct hda_codec *codec,
2214 unsigned int stream_tag,
2215 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002216 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002217{
2218 struct sigmatel_spec *spec = codec->spec;
Matt Porter403d1942005-11-29 15:00:51 +01002219 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag, format, substream);
Matt2f2f4252005-04-13 14:45:30 +02002220}
2221
2222static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2223 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002224 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002225{
2226 struct sigmatel_spec *spec = codec->spec;
2227 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2228}
2229
2230/*
Mattdabbed62005-06-14 10:19:34 +02002231 * Digital playback callbacks
2232 */
2233static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2234 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002235 struct snd_pcm_substream *substream)
Mattdabbed62005-06-14 10:19:34 +02002236{
2237 struct sigmatel_spec *spec = codec->spec;
2238 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2239}
2240
2241static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2242 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002243 struct snd_pcm_substream *substream)
Mattdabbed62005-06-14 10:19:34 +02002244{
2245 struct sigmatel_spec *spec = codec->spec;
2246 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2247}
2248
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002249static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2250 struct hda_codec *codec,
2251 unsigned int stream_tag,
2252 unsigned int format,
2253 struct snd_pcm_substream *substream)
2254{
2255 struct sigmatel_spec *spec = codec->spec;
2256 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2257 stream_tag, format, substream);
2258}
2259
Takashi Iwai9411e212009-02-13 11:32:28 +01002260static int stac92xx_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2261 struct hda_codec *codec,
2262 struct snd_pcm_substream *substream)
2263{
2264 struct sigmatel_spec *spec = codec->spec;
2265 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2266}
2267
Mattdabbed62005-06-14 10:19:34 +02002268
2269/*
Matt2f2f4252005-04-13 14:45:30 +02002270 * Analog capture callbacks
2271 */
2272static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2273 struct hda_codec *codec,
2274 unsigned int stream_tag,
2275 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002276 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002277{
2278 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002279 hda_nid_t nid = spec->adc_nids[substream->number];
Matt2f2f4252005-04-13 14:45:30 +02002280
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002281 if (spec->powerdown_adcs) {
2282 msleep(40);
Takashi Iwai8c2f7672008-12-01 11:54:35 +01002283 snd_hda_codec_write(codec, nid, 0,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002284 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
2285 }
2286 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Matt2f2f4252005-04-13 14:45:30 +02002287 return 0;
2288}
2289
2290static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2291 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002292 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002293{
2294 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002295 hda_nid_t nid = spec->adc_nids[substream->number];
Matt2f2f4252005-04-13 14:45:30 +02002296
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002297 snd_hda_codec_cleanup_stream(codec, nid);
2298 if (spec->powerdown_adcs)
Takashi Iwai8c2f7672008-12-01 11:54:35 +01002299 snd_hda_codec_write(codec, nid, 0,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002300 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
Matt2f2f4252005-04-13 14:45:30 +02002301 return 0;
2302}
2303
Mattdabbed62005-06-14 10:19:34 +02002304static struct hda_pcm_stream stac92xx_pcm_digital_playback = {
2305 .substreams = 1,
2306 .channels_min = 2,
2307 .channels_max = 2,
2308 /* NID is set in stac92xx_build_pcms */
2309 .ops = {
2310 .open = stac92xx_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002311 .close = stac92xx_dig_playback_pcm_close,
Takashi Iwai9411e212009-02-13 11:32:28 +01002312 .prepare = stac92xx_dig_playback_pcm_prepare,
2313 .cleanup = stac92xx_dig_playback_pcm_cleanup
Mattdabbed62005-06-14 10:19:34 +02002314 },
2315};
2316
2317static struct hda_pcm_stream stac92xx_pcm_digital_capture = {
2318 .substreams = 1,
2319 .channels_min = 2,
2320 .channels_max = 2,
2321 /* NID is set in stac92xx_build_pcms */
2322};
2323
Matt2f2f4252005-04-13 14:45:30 +02002324static struct hda_pcm_stream stac92xx_pcm_analog_playback = {
2325 .substreams = 1,
2326 .channels_min = 2,
Mattc7d4b2f2005-06-27 14:59:41 +02002327 .channels_max = 8,
Matt2f2f4252005-04-13 14:45:30 +02002328 .nid = 0x02, /* NID to query formats and rates */
2329 .ops = {
2330 .open = stac92xx_playback_pcm_open,
2331 .prepare = stac92xx_playback_pcm_prepare,
2332 .cleanup = stac92xx_playback_pcm_cleanup
2333 },
2334};
2335
Matt Porter3cc08dc2006-01-23 15:27:49 +01002336static struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = {
2337 .substreams = 1,
2338 .channels_min = 2,
2339 .channels_max = 2,
2340 .nid = 0x06, /* NID to query formats and rates */
2341 .ops = {
2342 .open = stac92xx_playback_pcm_open,
2343 .prepare = stac92xx_playback_pcm_prepare,
2344 .cleanup = stac92xx_playback_pcm_cleanup
2345 },
2346};
2347
Matt2f2f4252005-04-13 14:45:30 +02002348static struct hda_pcm_stream stac92xx_pcm_analog_capture = {
Matt2f2f4252005-04-13 14:45:30 +02002349 .channels_min = 2,
2350 .channels_max = 2,
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02002351 /* NID + .substreams is set in stac92xx_build_pcms */
Matt2f2f4252005-04-13 14:45:30 +02002352 .ops = {
2353 .prepare = stac92xx_capture_pcm_prepare,
2354 .cleanup = stac92xx_capture_pcm_cleanup
2355 },
2356};
2357
2358static int stac92xx_build_pcms(struct hda_codec *codec)
2359{
2360 struct sigmatel_spec *spec = codec->spec;
2361 struct hda_pcm *info = spec->pcm_rec;
2362
2363 codec->num_pcms = 1;
2364 codec->pcm_info = info;
2365
Mattc7d4b2f2005-06-27 14:59:41 +02002366 info->name = "STAC92xx Analog";
Matt2f2f4252005-04-13 14:45:30 +02002367 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback;
Takashi Iwai00a602d2009-01-23 11:55:42 +01002368 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2369 spec->multiout.dac_nids[0];
Matt2f2f4252005-04-13 14:45:30 +02002370 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture;
Matt Porter3cc08dc2006-01-23 15:27:49 +01002371 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02002372 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adcs;
Matt Porter3cc08dc2006-01-23 15:27:49 +01002373
2374 if (spec->alt_switch) {
2375 codec->num_pcms++;
2376 info++;
2377 info->name = "STAC92xx Analog Alt";
2378 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback;
2379 }
Matt2f2f4252005-04-13 14:45:30 +02002380
Mattdabbed62005-06-14 10:19:34 +02002381 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2382 codec->num_pcms++;
2383 info++;
2384 info->name = "STAC92xx Digital";
Takashi Iwai0852d7a2009-02-11 11:35:15 +01002385 info->pcm_type = spec->autocfg.dig_out_type[0];
Mattdabbed62005-06-14 10:19:34 +02002386 if (spec->multiout.dig_out_nid) {
2387 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback;
2388 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2389 }
2390 if (spec->dig_in_nid) {
2391 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture;
2392 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2393 }
2394 }
2395
Matt2f2f4252005-04-13 14:45:30 +02002396 return 0;
2397}
2398
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002399static unsigned int stac92xx_get_default_vref(struct hda_codec *codec,
2400 hda_nid_t nid)
Takashi Iwaic960a032006-03-23 17:06:28 +01002401{
Takashi Iwai1327a322009-03-23 13:07:47 +01002402 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwaic960a032006-03-23 17:06:28 +01002403 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
2404 if (pincap & AC_PINCAP_VREF_100)
2405 return AC_PINCTL_VREF_100;
2406 if (pincap & AC_PINCAP_VREF_80)
2407 return AC_PINCTL_VREF_80;
2408 if (pincap & AC_PINCAP_VREF_50)
2409 return AC_PINCTL_VREF_50;
2410 if (pincap & AC_PINCAP_VREF_GRD)
2411 return AC_PINCTL_VREF_GRD;
2412 return 0;
2413}
2414
Matt Porter403d1942005-11-29 15:00:51 +01002415static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type)
2416
2417{
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002418 snd_hda_codec_write_cache(codec, nid, 0,
2419 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
Matt Porter403d1942005-11-29 15:00:51 +01002420}
2421
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002422#define stac92xx_hp_switch_info snd_ctl_boolean_mono_info
2423
2424static int stac92xx_hp_switch_get(struct snd_kcontrol *kcontrol,
2425 struct snd_ctl_elem_value *ucontrol)
2426{
2427 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2428 struct sigmatel_spec *spec = codec->spec;
2429
Takashi Iwaid7a89432008-11-12 09:48:04 +01002430 ucontrol->value.integer.value[0] = !!spec->hp_switch;
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002431 return 0;
2432}
2433
Takashi Iwai62558ce2009-07-29 14:23:09 +02002434static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid);
Takashi Iwaic6e4c662008-11-25 11:58:19 +01002435
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002436static int stac92xx_hp_switch_put(struct snd_kcontrol *kcontrol,
2437 struct snd_ctl_elem_value *ucontrol)
2438{
2439 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2440 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaid7a89432008-11-12 09:48:04 +01002441 int nid = kcontrol->private_value;
2442
2443 spec->hp_switch = ucontrol->value.integer.value[0] ? nid : 0;
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002444
2445 /* check to be sure that the ports are upto date with
2446 * switch changes
2447 */
Takashi Iwai62558ce2009-07-29 14:23:09 +02002448 stac_issue_unsol_event(codec, nid);
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002449
2450 return 1;
2451}
2452
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002453static int stac92xx_dc_bias_info(struct snd_kcontrol *kcontrol,
2454 struct snd_ctl_elem_info *uinfo)
2455{
2456 int i;
2457 static char *texts[] = {
2458 "Mic In", "Line In", "Line Out"
2459 };
2460
2461 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2462 struct sigmatel_spec *spec = codec->spec;
2463 hda_nid_t nid = kcontrol->private_value;
2464
2465 if (nid == spec->mic_switch || nid == spec->line_switch)
2466 i = 3;
2467 else
2468 i = 2;
2469
2470 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2471 uinfo->value.enumerated.items = i;
2472 uinfo->count = 1;
2473 if (uinfo->value.enumerated.item >= i)
2474 uinfo->value.enumerated.item = i-1;
2475 strcpy(uinfo->value.enumerated.name,
2476 texts[uinfo->value.enumerated.item]);
2477
2478 return 0;
2479}
2480
2481static int stac92xx_dc_bias_get(struct snd_kcontrol *kcontrol,
2482 struct snd_ctl_elem_value *ucontrol)
2483{
2484 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2485 hda_nid_t nid = kcontrol->private_value;
2486 unsigned int vref = stac92xx_vref_get(codec, nid);
2487
2488 if (vref == stac92xx_get_default_vref(codec, nid))
2489 ucontrol->value.enumerated.item[0] = 0;
2490 else if (vref == AC_PINCTL_VREF_GRD)
2491 ucontrol->value.enumerated.item[0] = 1;
2492 else if (vref == AC_PINCTL_VREF_HIZ)
2493 ucontrol->value.enumerated.item[0] = 2;
2494
2495 return 0;
2496}
2497
2498static int stac92xx_dc_bias_put(struct snd_kcontrol *kcontrol,
2499 struct snd_ctl_elem_value *ucontrol)
2500{
2501 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2502 unsigned int new_vref = 0;
Takashi Iwaib8621512009-06-22 08:00:10 +02002503 int error;
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002504 hda_nid_t nid = kcontrol->private_value;
2505
2506 if (ucontrol->value.enumerated.item[0] == 0)
2507 new_vref = stac92xx_get_default_vref(codec, nid);
2508 else if (ucontrol->value.enumerated.item[0] == 1)
2509 new_vref = AC_PINCTL_VREF_GRD;
2510 else if (ucontrol->value.enumerated.item[0] == 2)
2511 new_vref = AC_PINCTL_VREF_HIZ;
2512 else
2513 return 0;
2514
2515 if (new_vref != stac92xx_vref_get(codec, nid)) {
2516 error = stac92xx_vref_set(codec, nid, new_vref);
2517 return error;
2518 }
2519
2520 return 0;
2521}
2522
2523static int stac92xx_io_switch_info(struct snd_kcontrol *kcontrol,
2524 struct snd_ctl_elem_info *uinfo)
2525{
2526 static char *texts[2];
2527 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2528 struct sigmatel_spec *spec = codec->spec;
2529
2530 if (kcontrol->private_value == spec->line_switch)
2531 texts[0] = "Line In";
2532 else
2533 texts[0] = "Mic In";
2534 texts[1] = "Line Out";
2535 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2536 uinfo->value.enumerated.items = 2;
2537 uinfo->count = 1;
2538
2539 if (uinfo->value.enumerated.item >= 2)
2540 uinfo->value.enumerated.item = 1;
2541 strcpy(uinfo->value.enumerated.name,
2542 texts[uinfo->value.enumerated.item]);
2543
2544 return 0;
2545}
Matt Porter403d1942005-11-29 15:00:51 +01002546
2547static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2548{
2549 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2550 struct sigmatel_spec *spec = codec->spec;
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002551 hda_nid_t nid = kcontrol->private_value;
2552 int io_idx = (nid == spec->mic_switch) ? 1 : 0;
Matt Porter403d1942005-11-29 15:00:51 +01002553
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002554 ucontrol->value.enumerated.item[0] = spec->io_switch[io_idx];
Matt Porter403d1942005-11-29 15:00:51 +01002555 return 0;
2556}
2557
2558static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2559{
2560 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2561 struct sigmatel_spec *spec = codec->spec;
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002562 hda_nid_t nid = kcontrol->private_value;
2563 int io_idx = (nid == spec->mic_switch) ? 1 : 0;
2564 unsigned short val = !!ucontrol->value.enumerated.item[0];
Matt Porter403d1942005-11-29 15:00:51 +01002565
2566 spec->io_switch[io_idx] = val;
2567
2568 if (val)
2569 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
Takashi Iwaic960a032006-03-23 17:06:28 +01002570 else {
2571 unsigned int pinctl = AC_PINCTL_IN_EN;
2572 if (io_idx) /* set VREF for mic */
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002573 pinctl |= stac92xx_get_default_vref(codec, nid);
Takashi Iwaic960a032006-03-23 17:06:28 +01002574 stac92xx_auto_set_pinctl(codec, nid, pinctl);
2575 }
Jiang Zhe40c1d302007-11-12 13:05:16 +01002576
2577 /* check the auto-mute again: we need to mute/unmute the speaker
2578 * appropriately according to the pin direction
2579 */
2580 if (spec->hp_detect)
Takashi Iwai62558ce2009-07-29 14:23:09 +02002581 stac_issue_unsol_event(codec, nid);
Jiang Zhe40c1d302007-11-12 13:05:16 +01002582
Matt Porter403d1942005-11-29 15:00:51 +01002583 return 1;
2584}
2585
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002586#define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info
2587
2588static int stac92xx_clfe_switch_get(struct snd_kcontrol *kcontrol,
2589 struct snd_ctl_elem_value *ucontrol)
2590{
2591 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2592 struct sigmatel_spec *spec = codec->spec;
2593
2594 ucontrol->value.integer.value[0] = spec->clfe_swap;
2595 return 0;
2596}
2597
2598static int stac92xx_clfe_switch_put(struct snd_kcontrol *kcontrol,
2599 struct snd_ctl_elem_value *ucontrol)
2600{
2601 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2602 struct sigmatel_spec *spec = codec->spec;
2603 hda_nid_t nid = kcontrol->private_value & 0xff;
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002604 unsigned int val = !!ucontrol->value.integer.value[0];
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002605
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002606 if (spec->clfe_swap == val)
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002607 return 0;
2608
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002609 spec->clfe_swap = val;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002610
2611 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
2612 spec->clfe_swap ? 0x4 : 0x0);
2613
2614 return 1;
2615}
2616
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002617#define STAC_CODEC_HP_SWITCH(xname) \
2618 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2619 .name = xname, \
2620 .index = 0, \
2621 .info = stac92xx_hp_switch_info, \
2622 .get = stac92xx_hp_switch_get, \
2623 .put = stac92xx_hp_switch_put, \
2624 }
2625
Matt Porter403d1942005-11-29 15:00:51 +01002626#define STAC_CODEC_IO_SWITCH(xname, xpval) \
2627 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2628 .name = xname, \
2629 .index = 0, \
2630 .info = stac92xx_io_switch_info, \
2631 .get = stac92xx_io_switch_get, \
2632 .put = stac92xx_io_switch_put, \
2633 .private_value = xpval, \
2634 }
2635
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002636#define STAC_CODEC_CLFE_SWITCH(xname, xpval) \
2637 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2638 .name = xname, \
2639 .index = 0, \
2640 .info = stac92xx_clfe_switch_info, \
2641 .get = stac92xx_clfe_switch_get, \
2642 .put = stac92xx_clfe_switch_put, \
2643 .private_value = xpval, \
2644 }
Matt Porter403d1942005-11-29 15:00:51 +01002645
Mattc7d4b2f2005-06-27 14:59:41 +02002646enum {
2647 STAC_CTL_WIDGET_VOL,
2648 STAC_CTL_WIDGET_MUTE,
Matthew Ranostay09a99952008-01-24 11:49:21 +01002649 STAC_CTL_WIDGET_MONO_MUX,
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002650 STAC_CTL_WIDGET_HP_SWITCH,
Matt Porter403d1942005-11-29 15:00:51 +01002651 STAC_CTL_WIDGET_IO_SWITCH,
Nickolas Lloyd2fc99892009-05-15 15:33:30 +02002652 STAC_CTL_WIDGET_CLFE_SWITCH,
2653 STAC_CTL_WIDGET_DC_BIAS
Mattc7d4b2f2005-06-27 14:59:41 +02002654};
2655
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002656static struct snd_kcontrol_new stac92xx_control_templates[] = {
Mattc7d4b2f2005-06-27 14:59:41 +02002657 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2658 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Matthew Ranostay09a99952008-01-24 11:49:21 +01002659 STAC_MONO_MUX,
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002660 STAC_CODEC_HP_SWITCH(NULL),
Matt Porter403d1942005-11-29 15:00:51 +01002661 STAC_CODEC_IO_SWITCH(NULL, 0),
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002662 STAC_CODEC_CLFE_SWITCH(NULL, 0),
Nickolas Lloyd2fc99892009-05-15 15:33:30 +02002663 DC_BIAS(NULL, 0, 0),
Mattc7d4b2f2005-06-27 14:59:41 +02002664};
2665
2666/* add dynamic controls */
Takashi Iwaie3c75962009-01-23 11:57:22 +01002667static struct snd_kcontrol_new *
2668stac_control_new(struct sigmatel_spec *spec,
2669 struct snd_kcontrol_new *ktemp,
2670 const char *name)
Mattc7d4b2f2005-06-27 14:59:41 +02002671{
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002672 struct snd_kcontrol_new *knew;
Mattc7d4b2f2005-06-27 14:59:41 +02002673
Takashi Iwai603c4012008-07-30 15:01:44 +02002674 snd_array_init(&spec->kctls, sizeof(*knew), 32);
2675 knew = snd_array_new(&spec->kctls);
2676 if (!knew)
Takashi Iwaie3c75962009-01-23 11:57:22 +01002677 return NULL;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002678 *knew = *ktemp;
Takashi Iwai82fe0c52005-06-30 10:54:33 +02002679 knew->name = kstrdup(name, GFP_KERNEL);
Takashi Iwaie3c75962009-01-23 11:57:22 +01002680 if (!knew->name) {
2681 /* roolback */
2682 memset(knew, 0, sizeof(*knew));
2683 spec->kctls.alloced--;
2684 return NULL;
2685 }
2686 return knew;
2687}
2688
2689static int stac92xx_add_control_temp(struct sigmatel_spec *spec,
2690 struct snd_kcontrol_new *ktemp,
2691 int idx, const char *name,
2692 unsigned long val)
2693{
2694 struct snd_kcontrol_new *knew = stac_control_new(spec, ktemp, name);
2695 if (!knew)
Mattc7d4b2f2005-06-27 14:59:41 +02002696 return -ENOMEM;
Takashi Iwaie3c75962009-01-23 11:57:22 +01002697 knew->index = idx;
Mattc7d4b2f2005-06-27 14:59:41 +02002698 knew->private_value = val;
Mattc7d4b2f2005-06-27 14:59:41 +02002699 return 0;
2700}
2701
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002702static inline int stac92xx_add_control_idx(struct sigmatel_spec *spec,
2703 int type, int idx, const char *name,
2704 unsigned long val)
2705{
2706 return stac92xx_add_control_temp(spec,
2707 &stac92xx_control_templates[type],
2708 idx, name, val);
2709}
2710
Matthew Ranostay4682eee2008-08-15 07:43:24 +02002711
2712/* add dynamic controls */
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002713static inline int stac92xx_add_control(struct sigmatel_spec *spec, int type,
2714 const char *name, unsigned long val)
Matthew Ranostay4682eee2008-08-15 07:43:24 +02002715{
2716 return stac92xx_add_control_idx(spec, type, 0, name, val);
2717}
2718
Takashi Iwaie3c75962009-01-23 11:57:22 +01002719static struct snd_kcontrol_new stac_input_src_temp = {
2720 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2721 .name = "Input Source",
2722 .info = stac92xx_mux_enum_info,
2723 .get = stac92xx_mux_enum_get,
2724 .put = stac92xx_mux_enum_put,
2725};
2726
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002727static inline int stac92xx_add_jack_mode_control(struct hda_codec *codec,
2728 hda_nid_t nid, int idx)
2729{
2730 int def_conf = snd_hda_codec_get_pincfg(codec, nid);
2731 int control = 0;
2732 struct sigmatel_spec *spec = codec->spec;
2733 char name[22];
2734
2735 if (!((get_defcfg_connect(def_conf)) & AC_JACK_PORT_FIXED)) {
2736 if (stac92xx_get_default_vref(codec, nid) == AC_PINCTL_VREF_GRD
2737 && nid == spec->line_switch)
2738 control = STAC_CTL_WIDGET_IO_SWITCH;
2739 else if (snd_hda_query_pin_caps(codec, nid)
2740 & (AC_PINCAP_VREF_GRD << AC_PINCAP_VREF_SHIFT))
2741 control = STAC_CTL_WIDGET_DC_BIAS;
2742 else if (nid == spec->mic_switch)
2743 control = STAC_CTL_WIDGET_IO_SWITCH;
2744 }
2745
2746 if (control) {
2747 strcpy(name, auto_pin_cfg_labels[idx]);
2748 return stac92xx_add_control(codec->spec, control,
2749 strcat(name, " Jack Mode"), nid);
2750 }
2751
2752 return 0;
2753}
2754
Takashi Iwaie3c75962009-01-23 11:57:22 +01002755static int stac92xx_add_input_source(struct sigmatel_spec *spec)
2756{
2757 struct snd_kcontrol_new *knew;
2758 struct hda_input_mux *imux = &spec->private_imux;
2759
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02002760 if (spec->auto_mic)
2761 return 0; /* no need for input source */
Takashi Iwaie3c75962009-01-23 11:57:22 +01002762 if (!spec->num_adcs || imux->num_items <= 1)
2763 return 0; /* no need for input source control */
2764 knew = stac_control_new(spec, &stac_input_src_temp,
2765 stac_input_src_temp.name);
2766 if (!knew)
2767 return -ENOMEM;
2768 knew->count = spec->num_adcs;
2769 return 0;
2770}
2771
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002772/* check whether the line-input can be used as line-out */
2773static hda_nid_t check_line_out_switch(struct hda_codec *codec)
Matt Porter403d1942005-11-29 15:00:51 +01002774{
2775 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002776 struct auto_pin_cfg *cfg = &spec->autocfg;
2777 hda_nid_t nid;
2778 unsigned int pincap;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002779
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002780 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2781 return 0;
2782 nid = cfg->input_pins[AUTO_PIN_LINE];
Takashi Iwai1327a322009-03-23 13:07:47 +01002783 pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002784 if (pincap & AC_PINCAP_OUT)
2785 return nid;
Matt Porter403d1942005-11-29 15:00:51 +01002786 return 0;
2787}
2788
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002789/* check whether the mic-input can be used as line-out */
2790static hda_nid_t check_mic_out_switch(struct hda_codec *codec)
2791{
2792 struct sigmatel_spec *spec = codec->spec;
2793 struct auto_pin_cfg *cfg = &spec->autocfg;
2794 unsigned int def_conf, pincap;
2795 unsigned int mic_pin;
2796
2797 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2798 return 0;
2799 mic_pin = AUTO_PIN_MIC;
2800 for (;;) {
2801 hda_nid_t nid = cfg->input_pins[mic_pin];
Takashi Iwai330ee992009-02-20 14:33:36 +01002802 def_conf = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002803 /* some laptops have an internal analog microphone
2804 * which can't be used as a output */
2805 if (get_defcfg_connect(def_conf) != AC_JACK_PORT_FIXED) {
Takashi Iwai1327a322009-03-23 13:07:47 +01002806 pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002807 if (pincap & AC_PINCAP_OUT)
2808 return nid;
2809 }
2810 if (mic_pin == AUTO_PIN_MIC)
2811 mic_pin = AUTO_PIN_FRONT_MIC;
2812 else
2813 break;
2814 }
2815 return 0;
2816}
Steve Longerbeam7b043892007-05-03 20:50:03 +02002817
2818static int is_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2819{
2820 int i;
2821
2822 for (i = 0; i < spec->multiout.num_dacs; i++) {
2823 if (spec->multiout.dac_nids[i] == nid)
2824 return 1;
2825 }
2826
2827 return 0;
2828}
2829
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002830static int check_all_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2831{
2832 int i;
2833 if (is_in_dac_nids(spec, nid))
2834 return 1;
2835 for (i = 0; i < spec->autocfg.hp_outs; i++)
2836 if (spec->hp_dacs[i] == nid)
2837 return 1;
2838 for (i = 0; i < spec->autocfg.speaker_outs; i++)
2839 if (spec->speaker_dacs[i] == nid)
2840 return 1;
2841 return 0;
2842}
2843
2844static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid)
2845{
2846 struct sigmatel_spec *spec = codec->spec;
2847 int j, conn_len;
2848 hda_nid_t conn[HDA_MAX_CONNECTIONS];
2849 unsigned int wcaps, wtype;
2850
2851 conn_len = snd_hda_get_connections(codec, nid, conn,
2852 HDA_MAX_CONNECTIONS);
2853 for (j = 0; j < conn_len; j++) {
Takashi Iwai14bafe32009-03-23 16:35:39 +01002854 wcaps = get_wcaps(codec, conn[j]);
Takashi Iwaia22d5432009-07-27 12:54:26 +02002855 wtype = get_wcaps_type(wcaps);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002856 /* we check only analog outputs */
2857 if (wtype != AC_WID_AUD_OUT || (wcaps & AC_WCAP_DIGITAL))
2858 continue;
2859 /* if this route has a free DAC, assign it */
2860 if (!check_all_dac_nids(spec, conn[j])) {
2861 if (conn_len > 1) {
2862 /* select this DAC in the pin's input mux */
2863 snd_hda_codec_write_cache(codec, nid, 0,
2864 AC_VERB_SET_CONNECT_SEL, j);
2865 }
2866 return conn[j];
2867 }
2868 }
Takashi Iwaiee58a7c2009-03-06 12:00:24 +01002869 /* if all DACs are already assigned, connect to the primary DAC */
2870 if (conn_len > 1) {
2871 for (j = 0; j < conn_len; j++) {
2872 if (conn[j] == spec->multiout.dac_nids[0]) {
2873 snd_hda_codec_write_cache(codec, nid, 0,
2874 AC_VERB_SET_CONNECT_SEL, j);
2875 break;
2876 }
2877 }
2878 }
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002879 return 0;
2880}
2881
2882static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
2883static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
2884
Matt Porter3cc08dc2006-01-23 15:27:49 +01002885/*
Steve Longerbeam7b043892007-05-03 20:50:03 +02002886 * Fill in the dac_nids table from the parsed pin configuration
2887 * This function only works when every pin in line_out_pins[]
2888 * contains atleast one DAC in its connection list. Some 92xx
2889 * codecs are not connected directly to a DAC, such as the 9200
2890 * and 9202/925x. For those, dac_nids[] must be hard-coded.
Matt Porter3cc08dc2006-01-23 15:27:49 +01002891 */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002892static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec)
Mattc7d4b2f2005-06-27 14:59:41 +02002893{
2894 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002895 struct auto_pin_cfg *cfg = &spec->autocfg;
2896 int i;
2897 hda_nid_t nid, dac;
Steve Longerbeam7b043892007-05-03 20:50:03 +02002898
Mattc7d4b2f2005-06-27 14:59:41 +02002899 for (i = 0; i < cfg->line_outs; i++) {
2900 nid = cfg->line_out_pins[i];
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002901 dac = get_unassigned_dac(codec, nid);
2902 if (!dac) {
Takashi Iwaidf802952007-07-02 19:18:00 +02002903 if (spec->multiout.num_dacs > 0) {
2904 /* we have already working output pins,
2905 * so let's drop the broken ones again
2906 */
2907 cfg->line_outs = spec->multiout.num_dacs;
2908 break;
2909 }
Steve Longerbeam7b043892007-05-03 20:50:03 +02002910 /* error out, no available DAC found */
2911 snd_printk(KERN_ERR
2912 "%s: No available DAC for pin 0x%x\n",
2913 __func__, nid);
2914 return -ENODEV;
2915 }
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002916 add_spec_dacs(spec, dac);
2917 }
Steve Longerbeam7b043892007-05-03 20:50:03 +02002918
Takashi Iwai139e0712009-03-06 12:10:41 +01002919 for (i = 0; i < cfg->hp_outs; i++) {
2920 nid = cfg->hp_pins[i];
2921 dac = get_unassigned_dac(codec, nid);
2922 if (dac) {
2923 if (!spec->multiout.hp_nid)
2924 spec->multiout.hp_nid = dac;
2925 else
2926 add_spec_extra_dacs(spec, dac);
2927 }
2928 spec->hp_dacs[i] = dac;
2929 }
2930
2931 for (i = 0; i < cfg->speaker_outs; i++) {
2932 nid = cfg->speaker_pins[i];
2933 dac = get_unassigned_dac(codec, nid);
2934 if (dac)
2935 add_spec_extra_dacs(spec, dac);
2936 spec->speaker_dacs[i] = dac;
2937 }
2938
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002939 /* add line-in as output */
2940 nid = check_line_out_switch(codec);
2941 if (nid) {
2942 dac = get_unassigned_dac(codec, nid);
2943 if (dac) {
2944 snd_printdd("STAC: Add line-in 0x%x as output %d\n",
2945 nid, cfg->line_outs);
2946 cfg->line_out_pins[cfg->line_outs] = nid;
2947 cfg->line_outs++;
2948 spec->line_switch = nid;
2949 add_spec_dacs(spec, dac);
2950 }
2951 }
2952 /* add mic as output */
2953 nid = check_mic_out_switch(codec);
2954 if (nid) {
2955 dac = get_unassigned_dac(codec, nid);
2956 if (dac) {
2957 snd_printdd("STAC: Add mic-in 0x%x as output %d\n",
2958 nid, cfg->line_outs);
2959 cfg->line_out_pins[cfg->line_outs] = nid;
2960 cfg->line_outs++;
2961 spec->mic_switch = nid;
2962 add_spec_dacs(spec, dac);
Steve Longerbeam7b043892007-05-03 20:50:03 +02002963 }
Mattc7d4b2f2005-06-27 14:59:41 +02002964 }
2965
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002966 snd_printd("stac92xx: dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
Steve Longerbeam7b043892007-05-03 20:50:03 +02002967 spec->multiout.num_dacs,
2968 spec->multiout.dac_nids[0],
2969 spec->multiout.dac_nids[1],
2970 spec->multiout.dac_nids[2],
2971 spec->multiout.dac_nids[3],
2972 spec->multiout.dac_nids[4]);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002973
Mattc7d4b2f2005-06-27 14:59:41 +02002974 return 0;
2975}
2976
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002977/* create volume control/switch for the given prefx type */
Takashi Iwai668b9652009-03-06 10:13:24 +01002978static int create_controls_idx(struct hda_codec *codec, const char *pfx,
2979 int idx, hda_nid_t nid, int chs)
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002980{
Takashi Iwai7c7767e2009-01-20 15:28:38 +01002981 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002982 char name[32];
2983 int err;
2984
Takashi Iwai7c7767e2009-01-20 15:28:38 +01002985 if (!spec->check_volume_offset) {
2986 unsigned int caps, step, nums, db_scale;
2987 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
2988 step = (caps & AC_AMPCAP_STEP_SIZE) >>
2989 AC_AMPCAP_STEP_SIZE_SHIFT;
2990 step = (step + 1) * 25; /* in .01dB unit */
2991 nums = (caps & AC_AMPCAP_NUM_STEPS) >>
2992 AC_AMPCAP_NUM_STEPS_SHIFT;
2993 db_scale = nums * step;
2994 /* if dB scale is over -64dB, and finer enough,
2995 * let's reduce it to half
2996 */
2997 if (db_scale > 6400 && nums >= 0x1f)
2998 spec->volume_offset = nums / 2;
2999 spec->check_volume_offset = 1;
3000 }
3001
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003002 sprintf(name, "%s Playback Volume", pfx);
Takashi Iwai668b9652009-03-06 10:13:24 +01003003 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, idx, name,
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003004 HDA_COMPOSE_AMP_VAL_OFS(nid, chs, 0, HDA_OUTPUT,
3005 spec->volume_offset));
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003006 if (err < 0)
3007 return err;
3008 sprintf(name, "%s Playback Switch", pfx);
Takashi Iwai668b9652009-03-06 10:13:24 +01003009 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_MUTE, idx, name,
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003010 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
3011 if (err < 0)
3012 return err;
3013 return 0;
3014}
3015
Takashi Iwai668b9652009-03-06 10:13:24 +01003016#define create_controls(codec, pfx, nid, chs) \
3017 create_controls_idx(codec, pfx, 0, nid, chs)
3018
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003019static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
3020{
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003021 if (spec->multiout.num_dacs > 4) {
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003022 printk(KERN_WARNING "stac92xx: No space for DAC 0x%x\n", nid);
3023 return 1;
3024 } else {
3025 spec->multiout.dac_nids[spec->multiout.num_dacs] = nid;
3026 spec->multiout.num_dacs++;
3027 }
3028 return 0;
3029}
3030
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003031static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003032{
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003033 int i;
3034 for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++) {
3035 if (!spec->multiout.extra_out_nid[i]) {
3036 spec->multiout.extra_out_nid[i] = nid;
3037 return 0;
3038 }
3039 }
3040 printk(KERN_WARNING "stac92xx: No space for extra DAC 0x%x\n", nid);
3041 return 1;
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003042}
3043
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003044/* Create output controls
3045 * The mixer elements are named depending on the given type (AUTO_PIN_XXX_OUT)
3046 */
3047static int create_multi_out_ctls(struct hda_codec *codec, int num_outs,
3048 const hda_nid_t *pins,
3049 const hda_nid_t *dac_nids,
3050 int type)
Mattc7d4b2f2005-06-27 14:59:41 +02003051{
Takashi Iwai76624532008-12-19 10:09:47 +01003052 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai19039bd2006-06-28 15:52:16 +02003053 static const char *chname[4] = {
3054 "Front", "Surround", NULL /*CLFE*/, "Side"
3055 };
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003056 hda_nid_t nid;
Takashi Iwai91589232008-12-19 15:59:40 +01003057 int i, err;
3058 unsigned int wid_caps;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003059
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003060 for (i = 0; i < num_outs && i < ARRAY_SIZE(chname); i++) {
Takashi Iwaiffd0e562009-04-16 12:20:24 +02003061 if (type == AUTO_PIN_HP_OUT && !spec->hp_detect) {
3062 wid_caps = get_wcaps(codec, pins[i]);
3063 if (wid_caps & AC_WCAP_UNSOL_CAP)
3064 spec->hp_detect = 1;
3065 }
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003066 nid = dac_nids[i];
3067 if (!nid)
3068 continue;
3069 if (type != AUTO_PIN_HP_OUT && i == 2) {
Mattc7d4b2f2005-06-27 14:59:41 +02003070 /* Center/LFE */
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003071 err = create_controls(codec, "Center", nid, 1);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003072 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003073 return err;
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003074 err = create_controls(codec, "LFE", nid, 2);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003075 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003076 return err;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003077
3078 wid_caps = get_wcaps(codec, nid);
3079
3080 if (wid_caps & AC_WCAP_LR_SWAP) {
3081 err = stac92xx_add_control(spec,
3082 STAC_CTL_WIDGET_CLFE_SWITCH,
3083 "Swap Center/LFE Playback Switch", nid);
3084
3085 if (err < 0)
3086 return err;
3087 }
3088
Mattc7d4b2f2005-06-27 14:59:41 +02003089 } else {
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003090 const char *name;
Takashi Iwai668b9652009-03-06 10:13:24 +01003091 int idx;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003092 switch (type) {
3093 case AUTO_PIN_HP_OUT:
Takashi Iwai668b9652009-03-06 10:13:24 +01003094 name = "Headphone";
3095 idx = i;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003096 break;
3097 case AUTO_PIN_SPEAKER_OUT:
Takashi Iwai668b9652009-03-06 10:13:24 +01003098 name = "Speaker";
3099 idx = i;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003100 break;
3101 default:
3102 name = chname[i];
Takashi Iwai668b9652009-03-06 10:13:24 +01003103 idx = 0;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003104 break;
Takashi Iwai76624532008-12-19 10:09:47 +01003105 }
Takashi Iwai668b9652009-03-06 10:13:24 +01003106 err = create_controls_idx(codec, name, idx, nid, 3);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003107 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003108 return err;
3109 }
3110 }
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003111 return 0;
3112}
3113
Takashi Iwai6479c632009-07-28 18:20:25 +02003114static int stac92xx_add_capvol_ctls(struct hda_codec *codec, unsigned long vol,
3115 unsigned long sw, int idx)
3116{
3117 int err;
3118 err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_VOL, idx,
Takashi Iwaibf677bd2009-07-30 09:24:29 +02003119 "Capture Volume", vol);
Takashi Iwai6479c632009-07-28 18:20:25 +02003120 if (err < 0)
3121 return err;
3122 err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_MUTE, idx,
Takashi Iwaibf677bd2009-07-30 09:24:29 +02003123 "Capture Switch", sw);
Takashi Iwai6479c632009-07-28 18:20:25 +02003124 if (err < 0)
3125 return err;
3126 return 0;
3127}
3128
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003129/* add playback controls from the parsed DAC table */
3130static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec,
3131 const struct auto_pin_cfg *cfg)
3132{
3133 struct sigmatel_spec *spec = codec->spec;
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02003134 hda_nid_t nid;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003135 int err;
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02003136 int idx;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003137
3138 err = create_multi_out_ctls(codec, cfg->line_outs, cfg->line_out_pins,
3139 spec->multiout.dac_nids,
3140 cfg->line_out_type);
3141 if (err < 0)
3142 return err;
Mattc7d4b2f2005-06-27 14:59:41 +02003143
Takashi Iwaia9cb5c92008-11-24 07:51:11 +01003144 if (cfg->hp_outs > 1 && cfg->line_out_type == AUTO_PIN_LINE_OUT) {
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02003145 err = stac92xx_add_control(spec,
3146 STAC_CTL_WIDGET_HP_SWITCH,
Takashi Iwaid7a89432008-11-12 09:48:04 +01003147 "Headphone as Line Out Switch",
3148 cfg->hp_pins[cfg->hp_outs - 1]);
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02003149 if (err < 0)
3150 return err;
3151 }
3152
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02003153 for (idx = AUTO_PIN_MIC; idx <= AUTO_PIN_FRONT_LINE; idx++) {
3154 nid = cfg->input_pins[idx];
3155 if (nid) {
3156 err = stac92xx_add_jack_mode_control(codec, nid, idx);
3157 if (err < 0)
3158 return err;
3159 }
Matthew Ranostayb5895dc2008-01-25 15:24:50 +01003160 }
Matt Porter403d1942005-11-29 15:00:51 +01003161
Mattc7d4b2f2005-06-27 14:59:41 +02003162 return 0;
3163}
3164
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003165/* add playback controls for Speaker and HP outputs */
3166static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec,
3167 struct auto_pin_cfg *cfg)
Mattc7d4b2f2005-06-27 14:59:41 +02003168{
3169 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003170 int err;
Mattc7d4b2f2005-06-27 14:59:41 +02003171
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003172 err = create_multi_out_ctls(codec, cfg->hp_outs, cfg->hp_pins,
3173 spec->hp_dacs, AUTO_PIN_HP_OUT);
3174 if (err < 0)
3175 return err;
3176
3177 err = create_multi_out_ctls(codec, cfg->speaker_outs, cfg->speaker_pins,
3178 spec->speaker_dacs, AUTO_PIN_SPEAKER_OUT);
3179 if (err < 0)
3180 return err;
3181
Mattc7d4b2f2005-06-27 14:59:41 +02003182 return 0;
3183}
3184
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003185/* labels for mono mux outputs */
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003186static const char *stac92xx_mono_labels[4] = {
3187 "DAC0", "DAC1", "Mixer", "DAC2"
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003188};
3189
3190/* create mono mux for mono out on capable codecs */
3191static int stac92xx_auto_create_mono_output_ctls(struct hda_codec *codec)
3192{
3193 struct sigmatel_spec *spec = codec->spec;
3194 struct hda_input_mux *mono_mux = &spec->private_mono_mux;
3195 int i, num_cons;
3196 hda_nid_t con_lst[ARRAY_SIZE(stac92xx_mono_labels)];
3197
3198 num_cons = snd_hda_get_connections(codec,
3199 spec->mono_nid,
3200 con_lst,
3201 HDA_MAX_NUM_INPUTS);
Jaroslav Kysela16a433d2009-07-22 16:20:40 +02003202 if (num_cons <= 0 || num_cons > ARRAY_SIZE(stac92xx_mono_labels))
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003203 return -EINVAL;
3204
3205 for (i = 0; i < num_cons; i++) {
3206 mono_mux->items[mono_mux->num_items].label =
3207 stac92xx_mono_labels[i];
3208 mono_mux->items[mono_mux->num_items].index = i;
3209 mono_mux->num_items++;
3210 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003211
3212 return stac92xx_add_control(spec, STAC_CTL_WIDGET_MONO_MUX,
3213 "Mono Mux", spec->mono_nid);
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003214}
3215
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003216/* create PC beep volume controls */
3217static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec,
3218 hda_nid_t nid)
3219{
3220 struct sigmatel_spec *spec = codec->spec;
3221 u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3222 int err;
3223
3224 /* check for mute support for the the amp */
3225 if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) {
3226 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
3227 "PC Beep Playback Switch",
3228 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3229 if (err < 0)
3230 return err;
3231 }
3232
3233 /* check to see if there is volume support for the amp */
3234 if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3235 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL,
3236 "PC Beep Playback Volume",
3237 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3238 if (err < 0)
3239 return err;
3240 }
3241 return 0;
3242}
3243
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003244#ifdef CONFIG_SND_HDA_INPUT_BEEP
3245#define stac92xx_dig_beep_switch_info snd_ctl_boolean_mono_info
3246
3247static int stac92xx_dig_beep_switch_get(struct snd_kcontrol *kcontrol,
3248 struct snd_ctl_elem_value *ucontrol)
3249{
3250 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3251 ucontrol->value.integer.value[0] = codec->beep->enabled;
3252 return 0;
3253}
3254
3255static int stac92xx_dig_beep_switch_put(struct snd_kcontrol *kcontrol,
3256 struct snd_ctl_elem_value *ucontrol)
3257{
3258 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3259 int enabled = !!ucontrol->value.integer.value[0];
3260 if (codec->beep->enabled != enabled) {
3261 codec->beep->enabled = enabled;
3262 return 1;
3263 }
3264 return 0;
3265}
3266
3267static struct snd_kcontrol_new stac92xx_dig_beep_ctrl = {
3268 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3269 .info = stac92xx_dig_beep_switch_info,
3270 .get = stac92xx_dig_beep_switch_get,
3271 .put = stac92xx_dig_beep_switch_put,
3272};
3273
3274static int stac92xx_beep_switch_ctl(struct hda_codec *codec)
3275{
3276 return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl,
3277 0, "PC Beep Playback Switch", 0);
3278}
3279#endif
3280
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003281static int stac92xx_auto_create_mux_input_ctls(struct hda_codec *codec)
3282{
3283 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai667067d2009-08-13 18:14:42 +02003284 int i, j, err = 0;
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003285
3286 for (i = 0; i < spec->num_muxes; i++) {
Takashi Iwai667067d2009-08-13 18:14:42 +02003287 hda_nid_t nid;
3288 unsigned int wcaps;
3289 unsigned long val;
3290
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003291 nid = spec->mux_nids[i];
3292 wcaps = get_wcaps(codec, nid);
Takashi Iwai667067d2009-08-13 18:14:42 +02003293 if (!(wcaps & AC_WCAP_OUT_AMP))
3294 continue;
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003295
Takashi Iwai667067d2009-08-13 18:14:42 +02003296 /* check whether already the same control was created as
3297 * normal Capture Volume.
3298 */
3299 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3300 for (j = 0; j < spec->num_caps; j++) {
3301 if (spec->capvols[j] == val)
3302 break;
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003303 }
Takashi Iwai667067d2009-08-13 18:14:42 +02003304 if (j < spec->num_caps)
3305 continue;
3306
3307 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, i,
3308 "Mux Capture Volume", val);
3309 if (err < 0)
3310 return err;
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003311 }
3312 return 0;
3313};
3314
Matthew Ranostayd9737752008-09-07 12:03:41 +02003315static const char *stac92xx_spdif_labels[3] = {
Matthew Ranostay65973632008-09-16 10:39:37 -04003316 "Digital Playback", "Analog Mux 1", "Analog Mux 2",
Matthew Ranostayd9737752008-09-07 12:03:41 +02003317};
3318
3319static int stac92xx_auto_create_spdif_mux_ctls(struct hda_codec *codec)
3320{
3321 struct sigmatel_spec *spec = codec->spec;
3322 struct hda_input_mux *spdif_mux = &spec->private_smux;
Matthew Ranostay65973632008-09-16 10:39:37 -04003323 const char **labels = spec->spdif_labels;
Matthew Ranostayd9737752008-09-07 12:03:41 +02003324 int i, num_cons;
Matthew Ranostay65973632008-09-16 10:39:37 -04003325 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
Matthew Ranostayd9737752008-09-07 12:03:41 +02003326
3327 num_cons = snd_hda_get_connections(codec,
3328 spec->smux_nids[0],
3329 con_lst,
3330 HDA_MAX_NUM_INPUTS);
Jaroslav Kysela16a433d2009-07-22 16:20:40 +02003331 if (num_cons <= 0)
Matthew Ranostayd9737752008-09-07 12:03:41 +02003332 return -EINVAL;
3333
Matthew Ranostay65973632008-09-16 10:39:37 -04003334 if (!labels)
3335 labels = stac92xx_spdif_labels;
3336
Matthew Ranostayd9737752008-09-07 12:03:41 +02003337 for (i = 0; i < num_cons; i++) {
Matthew Ranostay65973632008-09-16 10:39:37 -04003338 spdif_mux->items[spdif_mux->num_items].label = labels[i];
Matthew Ranostayd9737752008-09-07 12:03:41 +02003339 spdif_mux->items[spdif_mux->num_items].index = i;
3340 spdif_mux->num_items++;
3341 }
3342
3343 return 0;
3344}
3345
Matt Porter8b657272006-10-26 17:12:59 +02003346/* labels for dmic mux inputs */
Adrian Bunkddc2cec2006-11-20 12:03:44 +01003347static const char *stac92xx_dmic_labels[5] = {
Matt Porter8b657272006-10-26 17:12:59 +02003348 "Analog Inputs", "Digital Mic 1", "Digital Mic 2",
3349 "Digital Mic 3", "Digital Mic 4"
3350};
3351
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003352static int get_connection_index(struct hda_codec *codec, hda_nid_t mux,
3353 hda_nid_t nid)
3354{
3355 hda_nid_t conn[HDA_MAX_NUM_INPUTS];
3356 int i, nums;
3357
3358 nums = snd_hda_get_connections(codec, mux, conn, ARRAY_SIZE(conn));
3359 for (i = 0; i < nums; i++)
3360 if (conn[i] == nid)
3361 return i;
3362 return -1;
3363}
3364
Takashi Iwai667067d2009-08-13 18:14:42 +02003365/* create a volume assigned to the given pin (only if supported) */
Takashi Iwai96f845d2009-08-29 00:49:36 +02003366/* return 1 if the volume control is created */
Takashi Iwai667067d2009-08-13 18:14:42 +02003367static int create_elem_capture_vol(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwai96f845d2009-08-29 00:49:36 +02003368 const char *label, int direction)
Takashi Iwai667067d2009-08-13 18:14:42 +02003369{
3370 unsigned int caps, nums;
3371 char name[32];
Takashi Iwai96f845d2009-08-29 00:49:36 +02003372 int err;
Takashi Iwai667067d2009-08-13 18:14:42 +02003373
Takashi Iwai96f845d2009-08-29 00:49:36 +02003374 if (direction == HDA_OUTPUT)
3375 caps = AC_WCAP_OUT_AMP;
3376 else
3377 caps = AC_WCAP_IN_AMP;
3378 if (!(get_wcaps(codec, nid) & caps))
Takashi Iwai667067d2009-08-13 18:14:42 +02003379 return 0;
Takashi Iwai96f845d2009-08-29 00:49:36 +02003380 caps = query_amp_caps(codec, nid, direction);
Takashi Iwai667067d2009-08-13 18:14:42 +02003381 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
3382 if (!nums)
3383 return 0;
3384 snprintf(name, sizeof(name), "%s Capture Volume", label);
Takashi Iwai96f845d2009-08-29 00:49:36 +02003385 err = stac92xx_add_control(codec->spec, STAC_CTL_WIDGET_VOL, name,
3386 HDA_COMPOSE_AMP_VAL(nid, 3, 0, direction));
3387 if (err < 0)
3388 return err;
3389 return 1;
Takashi Iwai667067d2009-08-13 18:14:42 +02003390}
3391
Matt Porter8b657272006-10-26 17:12:59 +02003392/* create playback/capture controls for input pins on dmic capable codecs */
3393static int stac92xx_auto_create_dmic_input_ctls(struct hda_codec *codec,
3394 const struct auto_pin_cfg *cfg)
3395{
3396 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai5207e102009-07-30 13:09:08 +02003397 struct hda_input_mux *imux = &spec->private_imux;
Matt Porter8b657272006-10-26 17:12:59 +02003398 struct hda_input_mux *dimux = &spec->private_dimux;
Takashi Iwai5207e102009-07-30 13:09:08 +02003399 int err, i, active_mics;
3400 unsigned int def_conf;
Matt Porter8b657272006-10-26 17:12:59 +02003401
3402 dimux->items[dimux->num_items].label = stac92xx_dmic_labels[0];
3403 dimux->items[dimux->num_items].index = 0;
3404 dimux->num_items++;
3405
Takashi Iwai5207e102009-07-30 13:09:08 +02003406 active_mics = 0;
3407 for (i = 0; i < spec->num_dmics; i++) {
Takashi Iwai667067d2009-08-13 18:14:42 +02003408 /* check the validity: sometimes it's a dead vendor-spec node */
3409 if (get_wcaps_type(get_wcaps(codec, spec->dmic_nids[i]))
3410 != AC_WID_PIN)
3411 continue;
Takashi Iwai5207e102009-07-30 13:09:08 +02003412 def_conf = snd_hda_codec_get_pincfg(codec, spec->dmic_nids[i]);
3413 if (get_defcfg_connect(def_conf) != AC_JACK_PORT_NONE)
3414 active_mics++;
3415 }
3416
Matt Porter8b657272006-10-26 17:12:59 +02003417 for (i = 0; i < spec->num_dmics; i++) {
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003418 hda_nid_t nid;
Matt Porter8b657272006-10-26 17:12:59 +02003419 int index;
Takashi Iwai5207e102009-07-30 13:09:08 +02003420 const char *label;
Matt Porter8b657272006-10-26 17:12:59 +02003421
Takashi Iwai667067d2009-08-13 18:14:42 +02003422 nid = spec->dmic_nids[i];
3423 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
3424 continue;
3425 def_conf = snd_hda_codec_get_pincfg(codec, nid);
Matt Porter8b657272006-10-26 17:12:59 +02003426 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3427 continue;
3428
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003429 index = get_connection_index(codec, spec->dmux_nids[0], nid);
3430 if (index < 0)
3431 continue;
3432
Takashi Iwai5207e102009-07-30 13:09:08 +02003433 if (active_mics == 1)
3434 label = "Digital Mic";
3435 else
3436 label = stac92xx_dmic_labels[dimux->num_items];
3437
Takashi Iwai96f845d2009-08-29 00:49:36 +02003438 err = create_elem_capture_vol(codec, nid, label, HDA_INPUT);
Takashi Iwai667067d2009-08-13 18:14:42 +02003439 if (err < 0)
3440 return err;
Takashi Iwai96f845d2009-08-29 00:49:36 +02003441 if (!err) {
3442 err = create_elem_capture_vol(codec, nid, label,
3443 HDA_OUTPUT);
3444 if (err < 0)
3445 return err;
3446 }
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003447
Takashi Iwai5207e102009-07-30 13:09:08 +02003448 dimux->items[dimux->num_items].label = label;
Matt Porter8b657272006-10-26 17:12:59 +02003449 dimux->items[dimux->num_items].index = index;
3450 dimux->num_items++;
Takashi Iwai5207e102009-07-30 13:09:08 +02003451 if (snd_hda_get_bool_hint(codec, "separate_dmux") != 1) {
3452 imux->items[imux->num_items].label = label;
3453 imux->items[imux->num_items].index = index;
3454 imux->num_items++;
3455 }
Matt Porter8b657272006-10-26 17:12:59 +02003456 }
3457
3458 return 0;
3459}
3460
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003461static int check_mic_pin(struct hda_codec *codec, hda_nid_t nid,
3462 hda_nid_t *fixed, hda_nid_t *ext)
3463{
3464 unsigned int cfg;
3465
3466 if (!nid)
3467 return 0;
3468 cfg = snd_hda_codec_get_pincfg(codec, nid);
3469 switch (get_defcfg_connect(cfg)) {
3470 case AC_JACK_PORT_FIXED:
3471 if (*fixed)
3472 return 1; /* already occupied */
3473 *fixed = nid;
3474 break;
3475 case AC_JACK_PORT_COMPLEX:
3476 if (*ext)
3477 return 1; /* already occupied */
3478 *ext = nid;
3479 break;
3480 }
3481 return 0;
3482}
3483
3484static int set_mic_route(struct hda_codec *codec,
3485 struct sigmatel_mic_route *mic,
3486 hda_nid_t pin)
3487{
3488 struct sigmatel_spec *spec = codec->spec;
3489 struct auto_pin_cfg *cfg = &spec->autocfg;
3490 int i;
3491
3492 mic->pin = pin;
3493 for (i = AUTO_PIN_MIC; i <= AUTO_PIN_FRONT_MIC; i++)
3494 if (pin == cfg->input_pins[i])
3495 break;
3496 if (i <= AUTO_PIN_FRONT_MIC) {
3497 /* analog pin */
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003498 i = get_connection_index(codec, spec->mux_nids[0], pin);
3499 if (i < 0)
3500 return -1;
3501 mic->mux_idx = i;
Takashi Iwai02d33322009-10-01 16:38:11 +02003502 mic->dmux_idx = -1;
3503 if (spec->dmux_nids)
3504 mic->dmux_idx = get_connection_index(codec,
3505 spec->dmux_nids[0],
3506 spec->mux_nids[0]);
Takashi Iwaida2a2aa2009-08-10 07:44:09 +02003507 } else if (spec->dmux_nids) {
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003508 /* digital pin */
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003509 i = get_connection_index(codec, spec->dmux_nids[0], pin);
3510 if (i < 0)
3511 return -1;
3512 mic->dmux_idx = i;
Takashi Iwai02d33322009-10-01 16:38:11 +02003513 mic->mux_idx = -1;
3514 if (spec->mux_nids)
3515 mic->mux_idx = get_connection_index(codec,
3516 spec->mux_nids[0],
3517 spec->dmux_nids[0]);
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003518 }
3519 return 0;
3520}
3521
3522/* return non-zero if the device is for automatic mic switch */
3523static int stac_check_auto_mic(struct hda_codec *codec)
3524{
3525 struct sigmatel_spec *spec = codec->spec;
3526 struct auto_pin_cfg *cfg = &spec->autocfg;
3527 hda_nid_t fixed, ext;
3528 int i;
3529
3530 for (i = AUTO_PIN_LINE; i < AUTO_PIN_LAST; i++) {
3531 if (cfg->input_pins[i])
3532 return 0; /* must be exclusively mics */
3533 }
3534 fixed = ext = 0;
3535 for (i = AUTO_PIN_MIC; i <= AUTO_PIN_FRONT_MIC; i++)
3536 if (check_mic_pin(codec, cfg->input_pins[i], &fixed, &ext))
3537 return 0;
3538 for (i = 0; i < spec->num_dmics; i++)
3539 if (check_mic_pin(codec, spec->dmic_nids[i], &fixed, &ext))
3540 return 0;
3541 if (!fixed || !ext)
3542 return 0;
3543 if (!(get_wcaps(codec, ext) & AC_WCAP_UNSOL_CAP))
3544 return 0; /* no unsol support */
3545 if (set_mic_route(codec, &spec->ext_mic, ext) ||
3546 set_mic_route(codec, &spec->int_mic, fixed))
3547 return 0; /* something is wrong */
3548 return 1;
3549}
3550
Mattc7d4b2f2005-06-27 14:59:41 +02003551/* create playback/capture controls for input pins */
3552static int stac92xx_auto_create_analog_input_ctls(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
3553{
3554 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +02003555 struct hda_input_mux *imux = &spec->private_imux;
Takashi Iwai667067d2009-08-13 18:14:42 +02003556 int i, j;
Mattc7d4b2f2005-06-27 14:59:41 +02003557
3558 for (i = 0; i < AUTO_PIN_LAST; i++) {
Takashi Iwai667067d2009-08-13 18:14:42 +02003559 hda_nid_t nid = cfg->input_pins[i];
3560 int index, err;
Mattc7d4b2f2005-06-27 14:59:41 +02003561
Takashi Iwai667067d2009-08-13 18:14:42 +02003562 if (!nid)
Takashi Iwai314634b2006-09-21 11:56:18 +02003563 continue;
3564 index = -1;
3565 for (j = 0; j < spec->num_muxes; j++) {
Takashi Iwai667067d2009-08-13 18:14:42 +02003566 index = get_connection_index(codec, spec->mux_nids[j],
3567 nid);
3568 if (index >= 0)
3569 break;
Mattc7d4b2f2005-06-27 14:59:41 +02003570 }
Takashi Iwai667067d2009-08-13 18:14:42 +02003571 if (index < 0)
3572 continue;
3573
3574 err = create_elem_capture_vol(codec, nid,
Takashi Iwai96f845d2009-08-29 00:49:36 +02003575 auto_pin_cfg_labels[i],
3576 HDA_INPUT);
Takashi Iwai667067d2009-08-13 18:14:42 +02003577 if (err < 0)
3578 return err;
3579
Takashi Iwai314634b2006-09-21 11:56:18 +02003580 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
3581 imux->items[imux->num_items].index = index;
3582 imux->num_items++;
Mattc7d4b2f2005-06-27 14:59:41 +02003583 }
Takashi Iwai5207e102009-07-30 13:09:08 +02003584 spec->num_analog_muxes = imux->num_items;
Mattc7d4b2f2005-06-27 14:59:41 +02003585
Steve Longerbeam7b043892007-05-03 20:50:03 +02003586 if (imux->num_items) {
Sam Revitch62fe78e2006-05-10 15:09:17 +02003587 /*
3588 * Set the current input for the muxes.
3589 * The STAC9221 has two input muxes with identical source
3590 * NID lists. Hopefully this won't get confused.
3591 */
3592 for (i = 0; i < spec->num_muxes; i++) {
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003593 snd_hda_codec_write_cache(codec, spec->mux_nids[i], 0,
3594 AC_VERB_SET_CONNECT_SEL,
3595 imux->items[0].index);
Sam Revitch62fe78e2006-05-10 15:09:17 +02003596 }
3597 }
3598
Mattc7d4b2f2005-06-27 14:59:41 +02003599 return 0;
3600}
3601
Mattc7d4b2f2005-06-27 14:59:41 +02003602static void stac92xx_auto_init_multi_out(struct hda_codec *codec)
3603{
3604 struct sigmatel_spec *spec = codec->spec;
3605 int i;
3606
3607 for (i = 0; i < spec->autocfg.line_outs; i++) {
3608 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3609 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
3610 }
3611}
3612
3613static void stac92xx_auto_init_hp_out(struct hda_codec *codec)
3614{
3615 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003616 int i;
Mattc7d4b2f2005-06-27 14:59:41 +02003617
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003618 for (i = 0; i < spec->autocfg.hp_outs; i++) {
3619 hda_nid_t pin;
3620 pin = spec->autocfg.hp_pins[i];
3621 if (pin) /* connect to front */
3622 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3623 }
3624 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
3625 hda_nid_t pin;
3626 pin = spec->autocfg.speaker_pins[i];
3627 if (pin) /* connect to front */
3628 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN);
3629 }
Mattc7d4b2f2005-06-27 14:59:41 +02003630}
3631
Matt Porter3cc08dc2006-01-23 15:27:49 +01003632static 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 +02003633{
3634 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003635 int hp_swap = 0;
Takashi Iwai6479c632009-07-28 18:20:25 +02003636 int i, err;
Mattc7d4b2f2005-06-27 14:59:41 +02003637
Matt Porter8b657272006-10-26 17:12:59 +02003638 if ((err = snd_hda_parse_pin_def_config(codec,
3639 &spec->autocfg,
3640 spec->dmic_nids)) < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003641 return err;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003642 if (! spec->autocfg.line_outs)
Matt Porter869264c2006-01-25 19:20:50 +01003643 return 0; /* can't find valid pin config */
Takashi Iwai19039bd2006-06-28 15:52:16 +02003644
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003645 /* If we have no real line-out pin and multiple hp-outs, HPs should
3646 * be set up as multi-channel outputs.
3647 */
3648 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT &&
3649 spec->autocfg.hp_outs > 1) {
3650 /* Copy hp_outs to line_outs, backup line_outs in
3651 * speaker_outs so that the following routines can handle
3652 * HP pins as primary outputs.
3653 */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003654 snd_printdd("stac92xx: Enabling multi-HPs workaround\n");
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003655 memcpy(spec->autocfg.speaker_pins, spec->autocfg.line_out_pins,
3656 sizeof(spec->autocfg.line_out_pins));
3657 spec->autocfg.speaker_outs = spec->autocfg.line_outs;
3658 memcpy(spec->autocfg.line_out_pins, spec->autocfg.hp_pins,
3659 sizeof(spec->autocfg.hp_pins));
3660 spec->autocfg.line_outs = spec->autocfg.hp_outs;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003661 spec->autocfg.line_out_type = AUTO_PIN_HP_OUT;
3662 spec->autocfg.hp_outs = 0;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003663 hp_swap = 1;
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003664 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003665 if (spec->autocfg.mono_out_pin) {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003666 int dir = get_wcaps(codec, spec->autocfg.mono_out_pin) &
3667 (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP);
Matthew Ranostay09a99952008-01-24 11:49:21 +01003668 u32 caps = query_amp_caps(codec,
3669 spec->autocfg.mono_out_pin, dir);
3670 hda_nid_t conn_list[1];
3671
3672 /* get the mixer node and then the mono mux if it exists */
3673 if (snd_hda_get_connections(codec,
3674 spec->autocfg.mono_out_pin, conn_list, 1) &&
3675 snd_hda_get_connections(codec, conn_list[0],
Jaroslav Kysela16a433d2009-07-22 16:20:40 +02003676 conn_list, 1) > 0) {
Matthew Ranostay09a99952008-01-24 11:49:21 +01003677
3678 int wcaps = get_wcaps(codec, conn_list[0]);
Takashi Iwaia22d5432009-07-27 12:54:26 +02003679 int wid_type = get_wcaps_type(wcaps);
Matthew Ranostay09a99952008-01-24 11:49:21 +01003680 /* LR swap check, some stac925x have a mux that
3681 * changes the DACs output path instead of the
3682 * mono-mux path.
3683 */
3684 if (wid_type == AC_WID_AUD_SEL &&
3685 !(wcaps & AC_WCAP_LR_SWAP))
3686 spec->mono_nid = conn_list[0];
3687 }
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003688 if (dir) {
3689 hda_nid_t nid = spec->autocfg.mono_out_pin;
3690
3691 /* most mono outs have a least a mute/unmute switch */
3692 dir = (dir & AC_WCAP_OUT_AMP) ? HDA_OUTPUT : HDA_INPUT;
3693 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
3694 "Mono Playback Switch",
3695 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
Matthew Ranostay09a99952008-01-24 11:49:21 +01003696 if (err < 0)
3697 return err;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003698 /* check for volume support for the amp */
3699 if ((caps & AC_AMPCAP_NUM_STEPS)
3700 >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3701 err = stac92xx_add_control(spec,
3702 STAC_CTL_WIDGET_VOL,
3703 "Mono Playback Volume",
3704 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
3705 if (err < 0)
3706 return err;
3707 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003708 }
3709
3710 stac92xx_auto_set_pinctl(codec, spec->autocfg.mono_out_pin,
3711 AC_PINCTL_OUT_EN);
3712 }
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003713
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003714 if (!spec->multiout.num_dacs) {
3715 err = stac92xx_auto_fill_dac_nids(codec);
3716 if (err < 0)
Takashi Iwai19039bd2006-06-28 15:52:16 +02003717 return err;
Takashi Iwaic9280d62009-01-15 17:31:00 +01003718 err = stac92xx_auto_create_multi_out_ctls(codec,
3719 &spec->autocfg);
3720 if (err < 0)
3721 return err;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003722 }
Mattc7d4b2f2005-06-27 14:59:41 +02003723
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003724 /* setup analog beep controls */
3725 if (spec->anabeep_nid > 0) {
3726 err = stac92xx_auto_create_beep_ctls(codec,
3727 spec->anabeep_nid);
3728 if (err < 0)
3729 return err;
3730 }
3731
3732 /* setup digital beep controls and input device */
3733#ifdef CONFIG_SND_HDA_INPUT_BEEP
3734 if (spec->digbeep_nid > 0) {
3735 hda_nid_t nid = spec->digbeep_nid;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003736 unsigned int caps;
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003737
3738 err = stac92xx_auto_create_beep_ctls(codec, nid);
3739 if (err < 0)
3740 return err;
3741 err = snd_hda_attach_beep_device(codec, nid);
3742 if (err < 0)
3743 return err;
Takashi Iwaifa797962009-05-19 12:50:04 +02003744 /* IDT/STAC codecs have linear beep tone parameter */
3745 codec->beep->linear_tone = 1;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003746 /* if no beep switch is available, make its own one */
3747 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3748 if (codec->beep &&
3749 !((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT)) {
3750 err = stac92xx_beep_switch_ctl(codec);
3751 if (err < 0)
3752 return err;
3753 }
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003754 }
3755#endif
3756
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003757 err = stac92xx_auto_create_hp_ctls(codec, &spec->autocfg);
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003758 if (err < 0)
3759 return err;
3760
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003761 /* All output parsing done, now restore the swapped hp pins */
3762 if (hp_swap) {
3763 memcpy(spec->autocfg.hp_pins, spec->autocfg.line_out_pins,
3764 sizeof(spec->autocfg.hp_pins));
3765 spec->autocfg.hp_outs = spec->autocfg.line_outs;
3766 spec->autocfg.line_out_type = AUTO_PIN_HP_OUT;
3767 spec->autocfg.line_outs = 0;
3768 }
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003769
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003770 if (stac_check_auto_mic(codec)) {
3771 spec->auto_mic = 1;
3772 /* only one capture for auto-mic */
3773 spec->num_adcs = 1;
3774 spec->num_caps = 1;
3775 spec->num_muxes = 1;
3776 }
3777
Takashi Iwai6479c632009-07-28 18:20:25 +02003778 for (i = 0; i < spec->num_caps; i++) {
3779 err = stac92xx_add_capvol_ctls(codec, spec->capvols[i],
3780 spec->capsws[i], i);
3781 if (err < 0)
3782 return err;
3783 }
3784
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003785 err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg);
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003786 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003787 return err;
3788
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003789 if (spec->mono_nid > 0) {
3790 err = stac92xx_auto_create_mono_output_ctls(codec);
3791 if (err < 0)
3792 return err;
3793 }
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04003794 if (spec->num_dmics > 0 && !spec->dinput_mux)
Matt Porter8b657272006-10-26 17:12:59 +02003795 if ((err = stac92xx_auto_create_dmic_input_ctls(codec,
3796 &spec->autocfg)) < 0)
3797 return err;
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003798 if (spec->num_muxes > 0) {
3799 err = stac92xx_auto_create_mux_input_ctls(codec);
3800 if (err < 0)
3801 return err;
3802 }
Matthew Ranostayd9737752008-09-07 12:03:41 +02003803 if (spec->num_smuxes > 0) {
3804 err = stac92xx_auto_create_spdif_mux_ctls(codec);
3805 if (err < 0)
3806 return err;
3807 }
Matt Porter8b657272006-10-26 17:12:59 +02003808
Takashi Iwaie3c75962009-01-23 11:57:22 +01003809 err = stac92xx_add_input_source(spec);
3810 if (err < 0)
3811 return err;
3812
Mattc7d4b2f2005-06-27 14:59:41 +02003813 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
Matt Porter403d1942005-11-29 15:00:51 +01003814 if (spec->multiout.max_channels > 2)
Mattc7d4b2f2005-06-27 14:59:41 +02003815 spec->surr_switch = 1;
Mattc7d4b2f2005-06-27 14:59:41 +02003816
Takashi Iwai0852d7a2009-02-11 11:35:15 +01003817 if (spec->autocfg.dig_outs)
Matt Porter3cc08dc2006-01-23 15:27:49 +01003818 spec->multiout.dig_out_nid = dig_out;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003819 if (dig_in && spec->autocfg.dig_in_pin)
Matt Porter3cc08dc2006-01-23 15:27:49 +01003820 spec->dig_in_nid = dig_in;
Mattc7d4b2f2005-06-27 14:59:41 +02003821
Takashi Iwai603c4012008-07-30 15:01:44 +02003822 if (spec->kctls.list)
3823 spec->mixers[spec->num_mixers++] = spec->kctls.list;
Mattc7d4b2f2005-06-27 14:59:41 +02003824
3825 spec->input_mux = &spec->private_imux;
Matthew Ranostayf8ccbf62008-12-20 17:36:28 -05003826 if (!spec->dinput_mux)
3827 spec->dinput_mux = &spec->private_dimux;
Matthew Ranostayd9737752008-09-07 12:03:41 +02003828 spec->sinput_mux = &spec->private_smux;
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003829 spec->mono_mux = &spec->private_mono_mux;
Mattc7d4b2f2005-06-27 14:59:41 +02003830 return 1;
3831}
3832
Takashi Iwai82bc9552006-03-21 11:24:42 +01003833/* add playback controls for HP output */
3834static int stac9200_auto_create_hp_ctls(struct hda_codec *codec,
3835 struct auto_pin_cfg *cfg)
3836{
3837 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003838 hda_nid_t pin = cfg->hp_pins[0];
Takashi Iwai82bc9552006-03-21 11:24:42 +01003839 unsigned int wid_caps;
3840
3841 if (! pin)
3842 return 0;
3843
3844 wid_caps = get_wcaps(codec, pin);
Takashi Iwai505cb342006-03-27 12:51:52 +02003845 if (wid_caps & AC_WCAP_UNSOL_CAP)
Takashi Iwai82bc9552006-03-21 11:24:42 +01003846 spec->hp_detect = 1;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003847
3848 return 0;
3849}
3850
Richard Fish160ea0d2006-09-06 13:58:25 +02003851/* add playback controls for LFE output */
3852static int stac9200_auto_create_lfe_ctls(struct hda_codec *codec,
3853 struct auto_pin_cfg *cfg)
3854{
3855 struct sigmatel_spec *spec = codec->spec;
3856 int err;
3857 hda_nid_t lfe_pin = 0x0;
3858 int i;
3859
3860 /*
3861 * search speaker outs and line outs for a mono speaker pin
3862 * with an amp. If one is found, add LFE controls
3863 * for it.
3864 */
3865 for (i = 0; i < spec->autocfg.speaker_outs && lfe_pin == 0x0; i++) {
3866 hda_nid_t pin = spec->autocfg.speaker_pins[i];
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003867 unsigned int wcaps = get_wcaps(codec, pin);
Richard Fish160ea0d2006-09-06 13:58:25 +02003868 wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
3869 if (wcaps == AC_WCAP_OUT_AMP)
3870 /* found a mono speaker with an amp, must be lfe */
3871 lfe_pin = pin;
3872 }
3873
3874 /* if speaker_outs is 0, then speakers may be in line_outs */
3875 if (lfe_pin == 0 && spec->autocfg.speaker_outs == 0) {
3876 for (i = 0; i < spec->autocfg.line_outs && lfe_pin == 0x0; i++) {
3877 hda_nid_t pin = spec->autocfg.line_out_pins[i];
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003878 unsigned int defcfg;
Takashi Iwai330ee992009-02-20 14:33:36 +01003879 defcfg = snd_hda_codec_get_pincfg(codec, pin);
Harvey Harrison8b551782008-02-29 11:56:48 +01003880 if (get_defcfg_device(defcfg) == AC_JACK_SPEAKER) {
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003881 unsigned int wcaps = get_wcaps(codec, pin);
Richard Fish160ea0d2006-09-06 13:58:25 +02003882 wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
3883 if (wcaps == AC_WCAP_OUT_AMP)
3884 /* found a mono speaker with an amp,
3885 must be lfe */
3886 lfe_pin = pin;
3887 }
3888 }
3889 }
3890
3891 if (lfe_pin) {
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003892 err = create_controls(codec, "LFE", lfe_pin, 1);
Richard Fish160ea0d2006-09-06 13:58:25 +02003893 if (err < 0)
3894 return err;
3895 }
3896
3897 return 0;
3898}
3899
Mattc7d4b2f2005-06-27 14:59:41 +02003900static int stac9200_parse_auto_config(struct hda_codec *codec)
3901{
3902 struct sigmatel_spec *spec = codec->spec;
3903 int err;
3904
Kailang Yangdf694da2005-12-05 19:42:22 +01003905 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003906 return err;
3907
3908 if ((err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg)) < 0)
3909 return err;
3910
Takashi Iwai82bc9552006-03-21 11:24:42 +01003911 if ((err = stac9200_auto_create_hp_ctls(codec, &spec->autocfg)) < 0)
3912 return err;
3913
Richard Fish160ea0d2006-09-06 13:58:25 +02003914 if ((err = stac9200_auto_create_lfe_ctls(codec, &spec->autocfg)) < 0)
3915 return err;
3916
Takashi Iwai355a0ec2008-11-11 16:46:19 +01003917 if (spec->num_muxes > 0) {
3918 err = stac92xx_auto_create_mux_input_ctls(codec);
3919 if (err < 0)
3920 return err;
3921 }
3922
Takashi Iwaie3c75962009-01-23 11:57:22 +01003923 err = stac92xx_add_input_source(spec);
3924 if (err < 0)
3925 return err;
3926
Takashi Iwai0852d7a2009-02-11 11:35:15 +01003927 if (spec->autocfg.dig_outs)
Mattc7d4b2f2005-06-27 14:59:41 +02003928 spec->multiout.dig_out_nid = 0x05;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003929 if (spec->autocfg.dig_in_pin)
Mattc7d4b2f2005-06-27 14:59:41 +02003930 spec->dig_in_nid = 0x04;
Mattc7d4b2f2005-06-27 14:59:41 +02003931
Takashi Iwai603c4012008-07-30 15:01:44 +02003932 if (spec->kctls.list)
3933 spec->mixers[spec->num_mixers++] = spec->kctls.list;
Mattc7d4b2f2005-06-27 14:59:41 +02003934
3935 spec->input_mux = &spec->private_imux;
Matt Porter8b657272006-10-26 17:12:59 +02003936 spec->dinput_mux = &spec->private_dimux;
Mattc7d4b2f2005-06-27 14:59:41 +02003937
3938 return 1;
3939}
3940
Sam Revitch62fe78e2006-05-10 15:09:17 +02003941/*
3942 * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
3943 * funky external mute control using GPIO pins.
3944 */
3945
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003946static void stac_gpio_set(struct hda_codec *codec, unsigned int mask,
Matthew Ranostay4fe51952008-01-29 15:28:44 +01003947 unsigned int dir_mask, unsigned int data)
Sam Revitch62fe78e2006-05-10 15:09:17 +02003948{
3949 unsigned int gpiostate, gpiomask, gpiodir;
3950
3951 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
3952 AC_VERB_GET_GPIO_DATA, 0);
Matthew Ranostay4fe51952008-01-29 15:28:44 +01003953 gpiostate = (gpiostate & ~dir_mask) | (data & dir_mask);
Sam Revitch62fe78e2006-05-10 15:09:17 +02003954
3955 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
3956 AC_VERB_GET_GPIO_MASK, 0);
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003957 gpiomask |= mask;
Sam Revitch62fe78e2006-05-10 15:09:17 +02003958
3959 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
3960 AC_VERB_GET_GPIO_DIRECTION, 0);
Matthew Ranostay4fe51952008-01-29 15:28:44 +01003961 gpiodir |= dir_mask;
Sam Revitch62fe78e2006-05-10 15:09:17 +02003962
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003963 /* Configure GPIOx as CMOS */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003964 snd_hda_codec_write(codec, codec->afg, 0, 0x7e7, 0);
3965
3966 snd_hda_codec_write(codec, codec->afg, 0,
3967 AC_VERB_SET_GPIO_MASK, gpiomask);
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003968 snd_hda_codec_read(codec, codec->afg, 0,
3969 AC_VERB_SET_GPIO_DIRECTION, gpiodir); /* sync */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003970
3971 msleep(1);
3972
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003973 snd_hda_codec_read(codec, codec->afg, 0,
3974 AC_VERB_SET_GPIO_DATA, gpiostate); /* sync */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003975}
3976
Takashi Iwai8c8145b2009-06-22 17:00:38 +02003977#ifdef CONFIG_SND_HDA_INPUT_JACK
Takashi Iwai95c09092009-04-14 16:15:29 +02003978static void stac92xx_free_jack_priv(struct snd_jack *jack)
3979{
3980 struct sigmatel_jack *jacks = jack->private_data;
3981 jacks->nid = 0;
3982 jacks->jack = NULL;
3983}
3984#endif
3985
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003986static int stac92xx_add_jack(struct hda_codec *codec,
3987 hda_nid_t nid, int type)
3988{
Takashi Iwai8c8145b2009-06-22 17:00:38 +02003989#ifdef CONFIG_SND_HDA_INPUT_JACK
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003990 struct sigmatel_spec *spec = codec->spec;
3991 struct sigmatel_jack *jack;
Takashi Iwai330ee992009-02-20 14:33:36 +01003992 int def_conf = snd_hda_codec_get_pincfg(codec, nid);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003993 int connectivity = get_defcfg_connect(def_conf);
3994 char name[32];
Takashi Iwai95c09092009-04-14 16:15:29 +02003995 int err;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003996
3997 if (connectivity && connectivity != AC_JACK_PORT_FIXED)
3998 return 0;
3999
4000 snd_array_init(&spec->jacks, sizeof(*jack), 32);
4001 jack = snd_array_new(&spec->jacks);
4002 if (!jack)
4003 return -ENOMEM;
4004 jack->nid = nid;
4005 jack->type = type;
4006
Takashi Iwai86de7412009-07-22 16:02:46 +02004007 snprintf(name, sizeof(name), "%s at %s %s Jack",
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004008 snd_hda_get_jack_type(def_conf),
4009 snd_hda_get_jack_connectivity(def_conf),
4010 snd_hda_get_jack_location(def_conf));
4011
Takashi Iwai95c09092009-04-14 16:15:29 +02004012 err = snd_jack_new(codec->bus->card, name, type, &jack->jack);
4013 if (err < 0) {
4014 jack->nid = 0;
4015 return err;
4016 }
4017 jack->jack->private_data = jack;
4018 jack->jack->private_free = stac92xx_free_jack_priv;
Takashi Iwaie4973e12008-11-18 09:32:42 +01004019#endif
Takashi Iwai95c09092009-04-14 16:15:29 +02004020 return 0;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004021}
4022
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004023static int stac_add_event(struct sigmatel_spec *spec, hda_nid_t nid,
4024 unsigned char type, int data)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004025{
4026 struct sigmatel_event *event;
4027
4028 snd_array_init(&spec->events, sizeof(*event), 32);
4029 event = snd_array_new(&spec->events);
4030 if (!event)
4031 return -ENOMEM;
4032 event->nid = nid;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004033 event->type = type;
4034 event->tag = spec->events.used;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004035 event->data = data;
4036
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004037 return event->tag;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004038}
4039
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004040static struct sigmatel_event *stac_get_event(struct hda_codec *codec,
Takashi Iwai62558ce2009-07-29 14:23:09 +02004041 hda_nid_t nid)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004042{
4043 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004044 struct sigmatel_event *event = spec->events.list;
4045 int i;
4046
4047 for (i = 0; i < spec->events.used; i++, event++) {
Takashi Iwai62558ce2009-07-29 14:23:09 +02004048 if (event->nid == nid)
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004049 return event;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004050 }
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004051 return NULL;
4052}
4053
4054static struct sigmatel_event *stac_get_event_from_tag(struct hda_codec *codec,
4055 unsigned char tag)
4056{
4057 struct sigmatel_spec *spec = codec->spec;
4058 struct sigmatel_event *event = spec->events.list;
4059 int i;
4060
4061 for (i = 0; i < spec->events.used; i++, event++) {
4062 if (event->tag == tag)
4063 return event;
4064 }
4065 return NULL;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004066}
4067
Takashi Iwai62558ce2009-07-29 14:23:09 +02004068/* check if given nid is a valid pin and no other events are assigned
4069 * to it. If OK, assign the event, set the unsol flag, and returns 1.
4070 * Otherwise, returns zero.
4071 */
4072static int enable_pin_detect(struct hda_codec *codec, hda_nid_t nid,
4073 unsigned int type)
Takashi Iwai314634b2006-09-21 11:56:18 +02004074{
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004075 struct sigmatel_event *event;
4076 int tag;
4077
4078 if (!(get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP))
Takashi Iwai62558ce2009-07-29 14:23:09 +02004079 return 0;
4080 event = stac_get_event(codec, nid);
4081 if (event) {
4082 if (event->type != type)
4083 return 0;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004084 tag = event->tag;
Takashi Iwai62558ce2009-07-29 14:23:09 +02004085 } else {
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004086 tag = stac_add_event(codec->spec, nid, type, 0);
Takashi Iwai62558ce2009-07-29 14:23:09 +02004087 if (tag < 0)
4088 return 0;
4089 }
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004090 snd_hda_codec_write_cache(codec, nid, 0,
4091 AC_VERB_SET_UNSOLICITED_ENABLE,
4092 AC_USRSP_EN | tag);
Takashi Iwai62558ce2009-07-29 14:23:09 +02004093 return 1;
Takashi Iwai314634b2006-09-21 11:56:18 +02004094}
4095
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004096static int is_nid_hp_pin(struct auto_pin_cfg *cfg, hda_nid_t nid)
4097{
4098 int i;
4099 for (i = 0; i < cfg->hp_outs; i++)
4100 if (cfg->hp_pins[i] == nid)
4101 return 1; /* nid is a HP-Out */
4102
4103 return 0; /* nid is not a HP-Out */
4104};
4105
Matthew Ranostayb76c8502008-02-06 14:49:44 +01004106static void stac92xx_power_down(struct hda_codec *codec)
4107{
4108 struct sigmatel_spec *spec = codec->spec;
4109
4110 /* power down inactive DACs */
4111 hda_nid_t *dac;
4112 for (dac = spec->dac_list; *dac; dac++)
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004113 if (!check_all_dac_nids(spec, *dac))
Takashi Iwai8c2f7672008-12-01 11:54:35 +01004114 snd_hda_codec_write(codec, *dac, 0,
Matthew Ranostayb76c8502008-02-06 14:49:44 +01004115 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
4116}
4117
Takashi Iwaif73d3582008-11-25 08:21:51 +01004118static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
4119 int enable);
4120
Takashi Iwai6565e4f2009-03-02 14:38:35 +01004121/* override some hints from the hwdep entry */
4122static void stac_store_hints(struct hda_codec *codec)
4123{
4124 struct sigmatel_spec *spec = codec->spec;
4125 const char *p;
4126 int val;
4127
4128 val = snd_hda_get_bool_hint(codec, "hp_detect");
4129 if (val >= 0)
4130 spec->hp_detect = val;
4131 p = snd_hda_get_hint(codec, "gpio_mask");
4132 if (p) {
4133 spec->gpio_mask = simple_strtoul(p, NULL, 0);
4134 spec->eapd_mask = spec->gpio_dir = spec->gpio_data =
4135 spec->gpio_mask;
4136 }
4137 p = snd_hda_get_hint(codec, "gpio_dir");
4138 if (p)
4139 spec->gpio_dir = simple_strtoul(p, NULL, 0) & spec->gpio_mask;
4140 p = snd_hda_get_hint(codec, "gpio_data");
4141 if (p)
4142 spec->gpio_data = simple_strtoul(p, NULL, 0) & spec->gpio_mask;
4143 p = snd_hda_get_hint(codec, "eapd_mask");
4144 if (p)
4145 spec->eapd_mask = simple_strtoul(p, NULL, 0) & spec->gpio_mask;
4146 val = snd_hda_get_bool_hint(codec, "eapd_switch");
4147 if (val >= 0)
4148 spec->eapd_switch = val;
4149}
4150
Mattc7d4b2f2005-06-27 14:59:41 +02004151static int stac92xx_init(struct hda_codec *codec)
4152{
4153 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai82bc9552006-03-21 11:24:42 +01004154 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaif73d3582008-11-25 08:21:51 +01004155 unsigned int gpio;
Takashi Iwaie4973e12008-11-18 09:32:42 +01004156 int i;
Mattc7d4b2f2005-06-27 14:59:41 +02004157
Mattc7d4b2f2005-06-27 14:59:41 +02004158 snd_hda_sequence_write(codec, spec->init);
4159
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004160 /* power down adcs initially */
4161 if (spec->powerdown_adcs)
4162 for (i = 0; i < spec->num_adcs; i++)
Takashi Iwai8c2f7672008-12-01 11:54:35 +01004163 snd_hda_codec_write(codec,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004164 spec->adc_nids[i], 0,
4165 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004166
Takashi Iwai6565e4f2009-03-02 14:38:35 +01004167 /* override some hints */
4168 stac_store_hints(codec);
4169
Takashi Iwaif73d3582008-11-25 08:21:51 +01004170 /* set up GPIO */
4171 gpio = spec->gpio_data;
4172 /* turn on EAPD statically when spec->eapd_switch isn't set.
4173 * otherwise, unsol event will turn it on/off dynamically
4174 */
4175 if (!spec->eapd_switch)
4176 gpio |= spec->eapd_mask;
4177 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, gpio);
4178
Takashi Iwai82bc9552006-03-21 11:24:42 +01004179 /* set up pins */
4180 if (spec->hp_detect) {
Takashi Iwai505cb342006-03-27 12:51:52 +02004181 /* Enable unsolicited responses on the HP widget */
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004182 for (i = 0; i < cfg->hp_outs; i++) {
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004183 hda_nid_t nid = cfg->hp_pins[i];
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004184 enable_pin_detect(codec, nid, STAC_HP_EVENT);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004185 }
Takashi Iwai1c4bdf92009-08-13 08:23:24 +02004186 if (cfg->line_out_type == AUTO_PIN_LINE_OUT &&
4187 cfg->speaker_outs > 0) {
Takashi Iwaifefd67f2009-07-30 18:03:05 +02004188 /* enable pin-detect for line-outs as well */
Takashi Iwai15cfa2b2009-08-03 14:23:33 +02004189 for (i = 0; i < cfg->line_outs; i++) {
4190 hda_nid_t nid = cfg->line_out_pins[i];
Takashi Iwaifefd67f2009-07-30 18:03:05 +02004191 enable_pin_detect(codec, nid, STAC_LO_EVENT);
4192 }
4193 }
4194
Takashi Iwai0a07acaf2007-03-13 10:40:23 +01004195 /* force to enable the first line-out; the others are set up
4196 * in unsol_event
4197 */
4198 stac92xx_auto_set_pinctl(codec, spec->autocfg.line_out_pins[0],
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004199 AC_PINCTL_OUT_EN);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004200 /* fake event to set up pins */
Takashi Iwai5f380eb2009-09-14 15:36:14 +02004201 if (cfg->hp_pins[0])
4202 stac_issue_unsol_event(codec, cfg->hp_pins[0]);
4203 else if (cfg->line_out_pins[0])
4204 stac_issue_unsol_event(codec, cfg->line_out_pins[0]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004205 } else {
4206 stac92xx_auto_init_multi_out(codec);
4207 stac92xx_auto_init_hp_out(codec);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004208 for (i = 0; i < cfg->hp_outs; i++)
4209 stac_toggle_power_map(codec, cfg->hp_pins[i], 1);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004210 }
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02004211 if (spec->auto_mic) {
Takashi Iwai15b4f292009-07-29 16:32:55 +02004212 /* initialize connection to analog input */
Takashi Iwaida2a2aa2009-08-10 07:44:09 +02004213 if (spec->dmux_nids)
4214 snd_hda_codec_write_cache(codec, spec->dmux_nids[0], 0,
Takashi Iwai15b4f292009-07-29 16:32:55 +02004215 AC_VERB_SET_CONNECT_SEL, 0);
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02004216 if (enable_pin_detect(codec, spec->ext_mic.pin, STAC_MIC_EVENT))
4217 stac_issue_unsol_event(codec, spec->ext_mic.pin);
4218 }
Takashi Iwai82bc9552006-03-21 11:24:42 +01004219 for (i = 0; i < AUTO_PIN_LAST; i++) {
Takashi Iwaic960a032006-03-23 17:06:28 +01004220 hda_nid_t nid = cfg->input_pins[i];
4221 if (nid) {
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004222 unsigned int pinctl, conf;
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004223 if (i == AUTO_PIN_MIC || i == AUTO_PIN_FRONT_MIC) {
4224 /* for mic pins, force to initialize */
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02004225 pinctl = stac92xx_get_default_vref(codec, nid);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004226 pinctl |= AC_PINCTL_IN_EN;
4227 stac92xx_auto_set_pinctl(codec, nid, pinctl);
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004228 } else {
4229 pinctl = snd_hda_codec_read(codec, nid, 0,
4230 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4231 /* if PINCTL already set then skip */
Takashi Iwai5dd17cb2009-05-07 16:22:53 +02004232 /* Also, if both INPUT and OUTPUT are set,
4233 * it must be a BIOS bug; need to override, too
4234 */
4235 if (!(pinctl & AC_PINCTL_IN_EN) ||
4236 (pinctl & AC_PINCTL_OUT_EN)) {
4237 pinctl &= ~AC_PINCTL_OUT_EN;
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004238 pinctl |= AC_PINCTL_IN_EN;
4239 stac92xx_auto_set_pinctl(codec, nid,
4240 pinctl);
4241 }
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004242 }
Takashi Iwai330ee992009-02-20 14:33:36 +01004243 conf = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004244 if (get_defcfg_connect(conf) != AC_JACK_PORT_FIXED) {
Takashi Iwai62558ce2009-07-29 14:23:09 +02004245 if (enable_pin_detect(codec, nid,
4246 STAC_INSERT_EVENT))
4247 stac_issue_unsol_event(codec, nid);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004248 }
Takashi Iwaic960a032006-03-23 17:06:28 +01004249 }
Takashi Iwai82bc9552006-03-21 11:24:42 +01004250 }
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004251 for (i = 0; i < spec->num_dmics; i++)
4252 stac92xx_auto_set_pinctl(codec, spec->dmic_nids[i],
4253 AC_PINCTL_IN_EN);
Takashi Iwai0852d7a2009-02-11 11:35:15 +01004254 if (cfg->dig_out_pins[0])
4255 stac92xx_auto_set_pinctl(codec, cfg->dig_out_pins[0],
Takashi Iwai82bc9552006-03-21 11:24:42 +01004256 AC_PINCTL_OUT_EN);
4257 if (cfg->dig_in_pin)
4258 stac92xx_auto_set_pinctl(codec, cfg->dig_in_pin,
4259 AC_PINCTL_IN_EN);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004260 for (i = 0; i < spec->num_pwrs; i++) {
4261 hda_nid_t nid = spec->pwr_nids[i];
4262 int pinctl, def_conf;
Takashi Iwai82bc9552006-03-21 11:24:42 +01004263
Takashi Iwaieb632122008-12-19 16:39:48 +01004264 /* power on when no jack detection is available */
4265 if (!spec->hp_detect) {
4266 stac_toggle_power_map(codec, nid, 1);
4267 continue;
4268 }
4269
4270 if (is_nid_hp_pin(cfg, nid))
Takashi Iwaif73d3582008-11-25 08:21:51 +01004271 continue; /* already has an unsol event */
Sam Revitch62fe78e2006-05-10 15:09:17 +02004272
Takashi Iwaif73d3582008-11-25 08:21:51 +01004273 pinctl = snd_hda_codec_read(codec, nid, 0,
4274 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4275 /* outputs are only ports capable of power management
4276 * any attempts on powering down a input port cause the
4277 * referenced VREF to act quirky.
4278 */
Takashi Iwaieb632122008-12-19 16:39:48 +01004279 if (pinctl & AC_PINCTL_IN_EN) {
4280 stac_toggle_power_map(codec, nid, 1);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004281 continue;
Takashi Iwaieb632122008-12-19 16:39:48 +01004282 }
Takashi Iwai330ee992009-02-20 14:33:36 +01004283 def_conf = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004284 def_conf = get_defcfg_connect(def_conf);
4285 /* skip any ports that don't have jacks since presence
4286 * detection is useless */
4287 if (def_conf != AC_JACK_PORT_COMPLEX) {
4288 if (def_conf != AC_JACK_PORT_NONE)
4289 stac_toggle_power_map(codec, nid, 1);
4290 continue;
4291 }
Takashi Iwai62558ce2009-07-29 14:23:09 +02004292 if (enable_pin_detect(codec, nid, STAC_PWR_EVENT))
4293 stac_issue_unsol_event(codec, nid);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004294 }
4295 if (spec->dac_list)
4296 stac92xx_power_down(codec);
Mattc7d4b2f2005-06-27 14:59:41 +02004297 return 0;
4298}
4299
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004300static void stac92xx_free_jacks(struct hda_codec *codec)
4301{
Takashi Iwai8c8145b2009-06-22 17:00:38 +02004302#ifdef CONFIG_SND_HDA_INPUT_JACK
Takashi Iwaib94d35392008-11-21 09:08:06 +01004303 /* free jack instances manually when clearing/reconfiguring */
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004304 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaib94d35392008-11-21 09:08:06 +01004305 if (!codec->bus->shutdown && spec->jacks.list) {
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004306 struct sigmatel_jack *jacks = spec->jacks.list;
4307 int i;
Takashi Iwai95c09092009-04-14 16:15:29 +02004308 for (i = 0; i < spec->jacks.used; i++, jacks++) {
4309 if (jacks->jack)
4310 snd_device_free(codec->bus->card, jacks->jack);
4311 }
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004312 }
4313 snd_array_free(&spec->jacks);
Takashi Iwaie4973e12008-11-18 09:32:42 +01004314#endif
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004315}
4316
Takashi Iwai603c4012008-07-30 15:01:44 +02004317static void stac92xx_free_kctls(struct hda_codec *codec)
4318{
4319 struct sigmatel_spec *spec = codec->spec;
4320
4321 if (spec->kctls.list) {
4322 struct snd_kcontrol_new *kctl = spec->kctls.list;
4323 int i;
4324 for (i = 0; i < spec->kctls.used; i++)
4325 kfree(kctl[i].name);
4326 }
4327 snd_array_free(&spec->kctls);
4328}
4329
Matt2f2f4252005-04-13 14:45:30 +02004330static void stac92xx_free(struct hda_codec *codec)
4331{
Mattc7d4b2f2005-06-27 14:59:41 +02004332 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +02004333
4334 if (! spec)
4335 return;
4336
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004337 stac92xx_free_jacks(codec);
4338 snd_array_free(&spec->events);
Richard Fish11b44bb2006-08-23 18:31:34 +02004339
Mattc7d4b2f2005-06-27 14:59:41 +02004340 kfree(spec);
Matthew Ranostay1cd22242008-07-18 18:20:52 +02004341 snd_hda_detach_beep_device(codec);
Matt2f2f4252005-04-13 14:45:30 +02004342}
4343
Matt4e550962005-07-04 17:51:39 +02004344static void stac92xx_set_pinctl(struct hda_codec *codec, hda_nid_t nid,
4345 unsigned int flag)
4346{
Takashi Iwai8ce84192009-01-22 16:59:20 +01004347 unsigned int old_ctl, pin_ctl;
4348
4349 pin_ctl = snd_hda_codec_read(codec, nid,
Matt4e550962005-07-04 17:51:39 +02004350 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
Steve Longerbeam7b043892007-05-03 20:50:03 +02004351
Takashi Iwaif9acba42007-05-29 18:01:06 +02004352 if (pin_ctl & AC_PINCTL_IN_EN) {
4353 /*
4354 * we need to check the current set-up direction of
4355 * shared input pins since they can be switched via
4356 * "xxx as Output" mixer switch
4357 */
4358 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004359 if (nid == spec->line_switch || nid == spec->mic_switch)
Takashi Iwaif9acba42007-05-29 18:01:06 +02004360 return;
4361 }
4362
Takashi Iwai8ce84192009-01-22 16:59:20 +01004363 old_ctl = pin_ctl;
Steve Longerbeam7b043892007-05-03 20:50:03 +02004364 /* if setting pin direction bits, clear the current
4365 direction bits first */
4366 if (flag & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN))
4367 pin_ctl &= ~(AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
4368
Takashi Iwai8ce84192009-01-22 16:59:20 +01004369 pin_ctl |= flag;
4370 if (old_ctl != pin_ctl)
4371 snd_hda_codec_write_cache(codec, nid, 0,
4372 AC_VERB_SET_PIN_WIDGET_CONTROL,
4373 pin_ctl);
Matt4e550962005-07-04 17:51:39 +02004374}
4375
4376static void stac92xx_reset_pinctl(struct hda_codec *codec, hda_nid_t nid,
4377 unsigned int flag)
4378{
4379 unsigned int pin_ctl = snd_hda_codec_read(codec, nid,
4380 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
Takashi Iwai8ce84192009-01-22 16:59:20 +01004381 if (pin_ctl & flag)
4382 snd_hda_codec_write_cache(codec, nid, 0,
4383 AC_VERB_SET_PIN_WIDGET_CONTROL,
4384 pin_ctl & ~flag);
Matt4e550962005-07-04 17:51:39 +02004385}
4386
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004387static int get_pin_presence(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwai314634b2006-09-21 11:56:18 +02004388{
4389 if (!nid)
4390 return 0;
4391 if (snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PIN_SENSE, 0x00)
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004392 & (1 << 31))
4393 return 1;
Takashi Iwai314634b2006-09-21 11:56:18 +02004394 return 0;
4395}
4396
Takashi Iwaifefd67f2009-07-30 18:03:05 +02004397static void stac92xx_line_out_detect(struct hda_codec *codec,
4398 int presence)
4399{
4400 struct sigmatel_spec *spec = codec->spec;
4401 struct auto_pin_cfg *cfg = &spec->autocfg;
4402 int i;
4403
4404 for (i = 0; i < cfg->line_outs; i++) {
4405 if (presence)
4406 break;
4407 presence = get_pin_presence(codec, cfg->line_out_pins[i]);
4408 if (presence) {
4409 unsigned int pinctl;
4410 pinctl = snd_hda_codec_read(codec,
4411 cfg->line_out_pins[i], 0,
4412 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4413 if (pinctl & AC_PINCTL_IN_EN)
4414 presence = 0; /* mic- or line-input */
4415 }
4416 }
4417
4418 if (presence) {
4419 /* disable speakers */
4420 for (i = 0; i < cfg->speaker_outs; i++)
4421 stac92xx_reset_pinctl(codec, cfg->speaker_pins[i],
4422 AC_PINCTL_OUT_EN);
4423 if (spec->eapd_mask && spec->eapd_switch)
4424 stac_gpio_set(codec, spec->gpio_mask,
4425 spec->gpio_dir, spec->gpio_data &
4426 ~spec->eapd_mask);
4427 } else {
4428 /* enable speakers */
4429 for (i = 0; i < cfg->speaker_outs; i++)
4430 stac92xx_set_pinctl(codec, cfg->speaker_pins[i],
4431 AC_PINCTL_OUT_EN);
4432 if (spec->eapd_mask && spec->eapd_switch)
4433 stac_gpio_set(codec, spec->gpio_mask,
4434 spec->gpio_dir, spec->gpio_data |
4435 spec->eapd_mask);
4436 }
4437}
4438
Takashi Iwaid7a89432008-11-12 09:48:04 +01004439/* return non-zero if the hp-pin of the given array index isn't
4440 * a jack-detection target
4441 */
4442static int no_hp_sensing(struct sigmatel_spec *spec, int i)
4443{
4444 struct auto_pin_cfg *cfg = &spec->autocfg;
4445
4446 /* ignore sensing of shared line and mic jacks */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004447 if (cfg->hp_pins[i] == spec->line_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004448 return 1;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004449 if (cfg->hp_pins[i] == spec->mic_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004450 return 1;
4451 /* ignore if the pin is set as line-out */
4452 if (cfg->hp_pins[i] == spec->hp_switch)
4453 return 1;
4454 return 0;
4455}
4456
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004457static void stac92xx_hp_detect(struct hda_codec *codec)
Matt4e550962005-07-04 17:51:39 +02004458{
4459 struct sigmatel_spec *spec = codec->spec;
4460 struct auto_pin_cfg *cfg = &spec->autocfg;
4461 int i, presence;
4462
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004463 presence = 0;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01004464 if (spec->gpio_mute)
4465 presence = !(snd_hda_codec_read(codec, codec->afg, 0,
4466 AC_VERB_GET_GPIO_DATA, 0) & spec->gpio_mute);
4467
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004468 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwai314634b2006-09-21 11:56:18 +02004469 if (presence)
4470 break;
Takashi Iwaid7a89432008-11-12 09:48:04 +01004471 if (no_hp_sensing(spec, i))
4472 continue;
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004473 presence = get_pin_presence(codec, cfg->hp_pins[i]);
4474 if (presence) {
4475 unsigned int pinctl;
4476 pinctl = snd_hda_codec_read(codec, cfg->hp_pins[i], 0,
4477 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4478 if (pinctl & AC_PINCTL_IN_EN)
4479 presence = 0; /* mic- or line-input */
4480 }
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004481 }
Matt4e550962005-07-04 17:51:39 +02004482
4483 if (presence) {
Takashi Iwaid7a89432008-11-12 09:48:04 +01004484 /* disable lineouts */
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02004485 if (spec->hp_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004486 stac92xx_reset_pinctl(codec, spec->hp_switch,
4487 AC_PINCTL_OUT_EN);
Matt4e550962005-07-04 17:51:39 +02004488 for (i = 0; i < cfg->line_outs; i++)
4489 stac92xx_reset_pinctl(codec, cfg->line_out_pins[i],
4490 AC_PINCTL_OUT_EN);
Matt4e550962005-07-04 17:51:39 +02004491 } else {
Takashi Iwaid7a89432008-11-12 09:48:04 +01004492 /* enable lineouts */
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02004493 if (spec->hp_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004494 stac92xx_set_pinctl(codec, spec->hp_switch,
4495 AC_PINCTL_OUT_EN);
Matt4e550962005-07-04 17:51:39 +02004496 for (i = 0; i < cfg->line_outs; i++)
4497 stac92xx_set_pinctl(codec, cfg->line_out_pins[i],
4498 AC_PINCTL_OUT_EN);
Matt4e550962005-07-04 17:51:39 +02004499 }
Takashi Iwaifefd67f2009-07-30 18:03:05 +02004500 stac92xx_line_out_detect(codec, presence);
Takashi Iwaid7a89432008-11-12 09:48:04 +01004501 /* toggle hp outs */
4502 for (i = 0; i < cfg->hp_outs; i++) {
4503 unsigned int val = AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN;
4504 if (no_hp_sensing(spec, i))
4505 continue;
4506 if (presence)
4507 stac92xx_set_pinctl(codec, cfg->hp_pins[i], val);
Takashi Iwai8317e0b2009-01-14 07:56:51 +01004508#if 0 /* FIXME */
4509/* Resetting the pinctl like below may lead to (a sort of) regressions
4510 * on some devices since they use the HP pin actually for line/speaker
4511 * outs although the default pin config shows a different pin (that is
4512 * wrong and useless).
4513 *
4514 * So, it's basically a problem of default pin configs, likely a BIOS issue.
4515 * But, disabling the code below just works around it, and I'm too tired of
4516 * bug reports with such devices...
4517 */
Takashi Iwaid7a89432008-11-12 09:48:04 +01004518 else
4519 stac92xx_reset_pinctl(codec, cfg->hp_pins[i], val);
Takashi Iwai8317e0b2009-01-14 07:56:51 +01004520#endif /* FIXME */
Takashi Iwaid7a89432008-11-12 09:48:04 +01004521 }
Matt4e550962005-07-04 17:51:39 +02004522}
4523
Takashi Iwaif73d3582008-11-25 08:21:51 +01004524static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
4525 int enable)
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004526{
4527 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaif73d3582008-11-25 08:21:51 +01004528 unsigned int idx, val;
4529
4530 for (idx = 0; idx < spec->num_pwrs; idx++) {
4531 if (spec->pwr_nids[idx] == nid)
4532 break;
4533 }
4534 if (idx >= spec->num_pwrs)
4535 return;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004536
4537 /* several codecs have two power down bits */
4538 if (spec->pwr_mapping)
4539 idx = spec->pwr_mapping[idx];
4540 else
4541 idx = 1 << idx;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004542
Takashi Iwaif73d3582008-11-25 08:21:51 +01004543 val = snd_hda_codec_read(codec, codec->afg, 0, 0x0fec, 0x0) & 0xff;
4544 if (enable)
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004545 val &= ~idx;
4546 else
4547 val |= idx;
4548
4549 /* power down unused output ports */
4550 snd_hda_codec_write(codec, codec->afg, 0, 0x7ec, val);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004551}
4552
Takashi Iwaif73d3582008-11-25 08:21:51 +01004553static void stac92xx_pin_sense(struct hda_codec *codec, hda_nid_t nid)
4554{
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004555 stac_toggle_power_map(codec, nid, get_pin_presence(codec, nid));
Takashi Iwaif73d3582008-11-25 08:21:51 +01004556}
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004557
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004558static void stac92xx_report_jack(struct hda_codec *codec, hda_nid_t nid)
4559{
4560 struct sigmatel_spec *spec = codec->spec;
4561 struct sigmatel_jack *jacks = spec->jacks.list;
4562
4563 if (jacks) {
4564 int i;
4565 for (i = 0; i < spec->jacks.used; i++) {
4566 if (jacks->nid == nid) {
4567 unsigned int pin_ctl =
4568 snd_hda_codec_read(codec, nid,
4569 0, AC_VERB_GET_PIN_WIDGET_CONTROL,
4570 0x00);
4571 int type = jacks->type;
4572 if (type == (SND_JACK_LINEOUT
4573 | SND_JACK_HEADPHONE))
4574 type = (pin_ctl & AC_PINCTL_HP_EN)
4575 ? SND_JACK_HEADPHONE : SND_JACK_LINEOUT;
4576 snd_jack_report(jacks->jack,
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004577 get_pin_presence(codec, nid)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004578 ? type : 0);
4579 }
4580 jacks++;
4581 }
4582 }
4583}
Matt2f2f4252005-04-13 14:45:30 +02004584
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02004585static void stac92xx_mic_detect(struct hda_codec *codec)
4586{
4587 struct sigmatel_spec *spec = codec->spec;
4588 struct sigmatel_mic_route *mic;
4589
4590 if (get_pin_presence(codec, spec->ext_mic.pin))
4591 mic = &spec->ext_mic;
4592 else
4593 mic = &spec->int_mic;
Takashi Iwai02d33322009-10-01 16:38:11 +02004594 if (mic->dmux_idx >= 0)
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02004595 snd_hda_codec_write_cache(codec, spec->dmux_nids[0], 0,
4596 AC_VERB_SET_CONNECT_SEL,
4597 mic->dmux_idx);
Takashi Iwai02d33322009-10-01 16:38:11 +02004598 if (mic->mux_idx >= 0)
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02004599 snd_hda_codec_write_cache(codec, spec->mux_nids[0], 0,
4600 AC_VERB_SET_CONNECT_SEL,
4601 mic->mux_idx);
4602}
4603
Takashi Iwai62558ce2009-07-29 14:23:09 +02004604static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004605{
Takashi Iwai62558ce2009-07-29 14:23:09 +02004606 struct sigmatel_event *event = stac_get_event(codec, nid);
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004607 if (!event)
4608 return;
4609 codec->patch_ops.unsol_event(codec, (unsigned)event->tag << 26);
4610}
4611
Takashi Iwai314634b2006-09-21 11:56:18 +02004612static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res)
4613{
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004614 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004615 struct sigmatel_event *event;
4616 int tag, data;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004617
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004618 tag = (res >> 26) & 0x7f;
4619 event = stac_get_event_from_tag(codec, tag);
4620 if (!event)
4621 return;
4622
4623 switch (event->type) {
Takashi Iwai314634b2006-09-21 11:56:18 +02004624 case STAC_HP_EVENT:
Takashi Iwaifefd67f2009-07-30 18:03:05 +02004625 case STAC_LO_EVENT:
Takashi Iwai16ffe322009-08-04 13:40:54 +02004626 stac92xx_hp_detect(codec);
Takashi Iwaifefd67f2009-07-30 18:03:05 +02004627 break;
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02004628 case STAC_MIC_EVENT:
4629 stac92xx_mic_detect(codec);
4630 break;
4631 }
4632
4633 switch (event->type) {
4634 case STAC_HP_EVENT:
Takashi Iwaifefd67f2009-07-30 18:03:05 +02004635 case STAC_LO_EVENT:
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02004636 case STAC_MIC_EVENT:
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004637 case STAC_INSERT_EVENT:
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004638 case STAC_PWR_EVENT:
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004639 if (spec->num_pwrs > 0)
4640 stac92xx_pin_sense(codec, event->nid);
4641 stac92xx_report_jack(codec, event->nid);
Matthew Ranostayfd60cc82009-04-06 09:30:46 -04004642
4643 switch (codec->subsystem_id) {
4644 case 0x103c308f:
4645 if (event->nid == 0xb) {
4646 int pin = AC_PINCTL_IN_EN;
4647
4648 if (get_pin_presence(codec, 0xa)
4649 && get_pin_presence(codec, 0xb))
4650 pin |= AC_PINCTL_VREF_80;
4651 if (!get_pin_presence(codec, 0xb))
4652 pin |= AC_PINCTL_VREF_80;
4653
4654 /* toggle VREF state based on mic + hp pin
4655 * status
4656 */
4657 stac92xx_auto_set_pinctl(codec, 0x0a, pin);
4658 }
4659 }
Matthew Ranostay72474be2008-10-09 09:32:17 -04004660 break;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004661 case STAC_VREF_EVENT:
4662 data = snd_hda_codec_read(codec, codec->afg, 0,
4663 AC_VERB_GET_GPIO_DATA, 0);
Matthew Ranostay72474be2008-10-09 09:32:17 -04004664 /* toggle VREF state based on GPIOx status */
4665 snd_hda_codec_write(codec, codec->afg, 0, 0x7e0,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004666 !!(data & (1 << event->data)));
Matthew Ranostay72474be2008-10-09 09:32:17 -04004667 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02004668 }
4669}
4670
Randy Dunlap78987bd2009-11-05 09:22:30 -08004671static int hp_bseries_system(u32 subsystem_id)
4672{
4673 switch (subsystem_id) {
4674 case 0x103c307e:
4675 case 0x103c307f:
4676 case 0x103c3080:
4677 case 0x103c3081:
4678 case 0x103c1722:
4679 case 0x103c1723:
4680 case 0x103c1724:
4681 case 0x103c1725:
4682 case 0x103c1726:
4683 case 0x103c1727:
4684 case 0x103c1728:
4685 case 0x103c1729:
4686 return 1;
4687 }
4688 return 0;
4689}
4690
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004691#ifdef CONFIG_PROC_FS
4692static void stac92hd_proc_hook(struct snd_info_buffer *buffer,
4693 struct hda_codec *codec, hda_nid_t nid)
4694{
4695 if (nid == codec->afg)
4696 snd_iprintf(buffer, "Power-Map: 0x%02x\n",
4697 snd_hda_codec_read(codec, nid, 0, 0x0fec, 0x0));
4698}
4699
4700static void analog_loop_proc_hook(struct snd_info_buffer *buffer,
4701 struct hda_codec *codec,
4702 unsigned int verb)
4703{
4704 snd_iprintf(buffer, "Analog Loopback: 0x%02x\n",
4705 snd_hda_codec_read(codec, codec->afg, 0, verb, 0));
4706}
4707
4708/* stac92hd71bxx, stac92hd73xx */
4709static void stac92hd7x_proc_hook(struct snd_info_buffer *buffer,
4710 struct hda_codec *codec, hda_nid_t nid)
4711{
4712 stac92hd_proc_hook(buffer, codec, nid);
4713 if (nid == codec->afg)
4714 analog_loop_proc_hook(buffer, codec, 0xfa0);
4715}
4716
4717static void stac9205_proc_hook(struct snd_info_buffer *buffer,
4718 struct hda_codec *codec, hda_nid_t nid)
4719{
4720 if (nid == codec->afg)
4721 analog_loop_proc_hook(buffer, codec, 0xfe0);
4722}
4723
4724static void stac927x_proc_hook(struct snd_info_buffer *buffer,
4725 struct hda_codec *codec, hda_nid_t nid)
4726{
4727 if (nid == codec->afg)
4728 analog_loop_proc_hook(buffer, codec, 0xfeb);
4729}
4730#else
4731#define stac92hd_proc_hook NULL
4732#define stac92hd7x_proc_hook NULL
4733#define stac9205_proc_hook NULL
4734#define stac927x_proc_hook NULL
4735#endif
4736
Takashi Iwaicb53c622007-08-10 17:21:45 +02004737#ifdef SND_HDA_NEEDS_RESUME
Mattff6fdc32005-06-27 15:06:52 +02004738static int stac92xx_resume(struct hda_codec *codec)
4739{
Takashi Iwaidc81bed2007-09-03 09:36:36 +02004740 struct sigmatel_spec *spec = codec->spec;
4741
Takashi Iwai2c885872008-11-18 09:36:55 +01004742 stac92xx_init(codec);
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004743 snd_hda_codec_resume_amp(codec);
4744 snd_hda_codec_resume_cache(codec);
Takashi Iwai2c885872008-11-18 09:36:55 +01004745 /* fake event to set up pins again to override cached values */
Takashi Iwai5f380eb2009-09-14 15:36:14 +02004746 if (spec->hp_detect) {
4747 if (spec->autocfg.hp_pins[0])
4748 stac_issue_unsol_event(codec, spec->autocfg.hp_pins[0]);
4749 else if (spec->autocfg.line_out_pins[0])
4750 stac_issue_unsol_event(codec,
4751 spec->autocfg.line_out_pins[0]);
4752 }
Mattff6fdc32005-06-27 15:06:52 +02004753 return 0;
4754}
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004755
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004756/*
James Gardiner514bf542009-05-03 04:00:44 -04004757 * using power check for controlling mute led of HP notebooks
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004758 * check for mute state only on Speakers (nid = 0x10)
4759 *
4760 * For this feature CONFIG_SND_HDA_POWER_SAVE is needed, otherwise
4761 * the LED is NOT working properly !
James Gardiner514bf542009-05-03 04:00:44 -04004762 *
4763 * Changed name to reflect that it now works for any designated
4764 * model, not just HP HDX.
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004765 */
4766
4767#ifdef CONFIG_SND_HDA_POWER_SAVE
James Gardiner514bf542009-05-03 04:00:44 -04004768static int stac92xx_hp_check_power_status(struct hda_codec *codec,
Takashi Iwai6fce61a2009-03-10 07:48:57 +01004769 hda_nid_t nid)
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004770{
4771 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai6fce61a2009-03-10 07:48:57 +01004772
4773 if (nid == 0x10) {
4774 if (snd_hda_codec_amp_read(codec, nid, 0, HDA_OUTPUT, 0) &
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004775 HDA_AMP_MUTE)
Takashi Iwai86d190e2009-05-26 15:18:58 +02004776 spec->gpio_data &= ~spec->gpio_led; /* orange */
Takashi Iwaiba84bfc2009-05-30 08:59:03 +02004777 else
4778 spec->gpio_data |= spec->gpio_led; /* white */
Takashi Iwai6fce61a2009-03-10 07:48:57 +01004779
Vitaliy Kulikov5bdaaad2009-11-04 07:57:45 +01004780 if (hp_bseries_system(codec->subsystem_id)) {
4781 /* LED state is inverted on these systems */
4782 spec->gpio_data ^= spec->gpio_led;
4783 }
4784
Takashi Iwai6fce61a2009-03-10 07:48:57 +01004785 stac_gpio_set(codec, spec->gpio_mask,
4786 spec->gpio_dir,
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004787 spec->gpio_data);
4788 }
4789
4790 return 0;
4791}
4792#endif
4793
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004794static int stac92xx_suspend(struct hda_codec *codec, pm_message_t state)
4795{
4796 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai05ff7e12009-07-22 12:39:24 +02004797 int i;
4798 hda_nid_t nid;
4799
4800 /* reset each pin before powering down DAC/ADC to avoid click noise */
4801 nid = codec->start_nid;
4802 for (i = 0; i < codec->num_nodes; i++, nid++) {
4803 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwaia22d5432009-07-27 12:54:26 +02004804 unsigned int wid_type = get_wcaps_type(wcaps);
Takashi Iwai05ff7e12009-07-22 12:39:24 +02004805 if (wid_type == AC_WID_PIN)
4806 snd_hda_codec_read(codec, nid, 0,
4807 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
4808 }
4809
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004810 if (spec->eapd_mask)
4811 stac_gpio_set(codec, spec->gpio_mask,
4812 spec->gpio_dir, spec->gpio_data &
4813 ~spec->eapd_mask);
4814 return 0;
4815}
Mattff6fdc32005-06-27 15:06:52 +02004816#endif
4817
Matt2f2f4252005-04-13 14:45:30 +02004818static struct hda_codec_ops stac92xx_patch_ops = {
4819 .build_controls = stac92xx_build_controls,
4820 .build_pcms = stac92xx_build_pcms,
4821 .init = stac92xx_init,
4822 .free = stac92xx_free,
Matt4e550962005-07-04 17:51:39 +02004823 .unsol_event = stac92xx_unsol_event,
Takashi Iwaicb53c622007-08-10 17:21:45 +02004824#ifdef SND_HDA_NEEDS_RESUME
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004825 .suspend = stac92xx_suspend,
Mattff6fdc32005-06-27 15:06:52 +02004826 .resume = stac92xx_resume,
4827#endif
Matt2f2f4252005-04-13 14:45:30 +02004828};
4829
4830static int patch_stac9200(struct hda_codec *codec)
4831{
4832 struct sigmatel_spec *spec;
Mattc7d4b2f2005-06-27 14:59:41 +02004833 int err;
Matt2f2f4252005-04-13 14:45:30 +02004834
Takashi Iwaie560d8d2005-09-09 14:21:46 +02004835 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Matt2f2f4252005-04-13 14:45:30 +02004836 if (spec == NULL)
4837 return -ENOMEM;
4838
4839 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02004840 spec->num_pins = ARRAY_SIZE(stac9200_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02004841 spec->pin_nids = stac9200_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004842 spec->board_config = snd_hda_check_board_config(codec, STAC_9200_MODELS,
4843 stac9200_models,
4844 stac9200_cfg_tbl);
Takashi Iwai330ee992009-02-20 14:33:36 +01004845 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02004846 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4847 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01004848 else
4849 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01004850 stac9200_brd_tbl[spec->board_config]);
Matt2f2f4252005-04-13 14:45:30 +02004851
4852 spec->multiout.max_channels = 2;
4853 spec->multiout.num_dacs = 1;
4854 spec->multiout.dac_nids = stac9200_dac_nids;
4855 spec->adc_nids = stac9200_adc_nids;
4856 spec->mux_nids = stac9200_mux_nids;
Mattdabbed62005-06-14 10:19:34 +02004857 spec->num_muxes = 1;
Matt Porter8b657272006-10-26 17:12:59 +02004858 spec->num_dmics = 0;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02004859 spec->num_adcs = 1;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004860 spec->num_pwrs = 0;
Mattc7d4b2f2005-06-27 14:59:41 +02004861
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02004862 if (spec->board_config == STAC_9200_M4 ||
4863 spec->board_config == STAC_9200_M4_2 ||
Tobin Davisbf277782008-02-03 20:31:47 +01004864 spec->board_config == STAC_9200_OQO)
Takashi Iwai1194b5b2007-10-10 10:04:26 +02004865 spec->init = stac9200_eapd_init;
4866 else
4867 spec->init = stac9200_core_init;
Matt2f2f4252005-04-13 14:45:30 +02004868 spec->mixer = stac9200_mixer;
Mattc7d4b2f2005-06-27 14:59:41 +02004869
Takashi Iwai117f2572008-03-18 09:53:23 +01004870 if (spec->board_config == STAC_9200_PANASONIC) {
4871 spec->gpio_mask = spec->gpio_dir = 0x09;
4872 spec->gpio_data = 0x00;
4873 }
4874
Mattc7d4b2f2005-06-27 14:59:41 +02004875 err = stac9200_parse_auto_config(codec);
4876 if (err < 0) {
4877 stac92xx_free(codec);
4878 return err;
4879 }
Matt2f2f4252005-04-13 14:45:30 +02004880
Takashi Iwai2acc9dc2009-01-09 16:57:14 +01004881 /* CF-74 has no headphone detection, and the driver should *NOT*
4882 * do detection and HP/speaker toggle because the hardware does it.
4883 */
4884 if (spec->board_config == STAC_9200_PANASONIC)
4885 spec->hp_detect = 0;
4886
Matt2f2f4252005-04-13 14:45:30 +02004887 codec->patch_ops = stac92xx_patch_ops;
4888
4889 return 0;
4890}
4891
Tobin Davis8e21c342007-01-08 11:04:17 +01004892static int patch_stac925x(struct hda_codec *codec)
4893{
4894 struct sigmatel_spec *spec;
4895 int err;
4896
4897 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4898 if (spec == NULL)
4899 return -ENOMEM;
4900
4901 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02004902 spec->num_pins = ARRAY_SIZE(stac925x_pin_nids);
Tobin Davis8e21c342007-01-08 11:04:17 +01004903 spec->pin_nids = stac925x_pin_nids;
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02004904
4905 /* Check first for codec ID */
4906 spec->board_config = snd_hda_check_board_codec_sid_config(codec,
4907 STAC_925x_MODELS,
4908 stac925x_models,
4909 stac925x_codec_id_cfg_tbl);
4910
4911 /* Now checks for PCI ID, if codec ID is not found */
4912 if (spec->board_config < 0)
4913 spec->board_config = snd_hda_check_board_config(codec,
4914 STAC_925x_MODELS,
Tobin Davis8e21c342007-01-08 11:04:17 +01004915 stac925x_models,
4916 stac925x_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01004917 again:
Takashi Iwai330ee992009-02-20 14:33:36 +01004918 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02004919 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4920 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01004921 else
4922 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01004923 stac925x_brd_tbl[spec->board_config]);
Tobin Davis8e21c342007-01-08 11:04:17 +01004924
4925 spec->multiout.max_channels = 2;
4926 spec->multiout.num_dacs = 1;
4927 spec->multiout.dac_nids = stac925x_dac_nids;
4928 spec->adc_nids = stac925x_adc_nids;
4929 spec->mux_nids = stac925x_mux_nids;
4930 spec->num_muxes = 1;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02004931 spec->num_adcs = 1;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004932 spec->num_pwrs = 0;
Tobin Davis2c11f952007-05-17 09:36:34 +02004933 switch (codec->vendor_id) {
4934 case 0x83847632: /* STAC9202 */
4935 case 0x83847633: /* STAC9202D */
4936 case 0x83847636: /* STAC9251 */
4937 case 0x83847637: /* STAC9251D */
Takashi Iwaif6e98522007-10-16 14:27:04 +02004938 spec->num_dmics = STAC925X_NUM_DMICS;
Tobin Davis2c11f952007-05-17 09:36:34 +02004939 spec->dmic_nids = stac925x_dmic_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +01004940 spec->num_dmuxes = ARRAY_SIZE(stac925x_dmux_nids);
4941 spec->dmux_nids = stac925x_dmux_nids;
Tobin Davis2c11f952007-05-17 09:36:34 +02004942 break;
4943 default:
4944 spec->num_dmics = 0;
4945 break;
4946 }
Tobin Davis8e21c342007-01-08 11:04:17 +01004947
4948 spec->init = stac925x_core_init;
4949 spec->mixer = stac925x_mixer;
Takashi Iwai6479c632009-07-28 18:20:25 +02004950 spec->num_caps = 1;
4951 spec->capvols = stac925x_capvols;
4952 spec->capsws = stac925x_capsws;
Tobin Davis8e21c342007-01-08 11:04:17 +01004953
4954 err = stac92xx_parse_auto_config(codec, 0x8, 0x7);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01004955 if (!err) {
4956 if (spec->board_config < 0) {
4957 printk(KERN_WARNING "hda_codec: No auto-config is "
4958 "available, default to model=ref\n");
4959 spec->board_config = STAC_925x_REF;
4960 goto again;
4961 }
4962 err = -EINVAL;
4963 }
Tobin Davis8e21c342007-01-08 11:04:17 +01004964 if (err < 0) {
4965 stac92xx_free(codec);
4966 return err;
4967 }
4968
4969 codec->patch_ops = stac92xx_patch_ops;
4970
4971 return 0;
4972}
4973
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004974static int patch_stac92hd73xx(struct hda_codec *codec)
4975{
4976 struct sigmatel_spec *spec;
4977 hda_nid_t conn[STAC92HD73_DAC_COUNT + 2];
4978 int err = 0;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004979 int num_dacs;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004980
4981 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4982 if (spec == NULL)
4983 return -ENOMEM;
4984
4985 codec->spec = spec;
Matthew Ranostaye99d32b2008-09-09 10:46:38 +02004986 codec->slave_dig_outs = stac92hd73xx_slave_dig_outs;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004987 spec->num_pins = ARRAY_SIZE(stac92hd73xx_pin_nids);
4988 spec->pin_nids = stac92hd73xx_pin_nids;
4989 spec->board_config = snd_hda_check_board_config(codec,
4990 STAC_92HD73XX_MODELS,
4991 stac92hd73xx_models,
4992 stac92hd73xx_cfg_tbl);
Takashi Iwai842ae632009-09-02 07:43:08 +02004993 /* check codec subsystem id if not found */
4994 if (spec->board_config < 0)
4995 spec->board_config =
4996 snd_hda_check_board_codec_sid_config(codec,
4997 STAC_92HD73XX_MODELS, stac92hd73xx_models,
4998 stac92hd73xx_codec_id_cfg_tbl);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004999again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005000 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02005001 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5002 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01005003 else
5004 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005005 stac92hd73xx_brd_tbl[spec->board_config]);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005006
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005007 num_dacs = snd_hda_get_connections(codec, 0x0a,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005008 conn, STAC92HD73_DAC_COUNT + 2) - 1;
5009
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005010 if (num_dacs < 3 || num_dacs > 5) {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005011 printk(KERN_WARNING "hda_codec: Could not determine "
5012 "number of channels defaulting to DAC count\n");
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005013 num_dacs = STAC92HD73_DAC_COUNT;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005014 }
Takashi Iwaie2aec172009-09-02 01:00:05 +02005015 spec->init = stac92hd73xx_core_init;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005016 switch (num_dacs) {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005017 case 0x3: /* 6 Channel */
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005018 spec->aloopback_ctl = stac92hd73xx_6ch_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005019 break;
5020 case 0x4: /* 8 Channel */
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005021 spec->aloopback_ctl = stac92hd73xx_8ch_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005022 break;
5023 case 0x5: /* 10 Channel */
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005024 spec->aloopback_ctl = stac92hd73xx_10ch_loopback;
5025 break;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005026 }
5027 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005028
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005029 spec->aloopback_mask = 0x01;
5030 spec->aloopback_shift = 8;
5031
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005032 spec->digbeep_nid = 0x1c;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005033 spec->mux_nids = stac92hd73xx_mux_nids;
5034 spec->adc_nids = stac92hd73xx_adc_nids;
5035 spec->dmic_nids = stac92hd73xx_dmic_nids;
5036 spec->dmux_nids = stac92hd73xx_dmux_nids;
Matthew Ranostayd9737752008-09-07 12:03:41 +02005037 spec->smux_nids = stac92hd73xx_smux_nids;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005038
5039 spec->num_muxes = ARRAY_SIZE(stac92hd73xx_mux_nids);
5040 spec->num_adcs = ARRAY_SIZE(stac92hd73xx_adc_nids);
Takashi Iwai1697055e2007-12-18 18:05:52 +01005041 spec->num_dmuxes = ARRAY_SIZE(stac92hd73xx_dmux_nids);
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04005042
Takashi Iwai6479c632009-07-28 18:20:25 +02005043 spec->num_caps = STAC92HD73XX_NUM_CAPS;
5044 spec->capvols = stac92hd73xx_capvols;
5045 spec->capsws = stac92hd73xx_capsws;
5046
Matthew Ranostaya7662642008-02-21 07:51:14 +01005047 switch (spec->board_config) {
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05005048 case STAC_DELL_EQ:
Matthew Ranostayd654a662008-03-14 08:46:51 +01005049 spec->init = dell_eq_core_init;
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05005050 /* fallthru */
Takashi Iwai661cd8f2008-11-25 15:18:29 +01005051 case STAC_DELL_M6_AMIC:
5052 case STAC_DELL_M6_DMIC:
5053 case STAC_DELL_M6_BOTH:
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04005054 spec->num_smuxes = 0;
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05005055 spec->eapd_switch = 0;
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05005056
Takashi Iwai661cd8f2008-11-25 15:18:29 +01005057 switch (spec->board_config) {
5058 case STAC_DELL_M6_AMIC: /* Analog Mics */
Takashi Iwai330ee992009-02-20 14:33:36 +01005059 snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
Matthew Ranostaya7662642008-02-21 07:51:14 +01005060 spec->num_dmics = 0;
5061 break;
Takashi Iwai661cd8f2008-11-25 15:18:29 +01005062 case STAC_DELL_M6_DMIC: /* Digital Mics */
Takashi Iwai330ee992009-02-20 14:33:36 +01005063 snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
Matthew Ranostaya7662642008-02-21 07:51:14 +01005064 spec->num_dmics = 1;
5065 break;
Takashi Iwai661cd8f2008-11-25 15:18:29 +01005066 case STAC_DELL_M6_BOTH: /* Both */
Takashi Iwai330ee992009-02-20 14:33:36 +01005067 snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
5068 snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
Matthew Ranostaya7662642008-02-21 07:51:14 +01005069 spec->num_dmics = 1;
5070 break;
5071 }
5072 break;
Takashi Iwai842ae632009-09-02 07:43:08 +02005073 case STAC_ALIENWARE_M17X:
5074 spec->num_dmics = STAC92HD73XX_NUM_DMICS;
5075 spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids);
5076 spec->eapd_switch = 0;
5077 break;
Matthew Ranostaya7662642008-02-21 07:51:14 +01005078 default:
5079 spec->num_dmics = STAC92HD73XX_NUM_DMICS;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04005080 spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids);
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05005081 spec->eapd_switch = 1;
Takashi Iwai5207e102009-07-30 13:09:08 +02005082 break;
Matthew Ranostaya7662642008-02-21 07:51:14 +01005083 }
Takashi Iwaiaf6ee302009-09-14 15:03:12 +02005084 if (spec->board_config != STAC_92HD73XX_REF) {
Matthew Ranostayb2c4f4d2008-09-26 10:06:40 -04005085 /* GPIO0 High = Enable EAPD */
5086 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
5087 spec->gpio_data = 0x01;
5088 }
Matthew Ranostaya7662642008-02-21 07:51:14 +01005089
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005090 spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids);
5091 spec->pwr_nids = stac92hd73xx_pwr_nids;
5092
Matthew Ranostayd9737752008-09-07 12:03:41 +02005093 err = stac92xx_parse_auto_config(codec, 0x25, 0x27);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005094
5095 if (!err) {
5096 if (spec->board_config < 0) {
5097 printk(KERN_WARNING "hda_codec: No auto-config is "
5098 "available, default to model=ref\n");
5099 spec->board_config = STAC_92HD73XX_REF;
5100 goto again;
5101 }
5102 err = -EINVAL;
5103 }
5104
5105 if (err < 0) {
5106 stac92xx_free(codec);
5107 return err;
5108 }
5109
Takashi Iwai9e43f0d2008-12-17 14:51:01 +01005110 if (spec->board_config == STAC_92HD73XX_NO_JD)
5111 spec->hp_detect = 0;
5112
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005113 codec->patch_ops = stac92xx_patch_ops;
5114
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005115 codec->proc_widget_hook = stac92hd7x_proc_hook;
5116
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005117 return 0;
5118}
5119
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005120static int patch_stac92hd83xxx(struct hda_codec *codec)
5121{
5122 struct sigmatel_spec *spec;
Matthew Ranostay65557f32009-01-20 16:50:25 -05005123 hda_nid_t conn[STAC92HD83_DAC_COUNT + 1];
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005124 int err;
Matthew Ranostay65557f32009-01-20 16:50:25 -05005125 int num_dacs;
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05005126 hda_nid_t nid;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005127
5128 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5129 if (spec == NULL)
5130 return -ENOMEM;
5131
5132 codec->spec = spec;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04005133 codec->slave_dig_outs = stac92hd83xxx_slave_dig_outs;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005134 spec->digbeep_nid = 0x21;
Takashi Iwai667067d2009-08-13 18:14:42 +02005135 spec->mux_nids = stac92hd83xxx_mux_nids;
5136 spec->num_muxes = ARRAY_SIZE(stac92hd83xxx_mux_nids);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005137 spec->adc_nids = stac92hd83xxx_adc_nids;
Takashi Iwai7570ef12009-08-15 11:57:53 +02005138 spec->num_adcs = ARRAY_SIZE(stac92hd83xxx_adc_nids);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005139 spec->pwr_nids = stac92hd83xxx_pwr_nids;
5140 spec->pwr_mapping = stac92hd83xxx_pwr_mapping;
5141 spec->num_pwrs = ARRAY_SIZE(stac92hd83xxx_pwr_nids);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005142 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005143
5144 spec->init = stac92hd83xxx_core_init;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005145 spec->num_pins = ARRAY_SIZE(stac92hd83xxx_pin_nids);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005146 spec->pin_nids = stac92hd83xxx_pin_nids;
Takashi Iwai6479c632009-07-28 18:20:25 +02005147 spec->num_caps = STAC92HD83XXX_NUM_CAPS;
5148 spec->capvols = stac92hd83xxx_capvols;
5149 spec->capsws = stac92hd83xxx_capsws;
5150
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005151 spec->board_config = snd_hda_check_board_config(codec,
5152 STAC_92HD83XXX_MODELS,
5153 stac92hd83xxx_models,
5154 stac92hd83xxx_cfg_tbl);
5155again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005156 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02005157 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5158 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01005159 else
5160 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005161 stac92hd83xxx_brd_tbl[spec->board_config]);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005162
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05005163 switch (codec->vendor_id) {
5164 case 0x111d7604:
5165 case 0x111d7605:
Matthew Ranostayff2e7332009-04-01 14:49:48 -04005166 case 0x111d76d5:
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05005167 if (spec->board_config == STAC_92HD83XXX_PWR_REF)
5168 break;
5169 spec->num_pwrs = 0;
5170 break;
5171 }
5172
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005173 err = stac92xx_parse_auto_config(codec, 0x1d, 0);
5174 if (!err) {
5175 if (spec->board_config < 0) {
5176 printk(KERN_WARNING "hda_codec: No auto-config is "
5177 "available, default to model=ref\n");
5178 spec->board_config = STAC_92HD83XXX_REF;
5179 goto again;
5180 }
5181 err = -EINVAL;
5182 }
5183
5184 if (err < 0) {
5185 stac92xx_free(codec);
5186 return err;
5187 }
5188
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05005189 switch (spec->board_config) {
5190 case STAC_DELL_S14:
5191 nid = 0xf;
5192 break;
5193 default:
5194 nid = 0xe;
5195 break;
5196 }
5197
5198 num_dacs = snd_hda_get_connections(codec, nid,
5199 conn, STAC92HD83_DAC_COUNT + 1) - 1;
Jaroslav Kysela16a433d2009-07-22 16:20:40 +02005200 if (num_dacs < 0)
5201 num_dacs = STAC92HD83_DAC_COUNT;
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05005202
5203 /* set port X to select the last DAC
5204 */
5205 snd_hda_codec_write_cache(codec, nid, 0,
5206 AC_VERB_SET_CONNECT_SEL, num_dacs);
5207
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005208 codec->patch_ops = stac92xx_patch_ops;
5209
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005210 codec->proc_widget_hook = stac92hd_proc_hook;
5211
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005212 return 0;
5213}
5214
Takashi Iwai330ee992009-02-20 14:33:36 +01005215/* get the pin connection (fixed, none, etc) */
5216static unsigned int stac_get_defcfg_connect(struct hda_codec *codec, int idx)
5217{
5218 struct sigmatel_spec *spec = codec->spec;
5219 unsigned int cfg;
5220
5221 cfg = snd_hda_codec_get_pincfg(codec, spec->pin_nids[idx]);
5222 return get_defcfg_connect(cfg);
5223}
5224
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005225static int stac92hd71bxx_connected_ports(struct hda_codec *codec,
5226 hda_nid_t *nids, int num_nids)
5227{
5228 struct sigmatel_spec *spec = codec->spec;
5229 int idx, num;
5230 unsigned int def_conf;
5231
5232 for (num = 0; num < num_nids; num++) {
5233 for (idx = 0; idx < spec->num_pins; idx++)
5234 if (spec->pin_nids[idx] == nids[num])
5235 break;
5236 if (idx >= spec->num_pins)
5237 break;
Takashi Iwai330ee992009-02-20 14:33:36 +01005238 def_conf = stac_get_defcfg_connect(codec, idx);
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005239 if (def_conf == AC_JACK_PORT_NONE)
5240 break;
5241 }
5242 return num;
5243}
5244
5245static int stac92hd71bxx_connected_smuxes(struct hda_codec *codec,
5246 hda_nid_t dig0pin)
5247{
5248 struct sigmatel_spec *spec = codec->spec;
5249 int idx;
5250
5251 for (idx = 0; idx < spec->num_pins; idx++)
5252 if (spec->pin_nids[idx] == dig0pin)
5253 break;
5254 if ((idx + 2) >= spec->num_pins)
5255 return 0;
5256
5257 /* dig1pin case */
Takashi Iwai330ee992009-02-20 14:33:36 +01005258 if (stac_get_defcfg_connect(codec, idx + 1) != AC_JACK_PORT_NONE)
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005259 return 2;
5260
5261 /* dig0pin + dig2pin case */
Takashi Iwai330ee992009-02-20 14:33:36 +01005262 if (stac_get_defcfg_connect(codec, idx + 2) != AC_JACK_PORT_NONE)
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005263 return 2;
Takashi Iwai330ee992009-02-20 14:33:36 +01005264 if (stac_get_defcfg_connect(codec, idx) != AC_JACK_PORT_NONE)
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005265 return 1;
5266 else
5267 return 0;
5268}
5269
Matthew Ranostaye035b842007-11-06 11:53:55 +01005270static int patch_stac92hd71bxx(struct hda_codec *codec)
5271{
5272 struct sigmatel_spec *spec;
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05005273 struct hda_verb *unmute_init = stac92hd71bxx_unmute_core_init;
Vitaliy Kulikov5bdaaad2009-11-04 07:57:45 +01005274 unsigned int pin_cfg;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005275 int err = 0;
5276
5277 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5278 if (spec == NULL)
5279 return -ENOMEM;
5280
5281 codec->spec = spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005282 codec->patch_ops = stac92xx_patch_ops;
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05005283 spec->num_pins = STAC92HD71BXX_NUM_PINS;
5284 switch (codec->vendor_id) {
5285 case 0x111d76b6:
5286 case 0x111d76b7:
5287 spec->pin_nids = stac92hd71bxx_pin_nids_4port;
5288 break;
5289 case 0x111d7603:
5290 case 0x111d7608:
5291 /* On 92HD75Bx 0x27 isn't a pin nid */
5292 spec->num_pins--;
5293 /* fallthrough */
5294 default:
5295 spec->pin_nids = stac92hd71bxx_pin_nids_6port;
5296 }
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005297 spec->num_pwrs = ARRAY_SIZE(stac92hd71bxx_pwr_nids);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005298 spec->board_config = snd_hda_check_board_config(codec,
5299 STAC_92HD71BXX_MODELS,
5300 stac92hd71bxx_models,
5301 stac92hd71bxx_cfg_tbl);
5302again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005303 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02005304 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5305 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01005306 else
5307 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005308 stac92hd71bxx_brd_tbl[spec->board_config]);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005309
Takashi Iwaifc64b262009-09-14 15:33:01 +02005310 if (spec->board_config != STAC_92HD71BXX_REF) {
Takashi Iwai41c3b642008-11-18 10:45:15 +01005311 /* GPIO0 = EAPD */
5312 spec->gpio_mask = 0x01;
5313 spec->gpio_dir = 0x01;
5314 spec->gpio_data = 0x01;
5315 }
5316
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005317 spec->dmic_nids = stac92hd71bxx_dmic_nids;
5318 spec->dmux_nids = stac92hd71bxx_dmux_nids;
5319
Takashi Iwai6479c632009-07-28 18:20:25 +02005320 spec->num_caps = STAC92HD71BXX_NUM_CAPS;
5321 spec->capvols = stac92hd71bxx_capvols;
5322 spec->capsws = stac92hd71bxx_capsws;
5323
Matthew Ranostay541eee82007-12-14 12:08:04 +01005324 switch (codec->vendor_id) {
5325 case 0x111d76b6: /* 4 Port without Analog Mixer */
5326 case 0x111d76b7:
Herton Ronaldo Krzesinski23c7b522009-02-08 19:51:28 -02005327 unmute_init++;
5328 /* fallthru */
Matthew Ranostay541eee82007-12-14 12:08:04 +01005329 case 0x111d76b4: /* 6 Port without Analog Mixer */
5330 case 0x111d76b5:
Matthew Ranostay541eee82007-12-14 12:08:04 +01005331 spec->init = stac92hd71bxx_core_init;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04005332 codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005333 spec->num_dmics = stac92hd71bxx_connected_ports(codec,
5334 stac92hd71bxx_dmic_nids,
5335 STAC92HD71BXX_NUM_DMICS);
Matthew Ranostay541eee82007-12-14 12:08:04 +01005336 break;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005337 case 0x111d7608: /* 5 Port with Analog Mixer */
Takashi Iwai8e5f2622008-11-15 19:28:54 +01005338 switch (spec->board_config) {
5339 case STAC_HP_M4:
Matthew Ranostay72474be2008-10-09 09:32:17 -04005340 /* Enable VREF power saving on GPIO1 detect */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005341 err = stac_add_event(spec, codec->afg,
5342 STAC_VREF_EVENT, 0x02);
5343 if (err < 0)
5344 return err;
Takashi Iwaic5d08bb2008-11-18 10:55:36 +01005345 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay72474be2008-10-09 09:32:17 -04005346 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x02);
5347 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04005348 AC_VERB_SET_UNSOLICITED_ENABLE,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005349 AC_USRSP_EN | err);
Matthew Ranostay72474be2008-10-09 09:32:17 -04005350 spec->gpio_mask |= 0x02;
5351 break;
5352 }
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005353 if ((codec->revision_id & 0xf) == 0 ||
Takashi Iwai8c2f7672008-12-01 11:54:35 +01005354 (codec->revision_id & 0xf) == 1)
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005355 spec->stream_delay = 40; /* 40 milliseconds */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005356
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005357 /* no output amps */
5358 spec->num_pwrs = 0;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005359 /* disable VSW */
Takashi Iwai26a27982009-07-29 16:28:09 +02005360 spec->init = stac92hd71bxx_core_init;
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05005361 unmute_init++;
Takashi Iwai330ee992009-02-20 14:33:36 +01005362 snd_hda_codec_set_pincfg(codec, 0x0f, 0x40f000f0);
5363 snd_hda_codec_set_pincfg(codec, 0x19, 0x40f000f3);
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005364 stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS - 1] = 0;
5365 spec->num_dmics = stac92hd71bxx_connected_ports(codec,
5366 stac92hd71bxx_dmic_nids,
5367 STAC92HD71BXX_NUM_DMICS - 1);
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005368 break;
5369 case 0x111d7603: /* 6 Port with Analog Mixer */
Takashi Iwai8c2f7672008-12-01 11:54:35 +01005370 if ((codec->revision_id & 0xf) == 1)
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005371 spec->stream_delay = 40; /* 40 milliseconds */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005372
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005373 /* no output amps */
5374 spec->num_pwrs = 0;
5375 /* fallthru */
Matthew Ranostay541eee82007-12-14 12:08:04 +01005376 default:
Takashi Iwai26a27982009-07-29 16:28:09 +02005377 spec->init = stac92hd71bxx_core_init;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04005378 codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005379 spec->num_dmics = stac92hd71bxx_connected_ports(codec,
5380 stac92hd71bxx_dmic_nids,
5381 STAC92HD71BXX_NUM_DMICS);
Takashi Iwai5207e102009-07-30 13:09:08 +02005382 break;
Matthew Ranostay541eee82007-12-14 12:08:04 +01005383 }
5384
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05005385 if (get_wcaps(codec, 0xa) & AC_WCAP_IN_AMP)
5386 snd_hda_sequence_write_cache(codec, unmute_init);
5387
Takashi Iwaib20f3b82009-06-02 01:20:22 +02005388 /* Some HP machines seem to have unstable codec communications
5389 * especially with ATI fglrx driver. For recovering from the
5390 * CORB/RIRB stall, allow the BUS reset and keep always sync
5391 */
5392 if (spec->board_config == STAC_HP_DV5) {
5393 codec->bus->sync_write = 1;
5394 codec->bus->allow_bus_reset = 1;
5395 }
5396
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005397 spec->aloopback_ctl = stac92hd71bxx_loopback;
Matthew Ranostay4b33c762008-10-10 09:07:23 -04005398 spec->aloopback_mask = 0x50;
Matthew Ranostay541eee82007-12-14 12:08:04 +01005399 spec->aloopback_shift = 0;
5400
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005401 spec->powerdown_adcs = 1;
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005402 spec->digbeep_nid = 0x26;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005403 spec->mux_nids = stac92hd71bxx_mux_nids;
5404 spec->adc_nids = stac92hd71bxx_adc_nids;
Matthew Ranostayd9737752008-09-07 12:03:41 +02005405 spec->smux_nids = stac92hd71bxx_smux_nids;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005406 spec->pwr_nids = stac92hd71bxx_pwr_nids;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005407
5408 spec->num_muxes = ARRAY_SIZE(stac92hd71bxx_mux_nids);
5409 spec->num_adcs = ARRAY_SIZE(stac92hd71bxx_adc_nids);
Takashi Iwai5207e102009-07-30 13:09:08 +02005410 spec->num_dmuxes = ARRAY_SIZE(stac92hd71bxx_dmux_nids);
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005411 spec->num_smuxes = stac92hd71bxx_connected_smuxes(codec, 0x1e);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005412
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005413 switch (spec->board_config) {
5414 case STAC_HP_M4:
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005415 /* enable internal microphone */
Takashi Iwai330ee992009-02-20 14:33:36 +01005416 snd_hda_codec_set_pincfg(codec, 0x0e, 0x01813040);
Matthew Ranostayb9aea712008-10-09 08:37:28 -04005417 stac92xx_auto_set_pinctl(codec, 0x0e,
5418 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80);
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05005419 /* fallthru */
5420 case STAC_DELL_M4_2:
5421 spec->num_dmics = 0;
5422 spec->num_smuxes = 0;
5423 spec->num_dmuxes = 0;
5424 break;
5425 case STAC_DELL_M4_1:
5426 case STAC_DELL_M4_3:
5427 spec->num_dmics = 1;
5428 spec->num_smuxes = 0;
Takashi Iwaiea18aa42009-02-27 17:36:33 +01005429 spec->num_dmuxes = 1;
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005430 break;
James Gardiner514bf542009-05-03 04:00:44 -04005431 case STAC_HP_DV4_1222NR:
5432 spec->num_dmics = 1;
5433 /* I don't know if it needs 1 or 2 smuxes - will wait for
5434 * bug reports to fix if needed
5435 */
5436 spec->num_smuxes = 1;
5437 spec->num_dmuxes = 1;
Takashi Iwai86d190e2009-05-26 15:18:58 +02005438 spec->gpio_led = 0x01;
James Gardiner514bf542009-05-03 04:00:44 -04005439 /* fallthrough */
Herton Ronaldo Krzesinskie2ea57a2009-02-16 10:23:00 +01005440 case STAC_HP_DV5:
Takashi Iwai330ee992009-02-20 14:33:36 +01005441 snd_hda_codec_set_pincfg(codec, 0x0d, 0x90170010);
Herton Ronaldo Krzesinskie2ea57a2009-02-16 10:23:00 +01005442 stac92xx_auto_set_pinctl(codec, 0x0d, AC_PINCTL_OUT_EN);
Takashi Iwai6e34c032009-09-14 15:42:18 +02005443 /* HP dv6 gives the headphone pin as a line-out. Thus we
5444 * need to set hp_detect flag here to force to enable HP
5445 * detection.
5446 */
5447 spec->hp_detect = 1;
Herton Ronaldo Krzesinskie2ea57a2009-02-16 10:23:00 +01005448 break;
Christoph Plattnerae6241f2009-03-08 23:19:05 +01005449 case STAC_HP_HDX:
5450 spec->num_dmics = 1;
5451 spec->num_dmuxes = 1;
5452 spec->num_smuxes = 1;
Christoph Plattner443e26d2009-03-10 00:05:56 +01005453 /* orange/white mute led on GPIO3, orange=0, white=1 */
Takashi Iwai86d190e2009-05-26 15:18:58 +02005454 spec->gpio_led = 0x08;
5455 break;
5456 }
Christoph Plattner443e26d2009-03-10 00:05:56 +01005457
Vitaliy Kulikov5bdaaad2009-11-04 07:57:45 +01005458 if (hp_bseries_system(codec->subsystem_id)) {
5459 pin_cfg = snd_hda_codec_get_pincfg(codec, 0x0f);
5460 if (get_defcfg_device(pin_cfg) == AC_JACK_LINE_OUT ||
5461 get_defcfg_device(pin_cfg) == AC_JACK_SPEAKER ||
5462 get_defcfg_device(pin_cfg) == AC_JACK_HP_OUT) {
5463 /* It was changed in the BIOS to just satisfy MS DTM.
5464 * Lets turn it back into slaved HP
5465 */
5466 pin_cfg = (pin_cfg & (~AC_DEFCFG_DEVICE))
5467 | (AC_JACK_HP_OUT <<
5468 AC_DEFCFG_DEVICE_SHIFT);
5469 pin_cfg = (pin_cfg & (~(AC_DEFCFG_DEF_ASSOC
5470 | AC_DEFCFG_SEQUENCE)))
5471 | 0x1f;
5472 snd_hda_codec_set_pincfg(codec, 0x0f, pin_cfg);
5473 }
5474 }
5475
5476 if ((codec->subsystem_id >> 16) == PCI_VENDOR_ID_HP) {
5477 const struct dmi_device *dev = NULL;
5478 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING,
5479 NULL, dev))) {
5480 if (strcmp(dev->name, "HP_Mute_LED_1")) {
5481 switch (codec->vendor_id) {
5482 case 0x111d7608:
5483 spec->gpio_led = 0x01;
5484 break;
5485 case 0x111d7600:
5486 case 0x111d7601:
5487 case 0x111d7602:
5488 case 0x111d7603:
5489 spec->gpio_led = 0x08;
5490 break;
5491 }
5492 break;
5493 }
5494 }
5495 }
5496
Takashi Iwai86d190e2009-05-26 15:18:58 +02005497#ifdef CONFIG_SND_HDA_POWER_SAVE
5498 if (spec->gpio_led) {
5499 spec->gpio_mask |= spec->gpio_led;
5500 spec->gpio_dir |= spec->gpio_led;
5501 spec->gpio_data |= spec->gpio_led;
Christoph Plattner443e26d2009-03-10 00:05:56 +01005502 /* register check_power_status callback. */
Takashi Iwai6fce61a2009-03-10 07:48:57 +01005503 codec->patch_ops.check_power_status =
Takashi Iwai86d190e2009-05-26 15:18:58 +02005504 stac92xx_hp_check_power_status;
5505 }
Christoph Plattner443e26d2009-03-10 00:05:56 +01005506#endif
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005507
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005508 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005509
Herton Ronaldo Krzesinski29d4ab42009-02-04 11:37:27 -05005510 err = stac92xx_parse_auto_config(codec, 0x21, 0);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005511 if (!err) {
5512 if (spec->board_config < 0) {
5513 printk(KERN_WARNING "hda_codec: No auto-config is "
5514 "available, default to model=ref\n");
5515 spec->board_config = STAC_92HD71BXX_REF;
5516 goto again;
5517 }
5518 err = -EINVAL;
5519 }
5520
5521 if (err < 0) {
5522 stac92xx_free(codec);
5523 return err;
5524 }
5525
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005526 codec->proc_widget_hook = stac92hd7x_proc_hook;
5527
Matthew Ranostaye035b842007-11-06 11:53:55 +01005528 return 0;
Takashi Iwai86d190e2009-05-26 15:18:58 +02005529}
Matthew Ranostaye035b842007-11-06 11:53:55 +01005530
Matt2f2f4252005-04-13 14:45:30 +02005531static int patch_stac922x(struct hda_codec *codec)
5532{
5533 struct sigmatel_spec *spec;
Mattc7d4b2f2005-06-27 14:59:41 +02005534 int err;
Matt2f2f4252005-04-13 14:45:30 +02005535
Takashi Iwaie560d8d2005-09-09 14:21:46 +02005536 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Matt2f2f4252005-04-13 14:45:30 +02005537 if (spec == NULL)
5538 return -ENOMEM;
5539
5540 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005541 spec->num_pins = ARRAY_SIZE(stac922x_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005542 spec->pin_nids = stac922x_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005543 spec->board_config = snd_hda_check_board_config(codec, STAC_922X_MODELS,
5544 stac922x_models,
5545 stac922x_cfg_tbl);
Nicolas Boichat536319a2008-07-21 22:18:01 +08005546 if (spec->board_config == STAC_INTEL_MAC_AUTO) {
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005547 spec->gpio_mask = spec->gpio_dir = 0x03;
5548 spec->gpio_data = 0x03;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005549 /* Intel Macs have all same PCI SSID, so we need to check
5550 * codec SSID to distinguish the exact models
5551 */
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01005552 printk(KERN_INFO "hda_codec: STAC922x, Apple subsys_id=%x\n", codec->subsystem_id);
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005553 switch (codec->subsystem_id) {
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005554
5555 case 0x106b0800:
5556 spec->board_config = STAC_INTEL_MAC_V1;
Abhijit Bhopatkarc45e20e2007-04-17 11:57:16 +02005557 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005558 case 0x106b0600:
5559 case 0x106b0700:
5560 spec->board_config = STAC_INTEL_MAC_V2;
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01005561 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005562 case 0x106b0e00:
5563 case 0x106b0f00:
5564 case 0x106b1600:
5565 case 0x106b1700:
5566 case 0x106b0200:
5567 case 0x106b1e00:
5568 spec->board_config = STAC_INTEL_MAC_V3;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005569 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005570 case 0x106b1a00:
5571 case 0x00000100:
5572 spec->board_config = STAC_INTEL_MAC_V4;
Sylvain FORETf16928f2007-04-27 14:22:36 +02005573 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005574 case 0x106b0a00:
5575 case 0x106b2200:
5576 spec->board_config = STAC_INTEL_MAC_V5;
Takashi Iwai0dae0f82007-05-21 12:41:29 +02005577 break;
Nicolas Boichat536319a2008-07-21 22:18:01 +08005578 default:
5579 spec->board_config = STAC_INTEL_MAC_V3;
5580 break;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005581 }
5582 }
5583
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005584 again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005585 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02005586 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5587 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01005588 else
5589 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005590 stac922x_brd_tbl[spec->board_config]);
Matt2f2f4252005-04-13 14:45:30 +02005591
Matt2f2f4252005-04-13 14:45:30 +02005592 spec->adc_nids = stac922x_adc_nids;
5593 spec->mux_nids = stac922x_mux_nids;
Takashi Iwai25494132007-03-12 12:36:16 +01005594 spec->num_muxes = ARRAY_SIZE(stac922x_mux_nids);
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005595 spec->num_adcs = ARRAY_SIZE(stac922x_adc_nids);
Matt Porter8b657272006-10-26 17:12:59 +02005596 spec->num_dmics = 0;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005597 spec->num_pwrs = 0;
Mattc7d4b2f2005-06-27 14:59:41 +02005598
5599 spec->init = stac922x_core_init;
Takashi Iwai6479c632009-07-28 18:20:25 +02005600
5601 spec->num_caps = STAC922X_NUM_CAPS;
5602 spec->capvols = stac922x_capvols;
5603 spec->capsws = stac922x_capsws;
Mattc7d4b2f2005-06-27 14:59:41 +02005604
5605 spec->multiout.dac_nids = spec->dac_nids;
Takashi Iwai19039bd2006-06-28 15:52:16 +02005606
Matt Porter3cc08dc2006-01-23 15:27:49 +01005607 err = stac92xx_parse_auto_config(codec, 0x08, 0x09);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005608 if (!err) {
5609 if (spec->board_config < 0) {
5610 printk(KERN_WARNING "hda_codec: No auto-config is "
5611 "available, default to model=ref\n");
5612 spec->board_config = STAC_D945_REF;
5613 goto again;
5614 }
5615 err = -EINVAL;
5616 }
Matt Porter3cc08dc2006-01-23 15:27:49 +01005617 if (err < 0) {
5618 stac92xx_free(codec);
5619 return err;
5620 }
5621
5622 codec->patch_ops = stac92xx_patch_ops;
5623
Takashi Iwai807a46362007-05-29 19:01:37 +02005624 /* Fix Mux capture level; max to 2 */
5625 snd_hda_override_amp_caps(codec, 0x12, HDA_OUTPUT,
5626 (0 << AC_AMPCAP_OFFSET_SHIFT) |
5627 (2 << AC_AMPCAP_NUM_STEPS_SHIFT) |
5628 (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5629 (0 << AC_AMPCAP_MUTE_SHIFT));
5630
Matt Porter3cc08dc2006-01-23 15:27:49 +01005631 return 0;
5632}
5633
5634static int patch_stac927x(struct hda_codec *codec)
5635{
5636 struct sigmatel_spec *spec;
5637 int err;
5638
5639 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5640 if (spec == NULL)
5641 return -ENOMEM;
5642
5643 codec->spec = spec;
Matthew Ranostay45c1d852009-02-04 17:49:41 -05005644 codec->slave_dig_outs = stac927x_slave_dig_outs;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005645 spec->num_pins = ARRAY_SIZE(stac927x_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005646 spec->pin_nids = stac927x_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005647 spec->board_config = snd_hda_check_board_config(codec, STAC_927X_MODELS,
5648 stac927x_models,
5649 stac927x_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005650 again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005651 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02005652 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5653 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01005654 else
5655 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005656 stac927x_brd_tbl[spec->board_config]);
Matt Porter3cc08dc2006-01-23 15:27:49 +01005657
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005658 spec->digbeep_nid = 0x23;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005659 spec->adc_nids = stac927x_adc_nids;
5660 spec->num_adcs = ARRAY_SIZE(stac927x_adc_nids);
5661 spec->mux_nids = stac927x_mux_nids;
5662 spec->num_muxes = ARRAY_SIZE(stac927x_mux_nids);
Matthew Ranostayd9737752008-09-07 12:03:41 +02005663 spec->smux_nids = stac927x_smux_nids;
5664 spec->num_smuxes = ARRAY_SIZE(stac927x_smux_nids);
Matthew Ranostay65973632008-09-16 10:39:37 -04005665 spec->spdif_labels = stac927x_spdif_labels;
Matthew Ranostayb76c8502008-02-06 14:49:44 +01005666 spec->dac_list = stac927x_dac_nids;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005667 spec->multiout.dac_nids = spec->dac_nids;
5668
Takashi Iwaiaf6ee302009-09-14 15:03:12 +02005669 if (spec->board_config != STAC_D965_REF) {
5670 /* GPIO0 High = Enable EAPD */
5671 spec->eapd_mask = spec->gpio_mask = 0x01;
5672 spec->gpio_dir = spec->gpio_data = 0x01;
5673 }
5674
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005675 switch (spec->board_config) {
Tobin Davis93ed1502006-09-01 21:03:12 +02005676 case STAC_D965_3ST:
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005677 case STAC_D965_5ST:
5678 /* GPIO0 High = Enable EAPD */
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005679 spec->num_dmics = 0;
Tobin Davis93ed1502006-09-01 21:03:12 +02005680 spec->init = d965_core_init;
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005681 break;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005682 case STAC_DELL_BIOS:
Matthew Ranostay780c8be2008-04-14 13:32:27 +02005683 switch (codec->subsystem_id) {
5684 case 0x10280209:
5685 case 0x1028022e:
5686 /* correct the device field to SPDIF out */
Takashi Iwai330ee992009-02-20 14:33:36 +01005687 snd_hda_codec_set_pincfg(codec, 0x21, 0x01442070);
Matthew Ranostay780c8be2008-04-14 13:32:27 +02005688 break;
Takashi Iwai86d190e2009-05-26 15:18:58 +02005689 }
Matthew Ranostay03d7ca12008-02-21 07:51:46 +01005690 /* configure the analog microphone on some laptops */
Takashi Iwai330ee992009-02-20 14:33:36 +01005691 snd_hda_codec_set_pincfg(codec, 0x0c, 0x90a79130);
Matthew Ranostay2f32d902008-01-10 13:06:26 +01005692 /* correct the front output jack as a hp out */
Takashi Iwai330ee992009-02-20 14:33:36 +01005693 snd_hda_codec_set_pincfg(codec, 0x0f, 0x0227011f);
Matthew Ranostayc481fca2008-01-07 12:18:28 +01005694 /* correct the front input jack as a mic */
Takashi Iwai330ee992009-02-20 14:33:36 +01005695 snd_hda_codec_set_pincfg(codec, 0x0e, 0x02a79130);
Matthew Ranostayc481fca2008-01-07 12:18:28 +01005696 /* fallthru */
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005697 case STAC_DELL_3ST:
Takashi Iwaiaf6ee302009-09-14 15:03:12 +02005698 if (codec->subsystem_id != 0x1028022f) {
5699 /* GPIO2 High = Enable EAPD */
5700 spec->eapd_mask = spec->gpio_mask = 0x04;
5701 spec->gpio_dir = spec->gpio_data = 0x04;
5702 }
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005703 spec->dmic_nids = stac927x_dmic_nids;
5704 spec->num_dmics = STAC927X_NUM_DMICS;
5705
Takashi Iwaiccca7cd2009-10-13 15:32:21 +02005706 spec->init = dell_3st_core_init;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005707 spec->dmux_nids = stac927x_dmux_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +01005708 spec->num_dmuxes = ARRAY_SIZE(stac927x_dmux_nids);
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005709 break;
Takashi Iwai54930532009-10-11 17:38:29 +02005710 case STAC_927X_VOLKNOB:
5711 spec->num_dmics = 0;
5712 spec->init = stac927x_volknob_core_init;
5713 break;
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005714 default:
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005715 spec->num_dmics = 0;
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005716 spec->init = stac927x_core_init;
Takashi Iwaiaf6ee302009-09-14 15:03:12 +02005717 break;
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005718 }
Matt Porter3cc08dc2006-01-23 15:27:49 +01005719
Takashi Iwai6479c632009-07-28 18:20:25 +02005720 spec->num_caps = STAC927X_NUM_CAPS;
5721 spec->capvols = stac927x_capvols;
5722 spec->capsws = stac927x_capsws;
5723
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005724 spec->num_pwrs = 0;
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005725 spec->aloopback_ctl = stac927x_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005726 spec->aloopback_mask = 0x40;
5727 spec->aloopback_shift = 0;
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05005728 spec->eapd_switch = 1;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005729
Matt Porter3cc08dc2006-01-23 15:27:49 +01005730 err = stac92xx_parse_auto_config(codec, 0x1e, 0x20);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005731 if (!err) {
5732 if (spec->board_config < 0) {
5733 printk(KERN_WARNING "hda_codec: No auto-config is "
5734 "available, default to model=ref\n");
5735 spec->board_config = STAC_D965_REF;
5736 goto again;
5737 }
5738 err = -EINVAL;
5739 }
Mattc7d4b2f2005-06-27 14:59:41 +02005740 if (err < 0) {
5741 stac92xx_free(codec);
5742 return err;
5743 }
Matt2f2f4252005-04-13 14:45:30 +02005744
5745 codec->patch_ops = stac92xx_patch_ops;
5746
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005747 codec->proc_widget_hook = stac927x_proc_hook;
5748
Takashi Iwai52987652008-01-16 16:09:47 +01005749 /*
5750 * !!FIXME!!
5751 * The STAC927x seem to require fairly long delays for certain
5752 * command sequences. With too short delays (even if the answer
5753 * is set to RIRB properly), it results in the silence output
5754 * on some hardwares like Dell.
5755 *
5756 * The below flag enables the longer delay (see get_response
5757 * in hda_intel.c).
5758 */
5759 codec->bus->needs_damn_long_delay = 1;
5760
Takashi Iwaie28d8322008-12-17 13:48:29 +01005761 /* no jack detecion for ref-no-jd model */
5762 if (spec->board_config == STAC_D965_REF_NO_JD)
5763 spec->hp_detect = 0;
5764
Matt2f2f4252005-04-13 14:45:30 +02005765 return 0;
5766}
5767
Matt Porterf3302a52006-07-31 12:49:34 +02005768static int patch_stac9205(struct hda_codec *codec)
5769{
5770 struct sigmatel_spec *spec;
Takashi Iwai82599802007-07-31 15:56:24 +02005771 int err;
Matt Porterf3302a52006-07-31 12:49:34 +02005772
5773 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5774 if (spec == NULL)
5775 return -ENOMEM;
5776
5777 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005778 spec->num_pins = ARRAY_SIZE(stac9205_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005779 spec->pin_nids = stac9205_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005780 spec->board_config = snd_hda_check_board_config(codec, STAC_9205_MODELS,
5781 stac9205_models,
5782 stac9205_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005783 again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005784 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02005785 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5786 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01005787 else
5788 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005789 stac9205_brd_tbl[spec->board_config]);
Matt Porterf3302a52006-07-31 12:49:34 +02005790
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005791 spec->digbeep_nid = 0x23;
Matt Porterf3302a52006-07-31 12:49:34 +02005792 spec->adc_nids = stac9205_adc_nids;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005793 spec->num_adcs = ARRAY_SIZE(stac9205_adc_nids);
Matt Porterf3302a52006-07-31 12:49:34 +02005794 spec->mux_nids = stac9205_mux_nids;
Takashi Iwai25494132007-03-12 12:36:16 +01005795 spec->num_muxes = ARRAY_SIZE(stac9205_mux_nids);
Matthew Ranostayd9737752008-09-07 12:03:41 +02005796 spec->smux_nids = stac9205_smux_nids;
5797 spec->num_smuxes = ARRAY_SIZE(stac9205_smux_nids);
Matt Porter8b657272006-10-26 17:12:59 +02005798 spec->dmic_nids = stac9205_dmic_nids;
Takashi Iwaif6e98522007-10-16 14:27:04 +02005799 spec->num_dmics = STAC9205_NUM_DMICS;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005800 spec->dmux_nids = stac9205_dmux_nids;
Takashi Iwai1697055e2007-12-18 18:05:52 +01005801 spec->num_dmuxes = ARRAY_SIZE(stac9205_dmux_nids);
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005802 spec->num_pwrs = 0;
Matt Porterf3302a52006-07-31 12:49:34 +02005803
5804 spec->init = stac9205_core_init;
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005805 spec->aloopback_ctl = stac9205_loopback;
Matt Porterf3302a52006-07-31 12:49:34 +02005806
Takashi Iwai6479c632009-07-28 18:20:25 +02005807 spec->num_caps = STAC9205_NUM_CAPS;
5808 spec->capvols = stac9205_capvols;
5809 spec->capsws = stac9205_capsws;
5810
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005811 spec->aloopback_mask = 0x40;
5812 spec->aloopback_shift = 0;
Takashi Iwaid9a42682009-01-22 17:40:18 +01005813 /* Turn on/off EAPD per HP plugging */
5814 if (spec->board_config != STAC_9205_EAPD)
5815 spec->eapd_switch = 1;
Matt Porterf3302a52006-07-31 12:49:34 +02005816 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostay87d48362007-07-17 11:52:24 +02005817
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005818 switch (spec->board_config){
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005819 case STAC_9205_DELL_M43:
Matthew Ranostay87d48362007-07-17 11:52:24 +02005820 /* Enable SPDIF in/out */
Takashi Iwai330ee992009-02-20 14:33:36 +01005821 snd_hda_codec_set_pincfg(codec, 0x1f, 0x01441030);
5822 snd_hda_codec_set_pincfg(codec, 0x20, 0x1c410030);
Matt Porter33382402006-12-18 13:17:28 +01005823
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005824 /* Enable unsol response for GPIO4/Dock HP connection */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005825 err = stac_add_event(spec, codec->afg, STAC_VREF_EVENT, 0x01);
5826 if (err < 0)
5827 return err;
Takashi Iwaic5d08bb2008-11-18 10:55:36 +01005828 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005829 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10);
5830 snd_hda_codec_write_cache(codec, codec->afg, 0,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005831 AC_VERB_SET_UNSOLICITED_ENABLE,
5832 AC_USRSP_EN | err);
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005833
5834 spec->gpio_dir = 0x0b;
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005835 spec->eapd_mask = 0x01;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005836 spec->gpio_mask = 0x1b;
5837 spec->gpio_mute = 0x10;
Matthew Ranostaye2e7d622008-01-24 15:32:15 +01005838 /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute,
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005839 * GPIO3 Low = DRM
Matthew Ranostay87d48362007-07-17 11:52:24 +02005840 */
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005841 spec->gpio_data = 0x01;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005842 break;
Matthew Ranostayb2c4f4d2008-09-26 10:06:40 -04005843 case STAC_9205_REF:
5844 /* SPDIF-In enabled */
5845 break;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005846 default:
5847 /* GPIO0 High = EAPD */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005848 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005849 spec->gpio_data = 0x01;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005850 break;
5851 }
Matthew Ranostay87d48362007-07-17 11:52:24 +02005852
Matt Porterf3302a52006-07-31 12:49:34 +02005853 err = stac92xx_parse_auto_config(codec, 0x1f, 0x20);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005854 if (!err) {
5855 if (spec->board_config < 0) {
5856 printk(KERN_WARNING "hda_codec: No auto-config is "
5857 "available, default to model=ref\n");
5858 spec->board_config = STAC_9205_REF;
5859 goto again;
5860 }
5861 err = -EINVAL;
5862 }
Matt Porterf3302a52006-07-31 12:49:34 +02005863 if (err < 0) {
5864 stac92xx_free(codec);
5865 return err;
5866 }
5867
5868 codec->patch_ops = stac92xx_patch_ops;
5869
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005870 codec->proc_widget_hook = stac9205_proc_hook;
5871
Matt Porterf3302a52006-07-31 12:49:34 +02005872 return 0;
5873}
5874
Matt2f2f4252005-04-13 14:45:30 +02005875/*
Guillaume Munch6d859062006-08-22 17:15:47 +02005876 * STAC9872 hack
Takashi Iwaidb064e52006-03-16 16:04:58 +01005877 */
5878
Takashi Iwai1e137f92009-01-21 07:41:22 +01005879static struct hda_verb stac9872_core_init[] = {
Takashi Iwai1624cb92007-07-05 13:10:51 +02005880 {0x15, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mic-sel: 0a,0d,14,02 */
Takashi Iwaidb064e52006-03-16 16:04:58 +01005881 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */
5882 {}
5883};
5884
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005885static hda_nid_t stac9872_pin_nids[] = {
5886 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
5887 0x11, 0x13, 0x14,
5888};
5889
5890static hda_nid_t stac9872_adc_nids[] = {
5891 0x8 /*,0x6*/
5892};
5893
5894static hda_nid_t stac9872_mux_nids[] = {
5895 0x15
5896};
5897
Takashi Iwai6479c632009-07-28 18:20:25 +02005898static unsigned long stac9872_capvols[] = {
5899 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT),
5900};
5901#define stac9872_capsws stac9872_capvols
5902
Takashi Iwai307282c2009-03-12 18:17:58 +01005903static unsigned int stac9872_vaio_pin_configs[9] = {
5904 0x03211020, 0x411111f0, 0x411111f0, 0x03a15030,
5905 0x411111f0, 0x90170110, 0x411111f0, 0x411111f0,
5906 0x90a7013e
5907};
5908
5909static const char *stac9872_models[STAC_9872_MODELS] = {
5910 [STAC_9872_AUTO] = "auto",
5911 [STAC_9872_VAIO] = "vaio",
5912};
5913
5914static unsigned int *stac9872_brd_tbl[STAC_9872_MODELS] = {
5915 [STAC_9872_VAIO] = stac9872_vaio_pin_configs,
5916};
5917
5918static struct snd_pci_quirk stac9872_cfg_tbl[] = {
Takashi Iwaib04add92009-07-20 08:01:36 +02005919 SND_PCI_QUIRK_MASK(0x104d, 0xfff0, 0x81e0,
5920 "Sony VAIO F/S", STAC_9872_VAIO),
Takashi Iwai307282c2009-03-12 18:17:58 +01005921 {} /* terminator */
5922};
5923
Guillaume Munch6d859062006-08-22 17:15:47 +02005924static int patch_stac9872(struct hda_codec *codec)
Takashi Iwaidb064e52006-03-16 16:04:58 +01005925{
5926 struct sigmatel_spec *spec;
Takashi Iwai1e137f92009-01-21 07:41:22 +01005927 int err;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005928
Takashi Iwaidb064e52006-03-16 16:04:58 +01005929 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5930 if (spec == NULL)
5931 return -ENOMEM;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005932 codec->spec = spec;
Takashi Iwaib04add92009-07-20 08:01:36 +02005933 spec->num_pins = ARRAY_SIZE(stac9872_pin_nids);
5934 spec->pin_nids = stac9872_pin_nids;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005935
5936 spec->board_config = snd_hda_check_board_config(codec, STAC_9872_MODELS,
5937 stac9872_models,
5938 stac9872_cfg_tbl);
Takashi Iwai307282c2009-03-12 18:17:58 +01005939 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02005940 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5941 codec->chip_name);
Takashi Iwai307282c2009-03-12 18:17:58 +01005942 else
5943 stac92xx_set_config_regs(codec,
5944 stac9872_brd_tbl[spec->board_config]);
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005945
Takashi Iwai1e137f92009-01-21 07:41:22 +01005946 spec->multiout.dac_nids = spec->dac_nids;
5947 spec->num_adcs = ARRAY_SIZE(stac9872_adc_nids);
5948 spec->adc_nids = stac9872_adc_nids;
5949 spec->num_muxes = ARRAY_SIZE(stac9872_mux_nids);
5950 spec->mux_nids = stac9872_mux_nids;
Takashi Iwai1e137f92009-01-21 07:41:22 +01005951 spec->init = stac9872_core_init;
Takashi Iwai6479c632009-07-28 18:20:25 +02005952 spec->num_caps = 1;
5953 spec->capvols = stac9872_capvols;
5954 spec->capsws = stac9872_capsws;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005955
Takashi Iwai1e137f92009-01-21 07:41:22 +01005956 err = stac92xx_parse_auto_config(codec, 0x10, 0x12);
5957 if (err < 0) {
5958 stac92xx_free(codec);
5959 return -EINVAL;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005960 }
Takashi Iwai1e137f92009-01-21 07:41:22 +01005961 spec->input_mux = &spec->private_imux;
5962 codec->patch_ops = stac92xx_patch_ops;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005963 return 0;
5964}
5965
5966
5967/*
Matt2f2f4252005-04-13 14:45:30 +02005968 * patch entries
5969 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005970static struct hda_codec_preset snd_hda_preset_sigmatel[] = {
Matt2f2f4252005-04-13 14:45:30 +02005971 { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 },
5972 { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x },
5973 { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x },
5974 { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x },
5975 { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x },
5976 { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x },
5977 { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x },
Matt Porter22a27c72006-07-06 18:49:10 +02005978 { .id = 0x83847618, .name = "STAC9227", .patch = patch_stac927x },
5979 { .id = 0x83847619, .name = "STAC9227", .patch = patch_stac927x },
5980 { .id = 0x83847616, .name = "STAC9228", .patch = patch_stac927x },
5981 { .id = 0x83847617, .name = "STAC9228", .patch = patch_stac927x },
5982 { .id = 0x83847614, .name = "STAC9229", .patch = patch_stac927x },
5983 { .id = 0x83847615, .name = "STAC9229", .patch = patch_stac927x },
Matt Porter3cc08dc2006-01-23 15:27:49 +01005984 { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x },
5985 { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x },
5986 { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x },
5987 { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x },
5988 { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x },
5989 { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x },
5990 { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x },
5991 { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x },
5992 { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x },
5993 { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x },
Tobin Davis8e21c342007-01-08 11:04:17 +01005994 { .id = 0x83847632, .name = "STAC9202", .patch = patch_stac925x },
5995 { .id = 0x83847633, .name = "STAC9202D", .patch = patch_stac925x },
5996 { .id = 0x83847634, .name = "STAC9250", .patch = patch_stac925x },
5997 { .id = 0x83847635, .name = "STAC9250D", .patch = patch_stac925x },
5998 { .id = 0x83847636, .name = "STAC9251", .patch = patch_stac925x },
5999 { .id = 0x83847637, .name = "STAC9250D", .patch = patch_stac925x },
Takashi Iwai7bd3c0f2008-05-02 12:28:02 +02006000 { .id = 0x83847645, .name = "92HD206X", .patch = patch_stac927x },
6001 { .id = 0x83847646, .name = "92HD206D", .patch = patch_stac927x },
Guillaume Munch6d859062006-08-22 17:15:47 +02006002 /* The following does not take into account .id=0x83847661 when subsys =
6003 * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are
6004 * currently not fully supported.
6005 */
6006 { .id = 0x83847661, .name = "CXD9872RD/K", .patch = patch_stac9872 },
6007 { .id = 0x83847662, .name = "STAC9872AK", .patch = patch_stac9872 },
6008 { .id = 0x83847664, .name = "CXD9872AKD", .patch = patch_stac9872 },
Simos Xenitellisa5c0f882009-06-10 16:33:31 +01006009 { .id = 0x83847698, .name = "STAC9205", .patch = patch_stac9205 },
Matt Porterf3302a52006-07-31 12:49:34 +02006010 { .id = 0x838476a0, .name = "STAC9205", .patch = patch_stac9205 },
6011 { .id = 0x838476a1, .name = "STAC9205D", .patch = patch_stac9205 },
6012 { .id = 0x838476a2, .name = "STAC9204", .patch = patch_stac9205 },
6013 { .id = 0x838476a3, .name = "STAC9204D", .patch = patch_stac9205 },
6014 { .id = 0x838476a4, .name = "STAC9255", .patch = patch_stac9205 },
6015 { .id = 0x838476a5, .name = "STAC9255D", .patch = patch_stac9205 },
6016 { .id = 0x838476a6, .name = "STAC9254", .patch = patch_stac9205 },
6017 { .id = 0x838476a7, .name = "STAC9254D", .patch = patch_stac9205 },
Matthew Ranostayaafc4412008-06-13 18:04:33 +02006018 { .id = 0x111d7603, .name = "92HD75B3X5", .patch = patch_stac92hd71bxx},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02006019 { .id = 0x111d7604, .name = "92HD83C1X5", .patch = patch_stac92hd83xxx},
6020 { .id = 0x111d7605, .name = "92HD81B1X5", .patch = patch_stac92hd83xxx},
Matthew Ranostayff2e7332009-04-01 14:49:48 -04006021 { .id = 0x111d76d5, .name = "92HD81B1C5", .patch = patch_stac92hd83xxx},
Matthew Ranostayaafc4412008-06-13 18:04:33 +02006022 { .id = 0x111d7608, .name = "92HD75B2X5", .patch = patch_stac92hd71bxx},
Matthew Ranostay541eee82007-12-14 12:08:04 +01006023 { .id = 0x111d7674, .name = "92HD73D1X5", .patch = patch_stac92hd73xx },
6024 { .id = 0x111d7675, .name = "92HD73C1X5", .patch = patch_stac92hd73xx },
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01006025 { .id = 0x111d7676, .name = "92HD73E1X5", .patch = patch_stac92hd73xx },
Matthew Ranostay541eee82007-12-14 12:08:04 +01006026 { .id = 0x111d76b0, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
6027 { .id = 0x111d76b1, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
6028 { .id = 0x111d76b2, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
6029 { .id = 0x111d76b3, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
6030 { .id = 0x111d76b4, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
6031 { .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
6032 { .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
6033 { .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
Matt2f2f4252005-04-13 14:45:30 +02006034 {} /* terminator */
6035};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01006036
6037MODULE_ALIAS("snd-hda-codec-id:8384*");
6038MODULE_ALIAS("snd-hda-codec-id:111d*");
6039
6040MODULE_LICENSE("GPL");
6041MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec");
6042
6043static struct hda_codec_preset_list sigmatel_list = {
6044 .preset = snd_hda_preset_sigmatel,
6045 .owner = THIS_MODULE,
6046};
6047
6048static int __init patch_sigmatel_init(void)
6049{
6050 return snd_hda_add_codec_preset(&sigmatel_list);
6051}
6052
6053static void __exit patch_sigmatel_exit(void)
6054{
6055 snd_hda_delete_codec_preset(&sigmatel_list);
6056}
6057
6058module_init(patch_sigmatel_init)
6059module_exit(patch_sigmatel_exit)