blob: d2ddb959c29025f0b2523a88aca3797844a3cd2e [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 Iwaic8b6bf9b2005-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 Iwai16970552007-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 Iwaic8b6bf9b2005-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 Iwai16970552007-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 Iwai16970552007-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 Iwaic8b6bf9b2005-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 Iwaic8b6bf9b2005-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 Iwaic8b6bf9b2005-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 Iwaic8b6bf9b2005-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 Iwai16970552007-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 Iwai16970552007-12-18 18:05:52 +01001087 stac_dmux_mixer.count = spec->num_dmuxes;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001088 err = snd_hda_ctl_add(codec, 0,
Takashi Iwai16970552007-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;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001104 err = snd_hda_ctl_add(codec, 0,
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),
Daniel J Blueman8ef58372009-11-14 18:20:04 +00001593 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02bd,
1594 "Dell Studio 1557", STAC_DELL_M6_DMIC),
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01001595 {} /* terminator */
1596};
1597
Takashi Iwai842ae632009-09-02 07:43:08 +02001598static struct snd_pci_quirk stac92hd73xx_codec_id_cfg_tbl[] = {
1599 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a1,
1600 "Alienware M17x", STAC_ALIENWARE_M17X),
1601 {} /* terminator */
1602};
1603
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001604static unsigned int ref92hd83xxx_pin_configs[10] = {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001605 0x02214030, 0x02211010, 0x02a19020, 0x02170130,
1606 0x01014050, 0x01819040, 0x01014020, 0x90a3014e,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001607 0x01451160, 0x98560170,
1608};
1609
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001610static unsigned int dell_s14_pin_configs[10] = {
Takashi Iwai69b56552009-09-15 12:37:42 +02001611 0x0221403f, 0x0221101f, 0x02a19020, 0x90170110,
1612 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a60160,
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001613 0x40f000f0, 0x40f000f0,
1614};
1615
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001616static unsigned int *stac92hd83xxx_brd_tbl[STAC_92HD83XXX_MODELS] = {
1617 [STAC_92HD83XXX_REF] = ref92hd83xxx_pin_configs,
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05001618 [STAC_92HD83XXX_PWR_REF] = ref92hd83xxx_pin_configs,
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001619 [STAC_DELL_S14] = dell_s14_pin_configs,
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001620};
1621
1622static const char *stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01001623 [STAC_92HD83XXX_AUTO] = "auto",
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001624 [STAC_92HD83XXX_REF] = "ref",
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05001625 [STAC_92HD83XXX_PWR_REF] = "mic-ref",
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001626 [STAC_DELL_S14] = "dell-s14",
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001627};
1628
1629static struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = {
1630 /* SigmaTel reference board */
1631 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
Takashi Iwaif9d088b2009-01-13 11:54:49 +01001632 "DFI LanParty", STAC_92HD83XXX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001633 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1634 "DFI LanParty", STAC_92HD83XXX_REF),
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05001635 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ba,
1636 "unknown Dell", STAC_DELL_S14),
Herton Ronaldo Krzesinski574f3c42008-12-23 16:53:00 -02001637 {} /* terminator */
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02001638};
1639
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001640static unsigned int ref92hd71bxx_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaye035b842007-11-06 11:53:55 +01001641 0x02214030, 0x02a19040, 0x01a19020, 0x01014010,
Matthew Ranostay4b33c762008-10-10 09:07:23 -04001642 0x0181302e, 0x01014010, 0x01019020, 0x90a000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001643 0x90a000f0, 0x01452050, 0x01452050, 0x00000000,
1644 0x00000000
Matthew Ranostaye035b842007-11-06 11:53:55 +01001645};
1646
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001647static unsigned int dell_m4_1_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaya7662642008-02-21 07:51:14 +01001648 0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110,
Matthew Ranostay07bcb312008-03-20 12:10:57 +01001649 0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001650 0x40f000f0, 0x4f0000f0, 0x4f0000f0, 0x00000000,
1651 0x00000000
Matthew Ranostaya7662642008-02-21 07:51:14 +01001652};
1653
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001654static unsigned int dell_m4_2_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostaya7662642008-02-21 07:51:14 +01001655 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1656 0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001657 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1658 0x00000000
Matthew Ranostaya7662642008-02-21 07:51:14 +01001659};
1660
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001661static unsigned int dell_m4_3_pin_configs[STAC92HD71BXX_NUM_PINS] = {
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001662 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1663 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a000f0,
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05001664 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1665 0x00000000
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001666};
1667
Matthew Ranostaye035b842007-11-06 11:53:55 +01001668static unsigned int *stac92hd71bxx_brd_tbl[STAC_92HD71BXX_MODELS] = {
1669 [STAC_92HD71BXX_REF] = ref92hd71bxx_pin_configs,
Matthew Ranostaya7662642008-02-21 07:51:14 +01001670 [STAC_DELL_M4_1] = dell_m4_1_pin_configs,
1671 [STAC_DELL_M4_2] = dell_m4_2_pin_configs,
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001672 [STAC_DELL_M4_3] = dell_m4_3_pin_configs,
Matthew Ranostay6a14f582008-09-12 12:02:30 -04001673 [STAC_HP_M4] = NULL,
Takashi Iwai1b0652e2009-01-14 08:27:35 +01001674 [STAC_HP_DV5] = NULL,
Christoph Plattnerae6241f2009-03-08 23:19:05 +01001675 [STAC_HP_HDX] = NULL,
James Gardiner514bf542009-05-03 04:00:44 -04001676 [STAC_HP_DV4_1222NR] = NULL,
Matthew Ranostaye035b842007-11-06 11:53:55 +01001677};
1678
1679static const char *stac92hd71bxx_models[STAC_92HD71BXX_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01001680 [STAC_92HD71BXX_AUTO] = "auto",
Matthew Ranostaye035b842007-11-06 11:53:55 +01001681 [STAC_92HD71BXX_REF] = "ref",
Matthew Ranostaya7662642008-02-21 07:51:14 +01001682 [STAC_DELL_M4_1] = "dell-m4-1",
1683 [STAC_DELL_M4_2] = "dell-m4-2",
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001684 [STAC_DELL_M4_3] = "dell-m4-3",
Matthew Ranostay6a14f582008-09-12 12:02:30 -04001685 [STAC_HP_M4] = "hp-m4",
Takashi Iwai1b0652e2009-01-14 08:27:35 +01001686 [STAC_HP_DV5] = "hp-dv5",
Christoph Plattnerae6241f2009-03-08 23:19:05 +01001687 [STAC_HP_HDX] = "hp-hdx",
James Gardiner514bf542009-05-03 04:00:44 -04001688 [STAC_HP_DV4_1222NR] = "hp-dv4-1222nr",
Matthew Ranostaye035b842007-11-06 11:53:55 +01001689};
1690
1691static struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = {
1692 /* SigmaTel reference board */
1693 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1694 "DFI LanParty", STAC_92HD71BXX_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001695 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1696 "DFI LanParty", STAC_92HD71BXX_REF),
James Gardiner514bf542009-05-03 04:00:44 -04001697 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30fb,
1698 "HP dv4-1222nr", STAC_HP_DV4_1222NR),
Vitaliy Kulikov5bdaaad2009-11-04 07:57:45 +01001699 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x1720,
1700 "HP", STAC_HP_DV5),
Takashi Iwai58d83952009-03-13 17:04:34 +01001701 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3080,
1702 "HP", STAC_HP_DV5),
Takashi Iwai2ae466f2009-02-16 14:16:36 +01001703 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x30f0,
1704 "HP dv4-7", STAC_HP_DV5),
1705 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3600,
1706 "HP dv4-7", STAC_HP_DV5),
Takashi Iwai6fce61a2009-03-10 07:48:57 +01001707 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3610,
1708 "HP HDX", STAC_HP_HDX), /* HDX18 */
Matthew Ranostay9a9e2352008-09-26 10:37:03 -04001709 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a,
Takashi Iwai2ae466f2009-02-16 14:16:36 +01001710 "HP mini 1000", STAC_HP_M4),
Christoph Plattnerae6241f2009-03-08 23:19:05 +01001711 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361b,
Takashi Iwai6fce61a2009-03-10 07:48:57 +01001712 "HP HDX", STAC_HP_HDX), /* HDX16 */
Takashi Iwai6e34c032009-09-14 15:42:18 +02001713 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3620,
1714 "HP dv6", STAC_HP_DV5),
Takashi Iwai1972d022009-08-06 08:44:43 +02001715 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x7010,
1716 "HP", STAC_HP_DV5),
Matthew Ranostaya7662642008-02-21 07:51:14 +01001717 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,
1718 "unknown Dell", STAC_DELL_M4_1),
1719 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234,
1720 "unknown Dell", STAC_DELL_M4_1),
1721 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250,
1722 "unknown Dell", STAC_DELL_M4_1),
1723 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f,
1724 "unknown Dell", STAC_DELL_M4_1),
1725 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d,
1726 "unknown Dell", STAC_DELL_M4_1),
1727 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251,
1728 "unknown Dell", STAC_DELL_M4_1),
1729 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277,
1730 "unknown Dell", STAC_DELL_M4_1),
1731 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263,
1732 "unknown Dell", STAC_DELL_M4_2),
1733 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265,
1734 "unknown Dell", STAC_DELL_M4_2),
1735 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262,
1736 "unknown Dell", STAC_DELL_M4_2),
1737 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264,
1738 "unknown Dell", STAC_DELL_M4_2),
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05001739 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa,
1740 "unknown Dell", STAC_DELL_M4_3),
Matthew Ranostaye035b842007-11-06 11:53:55 +01001741 {} /* terminator */
1742};
1743
Matt Porter403d1942005-11-29 15:00:51 +01001744static unsigned int ref922x_pin_configs[10] = {
1745 0x01014010, 0x01016011, 0x01012012, 0x0221401f,
1746 0x01813122, 0x01011014, 0x01441030, 0x01c41030,
Matt2f2f4252005-04-13 14:45:30 +02001747 0x40000100, 0x40000100,
1748};
1749
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001750/*
1751 STAC 922X pin configs for
1752 102801A7
1753 102801AB
1754 102801A9
1755 102801D1
1756 102801D2
1757*/
1758static unsigned int dell_922x_d81_pin_configs[10] = {
1759 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1760 0x02a19020, 0x01117011, 0x400001f0, 0x400001f1,
1761 0x01813122, 0x400001f2,
1762};
1763
1764/*
1765 STAC 922X pin configs for
1766 102801AC
1767 102801D0
1768*/
1769static unsigned int dell_922x_d82_pin_configs[10] = {
1770 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1771 0x02a19020, 0x01117011, 0x01451140, 0x400001f0,
1772 0x01813122, 0x400001f1,
1773};
1774
1775/*
1776 STAC 922X pin configs for
1777 102801BF
1778*/
1779static unsigned int dell_922x_m81_pin_configs[10] = {
1780 0x0321101f, 0x01112024, 0x01111222, 0x91174220,
1781 0x03a11050, 0x01116221, 0x90a70330, 0x01452340,
1782 0x40C003f1, 0x405003f0,
1783};
1784
1785/*
1786 STAC 9221 A1 pin configs for
1787 102801D7 (Dell XPS M1210)
1788*/
1789static unsigned int dell_922x_m82_pin_configs[10] = {
Jiang Zhe7f9310c2007-11-12 12:43:37 +01001790 0x02211211, 0x408103ff, 0x02a1123e, 0x90100310,
1791 0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001792 0x508003f3, 0x405003f4,
1793};
1794
Matt Porter403d1942005-11-29 15:00:51 +01001795static unsigned int d945gtp3_pin_configs[10] = {
Matt Porter869264c2006-01-25 19:20:50 +01001796 0x0221401f, 0x01a19022, 0x01813021, 0x01014010,
Matt Porter403d1942005-11-29 15:00:51 +01001797 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1798 0x02a19120, 0x40000100,
1799};
1800
1801static unsigned int d945gtp5_pin_configs[10] = {
Matt Porter869264c2006-01-25 19:20:50 +01001802 0x0221401f, 0x01011012, 0x01813024, 0x01014010,
1803 0x01a19021, 0x01016011, 0x01452130, 0x40000100,
Matt Porter403d1942005-11-29 15:00:51 +01001804 0x02a19320, 0x40000100,
1805};
1806
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001807static unsigned int intel_mac_v1_pin_configs[10] = {
1808 0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd,
1809 0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240,
Takashi Iwai3fc24d82007-02-16 13:27:18 +01001810 0x400000fc, 0x400000fb,
1811};
1812
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001813static unsigned int intel_mac_v2_pin_configs[10] = {
1814 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1815 0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa,
Sylvain FORETf16928f2007-04-27 14:22:36 +02001816 0x400000fc, 0x400000fb,
1817};
1818
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001819static unsigned int intel_mac_v3_pin_configs[10] = {
1820 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1821 0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240,
1822 0x400000fc, 0x400000fb,
1823};
1824
1825static unsigned int intel_mac_v4_pin_configs[10] = {
1826 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1827 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1828 0x400000fc, 0x400000fb,
1829};
1830
1831static unsigned int intel_mac_v5_pin_configs[10] = {
1832 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1833 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1834 0x400000fc, 0x400000fb,
Takashi Iwai0dae0f82007-05-21 12:41:29 +02001835};
1836
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001837static unsigned int ecs202_pin_configs[10] = {
1838 0x0221401f, 0x02a19020, 0x01a19020, 0x01114010,
1839 0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1,
1840 0x9037012e, 0x40e000f2,
1841};
Takashi Iwai76c08822007-06-19 12:17:42 +02001842
Takashi Iwai19039bd2006-06-28 15:52:16 +02001843static unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001844 [STAC_D945_REF] = ref922x_pin_configs,
Takashi Iwai19039bd2006-06-28 15:52:16 +02001845 [STAC_D945GTP3] = d945gtp3_pin_configs,
1846 [STAC_D945GTP5] = d945gtp5_pin_configs,
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001847 [STAC_INTEL_MAC_V1] = intel_mac_v1_pin_configs,
1848 [STAC_INTEL_MAC_V2] = intel_mac_v2_pin_configs,
1849 [STAC_INTEL_MAC_V3] = intel_mac_v3_pin_configs,
1850 [STAC_INTEL_MAC_V4] = intel_mac_v4_pin_configs,
1851 [STAC_INTEL_MAC_V5] = intel_mac_v5_pin_configs,
Nicolas Boichat536319a2008-07-21 22:18:01 +08001852 [STAC_INTEL_MAC_AUTO] = intel_mac_v3_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001853 /* for backward compatibility */
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001854 [STAC_MACMINI] = intel_mac_v3_pin_configs,
1855 [STAC_MACBOOK] = intel_mac_v5_pin_configs,
1856 [STAC_MACBOOK_PRO_V1] = intel_mac_v3_pin_configs,
1857 [STAC_MACBOOK_PRO_V2] = intel_mac_v3_pin_configs,
1858 [STAC_IMAC_INTEL] = intel_mac_v2_pin_configs,
1859 [STAC_IMAC_INTEL_20] = intel_mac_v3_pin_configs,
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001860 [STAC_ECS_202] = ecs202_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001861 [STAC_922X_DELL_D81] = dell_922x_d81_pin_configs,
1862 [STAC_922X_DELL_D82] = dell_922x_d82_pin_configs,
1863 [STAC_922X_DELL_M81] = dell_922x_m81_pin_configs,
1864 [STAC_922X_DELL_M82] = dell_922x_m82_pin_configs,
Matt Porter403d1942005-11-29 15:00:51 +01001865};
1866
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001867static const char *stac922x_models[STAC_922X_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01001868 [STAC_922X_AUTO] = "auto",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001869 [STAC_D945_REF] = "ref",
1870 [STAC_D945GTP5] = "5stack",
1871 [STAC_D945GTP3] = "3stack",
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02001872 [STAC_INTEL_MAC_V1] = "intel-mac-v1",
1873 [STAC_INTEL_MAC_V2] = "intel-mac-v2",
1874 [STAC_INTEL_MAC_V3] = "intel-mac-v3",
1875 [STAC_INTEL_MAC_V4] = "intel-mac-v4",
1876 [STAC_INTEL_MAC_V5] = "intel-mac-v5",
Nicolas Boichat536319a2008-07-21 22:18:01 +08001877 [STAC_INTEL_MAC_AUTO] = "intel-mac-auto",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001878 /* for backward compatibility */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001879 [STAC_MACMINI] = "macmini",
Takashi Iwai3fc24d82007-02-16 13:27:18 +01001880 [STAC_MACBOOK] = "macbook",
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01001881 [STAC_MACBOOK_PRO_V1] = "macbook-pro-v1",
1882 [STAC_MACBOOK_PRO_V2] = "macbook-pro",
Sylvain FORETf16928f2007-04-27 14:22:36 +02001883 [STAC_IMAC_INTEL] = "imac-intel",
Takashi Iwai0dae0f82007-05-21 12:41:29 +02001884 [STAC_IMAC_INTEL_20] = "imac-intel-20",
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001885 [STAC_ECS_202] = "ecs202",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001886 [STAC_922X_DELL_D81] = "dell-d81",
1887 [STAC_922X_DELL_D82] = "dell-d82",
1888 [STAC_922X_DELL_M81] = "dell-m81",
1889 [STAC_922X_DELL_M82] = "dell-m82",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001890};
1891
1892static struct snd_pci_quirk stac922x_cfg_tbl[] = {
1893 /* SigmaTel reference board */
1894 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1895 "DFI LanParty", STAC_D945_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05001896 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1897 "DFI LanParty", STAC_D945_REF),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001898 /* Intel 945G based systems */
1899 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101,
1900 "Intel D945G", STAC_D945GTP3),
1901 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202,
1902 "Intel D945G", STAC_D945GTP3),
1903 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606,
1904 "Intel D945G", STAC_D945GTP3),
1905 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601,
1906 "Intel D945G", STAC_D945GTP3),
1907 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111,
1908 "Intel D945G", STAC_D945GTP3),
1909 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115,
1910 "Intel D945G", STAC_D945GTP3),
1911 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116,
1912 "Intel D945G", STAC_D945GTP3),
1913 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117,
1914 "Intel D945G", STAC_D945GTP3),
1915 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118,
1916 "Intel D945G", STAC_D945GTP3),
1917 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119,
1918 "Intel D945G", STAC_D945GTP3),
1919 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826,
1920 "Intel D945G", STAC_D945GTP3),
1921 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049,
1922 "Intel D945G", STAC_D945GTP3),
1923 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055,
1924 "Intel D945G", STAC_D945GTP3),
1925 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048,
1926 "Intel D945G", STAC_D945GTP3),
1927 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110,
1928 "Intel D945G", STAC_D945GTP3),
1929 /* Intel D945G 5-stack systems */
1930 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404,
1931 "Intel D945G", STAC_D945GTP5),
1932 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303,
1933 "Intel D945G", STAC_D945GTP5),
1934 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013,
1935 "Intel D945G", STAC_D945GTP5),
1936 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417,
1937 "Intel D945G", STAC_D945GTP5),
1938 /* Intel 945P based systems */
1939 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b,
1940 "Intel D945P", STAC_D945GTP3),
1941 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112,
1942 "Intel D945P", STAC_D945GTP3),
1943 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d,
1944 "Intel D945P", STAC_D945GTP3),
1945 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909,
1946 "Intel D945P", STAC_D945GTP3),
1947 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505,
1948 "Intel D945P", STAC_D945GTP3),
1949 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707,
1950 "Intel D945P", STAC_D945GTP5),
Takashi Iwai8056d472009-01-23 09:09:43 +01001951 /* other intel */
1952 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0204,
1953 "Intel D945", STAC_D945_REF),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001954 /* other systems */
Nicolas Boichat536319a2008-07-21 22:18:01 +08001955 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001956 SND_PCI_QUIRK(0x8384, 0x7680,
Nicolas Boichat536319a2008-07-21 22:18:01 +08001957 "Mac", STAC_INTEL_MAC_AUTO),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02001958 /* Dell systems */
1959 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7,
1960 "unknown Dell", STAC_922X_DELL_D81),
1961 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9,
1962 "unknown Dell", STAC_922X_DELL_D81),
1963 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab,
1964 "unknown Dell", STAC_922X_DELL_D81),
1965 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac,
1966 "unknown Dell", STAC_922X_DELL_D82),
1967 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf,
1968 "unknown Dell", STAC_922X_DELL_M81),
1969 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0,
1970 "unknown Dell", STAC_922X_DELL_D82),
1971 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1,
1972 "unknown Dell", STAC_922X_DELL_D81),
1973 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2,
1974 "unknown Dell", STAC_922X_DELL_D81),
1975 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
1976 "Dell XPS M1210", STAC_922X_DELL_M82),
Mauro Carvalho Chehab8c650082008-08-04 10:39:59 -03001977 /* ECS/PC Chips boards */
Takashi Iwaidea0a502009-02-09 17:14:52 +01001978 SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000,
Herton Ronaldo Krzesinski8663ae52009-02-08 19:50:34 -02001979 "ECS/PC chips", STAC_ECS_202),
Matt Porter403d1942005-11-29 15:00:51 +01001980 {} /* terminator */
1981};
1982
Matt Porter3cc08dc2006-01-23 15:27:49 +01001983static unsigned int ref927x_pin_configs[14] = {
Tobin Davis93ed1502006-09-01 21:03:12 +02001984 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
1985 0x01a19040, 0x01011012, 0x01016011, 0x0101201f,
1986 0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070,
1987 0x01c42190, 0x40000100,
Matt Porter3cc08dc2006-01-23 15:27:49 +01001988};
1989
Tobin Davis93ed1502006-09-01 21:03:12 +02001990static unsigned int d965_3st_pin_configs[14] = {
Tobin Davis81d3dbd2006-08-22 19:44:45 +02001991 0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
1992 0x01a19021, 0x01813024, 0x40000100, 0x40000100,
1993 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1994 0x40000100, 0x40000100
1995};
1996
Tobin Davis93ed1502006-09-01 21:03:12 +02001997static unsigned int d965_5st_pin_configs[14] = {
1998 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
1999 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2000 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2001 0x40000100, 0x40000100
2002};
2003
Takashi Iwai679d92e2009-05-24 19:00:08 +02002004static unsigned int d965_5st_no_fp_pin_configs[14] = {
2005 0x40000100, 0x40000100, 0x0181304e, 0x01014010,
2006 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2007 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2008 0x40000100, 0x40000100
2009};
2010
Tobin Davis4ff076e2007-08-07 11:48:12 +02002011static unsigned int dell_3st_pin_configs[14] = {
2012 0x02211230, 0x02a11220, 0x01a19040, 0x01114210,
2013 0x01111212, 0x01116211, 0x01813050, 0x01112214,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002014 0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb,
Tobin Davis4ff076e2007-08-07 11:48:12 +02002015 0x40c003fc, 0x40000100
2016};
2017
Tobin Davis93ed1502006-09-01 21:03:12 +02002018static unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = {
Takashi Iwaie28d8322008-12-17 13:48:29 +01002019 [STAC_D965_REF_NO_JD] = ref927x_pin_configs,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002020 [STAC_D965_REF] = ref927x_pin_configs,
2021 [STAC_D965_3ST] = d965_3st_pin_configs,
2022 [STAC_D965_5ST] = d965_5st_pin_configs,
Takashi Iwai679d92e2009-05-24 19:00:08 +02002023 [STAC_D965_5ST_NO_FP] = d965_5st_no_fp_pin_configs,
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002024 [STAC_DELL_3ST] = dell_3st_pin_configs,
2025 [STAC_DELL_BIOS] = NULL,
Takashi Iwai54930532009-10-11 17:38:29 +02002026 [STAC_927X_VOLKNOB] = NULL,
Matt Porter3cc08dc2006-01-23 15:27:49 +01002027};
2028
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002029static const char *stac927x_models[STAC_927X_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01002030 [STAC_927X_AUTO] = "auto",
Takashi Iwaie28d8322008-12-17 13:48:29 +01002031 [STAC_D965_REF_NO_JD] = "ref-no-jd",
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002032 [STAC_D965_REF] = "ref",
2033 [STAC_D965_3ST] = "3stack",
2034 [STAC_D965_5ST] = "5stack",
Takashi Iwai679d92e2009-05-24 19:00:08 +02002035 [STAC_D965_5ST_NO_FP] = "5stack-no-fp",
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002036 [STAC_DELL_3ST] = "dell-3stack",
2037 [STAC_DELL_BIOS] = "dell-bios",
Takashi Iwai54930532009-10-11 17:38:29 +02002038 [STAC_927X_VOLKNOB] = "volknob",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002039};
2040
2041static struct snd_pci_quirk stac927x_cfg_tbl[] = {
2042 /* SigmaTel reference board */
2043 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2044 "DFI LanParty", STAC_D965_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002045 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2046 "DFI LanParty", STAC_D965_REF),
Tobin Davis81d3dbd2006-08-22 19:44:45 +02002047 /* Intel 946 based systems */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002048 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST),
2049 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST),
Tobin Davis93ed1502006-09-01 21:03:12 +02002050 /* 965 based 3 stack systems */
Takashi Iwaidea0a502009-02-09 17:14:52 +01002051 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2100,
2052 "Intel D965", STAC_D965_3ST),
2053 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2000,
2054 "Intel D965", STAC_D965_3ST),
Tobin Davis4ff076e2007-08-07 11:48:12 +02002055 /* Dell 3 stack systems */
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002056 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f7, "Dell XPS M1730", STAC_DELL_3ST),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002057 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST),
Tobin Davis4ff076e2007-08-07 11:48:12 +02002058 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST),
2059 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002060 /* Dell 3 stack systems with verb table in BIOS */
Matthew Ranostay2f32d902008-01-10 13:06:26 +01002061 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS),
2062 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002063 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS),
Chengu Wang84d3dc22009-07-30 19:43:55 +08002064 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_BIOS),
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002065 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS),
2066 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS),
2067 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS),
2068 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS),
Tobin Davis93ed1502006-09-01 21:03:12 +02002069 /* 965 based 5 stack systems */
Takashi Iwaidea0a502009-02-09 17:14:52 +01002070 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2300,
2071 "Intel D965", STAC_D965_5ST),
2072 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2500,
2073 "Intel D965", STAC_D965_5ST),
Takashi Iwai54930532009-10-11 17:38:29 +02002074 /* volume-knob fixes */
2075 SND_PCI_QUIRK_VENDOR(0x10cf, "FSC", STAC_927X_VOLKNOB),
Matt Porter3cc08dc2006-01-23 15:27:49 +01002076 {} /* terminator */
2077};
2078
Matt Porterf3302a52006-07-31 12:49:34 +02002079static unsigned int ref9205_pin_configs[12] = {
2080 0x40000100, 0x40000100, 0x01016011, 0x01014010,
Matthew Ranostay09a99952008-01-24 11:49:21 +01002081 0x01813122, 0x01a19021, 0x01019020, 0x40000100,
Matt Porter8b657272006-10-26 17:12:59 +02002082 0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030
Matt Porterf3302a52006-07-31 12:49:34 +02002083};
2084
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002085/*
2086 STAC 9205 pin configs for
2087 102801F1
2088 102801F2
2089 102801FC
2090 102801FD
2091 10280204
2092 1028021F
Matthew Ranostay3fa2ef72008-01-11 11:39:06 +01002093 10280228 (Dell Vostro 1500)
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002094*/
2095static unsigned int dell_9205_m42_pin_configs[12] = {
2096 0x0321101F, 0x03A11020, 0x400003FA, 0x90170310,
2097 0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9,
2098 0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE,
2099};
2100
2101/*
2102 STAC 9205 pin configs for
2103 102801F9
2104 102801FA
2105 102801FE
2106 102801FF (Dell Precision M4300)
2107 10280206
2108 10280200
2109 10280201
2110*/
2111static unsigned int dell_9205_m43_pin_configs[12] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002112 0x0321101f, 0x03a11020, 0x90a70330, 0x90170310,
2113 0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9,
2114 0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8,
2115};
2116
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002117static unsigned int dell_9205_m44_pin_configs[12] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002118 0x0421101f, 0x04a11020, 0x400003fa, 0x90170310,
2119 0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9,
2120 0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe,
2121};
2122
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002123static unsigned int *stac9205_brd_tbl[STAC_9205_MODELS] = {
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002124 [STAC_9205_REF] = ref9205_pin_configs,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002125 [STAC_9205_DELL_M42] = dell_9205_m42_pin_configs,
2126 [STAC_9205_DELL_M43] = dell_9205_m43_pin_configs,
2127 [STAC_9205_DELL_M44] = dell_9205_m44_pin_configs,
Takashi Iwaid9a42682009-01-22 17:40:18 +01002128 [STAC_9205_EAPD] = NULL,
Matt Porterf3302a52006-07-31 12:49:34 +02002129};
2130
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002131static const char *stac9205_models[STAC_9205_MODELS] = {
Takashi Iwai1607b8e2009-02-26 16:50:43 +01002132 [STAC_9205_AUTO] = "auto",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002133 [STAC_9205_REF] = "ref",
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002134 [STAC_9205_DELL_M42] = "dell-m42",
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002135 [STAC_9205_DELL_M43] = "dell-m43",
2136 [STAC_9205_DELL_M44] = "dell-m44",
Takashi Iwaid9a42682009-01-22 17:40:18 +01002137 [STAC_9205_EAPD] = "eapd",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002138};
2139
2140static struct snd_pci_quirk stac9205_cfg_tbl[] = {
2141 /* SigmaTel reference board */
2142 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2143 "DFI LanParty", STAC_9205_REF),
Herton Ronaldo Krzesinski02358fc2009-07-04 01:44:59 -03002144 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xfb30,
2145 "SigmaTel", STAC_9205_REF),
Matthew Ranostay577aa2c2009-01-22 22:55:44 -05002146 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2147 "DFI LanParty", STAC_9205_REF),
Takashi Iwaid9a42682009-01-22 17:40:18 +01002148 /* Dell */
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002149 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1,
2150 "unknown Dell", STAC_9205_DELL_M42),
2151 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2,
2152 "unknown Dell", STAC_9205_DELL_M42),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002153 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8,
Matthew Ranostayb44ef2f2007-09-18 00:52:38 +02002154 "Dell Precision", STAC_9205_DELL_M43),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002155 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9,
2156 "Dell Precision", STAC_9205_DELL_M43),
2157 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa,
2158 "Dell Precision", STAC_9205_DELL_M43),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002159 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc,
2160 "unknown Dell", STAC_9205_DELL_M42),
2161 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd,
2162 "unknown Dell", STAC_9205_DELL_M42),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002163 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe,
2164 "Dell Precision", STAC_9205_DELL_M43),
2165 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff,
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002166 "Dell Precision M4300", STAC_9205_DELL_M43),
Takashi Iwaidfe495d2007-08-23 19:04:28 +02002167 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204,
2168 "unknown Dell", STAC_9205_DELL_M42),
Takashi Iwai45499152008-06-12 16:27:24 +02002169 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206,
2170 "Dell Precision", STAC_9205_DELL_M43),
2171 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b,
2172 "Dell Precision", STAC_9205_DELL_M43),
2173 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c,
2174 "Dell Precision", STAC_9205_DELL_M43),
Tobin Davisae0a8ed2007-08-13 15:50:29 +02002175 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f,
2176 "Dell Inspiron", STAC_9205_DELL_M44),
Matthew Ranostay3fa2ef72008-01-11 11:39:06 +01002177 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228,
2178 "Dell Vostro 1500", STAC_9205_DELL_M42),
Takashi Iwaid9a42682009-01-22 17:40:18 +01002179 /* Gateway */
Hao Song42b95f02009-07-20 15:01:16 +08002180 SND_PCI_QUIRK(0x107b, 0x0560, "Gateway T6834c", STAC_9205_EAPD),
Takashi Iwaid9a42682009-01-22 17:40:18 +01002181 SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD),
Matt Porterf3302a52006-07-31 12:49:34 +02002182 {} /* terminator */
2183};
2184
Takashi Iwai330ee992009-02-20 14:33:36 +01002185static void stac92xx_set_config_regs(struct hda_codec *codec,
2186 unsigned int *pincfgs)
Matt2f2f4252005-04-13 14:45:30 +02002187{
2188 int i;
2189 struct sigmatel_spec *spec = codec->spec;
Matt2f2f4252005-04-13 14:45:30 +02002190
Takashi Iwai330ee992009-02-20 14:33:36 +01002191 if (!pincfgs)
2192 return;
Richard Fish11b44bb2006-08-23 18:31:34 +02002193
Matthew Ranostay87d48362007-07-17 11:52:24 +02002194 for (i = 0; i < spec->num_pins; i++)
Takashi Iwai330ee992009-02-20 14:33:36 +01002195 if (spec->pin_nids[i] && pincfgs[i])
2196 snd_hda_codec_set_pincfg(codec, spec->pin_nids[i],
2197 pincfgs[i]);
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01002198}
2199
Matt2f2f4252005-04-13 14:45:30 +02002200/*
2201 * Analog playback callbacks
2202 */
2203static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo,
2204 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002205 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002206{
2207 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002208 if (spec->stream_delay)
2209 msleep(spec->stream_delay);
Takashi Iwai9a081602008-02-12 18:37:26 +01002210 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2211 hinfo);
Matt2f2f4252005-04-13 14:45:30 +02002212}
2213
2214static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2215 struct hda_codec *codec,
2216 unsigned int stream_tag,
2217 unsigned int format,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002218 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002219{
2220 struct sigmatel_spec *spec = codec->spec;
Matt Porter403d1942005-11-29 15:00:51 +01002221 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag, format, substream);
Matt2f2f4252005-04-13 14:45:30 +02002222}
2223
2224static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2225 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002226 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002227{
2228 struct sigmatel_spec *spec = codec->spec;
2229 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2230}
2231
2232/*
Mattdabbed62005-06-14 10:19:34 +02002233 * Digital playback callbacks
2234 */
2235static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2236 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002237 struct snd_pcm_substream *substream)
Mattdabbed62005-06-14 10:19:34 +02002238{
2239 struct sigmatel_spec *spec = codec->spec;
2240 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2241}
2242
2243static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2244 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002245 struct snd_pcm_substream *substream)
Mattdabbed62005-06-14 10:19:34 +02002246{
2247 struct sigmatel_spec *spec = codec->spec;
2248 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2249}
2250
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002251static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2252 struct hda_codec *codec,
2253 unsigned int stream_tag,
2254 unsigned int format,
2255 struct snd_pcm_substream *substream)
2256{
2257 struct sigmatel_spec *spec = codec->spec;
2258 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2259 stream_tag, format, substream);
2260}
2261
Takashi Iwai9411e212009-02-13 11:32:28 +01002262static int stac92xx_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2263 struct hda_codec *codec,
2264 struct snd_pcm_substream *substream)
2265{
2266 struct sigmatel_spec *spec = codec->spec;
2267 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2268}
2269
Mattdabbed62005-06-14 10:19:34 +02002270
2271/*
Matt2f2f4252005-04-13 14:45:30 +02002272 * Analog capture callbacks
2273 */
2274static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2275 struct hda_codec *codec,
2276 unsigned int stream_tag,
2277 unsigned int format,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002278 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002279{
2280 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002281 hda_nid_t nid = spec->adc_nids[substream->number];
Matt2f2f4252005-04-13 14:45:30 +02002282
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002283 if (spec->powerdown_adcs) {
2284 msleep(40);
Takashi Iwai8c2f7672008-12-01 11:54:35 +01002285 snd_hda_codec_write(codec, nid, 0,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002286 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
2287 }
2288 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Matt2f2f4252005-04-13 14:45:30 +02002289 return 0;
2290}
2291
2292static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2293 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002294 struct snd_pcm_substream *substream)
Matt2f2f4252005-04-13 14:45:30 +02002295{
2296 struct sigmatel_spec *spec = codec->spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002297 hda_nid_t nid = spec->adc_nids[substream->number];
Matt2f2f4252005-04-13 14:45:30 +02002298
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002299 snd_hda_codec_cleanup_stream(codec, nid);
2300 if (spec->powerdown_adcs)
Takashi Iwai8c2f7672008-12-01 11:54:35 +01002301 snd_hda_codec_write(codec, nid, 0,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02002302 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
Matt2f2f4252005-04-13 14:45:30 +02002303 return 0;
2304}
2305
Mattdabbed62005-06-14 10:19:34 +02002306static struct hda_pcm_stream stac92xx_pcm_digital_playback = {
2307 .substreams = 1,
2308 .channels_min = 2,
2309 .channels_max = 2,
2310 /* NID is set in stac92xx_build_pcms */
2311 .ops = {
2312 .open = stac92xx_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002313 .close = stac92xx_dig_playback_pcm_close,
Takashi Iwai9411e212009-02-13 11:32:28 +01002314 .prepare = stac92xx_dig_playback_pcm_prepare,
2315 .cleanup = stac92xx_dig_playback_pcm_cleanup
Mattdabbed62005-06-14 10:19:34 +02002316 },
2317};
2318
2319static struct hda_pcm_stream stac92xx_pcm_digital_capture = {
2320 .substreams = 1,
2321 .channels_min = 2,
2322 .channels_max = 2,
2323 /* NID is set in stac92xx_build_pcms */
2324};
2325
Matt2f2f4252005-04-13 14:45:30 +02002326static struct hda_pcm_stream stac92xx_pcm_analog_playback = {
2327 .substreams = 1,
2328 .channels_min = 2,
Mattc7d4b2f2005-06-27 14:59:41 +02002329 .channels_max = 8,
Matt2f2f4252005-04-13 14:45:30 +02002330 .nid = 0x02, /* NID to query formats and rates */
2331 .ops = {
2332 .open = stac92xx_playback_pcm_open,
2333 .prepare = stac92xx_playback_pcm_prepare,
2334 .cleanup = stac92xx_playback_pcm_cleanup
2335 },
2336};
2337
Matt Porter3cc08dc2006-01-23 15:27:49 +01002338static struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = {
2339 .substreams = 1,
2340 .channels_min = 2,
2341 .channels_max = 2,
2342 .nid = 0x06, /* NID to query formats and rates */
2343 .ops = {
2344 .open = stac92xx_playback_pcm_open,
2345 .prepare = stac92xx_playback_pcm_prepare,
2346 .cleanup = stac92xx_playback_pcm_cleanup
2347 },
2348};
2349
Matt2f2f4252005-04-13 14:45:30 +02002350static struct hda_pcm_stream stac92xx_pcm_analog_capture = {
Matt2f2f4252005-04-13 14:45:30 +02002351 .channels_min = 2,
2352 .channels_max = 2,
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02002353 /* NID + .substreams is set in stac92xx_build_pcms */
Matt2f2f4252005-04-13 14:45:30 +02002354 .ops = {
2355 .prepare = stac92xx_capture_pcm_prepare,
2356 .cleanup = stac92xx_capture_pcm_cleanup
2357 },
2358};
2359
2360static int stac92xx_build_pcms(struct hda_codec *codec)
2361{
2362 struct sigmatel_spec *spec = codec->spec;
2363 struct hda_pcm *info = spec->pcm_rec;
2364
2365 codec->num_pcms = 1;
2366 codec->pcm_info = info;
2367
Mattc7d4b2f2005-06-27 14:59:41 +02002368 info->name = "STAC92xx Analog";
Matt2f2f4252005-04-13 14:45:30 +02002369 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback;
Takashi Iwai00a602d2009-01-23 11:55:42 +01002370 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2371 spec->multiout.dac_nids[0];
Matt2f2f4252005-04-13 14:45:30 +02002372 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture;
Matt Porter3cc08dc2006-01-23 15:27:49 +01002373 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02002374 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adcs;
Matt Porter3cc08dc2006-01-23 15:27:49 +01002375
2376 if (spec->alt_switch) {
2377 codec->num_pcms++;
2378 info++;
2379 info->name = "STAC92xx Analog Alt";
2380 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback;
2381 }
Matt2f2f4252005-04-13 14:45:30 +02002382
Mattdabbed62005-06-14 10:19:34 +02002383 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2384 codec->num_pcms++;
2385 info++;
2386 info->name = "STAC92xx Digital";
Takashi Iwai0852d7a2009-02-11 11:35:15 +01002387 info->pcm_type = spec->autocfg.dig_out_type[0];
Mattdabbed62005-06-14 10:19:34 +02002388 if (spec->multiout.dig_out_nid) {
2389 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback;
2390 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2391 }
2392 if (spec->dig_in_nid) {
2393 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture;
2394 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2395 }
2396 }
2397
Matt2f2f4252005-04-13 14:45:30 +02002398 return 0;
2399}
2400
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002401static unsigned int stac92xx_get_default_vref(struct hda_codec *codec,
2402 hda_nid_t nid)
Takashi Iwaic960a032006-03-23 17:06:28 +01002403{
Takashi Iwai1327a322009-03-23 13:07:47 +01002404 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwaic960a032006-03-23 17:06:28 +01002405 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
2406 if (pincap & AC_PINCAP_VREF_100)
2407 return AC_PINCTL_VREF_100;
2408 if (pincap & AC_PINCAP_VREF_80)
2409 return AC_PINCTL_VREF_80;
2410 if (pincap & AC_PINCAP_VREF_50)
2411 return AC_PINCTL_VREF_50;
2412 if (pincap & AC_PINCAP_VREF_GRD)
2413 return AC_PINCTL_VREF_GRD;
2414 return 0;
2415}
2416
Matt Porter403d1942005-11-29 15:00:51 +01002417static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type)
2418
2419{
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002420 snd_hda_codec_write_cache(codec, nid, 0,
2421 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
Matt Porter403d1942005-11-29 15:00:51 +01002422}
2423
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002424#define stac92xx_hp_switch_info snd_ctl_boolean_mono_info
2425
2426static int stac92xx_hp_switch_get(struct snd_kcontrol *kcontrol,
2427 struct snd_ctl_elem_value *ucontrol)
2428{
2429 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2430 struct sigmatel_spec *spec = codec->spec;
2431
Takashi Iwaid7a89432008-11-12 09:48:04 +01002432 ucontrol->value.integer.value[0] = !!spec->hp_switch;
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002433 return 0;
2434}
2435
Takashi Iwai62558ce2009-07-29 14:23:09 +02002436static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid);
Takashi Iwaic6e4c662008-11-25 11:58:19 +01002437
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002438static int stac92xx_hp_switch_put(struct snd_kcontrol *kcontrol,
2439 struct snd_ctl_elem_value *ucontrol)
2440{
2441 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2442 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaid7a89432008-11-12 09:48:04 +01002443 int nid = kcontrol->private_value;
2444
2445 spec->hp_switch = ucontrol->value.integer.value[0] ? nid : 0;
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002446
2447 /* check to be sure that the ports are upto date with
2448 * switch changes
2449 */
Takashi Iwai62558ce2009-07-29 14:23:09 +02002450 stac_issue_unsol_event(codec, nid);
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002451
2452 return 1;
2453}
2454
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002455static int stac92xx_dc_bias_info(struct snd_kcontrol *kcontrol,
2456 struct snd_ctl_elem_info *uinfo)
2457{
2458 int i;
2459 static char *texts[] = {
2460 "Mic In", "Line In", "Line Out"
2461 };
2462
2463 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2464 struct sigmatel_spec *spec = codec->spec;
2465 hda_nid_t nid = kcontrol->private_value;
2466
2467 if (nid == spec->mic_switch || nid == spec->line_switch)
2468 i = 3;
2469 else
2470 i = 2;
2471
2472 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2473 uinfo->value.enumerated.items = i;
2474 uinfo->count = 1;
2475 if (uinfo->value.enumerated.item >= i)
2476 uinfo->value.enumerated.item = i-1;
2477 strcpy(uinfo->value.enumerated.name,
2478 texts[uinfo->value.enumerated.item]);
2479
2480 return 0;
2481}
2482
2483static int stac92xx_dc_bias_get(struct snd_kcontrol *kcontrol,
2484 struct snd_ctl_elem_value *ucontrol)
2485{
2486 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2487 hda_nid_t nid = kcontrol->private_value;
2488 unsigned int vref = stac92xx_vref_get(codec, nid);
2489
2490 if (vref == stac92xx_get_default_vref(codec, nid))
2491 ucontrol->value.enumerated.item[0] = 0;
2492 else if (vref == AC_PINCTL_VREF_GRD)
2493 ucontrol->value.enumerated.item[0] = 1;
2494 else if (vref == AC_PINCTL_VREF_HIZ)
2495 ucontrol->value.enumerated.item[0] = 2;
2496
2497 return 0;
2498}
2499
2500static int stac92xx_dc_bias_put(struct snd_kcontrol *kcontrol,
2501 struct snd_ctl_elem_value *ucontrol)
2502{
2503 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2504 unsigned int new_vref = 0;
Takashi Iwaib8621512009-06-22 08:00:10 +02002505 int error;
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002506 hda_nid_t nid = kcontrol->private_value;
2507
2508 if (ucontrol->value.enumerated.item[0] == 0)
2509 new_vref = stac92xx_get_default_vref(codec, nid);
2510 else if (ucontrol->value.enumerated.item[0] == 1)
2511 new_vref = AC_PINCTL_VREF_GRD;
2512 else if (ucontrol->value.enumerated.item[0] == 2)
2513 new_vref = AC_PINCTL_VREF_HIZ;
2514 else
2515 return 0;
2516
2517 if (new_vref != stac92xx_vref_get(codec, nid)) {
2518 error = stac92xx_vref_set(codec, nid, new_vref);
2519 return error;
2520 }
2521
2522 return 0;
2523}
2524
2525static int stac92xx_io_switch_info(struct snd_kcontrol *kcontrol,
2526 struct snd_ctl_elem_info *uinfo)
2527{
2528 static char *texts[2];
2529 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2530 struct sigmatel_spec *spec = codec->spec;
2531
2532 if (kcontrol->private_value == spec->line_switch)
2533 texts[0] = "Line In";
2534 else
2535 texts[0] = "Mic In";
2536 texts[1] = "Line Out";
2537 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2538 uinfo->value.enumerated.items = 2;
2539 uinfo->count = 1;
2540
2541 if (uinfo->value.enumerated.item >= 2)
2542 uinfo->value.enumerated.item = 1;
2543 strcpy(uinfo->value.enumerated.name,
2544 texts[uinfo->value.enumerated.item]);
2545
2546 return 0;
2547}
Matt Porter403d1942005-11-29 15:00:51 +01002548
2549static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2550{
2551 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2552 struct sigmatel_spec *spec = codec->spec;
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002553 hda_nid_t nid = kcontrol->private_value;
2554 int io_idx = (nid == spec->mic_switch) ? 1 : 0;
Matt Porter403d1942005-11-29 15:00:51 +01002555
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002556 ucontrol->value.enumerated.item[0] = spec->io_switch[io_idx];
Matt Porter403d1942005-11-29 15:00:51 +01002557 return 0;
2558}
2559
2560static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2561{
2562 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2563 struct sigmatel_spec *spec = codec->spec;
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002564 hda_nid_t nid = kcontrol->private_value;
2565 int io_idx = (nid == spec->mic_switch) ? 1 : 0;
2566 unsigned short val = !!ucontrol->value.enumerated.item[0];
Matt Porter403d1942005-11-29 15:00:51 +01002567
2568 spec->io_switch[io_idx] = val;
2569
2570 if (val)
2571 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
Takashi Iwaic960a032006-03-23 17:06:28 +01002572 else {
2573 unsigned int pinctl = AC_PINCTL_IN_EN;
2574 if (io_idx) /* set VREF for mic */
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002575 pinctl |= stac92xx_get_default_vref(codec, nid);
Takashi Iwaic960a032006-03-23 17:06:28 +01002576 stac92xx_auto_set_pinctl(codec, nid, pinctl);
2577 }
Jiang Zhe40c1d302007-11-12 13:05:16 +01002578
2579 /* check the auto-mute again: we need to mute/unmute the speaker
2580 * appropriately according to the pin direction
2581 */
2582 if (spec->hp_detect)
Takashi Iwai62558ce2009-07-29 14:23:09 +02002583 stac_issue_unsol_event(codec, nid);
Jiang Zhe40c1d302007-11-12 13:05:16 +01002584
Matt Porter403d1942005-11-29 15:00:51 +01002585 return 1;
2586}
2587
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002588#define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info
2589
2590static int stac92xx_clfe_switch_get(struct snd_kcontrol *kcontrol,
2591 struct snd_ctl_elem_value *ucontrol)
2592{
2593 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2594 struct sigmatel_spec *spec = codec->spec;
2595
2596 ucontrol->value.integer.value[0] = spec->clfe_swap;
2597 return 0;
2598}
2599
2600static int stac92xx_clfe_switch_put(struct snd_kcontrol *kcontrol,
2601 struct snd_ctl_elem_value *ucontrol)
2602{
2603 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2604 struct sigmatel_spec *spec = codec->spec;
2605 hda_nid_t nid = kcontrol->private_value & 0xff;
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002606 unsigned int val = !!ucontrol->value.integer.value[0];
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002607
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002608 if (spec->clfe_swap == val)
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002609 return 0;
2610
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002611 spec->clfe_swap = val;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002612
2613 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
2614 spec->clfe_swap ? 0x4 : 0x0);
2615
2616 return 1;
2617}
2618
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002619#define STAC_CODEC_HP_SWITCH(xname) \
2620 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2621 .name = xname, \
2622 .index = 0, \
2623 .info = stac92xx_hp_switch_info, \
2624 .get = stac92xx_hp_switch_get, \
2625 .put = stac92xx_hp_switch_put, \
2626 }
2627
Matt Porter403d1942005-11-29 15:00:51 +01002628#define STAC_CODEC_IO_SWITCH(xname, xpval) \
2629 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2630 .name = xname, \
2631 .index = 0, \
2632 .info = stac92xx_io_switch_info, \
2633 .get = stac92xx_io_switch_get, \
2634 .put = stac92xx_io_switch_put, \
2635 .private_value = xpval, \
2636 }
2637
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002638#define STAC_CODEC_CLFE_SWITCH(xname, xpval) \
2639 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2640 .name = xname, \
2641 .index = 0, \
2642 .info = stac92xx_clfe_switch_info, \
2643 .get = stac92xx_clfe_switch_get, \
2644 .put = stac92xx_clfe_switch_put, \
2645 .private_value = xpval, \
2646 }
Matt Porter403d1942005-11-29 15:00:51 +01002647
Mattc7d4b2f2005-06-27 14:59:41 +02002648enum {
2649 STAC_CTL_WIDGET_VOL,
2650 STAC_CTL_WIDGET_MUTE,
Jaroslav Kysela123c07a2009-10-21 14:48:23 +02002651 STAC_CTL_WIDGET_MUTE_BEEP,
Matthew Ranostay09a99952008-01-24 11:49:21 +01002652 STAC_CTL_WIDGET_MONO_MUX,
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002653 STAC_CTL_WIDGET_HP_SWITCH,
Matt Porter403d1942005-11-29 15:00:51 +01002654 STAC_CTL_WIDGET_IO_SWITCH,
Nickolas Lloyd2fc99892009-05-15 15:33:30 +02002655 STAC_CTL_WIDGET_CLFE_SWITCH,
2656 STAC_CTL_WIDGET_DC_BIAS
Mattc7d4b2f2005-06-27 14:59:41 +02002657};
2658
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002659static struct snd_kcontrol_new stac92xx_control_templates[] = {
Mattc7d4b2f2005-06-27 14:59:41 +02002660 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2661 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Jaroslav Kysela123c07a2009-10-21 14:48:23 +02002662 HDA_CODEC_MUTE_BEEP(NULL, 0, 0, 0),
Matthew Ranostay09a99952008-01-24 11:49:21 +01002663 STAC_MONO_MUX,
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02002664 STAC_CODEC_HP_SWITCH(NULL),
Matt Porter403d1942005-11-29 15:00:51 +01002665 STAC_CODEC_IO_SWITCH(NULL, 0),
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02002666 STAC_CODEC_CLFE_SWITCH(NULL, 0),
Nickolas Lloyd2fc99892009-05-15 15:33:30 +02002667 DC_BIAS(NULL, 0, 0),
Mattc7d4b2f2005-06-27 14:59:41 +02002668};
2669
2670/* add dynamic controls */
Takashi Iwaie3c75962009-01-23 11:57:22 +01002671static struct snd_kcontrol_new *
2672stac_control_new(struct sigmatel_spec *spec,
2673 struct snd_kcontrol_new *ktemp,
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002674 const char *name,
2675 hda_nid_t nid)
Mattc7d4b2f2005-06-27 14:59:41 +02002676{
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002677 struct snd_kcontrol_new *knew;
Mattc7d4b2f2005-06-27 14:59:41 +02002678
Takashi Iwai603c4012008-07-30 15:01:44 +02002679 snd_array_init(&spec->kctls, sizeof(*knew), 32);
2680 knew = snd_array_new(&spec->kctls);
2681 if (!knew)
Takashi Iwaie3c75962009-01-23 11:57:22 +01002682 return NULL;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002683 *knew = *ktemp;
Takashi Iwai82fe0c52005-06-30 10:54:33 +02002684 knew->name = kstrdup(name, GFP_KERNEL);
Takashi Iwaie3c75962009-01-23 11:57:22 +01002685 if (!knew->name) {
2686 /* roolback */
2687 memset(knew, 0, sizeof(*knew));
2688 spec->kctls.alloced--;
2689 return NULL;
2690 }
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002691 if (nid)
2692 knew->subdevice = (1<<31)|nid;
Takashi Iwaie3c75962009-01-23 11:57:22 +01002693 return knew;
2694}
2695
2696static int stac92xx_add_control_temp(struct sigmatel_spec *spec,
2697 struct snd_kcontrol_new *ktemp,
2698 int idx, const char *name,
2699 unsigned long val)
2700{
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002701 struct snd_kcontrol_new *knew = stac_control_new(spec, ktemp, name,
2702 get_amp_nid_(val));
Takashi Iwaie3c75962009-01-23 11:57:22 +01002703 if (!knew)
Mattc7d4b2f2005-06-27 14:59:41 +02002704 return -ENOMEM;
Takashi Iwaie3c75962009-01-23 11:57:22 +01002705 knew->index = idx;
Mattc7d4b2f2005-06-27 14:59:41 +02002706 knew->private_value = val;
Mattc7d4b2f2005-06-27 14:59:41 +02002707 return 0;
2708}
2709
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002710static inline int stac92xx_add_control_idx(struct sigmatel_spec *spec,
2711 int type, int idx, const char *name,
2712 unsigned long val)
2713{
2714 return stac92xx_add_control_temp(spec,
2715 &stac92xx_control_templates[type],
2716 idx, name, val);
2717}
2718
Matthew Ranostay4682eee2008-08-15 07:43:24 +02002719
2720/* add dynamic controls */
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01002721static inline int stac92xx_add_control(struct sigmatel_spec *spec, int type,
2722 const char *name, unsigned long val)
Matthew Ranostay4682eee2008-08-15 07:43:24 +02002723{
2724 return stac92xx_add_control_idx(spec, type, 0, name, val);
2725}
2726
Takashi Iwaie3c75962009-01-23 11:57:22 +01002727static struct snd_kcontrol_new stac_input_src_temp = {
2728 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2729 .name = "Input Source",
2730 .info = stac92xx_mux_enum_info,
2731 .get = stac92xx_mux_enum_get,
2732 .put = stac92xx_mux_enum_put,
2733};
2734
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02002735static inline int stac92xx_add_jack_mode_control(struct hda_codec *codec,
2736 hda_nid_t nid, int idx)
2737{
2738 int def_conf = snd_hda_codec_get_pincfg(codec, nid);
2739 int control = 0;
2740 struct sigmatel_spec *spec = codec->spec;
2741 char name[22];
2742
2743 if (!((get_defcfg_connect(def_conf)) & AC_JACK_PORT_FIXED)) {
2744 if (stac92xx_get_default_vref(codec, nid) == AC_PINCTL_VREF_GRD
2745 && nid == spec->line_switch)
2746 control = STAC_CTL_WIDGET_IO_SWITCH;
2747 else if (snd_hda_query_pin_caps(codec, nid)
2748 & (AC_PINCAP_VREF_GRD << AC_PINCAP_VREF_SHIFT))
2749 control = STAC_CTL_WIDGET_DC_BIAS;
2750 else if (nid == spec->mic_switch)
2751 control = STAC_CTL_WIDGET_IO_SWITCH;
2752 }
2753
2754 if (control) {
2755 strcpy(name, auto_pin_cfg_labels[idx]);
2756 return stac92xx_add_control(codec->spec, control,
2757 strcat(name, " Jack Mode"), nid);
2758 }
2759
2760 return 0;
2761}
2762
Takashi Iwaie3c75962009-01-23 11:57:22 +01002763static int stac92xx_add_input_source(struct sigmatel_spec *spec)
2764{
2765 struct snd_kcontrol_new *knew;
2766 struct hda_input_mux *imux = &spec->private_imux;
2767
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02002768 if (spec->auto_mic)
2769 return 0; /* no need for input source */
Takashi Iwaie3c75962009-01-23 11:57:22 +01002770 if (!spec->num_adcs || imux->num_items <= 1)
2771 return 0; /* no need for input source control */
2772 knew = stac_control_new(spec, &stac_input_src_temp,
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002773 stac_input_src_temp.name, 0);
Takashi Iwaie3c75962009-01-23 11:57:22 +01002774 if (!knew)
2775 return -ENOMEM;
2776 knew->count = spec->num_adcs;
2777 return 0;
2778}
2779
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002780/* check whether the line-input can be used as line-out */
2781static hda_nid_t check_line_out_switch(struct hda_codec *codec)
Matt Porter403d1942005-11-29 15:00:51 +01002782{
2783 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002784 struct auto_pin_cfg *cfg = &spec->autocfg;
2785 hda_nid_t nid;
2786 unsigned int pincap;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01002787
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002788 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2789 return 0;
2790 nid = cfg->input_pins[AUTO_PIN_LINE];
Takashi Iwai1327a322009-03-23 13:07:47 +01002791 pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002792 if (pincap & AC_PINCAP_OUT)
2793 return nid;
Matt Porter403d1942005-11-29 15:00:51 +01002794 return 0;
2795}
2796
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002797/* check whether the mic-input can be used as line-out */
2798static hda_nid_t check_mic_out_switch(struct hda_codec *codec)
2799{
2800 struct sigmatel_spec *spec = codec->spec;
2801 struct auto_pin_cfg *cfg = &spec->autocfg;
2802 unsigned int def_conf, pincap;
2803 unsigned int mic_pin;
2804
2805 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2806 return 0;
2807 mic_pin = AUTO_PIN_MIC;
2808 for (;;) {
2809 hda_nid_t nid = cfg->input_pins[mic_pin];
Takashi Iwai330ee992009-02-20 14:33:36 +01002810 def_conf = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002811 /* some laptops have an internal analog microphone
2812 * which can't be used as a output */
2813 if (get_defcfg_connect(def_conf) != AC_JACK_PORT_FIXED) {
Takashi Iwai1327a322009-03-23 13:07:47 +01002814 pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002815 if (pincap & AC_PINCAP_OUT)
2816 return nid;
2817 }
2818 if (mic_pin == AUTO_PIN_MIC)
2819 mic_pin = AUTO_PIN_FRONT_MIC;
2820 else
2821 break;
2822 }
2823 return 0;
2824}
Steve Longerbeam7b043892007-05-03 20:50:03 +02002825
2826static int is_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2827{
2828 int i;
2829
2830 for (i = 0; i < spec->multiout.num_dacs; i++) {
2831 if (spec->multiout.dac_nids[i] == nid)
2832 return 1;
2833 }
2834
2835 return 0;
2836}
2837
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002838static int check_all_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2839{
2840 int i;
2841 if (is_in_dac_nids(spec, nid))
2842 return 1;
2843 for (i = 0; i < spec->autocfg.hp_outs; i++)
2844 if (spec->hp_dacs[i] == nid)
2845 return 1;
2846 for (i = 0; i < spec->autocfg.speaker_outs; i++)
2847 if (spec->speaker_dacs[i] == nid)
2848 return 1;
2849 return 0;
2850}
2851
2852static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid)
2853{
2854 struct sigmatel_spec *spec = codec->spec;
2855 int j, conn_len;
2856 hda_nid_t conn[HDA_MAX_CONNECTIONS];
2857 unsigned int wcaps, wtype;
2858
2859 conn_len = snd_hda_get_connections(codec, nid, conn,
2860 HDA_MAX_CONNECTIONS);
2861 for (j = 0; j < conn_len; j++) {
Takashi Iwai14bafe32009-03-23 16:35:39 +01002862 wcaps = get_wcaps(codec, conn[j]);
Takashi Iwaia22d5432009-07-27 12:54:26 +02002863 wtype = get_wcaps_type(wcaps);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002864 /* we check only analog outputs */
2865 if (wtype != AC_WID_AUD_OUT || (wcaps & AC_WCAP_DIGITAL))
2866 continue;
2867 /* if this route has a free DAC, assign it */
2868 if (!check_all_dac_nids(spec, conn[j])) {
2869 if (conn_len > 1) {
2870 /* select this DAC in the pin's input mux */
2871 snd_hda_codec_write_cache(codec, nid, 0,
2872 AC_VERB_SET_CONNECT_SEL, j);
2873 }
2874 return conn[j];
2875 }
2876 }
Takashi Iwaiee58a7c2009-03-06 12:00:24 +01002877 /* if all DACs are already assigned, connect to the primary DAC */
2878 if (conn_len > 1) {
2879 for (j = 0; j < conn_len; j++) {
2880 if (conn[j] == spec->multiout.dac_nids[0]) {
2881 snd_hda_codec_write_cache(codec, nid, 0,
2882 AC_VERB_SET_CONNECT_SEL, j);
2883 break;
2884 }
2885 }
2886 }
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002887 return 0;
2888}
2889
2890static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
2891static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
2892
Matt Porter3cc08dc2006-01-23 15:27:49 +01002893/*
Steve Longerbeam7b043892007-05-03 20:50:03 +02002894 * Fill in the dac_nids table from the parsed pin configuration
2895 * This function only works when every pin in line_out_pins[]
2896 * contains atleast one DAC in its connection list. Some 92xx
2897 * codecs are not connected directly to a DAC, such as the 9200
2898 * and 9202/925x. For those, dac_nids[] must be hard-coded.
Matt Porter3cc08dc2006-01-23 15:27:49 +01002899 */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002900static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec)
Mattc7d4b2f2005-06-27 14:59:41 +02002901{
2902 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002903 struct auto_pin_cfg *cfg = &spec->autocfg;
2904 int i;
2905 hda_nid_t nid, dac;
Steve Longerbeam7b043892007-05-03 20:50:03 +02002906
Mattc7d4b2f2005-06-27 14:59:41 +02002907 for (i = 0; i < cfg->line_outs; i++) {
2908 nid = cfg->line_out_pins[i];
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002909 dac = get_unassigned_dac(codec, nid);
2910 if (!dac) {
Takashi Iwaidf802952007-07-02 19:18:00 +02002911 if (spec->multiout.num_dacs > 0) {
2912 /* we have already working output pins,
2913 * so let's drop the broken ones again
2914 */
2915 cfg->line_outs = spec->multiout.num_dacs;
2916 break;
2917 }
Steve Longerbeam7b043892007-05-03 20:50:03 +02002918 /* error out, no available DAC found */
2919 snd_printk(KERN_ERR
2920 "%s: No available DAC for pin 0x%x\n",
2921 __func__, nid);
2922 return -ENODEV;
2923 }
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002924 add_spec_dacs(spec, dac);
2925 }
Steve Longerbeam7b043892007-05-03 20:50:03 +02002926
Takashi Iwai139e0712009-03-06 12:10:41 +01002927 for (i = 0; i < cfg->hp_outs; i++) {
2928 nid = cfg->hp_pins[i];
2929 dac = get_unassigned_dac(codec, nid);
2930 if (dac) {
2931 if (!spec->multiout.hp_nid)
2932 spec->multiout.hp_nid = dac;
2933 else
2934 add_spec_extra_dacs(spec, dac);
2935 }
2936 spec->hp_dacs[i] = dac;
2937 }
2938
2939 for (i = 0; i < cfg->speaker_outs; i++) {
2940 nid = cfg->speaker_pins[i];
2941 dac = get_unassigned_dac(codec, nid);
2942 if (dac)
2943 add_spec_extra_dacs(spec, dac);
2944 spec->speaker_dacs[i] = dac;
2945 }
2946
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002947 /* add line-in as output */
2948 nid = check_line_out_switch(codec);
2949 if (nid) {
2950 dac = get_unassigned_dac(codec, nid);
2951 if (dac) {
2952 snd_printdd("STAC: Add line-in 0x%x as output %d\n",
2953 nid, cfg->line_outs);
2954 cfg->line_out_pins[cfg->line_outs] = nid;
2955 cfg->line_outs++;
2956 spec->line_switch = nid;
2957 add_spec_dacs(spec, dac);
2958 }
2959 }
2960 /* add mic as output */
2961 nid = check_mic_out_switch(codec);
2962 if (nid) {
2963 dac = get_unassigned_dac(codec, nid);
2964 if (dac) {
2965 snd_printdd("STAC: Add mic-in 0x%x as output %d\n",
2966 nid, cfg->line_outs);
2967 cfg->line_out_pins[cfg->line_outs] = nid;
2968 cfg->line_outs++;
2969 spec->mic_switch = nid;
2970 add_spec_dacs(spec, dac);
Steve Longerbeam7b043892007-05-03 20:50:03 +02002971 }
Mattc7d4b2f2005-06-27 14:59:41 +02002972 }
2973
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002974 snd_printd("stac92xx: dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
Steve Longerbeam7b043892007-05-03 20:50:03 +02002975 spec->multiout.num_dacs,
2976 spec->multiout.dac_nids[0],
2977 spec->multiout.dac_nids[1],
2978 spec->multiout.dac_nids[2],
2979 spec->multiout.dac_nids[3],
2980 spec->multiout.dac_nids[4]);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01002981
Mattc7d4b2f2005-06-27 14:59:41 +02002982 return 0;
2983}
2984
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002985/* create volume control/switch for the given prefx type */
Takashi Iwai668b9652009-03-06 10:13:24 +01002986static int create_controls_idx(struct hda_codec *codec, const char *pfx,
2987 int idx, hda_nid_t nid, int chs)
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002988{
Takashi Iwai7c7767e2009-01-20 15:28:38 +01002989 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002990 char name[32];
2991 int err;
2992
Takashi Iwai7c7767e2009-01-20 15:28:38 +01002993 if (!spec->check_volume_offset) {
2994 unsigned int caps, step, nums, db_scale;
2995 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
2996 step = (caps & AC_AMPCAP_STEP_SIZE) >>
2997 AC_AMPCAP_STEP_SIZE_SHIFT;
2998 step = (step + 1) * 25; /* in .01dB unit */
2999 nums = (caps & AC_AMPCAP_NUM_STEPS) >>
3000 AC_AMPCAP_NUM_STEPS_SHIFT;
3001 db_scale = nums * step;
3002 /* if dB scale is over -64dB, and finer enough,
3003 * let's reduce it to half
3004 */
3005 if (db_scale > 6400 && nums >= 0x1f)
3006 spec->volume_offset = nums / 2;
3007 spec->check_volume_offset = 1;
3008 }
3009
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003010 sprintf(name, "%s Playback Volume", pfx);
Takashi Iwai668b9652009-03-06 10:13:24 +01003011 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, idx, name,
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003012 HDA_COMPOSE_AMP_VAL_OFS(nid, chs, 0, HDA_OUTPUT,
3013 spec->volume_offset));
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003014 if (err < 0)
3015 return err;
3016 sprintf(name, "%s Playback Switch", pfx);
Takashi Iwai668b9652009-03-06 10:13:24 +01003017 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_MUTE, idx, name,
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003018 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
3019 if (err < 0)
3020 return err;
3021 return 0;
3022}
3023
Takashi Iwai668b9652009-03-06 10:13:24 +01003024#define create_controls(codec, pfx, nid, chs) \
3025 create_controls_idx(codec, pfx, 0, nid, chs)
3026
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003027static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
3028{
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003029 if (spec->multiout.num_dacs > 4) {
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003030 printk(KERN_WARNING "stac92xx: No space for DAC 0x%x\n", nid);
3031 return 1;
3032 } else {
3033 spec->multiout.dac_nids[spec->multiout.num_dacs] = nid;
3034 spec->multiout.num_dacs++;
3035 }
3036 return 0;
3037}
3038
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003039static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003040{
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003041 int i;
3042 for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++) {
3043 if (!spec->multiout.extra_out_nid[i]) {
3044 spec->multiout.extra_out_nid[i] = nid;
3045 return 0;
3046 }
3047 }
3048 printk(KERN_WARNING "stac92xx: No space for extra DAC 0x%x\n", nid);
3049 return 1;
Matthew Ranostayae0afd82008-02-22 17:55:05 +01003050}
3051
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003052/* Create output controls
3053 * The mixer elements are named depending on the given type (AUTO_PIN_XXX_OUT)
3054 */
3055static int create_multi_out_ctls(struct hda_codec *codec, int num_outs,
3056 const hda_nid_t *pins,
3057 const hda_nid_t *dac_nids,
3058 int type)
Mattc7d4b2f2005-06-27 14:59:41 +02003059{
Takashi Iwai76624532008-12-19 10:09:47 +01003060 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai19039bd2006-06-28 15:52:16 +02003061 static const char *chname[4] = {
3062 "Front", "Surround", NULL /*CLFE*/, "Side"
3063 };
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003064 hda_nid_t nid;
Takashi Iwai91589232008-12-19 15:59:40 +01003065 int i, err;
3066 unsigned int wid_caps;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003067
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003068 for (i = 0; i < num_outs && i < ARRAY_SIZE(chname); i++) {
Takashi Iwaiffd0e562009-04-16 12:20:24 +02003069 if (type == AUTO_PIN_HP_OUT && !spec->hp_detect) {
3070 wid_caps = get_wcaps(codec, pins[i]);
3071 if (wid_caps & AC_WCAP_UNSOL_CAP)
3072 spec->hp_detect = 1;
3073 }
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003074 nid = dac_nids[i];
3075 if (!nid)
3076 continue;
3077 if (type != AUTO_PIN_HP_OUT && i == 2) {
Mattc7d4b2f2005-06-27 14:59:41 +02003078 /* Center/LFE */
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003079 err = create_controls(codec, "Center", nid, 1);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003080 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003081 return err;
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003082 err = create_controls(codec, "LFE", nid, 2);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003083 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003084 return err;
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003085
3086 wid_caps = get_wcaps(codec, nid);
3087
3088 if (wid_caps & AC_WCAP_LR_SWAP) {
3089 err = stac92xx_add_control(spec,
3090 STAC_CTL_WIDGET_CLFE_SWITCH,
3091 "Swap Center/LFE Playback Switch", nid);
3092
3093 if (err < 0)
3094 return err;
3095 }
3096
Mattc7d4b2f2005-06-27 14:59:41 +02003097 } else {
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003098 const char *name;
Takashi Iwai668b9652009-03-06 10:13:24 +01003099 int idx;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003100 switch (type) {
3101 case AUTO_PIN_HP_OUT:
Takashi Iwai668b9652009-03-06 10:13:24 +01003102 name = "Headphone";
3103 idx = i;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003104 break;
3105 case AUTO_PIN_SPEAKER_OUT:
Takashi Iwai668b9652009-03-06 10:13:24 +01003106 name = "Speaker";
3107 idx = i;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003108 break;
3109 default:
3110 name = chname[i];
Takashi Iwai668b9652009-03-06 10:13:24 +01003111 idx = 0;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003112 break;
Takashi Iwai76624532008-12-19 10:09:47 +01003113 }
Takashi Iwai668b9652009-03-06 10:13:24 +01003114 err = create_controls_idx(codec, name, idx, nid, 3);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003115 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003116 return err;
3117 }
3118 }
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003119 return 0;
3120}
3121
Takashi Iwai6479c632009-07-28 18:20:25 +02003122static int stac92xx_add_capvol_ctls(struct hda_codec *codec, unsigned long vol,
3123 unsigned long sw, int idx)
3124{
3125 int err;
3126 err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_VOL, idx,
Takashi Iwaibf677bd2009-07-30 09:24:29 +02003127 "Capture Volume", vol);
Takashi Iwai6479c632009-07-28 18:20:25 +02003128 if (err < 0)
3129 return err;
3130 err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_MUTE, idx,
Takashi Iwaibf677bd2009-07-30 09:24:29 +02003131 "Capture Switch", sw);
Takashi Iwai6479c632009-07-28 18:20:25 +02003132 if (err < 0)
3133 return err;
3134 return 0;
3135}
3136
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003137/* add playback controls from the parsed DAC table */
3138static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec,
3139 const struct auto_pin_cfg *cfg)
3140{
3141 struct sigmatel_spec *spec = codec->spec;
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02003142 hda_nid_t nid;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003143 int err;
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02003144 int idx;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003145
3146 err = create_multi_out_ctls(codec, cfg->line_outs, cfg->line_out_pins,
3147 spec->multiout.dac_nids,
3148 cfg->line_out_type);
3149 if (err < 0)
3150 return err;
Mattc7d4b2f2005-06-27 14:59:41 +02003151
Takashi Iwaia9cb5c92008-11-24 07:51:11 +01003152 if (cfg->hp_outs > 1 && cfg->line_out_type == AUTO_PIN_LINE_OUT) {
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02003153 err = stac92xx_add_control(spec,
3154 STAC_CTL_WIDGET_HP_SWITCH,
Takashi Iwaid7a89432008-11-12 09:48:04 +01003155 "Headphone as Line Out Switch",
3156 cfg->hp_pins[cfg->hp_outs - 1]);
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02003157 if (err < 0)
3158 return err;
3159 }
3160
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02003161 for (idx = AUTO_PIN_MIC; idx <= AUTO_PIN_FRONT_LINE; idx++) {
3162 nid = cfg->input_pins[idx];
3163 if (nid) {
3164 err = stac92xx_add_jack_mode_control(codec, nid, idx);
3165 if (err < 0)
3166 return err;
3167 }
Matthew Ranostayb5895dc2008-01-25 15:24:50 +01003168 }
Matt Porter403d1942005-11-29 15:00:51 +01003169
Mattc7d4b2f2005-06-27 14:59:41 +02003170 return 0;
3171}
3172
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003173/* add playback controls for Speaker and HP outputs */
3174static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec,
3175 struct auto_pin_cfg *cfg)
Mattc7d4b2f2005-06-27 14:59:41 +02003176{
3177 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003178 int err;
Mattc7d4b2f2005-06-27 14:59:41 +02003179
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003180 err = create_multi_out_ctls(codec, cfg->hp_outs, cfg->hp_pins,
3181 spec->hp_dacs, AUTO_PIN_HP_OUT);
3182 if (err < 0)
3183 return err;
3184
3185 err = create_multi_out_ctls(codec, cfg->speaker_outs, cfg->speaker_pins,
3186 spec->speaker_dacs, AUTO_PIN_SPEAKER_OUT);
3187 if (err < 0)
3188 return err;
3189
Mattc7d4b2f2005-06-27 14:59:41 +02003190 return 0;
3191}
3192
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003193/* labels for mono mux outputs */
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003194static const char *stac92xx_mono_labels[4] = {
3195 "DAC0", "DAC1", "Mixer", "DAC2"
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003196};
3197
3198/* create mono mux for mono out on capable codecs */
3199static int stac92xx_auto_create_mono_output_ctls(struct hda_codec *codec)
3200{
3201 struct sigmatel_spec *spec = codec->spec;
3202 struct hda_input_mux *mono_mux = &spec->private_mono_mux;
3203 int i, num_cons;
3204 hda_nid_t con_lst[ARRAY_SIZE(stac92xx_mono_labels)];
3205
3206 num_cons = snd_hda_get_connections(codec,
3207 spec->mono_nid,
3208 con_lst,
3209 HDA_MAX_NUM_INPUTS);
Jaroslav Kysela16a433d2009-07-22 16:20:40 +02003210 if (num_cons <= 0 || num_cons > ARRAY_SIZE(stac92xx_mono_labels))
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003211 return -EINVAL;
3212
3213 for (i = 0; i < num_cons; i++) {
3214 mono_mux->items[mono_mux->num_items].label =
3215 stac92xx_mono_labels[i];
3216 mono_mux->items[mono_mux->num_items].index = i;
3217 mono_mux->num_items++;
3218 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003219
3220 return stac92xx_add_control(spec, STAC_CTL_WIDGET_MONO_MUX,
3221 "Mono Mux", spec->mono_nid);
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003222}
3223
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003224/* create PC beep volume controls */
3225static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec,
3226 hda_nid_t nid)
3227{
3228 struct sigmatel_spec *spec = codec->spec;
3229 u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
Jaroslav Kysela123c07a2009-10-21 14:48:23 +02003230 int err, type = STAC_CTL_WIDGET_MUTE_BEEP;
3231
3232 if (spec->anabeep_nid == nid)
3233 type = STAC_CTL_WIDGET_MUTE;
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003234
3235 /* check for mute support for the the amp */
3236 if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) {
Jaroslav Kysela123c07a2009-10-21 14:48:23 +02003237 err = stac92xx_add_control(spec, type,
Jaroslav Kyselad355c82a2009-11-03 15:47:25 +01003238 "Beep Playback Switch",
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003239 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3240 if (err < 0)
3241 return err;
3242 }
3243
3244 /* check to see if there is volume support for the amp */
3245 if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3246 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL,
Jaroslav Kyselad355c82a2009-11-03 15:47:25 +01003247 "Beep Playback Volume",
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003248 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3249 if (err < 0)
3250 return err;
3251 }
3252 return 0;
3253}
3254
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003255#ifdef CONFIG_SND_HDA_INPUT_BEEP
3256#define stac92xx_dig_beep_switch_info snd_ctl_boolean_mono_info
3257
3258static int stac92xx_dig_beep_switch_get(struct snd_kcontrol *kcontrol,
3259 struct snd_ctl_elem_value *ucontrol)
3260{
3261 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3262 ucontrol->value.integer.value[0] = codec->beep->enabled;
3263 return 0;
3264}
3265
3266static int stac92xx_dig_beep_switch_put(struct snd_kcontrol *kcontrol,
3267 struct snd_ctl_elem_value *ucontrol)
3268{
3269 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Jaroslav Kysela123c07a2009-10-21 14:48:23 +02003270 return snd_hda_enable_beep_device(codec, ucontrol->value.integer.value[0]);
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003271}
3272
3273static struct snd_kcontrol_new stac92xx_dig_beep_ctrl = {
3274 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3275 .info = stac92xx_dig_beep_switch_info,
3276 .get = stac92xx_dig_beep_switch_get,
3277 .put = stac92xx_dig_beep_switch_put,
3278};
3279
3280static int stac92xx_beep_switch_ctl(struct hda_codec *codec)
3281{
3282 return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl,
Jaroslav Kyselad355c82a2009-11-03 15:47:25 +01003283 0, "Beep Playback Switch", 0);
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003284}
3285#endif
3286
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003287static int stac92xx_auto_create_mux_input_ctls(struct hda_codec *codec)
3288{
3289 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai667067d2009-08-13 18:14:42 +02003290 int i, j, err = 0;
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003291
3292 for (i = 0; i < spec->num_muxes; i++) {
Takashi Iwai667067d2009-08-13 18:14:42 +02003293 hda_nid_t nid;
3294 unsigned int wcaps;
3295 unsigned long val;
3296
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003297 nid = spec->mux_nids[i];
3298 wcaps = get_wcaps(codec, nid);
Takashi Iwai667067d2009-08-13 18:14:42 +02003299 if (!(wcaps & AC_WCAP_OUT_AMP))
3300 continue;
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003301
Takashi Iwai667067d2009-08-13 18:14:42 +02003302 /* check whether already the same control was created as
3303 * normal Capture Volume.
3304 */
3305 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3306 for (j = 0; j < spec->num_caps; j++) {
3307 if (spec->capvols[j] == val)
3308 break;
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003309 }
Takashi Iwai667067d2009-08-13 18:14:42 +02003310 if (j < spec->num_caps)
3311 continue;
3312
3313 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, i,
3314 "Mux Capture Volume", val);
3315 if (err < 0)
3316 return err;
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003317 }
3318 return 0;
3319};
3320
Matthew Ranostayd9737752008-09-07 12:03:41 +02003321static const char *stac92xx_spdif_labels[3] = {
Matthew Ranostay65973632008-09-16 10:39:37 -04003322 "Digital Playback", "Analog Mux 1", "Analog Mux 2",
Matthew Ranostayd9737752008-09-07 12:03:41 +02003323};
3324
3325static int stac92xx_auto_create_spdif_mux_ctls(struct hda_codec *codec)
3326{
3327 struct sigmatel_spec *spec = codec->spec;
3328 struct hda_input_mux *spdif_mux = &spec->private_smux;
Matthew Ranostay65973632008-09-16 10:39:37 -04003329 const char **labels = spec->spdif_labels;
Matthew Ranostayd9737752008-09-07 12:03:41 +02003330 int i, num_cons;
Matthew Ranostay65973632008-09-16 10:39:37 -04003331 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
Matthew Ranostayd9737752008-09-07 12:03:41 +02003332
3333 num_cons = snd_hda_get_connections(codec,
3334 spec->smux_nids[0],
3335 con_lst,
3336 HDA_MAX_NUM_INPUTS);
Jaroslav Kysela16a433d2009-07-22 16:20:40 +02003337 if (num_cons <= 0)
Matthew Ranostayd9737752008-09-07 12:03:41 +02003338 return -EINVAL;
3339
Matthew Ranostay65973632008-09-16 10:39:37 -04003340 if (!labels)
3341 labels = stac92xx_spdif_labels;
3342
Matthew Ranostayd9737752008-09-07 12:03:41 +02003343 for (i = 0; i < num_cons; i++) {
Matthew Ranostay65973632008-09-16 10:39:37 -04003344 spdif_mux->items[spdif_mux->num_items].label = labels[i];
Matthew Ranostayd9737752008-09-07 12:03:41 +02003345 spdif_mux->items[spdif_mux->num_items].index = i;
3346 spdif_mux->num_items++;
3347 }
3348
3349 return 0;
3350}
3351
Matt Porter8b657272006-10-26 17:12:59 +02003352/* labels for dmic mux inputs */
Adrian Bunkddc2cec2006-11-20 12:03:44 +01003353static const char *stac92xx_dmic_labels[5] = {
Matt Porter8b657272006-10-26 17:12:59 +02003354 "Analog Inputs", "Digital Mic 1", "Digital Mic 2",
3355 "Digital Mic 3", "Digital Mic 4"
3356};
3357
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003358static int get_connection_index(struct hda_codec *codec, hda_nid_t mux,
3359 hda_nid_t nid)
3360{
3361 hda_nid_t conn[HDA_MAX_NUM_INPUTS];
3362 int i, nums;
3363
3364 nums = snd_hda_get_connections(codec, mux, conn, ARRAY_SIZE(conn));
3365 for (i = 0; i < nums; i++)
3366 if (conn[i] == nid)
3367 return i;
3368 return -1;
3369}
3370
Takashi Iwai667067d2009-08-13 18:14:42 +02003371/* create a volume assigned to the given pin (only if supported) */
Takashi Iwai96f845d2009-08-29 00:49:36 +02003372/* return 1 if the volume control is created */
Takashi Iwai667067d2009-08-13 18:14:42 +02003373static int create_elem_capture_vol(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwai96f845d2009-08-29 00:49:36 +02003374 const char *label, int direction)
Takashi Iwai667067d2009-08-13 18:14:42 +02003375{
3376 unsigned int caps, nums;
3377 char name[32];
Takashi Iwai96f845d2009-08-29 00:49:36 +02003378 int err;
Takashi Iwai667067d2009-08-13 18:14:42 +02003379
Takashi Iwai96f845d2009-08-29 00:49:36 +02003380 if (direction == HDA_OUTPUT)
3381 caps = AC_WCAP_OUT_AMP;
3382 else
3383 caps = AC_WCAP_IN_AMP;
3384 if (!(get_wcaps(codec, nid) & caps))
Takashi Iwai667067d2009-08-13 18:14:42 +02003385 return 0;
Takashi Iwai96f845d2009-08-29 00:49:36 +02003386 caps = query_amp_caps(codec, nid, direction);
Takashi Iwai667067d2009-08-13 18:14:42 +02003387 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
3388 if (!nums)
3389 return 0;
3390 snprintf(name, sizeof(name), "%s Capture Volume", label);
Takashi Iwai96f845d2009-08-29 00:49:36 +02003391 err = stac92xx_add_control(codec->spec, STAC_CTL_WIDGET_VOL, name,
3392 HDA_COMPOSE_AMP_VAL(nid, 3, 0, direction));
3393 if (err < 0)
3394 return err;
3395 return 1;
Takashi Iwai667067d2009-08-13 18:14:42 +02003396}
3397
Matt Porter8b657272006-10-26 17:12:59 +02003398/* create playback/capture controls for input pins on dmic capable codecs */
3399static int stac92xx_auto_create_dmic_input_ctls(struct hda_codec *codec,
3400 const struct auto_pin_cfg *cfg)
3401{
3402 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai5207e102009-07-30 13:09:08 +02003403 struct hda_input_mux *imux = &spec->private_imux;
Matt Porter8b657272006-10-26 17:12:59 +02003404 struct hda_input_mux *dimux = &spec->private_dimux;
Takashi Iwai5207e102009-07-30 13:09:08 +02003405 int err, i, active_mics;
3406 unsigned int def_conf;
Matt Porter8b657272006-10-26 17:12:59 +02003407
3408 dimux->items[dimux->num_items].label = stac92xx_dmic_labels[0];
3409 dimux->items[dimux->num_items].index = 0;
3410 dimux->num_items++;
3411
Takashi Iwai5207e102009-07-30 13:09:08 +02003412 active_mics = 0;
3413 for (i = 0; i < spec->num_dmics; i++) {
Takashi Iwai667067d2009-08-13 18:14:42 +02003414 /* check the validity: sometimes it's a dead vendor-spec node */
3415 if (get_wcaps_type(get_wcaps(codec, spec->dmic_nids[i]))
3416 != AC_WID_PIN)
3417 continue;
Takashi Iwai5207e102009-07-30 13:09:08 +02003418 def_conf = snd_hda_codec_get_pincfg(codec, spec->dmic_nids[i]);
3419 if (get_defcfg_connect(def_conf) != AC_JACK_PORT_NONE)
3420 active_mics++;
3421 }
3422
Matt Porter8b657272006-10-26 17:12:59 +02003423 for (i = 0; i < spec->num_dmics; i++) {
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003424 hda_nid_t nid;
Matt Porter8b657272006-10-26 17:12:59 +02003425 int index;
Takashi Iwai5207e102009-07-30 13:09:08 +02003426 const char *label;
Matt Porter8b657272006-10-26 17:12:59 +02003427
Takashi Iwai667067d2009-08-13 18:14:42 +02003428 nid = spec->dmic_nids[i];
3429 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
3430 continue;
3431 def_conf = snd_hda_codec_get_pincfg(codec, nid);
Matt Porter8b657272006-10-26 17:12:59 +02003432 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3433 continue;
3434
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003435 index = get_connection_index(codec, spec->dmux_nids[0], nid);
3436 if (index < 0)
3437 continue;
3438
Takashi Iwai5207e102009-07-30 13:09:08 +02003439 if (active_mics == 1)
3440 label = "Digital Mic";
3441 else
3442 label = stac92xx_dmic_labels[dimux->num_items];
3443
Takashi Iwai96f845d2009-08-29 00:49:36 +02003444 err = create_elem_capture_vol(codec, nid, label, HDA_INPUT);
Takashi Iwai667067d2009-08-13 18:14:42 +02003445 if (err < 0)
3446 return err;
Takashi Iwai96f845d2009-08-29 00:49:36 +02003447 if (!err) {
3448 err = create_elem_capture_vol(codec, nid, label,
3449 HDA_OUTPUT);
3450 if (err < 0)
3451 return err;
3452 }
Matthew Ranostay0678acc2008-01-08 12:10:50 +01003453
Takashi Iwai5207e102009-07-30 13:09:08 +02003454 dimux->items[dimux->num_items].label = label;
Matt Porter8b657272006-10-26 17:12:59 +02003455 dimux->items[dimux->num_items].index = index;
3456 dimux->num_items++;
Takashi Iwai5207e102009-07-30 13:09:08 +02003457 if (snd_hda_get_bool_hint(codec, "separate_dmux") != 1) {
3458 imux->items[imux->num_items].label = label;
3459 imux->items[imux->num_items].index = index;
3460 imux->num_items++;
3461 }
Matt Porter8b657272006-10-26 17:12:59 +02003462 }
3463
3464 return 0;
3465}
3466
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003467static int check_mic_pin(struct hda_codec *codec, hda_nid_t nid,
3468 hda_nid_t *fixed, hda_nid_t *ext)
3469{
3470 unsigned int cfg;
3471
3472 if (!nid)
3473 return 0;
3474 cfg = snd_hda_codec_get_pincfg(codec, nid);
3475 switch (get_defcfg_connect(cfg)) {
3476 case AC_JACK_PORT_FIXED:
3477 if (*fixed)
3478 return 1; /* already occupied */
3479 *fixed = nid;
3480 break;
3481 case AC_JACK_PORT_COMPLEX:
3482 if (*ext)
3483 return 1; /* already occupied */
3484 *ext = nid;
3485 break;
3486 }
3487 return 0;
3488}
3489
3490static int set_mic_route(struct hda_codec *codec,
3491 struct sigmatel_mic_route *mic,
3492 hda_nid_t pin)
3493{
3494 struct sigmatel_spec *spec = codec->spec;
3495 struct auto_pin_cfg *cfg = &spec->autocfg;
3496 int i;
3497
3498 mic->pin = pin;
3499 for (i = AUTO_PIN_MIC; i <= AUTO_PIN_FRONT_MIC; i++)
3500 if (pin == cfg->input_pins[i])
3501 break;
3502 if (i <= AUTO_PIN_FRONT_MIC) {
3503 /* analog pin */
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003504 i = get_connection_index(codec, spec->mux_nids[0], pin);
3505 if (i < 0)
3506 return -1;
3507 mic->mux_idx = i;
Takashi Iwai02d33322009-10-01 16:38:11 +02003508 mic->dmux_idx = -1;
3509 if (spec->dmux_nids)
3510 mic->dmux_idx = get_connection_index(codec,
3511 spec->dmux_nids[0],
3512 spec->mux_nids[0]);
Takashi Iwaida2a2aa2009-08-10 07:44:09 +02003513 } else if (spec->dmux_nids) {
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003514 /* digital pin */
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003515 i = get_connection_index(codec, spec->dmux_nids[0], pin);
3516 if (i < 0)
3517 return -1;
3518 mic->dmux_idx = i;
Takashi Iwai02d33322009-10-01 16:38:11 +02003519 mic->mux_idx = -1;
3520 if (spec->mux_nids)
3521 mic->mux_idx = get_connection_index(codec,
3522 spec->mux_nids[0],
3523 spec->dmux_nids[0]);
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003524 }
3525 return 0;
3526}
3527
3528/* return non-zero if the device is for automatic mic switch */
3529static int stac_check_auto_mic(struct hda_codec *codec)
3530{
3531 struct sigmatel_spec *spec = codec->spec;
3532 struct auto_pin_cfg *cfg = &spec->autocfg;
3533 hda_nid_t fixed, ext;
3534 int i;
3535
3536 for (i = AUTO_PIN_LINE; i < AUTO_PIN_LAST; i++) {
3537 if (cfg->input_pins[i])
3538 return 0; /* must be exclusively mics */
3539 }
3540 fixed = ext = 0;
3541 for (i = AUTO_PIN_MIC; i <= AUTO_PIN_FRONT_MIC; i++)
3542 if (check_mic_pin(codec, cfg->input_pins[i], &fixed, &ext))
3543 return 0;
3544 for (i = 0; i < spec->num_dmics; i++)
3545 if (check_mic_pin(codec, spec->dmic_nids[i], &fixed, &ext))
3546 return 0;
3547 if (!fixed || !ext)
3548 return 0;
3549 if (!(get_wcaps(codec, ext) & AC_WCAP_UNSOL_CAP))
3550 return 0; /* no unsol support */
3551 if (set_mic_route(codec, &spec->ext_mic, ext) ||
3552 set_mic_route(codec, &spec->int_mic, fixed))
3553 return 0; /* something is wrong */
3554 return 1;
3555}
3556
Mattc7d4b2f2005-06-27 14:59:41 +02003557/* create playback/capture controls for input pins */
3558static int stac92xx_auto_create_analog_input_ctls(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
3559{
3560 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +02003561 struct hda_input_mux *imux = &spec->private_imux;
Takashi Iwai667067d2009-08-13 18:14:42 +02003562 int i, j;
Mattc7d4b2f2005-06-27 14:59:41 +02003563
3564 for (i = 0; i < AUTO_PIN_LAST; i++) {
Takashi Iwai667067d2009-08-13 18:14:42 +02003565 hda_nid_t nid = cfg->input_pins[i];
3566 int index, err;
Mattc7d4b2f2005-06-27 14:59:41 +02003567
Takashi Iwai667067d2009-08-13 18:14:42 +02003568 if (!nid)
Takashi Iwai314634b2006-09-21 11:56:18 +02003569 continue;
3570 index = -1;
3571 for (j = 0; j < spec->num_muxes; j++) {
Takashi Iwai667067d2009-08-13 18:14:42 +02003572 index = get_connection_index(codec, spec->mux_nids[j],
3573 nid);
3574 if (index >= 0)
3575 break;
Mattc7d4b2f2005-06-27 14:59:41 +02003576 }
Takashi Iwai667067d2009-08-13 18:14:42 +02003577 if (index < 0)
3578 continue;
3579
3580 err = create_elem_capture_vol(codec, nid,
Takashi Iwai96f845d2009-08-29 00:49:36 +02003581 auto_pin_cfg_labels[i],
3582 HDA_INPUT);
Takashi Iwai667067d2009-08-13 18:14:42 +02003583 if (err < 0)
3584 return err;
3585
Takashi Iwai314634b2006-09-21 11:56:18 +02003586 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
3587 imux->items[imux->num_items].index = index;
3588 imux->num_items++;
Mattc7d4b2f2005-06-27 14:59:41 +02003589 }
Takashi Iwai5207e102009-07-30 13:09:08 +02003590 spec->num_analog_muxes = imux->num_items;
Mattc7d4b2f2005-06-27 14:59:41 +02003591
Steve Longerbeam7b043892007-05-03 20:50:03 +02003592 if (imux->num_items) {
Sam Revitch62fe78e2006-05-10 15:09:17 +02003593 /*
3594 * Set the current input for the muxes.
3595 * The STAC9221 has two input muxes with identical source
3596 * NID lists. Hopefully this won't get confused.
3597 */
3598 for (i = 0; i < spec->num_muxes; i++) {
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003599 snd_hda_codec_write_cache(codec, spec->mux_nids[i], 0,
3600 AC_VERB_SET_CONNECT_SEL,
3601 imux->items[0].index);
Sam Revitch62fe78e2006-05-10 15:09:17 +02003602 }
3603 }
3604
Mattc7d4b2f2005-06-27 14:59:41 +02003605 return 0;
3606}
3607
Mattc7d4b2f2005-06-27 14:59:41 +02003608static void stac92xx_auto_init_multi_out(struct hda_codec *codec)
3609{
3610 struct sigmatel_spec *spec = codec->spec;
3611 int i;
3612
3613 for (i = 0; i < spec->autocfg.line_outs; i++) {
3614 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3615 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
3616 }
3617}
3618
3619static void stac92xx_auto_init_hp_out(struct hda_codec *codec)
3620{
3621 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003622 int i;
Mattc7d4b2f2005-06-27 14:59:41 +02003623
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003624 for (i = 0; i < spec->autocfg.hp_outs; i++) {
3625 hda_nid_t pin;
3626 pin = spec->autocfg.hp_pins[i];
3627 if (pin) /* connect to front */
3628 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3629 }
3630 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
3631 hda_nid_t pin;
3632 pin = spec->autocfg.speaker_pins[i];
3633 if (pin) /* connect to front */
3634 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN);
3635 }
Mattc7d4b2f2005-06-27 14:59:41 +02003636}
3637
Matt Porter3cc08dc2006-01-23 15:27:49 +01003638static 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 +02003639{
3640 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003641 int hp_swap = 0;
Takashi Iwai6479c632009-07-28 18:20:25 +02003642 int i, err;
Mattc7d4b2f2005-06-27 14:59:41 +02003643
Matt Porter8b657272006-10-26 17:12:59 +02003644 if ((err = snd_hda_parse_pin_def_config(codec,
3645 &spec->autocfg,
3646 spec->dmic_nids)) < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003647 return err;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003648 if (! spec->autocfg.line_outs)
Matt Porter869264c2006-01-25 19:20:50 +01003649 return 0; /* can't find valid pin config */
Takashi Iwai19039bd2006-06-28 15:52:16 +02003650
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003651 /* If we have no real line-out pin and multiple hp-outs, HPs should
3652 * be set up as multi-channel outputs.
3653 */
3654 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT &&
3655 spec->autocfg.hp_outs > 1) {
3656 /* Copy hp_outs to line_outs, backup line_outs in
3657 * speaker_outs so that the following routines can handle
3658 * HP pins as primary outputs.
3659 */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003660 snd_printdd("stac92xx: Enabling multi-HPs workaround\n");
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003661 memcpy(spec->autocfg.speaker_pins, spec->autocfg.line_out_pins,
3662 sizeof(spec->autocfg.line_out_pins));
3663 spec->autocfg.speaker_outs = spec->autocfg.line_outs;
3664 memcpy(spec->autocfg.line_out_pins, spec->autocfg.hp_pins,
3665 sizeof(spec->autocfg.hp_pins));
3666 spec->autocfg.line_outs = spec->autocfg.hp_outs;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003667 spec->autocfg.line_out_type = AUTO_PIN_HP_OUT;
3668 spec->autocfg.hp_outs = 0;
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003669 hp_swap = 1;
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003670 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003671 if (spec->autocfg.mono_out_pin) {
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003672 int dir = get_wcaps(codec, spec->autocfg.mono_out_pin) &
3673 (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP);
Matthew Ranostay09a99952008-01-24 11:49:21 +01003674 u32 caps = query_amp_caps(codec,
3675 spec->autocfg.mono_out_pin, dir);
3676 hda_nid_t conn_list[1];
3677
3678 /* get the mixer node and then the mono mux if it exists */
3679 if (snd_hda_get_connections(codec,
3680 spec->autocfg.mono_out_pin, conn_list, 1) &&
3681 snd_hda_get_connections(codec, conn_list[0],
Jaroslav Kysela16a433d2009-07-22 16:20:40 +02003682 conn_list, 1) > 0) {
Matthew Ranostay09a99952008-01-24 11:49:21 +01003683
3684 int wcaps = get_wcaps(codec, conn_list[0]);
Takashi Iwaia22d5432009-07-27 12:54:26 +02003685 int wid_type = get_wcaps_type(wcaps);
Matthew Ranostay09a99952008-01-24 11:49:21 +01003686 /* LR swap check, some stac925x have a mux that
3687 * changes the DACs output path instead of the
3688 * mono-mux path.
3689 */
3690 if (wid_type == AC_WID_AUD_SEL &&
3691 !(wcaps & AC_WCAP_LR_SWAP))
3692 spec->mono_nid = conn_list[0];
3693 }
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003694 if (dir) {
3695 hda_nid_t nid = spec->autocfg.mono_out_pin;
3696
3697 /* most mono outs have a least a mute/unmute switch */
3698 dir = (dir & AC_WCAP_OUT_AMP) ? HDA_OUTPUT : HDA_INPUT;
3699 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
3700 "Mono Playback Switch",
3701 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
Matthew Ranostay09a99952008-01-24 11:49:21 +01003702 if (err < 0)
3703 return err;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003704 /* check for volume support for the amp */
3705 if ((caps & AC_AMPCAP_NUM_STEPS)
3706 >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3707 err = stac92xx_add_control(spec,
3708 STAC_CTL_WIDGET_VOL,
3709 "Mono Playback Volume",
3710 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
3711 if (err < 0)
3712 return err;
3713 }
Matthew Ranostay09a99952008-01-24 11:49:21 +01003714 }
3715
3716 stac92xx_auto_set_pinctl(codec, spec->autocfg.mono_out_pin,
3717 AC_PINCTL_OUT_EN);
3718 }
Jiang Zhebcecd9b2007-11-12 12:57:03 +01003719
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003720 if (!spec->multiout.num_dacs) {
3721 err = stac92xx_auto_fill_dac_nids(codec);
3722 if (err < 0)
Takashi Iwai19039bd2006-06-28 15:52:16 +02003723 return err;
Takashi Iwaic9280d62009-01-15 17:31:00 +01003724 err = stac92xx_auto_create_multi_out_ctls(codec,
3725 &spec->autocfg);
3726 if (err < 0)
3727 return err;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01003728 }
Mattc7d4b2f2005-06-27 14:59:41 +02003729
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003730 /* setup analog beep controls */
3731 if (spec->anabeep_nid > 0) {
3732 err = stac92xx_auto_create_beep_ctls(codec,
3733 spec->anabeep_nid);
3734 if (err < 0)
3735 return err;
3736 }
3737
3738 /* setup digital beep controls and input device */
3739#ifdef CONFIG_SND_HDA_INPUT_BEEP
3740 if (spec->digbeep_nid > 0) {
3741 hda_nid_t nid = spec->digbeep_nid;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003742 unsigned int caps;
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003743
3744 err = stac92xx_auto_create_beep_ctls(codec, nid);
3745 if (err < 0)
3746 return err;
3747 err = snd_hda_attach_beep_device(codec, nid);
3748 if (err < 0)
3749 return err;
Takashi Iwaifa797962009-05-19 12:50:04 +02003750 /* IDT/STAC codecs have linear beep tone parameter */
3751 codec->beep->linear_tone = 1;
Takashi Iwai4d4e9bb2008-11-12 16:45:04 +01003752 /* if no beep switch is available, make its own one */
3753 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3754 if (codec->beep &&
3755 !((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT)) {
3756 err = stac92xx_beep_switch_ctl(codec);
3757 if (err < 0)
3758 return err;
3759 }
Matthew Ranostay1cd22242008-07-18 18:20:52 +02003760 }
3761#endif
3762
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003763 err = stac92xx_auto_create_hp_ctls(codec, &spec->autocfg);
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003764 if (err < 0)
3765 return err;
3766
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003767 /* All output parsing done, now restore the swapped hp pins */
3768 if (hp_swap) {
3769 memcpy(spec->autocfg.hp_pins, spec->autocfg.line_out_pins,
3770 sizeof(spec->autocfg.hp_pins));
3771 spec->autocfg.hp_outs = spec->autocfg.line_outs;
3772 spec->autocfg.line_out_type = AUTO_PIN_HP_OUT;
3773 spec->autocfg.line_outs = 0;
3774 }
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003775
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02003776 if (stac_check_auto_mic(codec)) {
3777 spec->auto_mic = 1;
3778 /* only one capture for auto-mic */
3779 spec->num_adcs = 1;
3780 spec->num_caps = 1;
3781 spec->num_muxes = 1;
3782 }
3783
Takashi Iwai6479c632009-07-28 18:20:25 +02003784 for (i = 0; i < spec->num_caps; i++) {
3785 err = stac92xx_add_capvol_ctls(codec, spec->capvols[i],
3786 spec->capsws[i], i);
3787 if (err < 0)
3788 return err;
3789 }
3790
Takashi Iwaidc04d1b2009-03-06 10:00:05 +01003791 err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg);
Maxim Levitsky0fb87bb2007-09-03 15:29:04 +02003792 if (err < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003793 return err;
3794
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003795 if (spec->mono_nid > 0) {
3796 err = stac92xx_auto_create_mono_output_ctls(codec);
3797 if (err < 0)
3798 return err;
3799 }
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04003800 if (spec->num_dmics > 0 && !spec->dinput_mux)
Matt Porter8b657272006-10-26 17:12:59 +02003801 if ((err = stac92xx_auto_create_dmic_input_ctls(codec,
3802 &spec->autocfg)) < 0)
3803 return err;
Matthew Ranostay4682eee2008-08-15 07:43:24 +02003804 if (spec->num_muxes > 0) {
3805 err = stac92xx_auto_create_mux_input_ctls(codec);
3806 if (err < 0)
3807 return err;
3808 }
Matthew Ranostayd9737752008-09-07 12:03:41 +02003809 if (spec->num_smuxes > 0) {
3810 err = stac92xx_auto_create_spdif_mux_ctls(codec);
3811 if (err < 0)
3812 return err;
3813 }
Matt Porter8b657272006-10-26 17:12:59 +02003814
Takashi Iwaie3c75962009-01-23 11:57:22 +01003815 err = stac92xx_add_input_source(spec);
3816 if (err < 0)
3817 return err;
3818
Mattc7d4b2f2005-06-27 14:59:41 +02003819 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
Matt Porter403d1942005-11-29 15:00:51 +01003820 if (spec->multiout.max_channels > 2)
Mattc7d4b2f2005-06-27 14:59:41 +02003821 spec->surr_switch = 1;
Mattc7d4b2f2005-06-27 14:59:41 +02003822
Takashi Iwai0852d7a2009-02-11 11:35:15 +01003823 if (spec->autocfg.dig_outs)
Matt Porter3cc08dc2006-01-23 15:27:49 +01003824 spec->multiout.dig_out_nid = dig_out;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02003825 if (dig_in && spec->autocfg.dig_in_pin)
Matt Porter3cc08dc2006-01-23 15:27:49 +01003826 spec->dig_in_nid = dig_in;
Mattc7d4b2f2005-06-27 14:59:41 +02003827
Takashi Iwai603c4012008-07-30 15:01:44 +02003828 if (spec->kctls.list)
3829 spec->mixers[spec->num_mixers++] = spec->kctls.list;
Mattc7d4b2f2005-06-27 14:59:41 +02003830
3831 spec->input_mux = &spec->private_imux;
Matthew Ranostayf8ccbf62008-12-20 17:36:28 -05003832 if (!spec->dinput_mux)
3833 spec->dinput_mux = &spec->private_dimux;
Matthew Ranostayd9737752008-09-07 12:03:41 +02003834 spec->sinput_mux = &spec->private_smux;
Matthew Ranostayb22b4822008-01-22 12:32:30 +01003835 spec->mono_mux = &spec->private_mono_mux;
Mattc7d4b2f2005-06-27 14:59:41 +02003836 return 1;
3837}
3838
Takashi Iwai82bc9552006-03-21 11:24:42 +01003839/* add playback controls for HP output */
3840static int stac9200_auto_create_hp_ctls(struct hda_codec *codec,
3841 struct auto_pin_cfg *cfg)
3842{
3843 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003844 hda_nid_t pin = cfg->hp_pins[0];
Takashi Iwai82bc9552006-03-21 11:24:42 +01003845 unsigned int wid_caps;
3846
3847 if (! pin)
3848 return 0;
3849
3850 wid_caps = get_wcaps(codec, pin);
Takashi Iwai505cb342006-03-27 12:51:52 +02003851 if (wid_caps & AC_WCAP_UNSOL_CAP)
Takashi Iwai82bc9552006-03-21 11:24:42 +01003852 spec->hp_detect = 1;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003853
3854 return 0;
3855}
3856
Richard Fish160ea0d2006-09-06 13:58:25 +02003857/* add playback controls for LFE output */
3858static int stac9200_auto_create_lfe_ctls(struct hda_codec *codec,
3859 struct auto_pin_cfg *cfg)
3860{
3861 struct sigmatel_spec *spec = codec->spec;
3862 int err;
3863 hda_nid_t lfe_pin = 0x0;
3864 int i;
3865
3866 /*
3867 * search speaker outs and line outs for a mono speaker pin
3868 * with an amp. If one is found, add LFE controls
3869 * for it.
3870 */
3871 for (i = 0; i < spec->autocfg.speaker_outs && lfe_pin == 0x0; i++) {
3872 hda_nid_t pin = spec->autocfg.speaker_pins[i];
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003873 unsigned int wcaps = get_wcaps(codec, pin);
Richard Fish160ea0d2006-09-06 13:58:25 +02003874 wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
3875 if (wcaps == AC_WCAP_OUT_AMP)
3876 /* found a mono speaker with an amp, must be lfe */
3877 lfe_pin = pin;
3878 }
3879
3880 /* if speaker_outs is 0, then speakers may be in line_outs */
3881 if (lfe_pin == 0 && spec->autocfg.speaker_outs == 0) {
3882 for (i = 0; i < spec->autocfg.line_outs && lfe_pin == 0x0; i++) {
3883 hda_nid_t pin = spec->autocfg.line_out_pins[i];
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003884 unsigned int defcfg;
Takashi Iwai330ee992009-02-20 14:33:36 +01003885 defcfg = snd_hda_codec_get_pincfg(codec, pin);
Harvey Harrison8b551782008-02-29 11:56:48 +01003886 if (get_defcfg_device(defcfg) == AC_JACK_SPEAKER) {
Takashi Iwai64ed0df2008-02-29 11:57:53 +01003887 unsigned int wcaps = get_wcaps(codec, pin);
Richard Fish160ea0d2006-09-06 13:58:25 +02003888 wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
3889 if (wcaps == AC_WCAP_OUT_AMP)
3890 /* found a mono speaker with an amp,
3891 must be lfe */
3892 lfe_pin = pin;
3893 }
3894 }
3895 }
3896
3897 if (lfe_pin) {
Takashi Iwai7c7767e2009-01-20 15:28:38 +01003898 err = create_controls(codec, "LFE", lfe_pin, 1);
Richard Fish160ea0d2006-09-06 13:58:25 +02003899 if (err < 0)
3900 return err;
3901 }
3902
3903 return 0;
3904}
3905
Mattc7d4b2f2005-06-27 14:59:41 +02003906static int stac9200_parse_auto_config(struct hda_codec *codec)
3907{
3908 struct sigmatel_spec *spec = codec->spec;
3909 int err;
3910
Kailang Yangdf694da2005-12-05 19:42:22 +01003911 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
Mattc7d4b2f2005-06-27 14:59:41 +02003912 return err;
3913
3914 if ((err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg)) < 0)
3915 return err;
3916
Takashi Iwai82bc9552006-03-21 11:24:42 +01003917 if ((err = stac9200_auto_create_hp_ctls(codec, &spec->autocfg)) < 0)
3918 return err;
3919
Richard Fish160ea0d2006-09-06 13:58:25 +02003920 if ((err = stac9200_auto_create_lfe_ctls(codec, &spec->autocfg)) < 0)
3921 return err;
3922
Takashi Iwai355a0ec2008-11-11 16:46:19 +01003923 if (spec->num_muxes > 0) {
3924 err = stac92xx_auto_create_mux_input_ctls(codec);
3925 if (err < 0)
3926 return err;
3927 }
3928
Takashi Iwaie3c75962009-01-23 11:57:22 +01003929 err = stac92xx_add_input_source(spec);
3930 if (err < 0)
3931 return err;
3932
Takashi Iwai0852d7a2009-02-11 11:35:15 +01003933 if (spec->autocfg.dig_outs)
Mattc7d4b2f2005-06-27 14:59:41 +02003934 spec->multiout.dig_out_nid = 0x05;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003935 if (spec->autocfg.dig_in_pin)
Mattc7d4b2f2005-06-27 14:59:41 +02003936 spec->dig_in_nid = 0x04;
Mattc7d4b2f2005-06-27 14:59:41 +02003937
Takashi Iwai603c4012008-07-30 15:01:44 +02003938 if (spec->kctls.list)
3939 spec->mixers[spec->num_mixers++] = spec->kctls.list;
Mattc7d4b2f2005-06-27 14:59:41 +02003940
3941 spec->input_mux = &spec->private_imux;
Matt Porter8b657272006-10-26 17:12:59 +02003942 spec->dinput_mux = &spec->private_dimux;
Mattc7d4b2f2005-06-27 14:59:41 +02003943
3944 return 1;
3945}
3946
Sam Revitch62fe78e2006-05-10 15:09:17 +02003947/*
3948 * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
3949 * funky external mute control using GPIO pins.
3950 */
3951
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003952static void stac_gpio_set(struct hda_codec *codec, unsigned int mask,
Matthew Ranostay4fe51952008-01-29 15:28:44 +01003953 unsigned int dir_mask, unsigned int data)
Sam Revitch62fe78e2006-05-10 15:09:17 +02003954{
3955 unsigned int gpiostate, gpiomask, gpiodir;
3956
3957 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
3958 AC_VERB_GET_GPIO_DATA, 0);
Matthew Ranostay4fe51952008-01-29 15:28:44 +01003959 gpiostate = (gpiostate & ~dir_mask) | (data & dir_mask);
Sam Revitch62fe78e2006-05-10 15:09:17 +02003960
3961 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
3962 AC_VERB_GET_GPIO_MASK, 0);
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003963 gpiomask |= mask;
Sam Revitch62fe78e2006-05-10 15:09:17 +02003964
3965 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
3966 AC_VERB_GET_GPIO_DIRECTION, 0);
Matthew Ranostay4fe51952008-01-29 15:28:44 +01003967 gpiodir |= dir_mask;
Sam Revitch62fe78e2006-05-10 15:09:17 +02003968
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003969 /* Configure GPIOx as CMOS */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003970 snd_hda_codec_write(codec, codec->afg, 0, 0x7e7, 0);
3971
3972 snd_hda_codec_write(codec, codec->afg, 0,
3973 AC_VERB_SET_GPIO_MASK, gpiomask);
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003974 snd_hda_codec_read(codec, codec->afg, 0,
3975 AC_VERB_SET_GPIO_DIRECTION, gpiodir); /* sync */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003976
3977 msleep(1);
3978
Takashi Iwai76e1ddf2008-01-15 11:39:08 +01003979 snd_hda_codec_read(codec, codec->afg, 0,
3980 AC_VERB_SET_GPIO_DATA, gpiostate); /* sync */
Sam Revitch62fe78e2006-05-10 15:09:17 +02003981}
3982
Takashi Iwai8c8145b2009-06-22 17:00:38 +02003983#ifdef CONFIG_SND_HDA_INPUT_JACK
Takashi Iwai95c09092009-04-14 16:15:29 +02003984static void stac92xx_free_jack_priv(struct snd_jack *jack)
3985{
3986 struct sigmatel_jack *jacks = jack->private_data;
3987 jacks->nid = 0;
3988 jacks->jack = NULL;
3989}
3990#endif
3991
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003992static int stac92xx_add_jack(struct hda_codec *codec,
3993 hda_nid_t nid, int type)
3994{
Takashi Iwai8c8145b2009-06-22 17:00:38 +02003995#ifdef CONFIG_SND_HDA_INPUT_JACK
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003996 struct sigmatel_spec *spec = codec->spec;
3997 struct sigmatel_jack *jack;
Takashi Iwai330ee992009-02-20 14:33:36 +01003998 int def_conf = snd_hda_codec_get_pincfg(codec, nid);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04003999 int connectivity = get_defcfg_connect(def_conf);
4000 char name[32];
Takashi Iwai95c09092009-04-14 16:15:29 +02004001 int err;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004002
4003 if (connectivity && connectivity != AC_JACK_PORT_FIXED)
4004 return 0;
4005
4006 snd_array_init(&spec->jacks, sizeof(*jack), 32);
4007 jack = snd_array_new(&spec->jacks);
4008 if (!jack)
4009 return -ENOMEM;
4010 jack->nid = nid;
4011 jack->type = type;
4012
Takashi Iwai86de7412009-07-22 16:02:46 +02004013 snprintf(name, sizeof(name), "%s at %s %s Jack",
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004014 snd_hda_get_jack_type(def_conf),
4015 snd_hda_get_jack_connectivity(def_conf),
4016 snd_hda_get_jack_location(def_conf));
4017
Takashi Iwai95c09092009-04-14 16:15:29 +02004018 err = snd_jack_new(codec->bus->card, name, type, &jack->jack);
4019 if (err < 0) {
4020 jack->nid = 0;
4021 return err;
4022 }
4023 jack->jack->private_data = jack;
4024 jack->jack->private_free = stac92xx_free_jack_priv;
Takashi Iwaie4973e12008-11-18 09:32:42 +01004025#endif
Takashi Iwai95c09092009-04-14 16:15:29 +02004026 return 0;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004027}
4028
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004029static int stac_add_event(struct sigmatel_spec *spec, hda_nid_t nid,
4030 unsigned char type, int data)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004031{
4032 struct sigmatel_event *event;
4033
4034 snd_array_init(&spec->events, sizeof(*event), 32);
4035 event = snd_array_new(&spec->events);
4036 if (!event)
4037 return -ENOMEM;
4038 event->nid = nid;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004039 event->type = type;
4040 event->tag = spec->events.used;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004041 event->data = data;
4042
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004043 return event->tag;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004044}
4045
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004046static struct sigmatel_event *stac_get_event(struct hda_codec *codec,
Takashi Iwai62558ce2009-07-29 14:23:09 +02004047 hda_nid_t nid)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004048{
4049 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004050 struct sigmatel_event *event = spec->events.list;
4051 int i;
4052
4053 for (i = 0; i < spec->events.used; i++, event++) {
Takashi Iwai62558ce2009-07-29 14:23:09 +02004054 if (event->nid == nid)
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004055 return event;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004056 }
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004057 return NULL;
4058}
4059
4060static struct sigmatel_event *stac_get_event_from_tag(struct hda_codec *codec,
4061 unsigned char tag)
4062{
4063 struct sigmatel_spec *spec = codec->spec;
4064 struct sigmatel_event *event = spec->events.list;
4065 int i;
4066
4067 for (i = 0; i < spec->events.used; i++, event++) {
4068 if (event->tag == tag)
4069 return event;
4070 }
4071 return NULL;
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004072}
4073
Takashi Iwai62558ce2009-07-29 14:23:09 +02004074/* check if given nid is a valid pin and no other events are assigned
4075 * to it. If OK, assign the event, set the unsol flag, and returns 1.
4076 * Otherwise, returns zero.
4077 */
4078static int enable_pin_detect(struct hda_codec *codec, hda_nid_t nid,
4079 unsigned int type)
Takashi Iwai314634b2006-09-21 11:56:18 +02004080{
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004081 struct sigmatel_event *event;
4082 int tag;
4083
4084 if (!(get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP))
Takashi Iwai62558ce2009-07-29 14:23:09 +02004085 return 0;
4086 event = stac_get_event(codec, nid);
4087 if (event) {
4088 if (event->type != type)
4089 return 0;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004090 tag = event->tag;
Takashi Iwai62558ce2009-07-29 14:23:09 +02004091 } else {
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004092 tag = stac_add_event(codec->spec, nid, type, 0);
Takashi Iwai62558ce2009-07-29 14:23:09 +02004093 if (tag < 0)
4094 return 0;
4095 }
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004096 snd_hda_codec_write_cache(codec, nid, 0,
4097 AC_VERB_SET_UNSOLICITED_ENABLE,
4098 AC_USRSP_EN | tag);
Takashi Iwai62558ce2009-07-29 14:23:09 +02004099 return 1;
Takashi Iwai314634b2006-09-21 11:56:18 +02004100}
4101
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004102static int is_nid_hp_pin(struct auto_pin_cfg *cfg, hda_nid_t nid)
4103{
4104 int i;
4105 for (i = 0; i < cfg->hp_outs; i++)
4106 if (cfg->hp_pins[i] == nid)
4107 return 1; /* nid is a HP-Out */
4108
4109 return 0; /* nid is not a HP-Out */
4110};
4111
Matthew Ranostayb76c8502008-02-06 14:49:44 +01004112static void stac92xx_power_down(struct hda_codec *codec)
4113{
4114 struct sigmatel_spec *spec = codec->spec;
4115
4116 /* power down inactive DACs */
4117 hda_nid_t *dac;
4118 for (dac = spec->dac_list; *dac; dac++)
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004119 if (!check_all_dac_nids(spec, *dac))
Takashi Iwai8c2f7672008-12-01 11:54:35 +01004120 snd_hda_codec_write(codec, *dac, 0,
Matthew Ranostayb76c8502008-02-06 14:49:44 +01004121 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
4122}
4123
Takashi Iwaif73d3582008-11-25 08:21:51 +01004124static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
4125 int enable);
4126
Takashi Iwai6565e4f2009-03-02 14:38:35 +01004127/* override some hints from the hwdep entry */
4128static void stac_store_hints(struct hda_codec *codec)
4129{
4130 struct sigmatel_spec *spec = codec->spec;
4131 const char *p;
4132 int val;
4133
4134 val = snd_hda_get_bool_hint(codec, "hp_detect");
4135 if (val >= 0)
4136 spec->hp_detect = val;
4137 p = snd_hda_get_hint(codec, "gpio_mask");
4138 if (p) {
4139 spec->gpio_mask = simple_strtoul(p, NULL, 0);
4140 spec->eapd_mask = spec->gpio_dir = spec->gpio_data =
4141 spec->gpio_mask;
4142 }
4143 p = snd_hda_get_hint(codec, "gpio_dir");
4144 if (p)
4145 spec->gpio_dir = simple_strtoul(p, NULL, 0) & spec->gpio_mask;
4146 p = snd_hda_get_hint(codec, "gpio_data");
4147 if (p)
4148 spec->gpio_data = simple_strtoul(p, NULL, 0) & spec->gpio_mask;
4149 p = snd_hda_get_hint(codec, "eapd_mask");
4150 if (p)
4151 spec->eapd_mask = simple_strtoul(p, NULL, 0) & spec->gpio_mask;
4152 val = snd_hda_get_bool_hint(codec, "eapd_switch");
4153 if (val >= 0)
4154 spec->eapd_switch = val;
4155}
4156
Mattc7d4b2f2005-06-27 14:59:41 +02004157static int stac92xx_init(struct hda_codec *codec)
4158{
4159 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai82bc9552006-03-21 11:24:42 +01004160 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaif73d3582008-11-25 08:21:51 +01004161 unsigned int gpio;
Takashi Iwaie4973e12008-11-18 09:32:42 +01004162 int i;
Mattc7d4b2f2005-06-27 14:59:41 +02004163
Mattc7d4b2f2005-06-27 14:59:41 +02004164 snd_hda_sequence_write(codec, spec->init);
4165
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004166 /* power down adcs initially */
4167 if (spec->powerdown_adcs)
4168 for (i = 0; i < spec->num_adcs; i++)
Takashi Iwai8c2f7672008-12-01 11:54:35 +01004169 snd_hda_codec_write(codec,
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02004170 spec->adc_nids[i], 0,
4171 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004172
Takashi Iwai6565e4f2009-03-02 14:38:35 +01004173 /* override some hints */
4174 stac_store_hints(codec);
4175
Takashi Iwaif73d3582008-11-25 08:21:51 +01004176 /* set up GPIO */
4177 gpio = spec->gpio_data;
4178 /* turn on EAPD statically when spec->eapd_switch isn't set.
4179 * otherwise, unsol event will turn it on/off dynamically
4180 */
4181 if (!spec->eapd_switch)
4182 gpio |= spec->eapd_mask;
4183 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, gpio);
4184
Takashi Iwai82bc9552006-03-21 11:24:42 +01004185 /* set up pins */
4186 if (spec->hp_detect) {
Takashi Iwai505cb342006-03-27 12:51:52 +02004187 /* Enable unsolicited responses on the HP widget */
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004188 for (i = 0; i < cfg->hp_outs; i++) {
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004189 hda_nid_t nid = cfg->hp_pins[i];
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004190 enable_pin_detect(codec, nid, STAC_HP_EVENT);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004191 }
Takashi Iwai1c4bdf92009-08-13 08:23:24 +02004192 if (cfg->line_out_type == AUTO_PIN_LINE_OUT &&
4193 cfg->speaker_outs > 0) {
Takashi Iwaifefd67f2009-07-30 18:03:05 +02004194 /* enable pin-detect for line-outs as well */
Takashi Iwai15cfa2b2009-08-03 14:23:33 +02004195 for (i = 0; i < cfg->line_outs; i++) {
4196 hda_nid_t nid = cfg->line_out_pins[i];
Takashi Iwaifefd67f2009-07-30 18:03:05 +02004197 enable_pin_detect(codec, nid, STAC_LO_EVENT);
4198 }
4199 }
4200
Takashi Iwai0a07aca2007-03-13 10:40:23 +01004201 /* force to enable the first line-out; the others are set up
4202 * in unsol_event
4203 */
4204 stac92xx_auto_set_pinctl(codec, spec->autocfg.line_out_pins[0],
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004205 AC_PINCTL_OUT_EN);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004206 /* fake event to set up pins */
Takashi Iwai5f380eb2009-09-14 15:36:14 +02004207 if (cfg->hp_pins[0])
4208 stac_issue_unsol_event(codec, cfg->hp_pins[0]);
4209 else if (cfg->line_out_pins[0])
4210 stac_issue_unsol_event(codec, cfg->line_out_pins[0]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004211 } else {
4212 stac92xx_auto_init_multi_out(codec);
4213 stac92xx_auto_init_hp_out(codec);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004214 for (i = 0; i < cfg->hp_outs; i++)
4215 stac_toggle_power_map(codec, cfg->hp_pins[i], 1);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004216 }
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02004217 if (spec->auto_mic) {
Takashi Iwai15b4f292009-07-29 16:32:55 +02004218 /* initialize connection to analog input */
Takashi Iwaida2a2aa2009-08-10 07:44:09 +02004219 if (spec->dmux_nids)
4220 snd_hda_codec_write_cache(codec, spec->dmux_nids[0], 0,
Takashi Iwai15b4f292009-07-29 16:32:55 +02004221 AC_VERB_SET_CONNECT_SEL, 0);
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02004222 if (enable_pin_detect(codec, spec->ext_mic.pin, STAC_MIC_EVENT))
4223 stac_issue_unsol_event(codec, spec->ext_mic.pin);
4224 }
Takashi Iwai82bc9552006-03-21 11:24:42 +01004225 for (i = 0; i < AUTO_PIN_LAST; i++) {
Takashi Iwaic960a032006-03-23 17:06:28 +01004226 hda_nid_t nid = cfg->input_pins[i];
4227 if (nid) {
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004228 unsigned int pinctl, conf;
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004229 if (i == AUTO_PIN_MIC || i == AUTO_PIN_FRONT_MIC) {
4230 /* for mic pins, force to initialize */
Nickolas Lloyd7c922de2009-06-01 11:12:29 +02004231 pinctl = stac92xx_get_default_vref(codec, nid);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004232 pinctl |= AC_PINCTL_IN_EN;
4233 stac92xx_auto_set_pinctl(codec, nid, pinctl);
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004234 } else {
4235 pinctl = snd_hda_codec_read(codec, nid, 0,
4236 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4237 /* if PINCTL already set then skip */
Takashi Iwai5dd17cb92009-05-07 16:22:53 +02004238 /* Also, if both INPUT and OUTPUT are set,
4239 * it must be a BIOS bug; need to override, too
4240 */
4241 if (!(pinctl & AC_PINCTL_IN_EN) ||
4242 (pinctl & AC_PINCTL_OUT_EN)) {
4243 pinctl &= ~AC_PINCTL_OUT_EN;
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004244 pinctl |= AC_PINCTL_IN_EN;
4245 stac92xx_auto_set_pinctl(codec, nid,
4246 pinctl);
4247 }
Takashi Iwai4f1e6bc2008-11-11 16:47:24 +01004248 }
Takashi Iwai330ee992009-02-20 14:33:36 +01004249 conf = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004250 if (get_defcfg_connect(conf) != AC_JACK_PORT_FIXED) {
Takashi Iwai62558ce2009-07-29 14:23:09 +02004251 if (enable_pin_detect(codec, nid,
4252 STAC_INSERT_EVENT))
4253 stac_issue_unsol_event(codec, nid);
Takashi Iwai12dde4c2008-12-05 13:09:27 +01004254 }
Takashi Iwaic960a032006-03-23 17:06:28 +01004255 }
Takashi Iwai82bc9552006-03-21 11:24:42 +01004256 }
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004257 for (i = 0; i < spec->num_dmics; i++)
4258 stac92xx_auto_set_pinctl(codec, spec->dmic_nids[i],
4259 AC_PINCTL_IN_EN);
Takashi Iwai0852d7a2009-02-11 11:35:15 +01004260 if (cfg->dig_out_pins[0])
4261 stac92xx_auto_set_pinctl(codec, cfg->dig_out_pins[0],
Takashi Iwai82bc9552006-03-21 11:24:42 +01004262 AC_PINCTL_OUT_EN);
4263 if (cfg->dig_in_pin)
4264 stac92xx_auto_set_pinctl(codec, cfg->dig_in_pin,
4265 AC_PINCTL_IN_EN);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004266 for (i = 0; i < spec->num_pwrs; i++) {
4267 hda_nid_t nid = spec->pwr_nids[i];
4268 int pinctl, def_conf;
Takashi Iwai82bc9552006-03-21 11:24:42 +01004269
Takashi Iwaieb632122008-12-19 16:39:48 +01004270 /* power on when no jack detection is available */
4271 if (!spec->hp_detect) {
4272 stac_toggle_power_map(codec, nid, 1);
4273 continue;
4274 }
4275
4276 if (is_nid_hp_pin(cfg, nid))
Takashi Iwaif73d3582008-11-25 08:21:51 +01004277 continue; /* already has an unsol event */
Sam Revitch62fe78e2006-05-10 15:09:17 +02004278
Takashi Iwaif73d3582008-11-25 08:21:51 +01004279 pinctl = snd_hda_codec_read(codec, nid, 0,
4280 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4281 /* outputs are only ports capable of power management
4282 * any attempts on powering down a input port cause the
4283 * referenced VREF to act quirky.
4284 */
Takashi Iwaieb632122008-12-19 16:39:48 +01004285 if (pinctl & AC_PINCTL_IN_EN) {
4286 stac_toggle_power_map(codec, nid, 1);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004287 continue;
Takashi Iwaieb632122008-12-19 16:39:48 +01004288 }
Takashi Iwai330ee992009-02-20 14:33:36 +01004289 def_conf = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004290 def_conf = get_defcfg_connect(def_conf);
4291 /* skip any ports that don't have jacks since presence
4292 * detection is useless */
4293 if (def_conf != AC_JACK_PORT_COMPLEX) {
4294 if (def_conf != AC_JACK_PORT_NONE)
4295 stac_toggle_power_map(codec, nid, 1);
4296 continue;
4297 }
Takashi Iwai62558ce2009-07-29 14:23:09 +02004298 if (enable_pin_detect(codec, nid, STAC_PWR_EVENT))
4299 stac_issue_unsol_event(codec, nid);
Takashi Iwaif73d3582008-11-25 08:21:51 +01004300 }
4301 if (spec->dac_list)
4302 stac92xx_power_down(codec);
Mattc7d4b2f2005-06-27 14:59:41 +02004303 return 0;
4304}
4305
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004306static void stac92xx_free_jacks(struct hda_codec *codec)
4307{
Takashi Iwai8c8145b2009-06-22 17:00:38 +02004308#ifdef CONFIG_SND_HDA_INPUT_JACK
Takashi Iwaib94d3532008-11-21 09:08:06 +01004309 /* free jack instances manually when clearing/reconfiguring */
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004310 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaib94d3532008-11-21 09:08:06 +01004311 if (!codec->bus->shutdown && spec->jacks.list) {
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004312 struct sigmatel_jack *jacks = spec->jacks.list;
4313 int i;
Takashi Iwai95c09092009-04-14 16:15:29 +02004314 for (i = 0; i < spec->jacks.used; i++, jacks++) {
4315 if (jacks->jack)
4316 snd_device_free(codec->bus->card, jacks->jack);
4317 }
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004318 }
4319 snd_array_free(&spec->jacks);
Takashi Iwaie4973e12008-11-18 09:32:42 +01004320#endif
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004321}
4322
Takashi Iwai603c4012008-07-30 15:01:44 +02004323static void stac92xx_free_kctls(struct hda_codec *codec)
4324{
4325 struct sigmatel_spec *spec = codec->spec;
4326
4327 if (spec->kctls.list) {
4328 struct snd_kcontrol_new *kctl = spec->kctls.list;
4329 int i;
4330 for (i = 0; i < spec->kctls.used; i++)
4331 kfree(kctl[i].name);
4332 }
4333 snd_array_free(&spec->kctls);
4334}
4335
Takashi Iwai167eae52009-11-06 15:47:50 +01004336static void stac92xx_shutup(struct hda_codec *codec)
4337{
4338 struct sigmatel_spec *spec = codec->spec;
4339 int i;
4340 hda_nid_t nid;
4341
4342 /* reset each pin before powering down DAC/ADC to avoid click noise */
4343 nid = codec->start_nid;
4344 for (i = 0; i < codec->num_nodes; i++, nid++) {
4345 unsigned int wcaps = get_wcaps(codec, nid);
4346 unsigned int wid_type = get_wcaps_type(wcaps);
4347 if (wid_type == AC_WID_PIN)
4348 snd_hda_codec_read(codec, nid, 0,
4349 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
4350 }
4351
4352 if (spec->eapd_mask)
4353 stac_gpio_set(codec, spec->gpio_mask,
4354 spec->gpio_dir, spec->gpio_data &
4355 ~spec->eapd_mask);
4356}
4357
Matt2f2f4252005-04-13 14:45:30 +02004358static void stac92xx_free(struct hda_codec *codec)
4359{
Mattc7d4b2f2005-06-27 14:59:41 +02004360 struct sigmatel_spec *spec = codec->spec;
Mattc7d4b2f2005-06-27 14:59:41 +02004361
4362 if (! spec)
4363 return;
4364
Takashi Iwai167eae52009-11-06 15:47:50 +01004365 stac92xx_shutup(codec);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004366 stac92xx_free_jacks(codec);
4367 snd_array_free(&spec->events);
Richard Fish11b44bb2006-08-23 18:31:34 +02004368
Mattc7d4b2f2005-06-27 14:59:41 +02004369 kfree(spec);
Matthew Ranostay1cd22242008-07-18 18:20:52 +02004370 snd_hda_detach_beep_device(codec);
Matt2f2f4252005-04-13 14:45:30 +02004371}
4372
Matt4e550962005-07-04 17:51:39 +02004373static void stac92xx_set_pinctl(struct hda_codec *codec, hda_nid_t nid,
4374 unsigned int flag)
4375{
Takashi Iwai8ce84192009-01-22 16:59:20 +01004376 unsigned int old_ctl, pin_ctl;
4377
4378 pin_ctl = snd_hda_codec_read(codec, nid,
Matt4e550962005-07-04 17:51:39 +02004379 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
Steve Longerbeam7b043892007-05-03 20:50:03 +02004380
Takashi Iwaif9acba42007-05-29 18:01:06 +02004381 if (pin_ctl & AC_PINCTL_IN_EN) {
4382 /*
4383 * we need to check the current set-up direction of
4384 * shared input pins since they can be switched via
4385 * "xxx as Output" mixer switch
4386 */
4387 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004388 if (nid == spec->line_switch || nid == spec->mic_switch)
Takashi Iwaif9acba42007-05-29 18:01:06 +02004389 return;
4390 }
4391
Takashi Iwai8ce84192009-01-22 16:59:20 +01004392 old_ctl = pin_ctl;
Steve Longerbeam7b043892007-05-03 20:50:03 +02004393 /* if setting pin direction bits, clear the current
4394 direction bits first */
4395 if (flag & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN))
4396 pin_ctl &= ~(AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
4397
Takashi Iwai8ce84192009-01-22 16:59:20 +01004398 pin_ctl |= flag;
4399 if (old_ctl != pin_ctl)
4400 snd_hda_codec_write_cache(codec, nid, 0,
4401 AC_VERB_SET_PIN_WIDGET_CONTROL,
4402 pin_ctl);
Matt4e550962005-07-04 17:51:39 +02004403}
4404
4405static void stac92xx_reset_pinctl(struct hda_codec *codec, hda_nid_t nid,
4406 unsigned int flag)
4407{
4408 unsigned int pin_ctl = snd_hda_codec_read(codec, nid,
4409 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
Takashi Iwai8ce84192009-01-22 16:59:20 +01004410 if (pin_ctl & flag)
4411 snd_hda_codec_write_cache(codec, nid, 0,
4412 AC_VERB_SET_PIN_WIDGET_CONTROL,
4413 pin_ctl & ~flag);
Matt4e550962005-07-04 17:51:39 +02004414}
4415
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004416static int get_pin_presence(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwai314634b2006-09-21 11:56:18 +02004417{
4418 if (!nid)
4419 return 0;
4420 if (snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PIN_SENSE, 0x00)
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004421 & (1 << 31))
4422 return 1;
Takashi Iwai314634b2006-09-21 11:56:18 +02004423 return 0;
4424}
4425
Takashi Iwaifefd67f2009-07-30 18:03:05 +02004426static void stac92xx_line_out_detect(struct hda_codec *codec,
4427 int presence)
4428{
4429 struct sigmatel_spec *spec = codec->spec;
4430 struct auto_pin_cfg *cfg = &spec->autocfg;
4431 int i;
4432
4433 for (i = 0; i < cfg->line_outs; i++) {
4434 if (presence)
4435 break;
4436 presence = get_pin_presence(codec, cfg->line_out_pins[i]);
4437 if (presence) {
4438 unsigned int pinctl;
4439 pinctl = snd_hda_codec_read(codec,
4440 cfg->line_out_pins[i], 0,
4441 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4442 if (pinctl & AC_PINCTL_IN_EN)
4443 presence = 0; /* mic- or line-input */
4444 }
4445 }
4446
4447 if (presence) {
4448 /* disable speakers */
4449 for (i = 0; i < cfg->speaker_outs; i++)
4450 stac92xx_reset_pinctl(codec, cfg->speaker_pins[i],
4451 AC_PINCTL_OUT_EN);
4452 if (spec->eapd_mask && spec->eapd_switch)
4453 stac_gpio_set(codec, spec->gpio_mask,
4454 spec->gpio_dir, spec->gpio_data &
4455 ~spec->eapd_mask);
4456 } else {
4457 /* enable speakers */
4458 for (i = 0; i < cfg->speaker_outs; i++)
4459 stac92xx_set_pinctl(codec, cfg->speaker_pins[i],
4460 AC_PINCTL_OUT_EN);
4461 if (spec->eapd_mask && spec->eapd_switch)
4462 stac_gpio_set(codec, spec->gpio_mask,
4463 spec->gpio_dir, spec->gpio_data |
4464 spec->eapd_mask);
4465 }
4466}
4467
Takashi Iwaid7a89432008-11-12 09:48:04 +01004468/* return non-zero if the hp-pin of the given array index isn't
4469 * a jack-detection target
4470 */
4471static int no_hp_sensing(struct sigmatel_spec *spec, int i)
4472{
4473 struct auto_pin_cfg *cfg = &spec->autocfg;
4474
4475 /* ignore sensing of shared line and mic jacks */
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004476 if (cfg->hp_pins[i] == spec->line_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004477 return 1;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004478 if (cfg->hp_pins[i] == spec->mic_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004479 return 1;
4480 /* ignore if the pin is set as line-out */
4481 if (cfg->hp_pins[i] == spec->hp_switch)
4482 return 1;
4483 return 0;
4484}
4485
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004486static void stac92xx_hp_detect(struct hda_codec *codec)
Matt4e550962005-07-04 17:51:39 +02004487{
4488 struct sigmatel_spec *spec = codec->spec;
4489 struct auto_pin_cfg *cfg = &spec->autocfg;
4490 int i, presence;
4491
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004492 presence = 0;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01004493 if (spec->gpio_mute)
4494 presence = !(snd_hda_codec_read(codec, codec->afg, 0,
4495 AC_VERB_GET_GPIO_DATA, 0) & spec->gpio_mute);
4496
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004497 for (i = 0; i < cfg->hp_outs; i++) {
Takashi Iwai314634b2006-09-21 11:56:18 +02004498 if (presence)
4499 break;
Takashi Iwaid7a89432008-11-12 09:48:04 +01004500 if (no_hp_sensing(spec, i))
4501 continue;
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004502 presence = get_pin_presence(codec, cfg->hp_pins[i]);
4503 if (presence) {
4504 unsigned int pinctl;
4505 pinctl = snd_hda_codec_read(codec, cfg->hp_pins[i], 0,
4506 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4507 if (pinctl & AC_PINCTL_IN_EN)
4508 presence = 0; /* mic- or line-input */
4509 }
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004510 }
Matt4e550962005-07-04 17:51:39 +02004511
4512 if (presence) {
Takashi Iwaid7a89432008-11-12 09:48:04 +01004513 /* disable lineouts */
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02004514 if (spec->hp_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004515 stac92xx_reset_pinctl(codec, spec->hp_switch,
4516 AC_PINCTL_OUT_EN);
Matt4e550962005-07-04 17:51:39 +02004517 for (i = 0; i < cfg->line_outs; i++)
4518 stac92xx_reset_pinctl(codec, cfg->line_out_pins[i],
4519 AC_PINCTL_OUT_EN);
Matt4e550962005-07-04 17:51:39 +02004520 } else {
Takashi Iwaid7a89432008-11-12 09:48:04 +01004521 /* enable lineouts */
Matthew Ranostay7c2ba972008-04-16 13:13:59 +02004522 if (spec->hp_switch)
Takashi Iwaid7a89432008-11-12 09:48:04 +01004523 stac92xx_set_pinctl(codec, spec->hp_switch,
4524 AC_PINCTL_OUT_EN);
Matt4e550962005-07-04 17:51:39 +02004525 for (i = 0; i < cfg->line_outs; i++)
4526 stac92xx_set_pinctl(codec, cfg->line_out_pins[i],
4527 AC_PINCTL_OUT_EN);
Matt4e550962005-07-04 17:51:39 +02004528 }
Takashi Iwaifefd67f2009-07-30 18:03:05 +02004529 stac92xx_line_out_detect(codec, presence);
Takashi Iwaid7a89432008-11-12 09:48:04 +01004530 /* toggle hp outs */
4531 for (i = 0; i < cfg->hp_outs; i++) {
4532 unsigned int val = AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN;
4533 if (no_hp_sensing(spec, i))
4534 continue;
4535 if (presence)
4536 stac92xx_set_pinctl(codec, cfg->hp_pins[i], val);
Takashi Iwai8317e0b2009-01-14 07:56:51 +01004537#if 0 /* FIXME */
4538/* Resetting the pinctl like below may lead to (a sort of) regressions
4539 * on some devices since they use the HP pin actually for line/speaker
4540 * outs although the default pin config shows a different pin (that is
4541 * wrong and useless).
4542 *
4543 * So, it's basically a problem of default pin configs, likely a BIOS issue.
4544 * But, disabling the code below just works around it, and I'm too tired of
4545 * bug reports with such devices...
4546 */
Takashi Iwaid7a89432008-11-12 09:48:04 +01004547 else
4548 stac92xx_reset_pinctl(codec, cfg->hp_pins[i], val);
Takashi Iwai8317e0b2009-01-14 07:56:51 +01004549#endif /* FIXME */
Takashi Iwaid7a89432008-11-12 09:48:04 +01004550 }
Matt4e550962005-07-04 17:51:39 +02004551}
4552
Takashi Iwaif73d3582008-11-25 08:21:51 +01004553static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
4554 int enable)
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004555{
4556 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaif73d3582008-11-25 08:21:51 +01004557 unsigned int idx, val;
4558
4559 for (idx = 0; idx < spec->num_pwrs; idx++) {
4560 if (spec->pwr_nids[idx] == nid)
4561 break;
4562 }
4563 if (idx >= spec->num_pwrs)
4564 return;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02004565
4566 /* several codecs have two power down bits */
4567 if (spec->pwr_mapping)
4568 idx = spec->pwr_mapping[idx];
4569 else
4570 idx = 1 << idx;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004571
Takashi Iwaif73d3582008-11-25 08:21:51 +01004572 val = snd_hda_codec_read(codec, codec->afg, 0, 0x0fec, 0x0) & 0xff;
4573 if (enable)
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004574 val &= ~idx;
4575 else
4576 val |= idx;
4577
4578 /* power down unused output ports */
4579 snd_hda_codec_write(codec, codec->afg, 0, 0x7ec, val);
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004580}
4581
Takashi Iwaif73d3582008-11-25 08:21:51 +01004582static void stac92xx_pin_sense(struct hda_codec *codec, hda_nid_t nid)
4583{
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004584 stac_toggle_power_map(codec, nid, get_pin_presence(codec, nid));
Takashi Iwaif73d3582008-11-25 08:21:51 +01004585}
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004586
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004587static void stac92xx_report_jack(struct hda_codec *codec, hda_nid_t nid)
4588{
4589 struct sigmatel_spec *spec = codec->spec;
4590 struct sigmatel_jack *jacks = spec->jacks.list;
4591
4592 if (jacks) {
4593 int i;
4594 for (i = 0; i < spec->jacks.used; i++) {
4595 if (jacks->nid == nid) {
4596 unsigned int pin_ctl =
4597 snd_hda_codec_read(codec, nid,
4598 0, AC_VERB_GET_PIN_WIDGET_CONTROL,
4599 0x00);
4600 int type = jacks->type;
4601 if (type == (SND_JACK_LINEOUT
4602 | SND_JACK_HEADPHONE))
4603 type = (pin_ctl & AC_PINCTL_HP_EN)
4604 ? SND_JACK_HEADPHONE : SND_JACK_LINEOUT;
4605 snd_jack_report(jacks->jack,
Takashi Iwaie6e3ea22008-12-05 12:54:56 +01004606 get_pin_presence(codec, nid)
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004607 ? type : 0);
4608 }
4609 jacks++;
4610 }
4611 }
4612}
Matt2f2f4252005-04-13 14:45:30 +02004613
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02004614static void stac92xx_mic_detect(struct hda_codec *codec)
4615{
4616 struct sigmatel_spec *spec = codec->spec;
4617 struct sigmatel_mic_route *mic;
4618
4619 if (get_pin_presence(codec, spec->ext_mic.pin))
4620 mic = &spec->ext_mic;
4621 else
4622 mic = &spec->int_mic;
Takashi Iwai02d33322009-10-01 16:38:11 +02004623 if (mic->dmux_idx >= 0)
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02004624 snd_hda_codec_write_cache(codec, spec->dmux_nids[0], 0,
4625 AC_VERB_SET_CONNECT_SEL,
4626 mic->dmux_idx);
Takashi Iwai02d33322009-10-01 16:38:11 +02004627 if (mic->mux_idx >= 0)
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02004628 snd_hda_codec_write_cache(codec, spec->mux_nids[0], 0,
4629 AC_VERB_SET_CONNECT_SEL,
4630 mic->mux_idx);
4631}
4632
Takashi Iwai62558ce2009-07-29 14:23:09 +02004633static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004634{
Takashi Iwai62558ce2009-07-29 14:23:09 +02004635 struct sigmatel_event *event = stac_get_event(codec, nid);
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004636 if (!event)
4637 return;
4638 codec->patch_ops.unsol_event(codec, (unsigned)event->tag << 26);
4639}
4640
Takashi Iwai314634b2006-09-21 11:56:18 +02004641static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res)
4642{
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004643 struct sigmatel_spec *spec = codec->spec;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004644 struct sigmatel_event *event;
4645 int tag, data;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004646
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004647 tag = (res >> 26) & 0x7f;
4648 event = stac_get_event_from_tag(codec, tag);
4649 if (!event)
4650 return;
4651
4652 switch (event->type) {
Takashi Iwai314634b2006-09-21 11:56:18 +02004653 case STAC_HP_EVENT:
Takashi Iwaifefd67f2009-07-30 18:03:05 +02004654 case STAC_LO_EVENT:
Takashi Iwai16ffe322009-08-04 13:40:54 +02004655 stac92xx_hp_detect(codec);
Takashi Iwaifefd67f2009-07-30 18:03:05 +02004656 break;
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02004657 case STAC_MIC_EVENT:
4658 stac92xx_mic_detect(codec);
4659 break;
4660 }
4661
4662 switch (event->type) {
4663 case STAC_HP_EVENT:
Takashi Iwaifefd67f2009-07-30 18:03:05 +02004664 case STAC_LO_EVENT:
Takashi Iwai3d21d3f2009-07-29 14:32:56 +02004665 case STAC_MIC_EVENT:
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04004666 case STAC_INSERT_EVENT:
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004667 case STAC_PWR_EVENT:
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004668 if (spec->num_pwrs > 0)
4669 stac92xx_pin_sense(codec, event->nid);
4670 stac92xx_report_jack(codec, event->nid);
Matthew Ranostayfd60cc82009-04-06 09:30:46 -04004671
4672 switch (codec->subsystem_id) {
4673 case 0x103c308f:
4674 if (event->nid == 0xb) {
4675 int pin = AC_PINCTL_IN_EN;
4676
4677 if (get_pin_presence(codec, 0xa)
4678 && get_pin_presence(codec, 0xb))
4679 pin |= AC_PINCTL_VREF_80;
4680 if (!get_pin_presence(codec, 0xb))
4681 pin |= AC_PINCTL_VREF_80;
4682
4683 /* toggle VREF state based on mic + hp pin
4684 * status
4685 */
4686 stac92xx_auto_set_pinctl(codec, 0x0a, pin);
4687 }
4688 }
Matthew Ranostay72474be2008-10-09 09:32:17 -04004689 break;
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004690 case STAC_VREF_EVENT:
4691 data = snd_hda_codec_read(codec, codec->afg, 0,
4692 AC_VERB_GET_GPIO_DATA, 0);
Matthew Ranostay72474be2008-10-09 09:32:17 -04004693 /* toggle VREF state based on GPIOx status */
4694 snd_hda_codec_write(codec, codec->afg, 0, 0x7e0,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01004695 !!(data & (1 << event->data)));
Matthew Ranostay72474be2008-10-09 09:32:17 -04004696 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02004697 }
4698}
4699
Randy Dunlap78987bd2009-11-05 09:22:30 -08004700static int hp_bseries_system(u32 subsystem_id)
4701{
4702 switch (subsystem_id) {
4703 case 0x103c307e:
4704 case 0x103c307f:
4705 case 0x103c3080:
4706 case 0x103c3081:
4707 case 0x103c1722:
4708 case 0x103c1723:
4709 case 0x103c1724:
4710 case 0x103c1725:
4711 case 0x103c1726:
4712 case 0x103c1727:
4713 case 0x103c1728:
4714 case 0x103c1729:
4715 return 1;
4716 }
4717 return 0;
4718}
4719
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01004720#ifdef CONFIG_PROC_FS
4721static void stac92hd_proc_hook(struct snd_info_buffer *buffer,
4722 struct hda_codec *codec, hda_nid_t nid)
4723{
4724 if (nid == codec->afg)
4725 snd_iprintf(buffer, "Power-Map: 0x%02x\n",
4726 snd_hda_codec_read(codec, nid, 0, 0x0fec, 0x0));
4727}
4728
4729static void analog_loop_proc_hook(struct snd_info_buffer *buffer,
4730 struct hda_codec *codec,
4731 unsigned int verb)
4732{
4733 snd_iprintf(buffer, "Analog Loopback: 0x%02x\n",
4734 snd_hda_codec_read(codec, codec->afg, 0, verb, 0));
4735}
4736
4737/* stac92hd71bxx, stac92hd73xx */
4738static void stac92hd7x_proc_hook(struct snd_info_buffer *buffer,
4739 struct hda_codec *codec, hda_nid_t nid)
4740{
4741 stac92hd_proc_hook(buffer, codec, nid);
4742 if (nid == codec->afg)
4743 analog_loop_proc_hook(buffer, codec, 0xfa0);
4744}
4745
4746static void stac9205_proc_hook(struct snd_info_buffer *buffer,
4747 struct hda_codec *codec, hda_nid_t nid)
4748{
4749 if (nid == codec->afg)
4750 analog_loop_proc_hook(buffer, codec, 0xfe0);
4751}
4752
4753static void stac927x_proc_hook(struct snd_info_buffer *buffer,
4754 struct hda_codec *codec, hda_nid_t nid)
4755{
4756 if (nid == codec->afg)
4757 analog_loop_proc_hook(buffer, codec, 0xfeb);
4758}
4759#else
4760#define stac92hd_proc_hook NULL
4761#define stac92hd7x_proc_hook NULL
4762#define stac9205_proc_hook NULL
4763#define stac927x_proc_hook NULL
4764#endif
4765
Takashi Iwaicb53c622007-08-10 17:21:45 +02004766#ifdef SND_HDA_NEEDS_RESUME
Mattff6fdc32005-06-27 15:06:52 +02004767static int stac92xx_resume(struct hda_codec *codec)
4768{
Takashi Iwaidc81bed2007-09-03 09:36:36 +02004769 struct sigmatel_spec *spec = codec->spec;
4770
Takashi Iwai2c885872008-11-18 09:36:55 +01004771 stac92xx_init(codec);
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004772 snd_hda_codec_resume_amp(codec);
4773 snd_hda_codec_resume_cache(codec);
Takashi Iwai2c885872008-11-18 09:36:55 +01004774 /* fake event to set up pins again to override cached values */
Takashi Iwai5f380eb2009-09-14 15:36:14 +02004775 if (spec->hp_detect) {
4776 if (spec->autocfg.hp_pins[0])
4777 stac_issue_unsol_event(codec, spec->autocfg.hp_pins[0]);
4778 else if (spec->autocfg.line_out_pins[0])
4779 stac_issue_unsol_event(codec,
4780 spec->autocfg.line_out_pins[0]);
4781 }
Mattff6fdc32005-06-27 15:06:52 +02004782 return 0;
4783}
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004784
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004785/*
James Gardiner514bf542009-05-03 04:00:44 -04004786 * using power check for controlling mute led of HP notebooks
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004787 * check for mute state only on Speakers (nid = 0x10)
4788 *
4789 * For this feature CONFIG_SND_HDA_POWER_SAVE is needed, otherwise
4790 * the LED is NOT working properly !
James Gardiner514bf542009-05-03 04:00:44 -04004791 *
4792 * Changed name to reflect that it now works for any designated
4793 * model, not just HP HDX.
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004794 */
4795
4796#ifdef CONFIG_SND_HDA_POWER_SAVE
James Gardiner514bf542009-05-03 04:00:44 -04004797static int stac92xx_hp_check_power_status(struct hda_codec *codec,
Takashi Iwai6fce61a2009-03-10 07:48:57 +01004798 hda_nid_t nid)
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004799{
4800 struct sigmatel_spec *spec = codec->spec;
Takashi Iwai6fce61a2009-03-10 07:48:57 +01004801
4802 if (nid == 0x10) {
4803 if (snd_hda_codec_amp_read(codec, nid, 0, HDA_OUTPUT, 0) &
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004804 HDA_AMP_MUTE)
Takashi Iwai86d190e2009-05-26 15:18:58 +02004805 spec->gpio_data &= ~spec->gpio_led; /* orange */
Takashi Iwaiba84bfc2009-05-30 08:59:03 +02004806 else
4807 spec->gpio_data |= spec->gpio_led; /* white */
Takashi Iwai6fce61a2009-03-10 07:48:57 +01004808
Vitaliy Kulikov5bdaaad2009-11-04 07:57:45 +01004809 if (hp_bseries_system(codec->subsystem_id)) {
4810 /* LED state is inverted on these systems */
4811 spec->gpio_data ^= spec->gpio_led;
4812 }
4813
Takashi Iwai6fce61a2009-03-10 07:48:57 +01004814 stac_gpio_set(codec, spec->gpio_mask,
4815 spec->gpio_dir,
Christoph Plattnerae6241f2009-03-08 23:19:05 +01004816 spec->gpio_data);
4817 }
4818
4819 return 0;
4820}
4821#endif
4822
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004823static int stac92xx_suspend(struct hda_codec *codec, pm_message_t state)
4824{
Takashi Iwai167eae52009-11-06 15:47:50 +01004825 stac92xx_shutup(codec);
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004826 return 0;
4827}
Mattff6fdc32005-06-27 15:06:52 +02004828#endif
4829
Matt2f2f4252005-04-13 14:45:30 +02004830static struct hda_codec_ops stac92xx_patch_ops = {
4831 .build_controls = stac92xx_build_controls,
4832 .build_pcms = stac92xx_build_pcms,
4833 .init = stac92xx_init,
4834 .free = stac92xx_free,
Matt4e550962005-07-04 17:51:39 +02004835 .unsol_event = stac92xx_unsol_event,
Takashi Iwaicb53c622007-08-10 17:21:45 +02004836#ifdef SND_HDA_NEEDS_RESUME
Matthew Ranostayc6798d22008-11-18 20:54:17 -05004837 .suspend = stac92xx_suspend,
Mattff6fdc32005-06-27 15:06:52 +02004838 .resume = stac92xx_resume,
4839#endif
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01004840 .reboot_notify = stac92xx_shutup,
Matt2f2f4252005-04-13 14:45:30 +02004841};
4842
4843static int patch_stac9200(struct hda_codec *codec)
4844{
4845 struct sigmatel_spec *spec;
Mattc7d4b2f2005-06-27 14:59:41 +02004846 int err;
Matt2f2f4252005-04-13 14:45:30 +02004847
Takashi Iwaie560d8d2005-09-09 14:21:46 +02004848 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Matt2f2f4252005-04-13 14:45:30 +02004849 if (spec == NULL)
4850 return -ENOMEM;
4851
4852 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02004853 spec->num_pins = ARRAY_SIZE(stac9200_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02004854 spec->pin_nids = stac9200_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004855 spec->board_config = snd_hda_check_board_config(codec, STAC_9200_MODELS,
4856 stac9200_models,
4857 stac9200_cfg_tbl);
Takashi Iwai330ee992009-02-20 14:33:36 +01004858 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02004859 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4860 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01004861 else
4862 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01004863 stac9200_brd_tbl[spec->board_config]);
Matt2f2f4252005-04-13 14:45:30 +02004864
4865 spec->multiout.max_channels = 2;
4866 spec->multiout.num_dacs = 1;
4867 spec->multiout.dac_nids = stac9200_dac_nids;
4868 spec->adc_nids = stac9200_adc_nids;
4869 spec->mux_nids = stac9200_mux_nids;
Mattdabbed62005-06-14 10:19:34 +02004870 spec->num_muxes = 1;
Matt Porter8b657272006-10-26 17:12:59 +02004871 spec->num_dmics = 0;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02004872 spec->num_adcs = 1;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004873 spec->num_pwrs = 0;
Mattc7d4b2f2005-06-27 14:59:41 +02004874
Mauro Carvalho Chehab58eec422008-08-11 10:18:39 +02004875 if (spec->board_config == STAC_9200_M4 ||
4876 spec->board_config == STAC_9200_M4_2 ||
Tobin Davisbf277782008-02-03 20:31:47 +01004877 spec->board_config == STAC_9200_OQO)
Takashi Iwai1194b5b2007-10-10 10:04:26 +02004878 spec->init = stac9200_eapd_init;
4879 else
4880 spec->init = stac9200_core_init;
Matt2f2f4252005-04-13 14:45:30 +02004881 spec->mixer = stac9200_mixer;
Mattc7d4b2f2005-06-27 14:59:41 +02004882
Takashi Iwai117f2572008-03-18 09:53:23 +01004883 if (spec->board_config == STAC_9200_PANASONIC) {
4884 spec->gpio_mask = spec->gpio_dir = 0x09;
4885 spec->gpio_data = 0x00;
4886 }
4887
Mattc7d4b2f2005-06-27 14:59:41 +02004888 err = stac9200_parse_auto_config(codec);
4889 if (err < 0) {
4890 stac92xx_free(codec);
4891 return err;
4892 }
Matt2f2f4252005-04-13 14:45:30 +02004893
Takashi Iwai2acc9dc2009-01-09 16:57:14 +01004894 /* CF-74 has no headphone detection, and the driver should *NOT*
4895 * do detection and HP/speaker toggle because the hardware does it.
4896 */
4897 if (spec->board_config == STAC_9200_PANASONIC)
4898 spec->hp_detect = 0;
4899
Matt2f2f4252005-04-13 14:45:30 +02004900 codec->patch_ops = stac92xx_patch_ops;
4901
4902 return 0;
4903}
4904
Tobin Davis8e21c342007-01-08 11:04:17 +01004905static int patch_stac925x(struct hda_codec *codec)
4906{
4907 struct sigmatel_spec *spec;
4908 int err;
4909
4910 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4911 if (spec == NULL)
4912 return -ENOMEM;
4913
4914 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02004915 spec->num_pins = ARRAY_SIZE(stac925x_pin_nids);
Tobin Davis8e21c342007-01-08 11:04:17 +01004916 spec->pin_nids = stac925x_pin_nids;
Mauro Carvalho Chehab9cb36c22008-08-11 10:18:39 +02004917
4918 /* Check first for codec ID */
4919 spec->board_config = snd_hda_check_board_codec_sid_config(codec,
4920 STAC_925x_MODELS,
4921 stac925x_models,
4922 stac925x_codec_id_cfg_tbl);
4923
4924 /* Now checks for PCI ID, if codec ID is not found */
4925 if (spec->board_config < 0)
4926 spec->board_config = snd_hda_check_board_config(codec,
4927 STAC_925x_MODELS,
Tobin Davis8e21c342007-01-08 11:04:17 +01004928 stac925x_models,
4929 stac925x_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01004930 again:
Takashi Iwai330ee992009-02-20 14:33:36 +01004931 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02004932 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4933 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01004934 else
4935 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01004936 stac925x_brd_tbl[spec->board_config]);
Tobin Davis8e21c342007-01-08 11:04:17 +01004937
4938 spec->multiout.max_channels = 2;
4939 spec->multiout.num_dacs = 1;
4940 spec->multiout.dac_nids = stac925x_dac_nids;
4941 spec->adc_nids = stac925x_adc_nids;
4942 spec->mux_nids = stac925x_mux_nids;
4943 spec->num_muxes = 1;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02004944 spec->num_adcs = 1;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01004945 spec->num_pwrs = 0;
Tobin Davis2c11f952007-05-17 09:36:34 +02004946 switch (codec->vendor_id) {
4947 case 0x83847632: /* STAC9202 */
4948 case 0x83847633: /* STAC9202D */
4949 case 0x83847636: /* STAC9251 */
4950 case 0x83847637: /* STAC9251D */
Takashi Iwaif6e98522007-10-16 14:27:04 +02004951 spec->num_dmics = STAC925X_NUM_DMICS;
Tobin Davis2c11f952007-05-17 09:36:34 +02004952 spec->dmic_nids = stac925x_dmic_nids;
Takashi Iwai16970552007-12-18 18:05:52 +01004953 spec->num_dmuxes = ARRAY_SIZE(stac925x_dmux_nids);
4954 spec->dmux_nids = stac925x_dmux_nids;
Tobin Davis2c11f952007-05-17 09:36:34 +02004955 break;
4956 default:
4957 spec->num_dmics = 0;
4958 break;
4959 }
Tobin Davis8e21c342007-01-08 11:04:17 +01004960
4961 spec->init = stac925x_core_init;
4962 spec->mixer = stac925x_mixer;
Takashi Iwai6479c632009-07-28 18:20:25 +02004963 spec->num_caps = 1;
4964 spec->capvols = stac925x_capvols;
4965 spec->capsws = stac925x_capsws;
Tobin Davis8e21c342007-01-08 11:04:17 +01004966
4967 err = stac92xx_parse_auto_config(codec, 0x8, 0x7);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01004968 if (!err) {
4969 if (spec->board_config < 0) {
4970 printk(KERN_WARNING "hda_codec: No auto-config is "
4971 "available, default to model=ref\n");
4972 spec->board_config = STAC_925x_REF;
4973 goto again;
4974 }
4975 err = -EINVAL;
4976 }
Tobin Davis8e21c342007-01-08 11:04:17 +01004977 if (err < 0) {
4978 stac92xx_free(codec);
4979 return err;
4980 }
4981
4982 codec->patch_ops = stac92xx_patch_ops;
4983
4984 return 0;
4985}
4986
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004987static int patch_stac92hd73xx(struct hda_codec *codec)
4988{
4989 struct sigmatel_spec *spec;
4990 hda_nid_t conn[STAC92HD73_DAC_COUNT + 2];
4991 int err = 0;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01004992 int num_dacs;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01004993
4994 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4995 if (spec == NULL)
4996 return -ENOMEM;
4997
4998 codec->spec = spec;
Matthew Ranostaye99d32b2008-09-09 10:46:38 +02004999 codec->slave_dig_outs = stac92hd73xx_slave_dig_outs;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005000 spec->num_pins = ARRAY_SIZE(stac92hd73xx_pin_nids);
5001 spec->pin_nids = stac92hd73xx_pin_nids;
5002 spec->board_config = snd_hda_check_board_config(codec,
5003 STAC_92HD73XX_MODELS,
5004 stac92hd73xx_models,
5005 stac92hd73xx_cfg_tbl);
Takashi Iwai842ae632009-09-02 07:43:08 +02005006 /* check codec subsystem id if not found */
5007 if (spec->board_config < 0)
5008 spec->board_config =
5009 snd_hda_check_board_codec_sid_config(codec,
5010 STAC_92HD73XX_MODELS, stac92hd73xx_models,
5011 stac92hd73xx_codec_id_cfg_tbl);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005012again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005013 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02005014 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5015 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01005016 else
5017 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005018 stac92hd73xx_brd_tbl[spec->board_config]);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005019
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005020 num_dacs = snd_hda_get_connections(codec, 0x0a,
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005021 conn, STAC92HD73_DAC_COUNT + 2) - 1;
5022
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005023 if (num_dacs < 3 || num_dacs > 5) {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005024 printk(KERN_WARNING "hda_codec: Could not determine "
5025 "number of channels defaulting to DAC count\n");
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005026 num_dacs = STAC92HD73_DAC_COUNT;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005027 }
Takashi Iwaie2aec172009-09-02 01:00:05 +02005028 spec->init = stac92hd73xx_core_init;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005029 switch (num_dacs) {
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005030 case 0x3: /* 6 Channel */
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005031 spec->aloopback_ctl = stac92hd73xx_6ch_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005032 break;
5033 case 0x4: /* 8 Channel */
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005034 spec->aloopback_ctl = stac92hd73xx_8ch_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005035 break;
5036 case 0x5: /* 10 Channel */
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005037 spec->aloopback_ctl = stac92hd73xx_10ch_loopback;
5038 break;
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005039 }
5040 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005041
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005042 spec->aloopback_mask = 0x01;
5043 spec->aloopback_shift = 8;
5044
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005045 spec->digbeep_nid = 0x1c;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005046 spec->mux_nids = stac92hd73xx_mux_nids;
5047 spec->adc_nids = stac92hd73xx_adc_nids;
5048 spec->dmic_nids = stac92hd73xx_dmic_nids;
5049 spec->dmux_nids = stac92hd73xx_dmux_nids;
Matthew Ranostayd9737752008-09-07 12:03:41 +02005050 spec->smux_nids = stac92hd73xx_smux_nids;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005051
5052 spec->num_muxes = ARRAY_SIZE(stac92hd73xx_mux_nids);
5053 spec->num_adcs = ARRAY_SIZE(stac92hd73xx_adc_nids);
Takashi Iwai16970552007-12-18 18:05:52 +01005054 spec->num_dmuxes = ARRAY_SIZE(stac92hd73xx_dmux_nids);
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04005055
Takashi Iwai6479c632009-07-28 18:20:25 +02005056 spec->num_caps = STAC92HD73XX_NUM_CAPS;
5057 spec->capvols = stac92hd73xx_capvols;
5058 spec->capsws = stac92hd73xx_capsws;
5059
Matthew Ranostaya7662642008-02-21 07:51:14 +01005060 switch (spec->board_config) {
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05005061 case STAC_DELL_EQ:
Matthew Ranostayd654a662008-03-14 08:46:51 +01005062 spec->init = dell_eq_core_init;
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05005063 /* fallthru */
Takashi Iwai661cd8f2008-11-25 15:18:29 +01005064 case STAC_DELL_M6_AMIC:
5065 case STAC_DELL_M6_DMIC:
5066 case STAC_DELL_M6_BOTH:
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04005067 spec->num_smuxes = 0;
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05005068 spec->eapd_switch = 0;
Matthew Ranostay6b3ab212008-11-03 08:12:43 -05005069
Takashi Iwai661cd8f2008-11-25 15:18:29 +01005070 switch (spec->board_config) {
5071 case STAC_DELL_M6_AMIC: /* Analog Mics */
Takashi Iwai330ee992009-02-20 14:33:36 +01005072 snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
Matthew Ranostaya7662642008-02-21 07:51:14 +01005073 spec->num_dmics = 0;
5074 break;
Takashi Iwai661cd8f2008-11-25 15:18:29 +01005075 case STAC_DELL_M6_DMIC: /* Digital Mics */
Takashi Iwai330ee992009-02-20 14:33:36 +01005076 snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
Matthew Ranostaya7662642008-02-21 07:51:14 +01005077 spec->num_dmics = 1;
5078 break;
Takashi Iwai661cd8f2008-11-25 15:18:29 +01005079 case STAC_DELL_M6_BOTH: /* Both */
Takashi Iwai330ee992009-02-20 14:33:36 +01005080 snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
5081 snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
Matthew Ranostaya7662642008-02-21 07:51:14 +01005082 spec->num_dmics = 1;
5083 break;
5084 }
5085 break;
Takashi Iwai842ae632009-09-02 07:43:08 +02005086 case STAC_ALIENWARE_M17X:
5087 spec->num_dmics = STAC92HD73XX_NUM_DMICS;
5088 spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids);
5089 spec->eapd_switch = 0;
5090 break;
Matthew Ranostaya7662642008-02-21 07:51:14 +01005091 default:
5092 spec->num_dmics = STAC92HD73XX_NUM_DMICS;
Matthew Ranostay2a9c7812008-09-13 16:45:39 -04005093 spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids);
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05005094 spec->eapd_switch = 1;
Takashi Iwai5207e102009-07-30 13:09:08 +02005095 break;
Matthew Ranostaya7662642008-02-21 07:51:14 +01005096 }
Takashi Iwaiaf6ee302009-09-14 15:03:12 +02005097 if (spec->board_config != STAC_92HD73XX_REF) {
Matthew Ranostayb2c4f4d2008-09-26 10:06:40 -04005098 /* GPIO0 High = Enable EAPD */
5099 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
5100 spec->gpio_data = 0x01;
5101 }
Matthew Ranostaya7662642008-02-21 07:51:14 +01005102
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005103 spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids);
5104 spec->pwr_nids = stac92hd73xx_pwr_nids;
5105
Matthew Ranostayd9737752008-09-07 12:03:41 +02005106 err = stac92xx_parse_auto_config(codec, 0x25, 0x27);
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005107
5108 if (!err) {
5109 if (spec->board_config < 0) {
5110 printk(KERN_WARNING "hda_codec: No auto-config is "
5111 "available, default to model=ref\n");
5112 spec->board_config = STAC_92HD73XX_REF;
5113 goto again;
5114 }
5115 err = -EINVAL;
5116 }
5117
5118 if (err < 0) {
5119 stac92xx_free(codec);
5120 return err;
5121 }
5122
Takashi Iwai9e43f0d2008-12-17 14:51:01 +01005123 if (spec->board_config == STAC_92HD73XX_NO_JD)
5124 spec->hp_detect = 0;
5125
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005126 codec->patch_ops = stac92xx_patch_ops;
5127
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005128 codec->proc_widget_hook = stac92hd7x_proc_hook;
5129
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005130 return 0;
5131}
5132
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005133static int patch_stac92hd83xxx(struct hda_codec *codec)
5134{
5135 struct sigmatel_spec *spec;
Matthew Ranostay65557f32009-01-20 16:50:25 -05005136 hda_nid_t conn[STAC92HD83_DAC_COUNT + 1];
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005137 int err;
Matthew Ranostay65557f32009-01-20 16:50:25 -05005138 int num_dacs;
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05005139 hda_nid_t nid;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005140
5141 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5142 if (spec == NULL)
5143 return -ENOMEM;
5144
5145 codec->spec = spec;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04005146 codec->slave_dig_outs = stac92hd83xxx_slave_dig_outs;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005147 spec->digbeep_nid = 0x21;
Takashi Iwai667067d2009-08-13 18:14:42 +02005148 spec->mux_nids = stac92hd83xxx_mux_nids;
5149 spec->num_muxes = ARRAY_SIZE(stac92hd83xxx_mux_nids);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005150 spec->adc_nids = stac92hd83xxx_adc_nids;
Takashi Iwai7570ef12009-08-15 11:57:53 +02005151 spec->num_adcs = ARRAY_SIZE(stac92hd83xxx_adc_nids);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005152 spec->pwr_nids = stac92hd83xxx_pwr_nids;
5153 spec->pwr_mapping = stac92hd83xxx_pwr_mapping;
5154 spec->num_pwrs = ARRAY_SIZE(stac92hd83xxx_pwr_nids);
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005155 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005156
5157 spec->init = stac92hd83xxx_core_init;
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005158 spec->num_pins = ARRAY_SIZE(stac92hd83xxx_pin_nids);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005159 spec->pin_nids = stac92hd83xxx_pin_nids;
Takashi Iwai6479c632009-07-28 18:20:25 +02005160 spec->num_caps = STAC92HD83XXX_NUM_CAPS;
5161 spec->capvols = stac92hd83xxx_capvols;
5162 spec->capsws = stac92hd83xxx_capsws;
5163
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005164 spec->board_config = snd_hda_check_board_config(codec,
5165 STAC_92HD83XXX_MODELS,
5166 stac92hd83xxx_models,
5167 stac92hd83xxx_cfg_tbl);
5168again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005169 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02005170 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5171 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01005172 else
5173 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005174 stac92hd83xxx_brd_tbl[spec->board_config]);
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005175
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05005176 switch (codec->vendor_id) {
5177 case 0x111d7604:
5178 case 0x111d7605:
Matthew Ranostayff2e7332009-04-01 14:49:48 -04005179 case 0x111d76d5:
Matthew Ranostay32ed3f42009-01-22 20:53:29 -05005180 if (spec->board_config == STAC_92HD83XXX_PWR_REF)
5181 break;
5182 spec->num_pwrs = 0;
5183 break;
5184 }
5185
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005186 err = stac92xx_parse_auto_config(codec, 0x1d, 0);
5187 if (!err) {
5188 if (spec->board_config < 0) {
5189 printk(KERN_WARNING "hda_codec: No auto-config is "
5190 "available, default to model=ref\n");
5191 spec->board_config = STAC_92HD83XXX_REF;
5192 goto again;
5193 }
5194 err = -EINVAL;
5195 }
5196
5197 if (err < 0) {
5198 stac92xx_free(codec);
5199 return err;
5200 }
5201
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05005202 switch (spec->board_config) {
5203 case STAC_DELL_S14:
5204 nid = 0xf;
5205 break;
5206 default:
5207 nid = 0xe;
5208 break;
5209 }
5210
5211 num_dacs = snd_hda_get_connections(codec, nid,
5212 conn, STAC92HD83_DAC_COUNT + 1) - 1;
Jaroslav Kysela16a433d2009-07-22 16:20:40 +02005213 if (num_dacs < 0)
5214 num_dacs = STAC92HD83_DAC_COUNT;
Matthew Ranostay8bb0ac52009-02-12 16:50:01 -05005215
5216 /* set port X to select the last DAC
5217 */
5218 snd_hda_codec_write_cache(codec, nid, 0,
5219 AC_VERB_SET_CONNECT_SEL, num_dacs);
5220
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005221 codec->patch_ops = stac92xx_patch_ops;
5222
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005223 codec->proc_widget_hook = stac92hd_proc_hook;
5224
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02005225 return 0;
5226}
5227
Takashi Iwai330ee992009-02-20 14:33:36 +01005228/* get the pin connection (fixed, none, etc) */
5229static unsigned int stac_get_defcfg_connect(struct hda_codec *codec, int idx)
5230{
5231 struct sigmatel_spec *spec = codec->spec;
5232 unsigned int cfg;
5233
5234 cfg = snd_hda_codec_get_pincfg(codec, spec->pin_nids[idx]);
5235 return get_defcfg_connect(cfg);
5236}
5237
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005238static int stac92hd71bxx_connected_ports(struct hda_codec *codec,
5239 hda_nid_t *nids, int num_nids)
5240{
5241 struct sigmatel_spec *spec = codec->spec;
5242 int idx, num;
5243 unsigned int def_conf;
5244
5245 for (num = 0; num < num_nids; num++) {
5246 for (idx = 0; idx < spec->num_pins; idx++)
5247 if (spec->pin_nids[idx] == nids[num])
5248 break;
5249 if (idx >= spec->num_pins)
5250 break;
Takashi Iwai330ee992009-02-20 14:33:36 +01005251 def_conf = stac_get_defcfg_connect(codec, idx);
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005252 if (def_conf == AC_JACK_PORT_NONE)
5253 break;
5254 }
5255 return num;
5256}
5257
5258static int stac92hd71bxx_connected_smuxes(struct hda_codec *codec,
5259 hda_nid_t dig0pin)
5260{
5261 struct sigmatel_spec *spec = codec->spec;
5262 int idx;
5263
5264 for (idx = 0; idx < spec->num_pins; idx++)
5265 if (spec->pin_nids[idx] == dig0pin)
5266 break;
5267 if ((idx + 2) >= spec->num_pins)
5268 return 0;
5269
5270 /* dig1pin case */
Takashi Iwai330ee992009-02-20 14:33:36 +01005271 if (stac_get_defcfg_connect(codec, idx + 1) != AC_JACK_PORT_NONE)
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005272 return 2;
5273
5274 /* dig0pin + dig2pin case */
Takashi Iwai330ee992009-02-20 14:33:36 +01005275 if (stac_get_defcfg_connect(codec, idx + 2) != AC_JACK_PORT_NONE)
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005276 return 2;
Takashi Iwai330ee992009-02-20 14:33:36 +01005277 if (stac_get_defcfg_connect(codec, idx) != AC_JACK_PORT_NONE)
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005278 return 1;
5279 else
5280 return 0;
5281}
5282
Matthew Ranostaye035b842007-11-06 11:53:55 +01005283static int patch_stac92hd71bxx(struct hda_codec *codec)
5284{
5285 struct sigmatel_spec *spec;
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05005286 struct hda_verb *unmute_init = stac92hd71bxx_unmute_core_init;
Vitaliy Kulikov5bdaaad2009-11-04 07:57:45 +01005287 unsigned int pin_cfg;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005288 int err = 0;
5289
5290 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5291 if (spec == NULL)
5292 return -ENOMEM;
5293
5294 codec->spec = spec;
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005295 codec->patch_ops = stac92xx_patch_ops;
Herton Ronaldo Krzesinski616f89e2009-02-04 11:23:19 -05005296 spec->num_pins = STAC92HD71BXX_NUM_PINS;
5297 switch (codec->vendor_id) {
5298 case 0x111d76b6:
5299 case 0x111d76b7:
5300 spec->pin_nids = stac92hd71bxx_pin_nids_4port;
5301 break;
5302 case 0x111d7603:
5303 case 0x111d7608:
5304 /* On 92HD75Bx 0x27 isn't a pin nid */
5305 spec->num_pins--;
5306 /* fallthrough */
5307 default:
5308 spec->pin_nids = stac92hd71bxx_pin_nids_6port;
5309 }
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005310 spec->num_pwrs = ARRAY_SIZE(stac92hd71bxx_pwr_nids);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005311 spec->board_config = snd_hda_check_board_config(codec,
5312 STAC_92HD71BXX_MODELS,
5313 stac92hd71bxx_models,
5314 stac92hd71bxx_cfg_tbl);
5315again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005316 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02005317 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5318 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01005319 else
5320 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005321 stac92hd71bxx_brd_tbl[spec->board_config]);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005322
Takashi Iwaifc64b262009-09-14 15:33:01 +02005323 if (spec->board_config != STAC_92HD71BXX_REF) {
Takashi Iwai41c3b642008-11-18 10:45:15 +01005324 /* GPIO0 = EAPD */
5325 spec->gpio_mask = 0x01;
5326 spec->gpio_dir = 0x01;
5327 spec->gpio_data = 0x01;
5328 }
5329
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005330 spec->dmic_nids = stac92hd71bxx_dmic_nids;
5331 spec->dmux_nids = stac92hd71bxx_dmux_nids;
5332
Takashi Iwai6479c632009-07-28 18:20:25 +02005333 spec->num_caps = STAC92HD71BXX_NUM_CAPS;
5334 spec->capvols = stac92hd71bxx_capvols;
5335 spec->capsws = stac92hd71bxx_capsws;
5336
Matthew Ranostay541eee82007-12-14 12:08:04 +01005337 switch (codec->vendor_id) {
5338 case 0x111d76b6: /* 4 Port without Analog Mixer */
5339 case 0x111d76b7:
Herton Ronaldo Krzesinski23c7b522009-02-08 19:51:28 -02005340 unmute_init++;
5341 /* fallthru */
Matthew Ranostay541eee82007-12-14 12:08:04 +01005342 case 0x111d76b4: /* 6 Port without Analog Mixer */
5343 case 0x111d76b5:
Matthew Ranostay541eee82007-12-14 12:08:04 +01005344 spec->init = stac92hd71bxx_core_init;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04005345 codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005346 spec->num_dmics = stac92hd71bxx_connected_ports(codec,
5347 stac92hd71bxx_dmic_nids,
5348 STAC92HD71BXX_NUM_DMICS);
Matthew Ranostay541eee82007-12-14 12:08:04 +01005349 break;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005350 case 0x111d7608: /* 5 Port with Analog Mixer */
Takashi Iwai8e5f2622008-11-15 19:28:54 +01005351 switch (spec->board_config) {
5352 case STAC_HP_M4:
Matthew Ranostay72474be2008-10-09 09:32:17 -04005353 /* Enable VREF power saving on GPIO1 detect */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005354 err = stac_add_event(spec, codec->afg,
5355 STAC_VREF_EVENT, 0x02);
5356 if (err < 0)
5357 return err;
Takashi Iwaic5d08bb2008-11-18 10:55:36 +01005358 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay72474be2008-10-09 09:32:17 -04005359 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x02);
5360 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay74aeaab2008-10-25 01:06:04 -04005361 AC_VERB_SET_UNSOLICITED_ENABLE,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005362 AC_USRSP_EN | err);
Matthew Ranostay72474be2008-10-09 09:32:17 -04005363 spec->gpio_mask |= 0x02;
5364 break;
5365 }
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005366 if ((codec->revision_id & 0xf) == 0 ||
Takashi Iwai8c2f7672008-12-01 11:54:35 +01005367 (codec->revision_id & 0xf) == 1)
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005368 spec->stream_delay = 40; /* 40 milliseconds */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005369
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005370 /* no output amps */
5371 spec->num_pwrs = 0;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005372 /* disable VSW */
Takashi Iwai26a27982009-07-29 16:28:09 +02005373 spec->init = stac92hd71bxx_core_init;
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05005374 unmute_init++;
Takashi Iwai330ee992009-02-20 14:33:36 +01005375 snd_hda_codec_set_pincfg(codec, 0x0f, 0x40f000f0);
5376 snd_hda_codec_set_pincfg(codec, 0x19, 0x40f000f3);
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005377 stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS - 1] = 0;
5378 spec->num_dmics = stac92hd71bxx_connected_ports(codec,
5379 stac92hd71bxx_dmic_nids,
5380 STAC92HD71BXX_NUM_DMICS - 1);
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005381 break;
5382 case 0x111d7603: /* 6 Port with Analog Mixer */
Takashi Iwai8c2f7672008-12-01 11:54:35 +01005383 if ((codec->revision_id & 0xf) == 1)
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005384 spec->stream_delay = 40; /* 40 milliseconds */
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005385
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005386 /* no output amps */
5387 spec->num_pwrs = 0;
5388 /* fallthru */
Matthew Ranostay541eee82007-12-14 12:08:04 +01005389 default:
Takashi Iwai26a27982009-07-29 16:28:09 +02005390 spec->init = stac92hd71bxx_core_init;
Matthew Ranostay0ffa9802008-09-08 11:20:05 -04005391 codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005392 spec->num_dmics = stac92hd71bxx_connected_ports(codec,
5393 stac92hd71bxx_dmic_nids,
5394 STAC92HD71BXX_NUM_DMICS);
Takashi Iwai5207e102009-07-30 13:09:08 +02005395 break;
Matthew Ranostay541eee82007-12-14 12:08:04 +01005396 }
5397
Matthew Ranostayca8d33f2009-01-26 09:33:52 -05005398 if (get_wcaps(codec, 0xa) & AC_WCAP_IN_AMP)
5399 snd_hda_sequence_write_cache(codec, unmute_init);
5400
Takashi Iwaib20f3b82009-06-02 01:20:22 +02005401 /* Some HP machines seem to have unstable codec communications
5402 * especially with ATI fglrx driver. For recovering from the
5403 * CORB/RIRB stall, allow the BUS reset and keep always sync
5404 */
5405 if (spec->board_config == STAC_HP_DV5) {
5406 codec->bus->sync_write = 1;
5407 codec->bus->allow_bus_reset = 1;
5408 }
5409
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005410 spec->aloopback_ctl = stac92hd71bxx_loopback;
Matthew Ranostay4b33c762008-10-10 09:07:23 -04005411 spec->aloopback_mask = 0x50;
Matthew Ranostay541eee82007-12-14 12:08:04 +01005412 spec->aloopback_shift = 0;
5413
Matthew Ranostay8daaaa92008-08-15 07:45:52 +02005414 spec->powerdown_adcs = 1;
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005415 spec->digbeep_nid = 0x26;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005416 spec->mux_nids = stac92hd71bxx_mux_nids;
5417 spec->adc_nids = stac92hd71bxx_adc_nids;
Matthew Ranostayd9737752008-09-07 12:03:41 +02005418 spec->smux_nids = stac92hd71bxx_smux_nids;
Matthew Ranostayaafc4412008-06-13 18:04:33 +02005419 spec->pwr_nids = stac92hd71bxx_pwr_nids;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005420
5421 spec->num_muxes = ARRAY_SIZE(stac92hd71bxx_mux_nids);
5422 spec->num_adcs = ARRAY_SIZE(stac92hd71bxx_adc_nids);
Takashi Iwai5207e102009-07-30 13:09:08 +02005423 spec->num_dmuxes = ARRAY_SIZE(stac92hd71bxx_dmux_nids);
Herton Ronaldo Krzesinski6df703a2009-02-04 11:34:22 -05005424 spec->num_smuxes = stac92hd71bxx_connected_smuxes(codec, 0x1e);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005425
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005426 switch (spec->board_config) {
5427 case STAC_HP_M4:
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005428 /* enable internal microphone */
Takashi Iwai330ee992009-02-20 14:33:36 +01005429 snd_hda_codec_set_pincfg(codec, 0x0e, 0x01813040);
Matthew Ranostayb9aea712008-10-09 08:37:28 -04005430 stac92xx_auto_set_pinctl(codec, 0x0e,
5431 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80);
Matthew Ranostay3a7abfd2008-11-20 21:21:43 -05005432 /* fallthru */
5433 case STAC_DELL_M4_2:
5434 spec->num_dmics = 0;
5435 spec->num_smuxes = 0;
5436 spec->num_dmuxes = 0;
5437 break;
5438 case STAC_DELL_M4_1:
5439 case STAC_DELL_M4_3:
5440 spec->num_dmics = 1;
5441 spec->num_smuxes = 0;
Takashi Iwaiea18aa42009-02-27 17:36:33 +01005442 spec->num_dmuxes = 1;
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005443 break;
James Gardiner514bf542009-05-03 04:00:44 -04005444 case STAC_HP_DV4_1222NR:
5445 spec->num_dmics = 1;
5446 /* I don't know if it needs 1 or 2 smuxes - will wait for
5447 * bug reports to fix if needed
5448 */
5449 spec->num_smuxes = 1;
5450 spec->num_dmuxes = 1;
Takashi Iwai86d190e2009-05-26 15:18:58 +02005451 spec->gpio_led = 0x01;
James Gardiner514bf542009-05-03 04:00:44 -04005452 /* fallthrough */
Herton Ronaldo Krzesinskie2ea57a2009-02-16 10:23:00 +01005453 case STAC_HP_DV5:
Takashi Iwai330ee992009-02-20 14:33:36 +01005454 snd_hda_codec_set_pincfg(codec, 0x0d, 0x90170010);
Herton Ronaldo Krzesinskie2ea57a2009-02-16 10:23:00 +01005455 stac92xx_auto_set_pinctl(codec, 0x0d, AC_PINCTL_OUT_EN);
Takashi Iwai6e34c032009-09-14 15:42:18 +02005456 /* HP dv6 gives the headphone pin as a line-out. Thus we
5457 * need to set hp_detect flag here to force to enable HP
5458 * detection.
5459 */
5460 spec->hp_detect = 1;
Herton Ronaldo Krzesinskie2ea57a2009-02-16 10:23:00 +01005461 break;
Christoph Plattnerae6241f2009-03-08 23:19:05 +01005462 case STAC_HP_HDX:
5463 spec->num_dmics = 1;
5464 spec->num_dmuxes = 1;
5465 spec->num_smuxes = 1;
Christoph Plattner443e26d2009-03-10 00:05:56 +01005466 /* orange/white mute led on GPIO3, orange=0, white=1 */
Takashi Iwai86d190e2009-05-26 15:18:58 +02005467 spec->gpio_led = 0x08;
5468 break;
5469 }
Christoph Plattner443e26d2009-03-10 00:05:56 +01005470
Vitaliy Kulikov5bdaaad2009-11-04 07:57:45 +01005471 if (hp_bseries_system(codec->subsystem_id)) {
5472 pin_cfg = snd_hda_codec_get_pincfg(codec, 0x0f);
5473 if (get_defcfg_device(pin_cfg) == AC_JACK_LINE_OUT ||
5474 get_defcfg_device(pin_cfg) == AC_JACK_SPEAKER ||
5475 get_defcfg_device(pin_cfg) == AC_JACK_HP_OUT) {
5476 /* It was changed in the BIOS to just satisfy MS DTM.
5477 * Lets turn it back into slaved HP
5478 */
5479 pin_cfg = (pin_cfg & (~AC_DEFCFG_DEVICE))
5480 | (AC_JACK_HP_OUT <<
5481 AC_DEFCFG_DEVICE_SHIFT);
5482 pin_cfg = (pin_cfg & (~(AC_DEFCFG_DEF_ASSOC
5483 | AC_DEFCFG_SEQUENCE)))
5484 | 0x1f;
5485 snd_hda_codec_set_pincfg(codec, 0x0f, pin_cfg);
5486 }
5487 }
5488
5489 if ((codec->subsystem_id >> 16) == PCI_VENDOR_ID_HP) {
5490 const struct dmi_device *dev = NULL;
5491 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING,
5492 NULL, dev))) {
5493 if (strcmp(dev->name, "HP_Mute_LED_1")) {
5494 switch (codec->vendor_id) {
5495 case 0x111d7608:
5496 spec->gpio_led = 0x01;
5497 break;
5498 case 0x111d7600:
5499 case 0x111d7601:
5500 case 0x111d7602:
5501 case 0x111d7603:
5502 spec->gpio_led = 0x08;
5503 break;
5504 }
5505 break;
5506 }
5507 }
5508 }
5509
Takashi Iwai86d190e2009-05-26 15:18:58 +02005510#ifdef CONFIG_SND_HDA_POWER_SAVE
5511 if (spec->gpio_led) {
5512 spec->gpio_mask |= spec->gpio_led;
5513 spec->gpio_dir |= spec->gpio_led;
5514 spec->gpio_data |= spec->gpio_led;
Christoph Plattner443e26d2009-03-10 00:05:56 +01005515 /* register check_power_status callback. */
Takashi Iwai6fce61a2009-03-10 07:48:57 +01005516 codec->patch_ops.check_power_status =
Takashi Iwai86d190e2009-05-26 15:18:58 +02005517 stac92xx_hp_check_power_status;
5518 }
Christoph Plattner443e26d2009-03-10 00:05:56 +01005519#endif
Matthew Ranostay6a14f582008-09-12 12:02:30 -04005520
Takashi Iwaic21ca4a2008-12-19 09:26:08 +01005521 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostaye035b842007-11-06 11:53:55 +01005522
Herton Ronaldo Krzesinski29d4ab42009-02-04 11:37:27 -05005523 err = stac92xx_parse_auto_config(codec, 0x21, 0);
Matthew Ranostaye035b842007-11-06 11:53:55 +01005524 if (!err) {
5525 if (spec->board_config < 0) {
5526 printk(KERN_WARNING "hda_codec: No auto-config is "
5527 "available, default to model=ref\n");
5528 spec->board_config = STAC_92HD71BXX_REF;
5529 goto again;
5530 }
5531 err = -EINVAL;
5532 }
5533
5534 if (err < 0) {
5535 stac92xx_free(codec);
5536 return err;
5537 }
5538
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005539 codec->proc_widget_hook = stac92hd7x_proc_hook;
5540
Matthew Ranostaye035b842007-11-06 11:53:55 +01005541 return 0;
Takashi Iwai86d190e2009-05-26 15:18:58 +02005542}
Matthew Ranostaye035b842007-11-06 11:53:55 +01005543
Matt2f2f4252005-04-13 14:45:30 +02005544static int patch_stac922x(struct hda_codec *codec)
5545{
5546 struct sigmatel_spec *spec;
Mattc7d4b2f2005-06-27 14:59:41 +02005547 int err;
Matt2f2f4252005-04-13 14:45:30 +02005548
Takashi Iwaie560d8d2005-09-09 14:21:46 +02005549 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Matt2f2f4252005-04-13 14:45:30 +02005550 if (spec == NULL)
5551 return -ENOMEM;
5552
5553 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005554 spec->num_pins = ARRAY_SIZE(stac922x_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005555 spec->pin_nids = stac922x_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005556 spec->board_config = snd_hda_check_board_config(codec, STAC_922X_MODELS,
5557 stac922x_models,
5558 stac922x_cfg_tbl);
Nicolas Boichat536319a2008-07-21 22:18:01 +08005559 if (spec->board_config == STAC_INTEL_MAC_AUTO) {
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005560 spec->gpio_mask = spec->gpio_dir = 0x03;
5561 spec->gpio_data = 0x03;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005562 /* Intel Macs have all same PCI SSID, so we need to check
5563 * codec SSID to distinguish the exact models
5564 */
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01005565 printk(KERN_INFO "hda_codec: STAC922x, Apple subsys_id=%x\n", codec->subsystem_id);
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005566 switch (codec->subsystem_id) {
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005567
5568 case 0x106b0800:
5569 spec->board_config = STAC_INTEL_MAC_V1;
Abhijit Bhopatkarc45e20e2007-04-17 11:57:16 +02005570 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005571 case 0x106b0600:
5572 case 0x106b0700:
5573 spec->board_config = STAC_INTEL_MAC_V2;
Nicolas Boichat6f0778d2007-03-15 12:38:15 +01005574 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005575 case 0x106b0e00:
5576 case 0x106b0f00:
5577 case 0x106b1600:
5578 case 0x106b1700:
5579 case 0x106b0200:
5580 case 0x106b1e00:
5581 spec->board_config = STAC_INTEL_MAC_V3;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005582 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005583 case 0x106b1a00:
5584 case 0x00000100:
5585 spec->board_config = STAC_INTEL_MAC_V4;
Sylvain FORETf16928f2007-04-27 14:22:36 +02005586 break;
Ivan N. Zlatev5d5d3bc2007-05-29 16:03:00 +02005587 case 0x106b0a00:
5588 case 0x106b2200:
5589 spec->board_config = STAC_INTEL_MAC_V5;
Takashi Iwai0dae0f82007-05-21 12:41:29 +02005590 break;
Nicolas Boichat536319a2008-07-21 22:18:01 +08005591 default:
5592 spec->board_config = STAC_INTEL_MAC_V3;
5593 break;
Takashi Iwai3fc24d82007-02-16 13:27:18 +01005594 }
5595 }
5596
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005597 again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005598 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02005599 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5600 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01005601 else
5602 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005603 stac922x_brd_tbl[spec->board_config]);
Matt2f2f4252005-04-13 14:45:30 +02005604
Matt2f2f4252005-04-13 14:45:30 +02005605 spec->adc_nids = stac922x_adc_nids;
5606 spec->mux_nids = stac922x_mux_nids;
Takashi Iwai25494132007-03-12 12:36:16 +01005607 spec->num_muxes = ARRAY_SIZE(stac922x_mux_nids);
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005608 spec->num_adcs = ARRAY_SIZE(stac922x_adc_nids);
Matt Porter8b657272006-10-26 17:12:59 +02005609 spec->num_dmics = 0;
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005610 spec->num_pwrs = 0;
Mattc7d4b2f2005-06-27 14:59:41 +02005611
5612 spec->init = stac922x_core_init;
Takashi Iwai6479c632009-07-28 18:20:25 +02005613
5614 spec->num_caps = STAC922X_NUM_CAPS;
5615 spec->capvols = stac922x_capvols;
5616 spec->capsws = stac922x_capsws;
Mattc7d4b2f2005-06-27 14:59:41 +02005617
5618 spec->multiout.dac_nids = spec->dac_nids;
Takashi Iwai19039bd2006-06-28 15:52:16 +02005619
Matt Porter3cc08dc2006-01-23 15:27:49 +01005620 err = stac92xx_parse_auto_config(codec, 0x08, 0x09);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005621 if (!err) {
5622 if (spec->board_config < 0) {
5623 printk(KERN_WARNING "hda_codec: No auto-config is "
5624 "available, default to model=ref\n");
5625 spec->board_config = STAC_D945_REF;
5626 goto again;
5627 }
5628 err = -EINVAL;
5629 }
Matt Porter3cc08dc2006-01-23 15:27:49 +01005630 if (err < 0) {
5631 stac92xx_free(codec);
5632 return err;
5633 }
5634
5635 codec->patch_ops = stac92xx_patch_ops;
5636
Takashi Iwai807a46362007-05-29 19:01:37 +02005637 /* Fix Mux capture level; max to 2 */
5638 snd_hda_override_amp_caps(codec, 0x12, HDA_OUTPUT,
5639 (0 << AC_AMPCAP_OFFSET_SHIFT) |
5640 (2 << AC_AMPCAP_NUM_STEPS_SHIFT) |
5641 (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5642 (0 << AC_AMPCAP_MUTE_SHIFT));
5643
Matt Porter3cc08dc2006-01-23 15:27:49 +01005644 return 0;
5645}
5646
5647static int patch_stac927x(struct hda_codec *codec)
5648{
5649 struct sigmatel_spec *spec;
5650 int err;
5651
5652 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5653 if (spec == NULL)
5654 return -ENOMEM;
5655
5656 codec->spec = spec;
Matthew Ranostay45c1d852009-02-04 17:49:41 -05005657 codec->slave_dig_outs = stac927x_slave_dig_outs;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005658 spec->num_pins = ARRAY_SIZE(stac927x_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005659 spec->pin_nids = stac927x_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005660 spec->board_config = snd_hda_check_board_config(codec, STAC_927X_MODELS,
5661 stac927x_models,
5662 stac927x_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005663 again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005664 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02005665 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5666 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01005667 else
5668 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005669 stac927x_brd_tbl[spec->board_config]);
Matt Porter3cc08dc2006-01-23 15:27:49 +01005670
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005671 spec->digbeep_nid = 0x23;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005672 spec->adc_nids = stac927x_adc_nids;
5673 spec->num_adcs = ARRAY_SIZE(stac927x_adc_nids);
5674 spec->mux_nids = stac927x_mux_nids;
5675 spec->num_muxes = ARRAY_SIZE(stac927x_mux_nids);
Matthew Ranostayd9737752008-09-07 12:03:41 +02005676 spec->smux_nids = stac927x_smux_nids;
5677 spec->num_smuxes = ARRAY_SIZE(stac927x_smux_nids);
Matthew Ranostay65973632008-09-16 10:39:37 -04005678 spec->spdif_labels = stac927x_spdif_labels;
Matthew Ranostayb76c8502008-02-06 14:49:44 +01005679 spec->dac_list = stac927x_dac_nids;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005680 spec->multiout.dac_nids = spec->dac_nids;
5681
Takashi Iwaiaf6ee302009-09-14 15:03:12 +02005682 if (spec->board_config != STAC_D965_REF) {
5683 /* GPIO0 High = Enable EAPD */
5684 spec->eapd_mask = spec->gpio_mask = 0x01;
5685 spec->gpio_dir = spec->gpio_data = 0x01;
5686 }
5687
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005688 switch (spec->board_config) {
Tobin Davis93ed1502006-09-01 21:03:12 +02005689 case STAC_D965_3ST:
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005690 case STAC_D965_5ST:
5691 /* GPIO0 High = Enable EAPD */
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005692 spec->num_dmics = 0;
Tobin Davis93ed1502006-09-01 21:03:12 +02005693 spec->init = d965_core_init;
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005694 break;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005695 case STAC_DELL_BIOS:
Matthew Ranostay780c8be2008-04-14 13:32:27 +02005696 switch (codec->subsystem_id) {
5697 case 0x10280209:
5698 case 0x1028022e:
5699 /* correct the device field to SPDIF out */
Takashi Iwai330ee992009-02-20 14:33:36 +01005700 snd_hda_codec_set_pincfg(codec, 0x21, 0x01442070);
Matthew Ranostay780c8be2008-04-14 13:32:27 +02005701 break;
Takashi Iwai86d190e2009-05-26 15:18:58 +02005702 }
Matthew Ranostay03d7ca12008-02-21 07:51:46 +01005703 /* configure the analog microphone on some laptops */
Takashi Iwai330ee992009-02-20 14:33:36 +01005704 snd_hda_codec_set_pincfg(codec, 0x0c, 0x90a79130);
Matthew Ranostay2f32d902008-01-10 13:06:26 +01005705 /* correct the front output jack as a hp out */
Takashi Iwai330ee992009-02-20 14:33:36 +01005706 snd_hda_codec_set_pincfg(codec, 0x0f, 0x0227011f);
Matthew Ranostayc481fca2008-01-07 12:18:28 +01005707 /* correct the front input jack as a mic */
Takashi Iwai330ee992009-02-20 14:33:36 +01005708 snd_hda_codec_set_pincfg(codec, 0x0e, 0x02a79130);
Matthew Ranostayc481fca2008-01-07 12:18:28 +01005709 /* fallthru */
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005710 case STAC_DELL_3ST:
Takashi Iwaiaf6ee302009-09-14 15:03:12 +02005711 if (codec->subsystem_id != 0x1028022f) {
5712 /* GPIO2 High = Enable EAPD */
5713 spec->eapd_mask = spec->gpio_mask = 0x04;
5714 spec->gpio_dir = spec->gpio_data = 0x04;
5715 }
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005716 spec->dmic_nids = stac927x_dmic_nids;
5717 spec->num_dmics = STAC927X_NUM_DMICS;
5718
Takashi Iwaiccca7cd2009-10-13 15:32:21 +02005719 spec->init = dell_3st_core_init;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005720 spec->dmux_nids = stac927x_dmux_nids;
Takashi Iwai16970552007-12-18 18:05:52 +01005721 spec->num_dmuxes = ARRAY_SIZE(stac927x_dmux_nids);
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005722 break;
Takashi Iwai54930532009-10-11 17:38:29 +02005723 case STAC_927X_VOLKNOB:
5724 spec->num_dmics = 0;
5725 spec->init = stac927x_volknob_core_init;
5726 break;
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005727 default:
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005728 spec->num_dmics = 0;
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005729 spec->init = stac927x_core_init;
Takashi Iwaiaf6ee302009-09-14 15:03:12 +02005730 break;
Tobin Davis81d3dbd2006-08-22 19:44:45 +02005731 }
Matt Porter3cc08dc2006-01-23 15:27:49 +01005732
Takashi Iwai6479c632009-07-28 18:20:25 +02005733 spec->num_caps = STAC927X_NUM_CAPS;
5734 spec->capvols = stac927x_capvols;
5735 spec->capsws = stac927x_capsws;
5736
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005737 spec->num_pwrs = 0;
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005738 spec->aloopback_ctl = stac927x_loopback;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005739 spec->aloopback_mask = 0x40;
5740 spec->aloopback_shift = 0;
Matthew Ranostayc0cea0d2008-11-16 11:42:34 -05005741 spec->eapd_switch = 1;
Matthew Ranostay8e9068b2007-12-17 11:58:13 +01005742
Matt Porter3cc08dc2006-01-23 15:27:49 +01005743 err = stac92xx_parse_auto_config(codec, 0x1e, 0x20);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005744 if (!err) {
5745 if (spec->board_config < 0) {
5746 printk(KERN_WARNING "hda_codec: No auto-config is "
5747 "available, default to model=ref\n");
5748 spec->board_config = STAC_D965_REF;
5749 goto again;
5750 }
5751 err = -EINVAL;
5752 }
Mattc7d4b2f2005-06-27 14:59:41 +02005753 if (err < 0) {
5754 stac92xx_free(codec);
5755 return err;
5756 }
Matt2f2f4252005-04-13 14:45:30 +02005757
5758 codec->patch_ops = stac92xx_patch_ops;
5759
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005760 codec->proc_widget_hook = stac927x_proc_hook;
5761
Takashi Iwai52987652008-01-16 16:09:47 +01005762 /*
5763 * !!FIXME!!
5764 * The STAC927x seem to require fairly long delays for certain
5765 * command sequences. With too short delays (even if the answer
5766 * is set to RIRB properly), it results in the silence output
5767 * on some hardwares like Dell.
5768 *
5769 * The below flag enables the longer delay (see get_response
5770 * in hda_intel.c).
5771 */
5772 codec->bus->needs_damn_long_delay = 1;
5773
Takashi Iwaie28d8322008-12-17 13:48:29 +01005774 /* no jack detecion for ref-no-jd model */
5775 if (spec->board_config == STAC_D965_REF_NO_JD)
5776 spec->hp_detect = 0;
5777
Matt2f2f4252005-04-13 14:45:30 +02005778 return 0;
5779}
5780
Matt Porterf3302a52006-07-31 12:49:34 +02005781static int patch_stac9205(struct hda_codec *codec)
5782{
5783 struct sigmatel_spec *spec;
Takashi Iwai82599802007-07-31 15:56:24 +02005784 int err;
Matt Porterf3302a52006-07-31 12:49:34 +02005785
5786 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5787 if (spec == NULL)
5788 return -ENOMEM;
5789
5790 codec->spec = spec;
Takashi Iwaia4eed132007-07-06 18:17:04 +02005791 spec->num_pins = ARRAY_SIZE(stac9205_pin_nids);
Richard Fish11b44bb2006-08-23 18:31:34 +02005792 spec->pin_nids = stac9205_pin_nids;
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005793 spec->board_config = snd_hda_check_board_config(codec, STAC_9205_MODELS,
5794 stac9205_models,
5795 stac9205_cfg_tbl);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005796 again:
Takashi Iwai330ee992009-02-20 14:33:36 +01005797 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02005798 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5799 codec->chip_name);
Takashi Iwai330ee992009-02-20 14:33:36 +01005800 else
5801 stac92xx_set_config_regs(codec,
Takashi Iwaiaf9f3412008-11-18 10:38:56 +01005802 stac9205_brd_tbl[spec->board_config]);
Matt Porterf3302a52006-07-31 12:49:34 +02005803
Matthew Ranostay1cd22242008-07-18 18:20:52 +02005804 spec->digbeep_nid = 0x23;
Matt Porterf3302a52006-07-31 12:49:34 +02005805 spec->adc_nids = stac9205_adc_nids;
Maxim Levitsky9e05b7a2007-09-03 15:31:02 +02005806 spec->num_adcs = ARRAY_SIZE(stac9205_adc_nids);
Matt Porterf3302a52006-07-31 12:49:34 +02005807 spec->mux_nids = stac9205_mux_nids;
Takashi Iwai25494132007-03-12 12:36:16 +01005808 spec->num_muxes = ARRAY_SIZE(stac9205_mux_nids);
Matthew Ranostayd9737752008-09-07 12:03:41 +02005809 spec->smux_nids = stac9205_smux_nids;
5810 spec->num_smuxes = ARRAY_SIZE(stac9205_smux_nids);
Matt Porter8b657272006-10-26 17:12:59 +02005811 spec->dmic_nids = stac9205_dmic_nids;
Takashi Iwaif6e98522007-10-16 14:27:04 +02005812 spec->num_dmics = STAC9205_NUM_DMICS;
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005813 spec->dmux_nids = stac9205_dmux_nids;
Takashi Iwai16970552007-12-18 18:05:52 +01005814 spec->num_dmuxes = ARRAY_SIZE(stac9205_dmux_nids);
Matthew Ranostaya64135a2008-01-10 16:55:06 +01005815 spec->num_pwrs = 0;
Matt Porterf3302a52006-07-31 12:49:34 +02005816
5817 spec->init = stac9205_core_init;
Takashi Iwaid78d7a92009-03-02 14:26:25 +01005818 spec->aloopback_ctl = stac9205_loopback;
Matt Porterf3302a52006-07-31 12:49:34 +02005819
Takashi Iwai6479c632009-07-28 18:20:25 +02005820 spec->num_caps = STAC9205_NUM_CAPS;
5821 spec->capvols = stac9205_capvols;
5822 spec->capsws = stac9205_capsws;
5823
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01005824 spec->aloopback_mask = 0x40;
5825 spec->aloopback_shift = 0;
Takashi Iwaid9a42682009-01-22 17:40:18 +01005826 /* Turn on/off EAPD per HP plugging */
5827 if (spec->board_config != STAC_9205_EAPD)
5828 spec->eapd_switch = 1;
Matt Porterf3302a52006-07-31 12:49:34 +02005829 spec->multiout.dac_nids = spec->dac_nids;
Matthew Ranostay87d48362007-07-17 11:52:24 +02005830
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005831 switch (spec->board_config){
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005832 case STAC_9205_DELL_M43:
Matthew Ranostay87d48362007-07-17 11:52:24 +02005833 /* Enable SPDIF in/out */
Takashi Iwai330ee992009-02-20 14:33:36 +01005834 snd_hda_codec_set_pincfg(codec, 0x1f, 0x01441030);
5835 snd_hda_codec_set_pincfg(codec, 0x20, 0x1c410030);
Matt Porter33382402006-12-18 13:17:28 +01005836
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005837 /* Enable unsol response for GPIO4/Dock HP connection */
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005838 err = stac_add_event(spec, codec->afg, STAC_VREF_EVENT, 0x01);
5839 if (err < 0)
5840 return err;
Takashi Iwaic5d08bb2008-11-18 10:55:36 +01005841 snd_hda_codec_write_cache(codec, codec->afg, 0,
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005842 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10);
5843 snd_hda_codec_write_cache(codec, codec->afg, 0,
Takashi Iwaic6e4c662008-11-25 11:58:19 +01005844 AC_VERB_SET_UNSOLICITED_ENABLE,
5845 AC_USRSP_EN | err);
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005846
5847 spec->gpio_dir = 0x0b;
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005848 spec->eapd_mask = 0x01;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005849 spec->gpio_mask = 0x1b;
5850 spec->gpio_mute = 0x10;
Matthew Ranostaye2e7d622008-01-24 15:32:15 +01005851 /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute,
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005852 * GPIO3 Low = DRM
Matthew Ranostay87d48362007-07-17 11:52:24 +02005853 */
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005854 spec->gpio_data = 0x01;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005855 break;
Matthew Ranostayb2c4f4d2008-09-26 10:06:40 -04005856 case STAC_9205_REF:
5857 /* SPDIF-In enabled */
5858 break;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005859 default:
5860 /* GPIO0 High = EAPD */
Matthew Ranostay0fc9dec2008-04-14 13:32:54 +02005861 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
Matthew Ranostay4fe51952008-01-29 15:28:44 +01005862 spec->gpio_data = 0x01;
Tobin Davisae0a8ed2007-08-13 15:50:29 +02005863 break;
5864 }
Matthew Ranostay87d48362007-07-17 11:52:24 +02005865
Matt Porterf3302a52006-07-31 12:49:34 +02005866 err = stac92xx_parse_auto_config(codec, 0x1f, 0x20);
Takashi Iwai9e507ab2007-02-08 17:50:10 +01005867 if (!err) {
5868 if (spec->board_config < 0) {
5869 printk(KERN_WARNING "hda_codec: No auto-config is "
5870 "available, default to model=ref\n");
5871 spec->board_config = STAC_9205_REF;
5872 goto again;
5873 }
5874 err = -EINVAL;
5875 }
Matt Porterf3302a52006-07-31 12:49:34 +02005876 if (err < 0) {
5877 stac92xx_free(codec);
5878 return err;
5879 }
5880
5881 codec->patch_ops = stac92xx_patch_ops;
5882
Takashi Iwai2d34e1b2008-11-28 14:35:16 +01005883 codec->proc_widget_hook = stac9205_proc_hook;
5884
Matt Porterf3302a52006-07-31 12:49:34 +02005885 return 0;
5886}
5887
Matt2f2f4252005-04-13 14:45:30 +02005888/*
Guillaume Munch6d859062006-08-22 17:15:47 +02005889 * STAC9872 hack
Takashi Iwaidb064e52006-03-16 16:04:58 +01005890 */
5891
Takashi Iwai1e137f92009-01-21 07:41:22 +01005892static struct hda_verb stac9872_core_init[] = {
Takashi Iwai1624cb92007-07-05 13:10:51 +02005893 {0x15, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mic-sel: 0a,0d,14,02 */
Takashi Iwaidb064e52006-03-16 16:04:58 +01005894 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */
5895 {}
5896};
5897
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005898static hda_nid_t stac9872_pin_nids[] = {
5899 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
5900 0x11, 0x13, 0x14,
5901};
5902
5903static hda_nid_t stac9872_adc_nids[] = {
5904 0x8 /*,0x6*/
5905};
5906
5907static hda_nid_t stac9872_mux_nids[] = {
5908 0x15
5909};
5910
Takashi Iwai6479c632009-07-28 18:20:25 +02005911static unsigned long stac9872_capvols[] = {
5912 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT),
5913};
5914#define stac9872_capsws stac9872_capvols
5915
Takashi Iwai307282c2009-03-12 18:17:58 +01005916static unsigned int stac9872_vaio_pin_configs[9] = {
5917 0x03211020, 0x411111f0, 0x411111f0, 0x03a15030,
5918 0x411111f0, 0x90170110, 0x411111f0, 0x411111f0,
5919 0x90a7013e
5920};
5921
5922static const char *stac9872_models[STAC_9872_MODELS] = {
5923 [STAC_9872_AUTO] = "auto",
5924 [STAC_9872_VAIO] = "vaio",
5925};
5926
5927static unsigned int *stac9872_brd_tbl[STAC_9872_MODELS] = {
5928 [STAC_9872_VAIO] = stac9872_vaio_pin_configs,
5929};
5930
5931static struct snd_pci_quirk stac9872_cfg_tbl[] = {
Takashi Iwaib04add92009-07-20 08:01:36 +02005932 SND_PCI_QUIRK_MASK(0x104d, 0xfff0, 0x81e0,
5933 "Sony VAIO F/S", STAC_9872_VAIO),
Takashi Iwai307282c2009-03-12 18:17:58 +01005934 {} /* terminator */
5935};
5936
Guillaume Munch6d859062006-08-22 17:15:47 +02005937static int patch_stac9872(struct hda_codec *codec)
Takashi Iwaidb064e52006-03-16 16:04:58 +01005938{
5939 struct sigmatel_spec *spec;
Takashi Iwai1e137f92009-01-21 07:41:22 +01005940 int err;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005941
Takashi Iwaidb064e52006-03-16 16:04:58 +01005942 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5943 if (spec == NULL)
5944 return -ENOMEM;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005945 codec->spec = spec;
Takashi Iwaib04add92009-07-20 08:01:36 +02005946 spec->num_pins = ARRAY_SIZE(stac9872_pin_nids);
5947 spec->pin_nids = stac9872_pin_nids;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005948
5949 spec->board_config = snd_hda_check_board_config(codec, STAC_9872_MODELS,
5950 stac9872_models,
5951 stac9872_cfg_tbl);
Takashi Iwai307282c2009-03-12 18:17:58 +01005952 if (spec->board_config < 0)
Takashi Iwai9a11f1a2009-07-28 16:01:20 +02005953 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5954 codec->chip_name);
Takashi Iwai307282c2009-03-12 18:17:58 +01005955 else
5956 stac92xx_set_config_regs(codec,
5957 stac9872_brd_tbl[spec->board_config]);
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005958
Takashi Iwai1e137f92009-01-21 07:41:22 +01005959 spec->multiout.dac_nids = spec->dac_nids;
5960 spec->num_adcs = ARRAY_SIZE(stac9872_adc_nids);
5961 spec->adc_nids = stac9872_adc_nids;
5962 spec->num_muxes = ARRAY_SIZE(stac9872_mux_nids);
5963 spec->mux_nids = stac9872_mux_nids;
Takashi Iwai1e137f92009-01-21 07:41:22 +01005964 spec->init = stac9872_core_init;
Takashi Iwai6479c632009-07-28 18:20:25 +02005965 spec->num_caps = 1;
5966 spec->capvols = stac9872_capvols;
5967 spec->capsws = stac9872_capsws;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005968
Takashi Iwai1e137f92009-01-21 07:41:22 +01005969 err = stac92xx_parse_auto_config(codec, 0x10, 0x12);
5970 if (err < 0) {
5971 stac92xx_free(codec);
5972 return -EINVAL;
Takashi Iwaicaa10b62009-01-20 17:19:01 +01005973 }
Takashi Iwai1e137f92009-01-21 07:41:22 +01005974 spec->input_mux = &spec->private_imux;
5975 codec->patch_ops = stac92xx_patch_ops;
Takashi Iwaidb064e52006-03-16 16:04:58 +01005976 return 0;
5977}
5978
5979
5980/*
Matt2f2f4252005-04-13 14:45:30 +02005981 * patch entries
5982 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005983static struct hda_codec_preset snd_hda_preset_sigmatel[] = {
Matt2f2f4252005-04-13 14:45:30 +02005984 { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 },
5985 { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x },
5986 { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x },
5987 { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x },
5988 { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x },
5989 { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x },
5990 { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x },
Matt Porter22a27c72006-07-06 18:49:10 +02005991 { .id = 0x83847618, .name = "STAC9227", .patch = patch_stac927x },
5992 { .id = 0x83847619, .name = "STAC9227", .patch = patch_stac927x },
5993 { .id = 0x83847616, .name = "STAC9228", .patch = patch_stac927x },
5994 { .id = 0x83847617, .name = "STAC9228", .patch = patch_stac927x },
5995 { .id = 0x83847614, .name = "STAC9229", .patch = patch_stac927x },
5996 { .id = 0x83847615, .name = "STAC9229", .patch = patch_stac927x },
Matt Porter3cc08dc2006-01-23 15:27:49 +01005997 { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x },
5998 { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x },
5999 { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x },
6000 { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x },
6001 { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x },
6002 { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x },
6003 { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x },
6004 { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x },
6005 { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x },
6006 { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x },
Tobin Davis8e21c342007-01-08 11:04:17 +01006007 { .id = 0x83847632, .name = "STAC9202", .patch = patch_stac925x },
6008 { .id = 0x83847633, .name = "STAC9202D", .patch = patch_stac925x },
6009 { .id = 0x83847634, .name = "STAC9250", .patch = patch_stac925x },
6010 { .id = 0x83847635, .name = "STAC9250D", .patch = patch_stac925x },
6011 { .id = 0x83847636, .name = "STAC9251", .patch = patch_stac925x },
6012 { .id = 0x83847637, .name = "STAC9250D", .patch = patch_stac925x },
Takashi Iwai7bd3c0f2008-05-02 12:28:02 +02006013 { .id = 0x83847645, .name = "92HD206X", .patch = patch_stac927x },
6014 { .id = 0x83847646, .name = "92HD206D", .patch = patch_stac927x },
Guillaume Munch6d859062006-08-22 17:15:47 +02006015 /* The following does not take into account .id=0x83847661 when subsys =
6016 * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are
6017 * currently not fully supported.
6018 */
6019 { .id = 0x83847661, .name = "CXD9872RD/K", .patch = patch_stac9872 },
6020 { .id = 0x83847662, .name = "STAC9872AK", .patch = patch_stac9872 },
6021 { .id = 0x83847664, .name = "CXD9872AKD", .patch = patch_stac9872 },
Simos Xenitellisa5c0f882009-06-10 16:33:31 +01006022 { .id = 0x83847698, .name = "STAC9205", .patch = patch_stac9205 },
Matt Porterf3302a52006-07-31 12:49:34 +02006023 { .id = 0x838476a0, .name = "STAC9205", .patch = patch_stac9205 },
6024 { .id = 0x838476a1, .name = "STAC9205D", .patch = patch_stac9205 },
6025 { .id = 0x838476a2, .name = "STAC9204", .patch = patch_stac9205 },
6026 { .id = 0x838476a3, .name = "STAC9204D", .patch = patch_stac9205 },
6027 { .id = 0x838476a4, .name = "STAC9255", .patch = patch_stac9205 },
6028 { .id = 0x838476a5, .name = "STAC9255D", .patch = patch_stac9205 },
6029 { .id = 0x838476a6, .name = "STAC9254", .patch = patch_stac9205 },
6030 { .id = 0x838476a7, .name = "STAC9254D", .patch = patch_stac9205 },
Matthew Ranostayaafc4412008-06-13 18:04:33 +02006031 { .id = 0x111d7603, .name = "92HD75B3X5", .patch = patch_stac92hd71bxx},
Matthew Ranostayd0513fc2008-07-27 10:30:30 +02006032 { .id = 0x111d7604, .name = "92HD83C1X5", .patch = patch_stac92hd83xxx},
6033 { .id = 0x111d7605, .name = "92HD81B1X5", .patch = patch_stac92hd83xxx},
Matthew Ranostayff2e7332009-04-01 14:49:48 -04006034 { .id = 0x111d76d5, .name = "92HD81B1C5", .patch = patch_stac92hd83xxx},
Matthew Ranostayaafc4412008-06-13 18:04:33 +02006035 { .id = 0x111d7608, .name = "92HD75B2X5", .patch = patch_stac92hd71bxx},
Matthew Ranostay541eee82007-12-14 12:08:04 +01006036 { .id = 0x111d7674, .name = "92HD73D1X5", .patch = patch_stac92hd73xx },
6037 { .id = 0x111d7675, .name = "92HD73C1X5", .patch = patch_stac92hd73xx },
Matthew Ranostaye1f0d662007-12-13 17:47:21 +01006038 { .id = 0x111d7676, .name = "92HD73E1X5", .patch = patch_stac92hd73xx },
Matthew Ranostay541eee82007-12-14 12:08:04 +01006039 { .id = 0x111d76b0, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
6040 { .id = 0x111d76b1, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
6041 { .id = 0x111d76b2, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
6042 { .id = 0x111d76b3, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
6043 { .id = 0x111d76b4, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
6044 { .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
6045 { .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
6046 { .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
Matt2f2f4252005-04-13 14:45:30 +02006047 {} /* terminator */
6048};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01006049
6050MODULE_ALIAS("snd-hda-codec-id:8384*");
6051MODULE_ALIAS("snd-hda-codec-id:111d*");
6052
6053MODULE_LICENSE("GPL");
6054MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec");
6055
6056static struct hda_codec_preset_list sigmatel_list = {
6057 .preset = snd_hda_preset_sigmatel,
6058 .owner = THIS_MODULE,
6059};
6060
6061static int __init patch_sigmatel_init(void)
6062{
6063 return snd_hda_add_codec_preset(&sigmatel_list);
6064}
6065
6066static void __exit patch_sigmatel_exit(void)
6067{
6068 snd_hda_delete_codec_preset(&sigmatel_list);
6069}
6070
6071module_init(patch_sigmatel_init)
6072module_exit(patch_sigmatel_exit)