Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1 | /* |
| 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 Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 7 | * Matt Porter <mporter@embeddedalley.com> |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 8 | * |
| 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 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 27 | #include <linux/init.h> |
| 28 | #include <linux/delay.h> |
| 29 | #include <linux/slab.h> |
| 30 | #include <linux/pci.h> |
| 31 | #include <sound/core.h> |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 32 | #include <sound/asoundef.h> |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 33 | #include "hda_codec.h" |
| 34 | #include "hda_local.h" |
Harvey Harrison | 3c9a320 | 2008-02-29 11:59:26 +0100 | [diff] [blame] | 35 | #include "hda_patch.h" |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 36 | #include "hda_beep.h" |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 37 | |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 38 | #define NUM_CONTROL_ALLOC 32 |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 39 | #define STAC_PWR_EVENT 0x20 |
| 40 | #define STAC_HP_EVENT 0x30 |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 41 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 42 | enum { |
| 43 | STAC_REF, |
Tobin Davis | bf27778 | 2008-02-03 20:31:47 +0100 | [diff] [blame] | 44 | STAC_9200_OQO, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 45 | STAC_9200_DELL_D21, |
| 46 | STAC_9200_DELL_D22, |
| 47 | STAC_9200_DELL_D23, |
| 48 | STAC_9200_DELL_M21, |
| 49 | STAC_9200_DELL_M22, |
| 50 | STAC_9200_DELL_M23, |
| 51 | STAC_9200_DELL_M24, |
| 52 | STAC_9200_DELL_M25, |
| 53 | STAC_9200_DELL_M26, |
| 54 | STAC_9200_DELL_M27, |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 55 | STAC_9200_GATEWAY, |
Takashi Iwai | 117f257 | 2008-03-18 09:53:23 +0100 | [diff] [blame] | 56 | STAC_9200_PANASONIC, |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 57 | STAC_9200_MODELS |
| 58 | }; |
| 59 | |
| 60 | enum { |
| 61 | STAC_9205_REF, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 62 | STAC_9205_DELL_M42, |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 63 | STAC_9205_DELL_M43, |
| 64 | STAC_9205_DELL_M44, |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 65 | STAC_9205_MODELS |
| 66 | }; |
| 67 | |
| 68 | enum { |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 69 | STAC_92HD73XX_REF, |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 70 | STAC_DELL_M6, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 71 | STAC_92HD73XX_MODELS |
| 72 | }; |
| 73 | |
| 74 | enum { |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 75 | STAC_92HD83XXX_REF, |
| 76 | STAC_92HD83XXX_MODELS |
| 77 | }; |
| 78 | |
| 79 | enum { |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 80 | STAC_92HD71BXX_REF, |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 81 | STAC_DELL_M4_1, |
| 82 | STAC_DELL_M4_2, |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 83 | STAC_92HD71BXX_MODELS |
| 84 | }; |
| 85 | |
| 86 | enum { |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 87 | STAC_925x_REF, |
| 88 | STAC_M2_2, |
| 89 | STAC_MA6, |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 90 | STAC_PA6, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 91 | STAC_925x_MODELS |
| 92 | }; |
| 93 | |
| 94 | enum { |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 95 | STAC_D945_REF, |
| 96 | STAC_D945GTP3, |
| 97 | STAC_D945GTP5, |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 98 | STAC_INTEL_MAC_V1, |
| 99 | STAC_INTEL_MAC_V2, |
| 100 | STAC_INTEL_MAC_V3, |
| 101 | STAC_INTEL_MAC_V4, |
| 102 | STAC_INTEL_MAC_V5, |
Nicolas Boichat | 536319a | 2008-07-21 22:18:01 +0800 | [diff] [blame] | 103 | STAC_INTEL_MAC_AUTO, /* This model is selected if no module parameter |
| 104 | * is given, one of the above models will be |
| 105 | * chosen according to the subsystem id. */ |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 106 | /* for backward compatibility */ |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 107 | STAC_MACMINI, |
Takashi Iwai | 3fc24d8 | 2007-02-16 13:27:18 +0100 | [diff] [blame] | 108 | STAC_MACBOOK, |
Nicolas Boichat | 6f0778d | 2007-03-15 12:38:15 +0100 | [diff] [blame] | 109 | STAC_MACBOOK_PRO_V1, |
| 110 | STAC_MACBOOK_PRO_V2, |
Sylvain FORET | f16928f | 2007-04-27 14:22:36 +0200 | [diff] [blame] | 111 | STAC_IMAC_INTEL, |
Takashi Iwai | 0dae0f8 | 2007-05-21 12:41:29 +0200 | [diff] [blame] | 112 | STAC_IMAC_INTEL_20, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 113 | STAC_922X_DELL_D81, |
| 114 | STAC_922X_DELL_D82, |
| 115 | STAC_922X_DELL_M81, |
| 116 | STAC_922X_DELL_M82, |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 117 | STAC_922X_MODELS |
| 118 | }; |
| 119 | |
| 120 | enum { |
| 121 | STAC_D965_REF, |
| 122 | STAC_D965_3ST, |
| 123 | STAC_D965_5ST, |
Tobin Davis | 4ff076e | 2007-08-07 11:48:12 +0200 | [diff] [blame] | 124 | STAC_DELL_3ST, |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 125 | STAC_DELL_BIOS, |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 126 | STAC_927X_MODELS |
| 127 | }; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 128 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 129 | struct sigmatel_spec { |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 130 | struct snd_kcontrol_new *mixers[4]; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 131 | unsigned int num_mixers; |
| 132 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 133 | int board_config; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 134 | unsigned int surr_switch: 1; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 135 | unsigned int line_switch: 1; |
| 136 | unsigned int mic_switch: 1; |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 137 | unsigned int alt_switch: 1; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 138 | unsigned int hp_detect: 1; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 139 | |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 140 | /* gpio lines */ |
Matthew Ranostay | 0fc9dec | 2008-04-14 13:32:54 +0200 | [diff] [blame] | 141 | unsigned int eapd_mask; |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 142 | unsigned int gpio_mask; |
| 143 | unsigned int gpio_dir; |
| 144 | unsigned int gpio_data; |
| 145 | unsigned int gpio_mute; |
| 146 | |
| 147 | /* analog loopback */ |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 148 | unsigned char aloopback_mask; |
| 149 | unsigned char aloopback_shift; |
Takashi Iwai | 8259980 | 2007-07-31 15:56:24 +0200 | [diff] [blame] | 150 | |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 151 | /* power management */ |
| 152 | unsigned int num_pwrs; |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 153 | unsigned int *pwr_mapping; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 154 | hda_nid_t *pwr_nids; |
Matthew Ranostay | b76c850 | 2008-02-06 14:49:44 +0100 | [diff] [blame] | 155 | hda_nid_t *dac_list; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 156 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 157 | /* playback */ |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 158 | struct hda_input_mux *mono_mux; |
| 159 | unsigned int cur_mmux; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 160 | struct hda_multi_out multiout; |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 161 | hda_nid_t dac_nids[5]; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 162 | |
| 163 | /* capture */ |
| 164 | hda_nid_t *adc_nids; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 165 | unsigned int num_adcs; |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 166 | hda_nid_t *mux_nids; |
| 167 | unsigned int num_muxes; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 168 | hda_nid_t *dmic_nids; |
| 169 | unsigned int num_dmics; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 170 | hda_nid_t *dmux_nids; |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 171 | unsigned int num_dmuxes; |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 172 | hda_nid_t dig_in_nid; |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 173 | hda_nid_t mono_nid; |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 174 | hda_nid_t anabeep_nid; |
| 175 | hda_nid_t digbeep_nid; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 176 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 177 | /* pin widgets */ |
| 178 | hda_nid_t *pin_nids; |
| 179 | unsigned int num_pins; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 180 | unsigned int *pin_configs; |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 181 | unsigned int *bios_pin_configs; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 182 | |
| 183 | /* codec specific stuff */ |
| 184 | struct hda_verb *init; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 185 | struct snd_kcontrol_new *mixer; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 186 | |
| 187 | /* capture source */ |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 188 | struct hda_input_mux *dinput_mux; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 189 | unsigned int cur_dmux[2]; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 190 | struct hda_input_mux *input_mux; |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 191 | unsigned int cur_mux[3]; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 192 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 193 | /* i/o switches */ |
| 194 | unsigned int io_switch[2]; |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 195 | unsigned int clfe_swap; |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 196 | unsigned int hp_switch; |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 197 | unsigned int aloopback; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 198 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 199 | struct hda_pcm pcm_rec[2]; /* PCM information */ |
| 200 | |
| 201 | /* dynamic controls and input_mux */ |
| 202 | struct auto_pin_cfg autocfg; |
| 203 | unsigned int num_kctl_alloc, num_kctl_used; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 204 | struct snd_kcontrol_new *kctl_alloc; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 205 | struct hda_input_mux private_dimux; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 206 | struct hda_input_mux private_imux; |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 207 | struct hda_input_mux private_mono_mux; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 208 | }; |
| 209 | |
| 210 | static hda_nid_t stac9200_adc_nids[1] = { |
| 211 | 0x03, |
| 212 | }; |
| 213 | |
| 214 | static hda_nid_t stac9200_mux_nids[1] = { |
| 215 | 0x0c, |
| 216 | }; |
| 217 | |
| 218 | static hda_nid_t stac9200_dac_nids[1] = { |
| 219 | 0x02, |
| 220 | }; |
| 221 | |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 222 | static hda_nid_t stac92hd73xx_pwr_nids[8] = { |
| 223 | 0x0a, 0x0b, 0x0c, 0xd, 0x0e, |
| 224 | 0x0f, 0x10, 0x11 |
| 225 | }; |
| 226 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 227 | static hda_nid_t stac92hd73xx_adc_nids[2] = { |
| 228 | 0x1a, 0x1b |
| 229 | }; |
| 230 | |
| 231 | #define STAC92HD73XX_NUM_DMICS 2 |
| 232 | static hda_nid_t stac92hd73xx_dmic_nids[STAC92HD73XX_NUM_DMICS + 1] = { |
| 233 | 0x13, 0x14, 0 |
| 234 | }; |
| 235 | |
| 236 | #define STAC92HD73_DAC_COUNT 5 |
| 237 | static hda_nid_t stac92hd73xx_dac_nids[STAC92HD73_DAC_COUNT] = { |
| 238 | 0x15, 0x16, 0x17, 0x18, 0x19, |
| 239 | }; |
| 240 | |
| 241 | static hda_nid_t stac92hd73xx_mux_nids[4] = { |
| 242 | 0x28, 0x29, 0x2a, 0x2b, |
| 243 | }; |
| 244 | |
| 245 | static hda_nid_t stac92hd73xx_dmux_nids[2] = { |
| 246 | 0x20, 0x21, |
| 247 | }; |
| 248 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 249 | #define STAC92HD83XXX_NUM_DMICS 2 |
| 250 | static hda_nid_t stac92hd83xxx_dmic_nids[STAC92HD83XXX_NUM_DMICS + 1] = { |
| 251 | 0x11, 0x12, 0 |
| 252 | }; |
| 253 | |
| 254 | #define STAC92HD81_DAC_COUNT 2 |
| 255 | #define STAC92HD83_DAC_COUNT 3 |
| 256 | static hda_nid_t stac92hd83xxx_dac_nids[STAC92HD73_DAC_COUNT] = { |
| 257 | 0x13, 0x14, 0x22, |
| 258 | }; |
| 259 | |
| 260 | static hda_nid_t stac92hd83xxx_dmux_nids[2] = { |
| 261 | 0x17, 0x18, |
| 262 | }; |
| 263 | |
| 264 | static hda_nid_t stac92hd83xxx_adc_nids[2] = { |
| 265 | 0x15, 0x16, |
| 266 | }; |
| 267 | |
| 268 | static hda_nid_t stac92hd83xxx_pwr_nids[4] = { |
| 269 | 0xa, 0xb, 0xd, 0xe, |
| 270 | }; |
| 271 | |
| 272 | static unsigned int stac92hd83xxx_pwr_mapping[4] = { |
| 273 | 0x03, 0x0c, 0x10, 0x40, |
| 274 | }; |
| 275 | |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 276 | static hda_nid_t stac92hd71bxx_pwr_nids[3] = { |
| 277 | 0x0a, 0x0d, 0x0f |
| 278 | }; |
| 279 | |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 280 | static hda_nid_t stac92hd71bxx_adc_nids[2] = { |
| 281 | 0x12, 0x13, |
| 282 | }; |
| 283 | |
| 284 | static hda_nid_t stac92hd71bxx_mux_nids[2] = { |
| 285 | 0x1a, 0x1b |
| 286 | }; |
| 287 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 288 | static hda_nid_t stac92hd71bxx_dmux_nids[1] = { |
| 289 | 0x1c, |
| 290 | }; |
| 291 | |
Takashi Iwai | aea7bb0 | 2008-02-25 18:26:41 +0100 | [diff] [blame] | 292 | static hda_nid_t stac92hd71bxx_dac_nids[1] = { |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 293 | 0x10, /*0x11, */ |
| 294 | }; |
| 295 | |
| 296 | #define STAC92HD71BXX_NUM_DMICS 2 |
| 297 | static hda_nid_t stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS + 1] = { |
| 298 | 0x18, 0x19, 0 |
| 299 | }; |
| 300 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 301 | static hda_nid_t stac925x_adc_nids[1] = { |
| 302 | 0x03, |
| 303 | }; |
| 304 | |
| 305 | static hda_nid_t stac925x_mux_nids[1] = { |
| 306 | 0x0f, |
| 307 | }; |
| 308 | |
| 309 | static hda_nid_t stac925x_dac_nids[1] = { |
| 310 | 0x02, |
| 311 | }; |
| 312 | |
Takashi Iwai | f6e9852 | 2007-10-16 14:27:04 +0200 | [diff] [blame] | 313 | #define STAC925X_NUM_DMICS 1 |
| 314 | static hda_nid_t stac925x_dmic_nids[STAC925X_NUM_DMICS + 1] = { |
| 315 | 0x15, 0 |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 316 | }; |
| 317 | |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 318 | static hda_nid_t stac925x_dmux_nids[1] = { |
| 319 | 0x14, |
| 320 | }; |
| 321 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 322 | static hda_nid_t stac922x_adc_nids[2] = { |
| 323 | 0x06, 0x07, |
| 324 | }; |
| 325 | |
| 326 | static hda_nid_t stac922x_mux_nids[2] = { |
| 327 | 0x12, 0x13, |
| 328 | }; |
| 329 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 330 | static hda_nid_t stac927x_adc_nids[3] = { |
| 331 | 0x07, 0x08, 0x09 |
| 332 | }; |
| 333 | |
| 334 | static hda_nid_t stac927x_mux_nids[3] = { |
| 335 | 0x15, 0x16, 0x17 |
| 336 | }; |
| 337 | |
Matthew Ranostay | b76c850 | 2008-02-06 14:49:44 +0100 | [diff] [blame] | 338 | static hda_nid_t stac927x_dac_nids[6] = { |
| 339 | 0x02, 0x03, 0x04, 0x05, 0x06, 0 |
| 340 | }; |
| 341 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 342 | static hda_nid_t stac927x_dmux_nids[1] = { |
| 343 | 0x1b, |
| 344 | }; |
| 345 | |
Matthew Ranostay | 7f16859 | 2007-10-18 17:38:17 +0200 | [diff] [blame] | 346 | #define STAC927X_NUM_DMICS 2 |
| 347 | static hda_nid_t stac927x_dmic_nids[STAC927X_NUM_DMICS + 1] = { |
| 348 | 0x13, 0x14, 0 |
| 349 | }; |
| 350 | |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 351 | static hda_nid_t stac9205_adc_nids[2] = { |
| 352 | 0x12, 0x13 |
| 353 | }; |
| 354 | |
| 355 | static hda_nid_t stac9205_mux_nids[2] = { |
| 356 | 0x19, 0x1a |
| 357 | }; |
| 358 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 359 | static hda_nid_t stac9205_dmux_nids[1] = { |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 360 | 0x1d, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 361 | }; |
| 362 | |
Takashi Iwai | f6e9852 | 2007-10-16 14:27:04 +0200 | [diff] [blame] | 363 | #define STAC9205_NUM_DMICS 2 |
| 364 | static hda_nid_t stac9205_dmic_nids[STAC9205_NUM_DMICS + 1] = { |
| 365 | 0x17, 0x18, 0 |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 366 | }; |
| 367 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 368 | static hda_nid_t stac9200_pin_nids[8] = { |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 369 | 0x08, 0x09, 0x0d, 0x0e, |
| 370 | 0x0f, 0x10, 0x11, 0x12, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 371 | }; |
| 372 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 373 | static hda_nid_t stac925x_pin_nids[8] = { |
| 374 | 0x07, 0x08, 0x0a, 0x0b, |
| 375 | 0x0c, 0x0d, 0x10, 0x11, |
| 376 | }; |
| 377 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 378 | static hda_nid_t stac922x_pin_nids[10] = { |
| 379 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, |
| 380 | 0x0f, 0x10, 0x11, 0x15, 0x1b, |
| 381 | }; |
| 382 | |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 383 | static hda_nid_t stac92hd73xx_pin_nids[13] = { |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 384 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, |
| 385 | 0x0f, 0x10, 0x11, 0x12, 0x13, |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 386 | 0x14, 0x1e, 0x22 |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 387 | }; |
| 388 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 389 | static hda_nid_t stac92hd83xxx_pin_nids[14] = { |
| 390 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, |
| 391 | 0x0f, 0x10, 0x11, 0x12, 0x13, |
| 392 | 0x1d, 0x1e, 0x1f, 0x20 |
| 393 | }; |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 394 | static hda_nid_t stac92hd71bxx_pin_nids[10] = { |
| 395 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, |
| 396 | 0x0f, 0x14, 0x18, 0x19, 0x1e, |
| 397 | }; |
| 398 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 399 | static hda_nid_t stac927x_pin_nids[14] = { |
| 400 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, |
| 401 | 0x0f, 0x10, 0x11, 0x12, 0x13, |
| 402 | 0x14, 0x21, 0x22, 0x23, |
| 403 | }; |
| 404 | |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 405 | static hda_nid_t stac9205_pin_nids[12] = { |
| 406 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, |
| 407 | 0x0f, 0x14, 0x16, 0x17, 0x18, |
| 408 | 0x21, 0x22, |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 409 | }; |
| 410 | |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 411 | static int stac92xx_dmux_enum_info(struct snd_kcontrol *kcontrol, |
| 412 | struct snd_ctl_elem_info *uinfo) |
| 413 | { |
| 414 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 415 | struct sigmatel_spec *spec = codec->spec; |
| 416 | return snd_hda_input_mux_info(spec->dinput_mux, uinfo); |
| 417 | } |
| 418 | |
| 419 | static int stac92xx_dmux_enum_get(struct snd_kcontrol *kcontrol, |
| 420 | struct snd_ctl_elem_value *ucontrol) |
| 421 | { |
| 422 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 423 | struct sigmatel_spec *spec = codec->spec; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 424 | unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 425 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 426 | ucontrol->value.enumerated.item[0] = spec->cur_dmux[dmux_idx]; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 427 | return 0; |
| 428 | } |
| 429 | |
| 430 | static int stac92xx_dmux_enum_put(struct snd_kcontrol *kcontrol, |
| 431 | struct snd_ctl_elem_value *ucontrol) |
| 432 | { |
| 433 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 434 | struct sigmatel_spec *spec = codec->spec; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 435 | unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 436 | |
| 437 | return snd_hda_input_mux_put(codec, spec->dinput_mux, ucontrol, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 438 | spec->dmux_nids[dmux_idx], &spec->cur_dmux[dmux_idx]); |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 439 | } |
| 440 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 441 | static int stac92xx_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 442 | { |
| 443 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 444 | struct sigmatel_spec *spec = codec->spec; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 445 | return snd_hda_input_mux_info(spec->input_mux, uinfo); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 446 | } |
| 447 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 448 | static int stac92xx_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 449 | { |
| 450 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 451 | struct sigmatel_spec *spec = codec->spec; |
| 452 | unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
| 453 | |
| 454 | ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx]; |
| 455 | return 0; |
| 456 | } |
| 457 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 458 | static int stac92xx_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 459 | { |
| 460 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 461 | struct sigmatel_spec *spec = codec->spec; |
| 462 | unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
| 463 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 464 | return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 465 | spec->mux_nids[adc_idx], &spec->cur_mux[adc_idx]); |
| 466 | } |
| 467 | |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 468 | static int stac92xx_mono_mux_enum_info(struct snd_kcontrol *kcontrol, |
| 469 | struct snd_ctl_elem_info *uinfo) |
| 470 | { |
| 471 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 472 | struct sigmatel_spec *spec = codec->spec; |
| 473 | return snd_hda_input_mux_info(spec->mono_mux, uinfo); |
| 474 | } |
| 475 | |
| 476 | static int stac92xx_mono_mux_enum_get(struct snd_kcontrol *kcontrol, |
| 477 | struct snd_ctl_elem_value *ucontrol) |
| 478 | { |
| 479 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 480 | struct sigmatel_spec *spec = codec->spec; |
| 481 | |
| 482 | ucontrol->value.enumerated.item[0] = spec->cur_mmux; |
| 483 | return 0; |
| 484 | } |
| 485 | |
| 486 | static int stac92xx_mono_mux_enum_put(struct snd_kcontrol *kcontrol, |
| 487 | struct snd_ctl_elem_value *ucontrol) |
| 488 | { |
| 489 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 490 | struct sigmatel_spec *spec = codec->spec; |
| 491 | |
| 492 | return snd_hda_input_mux_put(codec, spec->mono_mux, ucontrol, |
| 493 | spec->mono_nid, &spec->cur_mmux); |
| 494 | } |
| 495 | |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 496 | #define stac92xx_aloopback_info snd_ctl_boolean_mono_info |
| 497 | |
| 498 | static int stac92xx_aloopback_get(struct snd_kcontrol *kcontrol, |
| 499 | struct snd_ctl_elem_value *ucontrol) |
| 500 | { |
| 501 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 502 | unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 503 | struct sigmatel_spec *spec = codec->spec; |
| 504 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 505 | ucontrol->value.integer.value[0] = !!(spec->aloopback & |
| 506 | (spec->aloopback_mask << idx)); |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 507 | return 0; |
| 508 | } |
| 509 | |
| 510 | static int stac92xx_aloopback_put(struct snd_kcontrol *kcontrol, |
| 511 | struct snd_ctl_elem_value *ucontrol) |
| 512 | { |
| 513 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 514 | struct sigmatel_spec *spec = codec->spec; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 515 | unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 516 | unsigned int dac_mode; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 517 | unsigned int val, idx_val; |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 518 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 519 | idx_val = spec->aloopback_mask << idx; |
| 520 | if (ucontrol->value.integer.value[0]) |
| 521 | val = spec->aloopback | idx_val; |
| 522 | else |
| 523 | val = spec->aloopback & ~idx_val; |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 524 | if (spec->aloopback == val) |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 525 | return 0; |
| 526 | |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 527 | spec->aloopback = val; |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 528 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 529 | /* Only return the bits defined by the shift value of the |
| 530 | * first two bytes of the mask |
| 531 | */ |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 532 | dac_mode = snd_hda_codec_read(codec, codec->afg, 0, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 533 | kcontrol->private_value & 0xFFFF, 0x0); |
| 534 | dac_mode >>= spec->aloopback_shift; |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 535 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 536 | if (spec->aloopback & idx_val) { |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 537 | snd_hda_power_up(codec); |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 538 | dac_mode |= idx_val; |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 539 | } else { |
| 540 | snd_hda_power_down(codec); |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 541 | dac_mode &= ~idx_val; |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 542 | } |
| 543 | |
| 544 | snd_hda_codec_write_cache(codec, codec->afg, 0, |
| 545 | kcontrol->private_value >> 16, dac_mode); |
| 546 | |
| 547 | return 1; |
| 548 | } |
| 549 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 550 | static struct hda_verb stac9200_core_init[] = { |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 551 | /* set dac0mux for dac converter */ |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 552 | { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00}, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 553 | {} |
| 554 | }; |
| 555 | |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 556 | static struct hda_verb stac9200_eapd_init[] = { |
| 557 | /* set dac0mux for dac converter */ |
| 558 | {0x07, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 559 | {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02}, |
| 560 | {} |
| 561 | }; |
| 562 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 563 | static struct hda_verb stac92hd73xx_6ch_core_init[] = { |
| 564 | /* set master volume and direct control */ |
| 565 | { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
| 566 | /* setup audio connections */ |
| 567 | { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 568 | { 0x10, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 569 | { 0x11, AC_VERB_SET_CONNECT_SEL, 0x02}, |
| 570 | /* setup adcs to point to mixer */ |
| 571 | { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b}, |
| 572 | { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b}, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 573 | { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 574 | { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 575 | { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 576 | /* setup import muxs */ |
| 577 | { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 578 | { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 579 | { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 580 | { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 581 | {} |
| 582 | }; |
| 583 | |
Matthew Ranostay | d654a66 | 2008-03-14 08:46:51 +0100 | [diff] [blame] | 584 | static struct hda_verb dell_eq_core_init[] = { |
| 585 | /* set master volume to max value without distortion |
| 586 | * and direct control */ |
| 587 | { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec}, |
| 588 | /* setup audio connections */ |
| 589 | { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 590 | { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 591 | { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x02}, |
| 592 | /* setup adcs to point to mixer */ |
| 593 | { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b}, |
| 594 | { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b}, |
| 595 | /* setup import muxs */ |
| 596 | { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 597 | { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 598 | { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 599 | { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 600 | {} |
| 601 | }; |
| 602 | |
Matthew Ranostay | 52fe0f9 | 2008-02-29 12:08:20 +0100 | [diff] [blame] | 603 | static struct hda_verb dell_m6_core_init[] = { |
Matthew Ranostay | 20f5f95 | 2008-09-01 08:17:56 +0200 | [diff] [blame] | 604 | /* set master volume to max value without distortion |
| 605 | * and direct control */ |
| 606 | { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec}, |
Matthew Ranostay | 52fe0f9 | 2008-02-29 12:08:20 +0100 | [diff] [blame] | 607 | /* setup audio connections */ |
Matthew Ranostay | 7747ecc | 2008-03-10 11:30:04 +0100 | [diff] [blame] | 608 | { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 609 | { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x01}, |
Matthew Ranostay | 52fe0f9 | 2008-02-29 12:08:20 +0100 | [diff] [blame] | 610 | { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x02}, |
| 611 | /* setup adcs to point to mixer */ |
| 612 | { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b}, |
| 613 | { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b}, |
| 614 | /* setup import muxs */ |
| 615 | { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 616 | { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 617 | { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 618 | { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 619 | {} |
| 620 | }; |
| 621 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 622 | static struct hda_verb stac92hd73xx_8ch_core_init[] = { |
| 623 | /* set master volume and direct control */ |
| 624 | { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
| 625 | /* setup audio connections */ |
| 626 | { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 627 | { 0x10, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 628 | { 0x11, AC_VERB_SET_CONNECT_SEL, 0x02}, |
| 629 | /* connect hp ports to dac3 */ |
| 630 | { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x03}, |
| 631 | { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x03}, |
| 632 | /* setup adcs to point to mixer */ |
| 633 | { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b}, |
| 634 | { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b}, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 635 | { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 636 | { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 637 | { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 638 | /* setup import muxs */ |
| 639 | { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 640 | { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 641 | { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 642 | { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x03}, |
| 643 | {} |
| 644 | }; |
| 645 | |
| 646 | static struct hda_verb stac92hd73xx_10ch_core_init[] = { |
| 647 | /* set master volume and direct control */ |
| 648 | { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
| 649 | /* setup audio connections */ |
| 650 | { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 }, |
| 651 | { 0x10, AC_VERB_SET_CONNECT_SEL, 0x01 }, |
| 652 | { 0x11, AC_VERB_SET_CONNECT_SEL, 0x02 }, |
| 653 | /* dac3 is connected to import3 mux */ |
| 654 | { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0xb07f}, |
| 655 | /* connect hp ports to dac4 */ |
| 656 | { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x04}, |
| 657 | { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x04}, |
| 658 | /* setup adcs to point to mixer */ |
| 659 | { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b}, |
| 660 | { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b}, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 661 | { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 662 | { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 663 | { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
| 664 | /* setup import muxs */ |
| 665 | { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 666 | { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 667 | { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 668 | { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x03}, |
| 669 | {} |
| 670 | }; |
| 671 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 672 | static struct hda_verb stac92hd83xxx_core_init[] = { |
| 673 | /* start of config #1 */ |
| 674 | { 0xe, AC_VERB_SET_CONNECT_SEL, 0x3}, |
| 675 | |
| 676 | /* start of config #2 */ |
| 677 | { 0xa, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 678 | { 0xb, AC_VERB_SET_CONNECT_SEL, 0x0}, |
| 679 | { 0xd, AC_VERB_SET_CONNECT_SEL, 0x1}, |
| 680 | |
| 681 | /* power state controls amps */ |
| 682 | { 0x01, AC_VERB_SET_EAPD, 1 << 2}, |
| 683 | }; |
| 684 | |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 685 | static struct hda_verb stac92hd71bxx_core_init[] = { |
| 686 | /* set master volume and direct control */ |
| 687 | { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
| 688 | /* connect headphone jack to dac1 */ |
| 689 | { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x01}, |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 690 | { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, /* Speaker */ |
| 691 | /* unmute right and left channels for nodes 0x0a, 0xd, 0x0f */ |
| 692 | { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, |
| 693 | { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, |
| 694 | { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 695 | }; |
| 696 | |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 697 | #define HD_DISABLE_PORTF 3 |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 698 | static struct hda_verb stac92hd71bxx_analog_core_init[] = { |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 699 | /* start of config #1 */ |
| 700 | |
| 701 | /* connect port 0f to audio mixer */ |
| 702 | { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x2}, |
| 703 | { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, /* Speaker */ |
| 704 | /* unmute right and left channels for node 0x0f */ |
| 705 | { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, |
| 706 | /* start of config #2 */ |
| 707 | |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 708 | /* set master volume and direct control */ |
| 709 | { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
| 710 | /* connect headphone jack to dac1 */ |
| 711 | { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x01}, |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 712 | /* connect port 0d to audio mixer */ |
Matthew Ranostay | 9b35947 | 2007-11-07 13:03:12 +0100 | [diff] [blame] | 713 | { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x2}, |
Matthew Ranostay | 9b35947 | 2007-11-07 13:03:12 +0100 | [diff] [blame] | 714 | /* unmute dac0 input in audio mixer */ |
| 715 | { 0x17, AC_VERB_SET_AMP_GAIN_MUTE, 0x701f}, |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 716 | /* unmute right and left channels for nodes 0x0a, 0xd */ |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 717 | { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, |
| 718 | { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 719 | {} |
| 720 | }; |
| 721 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 722 | static struct hda_verb stac925x_core_init[] = { |
| 723 | /* set dac0mux for dac converter */ |
| 724 | { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 725 | {} |
| 726 | }; |
| 727 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 728 | static struct hda_verb stac922x_core_init[] = { |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 729 | /* set master volume and direct control */ |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 730 | { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 731 | {} |
| 732 | }; |
| 733 | |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 734 | static struct hda_verb d965_core_init[] = { |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 735 | /* set master volume and direct control */ |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 736 | { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 737 | /* unmute node 0x1b */ |
| 738 | { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000}, |
| 739 | /* select node 0x03 as DAC */ |
| 740 | { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 741 | {} |
| 742 | }; |
| 743 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 744 | static struct hda_verb stac927x_core_init[] = { |
| 745 | /* set master volume and direct control */ |
| 746 | { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 747 | /* enable analog pc beep path */ |
| 748 | { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5}, |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 749 | {} |
| 750 | }; |
| 751 | |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 752 | static struct hda_verb stac9205_core_init[] = { |
| 753 | /* set master volume and direct control */ |
| 754 | { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 755 | /* enable analog pc beep path */ |
| 756 | { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5}, |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 757 | {} |
| 758 | }; |
| 759 | |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 760 | #define STAC_MONO_MUX \ |
| 761 | { \ |
| 762 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| 763 | .name = "Mono Mux", \ |
| 764 | .count = 1, \ |
| 765 | .info = stac92xx_mono_mux_enum_info, \ |
| 766 | .get = stac92xx_mono_mux_enum_get, \ |
| 767 | .put = stac92xx_mono_mux_enum_put, \ |
| 768 | } |
| 769 | |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 770 | #define STAC_INPUT_SOURCE(cnt) \ |
Maxim Levitsky | ca7c5a8 | 2007-08-31 12:52:19 +0200 | [diff] [blame] | 771 | { \ |
| 772 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| 773 | .name = "Input Source", \ |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 774 | .count = cnt, \ |
Maxim Levitsky | ca7c5a8 | 2007-08-31 12:52:19 +0200 | [diff] [blame] | 775 | .info = stac92xx_mux_enum_info, \ |
| 776 | .get = stac92xx_mux_enum_get, \ |
| 777 | .put = stac92xx_mux_enum_put, \ |
| 778 | } |
| 779 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 780 | #define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \ |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 781 | { \ |
| 782 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| 783 | .name = "Analog Loopback", \ |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 784 | .count = cnt, \ |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 785 | .info = stac92xx_aloopback_info, \ |
| 786 | .get = stac92xx_aloopback_get, \ |
| 787 | .put = stac92xx_aloopback_put, \ |
| 788 | .private_value = verb_read | (verb_write << 16), \ |
| 789 | } |
| 790 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 791 | static struct snd_kcontrol_new stac9200_mixer[] = { |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 792 | HDA_CODEC_VOLUME("Master Playback Volume", 0xb, 0, HDA_OUTPUT), |
| 793 | HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT), |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 794 | STAC_INPUT_SOURCE(1), |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 795 | HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT), |
| 796 | HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT), |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 797 | HDA_CODEC_VOLUME("Capture Mux Volume", 0x0c, 0, HDA_OUTPUT), |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 798 | { } /* end */ |
| 799 | }; |
| 800 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 801 | static struct snd_kcontrol_new stac92hd73xx_6ch_mixer[] = { |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 802 | STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3), |
| 803 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 804 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT), |
| 805 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT), |
| 806 | |
| 807 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT), |
| 808 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT), |
| 809 | |
| 810 | HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT), |
| 811 | HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT), |
| 812 | |
| 813 | HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT), |
| 814 | HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT), |
| 815 | |
| 816 | HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT), |
| 817 | HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT), |
| 818 | |
| 819 | HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT), |
| 820 | HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT), |
| 821 | |
| 822 | HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT), |
| 823 | HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT), |
| 824 | { } /* end */ |
| 825 | }; |
| 826 | |
| 827 | static struct snd_kcontrol_new stac92hd73xx_8ch_mixer[] = { |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 828 | STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4), |
| 829 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 830 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT), |
| 831 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT), |
| 832 | |
| 833 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT), |
| 834 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT), |
| 835 | |
| 836 | HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT), |
| 837 | HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT), |
| 838 | |
| 839 | HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT), |
| 840 | HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT), |
| 841 | |
| 842 | HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT), |
| 843 | HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT), |
| 844 | |
| 845 | HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT), |
| 846 | HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT), |
| 847 | |
| 848 | HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT), |
| 849 | HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT), |
| 850 | { } /* end */ |
| 851 | }; |
| 852 | |
| 853 | static struct snd_kcontrol_new stac92hd73xx_10ch_mixer[] = { |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 854 | STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5), |
| 855 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 856 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT), |
| 857 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT), |
| 858 | |
| 859 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT), |
| 860 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT), |
| 861 | |
| 862 | HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT), |
| 863 | HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT), |
| 864 | |
| 865 | HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT), |
| 866 | HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT), |
| 867 | |
| 868 | HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT), |
| 869 | HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT), |
| 870 | |
| 871 | HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT), |
| 872 | HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT), |
| 873 | |
| 874 | HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT), |
| 875 | HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT), |
| 876 | { } /* end */ |
| 877 | }; |
| 878 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 879 | |
| 880 | static struct snd_kcontrol_new stac92hd83xxx_mixer[] = { |
| 881 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x17, 0x0, HDA_OUTPUT), |
| 882 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x17, 0x0, HDA_OUTPUT), |
| 883 | |
| 884 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x18, 0x0, HDA_OUTPUT), |
| 885 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x18, 0x0, HDA_OUTPUT), |
| 886 | |
| 887 | HDA_CODEC_VOLUME("DAC0 Capture Volume", 0x1b, 0, HDA_INPUT), |
| 888 | HDA_CODEC_MUTE("DAC0 Capture Switch", 0x1b, 0, HDA_INPUT), |
| 889 | |
| 890 | HDA_CODEC_VOLUME("DAC1 Capture Volume", 0x1b, 0x1, HDA_INPUT), |
| 891 | HDA_CODEC_MUTE("DAC1 Capture Switch", 0x1b, 0x1, HDA_INPUT), |
| 892 | |
| 893 | HDA_CODEC_VOLUME("Front Mic Capture Volume", 0x1b, 0x2, HDA_INPUT), |
| 894 | HDA_CODEC_MUTE("Front Mic Capture Switch", 0x1b, 0x2, HDA_INPUT), |
| 895 | |
| 896 | HDA_CODEC_VOLUME("Line In Capture Volume", 0x1b, 0x3, HDA_INPUT), |
| 897 | HDA_CODEC_MUTE("Line In Capture Switch", 0x1b, 0x3, HDA_INPUT), |
| 898 | |
| 899 | /* |
| 900 | HDA_CODEC_VOLUME("Mic Capture Volume", 0x1b, 0x4, HDA_INPUT), |
| 901 | HDA_CODEC_MUTE("Mic Capture Switch", 0x1b 0x4, HDA_INPUT), |
| 902 | */ |
| 903 | { } /* end */ |
| 904 | }; |
| 905 | |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 906 | static struct snd_kcontrol_new stac92hd71bxx_analog_mixer[] = { |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 907 | STAC_INPUT_SOURCE(2), |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 908 | |
Matthew Ranostay | 9b35947 | 2007-11-07 13:03:12 +0100 | [diff] [blame] | 909 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x1c, 0x0, HDA_OUTPUT), |
| 910 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1c, 0x0, HDA_OUTPUT), |
| 911 | HDA_CODEC_VOLUME_IDX("Capture Mux Volume", 0x0, 0x1a, 0x0, HDA_OUTPUT), |
| 912 | |
| 913 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x1d, 0x0, HDA_OUTPUT), |
| 914 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1d, 0x0, HDA_OUTPUT), |
| 915 | HDA_CODEC_VOLUME_IDX("Capture Mux Volume", 0x1, 0x1b, 0x0, HDA_OUTPUT), |
| 916 | |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 917 | /* analog pc-beep replaced with digital beep support */ |
| 918 | /* |
Matthew Ranostay | f7c5dda | 2008-07-10 17:49:11 +0200 | [diff] [blame] | 919 | HDA_CODEC_VOLUME("PC Beep Volume", 0x17, 0x2, HDA_INPUT), |
| 920 | HDA_CODEC_MUTE("PC Beep Switch", 0x17, 0x2, HDA_INPUT), |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 921 | */ |
Matthew Ranostay | f7c5dda | 2008-07-10 17:49:11 +0200 | [diff] [blame] | 922 | |
Matthew Ranostay | 9b35947 | 2007-11-07 13:03:12 +0100 | [diff] [blame] | 923 | HDA_CODEC_MUTE("Analog Loopback 1", 0x17, 0x3, HDA_INPUT), |
| 924 | HDA_CODEC_MUTE("Analog Loopback 2", 0x17, 0x4, HDA_INPUT), |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 925 | { } /* end */ |
| 926 | }; |
| 927 | |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 928 | static struct snd_kcontrol_new stac92hd71bxx_mixer[] = { |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 929 | STAC_INPUT_SOURCE(2), |
| 930 | STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2), |
| 931 | |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 932 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x1c, 0x0, HDA_OUTPUT), |
| 933 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1c, 0x0, HDA_OUTPUT), |
| 934 | HDA_CODEC_VOLUME_IDX("Capture Mux Volume", 0x0, 0x1a, 0x0, HDA_OUTPUT), |
| 935 | |
| 936 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x1d, 0x0, HDA_OUTPUT), |
| 937 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1d, 0x0, HDA_OUTPUT), |
| 938 | HDA_CODEC_VOLUME_IDX("Capture Mux Volume", 0x1, 0x1b, 0x0, HDA_OUTPUT), |
| 939 | { } /* end */ |
| 940 | }; |
| 941 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 942 | static struct snd_kcontrol_new stac925x_mixer[] = { |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 943 | STAC_INPUT_SOURCE(1), |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 944 | HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_OUTPUT), |
Mauro Carvalho Chehab | 587755f | 2008-05-25 18:20:06 +0200 | [diff] [blame] | 945 | HDA_CODEC_MUTE("Capture Switch", 0x14, 0, HDA_OUTPUT), |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 946 | HDA_CODEC_VOLUME("Capture Mux Volume", 0x0f, 0, HDA_OUTPUT), |
| 947 | { } /* end */ |
| 948 | }; |
| 949 | |
Takashi Iwai | d1d985f | 2006-11-23 19:27:12 +0100 | [diff] [blame] | 950 | static struct snd_kcontrol_new stac9205_mixer[] = { |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 951 | STAC_INPUT_SOURCE(2), |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 952 | STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1), |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 953 | |
| 954 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x1b, 0x0, HDA_INPUT), |
| 955 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1d, 0x0, HDA_OUTPUT), |
| 956 | HDA_CODEC_VOLUME_IDX("Mux Capture Volume", 0x0, 0x19, 0x0, HDA_OUTPUT), |
| 957 | |
| 958 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x1c, 0x0, HDA_INPUT), |
| 959 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1e, 0x0, HDA_OUTPUT), |
| 960 | HDA_CODEC_VOLUME_IDX("Mux Capture Volume", 0x1, 0x1A, 0x0, HDA_OUTPUT), |
| 961 | |
| 962 | { } /* end */ |
| 963 | }; |
| 964 | |
| 965 | /* This needs to be generated dynamically based on sequence */ |
| 966 | static struct snd_kcontrol_new stac922x_mixer[] = { |
| 967 | STAC_INPUT_SOURCE(2), |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 968 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x17, 0x0, HDA_INPUT), |
| 969 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x17, 0x0, HDA_INPUT), |
| 970 | HDA_CODEC_VOLUME_IDX("Mux Capture Volume", 0x0, 0x12, 0x0, HDA_OUTPUT), |
| 971 | |
| 972 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x18, 0x0, HDA_INPUT), |
| 973 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x18, 0x0, HDA_INPUT), |
| 974 | HDA_CODEC_VOLUME_IDX("Mux Capture Volume", 0x1, 0x13, 0x0, HDA_OUTPUT), |
| 975 | { } /* end */ |
| 976 | }; |
| 977 | |
| 978 | |
| 979 | static struct snd_kcontrol_new stac927x_mixer[] = { |
| 980 | STAC_INPUT_SOURCE(3), |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 981 | STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1), |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 982 | |
| 983 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x18, 0x0, HDA_INPUT), |
| 984 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1b, 0x0, HDA_OUTPUT), |
| 985 | HDA_CODEC_VOLUME_IDX("Mux Capture Volume", 0x0, 0x15, 0x0, HDA_OUTPUT), |
| 986 | |
| 987 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x19, 0x0, HDA_INPUT), |
| 988 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1c, 0x0, HDA_OUTPUT), |
| 989 | HDA_CODEC_VOLUME_IDX("Mux Capture Volume", 0x1, 0x16, 0x0, HDA_OUTPUT), |
| 990 | |
| 991 | HDA_CODEC_VOLUME_IDX("Capture Volume", 0x2, 0x1A, 0x0, HDA_INPUT), |
| 992 | HDA_CODEC_MUTE_IDX("Capture Switch", 0x2, 0x1d, 0x0, HDA_OUTPUT), |
| 993 | HDA_CODEC_VOLUME_IDX("Mux Capture Volume", 0x2, 0x17, 0x0, HDA_OUTPUT), |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 994 | { } /* end */ |
| 995 | }; |
| 996 | |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 997 | static struct snd_kcontrol_new stac_dmux_mixer = { |
| 998 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 999 | .name = "Digital Input Source", |
| 1000 | /* count set later */ |
| 1001 | .info = stac92xx_dmux_enum_info, |
| 1002 | .get = stac92xx_dmux_enum_get, |
| 1003 | .put = stac92xx_dmux_enum_put, |
| 1004 | }; |
| 1005 | |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1006 | static const char *slave_vols[] = { |
| 1007 | "Front Playback Volume", |
| 1008 | "Surround Playback Volume", |
| 1009 | "Center Playback Volume", |
| 1010 | "LFE Playback Volume", |
| 1011 | "Side Playback Volume", |
| 1012 | "Headphone Playback Volume", |
| 1013 | "Headphone Playback Volume", |
| 1014 | "Speaker Playback Volume", |
| 1015 | "External Speaker Playback Volume", |
| 1016 | "Speaker2 Playback Volume", |
| 1017 | NULL |
| 1018 | }; |
| 1019 | |
| 1020 | static const char *slave_sws[] = { |
| 1021 | "Front Playback Switch", |
| 1022 | "Surround Playback Switch", |
| 1023 | "Center Playback Switch", |
| 1024 | "LFE Playback Switch", |
| 1025 | "Side Playback Switch", |
| 1026 | "Headphone Playback Switch", |
| 1027 | "Headphone Playback Switch", |
| 1028 | "Speaker Playback Switch", |
| 1029 | "External Speaker Playback Switch", |
| 1030 | "Speaker2 Playback Switch", |
Takashi Iwai | edb54a5 | 2008-01-29 12:47:02 +0100 | [diff] [blame] | 1031 | "IEC958 Playback Switch", |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1032 | NULL |
| 1033 | }; |
| 1034 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1035 | static int stac92xx_build_controls(struct hda_codec *codec) |
| 1036 | { |
| 1037 | struct sigmatel_spec *spec = codec->spec; |
| 1038 | int err; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 1039 | int i; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1040 | |
| 1041 | err = snd_hda_add_new_ctls(codec, spec->mixer); |
| 1042 | if (err < 0) |
| 1043 | return err; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 1044 | |
| 1045 | for (i = 0; i < spec->num_mixers; i++) { |
| 1046 | err = snd_hda_add_new_ctls(codec, spec->mixers[i]); |
| 1047 | if (err < 0) |
| 1048 | return err; |
| 1049 | } |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 1050 | if (spec->num_dmuxes > 0) { |
| 1051 | stac_dmux_mixer.count = spec->num_dmuxes; |
| 1052 | err = snd_ctl_add(codec->bus->card, |
| 1053 | snd_ctl_new1(&stac_dmux_mixer, codec)); |
| 1054 | if (err < 0) |
| 1055 | return err; |
| 1056 | } |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 1057 | |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 1058 | if (spec->multiout.dig_out_nid) { |
| 1059 | err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid); |
| 1060 | if (err < 0) |
| 1061 | return err; |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 1062 | err = snd_hda_create_spdif_share_sw(codec, |
| 1063 | &spec->multiout); |
| 1064 | if (err < 0) |
| 1065 | return err; |
| 1066 | spec->multiout.share_spdif = 1; |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 1067 | } |
| 1068 | if (spec->dig_in_nid) { |
| 1069 | err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid); |
| 1070 | if (err < 0) |
| 1071 | return err; |
| 1072 | } |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1073 | |
| 1074 | /* if we have no master control, let's create it */ |
| 1075 | if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) { |
Takashi Iwai | 1c82ed1 | 2008-02-18 13:05:50 +0100 | [diff] [blame] | 1076 | unsigned int vmaster_tlv[4]; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1077 | snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0], |
Takashi Iwai | 1c82ed1 | 2008-02-18 13:05:50 +0100 | [diff] [blame] | 1078 | HDA_OUTPUT, vmaster_tlv); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1079 | err = snd_hda_add_vmaster(codec, "Master Playback Volume", |
Takashi Iwai | 1c82ed1 | 2008-02-18 13:05:50 +0100 | [diff] [blame] | 1080 | vmaster_tlv, slave_vols); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1081 | if (err < 0) |
| 1082 | return err; |
| 1083 | } |
| 1084 | if (!snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) { |
| 1085 | err = snd_hda_add_vmaster(codec, "Master Playback Switch", |
| 1086 | NULL, slave_sws); |
| 1087 | if (err < 0) |
| 1088 | return err; |
| 1089 | } |
| 1090 | |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 1091 | return 0; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1092 | } |
| 1093 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1094 | static unsigned int ref9200_pin_configs[8] = { |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 1095 | 0x01c47010, 0x01447010, 0x0221401f, 0x01114010, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1096 | 0x02a19020, 0x01a19021, 0x90100140, 0x01813122, |
| 1097 | }; |
| 1098 | |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1099 | /* |
| 1100 | STAC 9200 pin configs for |
| 1101 | 102801A8 |
| 1102 | 102801DE |
| 1103 | 102801E8 |
| 1104 | */ |
| 1105 | static unsigned int dell9200_d21_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1106 | 0x400001f0, 0x400001f1, 0x02214030, 0x01014010, |
| 1107 | 0x02a19020, 0x01a19021, 0x90100140, 0x01813122, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1108 | }; |
| 1109 | |
| 1110 | /* |
| 1111 | STAC 9200 pin configs for |
| 1112 | 102801C0 |
| 1113 | 102801C1 |
| 1114 | */ |
| 1115 | static unsigned int dell9200_d22_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1116 | 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010, |
| 1117 | 0x01813020, 0x02a19021, 0x90100140, 0x400001f2, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1118 | }; |
| 1119 | |
| 1120 | /* |
| 1121 | STAC 9200 pin configs for |
| 1122 | 102801C4 (Dell Dimension E310) |
| 1123 | 102801C5 |
| 1124 | 102801C7 |
| 1125 | 102801D9 |
| 1126 | 102801DA |
| 1127 | 102801E3 |
| 1128 | */ |
| 1129 | static unsigned int dell9200_d23_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1130 | 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010, |
| 1131 | 0x01813020, 0x01a19021, 0x90100140, 0x400001f2, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1132 | }; |
| 1133 | |
| 1134 | |
| 1135 | /* |
| 1136 | STAC 9200-32 pin configs for |
| 1137 | 102801B5 (Dell Inspiron 630m) |
| 1138 | 102801D8 (Dell Inspiron 640m) |
| 1139 | */ |
| 1140 | static unsigned int dell9200_m21_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1141 | 0x40c003fa, 0x03441340, 0x0321121f, 0x90170310, |
| 1142 | 0x408003fb, 0x03a11020, 0x401003fc, 0x403003fd, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1143 | }; |
| 1144 | |
| 1145 | /* |
| 1146 | STAC 9200-32 pin configs for |
| 1147 | 102801C2 (Dell Latitude D620) |
| 1148 | 102801C8 |
| 1149 | 102801CC (Dell Latitude D820) |
| 1150 | 102801D4 |
| 1151 | 102801D6 |
| 1152 | */ |
| 1153 | static unsigned int dell9200_m22_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1154 | 0x40c003fa, 0x0144131f, 0x0321121f, 0x90170310, |
| 1155 | 0x90a70321, 0x03a11020, 0x401003fb, 0x40f000fc, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1156 | }; |
| 1157 | |
| 1158 | /* |
| 1159 | STAC 9200-32 pin configs for |
| 1160 | 102801CE (Dell XPS M1710) |
| 1161 | 102801CF (Dell Precision M90) |
| 1162 | */ |
| 1163 | static unsigned int dell9200_m23_pin_configs[8] = { |
| 1164 | 0x40c003fa, 0x01441340, 0x0421421f, 0x90170310, |
| 1165 | 0x408003fb, 0x04a1102e, 0x90170311, 0x403003fc, |
| 1166 | }; |
| 1167 | |
| 1168 | /* |
| 1169 | STAC 9200-32 pin configs for |
| 1170 | 102801C9 |
| 1171 | 102801CA |
| 1172 | 102801CB (Dell Latitude 120L) |
| 1173 | 102801D3 |
| 1174 | */ |
| 1175 | static unsigned int dell9200_m24_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1176 | 0x40c003fa, 0x404003fb, 0x0321121f, 0x90170310, |
| 1177 | 0x408003fc, 0x03a11020, 0x401003fd, 0x403003fe, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1178 | }; |
| 1179 | |
| 1180 | /* |
| 1181 | STAC 9200-32 pin configs for |
| 1182 | 102801BD (Dell Inspiron E1505n) |
| 1183 | 102801EE |
| 1184 | 102801EF |
| 1185 | */ |
| 1186 | static unsigned int dell9200_m25_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1187 | 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310, |
| 1188 | 0x408003fb, 0x04a11020, 0x401003fc, 0x403003fd, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1189 | }; |
| 1190 | |
| 1191 | /* |
| 1192 | STAC 9200-32 pin configs for |
| 1193 | 102801F5 (Dell Inspiron 1501) |
| 1194 | 102801F6 |
| 1195 | */ |
| 1196 | static unsigned int dell9200_m26_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1197 | 0x40c003fa, 0x404003fb, 0x0421121f, 0x90170310, |
| 1198 | 0x408003fc, 0x04a11020, 0x401003fd, 0x403003fe, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1199 | }; |
| 1200 | |
| 1201 | /* |
| 1202 | STAC 9200-32 |
| 1203 | 102801CD (Dell Inspiron E1705/9400) |
| 1204 | */ |
| 1205 | static unsigned int dell9200_m27_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1206 | 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310, |
| 1207 | 0x90170310, 0x04a11020, 0x90170310, 0x40f003fc, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1208 | }; |
| 1209 | |
Tobin Davis | bf27778 | 2008-02-03 20:31:47 +0100 | [diff] [blame] | 1210 | static unsigned int oqo9200_pin_configs[8] = { |
| 1211 | 0x40c000f0, 0x404000f1, 0x0221121f, 0x02211210, |
| 1212 | 0x90170111, 0x90a70120, 0x400000f2, 0x400000f3, |
| 1213 | }; |
| 1214 | |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1215 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1216 | static unsigned int *stac9200_brd_tbl[STAC_9200_MODELS] = { |
| 1217 | [STAC_REF] = ref9200_pin_configs, |
Tobin Davis | bf27778 | 2008-02-03 20:31:47 +0100 | [diff] [blame] | 1218 | [STAC_9200_OQO] = oqo9200_pin_configs, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1219 | [STAC_9200_DELL_D21] = dell9200_d21_pin_configs, |
| 1220 | [STAC_9200_DELL_D22] = dell9200_d22_pin_configs, |
| 1221 | [STAC_9200_DELL_D23] = dell9200_d23_pin_configs, |
| 1222 | [STAC_9200_DELL_M21] = dell9200_m21_pin_configs, |
| 1223 | [STAC_9200_DELL_M22] = dell9200_m22_pin_configs, |
| 1224 | [STAC_9200_DELL_M23] = dell9200_m23_pin_configs, |
| 1225 | [STAC_9200_DELL_M24] = dell9200_m24_pin_configs, |
| 1226 | [STAC_9200_DELL_M25] = dell9200_m25_pin_configs, |
| 1227 | [STAC_9200_DELL_M26] = dell9200_m26_pin_configs, |
| 1228 | [STAC_9200_DELL_M27] = dell9200_m27_pin_configs, |
Takashi Iwai | 117f257 | 2008-03-18 09:53:23 +0100 | [diff] [blame] | 1229 | [STAC_9200_PANASONIC] = ref9200_pin_configs, |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1230 | }; |
| 1231 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1232 | static const char *stac9200_models[STAC_9200_MODELS] = { |
| 1233 | [STAC_REF] = "ref", |
Tobin Davis | bf27778 | 2008-02-03 20:31:47 +0100 | [diff] [blame] | 1234 | [STAC_9200_OQO] = "oqo", |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1235 | [STAC_9200_DELL_D21] = "dell-d21", |
| 1236 | [STAC_9200_DELL_D22] = "dell-d22", |
| 1237 | [STAC_9200_DELL_D23] = "dell-d23", |
| 1238 | [STAC_9200_DELL_M21] = "dell-m21", |
| 1239 | [STAC_9200_DELL_M22] = "dell-m22", |
| 1240 | [STAC_9200_DELL_M23] = "dell-m23", |
| 1241 | [STAC_9200_DELL_M24] = "dell-m24", |
| 1242 | [STAC_9200_DELL_M25] = "dell-m25", |
| 1243 | [STAC_9200_DELL_M26] = "dell-m26", |
| 1244 | [STAC_9200_DELL_M27] = "dell-m27", |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 1245 | [STAC_9200_GATEWAY] = "gateway", |
Takashi Iwai | 117f257 | 2008-03-18 09:53:23 +0100 | [diff] [blame] | 1246 | [STAC_9200_PANASONIC] = "panasonic", |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1247 | }; |
| 1248 | |
| 1249 | static struct snd_pci_quirk stac9200_cfg_tbl[] = { |
| 1250 | /* SigmaTel reference board */ |
| 1251 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, |
| 1252 | "DFI LanParty", STAC_REF), |
Matt Porter | e737707 | 2006-11-06 11:20:38 +0100 | [diff] [blame] | 1253 | /* Dell laptops have BIOS problem */ |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1254 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8, |
| 1255 | "unknown Dell", STAC_9200_DELL_D21), |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1256 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1257 | "Dell Inspiron 630m", STAC_9200_DELL_M21), |
| 1258 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd, |
| 1259 | "Dell Inspiron E1505n", STAC_9200_DELL_M25), |
| 1260 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0, |
| 1261 | "unknown Dell", STAC_9200_DELL_D22), |
| 1262 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1, |
| 1263 | "unknown Dell", STAC_9200_DELL_D22), |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1264 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1265 | "Dell Latitude D620", STAC_9200_DELL_M22), |
| 1266 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5, |
| 1267 | "unknown Dell", STAC_9200_DELL_D23), |
| 1268 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7, |
| 1269 | "unknown Dell", STAC_9200_DELL_D23), |
| 1270 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8, |
| 1271 | "unknown Dell", STAC_9200_DELL_M22), |
| 1272 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9, |
| 1273 | "unknown Dell", STAC_9200_DELL_M24), |
| 1274 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca, |
| 1275 | "unknown Dell", STAC_9200_DELL_M24), |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1276 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1277 | "Dell Latitude 120L", STAC_9200_DELL_M24), |
Cory T. Tusar | 877b866 | 2007-01-30 17:30:55 +0100 | [diff] [blame] | 1278 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1279 | "Dell Latitude D820", STAC_9200_DELL_M22), |
Mikael Nilsson | 46f02ca | 2007-02-13 12:46:16 +0100 | [diff] [blame] | 1280 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1281 | "Dell Inspiron E1705/9400", STAC_9200_DELL_M27), |
Mikael Nilsson | 46f02ca | 2007-02-13 12:46:16 +0100 | [diff] [blame] | 1282 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1283 | "Dell XPS M1710", STAC_9200_DELL_M23), |
Takashi Iwai | f0f9674 | 2007-02-14 00:59:17 +0100 | [diff] [blame] | 1284 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1285 | "Dell Precision M90", STAC_9200_DELL_M23), |
| 1286 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3, |
| 1287 | "unknown Dell", STAC_9200_DELL_M22), |
| 1288 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4, |
| 1289 | "unknown Dell", STAC_9200_DELL_M22), |
Daniel T Chen | 8286c53 | 2007-05-15 11:46:23 +0200 | [diff] [blame] | 1290 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1291 | "unknown Dell", STAC_9200_DELL_M22), |
Tobin Davis | 49c605d | 2007-05-17 09:38:24 +0200 | [diff] [blame] | 1292 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1293 | "Dell Inspiron 640m", STAC_9200_DELL_M21), |
| 1294 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9, |
| 1295 | "unknown Dell", STAC_9200_DELL_D23), |
| 1296 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da, |
| 1297 | "unknown Dell", STAC_9200_DELL_D23), |
| 1298 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de, |
| 1299 | "unknown Dell", STAC_9200_DELL_D21), |
| 1300 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3, |
| 1301 | "unknown Dell", STAC_9200_DELL_D23), |
| 1302 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8, |
| 1303 | "unknown Dell", STAC_9200_DELL_D21), |
| 1304 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee, |
| 1305 | "unknown Dell", STAC_9200_DELL_M25), |
| 1306 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef, |
| 1307 | "unknown Dell", STAC_9200_DELL_M25), |
Tobin Davis | 49c605d | 2007-05-17 09:38:24 +0200 | [diff] [blame] | 1308 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1309 | "Dell Inspiron 1501", STAC_9200_DELL_M26), |
| 1310 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6, |
| 1311 | "unknown Dell", STAC_9200_DELL_M26), |
Tobin Davis | 49c605d | 2007-05-17 09:38:24 +0200 | [diff] [blame] | 1312 | /* Panasonic */ |
Takashi Iwai | 117f257 | 2008-03-18 09:53:23 +0100 | [diff] [blame] | 1313 | SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC), |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 1314 | /* Gateway machines needs EAPD to be set on resume */ |
| 1315 | SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_GATEWAY), |
| 1316 | SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", |
| 1317 | STAC_9200_GATEWAY), |
| 1318 | SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", |
| 1319 | STAC_9200_GATEWAY), |
Tobin Davis | bf27778 | 2008-02-03 20:31:47 +0100 | [diff] [blame] | 1320 | /* OQO Mobile */ |
| 1321 | SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO), |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1322 | {} /* terminator */ |
| 1323 | }; |
| 1324 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1325 | static unsigned int ref925x_pin_configs[8] = { |
| 1326 | 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021, |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 1327 | 0x90a70320, 0x02214210, 0x01019020, 0x9033032e, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1328 | }; |
| 1329 | |
| 1330 | static unsigned int stac925x_MA6_pin_configs[8] = { |
| 1331 | 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021, |
| 1332 | 0x90a70320, 0x90100211, 0x400003f1, 0x9033032e, |
| 1333 | }; |
| 1334 | |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 1335 | static unsigned int stac925x_PA6_pin_configs[8] = { |
| 1336 | 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021, |
| 1337 | 0x50a103f0, 0x90100211, 0x400003f1, 0x9033032e, |
| 1338 | }; |
| 1339 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1340 | static unsigned int stac925xM2_2_pin_configs[8] = { |
Steve Longerbeam | 7353e14 | 2007-05-29 14:36:17 +0200 | [diff] [blame] | 1341 | 0x40c003f3, 0x424503f2, 0x04180011, 0x02a19020, |
| 1342 | 0x50a103f0, 0x90100212, 0x400003f1, 0x9033032e, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1343 | }; |
| 1344 | |
| 1345 | static unsigned int *stac925x_brd_tbl[STAC_925x_MODELS] = { |
| 1346 | [STAC_REF] = ref925x_pin_configs, |
| 1347 | [STAC_M2_2] = stac925xM2_2_pin_configs, |
| 1348 | [STAC_MA6] = stac925x_MA6_pin_configs, |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 1349 | [STAC_PA6] = stac925x_PA6_pin_configs, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1350 | }; |
| 1351 | |
| 1352 | static const char *stac925x_models[STAC_925x_MODELS] = { |
| 1353 | [STAC_REF] = "ref", |
| 1354 | [STAC_M2_2] = "m2-2", |
| 1355 | [STAC_MA6] = "m6", |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 1356 | [STAC_PA6] = "pa6", |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1357 | }; |
| 1358 | |
| 1359 | static struct snd_pci_quirk stac925x_cfg_tbl[] = { |
| 1360 | /* SigmaTel reference board */ |
| 1361 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF), |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 1362 | SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF), |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1363 | SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_REF), |
| 1364 | SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_REF), |
| 1365 | SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_MA6), |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 1366 | SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_PA6), |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1367 | SND_PCI_QUIRK(0x1002, 0x437b, "Gateway MX6453", STAC_M2_2), |
| 1368 | {} /* terminator */ |
| 1369 | }; |
| 1370 | |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1371 | static unsigned int ref92hd73xx_pin_configs[13] = { |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 1372 | 0x02214030, 0x02a19040, 0x01a19020, 0x02214030, |
| 1373 | 0x0181302e, 0x01014010, 0x01014020, 0x01014030, |
| 1374 | 0x02319040, 0x90a000f0, 0x90a000f0, 0x01452050, |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1375 | 0x01452050, |
| 1376 | }; |
| 1377 | |
| 1378 | static unsigned int dell_m6_pin_configs[13] = { |
| 1379 | 0x0321101f, 0x4f00000f, 0x4f0000f0, 0x90170110, |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 1380 | 0x03a11020, 0x0321101f, 0x4f0000f0, 0x4f0000f0, |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1381 | 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0, |
| 1382 | 0x4f0000f0, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 1383 | }; |
| 1384 | |
| 1385 | static unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = { |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1386 | [STAC_92HD73XX_REF] = ref92hd73xx_pin_configs, |
| 1387 | [STAC_DELL_M6] = dell_m6_pin_configs, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 1388 | }; |
| 1389 | |
| 1390 | static const char *stac92hd73xx_models[STAC_92HD73XX_MODELS] = { |
| 1391 | [STAC_92HD73XX_REF] = "ref", |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1392 | [STAC_DELL_M6] = "dell-m6", |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 1393 | }; |
| 1394 | |
| 1395 | static struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = { |
| 1396 | /* SigmaTel reference board */ |
| 1397 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1398 | "DFI LanParty", STAC_92HD73XX_REF), |
| 1399 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254, |
| 1400 | "unknown Dell", STAC_DELL_M6), |
| 1401 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255, |
| 1402 | "unknown Dell", STAC_DELL_M6), |
| 1403 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256, |
| 1404 | "unknown Dell", STAC_DELL_M6), |
| 1405 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257, |
| 1406 | "unknown Dell", STAC_DELL_M6), |
| 1407 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e, |
| 1408 | "unknown Dell", STAC_DELL_M6), |
| 1409 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f, |
| 1410 | "unknown Dell", STAC_DELL_M6), |
| 1411 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271, |
| 1412 | "unknown Dell", STAC_DELL_M6), |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 1413 | {} /* terminator */ |
| 1414 | }; |
| 1415 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 1416 | static unsigned int ref92hd83xxx_pin_configs[14] = { |
| 1417 | 0x02214030, 0x02211010, 0x02a19020, 0x02170130, |
| 1418 | 0x01014050, 0x01819040, 0x01014020, 0x90a3014e, |
| 1419 | 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x40f000f0, |
| 1420 | 0x01451160, 0x98560170, |
| 1421 | }; |
| 1422 | |
| 1423 | static unsigned int *stac92hd83xxx_brd_tbl[STAC_92HD83XXX_MODELS] = { |
| 1424 | [STAC_92HD83XXX_REF] = ref92hd83xxx_pin_configs, |
| 1425 | }; |
| 1426 | |
| 1427 | static const char *stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = { |
| 1428 | [STAC_92HD83XXX_REF] = "ref", |
| 1429 | }; |
| 1430 | |
| 1431 | static struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = { |
| 1432 | /* SigmaTel reference board */ |
| 1433 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, |
| 1434 | "DFI LanParty", STAC_92HD71BXX_REF), |
| 1435 | }; |
| 1436 | |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 1437 | static unsigned int ref92hd71bxx_pin_configs[10] = { |
| 1438 | 0x02214030, 0x02a19040, 0x01a19020, 0x01014010, |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 1439 | 0x0181302e, 0x01114010, 0x01019020, 0x90a000f0, |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 1440 | 0x90a000f0, 0x01452050, |
| 1441 | }; |
| 1442 | |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 1443 | static unsigned int dell_m4_1_pin_configs[10] = { |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1444 | 0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110, |
Matthew Ranostay | 07bcb31 | 2008-03-20 12:10:57 +0100 | [diff] [blame] | 1445 | 0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0, |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1446 | 0x40f000f0, 0x4f0000f0, |
| 1447 | }; |
| 1448 | |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 1449 | static unsigned int dell_m4_2_pin_configs[10] = { |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1450 | 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110, |
| 1451 | 0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0, |
| 1452 | 0x40f000f0, 0x044413b0, |
| 1453 | }; |
| 1454 | |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 1455 | static unsigned int *stac92hd71bxx_brd_tbl[STAC_92HD71BXX_MODELS] = { |
| 1456 | [STAC_92HD71BXX_REF] = ref92hd71bxx_pin_configs, |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1457 | [STAC_DELL_M4_1] = dell_m4_1_pin_configs, |
| 1458 | [STAC_DELL_M4_2] = dell_m4_2_pin_configs, |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 1459 | }; |
| 1460 | |
| 1461 | static const char *stac92hd71bxx_models[STAC_92HD71BXX_MODELS] = { |
| 1462 | [STAC_92HD71BXX_REF] = "ref", |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1463 | [STAC_DELL_M4_1] = "dell-m4-1", |
| 1464 | [STAC_DELL_M4_2] = "dell-m4-2", |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 1465 | }; |
| 1466 | |
| 1467 | static struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = { |
| 1468 | /* SigmaTel reference board */ |
| 1469 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, |
| 1470 | "DFI LanParty", STAC_92HD71BXX_REF), |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1471 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233, |
| 1472 | "unknown Dell", STAC_DELL_M4_1), |
| 1473 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234, |
| 1474 | "unknown Dell", STAC_DELL_M4_1), |
| 1475 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250, |
| 1476 | "unknown Dell", STAC_DELL_M4_1), |
| 1477 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f, |
| 1478 | "unknown Dell", STAC_DELL_M4_1), |
| 1479 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d, |
| 1480 | "unknown Dell", STAC_DELL_M4_1), |
| 1481 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251, |
| 1482 | "unknown Dell", STAC_DELL_M4_1), |
| 1483 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277, |
| 1484 | "unknown Dell", STAC_DELL_M4_1), |
| 1485 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263, |
| 1486 | "unknown Dell", STAC_DELL_M4_2), |
| 1487 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265, |
| 1488 | "unknown Dell", STAC_DELL_M4_2), |
| 1489 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262, |
| 1490 | "unknown Dell", STAC_DELL_M4_2), |
| 1491 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264, |
| 1492 | "unknown Dell", STAC_DELL_M4_2), |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 1493 | {} /* terminator */ |
| 1494 | }; |
| 1495 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1496 | static unsigned int ref922x_pin_configs[10] = { |
| 1497 | 0x01014010, 0x01016011, 0x01012012, 0x0221401f, |
| 1498 | 0x01813122, 0x01011014, 0x01441030, 0x01c41030, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1499 | 0x40000100, 0x40000100, |
| 1500 | }; |
| 1501 | |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1502 | /* |
| 1503 | STAC 922X pin configs for |
| 1504 | 102801A7 |
| 1505 | 102801AB |
| 1506 | 102801A9 |
| 1507 | 102801D1 |
| 1508 | 102801D2 |
| 1509 | */ |
| 1510 | static unsigned int dell_922x_d81_pin_configs[10] = { |
| 1511 | 0x02214030, 0x01a19021, 0x01111012, 0x01114010, |
| 1512 | 0x02a19020, 0x01117011, 0x400001f0, 0x400001f1, |
| 1513 | 0x01813122, 0x400001f2, |
| 1514 | }; |
| 1515 | |
| 1516 | /* |
| 1517 | STAC 922X pin configs for |
| 1518 | 102801AC |
| 1519 | 102801D0 |
| 1520 | */ |
| 1521 | static unsigned int dell_922x_d82_pin_configs[10] = { |
| 1522 | 0x02214030, 0x01a19021, 0x01111012, 0x01114010, |
| 1523 | 0x02a19020, 0x01117011, 0x01451140, 0x400001f0, |
| 1524 | 0x01813122, 0x400001f1, |
| 1525 | }; |
| 1526 | |
| 1527 | /* |
| 1528 | STAC 922X pin configs for |
| 1529 | 102801BF |
| 1530 | */ |
| 1531 | static unsigned int dell_922x_m81_pin_configs[10] = { |
| 1532 | 0x0321101f, 0x01112024, 0x01111222, 0x91174220, |
| 1533 | 0x03a11050, 0x01116221, 0x90a70330, 0x01452340, |
| 1534 | 0x40C003f1, 0x405003f0, |
| 1535 | }; |
| 1536 | |
| 1537 | /* |
| 1538 | STAC 9221 A1 pin configs for |
| 1539 | 102801D7 (Dell XPS M1210) |
| 1540 | */ |
| 1541 | static unsigned int dell_922x_m82_pin_configs[10] = { |
Jiang Zhe | 7f9310c | 2007-11-12 12:43:37 +0100 | [diff] [blame] | 1542 | 0x02211211, 0x408103ff, 0x02a1123e, 0x90100310, |
| 1543 | 0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1544 | 0x508003f3, 0x405003f4, |
| 1545 | }; |
| 1546 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1547 | static unsigned int d945gtp3_pin_configs[10] = { |
Matt Porter | 869264c | 2006-01-25 19:20:50 +0100 | [diff] [blame] | 1548 | 0x0221401f, 0x01a19022, 0x01813021, 0x01014010, |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1549 | 0x40000100, 0x40000100, 0x40000100, 0x40000100, |
| 1550 | 0x02a19120, 0x40000100, |
| 1551 | }; |
| 1552 | |
| 1553 | static unsigned int d945gtp5_pin_configs[10] = { |
Matt Porter | 869264c | 2006-01-25 19:20:50 +0100 | [diff] [blame] | 1554 | 0x0221401f, 0x01011012, 0x01813024, 0x01014010, |
| 1555 | 0x01a19021, 0x01016011, 0x01452130, 0x40000100, |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1556 | 0x02a19320, 0x40000100, |
| 1557 | }; |
| 1558 | |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 1559 | static unsigned int intel_mac_v1_pin_configs[10] = { |
| 1560 | 0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd, |
| 1561 | 0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240, |
Takashi Iwai | 3fc24d8 | 2007-02-16 13:27:18 +0100 | [diff] [blame] | 1562 | 0x400000fc, 0x400000fb, |
| 1563 | }; |
| 1564 | |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 1565 | static unsigned int intel_mac_v2_pin_configs[10] = { |
| 1566 | 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd, |
| 1567 | 0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa, |
Sylvain FORET | f16928f | 2007-04-27 14:22:36 +0200 | [diff] [blame] | 1568 | 0x400000fc, 0x400000fb, |
| 1569 | }; |
| 1570 | |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 1571 | static unsigned int intel_mac_v3_pin_configs[10] = { |
| 1572 | 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd, |
| 1573 | 0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240, |
| 1574 | 0x400000fc, 0x400000fb, |
| 1575 | }; |
| 1576 | |
| 1577 | static unsigned int intel_mac_v4_pin_configs[10] = { |
| 1578 | 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f, |
| 1579 | 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240, |
| 1580 | 0x400000fc, 0x400000fb, |
| 1581 | }; |
| 1582 | |
| 1583 | static unsigned int intel_mac_v5_pin_configs[10] = { |
| 1584 | 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f, |
| 1585 | 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240, |
| 1586 | 0x400000fc, 0x400000fb, |
Takashi Iwai | 0dae0f8 | 2007-05-21 12:41:29 +0200 | [diff] [blame] | 1587 | }; |
| 1588 | |
Takashi Iwai | 76c0882 | 2007-06-19 12:17:42 +0200 | [diff] [blame] | 1589 | |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 1590 | static unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = { |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1591 | [STAC_D945_REF] = ref922x_pin_configs, |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 1592 | [STAC_D945GTP3] = d945gtp3_pin_configs, |
| 1593 | [STAC_D945GTP5] = d945gtp5_pin_configs, |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 1594 | [STAC_INTEL_MAC_V1] = intel_mac_v1_pin_configs, |
| 1595 | [STAC_INTEL_MAC_V2] = intel_mac_v2_pin_configs, |
| 1596 | [STAC_INTEL_MAC_V3] = intel_mac_v3_pin_configs, |
| 1597 | [STAC_INTEL_MAC_V4] = intel_mac_v4_pin_configs, |
| 1598 | [STAC_INTEL_MAC_V5] = intel_mac_v5_pin_configs, |
Nicolas Boichat | 536319a | 2008-07-21 22:18:01 +0800 | [diff] [blame] | 1599 | [STAC_INTEL_MAC_AUTO] = intel_mac_v3_pin_configs, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1600 | /* for backward compatibility */ |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 1601 | [STAC_MACMINI] = intel_mac_v3_pin_configs, |
| 1602 | [STAC_MACBOOK] = intel_mac_v5_pin_configs, |
| 1603 | [STAC_MACBOOK_PRO_V1] = intel_mac_v3_pin_configs, |
| 1604 | [STAC_MACBOOK_PRO_V2] = intel_mac_v3_pin_configs, |
| 1605 | [STAC_IMAC_INTEL] = intel_mac_v2_pin_configs, |
| 1606 | [STAC_IMAC_INTEL_20] = intel_mac_v3_pin_configs, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1607 | [STAC_922X_DELL_D81] = dell_922x_d81_pin_configs, |
| 1608 | [STAC_922X_DELL_D82] = dell_922x_d82_pin_configs, |
| 1609 | [STAC_922X_DELL_M81] = dell_922x_m81_pin_configs, |
| 1610 | [STAC_922X_DELL_M82] = dell_922x_m82_pin_configs, |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1611 | }; |
| 1612 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1613 | static const char *stac922x_models[STAC_922X_MODELS] = { |
| 1614 | [STAC_D945_REF] = "ref", |
| 1615 | [STAC_D945GTP5] = "5stack", |
| 1616 | [STAC_D945GTP3] = "3stack", |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 1617 | [STAC_INTEL_MAC_V1] = "intel-mac-v1", |
| 1618 | [STAC_INTEL_MAC_V2] = "intel-mac-v2", |
| 1619 | [STAC_INTEL_MAC_V3] = "intel-mac-v3", |
| 1620 | [STAC_INTEL_MAC_V4] = "intel-mac-v4", |
| 1621 | [STAC_INTEL_MAC_V5] = "intel-mac-v5", |
Nicolas Boichat | 536319a | 2008-07-21 22:18:01 +0800 | [diff] [blame] | 1622 | [STAC_INTEL_MAC_AUTO] = "intel-mac-auto", |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1623 | /* for backward compatibility */ |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1624 | [STAC_MACMINI] = "macmini", |
Takashi Iwai | 3fc24d8 | 2007-02-16 13:27:18 +0100 | [diff] [blame] | 1625 | [STAC_MACBOOK] = "macbook", |
Nicolas Boichat | 6f0778d | 2007-03-15 12:38:15 +0100 | [diff] [blame] | 1626 | [STAC_MACBOOK_PRO_V1] = "macbook-pro-v1", |
| 1627 | [STAC_MACBOOK_PRO_V2] = "macbook-pro", |
Sylvain FORET | f16928f | 2007-04-27 14:22:36 +0200 | [diff] [blame] | 1628 | [STAC_IMAC_INTEL] = "imac-intel", |
Takashi Iwai | 0dae0f8 | 2007-05-21 12:41:29 +0200 | [diff] [blame] | 1629 | [STAC_IMAC_INTEL_20] = "imac-intel-20", |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1630 | [STAC_922X_DELL_D81] = "dell-d81", |
| 1631 | [STAC_922X_DELL_D82] = "dell-d82", |
| 1632 | [STAC_922X_DELL_M81] = "dell-m81", |
| 1633 | [STAC_922X_DELL_M82] = "dell-m82", |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1634 | }; |
| 1635 | |
| 1636 | static struct snd_pci_quirk stac922x_cfg_tbl[] = { |
| 1637 | /* SigmaTel reference board */ |
| 1638 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, |
| 1639 | "DFI LanParty", STAC_D945_REF), |
| 1640 | /* Intel 945G based systems */ |
| 1641 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101, |
| 1642 | "Intel D945G", STAC_D945GTP3), |
| 1643 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202, |
| 1644 | "Intel D945G", STAC_D945GTP3), |
| 1645 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606, |
| 1646 | "Intel D945G", STAC_D945GTP3), |
| 1647 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601, |
| 1648 | "Intel D945G", STAC_D945GTP3), |
| 1649 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111, |
| 1650 | "Intel D945G", STAC_D945GTP3), |
| 1651 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115, |
| 1652 | "Intel D945G", STAC_D945GTP3), |
| 1653 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116, |
| 1654 | "Intel D945G", STAC_D945GTP3), |
| 1655 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117, |
| 1656 | "Intel D945G", STAC_D945GTP3), |
| 1657 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118, |
| 1658 | "Intel D945G", STAC_D945GTP3), |
| 1659 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119, |
| 1660 | "Intel D945G", STAC_D945GTP3), |
| 1661 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826, |
| 1662 | "Intel D945G", STAC_D945GTP3), |
| 1663 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049, |
| 1664 | "Intel D945G", STAC_D945GTP3), |
| 1665 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055, |
| 1666 | "Intel D945G", STAC_D945GTP3), |
| 1667 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048, |
| 1668 | "Intel D945G", STAC_D945GTP3), |
| 1669 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110, |
| 1670 | "Intel D945G", STAC_D945GTP3), |
| 1671 | /* Intel D945G 5-stack systems */ |
| 1672 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404, |
| 1673 | "Intel D945G", STAC_D945GTP5), |
| 1674 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303, |
| 1675 | "Intel D945G", STAC_D945GTP5), |
| 1676 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013, |
| 1677 | "Intel D945G", STAC_D945GTP5), |
| 1678 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417, |
| 1679 | "Intel D945G", STAC_D945GTP5), |
| 1680 | /* Intel 945P based systems */ |
| 1681 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b, |
| 1682 | "Intel D945P", STAC_D945GTP3), |
| 1683 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112, |
| 1684 | "Intel D945P", STAC_D945GTP3), |
| 1685 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d, |
| 1686 | "Intel D945P", STAC_D945GTP3), |
| 1687 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909, |
| 1688 | "Intel D945P", STAC_D945GTP3), |
| 1689 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505, |
| 1690 | "Intel D945P", STAC_D945GTP3), |
| 1691 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707, |
| 1692 | "Intel D945P", STAC_D945GTP5), |
| 1693 | /* other systems */ |
Nicolas Boichat | 536319a | 2008-07-21 22:18:01 +0800 | [diff] [blame] | 1694 | /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */ |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1695 | SND_PCI_QUIRK(0x8384, 0x7680, |
Nicolas Boichat | 536319a | 2008-07-21 22:18:01 +0800 | [diff] [blame] | 1696 | "Mac", STAC_INTEL_MAC_AUTO), |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1697 | /* Dell systems */ |
| 1698 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7, |
| 1699 | "unknown Dell", STAC_922X_DELL_D81), |
| 1700 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9, |
| 1701 | "unknown Dell", STAC_922X_DELL_D81), |
| 1702 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab, |
| 1703 | "unknown Dell", STAC_922X_DELL_D81), |
| 1704 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac, |
| 1705 | "unknown Dell", STAC_922X_DELL_D82), |
| 1706 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf, |
| 1707 | "unknown Dell", STAC_922X_DELL_M81), |
| 1708 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0, |
| 1709 | "unknown Dell", STAC_922X_DELL_D82), |
| 1710 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1, |
| 1711 | "unknown Dell", STAC_922X_DELL_D81), |
| 1712 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2, |
| 1713 | "unknown Dell", STAC_922X_DELL_D81), |
| 1714 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7, |
| 1715 | "Dell XPS M1210", STAC_922X_DELL_M82), |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1716 | {} /* terminator */ |
| 1717 | }; |
| 1718 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 1719 | static unsigned int ref927x_pin_configs[14] = { |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 1720 | 0x02214020, 0x02a19080, 0x0181304e, 0x01014010, |
| 1721 | 0x01a19040, 0x01011012, 0x01016011, 0x0101201f, |
| 1722 | 0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070, |
| 1723 | 0x01c42190, 0x40000100, |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 1724 | }; |
| 1725 | |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 1726 | static unsigned int d965_3st_pin_configs[14] = { |
Tobin Davis | 81d3dbd | 2006-08-22 19:44:45 +0200 | [diff] [blame] | 1727 | 0x0221401f, 0x02a19120, 0x40000100, 0x01014011, |
| 1728 | 0x01a19021, 0x01813024, 0x40000100, 0x40000100, |
| 1729 | 0x40000100, 0x40000100, 0x40000100, 0x40000100, |
| 1730 | 0x40000100, 0x40000100 |
| 1731 | }; |
| 1732 | |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 1733 | static unsigned int d965_5st_pin_configs[14] = { |
| 1734 | 0x02214020, 0x02a19080, 0x0181304e, 0x01014010, |
| 1735 | 0x01a19040, 0x01011012, 0x01016011, 0x40000100, |
| 1736 | 0x40000100, 0x40000100, 0x40000100, 0x01442070, |
| 1737 | 0x40000100, 0x40000100 |
| 1738 | }; |
| 1739 | |
Tobin Davis | 4ff076e | 2007-08-07 11:48:12 +0200 | [diff] [blame] | 1740 | static unsigned int dell_3st_pin_configs[14] = { |
| 1741 | 0x02211230, 0x02a11220, 0x01a19040, 0x01114210, |
| 1742 | 0x01111212, 0x01116211, 0x01813050, 0x01112214, |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 1743 | 0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb, |
Tobin Davis | 4ff076e | 2007-08-07 11:48:12 +0200 | [diff] [blame] | 1744 | 0x40c003fc, 0x40000100 |
| 1745 | }; |
| 1746 | |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 1747 | static unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = { |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 1748 | [STAC_D965_REF] = ref927x_pin_configs, |
| 1749 | [STAC_D965_3ST] = d965_3st_pin_configs, |
| 1750 | [STAC_D965_5ST] = d965_5st_pin_configs, |
| 1751 | [STAC_DELL_3ST] = dell_3st_pin_configs, |
| 1752 | [STAC_DELL_BIOS] = NULL, |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 1753 | }; |
| 1754 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1755 | static const char *stac927x_models[STAC_927X_MODELS] = { |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 1756 | [STAC_D965_REF] = "ref", |
| 1757 | [STAC_D965_3ST] = "3stack", |
| 1758 | [STAC_D965_5ST] = "5stack", |
| 1759 | [STAC_DELL_3ST] = "dell-3stack", |
| 1760 | [STAC_DELL_BIOS] = "dell-bios", |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1761 | }; |
| 1762 | |
| 1763 | static struct snd_pci_quirk stac927x_cfg_tbl[] = { |
| 1764 | /* SigmaTel reference board */ |
| 1765 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, |
| 1766 | "DFI LanParty", STAC_D965_REF), |
Tobin Davis | 81d3dbd | 2006-08-22 19:44:45 +0200 | [diff] [blame] | 1767 | /* Intel 946 based systems */ |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1768 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST), |
| 1769 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST), |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 1770 | /* 965 based 3 stack systems */ |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1771 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2116, "Intel D965", STAC_D965_3ST), |
| 1772 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2115, "Intel D965", STAC_D965_3ST), |
| 1773 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2114, "Intel D965", STAC_D965_3ST), |
| 1774 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2113, "Intel D965", STAC_D965_3ST), |
| 1775 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2112, "Intel D965", STAC_D965_3ST), |
| 1776 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2111, "Intel D965", STAC_D965_3ST), |
| 1777 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2110, "Intel D965", STAC_D965_3ST), |
| 1778 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2009, "Intel D965", STAC_D965_3ST), |
| 1779 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2008, "Intel D965", STAC_D965_3ST), |
| 1780 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2007, "Intel D965", STAC_D965_3ST), |
| 1781 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2006, "Intel D965", STAC_D965_3ST), |
| 1782 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2005, "Intel D965", STAC_D965_3ST), |
| 1783 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2004, "Intel D965", STAC_D965_3ST), |
| 1784 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2003, "Intel D965", STAC_D965_3ST), |
| 1785 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2002, "Intel D965", STAC_D965_3ST), |
| 1786 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2001, "Intel D965", STAC_D965_3ST), |
Tobin Davis | 4ff076e | 2007-08-07 11:48:12 +0200 | [diff] [blame] | 1787 | /* Dell 3 stack systems */ |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 1788 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f7, "Dell XPS M1730", STAC_DELL_3ST), |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1789 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST), |
Tobin Davis | 4ff076e | 2007-08-07 11:48:12 +0200 | [diff] [blame] | 1790 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST), |
| 1791 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST), |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 1792 | /* Dell 3 stack systems with verb table in BIOS */ |
Matthew Ranostay | 2f32d90 | 2008-01-10 13:06:26 +0100 | [diff] [blame] | 1793 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS), |
| 1794 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS), |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 1795 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS), |
Takashi Iwai | 24918b6 | 2008-09-30 12:58:54 +0200 | [diff] [blame] | 1796 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_3ST), |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 1797 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS), |
| 1798 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS), |
| 1799 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS), |
| 1800 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS), |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 1801 | /* 965 based 5 stack systems */ |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1802 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2301, "Intel D965", STAC_D965_5ST), |
| 1803 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2302, "Intel D965", STAC_D965_5ST), |
| 1804 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2303, "Intel D965", STAC_D965_5ST), |
| 1805 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2304, "Intel D965", STAC_D965_5ST), |
| 1806 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2305, "Intel D965", STAC_D965_5ST), |
| 1807 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2501, "Intel D965", STAC_D965_5ST), |
| 1808 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2502, "Intel D965", STAC_D965_5ST), |
| 1809 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2503, "Intel D965", STAC_D965_5ST), |
| 1810 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2504, "Intel D965", STAC_D965_5ST), |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 1811 | {} /* terminator */ |
| 1812 | }; |
| 1813 | |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 1814 | static unsigned int ref9205_pin_configs[12] = { |
| 1815 | 0x40000100, 0x40000100, 0x01016011, 0x01014010, |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 1816 | 0x01813122, 0x01a19021, 0x01019020, 0x40000100, |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 1817 | 0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030 |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 1818 | }; |
| 1819 | |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1820 | /* |
| 1821 | STAC 9205 pin configs for |
| 1822 | 102801F1 |
| 1823 | 102801F2 |
| 1824 | 102801FC |
| 1825 | 102801FD |
| 1826 | 10280204 |
| 1827 | 1028021F |
Matthew Ranostay | 3fa2ef7 | 2008-01-11 11:39:06 +0100 | [diff] [blame] | 1828 | 10280228 (Dell Vostro 1500) |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1829 | */ |
| 1830 | static unsigned int dell_9205_m42_pin_configs[12] = { |
| 1831 | 0x0321101F, 0x03A11020, 0x400003FA, 0x90170310, |
| 1832 | 0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9, |
| 1833 | 0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE, |
| 1834 | }; |
| 1835 | |
| 1836 | /* |
| 1837 | STAC 9205 pin configs for |
| 1838 | 102801F9 |
| 1839 | 102801FA |
| 1840 | 102801FE |
| 1841 | 102801FF (Dell Precision M4300) |
| 1842 | 10280206 |
| 1843 | 10280200 |
| 1844 | 10280201 |
| 1845 | */ |
| 1846 | static unsigned int dell_9205_m43_pin_configs[12] = { |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 1847 | 0x0321101f, 0x03a11020, 0x90a70330, 0x90170310, |
| 1848 | 0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9, |
| 1849 | 0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8, |
| 1850 | }; |
| 1851 | |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1852 | static unsigned int dell_9205_m44_pin_configs[12] = { |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 1853 | 0x0421101f, 0x04a11020, 0x400003fa, 0x90170310, |
| 1854 | 0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9, |
| 1855 | 0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe, |
| 1856 | }; |
| 1857 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1858 | static unsigned int *stac9205_brd_tbl[STAC_9205_MODELS] = { |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 1859 | [STAC_9205_REF] = ref9205_pin_configs, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1860 | [STAC_9205_DELL_M42] = dell_9205_m42_pin_configs, |
| 1861 | [STAC_9205_DELL_M43] = dell_9205_m43_pin_configs, |
| 1862 | [STAC_9205_DELL_M44] = dell_9205_m44_pin_configs, |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 1863 | }; |
| 1864 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1865 | static const char *stac9205_models[STAC_9205_MODELS] = { |
| 1866 | [STAC_9205_REF] = "ref", |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1867 | [STAC_9205_DELL_M42] = "dell-m42", |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 1868 | [STAC_9205_DELL_M43] = "dell-m43", |
| 1869 | [STAC_9205_DELL_M44] = "dell-m44", |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1870 | }; |
| 1871 | |
| 1872 | static struct snd_pci_quirk stac9205_cfg_tbl[] = { |
| 1873 | /* SigmaTel reference board */ |
| 1874 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, |
| 1875 | "DFI LanParty", STAC_9205_REF), |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1876 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1, |
| 1877 | "unknown Dell", STAC_9205_DELL_M42), |
| 1878 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2, |
| 1879 | "unknown Dell", STAC_9205_DELL_M42), |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 1880 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8, |
Matthew Ranostay | b44ef2f | 2007-09-18 00:52:38 +0200 | [diff] [blame] | 1881 | "Dell Precision", STAC_9205_DELL_M43), |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 1882 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9, |
| 1883 | "Dell Precision", STAC_9205_DELL_M43), |
| 1884 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa, |
| 1885 | "Dell Precision", STAC_9205_DELL_M43), |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1886 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc, |
| 1887 | "unknown Dell", STAC_9205_DELL_M42), |
| 1888 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd, |
| 1889 | "unknown Dell", STAC_9205_DELL_M42), |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 1890 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe, |
| 1891 | "Dell Precision", STAC_9205_DELL_M43), |
| 1892 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1893 | "Dell Precision M4300", STAC_9205_DELL_M43), |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1894 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204, |
| 1895 | "unknown Dell", STAC_9205_DELL_M42), |
Takashi Iwai | 4549915 | 2008-06-12 16:27:24 +0200 | [diff] [blame] | 1896 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206, |
| 1897 | "Dell Precision", STAC_9205_DELL_M43), |
| 1898 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b, |
| 1899 | "Dell Precision", STAC_9205_DELL_M43), |
| 1900 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c, |
| 1901 | "Dell Precision", STAC_9205_DELL_M43), |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 1902 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f, |
| 1903 | "Dell Inspiron", STAC_9205_DELL_M44), |
Matthew Ranostay | 3fa2ef7 | 2008-01-11 11:39:06 +0100 | [diff] [blame] | 1904 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228, |
| 1905 | "Dell Vostro 1500", STAC_9205_DELL_M42), |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 1906 | {} /* terminator */ |
| 1907 | }; |
| 1908 | |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 1909 | static int stac92xx_save_bios_config_regs(struct hda_codec *codec) |
| 1910 | { |
| 1911 | int i; |
| 1912 | struct sigmatel_spec *spec = codec->spec; |
| 1913 | |
| 1914 | if (! spec->bios_pin_configs) { |
| 1915 | spec->bios_pin_configs = kcalloc(spec->num_pins, |
| 1916 | sizeof(*spec->bios_pin_configs), GFP_KERNEL); |
| 1917 | if (! spec->bios_pin_configs) |
| 1918 | return -ENOMEM; |
| 1919 | } |
| 1920 | |
| 1921 | for (i = 0; i < spec->num_pins; i++) { |
| 1922 | hda_nid_t nid = spec->pin_nids[i]; |
| 1923 | unsigned int pin_cfg; |
| 1924 | |
| 1925 | pin_cfg = snd_hda_codec_read(codec, nid, 0, |
| 1926 | AC_VERB_GET_CONFIG_DEFAULT, 0x00); |
| 1927 | snd_printdd(KERN_INFO "hda_codec: pin nid %2.2x bios pin config %8.8x\n", |
| 1928 | nid, pin_cfg); |
| 1929 | spec->bios_pin_configs[i] = pin_cfg; |
| 1930 | } |
| 1931 | |
| 1932 | return 0; |
| 1933 | } |
| 1934 | |
Matthew Ranostay | 87d4836 | 2007-07-17 11:52:24 +0200 | [diff] [blame] | 1935 | static void stac92xx_set_config_reg(struct hda_codec *codec, |
| 1936 | hda_nid_t pin_nid, unsigned int pin_config) |
| 1937 | { |
| 1938 | int i; |
| 1939 | snd_hda_codec_write(codec, pin_nid, 0, |
| 1940 | AC_VERB_SET_CONFIG_DEFAULT_BYTES_0, |
| 1941 | pin_config & 0x000000ff); |
| 1942 | snd_hda_codec_write(codec, pin_nid, 0, |
| 1943 | AC_VERB_SET_CONFIG_DEFAULT_BYTES_1, |
| 1944 | (pin_config & 0x0000ff00) >> 8); |
| 1945 | snd_hda_codec_write(codec, pin_nid, 0, |
| 1946 | AC_VERB_SET_CONFIG_DEFAULT_BYTES_2, |
| 1947 | (pin_config & 0x00ff0000) >> 16); |
| 1948 | snd_hda_codec_write(codec, pin_nid, 0, |
| 1949 | AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, |
| 1950 | pin_config >> 24); |
| 1951 | i = snd_hda_codec_read(codec, pin_nid, 0, |
| 1952 | AC_VERB_GET_CONFIG_DEFAULT, |
| 1953 | 0x00); |
| 1954 | snd_printdd(KERN_INFO "hda_codec: pin nid %2.2x pin config %8.8x\n", |
| 1955 | pin_nid, i); |
| 1956 | } |
| 1957 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1958 | static void stac92xx_set_config_regs(struct hda_codec *codec) |
| 1959 | { |
| 1960 | int i; |
| 1961 | struct sigmatel_spec *spec = codec->spec; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1962 | |
Matthew Ranostay | 87d4836 | 2007-07-17 11:52:24 +0200 | [diff] [blame] | 1963 | if (!spec->pin_configs) |
| 1964 | return; |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 1965 | |
Matthew Ranostay | 87d4836 | 2007-07-17 11:52:24 +0200 | [diff] [blame] | 1966 | for (i = 0; i < spec->num_pins; i++) |
| 1967 | stac92xx_set_config_reg(codec, spec->pin_nids[i], |
| 1968 | spec->pin_configs[i]); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1969 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1970 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1971 | /* |
| 1972 | * Analog playback callbacks |
| 1973 | */ |
| 1974 | static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo, |
| 1975 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 1976 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1977 | { |
| 1978 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 1979 | return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream, |
| 1980 | hinfo); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1981 | } |
| 1982 | |
| 1983 | static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 1984 | struct hda_codec *codec, |
| 1985 | unsigned int stream_tag, |
| 1986 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 1987 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1988 | { |
| 1989 | struct sigmatel_spec *spec = codec->spec; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1990 | return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag, format, substream); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1991 | } |
| 1992 | |
| 1993 | static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo, |
| 1994 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 1995 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1996 | { |
| 1997 | struct sigmatel_spec *spec = codec->spec; |
| 1998 | return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout); |
| 1999 | } |
| 2000 | |
| 2001 | /* |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2002 | * Digital playback callbacks |
| 2003 | */ |
| 2004 | static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo, |
| 2005 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2006 | struct snd_pcm_substream *substream) |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2007 | { |
| 2008 | struct sigmatel_spec *spec = codec->spec; |
| 2009 | return snd_hda_multi_out_dig_open(codec, &spec->multiout); |
| 2010 | } |
| 2011 | |
| 2012 | static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo, |
| 2013 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2014 | struct snd_pcm_substream *substream) |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2015 | { |
| 2016 | struct sigmatel_spec *spec = codec->spec; |
| 2017 | return snd_hda_multi_out_dig_close(codec, &spec->multiout); |
| 2018 | } |
| 2019 | |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 2020 | static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 2021 | struct hda_codec *codec, |
| 2022 | unsigned int stream_tag, |
| 2023 | unsigned int format, |
| 2024 | struct snd_pcm_substream *substream) |
| 2025 | { |
| 2026 | struct sigmatel_spec *spec = codec->spec; |
| 2027 | return snd_hda_multi_out_dig_prepare(codec, &spec->multiout, |
| 2028 | stream_tag, format, substream); |
| 2029 | } |
| 2030 | |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2031 | |
| 2032 | /* |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2033 | * Analog capture callbacks |
| 2034 | */ |
| 2035 | static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 2036 | struct hda_codec *codec, |
| 2037 | unsigned int stream_tag, |
| 2038 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2039 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2040 | { |
| 2041 | struct sigmatel_spec *spec = codec->spec; |
| 2042 | |
| 2043 | snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number], |
| 2044 | stream_tag, 0, format); |
| 2045 | return 0; |
| 2046 | } |
| 2047 | |
| 2048 | static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo, |
| 2049 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2050 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2051 | { |
| 2052 | struct sigmatel_spec *spec = codec->spec; |
| 2053 | |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 2054 | snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2055 | return 0; |
| 2056 | } |
| 2057 | |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2058 | static struct hda_pcm_stream stac92xx_pcm_digital_playback = { |
| 2059 | .substreams = 1, |
| 2060 | .channels_min = 2, |
| 2061 | .channels_max = 2, |
| 2062 | /* NID is set in stac92xx_build_pcms */ |
| 2063 | .ops = { |
| 2064 | .open = stac92xx_dig_playback_pcm_open, |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 2065 | .close = stac92xx_dig_playback_pcm_close, |
| 2066 | .prepare = stac92xx_dig_playback_pcm_prepare |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2067 | }, |
| 2068 | }; |
| 2069 | |
| 2070 | static struct hda_pcm_stream stac92xx_pcm_digital_capture = { |
| 2071 | .substreams = 1, |
| 2072 | .channels_min = 2, |
| 2073 | .channels_max = 2, |
| 2074 | /* NID is set in stac92xx_build_pcms */ |
| 2075 | }; |
| 2076 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2077 | static struct hda_pcm_stream stac92xx_pcm_analog_playback = { |
| 2078 | .substreams = 1, |
| 2079 | .channels_min = 2, |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2080 | .channels_max = 8, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2081 | .nid = 0x02, /* NID to query formats and rates */ |
| 2082 | .ops = { |
| 2083 | .open = stac92xx_playback_pcm_open, |
| 2084 | .prepare = stac92xx_playback_pcm_prepare, |
| 2085 | .cleanup = stac92xx_playback_pcm_cleanup |
| 2086 | }, |
| 2087 | }; |
| 2088 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 2089 | static struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = { |
| 2090 | .substreams = 1, |
| 2091 | .channels_min = 2, |
| 2092 | .channels_max = 2, |
| 2093 | .nid = 0x06, /* NID to query formats and rates */ |
| 2094 | .ops = { |
| 2095 | .open = stac92xx_playback_pcm_open, |
| 2096 | .prepare = stac92xx_playback_pcm_prepare, |
| 2097 | .cleanup = stac92xx_playback_pcm_cleanup |
| 2098 | }, |
| 2099 | }; |
| 2100 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2101 | static struct hda_pcm_stream stac92xx_pcm_analog_capture = { |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2102 | .channels_min = 2, |
| 2103 | .channels_max = 2, |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 2104 | /* NID + .substreams is set in stac92xx_build_pcms */ |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2105 | .ops = { |
| 2106 | .prepare = stac92xx_capture_pcm_prepare, |
| 2107 | .cleanup = stac92xx_capture_pcm_cleanup |
| 2108 | }, |
| 2109 | }; |
| 2110 | |
| 2111 | static int stac92xx_build_pcms(struct hda_codec *codec) |
| 2112 | { |
| 2113 | struct sigmatel_spec *spec = codec->spec; |
| 2114 | struct hda_pcm *info = spec->pcm_rec; |
| 2115 | |
| 2116 | codec->num_pcms = 1; |
| 2117 | codec->pcm_info = info; |
| 2118 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2119 | info->name = "STAC92xx Analog"; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2120 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2121 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture; |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 2122 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0]; |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 2123 | info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adcs; |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 2124 | |
| 2125 | if (spec->alt_switch) { |
| 2126 | codec->num_pcms++; |
| 2127 | info++; |
| 2128 | info->name = "STAC92xx Analog Alt"; |
| 2129 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback; |
| 2130 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2131 | |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2132 | if (spec->multiout.dig_out_nid || spec->dig_in_nid) { |
| 2133 | codec->num_pcms++; |
| 2134 | info++; |
| 2135 | info->name = "STAC92xx Digital"; |
Takashi Iwai | 7ba72ba | 2008-02-06 14:03:20 +0100 | [diff] [blame] | 2136 | info->pcm_type = HDA_PCM_TYPE_SPDIF; |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2137 | if (spec->multiout.dig_out_nid) { |
| 2138 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback; |
| 2139 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid; |
| 2140 | } |
| 2141 | if (spec->dig_in_nid) { |
| 2142 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture; |
| 2143 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid; |
| 2144 | } |
| 2145 | } |
| 2146 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2147 | return 0; |
| 2148 | } |
| 2149 | |
Takashi Iwai | c960a03 | 2006-03-23 17:06:28 +0100 | [diff] [blame] | 2150 | static unsigned int stac92xx_get_vref(struct hda_codec *codec, hda_nid_t nid) |
| 2151 | { |
| 2152 | unsigned int pincap = snd_hda_param_read(codec, nid, |
| 2153 | AC_PAR_PIN_CAP); |
| 2154 | pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT; |
| 2155 | if (pincap & AC_PINCAP_VREF_100) |
| 2156 | return AC_PINCTL_VREF_100; |
| 2157 | if (pincap & AC_PINCAP_VREF_80) |
| 2158 | return AC_PINCTL_VREF_80; |
| 2159 | if (pincap & AC_PINCAP_VREF_50) |
| 2160 | return AC_PINCTL_VREF_50; |
| 2161 | if (pincap & AC_PINCAP_VREF_GRD) |
| 2162 | return AC_PINCTL_VREF_GRD; |
| 2163 | return 0; |
| 2164 | } |
| 2165 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2166 | static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type) |
| 2167 | |
| 2168 | { |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 2169 | snd_hda_codec_write_cache(codec, nid, 0, |
| 2170 | AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type); |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2171 | } |
| 2172 | |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 2173 | #define stac92xx_hp_switch_info snd_ctl_boolean_mono_info |
| 2174 | |
| 2175 | static int stac92xx_hp_switch_get(struct snd_kcontrol *kcontrol, |
| 2176 | struct snd_ctl_elem_value *ucontrol) |
| 2177 | { |
| 2178 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2179 | struct sigmatel_spec *spec = codec->spec; |
| 2180 | |
| 2181 | ucontrol->value.integer.value[0] = spec->hp_switch; |
| 2182 | return 0; |
| 2183 | } |
| 2184 | |
| 2185 | static int stac92xx_hp_switch_put(struct snd_kcontrol *kcontrol, |
| 2186 | struct snd_ctl_elem_value *ucontrol) |
| 2187 | { |
| 2188 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2189 | struct sigmatel_spec *spec = codec->spec; |
| 2190 | |
| 2191 | spec->hp_switch = ucontrol->value.integer.value[0]; |
| 2192 | |
| 2193 | /* check to be sure that the ports are upto date with |
| 2194 | * switch changes |
| 2195 | */ |
| 2196 | codec->patch_ops.unsol_event(codec, STAC_HP_EVENT << 26); |
| 2197 | |
| 2198 | return 1; |
| 2199 | } |
| 2200 | |
Takashi Iwai | a5ce889 | 2007-07-23 15:42:26 +0200 | [diff] [blame] | 2201 | #define stac92xx_io_switch_info snd_ctl_boolean_mono_info |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2202 | |
| 2203 | static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) |
| 2204 | { |
| 2205 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2206 | struct sigmatel_spec *spec = codec->spec; |
| 2207 | int io_idx = kcontrol-> private_value & 0xff; |
| 2208 | |
| 2209 | ucontrol->value.integer.value[0] = spec->io_switch[io_idx]; |
| 2210 | return 0; |
| 2211 | } |
| 2212 | |
| 2213 | static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) |
| 2214 | { |
| 2215 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2216 | struct sigmatel_spec *spec = codec->spec; |
| 2217 | hda_nid_t nid = kcontrol->private_value >> 8; |
| 2218 | int io_idx = kcontrol-> private_value & 0xff; |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 2219 | unsigned short val = !!ucontrol->value.integer.value[0]; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2220 | |
| 2221 | spec->io_switch[io_idx] = val; |
| 2222 | |
| 2223 | if (val) |
| 2224 | stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN); |
Takashi Iwai | c960a03 | 2006-03-23 17:06:28 +0100 | [diff] [blame] | 2225 | else { |
| 2226 | unsigned int pinctl = AC_PINCTL_IN_EN; |
| 2227 | if (io_idx) /* set VREF for mic */ |
| 2228 | pinctl |= stac92xx_get_vref(codec, nid); |
| 2229 | stac92xx_auto_set_pinctl(codec, nid, pinctl); |
| 2230 | } |
Jiang Zhe | 40c1d30 | 2007-11-12 13:05:16 +0100 | [diff] [blame] | 2231 | |
| 2232 | /* check the auto-mute again: we need to mute/unmute the speaker |
| 2233 | * appropriately according to the pin direction |
| 2234 | */ |
| 2235 | if (spec->hp_detect) |
| 2236 | codec->patch_ops.unsol_event(codec, STAC_HP_EVENT << 26); |
| 2237 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2238 | return 1; |
| 2239 | } |
| 2240 | |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2241 | #define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info |
| 2242 | |
| 2243 | static int stac92xx_clfe_switch_get(struct snd_kcontrol *kcontrol, |
| 2244 | struct snd_ctl_elem_value *ucontrol) |
| 2245 | { |
| 2246 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2247 | struct sigmatel_spec *spec = codec->spec; |
| 2248 | |
| 2249 | ucontrol->value.integer.value[0] = spec->clfe_swap; |
| 2250 | return 0; |
| 2251 | } |
| 2252 | |
| 2253 | static int stac92xx_clfe_switch_put(struct snd_kcontrol *kcontrol, |
| 2254 | struct snd_ctl_elem_value *ucontrol) |
| 2255 | { |
| 2256 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2257 | struct sigmatel_spec *spec = codec->spec; |
| 2258 | hda_nid_t nid = kcontrol->private_value & 0xff; |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 2259 | unsigned int val = !!ucontrol->value.integer.value[0]; |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2260 | |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 2261 | if (spec->clfe_swap == val) |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2262 | return 0; |
| 2263 | |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 2264 | spec->clfe_swap = val; |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2265 | |
| 2266 | snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE, |
| 2267 | spec->clfe_swap ? 0x4 : 0x0); |
| 2268 | |
| 2269 | return 1; |
| 2270 | } |
| 2271 | |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 2272 | #define STAC_CODEC_HP_SWITCH(xname) \ |
| 2273 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| 2274 | .name = xname, \ |
| 2275 | .index = 0, \ |
| 2276 | .info = stac92xx_hp_switch_info, \ |
| 2277 | .get = stac92xx_hp_switch_get, \ |
| 2278 | .put = stac92xx_hp_switch_put, \ |
| 2279 | } |
| 2280 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2281 | #define STAC_CODEC_IO_SWITCH(xname, xpval) \ |
| 2282 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| 2283 | .name = xname, \ |
| 2284 | .index = 0, \ |
| 2285 | .info = stac92xx_io_switch_info, \ |
| 2286 | .get = stac92xx_io_switch_get, \ |
| 2287 | .put = stac92xx_io_switch_put, \ |
| 2288 | .private_value = xpval, \ |
| 2289 | } |
| 2290 | |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2291 | #define STAC_CODEC_CLFE_SWITCH(xname, xpval) \ |
| 2292 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| 2293 | .name = xname, \ |
| 2294 | .index = 0, \ |
| 2295 | .info = stac92xx_clfe_switch_info, \ |
| 2296 | .get = stac92xx_clfe_switch_get, \ |
| 2297 | .put = stac92xx_clfe_switch_put, \ |
| 2298 | .private_value = xpval, \ |
| 2299 | } |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2300 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2301 | enum { |
| 2302 | STAC_CTL_WIDGET_VOL, |
| 2303 | STAC_CTL_WIDGET_MUTE, |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 2304 | STAC_CTL_WIDGET_MONO_MUX, |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 2305 | STAC_CTL_WIDGET_HP_SWITCH, |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2306 | STAC_CTL_WIDGET_IO_SWITCH, |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2307 | STAC_CTL_WIDGET_CLFE_SWITCH |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2308 | }; |
| 2309 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2310 | static struct snd_kcontrol_new stac92xx_control_templates[] = { |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2311 | HDA_CODEC_VOLUME(NULL, 0, 0, 0), |
| 2312 | HDA_CODEC_MUTE(NULL, 0, 0, 0), |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 2313 | STAC_MONO_MUX, |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 2314 | STAC_CODEC_HP_SWITCH(NULL), |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2315 | STAC_CODEC_IO_SWITCH(NULL, 0), |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2316 | STAC_CODEC_CLFE_SWITCH(NULL, 0), |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2317 | }; |
| 2318 | |
| 2319 | /* add dynamic controls */ |
| 2320 | static int stac92xx_add_control(struct sigmatel_spec *spec, int type, const char *name, unsigned long val) |
| 2321 | { |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2322 | struct snd_kcontrol_new *knew; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2323 | |
| 2324 | if (spec->num_kctl_used >= spec->num_kctl_alloc) { |
| 2325 | int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC; |
| 2326 | |
| 2327 | knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL); /* array + terminator */ |
| 2328 | if (! knew) |
| 2329 | return -ENOMEM; |
| 2330 | if (spec->kctl_alloc) { |
| 2331 | memcpy(knew, spec->kctl_alloc, sizeof(*knew) * spec->num_kctl_alloc); |
| 2332 | kfree(spec->kctl_alloc); |
| 2333 | } |
| 2334 | spec->kctl_alloc = knew; |
| 2335 | spec->num_kctl_alloc = num; |
| 2336 | } |
| 2337 | |
| 2338 | knew = &spec->kctl_alloc[spec->num_kctl_used]; |
| 2339 | *knew = stac92xx_control_templates[type]; |
Takashi Iwai | 82fe0c5 | 2005-06-30 10:54:33 +0200 | [diff] [blame] | 2340 | knew->name = kstrdup(name, GFP_KERNEL); |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2341 | if (! knew->name) |
| 2342 | return -ENOMEM; |
| 2343 | knew->private_value = val; |
| 2344 | spec->num_kctl_used++; |
| 2345 | return 0; |
| 2346 | } |
| 2347 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2348 | /* flag inputs as additional dynamic lineouts */ |
| 2349 | static int stac92xx_add_dyn_out_pins(struct hda_codec *codec, struct auto_pin_cfg *cfg) |
| 2350 | { |
| 2351 | struct sigmatel_spec *spec = codec->spec; |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2352 | unsigned int wcaps, wtype; |
| 2353 | int i, num_dacs = 0; |
| 2354 | |
| 2355 | /* use the wcaps cache to count all DACs available for line-outs */ |
| 2356 | for (i = 0; i < codec->num_nodes; i++) { |
| 2357 | wcaps = codec->wcaps[i]; |
| 2358 | wtype = (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 2359 | |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2360 | if (wtype == AC_WID_AUD_OUT && !(wcaps & AC_WCAP_DIGITAL)) |
| 2361 | num_dacs++; |
| 2362 | } |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2363 | |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2364 | snd_printdd("%s: total dac count=%d\n", __func__, num_dacs); |
| 2365 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2366 | switch (cfg->line_outs) { |
| 2367 | case 3: |
| 2368 | /* add line-in as side */ |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2369 | if (cfg->input_pins[AUTO_PIN_LINE] && num_dacs > 3) { |
Takashi Iwai | c480f79 | 2007-09-03 09:43:38 +0200 | [diff] [blame] | 2370 | cfg->line_out_pins[cfg->line_outs] = |
| 2371 | cfg->input_pins[AUTO_PIN_LINE]; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2372 | spec->line_switch = 1; |
| 2373 | cfg->line_outs++; |
| 2374 | } |
| 2375 | break; |
| 2376 | case 2: |
| 2377 | /* add line-in as clfe and mic as side */ |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2378 | if (cfg->input_pins[AUTO_PIN_LINE] && num_dacs > 2) { |
Takashi Iwai | c480f79 | 2007-09-03 09:43:38 +0200 | [diff] [blame] | 2379 | cfg->line_out_pins[cfg->line_outs] = |
| 2380 | cfg->input_pins[AUTO_PIN_LINE]; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2381 | spec->line_switch = 1; |
| 2382 | cfg->line_outs++; |
| 2383 | } |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2384 | if (cfg->input_pins[AUTO_PIN_MIC] && num_dacs > 3) { |
Takashi Iwai | c480f79 | 2007-09-03 09:43:38 +0200 | [diff] [blame] | 2385 | cfg->line_out_pins[cfg->line_outs] = |
| 2386 | cfg->input_pins[AUTO_PIN_MIC]; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2387 | spec->mic_switch = 1; |
| 2388 | cfg->line_outs++; |
| 2389 | } |
| 2390 | break; |
| 2391 | case 1: |
| 2392 | /* add line-in as surr and mic as clfe */ |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2393 | if (cfg->input_pins[AUTO_PIN_LINE] && num_dacs > 1) { |
Takashi Iwai | c480f79 | 2007-09-03 09:43:38 +0200 | [diff] [blame] | 2394 | cfg->line_out_pins[cfg->line_outs] = |
| 2395 | cfg->input_pins[AUTO_PIN_LINE]; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2396 | spec->line_switch = 1; |
| 2397 | cfg->line_outs++; |
| 2398 | } |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2399 | if (cfg->input_pins[AUTO_PIN_MIC] && num_dacs > 2) { |
Takashi Iwai | c480f79 | 2007-09-03 09:43:38 +0200 | [diff] [blame] | 2400 | cfg->line_out_pins[cfg->line_outs] = |
| 2401 | cfg->input_pins[AUTO_PIN_MIC]; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2402 | spec->mic_switch = 1; |
| 2403 | cfg->line_outs++; |
| 2404 | } |
| 2405 | break; |
| 2406 | } |
| 2407 | |
| 2408 | return 0; |
| 2409 | } |
| 2410 | |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2411 | |
| 2412 | static int is_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid) |
| 2413 | { |
| 2414 | int i; |
| 2415 | |
| 2416 | for (i = 0; i < spec->multiout.num_dacs; i++) { |
| 2417 | if (spec->multiout.dac_nids[i] == nid) |
| 2418 | return 1; |
| 2419 | } |
| 2420 | |
| 2421 | return 0; |
| 2422 | } |
| 2423 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 2424 | /* |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2425 | * Fill in the dac_nids table from the parsed pin configuration |
| 2426 | * This function only works when every pin in line_out_pins[] |
| 2427 | * contains atleast one DAC in its connection list. Some 92xx |
| 2428 | * codecs are not connected directly to a DAC, such as the 9200 |
| 2429 | * and 9202/925x. For those, dac_nids[] must be hard-coded. |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 2430 | */ |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 2431 | static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec, |
Takashi Iwai | df80295 | 2007-07-02 19:18:00 +0200 | [diff] [blame] | 2432 | struct auto_pin_cfg *cfg) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2433 | { |
| 2434 | struct sigmatel_spec *spec = codec->spec; |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2435 | int i, j, conn_len = 0; |
| 2436 | hda_nid_t nid, conn[HDA_MAX_CONNECTIONS]; |
| 2437 | unsigned int wcaps, wtype; |
| 2438 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2439 | for (i = 0; i < cfg->line_outs; i++) { |
| 2440 | nid = cfg->line_out_pins[i]; |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2441 | conn_len = snd_hda_get_connections(codec, nid, conn, |
| 2442 | HDA_MAX_CONNECTIONS); |
| 2443 | for (j = 0; j < conn_len; j++) { |
| 2444 | wcaps = snd_hda_param_read(codec, conn[j], |
| 2445 | AC_PAR_AUDIO_WIDGET_CAP); |
| 2446 | wtype = (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2447 | if (wtype != AC_WID_AUD_OUT || |
| 2448 | (wcaps & AC_WCAP_DIGITAL)) |
| 2449 | continue; |
| 2450 | /* conn[j] is a DAC routed to this line-out */ |
| 2451 | if (!is_in_dac_nids(spec, conn[j])) |
| 2452 | break; |
| 2453 | } |
| 2454 | |
| 2455 | if (j == conn_len) { |
Takashi Iwai | df80295 | 2007-07-02 19:18:00 +0200 | [diff] [blame] | 2456 | if (spec->multiout.num_dacs > 0) { |
| 2457 | /* we have already working output pins, |
| 2458 | * so let's drop the broken ones again |
| 2459 | */ |
| 2460 | cfg->line_outs = spec->multiout.num_dacs; |
| 2461 | break; |
| 2462 | } |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2463 | /* error out, no available DAC found */ |
| 2464 | snd_printk(KERN_ERR |
| 2465 | "%s: No available DAC for pin 0x%x\n", |
| 2466 | __func__, nid); |
| 2467 | return -ENODEV; |
| 2468 | } |
| 2469 | |
| 2470 | spec->multiout.dac_nids[i] = conn[j]; |
| 2471 | spec->multiout.num_dacs++; |
| 2472 | if (conn_len > 1) { |
| 2473 | /* select this DAC in the pin's input mux */ |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 2474 | snd_hda_codec_write_cache(codec, nid, 0, |
| 2475 | AC_VERB_SET_CONNECT_SEL, j); |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2476 | |
| 2477 | } |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2478 | } |
| 2479 | |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2480 | snd_printd("dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n", |
| 2481 | spec->multiout.num_dacs, |
| 2482 | spec->multiout.dac_nids[0], |
| 2483 | spec->multiout.dac_nids[1], |
| 2484 | spec->multiout.dac_nids[2], |
| 2485 | spec->multiout.dac_nids[3], |
| 2486 | spec->multiout.dac_nids[4]); |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2487 | return 0; |
| 2488 | } |
| 2489 | |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2490 | /* create volume control/switch for the given prefx type */ |
| 2491 | static int create_controls(struct sigmatel_spec *spec, const char *pfx, hda_nid_t nid, int chs) |
| 2492 | { |
| 2493 | char name[32]; |
| 2494 | int err; |
| 2495 | |
| 2496 | sprintf(name, "%s Playback Volume", pfx); |
| 2497 | err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, name, |
| 2498 | HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT)); |
| 2499 | if (err < 0) |
| 2500 | return err; |
| 2501 | sprintf(name, "%s Playback Switch", pfx); |
| 2502 | err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, name, |
| 2503 | HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT)); |
| 2504 | if (err < 0) |
| 2505 | return err; |
| 2506 | return 0; |
| 2507 | } |
| 2508 | |
Matthew Ranostay | ae0afd8 | 2008-02-22 17:55:05 +0100 | [diff] [blame] | 2509 | static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid) |
| 2510 | { |
| 2511 | if (!spec->multiout.hp_nid) |
| 2512 | spec->multiout.hp_nid = nid; |
| 2513 | else if (spec->multiout.num_dacs > 4) { |
| 2514 | printk(KERN_WARNING "stac92xx: No space for DAC 0x%x\n", nid); |
| 2515 | return 1; |
| 2516 | } else { |
| 2517 | spec->multiout.dac_nids[spec->multiout.num_dacs] = nid; |
| 2518 | spec->multiout.num_dacs++; |
| 2519 | } |
| 2520 | return 0; |
| 2521 | } |
| 2522 | |
| 2523 | static int check_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid) |
| 2524 | { |
| 2525 | if (is_in_dac_nids(spec, nid)) |
| 2526 | return 1; |
| 2527 | if (spec->multiout.hp_nid == nid) |
| 2528 | return 1; |
| 2529 | return 0; |
| 2530 | } |
| 2531 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2532 | /* add playback controls from the parsed DAC table */ |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2533 | static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec, |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 2534 | const struct auto_pin_cfg *cfg) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2535 | { |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 2536 | static const char *chname[4] = { |
| 2537 | "Front", "Surround", NULL /*CLFE*/, "Side" |
| 2538 | }; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2539 | hda_nid_t nid; |
| 2540 | int i, err; |
| 2541 | |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2542 | struct sigmatel_spec *spec = codec->spec; |
Matthew Ranostay | b5895dc | 2008-01-25 15:24:50 +0100 | [diff] [blame] | 2543 | unsigned int wid_caps, pincap; |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2544 | |
| 2545 | |
Takashi Iwai | 40ac8c4 | 2008-02-29 14:16:17 +0100 | [diff] [blame] | 2546 | for (i = 0; i < cfg->line_outs && i < spec->multiout.num_dacs; i++) { |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2547 | if (!spec->multiout.dac_nids[i]) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2548 | continue; |
| 2549 | |
| 2550 | nid = spec->multiout.dac_nids[i]; |
| 2551 | |
| 2552 | if (i == 2) { |
| 2553 | /* Center/LFE */ |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2554 | err = create_controls(spec, "Center", nid, 1); |
| 2555 | if (err < 0) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2556 | return err; |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2557 | err = create_controls(spec, "LFE", nid, 2); |
| 2558 | if (err < 0) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2559 | return err; |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2560 | |
| 2561 | wid_caps = get_wcaps(codec, nid); |
| 2562 | |
| 2563 | if (wid_caps & AC_WCAP_LR_SWAP) { |
| 2564 | err = stac92xx_add_control(spec, |
| 2565 | STAC_CTL_WIDGET_CLFE_SWITCH, |
| 2566 | "Swap Center/LFE Playback Switch", nid); |
| 2567 | |
| 2568 | if (err < 0) |
| 2569 | return err; |
| 2570 | } |
| 2571 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2572 | } else { |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2573 | err = create_controls(spec, chname[i], nid, 3); |
| 2574 | if (err < 0) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2575 | return err; |
| 2576 | } |
| 2577 | } |
| 2578 | |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 2579 | if (cfg->hp_outs > 1) { |
| 2580 | err = stac92xx_add_control(spec, |
| 2581 | STAC_CTL_WIDGET_HP_SWITCH, |
| 2582 | "Headphone as Line Out Switch", 0); |
| 2583 | if (err < 0) |
| 2584 | return err; |
| 2585 | } |
| 2586 | |
Matthew Ranostay | b5895dc | 2008-01-25 15:24:50 +0100 | [diff] [blame] | 2587 | if (spec->line_switch) { |
| 2588 | nid = cfg->input_pins[AUTO_PIN_LINE]; |
| 2589 | pincap = snd_hda_param_read(codec, nid, |
| 2590 | AC_PAR_PIN_CAP); |
| 2591 | if (pincap & AC_PINCAP_OUT) { |
| 2592 | err = stac92xx_add_control(spec, |
| 2593 | STAC_CTL_WIDGET_IO_SWITCH, |
| 2594 | "Line In as Output Switch", nid << 8); |
| 2595 | if (err < 0) |
| 2596 | return err; |
| 2597 | } |
| 2598 | } |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2599 | |
Matthew Ranostay | b5895dc | 2008-01-25 15:24:50 +0100 | [diff] [blame] | 2600 | if (spec->mic_switch) { |
Matthew Ranostay | cace16f | 2008-01-30 14:58:38 +0100 | [diff] [blame] | 2601 | unsigned int def_conf; |
Matthew Ranostay | ae0afd8 | 2008-02-22 17:55:05 +0100 | [diff] [blame] | 2602 | unsigned int mic_pin = AUTO_PIN_MIC; |
| 2603 | again: |
| 2604 | nid = cfg->input_pins[mic_pin]; |
Matthew Ranostay | cace16f | 2008-01-30 14:58:38 +0100 | [diff] [blame] | 2605 | def_conf = snd_hda_codec_read(codec, nid, 0, |
| 2606 | AC_VERB_GET_CONFIG_DEFAULT, 0); |
Matthew Ranostay | cace16f | 2008-01-30 14:58:38 +0100 | [diff] [blame] | 2607 | /* some laptops have an internal analog microphone |
| 2608 | * which can't be used as a output */ |
| 2609 | if (get_defcfg_connect(def_conf) != AC_JACK_PORT_FIXED) { |
| 2610 | pincap = snd_hda_param_read(codec, nid, |
| 2611 | AC_PAR_PIN_CAP); |
| 2612 | if (pincap & AC_PINCAP_OUT) { |
| 2613 | err = stac92xx_add_control(spec, |
| 2614 | STAC_CTL_WIDGET_IO_SWITCH, |
| 2615 | "Mic as Output Switch", (nid << 8) | 1); |
Matthew Ranostay | ae0afd8 | 2008-02-22 17:55:05 +0100 | [diff] [blame] | 2616 | nid = snd_hda_codec_read(codec, nid, 0, |
| 2617 | AC_VERB_GET_CONNECT_LIST, 0) & 0xff; |
| 2618 | if (!check_in_dac_nids(spec, nid)) |
| 2619 | add_spec_dacs(spec, nid); |
Matthew Ranostay | cace16f | 2008-01-30 14:58:38 +0100 | [diff] [blame] | 2620 | if (err < 0) |
| 2621 | return err; |
| 2622 | } |
Matthew Ranostay | ae0afd8 | 2008-02-22 17:55:05 +0100 | [diff] [blame] | 2623 | } else if (mic_pin == AUTO_PIN_MIC) { |
| 2624 | mic_pin = AUTO_PIN_FRONT_MIC; |
| 2625 | goto again; |
Matthew Ranostay | b5895dc | 2008-01-25 15:24:50 +0100 | [diff] [blame] | 2626 | } |
| 2627 | } |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2628 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2629 | return 0; |
| 2630 | } |
| 2631 | |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2632 | /* add playback controls for Speaker and HP outputs */ |
| 2633 | static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec, |
| 2634 | struct auto_pin_cfg *cfg) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2635 | { |
| 2636 | struct sigmatel_spec *spec = codec->spec; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2637 | hda_nid_t nid; |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2638 | int i, old_num_dacs, err; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2639 | |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2640 | old_num_dacs = spec->multiout.num_dacs; |
| 2641 | for (i = 0; i < cfg->hp_outs; i++) { |
| 2642 | unsigned int wid_caps = get_wcaps(codec, cfg->hp_pins[i]); |
| 2643 | if (wid_caps & AC_WCAP_UNSOL_CAP) |
| 2644 | spec->hp_detect = 1; |
| 2645 | nid = snd_hda_codec_read(codec, cfg->hp_pins[i], 0, |
| 2646 | AC_VERB_GET_CONNECT_LIST, 0) & 0xff; |
| 2647 | if (check_in_dac_nids(spec, nid)) |
| 2648 | nid = 0; |
| 2649 | if (! nid) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2650 | continue; |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2651 | add_spec_dacs(spec, nid); |
| 2652 | } |
| 2653 | for (i = 0; i < cfg->speaker_outs; i++) { |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2654 | nid = snd_hda_codec_read(codec, cfg->speaker_pins[i], 0, |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2655 | AC_VERB_GET_CONNECT_LIST, 0) & 0xff; |
| 2656 | if (check_in_dac_nids(spec, nid)) |
| 2657 | nid = 0; |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2658 | if (! nid) |
| 2659 | continue; |
| 2660 | add_spec_dacs(spec, nid); |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2661 | } |
Matthew Ranostay | 1b290a5 | 2007-07-12 15:17:34 +0200 | [diff] [blame] | 2662 | for (i = 0; i < cfg->line_outs; i++) { |
| 2663 | nid = snd_hda_codec_read(codec, cfg->line_out_pins[i], 0, |
| 2664 | AC_VERB_GET_CONNECT_LIST, 0) & 0xff; |
| 2665 | if (check_in_dac_nids(spec, nid)) |
| 2666 | nid = 0; |
| 2667 | if (! nid) |
| 2668 | continue; |
| 2669 | add_spec_dacs(spec, nid); |
| 2670 | } |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2671 | for (i = old_num_dacs; i < spec->multiout.num_dacs; i++) { |
| 2672 | static const char *pfxs[] = { |
| 2673 | "Speaker", "External Speaker", "Speaker2", |
| 2674 | }; |
| 2675 | err = create_controls(spec, pfxs[i - old_num_dacs], |
| 2676 | spec->multiout.dac_nids[i], 3); |
| 2677 | if (err < 0) |
| 2678 | return err; |
| 2679 | } |
| 2680 | if (spec->multiout.hp_nid) { |
Takashi Iwai | 2626a26 | 2008-03-14 09:18:32 +0100 | [diff] [blame] | 2681 | err = create_controls(spec, "Headphone", |
| 2682 | spec->multiout.hp_nid, 3); |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2683 | if (err < 0) |
| 2684 | return err; |
| 2685 | } |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2686 | |
| 2687 | return 0; |
| 2688 | } |
| 2689 | |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 2690 | /* labels for mono mux outputs */ |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 2691 | static const char *stac92xx_mono_labels[4] = { |
| 2692 | "DAC0", "DAC1", "Mixer", "DAC2" |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 2693 | }; |
| 2694 | |
| 2695 | /* create mono mux for mono out on capable codecs */ |
| 2696 | static int stac92xx_auto_create_mono_output_ctls(struct hda_codec *codec) |
| 2697 | { |
| 2698 | struct sigmatel_spec *spec = codec->spec; |
| 2699 | struct hda_input_mux *mono_mux = &spec->private_mono_mux; |
| 2700 | int i, num_cons; |
| 2701 | hda_nid_t con_lst[ARRAY_SIZE(stac92xx_mono_labels)]; |
| 2702 | |
| 2703 | num_cons = snd_hda_get_connections(codec, |
| 2704 | spec->mono_nid, |
| 2705 | con_lst, |
| 2706 | HDA_MAX_NUM_INPUTS); |
| 2707 | if (!num_cons || num_cons > ARRAY_SIZE(stac92xx_mono_labels)) |
| 2708 | return -EINVAL; |
| 2709 | |
| 2710 | for (i = 0; i < num_cons; i++) { |
| 2711 | mono_mux->items[mono_mux->num_items].label = |
| 2712 | stac92xx_mono_labels[i]; |
| 2713 | mono_mux->items[mono_mux->num_items].index = i; |
| 2714 | mono_mux->num_items++; |
| 2715 | } |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 2716 | |
| 2717 | return stac92xx_add_control(spec, STAC_CTL_WIDGET_MONO_MUX, |
| 2718 | "Mono Mux", spec->mono_nid); |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 2719 | } |
| 2720 | |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 2721 | /* create PC beep volume controls */ |
| 2722 | static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec, |
| 2723 | hda_nid_t nid) |
| 2724 | { |
| 2725 | struct sigmatel_spec *spec = codec->spec; |
| 2726 | u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT); |
| 2727 | int err; |
| 2728 | |
| 2729 | /* check for mute support for the the amp */ |
| 2730 | if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) { |
| 2731 | err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, |
| 2732 | "PC Beep Playback Switch", |
| 2733 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT)); |
| 2734 | if (err < 0) |
| 2735 | return err; |
| 2736 | } |
| 2737 | |
| 2738 | /* check to see if there is volume support for the amp */ |
| 2739 | if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) { |
| 2740 | err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, |
| 2741 | "PC Beep Playback Volume", |
| 2742 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT)); |
| 2743 | if (err < 0) |
| 2744 | return err; |
| 2745 | } |
| 2746 | return 0; |
| 2747 | } |
| 2748 | |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 2749 | /* labels for dmic mux inputs */ |
Adrian Bunk | ddc2cec | 2006-11-20 12:03:44 +0100 | [diff] [blame] | 2750 | static const char *stac92xx_dmic_labels[5] = { |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 2751 | "Analog Inputs", "Digital Mic 1", "Digital Mic 2", |
| 2752 | "Digital Mic 3", "Digital Mic 4" |
| 2753 | }; |
| 2754 | |
| 2755 | /* create playback/capture controls for input pins on dmic capable codecs */ |
| 2756 | static int stac92xx_auto_create_dmic_input_ctls(struct hda_codec *codec, |
| 2757 | const struct auto_pin_cfg *cfg) |
| 2758 | { |
| 2759 | struct sigmatel_spec *spec = codec->spec; |
| 2760 | struct hda_input_mux *dimux = &spec->private_dimux; |
| 2761 | hda_nid_t con_lst[HDA_MAX_NUM_INPUTS]; |
Matthew Ranostay | 0678acc | 2008-01-08 12:10:50 +0100 | [diff] [blame] | 2762 | int err, i, j; |
| 2763 | char name[32]; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 2764 | |
| 2765 | dimux->items[dimux->num_items].label = stac92xx_dmic_labels[0]; |
| 2766 | dimux->items[dimux->num_items].index = 0; |
| 2767 | dimux->num_items++; |
| 2768 | |
| 2769 | for (i = 0; i < spec->num_dmics; i++) { |
Matthew Ranostay | 0678acc | 2008-01-08 12:10:50 +0100 | [diff] [blame] | 2770 | hda_nid_t nid; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 2771 | int index; |
| 2772 | int num_cons; |
Matthew Ranostay | 0678acc | 2008-01-08 12:10:50 +0100 | [diff] [blame] | 2773 | unsigned int wcaps; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 2774 | unsigned int def_conf; |
| 2775 | |
| 2776 | def_conf = snd_hda_codec_read(codec, |
| 2777 | spec->dmic_nids[i], |
| 2778 | 0, |
| 2779 | AC_VERB_GET_CONFIG_DEFAULT, |
| 2780 | 0); |
| 2781 | if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE) |
| 2782 | continue; |
| 2783 | |
Matthew Ranostay | 0678acc | 2008-01-08 12:10:50 +0100 | [diff] [blame] | 2784 | nid = spec->dmic_nids[i]; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 2785 | num_cons = snd_hda_get_connections(codec, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 2786 | spec->dmux_nids[0], |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 2787 | con_lst, |
| 2788 | HDA_MAX_NUM_INPUTS); |
| 2789 | for (j = 0; j < num_cons; j++) |
Matthew Ranostay | 0678acc | 2008-01-08 12:10:50 +0100 | [diff] [blame] | 2790 | if (con_lst[j] == nid) { |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 2791 | index = j; |
| 2792 | goto found; |
| 2793 | } |
| 2794 | continue; |
| 2795 | found: |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 2796 | wcaps = get_wcaps(codec, nid) & |
| 2797 | (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP); |
Matthew Ranostay | 0678acc | 2008-01-08 12:10:50 +0100 | [diff] [blame] | 2798 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 2799 | if (wcaps) { |
Matthew Ranostay | 0678acc | 2008-01-08 12:10:50 +0100 | [diff] [blame] | 2800 | sprintf(name, "%s Capture Volume", |
| 2801 | stac92xx_dmic_labels[dimux->num_items]); |
| 2802 | |
| 2803 | err = stac92xx_add_control(spec, |
| 2804 | STAC_CTL_WIDGET_VOL, |
| 2805 | name, |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 2806 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, |
| 2807 | (wcaps & AC_WCAP_OUT_AMP) ? |
| 2808 | HDA_OUTPUT : HDA_INPUT)); |
Matthew Ranostay | 0678acc | 2008-01-08 12:10:50 +0100 | [diff] [blame] | 2809 | if (err < 0) |
| 2810 | return err; |
| 2811 | } |
| 2812 | |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 2813 | dimux->items[dimux->num_items].label = |
| 2814 | stac92xx_dmic_labels[dimux->num_items]; |
| 2815 | dimux->items[dimux->num_items].index = index; |
| 2816 | dimux->num_items++; |
| 2817 | } |
| 2818 | |
| 2819 | return 0; |
| 2820 | } |
| 2821 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2822 | /* create playback/capture controls for input pins */ |
| 2823 | static int stac92xx_auto_create_analog_input_ctls(struct hda_codec *codec, const struct auto_pin_cfg *cfg) |
| 2824 | { |
| 2825 | struct sigmatel_spec *spec = codec->spec; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2826 | struct hda_input_mux *imux = &spec->private_imux; |
| 2827 | hda_nid_t con_lst[HDA_MAX_NUM_INPUTS]; |
| 2828 | int i, j, k; |
| 2829 | |
| 2830 | for (i = 0; i < AUTO_PIN_LAST; i++) { |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 2831 | int index; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2832 | |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 2833 | if (!cfg->input_pins[i]) |
| 2834 | continue; |
| 2835 | index = -1; |
| 2836 | for (j = 0; j < spec->num_muxes; j++) { |
| 2837 | int num_cons; |
| 2838 | num_cons = snd_hda_get_connections(codec, |
| 2839 | spec->mux_nids[j], |
| 2840 | con_lst, |
| 2841 | HDA_MAX_NUM_INPUTS); |
| 2842 | for (k = 0; k < num_cons; k++) |
| 2843 | if (con_lst[k] == cfg->input_pins[i]) { |
| 2844 | index = k; |
| 2845 | goto found; |
| 2846 | } |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2847 | } |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 2848 | continue; |
| 2849 | found: |
| 2850 | imux->items[imux->num_items].label = auto_pin_cfg_labels[i]; |
| 2851 | imux->items[imux->num_items].index = index; |
| 2852 | imux->num_items++; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2853 | } |
| 2854 | |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2855 | if (imux->num_items) { |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 2856 | /* |
| 2857 | * Set the current input for the muxes. |
| 2858 | * The STAC9221 has two input muxes with identical source |
| 2859 | * NID lists. Hopefully this won't get confused. |
| 2860 | */ |
| 2861 | for (i = 0; i < spec->num_muxes; i++) { |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 2862 | snd_hda_codec_write_cache(codec, spec->mux_nids[i], 0, |
| 2863 | AC_VERB_SET_CONNECT_SEL, |
| 2864 | imux->items[0].index); |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 2865 | } |
| 2866 | } |
| 2867 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2868 | return 0; |
| 2869 | } |
| 2870 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2871 | static void stac92xx_auto_init_multi_out(struct hda_codec *codec) |
| 2872 | { |
| 2873 | struct sigmatel_spec *spec = codec->spec; |
| 2874 | int i; |
| 2875 | |
| 2876 | for (i = 0; i < spec->autocfg.line_outs; i++) { |
| 2877 | hda_nid_t nid = spec->autocfg.line_out_pins[i]; |
| 2878 | stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN); |
| 2879 | } |
| 2880 | } |
| 2881 | |
| 2882 | static void stac92xx_auto_init_hp_out(struct hda_codec *codec) |
| 2883 | { |
| 2884 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2885 | int i; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2886 | |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2887 | for (i = 0; i < spec->autocfg.hp_outs; i++) { |
| 2888 | hda_nid_t pin; |
| 2889 | pin = spec->autocfg.hp_pins[i]; |
| 2890 | if (pin) /* connect to front */ |
| 2891 | stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN); |
| 2892 | } |
| 2893 | for (i = 0; i < spec->autocfg.speaker_outs; i++) { |
| 2894 | hda_nid_t pin; |
| 2895 | pin = spec->autocfg.speaker_pins[i]; |
| 2896 | if (pin) /* connect to front */ |
| 2897 | stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN); |
| 2898 | } |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2899 | } |
| 2900 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 2901 | static int stac92xx_parse_auto_config(struct hda_codec *codec, hda_nid_t dig_out, hda_nid_t dig_in) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2902 | { |
| 2903 | struct sigmatel_spec *spec = codec->spec; |
| 2904 | int err; |
Jiang Zhe | bcecd9b | 2007-11-12 12:57:03 +0100 | [diff] [blame] | 2905 | int hp_speaker_swap = 0; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2906 | |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 2907 | if ((err = snd_hda_parse_pin_def_config(codec, |
| 2908 | &spec->autocfg, |
| 2909 | spec->dmic_nids)) < 0) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2910 | return err; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 2911 | if (! spec->autocfg.line_outs) |
Matt Porter | 869264c | 2006-01-25 19:20:50 +0100 | [diff] [blame] | 2912 | return 0; /* can't find valid pin config */ |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 2913 | |
Jiang Zhe | bcecd9b | 2007-11-12 12:57:03 +0100 | [diff] [blame] | 2914 | /* If we have no real line-out pin and multiple hp-outs, HPs should |
| 2915 | * be set up as multi-channel outputs. |
| 2916 | */ |
| 2917 | if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT && |
| 2918 | spec->autocfg.hp_outs > 1) { |
| 2919 | /* Copy hp_outs to line_outs, backup line_outs in |
| 2920 | * speaker_outs so that the following routines can handle |
| 2921 | * HP pins as primary outputs. |
| 2922 | */ |
| 2923 | memcpy(spec->autocfg.speaker_pins, spec->autocfg.line_out_pins, |
| 2924 | sizeof(spec->autocfg.line_out_pins)); |
| 2925 | spec->autocfg.speaker_outs = spec->autocfg.line_outs; |
| 2926 | memcpy(spec->autocfg.line_out_pins, spec->autocfg.hp_pins, |
| 2927 | sizeof(spec->autocfg.hp_pins)); |
| 2928 | spec->autocfg.line_outs = spec->autocfg.hp_outs; |
| 2929 | hp_speaker_swap = 1; |
| 2930 | } |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 2931 | if (spec->autocfg.mono_out_pin) { |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 2932 | int dir = get_wcaps(codec, spec->autocfg.mono_out_pin) & |
| 2933 | (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP); |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 2934 | u32 caps = query_amp_caps(codec, |
| 2935 | spec->autocfg.mono_out_pin, dir); |
| 2936 | hda_nid_t conn_list[1]; |
| 2937 | |
| 2938 | /* get the mixer node and then the mono mux if it exists */ |
| 2939 | if (snd_hda_get_connections(codec, |
| 2940 | spec->autocfg.mono_out_pin, conn_list, 1) && |
| 2941 | snd_hda_get_connections(codec, conn_list[0], |
| 2942 | conn_list, 1)) { |
| 2943 | |
| 2944 | int wcaps = get_wcaps(codec, conn_list[0]); |
| 2945 | int wid_type = (wcaps & AC_WCAP_TYPE) |
| 2946 | >> AC_WCAP_TYPE_SHIFT; |
| 2947 | /* LR swap check, some stac925x have a mux that |
| 2948 | * changes the DACs output path instead of the |
| 2949 | * mono-mux path. |
| 2950 | */ |
| 2951 | if (wid_type == AC_WID_AUD_SEL && |
| 2952 | !(wcaps & AC_WCAP_LR_SWAP)) |
| 2953 | spec->mono_nid = conn_list[0]; |
| 2954 | } |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 2955 | if (dir) { |
| 2956 | hda_nid_t nid = spec->autocfg.mono_out_pin; |
| 2957 | |
| 2958 | /* most mono outs have a least a mute/unmute switch */ |
| 2959 | dir = (dir & AC_WCAP_OUT_AMP) ? HDA_OUTPUT : HDA_INPUT; |
| 2960 | err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, |
| 2961 | "Mono Playback Switch", |
| 2962 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir)); |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 2963 | if (err < 0) |
| 2964 | return err; |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 2965 | /* check for volume support for the amp */ |
| 2966 | if ((caps & AC_AMPCAP_NUM_STEPS) |
| 2967 | >> AC_AMPCAP_NUM_STEPS_SHIFT) { |
| 2968 | err = stac92xx_add_control(spec, |
| 2969 | STAC_CTL_WIDGET_VOL, |
| 2970 | "Mono Playback Volume", |
| 2971 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir)); |
| 2972 | if (err < 0) |
| 2973 | return err; |
| 2974 | } |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 2975 | } |
| 2976 | |
| 2977 | stac92xx_auto_set_pinctl(codec, spec->autocfg.mono_out_pin, |
| 2978 | AC_PINCTL_OUT_EN); |
| 2979 | } |
Jiang Zhe | bcecd9b | 2007-11-12 12:57:03 +0100 | [diff] [blame] | 2980 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2981 | if ((err = stac92xx_add_dyn_out_pins(codec, &spec->autocfg)) < 0) |
| 2982 | return err; |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 2983 | if (spec->multiout.num_dacs == 0) |
| 2984 | if ((err = stac92xx_auto_fill_dac_nids(codec, &spec->autocfg)) < 0) |
| 2985 | return err; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2986 | |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2987 | err = stac92xx_auto_create_multi_out_ctls(codec, &spec->autocfg); |
| 2988 | |
| 2989 | if (err < 0) |
| 2990 | return err; |
| 2991 | |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 2992 | /* setup analog beep controls */ |
| 2993 | if (spec->anabeep_nid > 0) { |
| 2994 | err = stac92xx_auto_create_beep_ctls(codec, |
| 2995 | spec->anabeep_nid); |
| 2996 | if (err < 0) |
| 2997 | return err; |
| 2998 | } |
| 2999 | |
| 3000 | /* setup digital beep controls and input device */ |
| 3001 | #ifdef CONFIG_SND_HDA_INPUT_BEEP |
| 3002 | if (spec->digbeep_nid > 0) { |
| 3003 | hda_nid_t nid = spec->digbeep_nid; |
| 3004 | |
| 3005 | err = stac92xx_auto_create_beep_ctls(codec, nid); |
| 3006 | if (err < 0) |
| 3007 | return err; |
| 3008 | err = snd_hda_attach_beep_device(codec, nid); |
| 3009 | if (err < 0) |
| 3010 | return err; |
| 3011 | } |
| 3012 | #endif |
| 3013 | |
Jiang Zhe | bcecd9b | 2007-11-12 12:57:03 +0100 | [diff] [blame] | 3014 | if (hp_speaker_swap == 1) { |
| 3015 | /* Restore the hp_outs and line_outs */ |
| 3016 | memcpy(spec->autocfg.hp_pins, spec->autocfg.line_out_pins, |
| 3017 | sizeof(spec->autocfg.line_out_pins)); |
| 3018 | spec->autocfg.hp_outs = spec->autocfg.line_outs; |
| 3019 | memcpy(spec->autocfg.line_out_pins, spec->autocfg.speaker_pins, |
| 3020 | sizeof(spec->autocfg.speaker_pins)); |
| 3021 | spec->autocfg.line_outs = spec->autocfg.speaker_outs; |
| 3022 | memset(spec->autocfg.speaker_pins, 0, |
| 3023 | sizeof(spec->autocfg.speaker_pins)); |
| 3024 | spec->autocfg.speaker_outs = 0; |
| 3025 | } |
| 3026 | |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 3027 | err = stac92xx_auto_create_hp_ctls(codec, &spec->autocfg); |
| 3028 | |
| 3029 | if (err < 0) |
| 3030 | return err; |
| 3031 | |
| 3032 | err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg); |
| 3033 | |
| 3034 | if (err < 0) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3035 | return err; |
| 3036 | |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 3037 | if (spec->mono_nid > 0) { |
| 3038 | err = stac92xx_auto_create_mono_output_ctls(codec); |
| 3039 | if (err < 0) |
| 3040 | return err; |
| 3041 | } |
| 3042 | |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3043 | if (spec->num_dmics > 0) |
| 3044 | if ((err = stac92xx_auto_create_dmic_input_ctls(codec, |
| 3045 | &spec->autocfg)) < 0) |
| 3046 | return err; |
| 3047 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3048 | spec->multiout.max_channels = spec->multiout.num_dacs * 2; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 3049 | if (spec->multiout.max_channels > 2) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3050 | spec->surr_switch = 1; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3051 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3052 | if (spec->autocfg.dig_out_pin) |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 3053 | spec->multiout.dig_out_nid = dig_out; |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 3054 | if (dig_in && spec->autocfg.dig_in_pin) |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 3055 | spec->dig_in_nid = dig_in; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3056 | |
| 3057 | if (spec->kctl_alloc) |
| 3058 | spec->mixers[spec->num_mixers++] = spec->kctl_alloc; |
| 3059 | |
| 3060 | spec->input_mux = &spec->private_imux; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 3061 | if (!spec->dinput_mux) |
| 3062 | spec->dinput_mux = &spec->private_dimux; |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 3063 | spec->mono_mux = &spec->private_mono_mux; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3064 | |
| 3065 | return 1; |
| 3066 | } |
| 3067 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3068 | /* add playback controls for HP output */ |
| 3069 | static int stac9200_auto_create_hp_ctls(struct hda_codec *codec, |
| 3070 | struct auto_pin_cfg *cfg) |
| 3071 | { |
| 3072 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3073 | hda_nid_t pin = cfg->hp_pins[0]; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3074 | unsigned int wid_caps; |
| 3075 | |
| 3076 | if (! pin) |
| 3077 | return 0; |
| 3078 | |
| 3079 | wid_caps = get_wcaps(codec, pin); |
Takashi Iwai | 505cb34 | 2006-03-27 12:51:52 +0200 | [diff] [blame] | 3080 | if (wid_caps & AC_WCAP_UNSOL_CAP) |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3081 | spec->hp_detect = 1; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3082 | |
| 3083 | return 0; |
| 3084 | } |
| 3085 | |
Richard Fish | 160ea0d | 2006-09-06 13:58:25 +0200 | [diff] [blame] | 3086 | /* add playback controls for LFE output */ |
| 3087 | static int stac9200_auto_create_lfe_ctls(struct hda_codec *codec, |
| 3088 | struct auto_pin_cfg *cfg) |
| 3089 | { |
| 3090 | struct sigmatel_spec *spec = codec->spec; |
| 3091 | int err; |
| 3092 | hda_nid_t lfe_pin = 0x0; |
| 3093 | int i; |
| 3094 | |
| 3095 | /* |
| 3096 | * search speaker outs and line outs for a mono speaker pin |
| 3097 | * with an amp. If one is found, add LFE controls |
| 3098 | * for it. |
| 3099 | */ |
| 3100 | for (i = 0; i < spec->autocfg.speaker_outs && lfe_pin == 0x0; i++) { |
| 3101 | hda_nid_t pin = spec->autocfg.speaker_pins[i]; |
Takashi Iwai | 64ed0df | 2008-02-29 11:57:53 +0100 | [diff] [blame] | 3102 | unsigned int wcaps = get_wcaps(codec, pin); |
Richard Fish | 160ea0d | 2006-09-06 13:58:25 +0200 | [diff] [blame] | 3103 | wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP); |
| 3104 | if (wcaps == AC_WCAP_OUT_AMP) |
| 3105 | /* found a mono speaker with an amp, must be lfe */ |
| 3106 | lfe_pin = pin; |
| 3107 | } |
| 3108 | |
| 3109 | /* if speaker_outs is 0, then speakers may be in line_outs */ |
| 3110 | if (lfe_pin == 0 && spec->autocfg.speaker_outs == 0) { |
| 3111 | for (i = 0; i < spec->autocfg.line_outs && lfe_pin == 0x0; i++) { |
| 3112 | hda_nid_t pin = spec->autocfg.line_out_pins[i]; |
Takashi Iwai | 64ed0df | 2008-02-29 11:57:53 +0100 | [diff] [blame] | 3113 | unsigned int defcfg; |
Harvey Harrison | 8b55178 | 2008-02-29 11:56:48 +0100 | [diff] [blame] | 3114 | defcfg = snd_hda_codec_read(codec, pin, 0, |
Richard Fish | 160ea0d | 2006-09-06 13:58:25 +0200 | [diff] [blame] | 3115 | AC_VERB_GET_CONFIG_DEFAULT, |
| 3116 | 0x00); |
Harvey Harrison | 8b55178 | 2008-02-29 11:56:48 +0100 | [diff] [blame] | 3117 | if (get_defcfg_device(defcfg) == AC_JACK_SPEAKER) { |
Takashi Iwai | 64ed0df | 2008-02-29 11:57:53 +0100 | [diff] [blame] | 3118 | unsigned int wcaps = get_wcaps(codec, pin); |
Richard Fish | 160ea0d | 2006-09-06 13:58:25 +0200 | [diff] [blame] | 3119 | wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP); |
| 3120 | if (wcaps == AC_WCAP_OUT_AMP) |
| 3121 | /* found a mono speaker with an amp, |
| 3122 | must be lfe */ |
| 3123 | lfe_pin = pin; |
| 3124 | } |
| 3125 | } |
| 3126 | } |
| 3127 | |
| 3128 | if (lfe_pin) { |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3129 | err = create_controls(spec, "LFE", lfe_pin, 1); |
Richard Fish | 160ea0d | 2006-09-06 13:58:25 +0200 | [diff] [blame] | 3130 | if (err < 0) |
| 3131 | return err; |
| 3132 | } |
| 3133 | |
| 3134 | return 0; |
| 3135 | } |
| 3136 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3137 | static int stac9200_parse_auto_config(struct hda_codec *codec) |
| 3138 | { |
| 3139 | struct sigmatel_spec *spec = codec->spec; |
| 3140 | int err; |
| 3141 | |
Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 3142 | if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3143 | return err; |
| 3144 | |
| 3145 | if ((err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg)) < 0) |
| 3146 | return err; |
| 3147 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3148 | if ((err = stac9200_auto_create_hp_ctls(codec, &spec->autocfg)) < 0) |
| 3149 | return err; |
| 3150 | |
Richard Fish | 160ea0d | 2006-09-06 13:58:25 +0200 | [diff] [blame] | 3151 | if ((err = stac9200_auto_create_lfe_ctls(codec, &spec->autocfg)) < 0) |
| 3152 | return err; |
| 3153 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3154 | if (spec->autocfg.dig_out_pin) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3155 | spec->multiout.dig_out_nid = 0x05; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3156 | if (spec->autocfg.dig_in_pin) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3157 | spec->dig_in_nid = 0x04; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3158 | |
| 3159 | if (spec->kctl_alloc) |
| 3160 | spec->mixers[spec->num_mixers++] = spec->kctl_alloc; |
| 3161 | |
| 3162 | spec->input_mux = &spec->private_imux; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3163 | spec->dinput_mux = &spec->private_dimux; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3164 | |
| 3165 | return 1; |
| 3166 | } |
| 3167 | |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3168 | /* |
| 3169 | * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a |
| 3170 | * funky external mute control using GPIO pins. |
| 3171 | */ |
| 3172 | |
Takashi Iwai | 76e1ddf | 2008-01-15 11:39:08 +0100 | [diff] [blame] | 3173 | static void stac_gpio_set(struct hda_codec *codec, unsigned int mask, |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 3174 | unsigned int dir_mask, unsigned int data) |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3175 | { |
| 3176 | unsigned int gpiostate, gpiomask, gpiodir; |
| 3177 | |
| 3178 | gpiostate = snd_hda_codec_read(codec, codec->afg, 0, |
| 3179 | AC_VERB_GET_GPIO_DATA, 0); |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 3180 | gpiostate = (gpiostate & ~dir_mask) | (data & dir_mask); |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3181 | |
| 3182 | gpiomask = snd_hda_codec_read(codec, codec->afg, 0, |
| 3183 | AC_VERB_GET_GPIO_MASK, 0); |
Takashi Iwai | 76e1ddf | 2008-01-15 11:39:08 +0100 | [diff] [blame] | 3184 | gpiomask |= mask; |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3185 | |
| 3186 | gpiodir = snd_hda_codec_read(codec, codec->afg, 0, |
| 3187 | AC_VERB_GET_GPIO_DIRECTION, 0); |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 3188 | gpiodir |= dir_mask; |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3189 | |
Takashi Iwai | 76e1ddf | 2008-01-15 11:39:08 +0100 | [diff] [blame] | 3190 | /* Configure GPIOx as CMOS */ |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3191 | snd_hda_codec_write(codec, codec->afg, 0, 0x7e7, 0); |
| 3192 | |
| 3193 | snd_hda_codec_write(codec, codec->afg, 0, |
| 3194 | AC_VERB_SET_GPIO_MASK, gpiomask); |
Takashi Iwai | 76e1ddf | 2008-01-15 11:39:08 +0100 | [diff] [blame] | 3195 | snd_hda_codec_read(codec, codec->afg, 0, |
| 3196 | AC_VERB_SET_GPIO_DIRECTION, gpiodir); /* sync */ |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3197 | |
| 3198 | msleep(1); |
| 3199 | |
Takashi Iwai | 76e1ddf | 2008-01-15 11:39:08 +0100 | [diff] [blame] | 3200 | snd_hda_codec_read(codec, codec->afg, 0, |
| 3201 | AC_VERB_SET_GPIO_DATA, gpiostate); /* sync */ |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3202 | } |
| 3203 | |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 3204 | static void enable_pin_detect(struct hda_codec *codec, hda_nid_t nid, |
| 3205 | unsigned int event) |
| 3206 | { |
| 3207 | if (get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP) |
Takashi Iwai | dc81bed | 2007-09-03 09:36:36 +0200 | [diff] [blame] | 3208 | snd_hda_codec_write_cache(codec, nid, 0, |
| 3209 | AC_VERB_SET_UNSOLICITED_ENABLE, |
| 3210 | (AC_USRSP_EN | event)); |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 3211 | } |
| 3212 | |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 3213 | static int is_nid_hp_pin(struct auto_pin_cfg *cfg, hda_nid_t nid) |
| 3214 | { |
| 3215 | int i; |
| 3216 | for (i = 0; i < cfg->hp_outs; i++) |
| 3217 | if (cfg->hp_pins[i] == nid) |
| 3218 | return 1; /* nid is a HP-Out */ |
| 3219 | |
| 3220 | return 0; /* nid is not a HP-Out */ |
| 3221 | }; |
| 3222 | |
Matthew Ranostay | b76c850 | 2008-02-06 14:49:44 +0100 | [diff] [blame] | 3223 | static void stac92xx_power_down(struct hda_codec *codec) |
| 3224 | { |
| 3225 | struct sigmatel_spec *spec = codec->spec; |
| 3226 | |
| 3227 | /* power down inactive DACs */ |
| 3228 | hda_nid_t *dac; |
| 3229 | for (dac = spec->dac_list; *dac; dac++) |
Matthew Ranostay | 4451089 | 2008-02-21 07:49:31 +0100 | [diff] [blame] | 3230 | if (!is_in_dac_nids(spec, *dac) && |
| 3231 | spec->multiout.hp_nid != *dac) |
Matthew Ranostay | b76c850 | 2008-02-06 14:49:44 +0100 | [diff] [blame] | 3232 | snd_hda_codec_write_cache(codec, *dac, 0, |
| 3233 | AC_VERB_SET_POWER_STATE, AC_PWRST_D3); |
| 3234 | } |
| 3235 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3236 | static int stac92xx_init(struct hda_codec *codec) |
| 3237 | { |
| 3238 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3239 | struct auto_pin_cfg *cfg = &spec->autocfg; |
| 3240 | int i; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3241 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3242 | snd_hda_sequence_write(codec, spec->init); |
| 3243 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3244 | /* set up pins */ |
| 3245 | if (spec->hp_detect) { |
Takashi Iwai | 505cb34 | 2006-03-27 12:51:52 +0200 | [diff] [blame] | 3246 | /* Enable unsolicited responses on the HP widget */ |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3247 | for (i = 0; i < cfg->hp_outs; i++) |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 3248 | enable_pin_detect(codec, cfg->hp_pins[i], |
| 3249 | STAC_HP_EVENT); |
Takashi Iwai | 0a07acaf | 2007-03-13 10:40:23 +0100 | [diff] [blame] | 3250 | /* force to enable the first line-out; the others are set up |
| 3251 | * in unsol_event |
| 3252 | */ |
| 3253 | stac92xx_auto_set_pinctl(codec, spec->autocfg.line_out_pins[0], |
| 3254 | AC_PINCTL_OUT_EN); |
Takashi Iwai | eb995a8 | 2006-09-21 14:28:21 +0200 | [diff] [blame] | 3255 | stac92xx_auto_init_hp_out(codec); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3256 | /* fake event to set up pins */ |
| 3257 | codec->patch_ops.unsol_event(codec, STAC_HP_EVENT << 26); |
| 3258 | } else { |
| 3259 | stac92xx_auto_init_multi_out(codec); |
| 3260 | stac92xx_auto_init_hp_out(codec); |
| 3261 | } |
| 3262 | for (i = 0; i < AUTO_PIN_LAST; i++) { |
Takashi Iwai | c960a03 | 2006-03-23 17:06:28 +0100 | [diff] [blame] | 3263 | hda_nid_t nid = cfg->input_pins[i]; |
| 3264 | if (nid) { |
| 3265 | unsigned int pinctl = AC_PINCTL_IN_EN; |
| 3266 | if (i == AUTO_PIN_MIC || i == AUTO_PIN_FRONT_MIC) |
| 3267 | pinctl |= stac92xx_get_vref(codec, nid); |
| 3268 | stac92xx_auto_set_pinctl(codec, nid, pinctl); |
| 3269 | } |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3270 | } |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 3271 | for (i = 0; i < spec->num_dmics; i++) |
| 3272 | stac92xx_auto_set_pinctl(codec, spec->dmic_nids[i], |
| 3273 | AC_PINCTL_IN_EN); |
| 3274 | for (i = 0; i < spec->num_pwrs; i++) { |
| 3275 | int event = is_nid_hp_pin(cfg, spec->pwr_nids[i]) |
| 3276 | ? STAC_HP_EVENT : STAC_PWR_EVENT; |
| 3277 | int pinctl = snd_hda_codec_read(codec, spec->pwr_nids[i], |
| 3278 | 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0); |
Matthew Ranostay | bce6c2b | 2008-02-29 12:07:43 +0100 | [diff] [blame] | 3279 | int def_conf = snd_hda_codec_read(codec, spec->pwr_nids[i], |
| 3280 | 0, AC_VERB_GET_CONFIG_DEFAULT, 0); |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 3281 | def_conf = get_defcfg_connect(def_conf); |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 3282 | /* outputs are only ports capable of power management |
| 3283 | * any attempts on powering down a input port cause the |
| 3284 | * referenced VREF to act quirky. |
| 3285 | */ |
| 3286 | if (pinctl & AC_PINCTL_IN_EN) |
| 3287 | continue; |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 3288 | /* skip any ports that don't have jacks since presence |
| 3289 | * detection is useless */ |
| 3290 | if (def_conf && def_conf != AC_JACK_PORT_FIXED) |
Matthew Ranostay | bce6c2b | 2008-02-29 12:07:43 +0100 | [diff] [blame] | 3291 | continue; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 3292 | enable_pin_detect(codec, spec->pwr_nids[i], event | i); |
| 3293 | codec->patch_ops.unsol_event(codec, (event | i) << 26); |
| 3294 | } |
Matthew Ranostay | b76c850 | 2008-02-06 14:49:44 +0100 | [diff] [blame] | 3295 | if (spec->dac_list) |
| 3296 | stac92xx_power_down(codec); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3297 | if (cfg->dig_out_pin) |
| 3298 | stac92xx_auto_set_pinctl(codec, cfg->dig_out_pin, |
| 3299 | AC_PINCTL_OUT_EN); |
| 3300 | if (cfg->dig_in_pin) |
| 3301 | stac92xx_auto_set_pinctl(codec, cfg->dig_in_pin, |
| 3302 | AC_PINCTL_IN_EN); |
| 3303 | |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 3304 | stac_gpio_set(codec, spec->gpio_mask, |
| 3305 | spec->gpio_dir, spec->gpio_data); |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3306 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3307 | return 0; |
| 3308 | } |
| 3309 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 3310 | static void stac92xx_free(struct hda_codec *codec) |
| 3311 | { |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3312 | struct sigmatel_spec *spec = codec->spec; |
| 3313 | int i; |
| 3314 | |
| 3315 | if (! spec) |
| 3316 | return; |
| 3317 | |
| 3318 | if (spec->kctl_alloc) { |
| 3319 | for (i = 0; i < spec->num_kctl_used; i++) |
| 3320 | kfree(spec->kctl_alloc[i].name); |
| 3321 | kfree(spec->kctl_alloc); |
| 3322 | } |
| 3323 | |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 3324 | if (spec->bios_pin_configs) |
| 3325 | kfree(spec->bios_pin_configs); |
| 3326 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3327 | kfree(spec); |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 3328 | snd_hda_detach_beep_device(codec); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 3329 | } |
| 3330 | |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 3331 | static void stac92xx_set_pinctl(struct hda_codec *codec, hda_nid_t nid, |
| 3332 | unsigned int flag) |
| 3333 | { |
| 3334 | unsigned int pin_ctl = snd_hda_codec_read(codec, nid, |
| 3335 | 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00); |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 3336 | |
Takashi Iwai | f9acba4 | 2007-05-29 18:01:06 +0200 | [diff] [blame] | 3337 | if (pin_ctl & AC_PINCTL_IN_EN) { |
| 3338 | /* |
| 3339 | * we need to check the current set-up direction of |
| 3340 | * shared input pins since they can be switched via |
| 3341 | * "xxx as Output" mixer switch |
| 3342 | */ |
| 3343 | struct sigmatel_spec *spec = codec->spec; |
| 3344 | struct auto_pin_cfg *cfg = &spec->autocfg; |
| 3345 | if ((nid == cfg->input_pins[AUTO_PIN_LINE] && |
| 3346 | spec->line_switch) || |
| 3347 | (nid == cfg->input_pins[AUTO_PIN_MIC] && |
| 3348 | spec->mic_switch)) |
| 3349 | return; |
| 3350 | } |
| 3351 | |
Steve Longerbeam | 7b04389 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 3352 | /* if setting pin direction bits, clear the current |
| 3353 | direction bits first */ |
| 3354 | if (flag & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)) |
| 3355 | pin_ctl &= ~(AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN); |
| 3356 | |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3357 | snd_hda_codec_write_cache(codec, nid, 0, |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 3358 | AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 3359 | pin_ctl | flag); |
| 3360 | } |
| 3361 | |
| 3362 | static void stac92xx_reset_pinctl(struct hda_codec *codec, hda_nid_t nid, |
| 3363 | unsigned int flag) |
| 3364 | { |
| 3365 | unsigned int pin_ctl = snd_hda_codec_read(codec, nid, |
| 3366 | 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00); |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3367 | snd_hda_codec_write_cache(codec, nid, 0, |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 3368 | AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 3369 | pin_ctl & ~flag); |
| 3370 | } |
| 3371 | |
Jiang Zhe | 40c1d30 | 2007-11-12 13:05:16 +0100 | [diff] [blame] | 3372 | static int get_hp_pin_presence(struct hda_codec *codec, hda_nid_t nid) |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 3373 | { |
| 3374 | if (!nid) |
| 3375 | return 0; |
| 3376 | if (snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PIN_SENSE, 0x00) |
Jiang Zhe | 40c1d30 | 2007-11-12 13:05:16 +0100 | [diff] [blame] | 3377 | & (1 << 31)) { |
| 3378 | unsigned int pinctl; |
| 3379 | pinctl = snd_hda_codec_read(codec, nid, 0, |
| 3380 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); |
| 3381 | if (pinctl & AC_PINCTL_IN_EN) |
| 3382 | return 0; /* mic- or line-input */ |
| 3383 | else |
| 3384 | return 1; /* HP-output */ |
| 3385 | } |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 3386 | return 0; |
| 3387 | } |
| 3388 | |
| 3389 | static void stac92xx_hp_detect(struct hda_codec *codec, unsigned int res) |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 3390 | { |
| 3391 | struct sigmatel_spec *spec = codec->spec; |
| 3392 | struct auto_pin_cfg *cfg = &spec->autocfg; |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 3393 | int nid = cfg->hp_pins[cfg->hp_outs - 1]; |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 3394 | int i, presence; |
| 3395 | |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3396 | presence = 0; |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 3397 | if (spec->gpio_mute) |
| 3398 | presence = !(snd_hda_codec_read(codec, codec->afg, 0, |
| 3399 | AC_VERB_GET_GPIO_DATA, 0) & spec->gpio_mute); |
| 3400 | |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3401 | for (i = 0; i < cfg->hp_outs; i++) { |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 3402 | if (presence) |
| 3403 | break; |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 3404 | if (spec->hp_switch && cfg->hp_pins[i] == nid) |
| 3405 | break; |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 3406 | presence = get_hp_pin_presence(codec, cfg->hp_pins[i]); |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3407 | } |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 3408 | |
| 3409 | if (presence) { |
| 3410 | /* disable lineouts, enable hp */ |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 3411 | if (spec->hp_switch) |
| 3412 | stac92xx_reset_pinctl(codec, nid, AC_PINCTL_OUT_EN); |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 3413 | for (i = 0; i < cfg->line_outs; i++) |
| 3414 | stac92xx_reset_pinctl(codec, cfg->line_out_pins[i], |
| 3415 | AC_PINCTL_OUT_EN); |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3416 | for (i = 0; i < cfg->speaker_outs; i++) |
| 3417 | stac92xx_reset_pinctl(codec, cfg->speaker_pins[i], |
| 3418 | AC_PINCTL_OUT_EN); |
Matthew Ranostay | 0fc9dec | 2008-04-14 13:32:54 +0200 | [diff] [blame] | 3419 | if (spec->eapd_mask) |
| 3420 | stac_gpio_set(codec, spec->gpio_mask, |
| 3421 | spec->gpio_dir, spec->gpio_data & |
| 3422 | ~spec->eapd_mask); |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 3423 | } else { |
| 3424 | /* enable lineouts, disable hp */ |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 3425 | if (spec->hp_switch) |
| 3426 | stac92xx_set_pinctl(codec, nid, AC_PINCTL_OUT_EN); |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 3427 | for (i = 0; i < cfg->line_outs; i++) |
| 3428 | stac92xx_set_pinctl(codec, cfg->line_out_pins[i], |
| 3429 | AC_PINCTL_OUT_EN); |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3430 | for (i = 0; i < cfg->speaker_outs; i++) |
| 3431 | stac92xx_set_pinctl(codec, cfg->speaker_pins[i], |
| 3432 | AC_PINCTL_OUT_EN); |
Matthew Ranostay | 0fc9dec | 2008-04-14 13:32:54 +0200 | [diff] [blame] | 3433 | if (spec->eapd_mask) |
| 3434 | stac_gpio_set(codec, spec->gpio_mask, |
| 3435 | spec->gpio_dir, spec->gpio_data | |
| 3436 | spec->eapd_mask); |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 3437 | } |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 3438 | if (!spec->hp_switch && cfg->hp_outs > 1 && presence) |
| 3439 | stac92xx_set_pinctl(codec, nid, AC_PINCTL_OUT_EN); |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 3440 | } |
| 3441 | |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 3442 | static void stac92xx_pin_sense(struct hda_codec *codec, int idx) |
| 3443 | { |
| 3444 | struct sigmatel_spec *spec = codec->spec; |
| 3445 | hda_nid_t nid = spec->pwr_nids[idx]; |
| 3446 | int presence, val; |
| 3447 | val = snd_hda_codec_read(codec, codec->afg, 0, 0x0fec, 0x0) |
| 3448 | & 0x000000ff; |
| 3449 | presence = get_hp_pin_presence(codec, nid); |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 3450 | |
| 3451 | /* several codecs have two power down bits */ |
| 3452 | if (spec->pwr_mapping) |
| 3453 | idx = spec->pwr_mapping[idx]; |
| 3454 | else |
| 3455 | idx = 1 << idx; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 3456 | |
| 3457 | if (presence) |
| 3458 | val &= ~idx; |
| 3459 | else |
| 3460 | val |= idx; |
| 3461 | |
| 3462 | /* power down unused output ports */ |
| 3463 | snd_hda_codec_write(codec, codec->afg, 0, 0x7ec, val); |
| 3464 | }; |
| 3465 | |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 3466 | static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res) |
| 3467 | { |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 3468 | struct sigmatel_spec *spec = codec->spec; |
| 3469 | int idx = res >> 26 & 0x0f; |
| 3470 | |
| 3471 | switch ((res >> 26) & 0x30) { |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 3472 | case STAC_HP_EVENT: |
| 3473 | stac92xx_hp_detect(codec, res); |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 3474 | /* fallthru */ |
| 3475 | case STAC_PWR_EVENT: |
| 3476 | if (spec->num_pwrs > 0) |
| 3477 | stac92xx_pin_sense(codec, idx); |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 3478 | } |
| 3479 | } |
| 3480 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3481 | #ifdef SND_HDA_NEEDS_RESUME |
Matt | ff6fdc3 | 2005-06-27 15:06:52 +0200 | [diff] [blame] | 3482 | static int stac92xx_resume(struct hda_codec *codec) |
| 3483 | { |
Takashi Iwai | dc81bed | 2007-09-03 09:36:36 +0200 | [diff] [blame] | 3484 | struct sigmatel_spec *spec = codec->spec; |
| 3485 | |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 3486 | stac92xx_set_config_regs(codec); |
Takashi Iwai | dc81bed | 2007-09-03 09:36:36 +0200 | [diff] [blame] | 3487 | snd_hda_sequence_write(codec, spec->init); |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 3488 | stac_gpio_set(codec, spec->gpio_mask, |
| 3489 | spec->gpio_dir, spec->gpio_data); |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3490 | snd_hda_codec_resume_amp(codec); |
| 3491 | snd_hda_codec_resume_cache(codec); |
Matthew Ranostay | b76c850 | 2008-02-06 14:49:44 +0100 | [diff] [blame] | 3492 | /* power down inactive DACs */ |
| 3493 | if (spec->dac_list) |
| 3494 | stac92xx_power_down(codec); |
Takashi Iwai | dc81bed | 2007-09-03 09:36:36 +0200 | [diff] [blame] | 3495 | /* invoke unsolicited event to reset the HP state */ |
| 3496 | if (spec->hp_detect) |
| 3497 | codec->patch_ops.unsol_event(codec, STAC_HP_EVENT << 26); |
Matt | ff6fdc3 | 2005-06-27 15:06:52 +0200 | [diff] [blame] | 3498 | return 0; |
| 3499 | } |
| 3500 | #endif |
| 3501 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 3502 | static struct hda_codec_ops stac92xx_patch_ops = { |
| 3503 | .build_controls = stac92xx_build_controls, |
| 3504 | .build_pcms = stac92xx_build_pcms, |
| 3505 | .init = stac92xx_init, |
| 3506 | .free = stac92xx_free, |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 3507 | .unsol_event = stac92xx_unsol_event, |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3508 | #ifdef SND_HDA_NEEDS_RESUME |
Matt | ff6fdc3 | 2005-06-27 15:06:52 +0200 | [diff] [blame] | 3509 | .resume = stac92xx_resume, |
| 3510 | #endif |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 3511 | }; |
| 3512 | |
| 3513 | static int patch_stac9200(struct hda_codec *codec) |
| 3514 | { |
| 3515 | struct sigmatel_spec *spec; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3516 | int err; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 3517 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 3518 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 3519 | if (spec == NULL) |
| 3520 | return -ENOMEM; |
| 3521 | |
| 3522 | codec->spec = spec; |
Takashi Iwai | a4eed13 | 2007-07-06 18:17:04 +0200 | [diff] [blame] | 3523 | spec->num_pins = ARRAY_SIZE(stac9200_pin_nids); |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 3524 | spec->pin_nids = stac9200_pin_nids; |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 3525 | spec->board_config = snd_hda_check_board_config(codec, STAC_9200_MODELS, |
| 3526 | stac9200_models, |
| 3527 | stac9200_cfg_tbl); |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 3528 | if (spec->board_config < 0) { |
| 3529 | snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9200, using BIOS defaults\n"); |
| 3530 | err = stac92xx_save_bios_config_regs(codec); |
| 3531 | if (err < 0) { |
| 3532 | stac92xx_free(codec); |
| 3533 | return err; |
| 3534 | } |
| 3535 | spec->pin_configs = spec->bios_pin_configs; |
| 3536 | } else { |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 3537 | spec->pin_configs = stac9200_brd_tbl[spec->board_config]; |
| 3538 | stac92xx_set_config_regs(codec); |
| 3539 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 3540 | |
| 3541 | spec->multiout.max_channels = 2; |
| 3542 | spec->multiout.num_dacs = 1; |
| 3543 | spec->multiout.dac_nids = stac9200_dac_nids; |
| 3544 | spec->adc_nids = stac9200_adc_nids; |
| 3545 | spec->mux_nids = stac9200_mux_nids; |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 3546 | spec->num_muxes = 1; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3547 | spec->num_dmics = 0; |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 3548 | spec->num_adcs = 1; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 3549 | spec->num_pwrs = 0; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3550 | |
Tobin Davis | bf27778 | 2008-02-03 20:31:47 +0100 | [diff] [blame] | 3551 | if (spec->board_config == STAC_9200_GATEWAY || |
| 3552 | spec->board_config == STAC_9200_OQO) |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 3553 | spec->init = stac9200_eapd_init; |
| 3554 | else |
| 3555 | spec->init = stac9200_core_init; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 3556 | spec->mixer = stac9200_mixer; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3557 | |
Takashi Iwai | 117f257 | 2008-03-18 09:53:23 +0100 | [diff] [blame] | 3558 | if (spec->board_config == STAC_9200_PANASONIC) { |
| 3559 | spec->gpio_mask = spec->gpio_dir = 0x09; |
| 3560 | spec->gpio_data = 0x00; |
| 3561 | } |
| 3562 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3563 | err = stac9200_parse_auto_config(codec); |
| 3564 | if (err < 0) { |
| 3565 | stac92xx_free(codec); |
| 3566 | return err; |
| 3567 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 3568 | |
| 3569 | codec->patch_ops = stac92xx_patch_ops; |
| 3570 | |
| 3571 | return 0; |
| 3572 | } |
| 3573 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 3574 | static int patch_stac925x(struct hda_codec *codec) |
| 3575 | { |
| 3576 | struct sigmatel_spec *spec; |
| 3577 | int err; |
| 3578 | |
| 3579 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 3580 | if (spec == NULL) |
| 3581 | return -ENOMEM; |
| 3582 | |
| 3583 | codec->spec = spec; |
Takashi Iwai | a4eed13 | 2007-07-06 18:17:04 +0200 | [diff] [blame] | 3584 | spec->num_pins = ARRAY_SIZE(stac925x_pin_nids); |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 3585 | spec->pin_nids = stac925x_pin_nids; |
| 3586 | spec->board_config = snd_hda_check_board_config(codec, STAC_925x_MODELS, |
| 3587 | stac925x_models, |
| 3588 | stac925x_cfg_tbl); |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 3589 | again: |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 3590 | if (spec->board_config < 0) { |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 3591 | snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC925x," |
| 3592 | "using BIOS defaults\n"); |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 3593 | err = stac92xx_save_bios_config_regs(codec); |
| 3594 | if (err < 0) { |
| 3595 | stac92xx_free(codec); |
| 3596 | return err; |
| 3597 | } |
| 3598 | spec->pin_configs = spec->bios_pin_configs; |
| 3599 | } else if (stac925x_brd_tbl[spec->board_config] != NULL){ |
| 3600 | spec->pin_configs = stac925x_brd_tbl[spec->board_config]; |
| 3601 | stac92xx_set_config_regs(codec); |
| 3602 | } |
| 3603 | |
| 3604 | spec->multiout.max_channels = 2; |
| 3605 | spec->multiout.num_dacs = 1; |
| 3606 | spec->multiout.dac_nids = stac925x_dac_nids; |
| 3607 | spec->adc_nids = stac925x_adc_nids; |
| 3608 | spec->mux_nids = stac925x_mux_nids; |
| 3609 | spec->num_muxes = 1; |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 3610 | spec->num_adcs = 1; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 3611 | spec->num_pwrs = 0; |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 3612 | switch (codec->vendor_id) { |
| 3613 | case 0x83847632: /* STAC9202 */ |
| 3614 | case 0x83847633: /* STAC9202D */ |
| 3615 | case 0x83847636: /* STAC9251 */ |
| 3616 | case 0x83847637: /* STAC9251D */ |
Takashi Iwai | f6e9852 | 2007-10-16 14:27:04 +0200 | [diff] [blame] | 3617 | spec->num_dmics = STAC925X_NUM_DMICS; |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 3618 | spec->dmic_nids = stac925x_dmic_nids; |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 3619 | spec->num_dmuxes = ARRAY_SIZE(stac925x_dmux_nids); |
| 3620 | spec->dmux_nids = stac925x_dmux_nids; |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 3621 | break; |
| 3622 | default: |
| 3623 | spec->num_dmics = 0; |
| 3624 | break; |
| 3625 | } |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 3626 | |
| 3627 | spec->init = stac925x_core_init; |
| 3628 | spec->mixer = stac925x_mixer; |
| 3629 | |
| 3630 | err = stac92xx_parse_auto_config(codec, 0x8, 0x7); |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 3631 | if (!err) { |
| 3632 | if (spec->board_config < 0) { |
| 3633 | printk(KERN_WARNING "hda_codec: No auto-config is " |
| 3634 | "available, default to model=ref\n"); |
| 3635 | spec->board_config = STAC_925x_REF; |
| 3636 | goto again; |
| 3637 | } |
| 3638 | err = -EINVAL; |
| 3639 | } |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 3640 | if (err < 0) { |
| 3641 | stac92xx_free(codec); |
| 3642 | return err; |
| 3643 | } |
| 3644 | |
| 3645 | codec->patch_ops = stac92xx_patch_ops; |
| 3646 | |
| 3647 | return 0; |
| 3648 | } |
| 3649 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 3650 | static struct hda_input_mux stac92hd73xx_dmux = { |
| 3651 | .num_items = 4, |
| 3652 | .items = { |
| 3653 | { "Analog Inputs", 0x0b }, |
| 3654 | { "CD", 0x08 }, |
| 3655 | { "Digital Mic 1", 0x09 }, |
| 3656 | { "Digital Mic 2", 0x0a }, |
| 3657 | } |
| 3658 | }; |
| 3659 | |
| 3660 | static int patch_stac92hd73xx(struct hda_codec *codec) |
| 3661 | { |
| 3662 | struct sigmatel_spec *spec; |
| 3663 | hda_nid_t conn[STAC92HD73_DAC_COUNT + 2]; |
| 3664 | int err = 0; |
| 3665 | |
| 3666 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 3667 | if (spec == NULL) |
| 3668 | return -ENOMEM; |
| 3669 | |
| 3670 | codec->spec = spec; |
| 3671 | spec->num_pins = ARRAY_SIZE(stac92hd73xx_pin_nids); |
| 3672 | spec->pin_nids = stac92hd73xx_pin_nids; |
| 3673 | spec->board_config = snd_hda_check_board_config(codec, |
| 3674 | STAC_92HD73XX_MODELS, |
| 3675 | stac92hd73xx_models, |
| 3676 | stac92hd73xx_cfg_tbl); |
| 3677 | again: |
| 3678 | if (spec->board_config < 0) { |
| 3679 | snd_printdd(KERN_INFO "hda_codec: Unknown model for" |
| 3680 | " STAC92HD73XX, using BIOS defaults\n"); |
| 3681 | err = stac92xx_save_bios_config_regs(codec); |
| 3682 | if (err < 0) { |
| 3683 | stac92xx_free(codec); |
| 3684 | return err; |
| 3685 | } |
| 3686 | spec->pin_configs = spec->bios_pin_configs; |
| 3687 | } else { |
| 3688 | spec->pin_configs = stac92hd73xx_brd_tbl[spec->board_config]; |
| 3689 | stac92xx_set_config_regs(codec); |
| 3690 | } |
| 3691 | |
| 3692 | spec->multiout.num_dacs = snd_hda_get_connections(codec, 0x0a, |
| 3693 | conn, STAC92HD73_DAC_COUNT + 2) - 1; |
| 3694 | |
| 3695 | if (spec->multiout.num_dacs < 0) { |
| 3696 | printk(KERN_WARNING "hda_codec: Could not determine " |
| 3697 | "number of channels defaulting to DAC count\n"); |
| 3698 | spec->multiout.num_dacs = STAC92HD73_DAC_COUNT; |
| 3699 | } |
| 3700 | |
| 3701 | switch (spec->multiout.num_dacs) { |
| 3702 | case 0x3: /* 6 Channel */ |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 3703 | spec->multiout.hp_nid = 0x17; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 3704 | spec->mixer = stac92hd73xx_6ch_mixer; |
| 3705 | spec->init = stac92hd73xx_6ch_core_init; |
| 3706 | break; |
| 3707 | case 0x4: /* 8 Channel */ |
| 3708 | spec->multiout.hp_nid = 0x18; |
| 3709 | spec->mixer = stac92hd73xx_8ch_mixer; |
| 3710 | spec->init = stac92hd73xx_8ch_core_init; |
| 3711 | break; |
| 3712 | case 0x5: /* 10 Channel */ |
| 3713 | spec->multiout.hp_nid = 0x19; |
| 3714 | spec->mixer = stac92hd73xx_10ch_mixer; |
| 3715 | spec->init = stac92hd73xx_10ch_core_init; |
| 3716 | }; |
| 3717 | |
| 3718 | spec->multiout.dac_nids = stac92hd73xx_dac_nids; |
| 3719 | spec->aloopback_mask = 0x01; |
| 3720 | spec->aloopback_shift = 8; |
| 3721 | |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 3722 | spec->digbeep_nid = 0x1c; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 3723 | spec->mux_nids = stac92hd73xx_mux_nids; |
| 3724 | spec->adc_nids = stac92hd73xx_adc_nids; |
| 3725 | spec->dmic_nids = stac92hd73xx_dmic_nids; |
| 3726 | spec->dmux_nids = stac92hd73xx_dmux_nids; |
| 3727 | |
| 3728 | spec->num_muxes = ARRAY_SIZE(stac92hd73xx_mux_nids); |
| 3729 | spec->num_adcs = ARRAY_SIZE(stac92hd73xx_adc_nids); |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 3730 | spec->num_dmuxes = ARRAY_SIZE(stac92hd73xx_dmux_nids); |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 3731 | spec->dinput_mux = &stac92hd73xx_dmux; |
| 3732 | /* GPIO0 High = Enable EAPD */ |
Matthew Ranostay | 0fc9dec | 2008-04-14 13:32:54 +0200 | [diff] [blame] | 3733 | spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1; |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 3734 | spec->gpio_data = 0x01; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 3735 | |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 3736 | switch (spec->board_config) { |
| 3737 | case STAC_DELL_M6: |
Matthew Ranostay | d654a66 | 2008-03-14 08:46:51 +0100 | [diff] [blame] | 3738 | spec->init = dell_eq_core_init; |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 3739 | switch (codec->subsystem_id) { |
| 3740 | case 0x1028025e: /* Analog Mics */ |
| 3741 | case 0x1028025f: |
| 3742 | stac92xx_set_config_reg(codec, 0x0b, 0x90A70170); |
| 3743 | spec->num_dmics = 0; |
| 3744 | break; |
Matthew Ranostay | d654a66 | 2008-03-14 08:46:51 +0100 | [diff] [blame] | 3745 | case 0x10280271: /* Digital Mics */ |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 3746 | case 0x10280272: |
Matthew Ranostay | d654a66 | 2008-03-14 08:46:51 +0100 | [diff] [blame] | 3747 | spec->init = dell_m6_core_init; |
| 3748 | /* fall-through */ |
| 3749 | case 0x10280254: |
| 3750 | case 0x10280255: |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 3751 | stac92xx_set_config_reg(codec, 0x13, 0x90A60160); |
| 3752 | spec->num_dmics = 1; |
| 3753 | break; |
| 3754 | case 0x10280256: /* Both */ |
| 3755 | case 0x10280057: |
| 3756 | stac92xx_set_config_reg(codec, 0x0b, 0x90A70170); |
| 3757 | stac92xx_set_config_reg(codec, 0x13, 0x90A60160); |
| 3758 | spec->num_dmics = 1; |
| 3759 | break; |
| 3760 | } |
| 3761 | break; |
| 3762 | default: |
| 3763 | spec->num_dmics = STAC92HD73XX_NUM_DMICS; |
| 3764 | } |
| 3765 | |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 3766 | spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids); |
| 3767 | spec->pwr_nids = stac92hd73xx_pwr_nids; |
| 3768 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 3769 | err = stac92xx_parse_auto_config(codec, 0x22, 0x24); |
| 3770 | |
| 3771 | if (!err) { |
| 3772 | if (spec->board_config < 0) { |
| 3773 | printk(KERN_WARNING "hda_codec: No auto-config is " |
| 3774 | "available, default to model=ref\n"); |
| 3775 | spec->board_config = STAC_92HD73XX_REF; |
| 3776 | goto again; |
| 3777 | } |
| 3778 | err = -EINVAL; |
| 3779 | } |
| 3780 | |
| 3781 | if (err < 0) { |
| 3782 | stac92xx_free(codec); |
| 3783 | return err; |
| 3784 | } |
| 3785 | |
| 3786 | codec->patch_ops = stac92xx_patch_ops; |
| 3787 | |
| 3788 | return 0; |
| 3789 | } |
| 3790 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 3791 | static struct hda_input_mux stac92hd83xxx_dmux = { |
| 3792 | .num_items = 3, |
| 3793 | .items = { |
| 3794 | { "Analog Inputs", 0x03 }, |
| 3795 | { "Digital Mic 1", 0x04 }, |
| 3796 | { "Digital Mic 2", 0x05 }, |
| 3797 | } |
| 3798 | }; |
| 3799 | |
| 3800 | static int patch_stac92hd83xxx(struct hda_codec *codec) |
| 3801 | { |
| 3802 | struct sigmatel_spec *spec; |
| 3803 | int err; |
| 3804 | |
| 3805 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 3806 | if (spec == NULL) |
| 3807 | return -ENOMEM; |
| 3808 | |
| 3809 | codec->spec = spec; |
| 3810 | spec->mono_nid = 0x19; |
| 3811 | spec->digbeep_nid = 0x21; |
| 3812 | spec->dmic_nids = stac92hd83xxx_dmic_nids; |
| 3813 | spec->dmux_nids = stac92hd83xxx_dmux_nids; |
| 3814 | spec->adc_nids = stac92hd83xxx_adc_nids; |
| 3815 | spec->pwr_nids = stac92hd83xxx_pwr_nids; |
| 3816 | spec->pwr_mapping = stac92hd83xxx_pwr_mapping; |
| 3817 | spec->num_pwrs = ARRAY_SIZE(stac92hd83xxx_pwr_nids); |
| 3818 | spec->multiout.dac_nids = stac92hd83xxx_dac_nids; |
| 3819 | |
| 3820 | spec->init = stac92hd83xxx_core_init; |
| 3821 | switch (codec->vendor_id) { |
| 3822 | case 0x111d7605: |
| 3823 | spec->multiout.num_dacs = STAC92HD81_DAC_COUNT; |
| 3824 | break; |
| 3825 | default: |
| 3826 | spec->num_pwrs--; |
| 3827 | spec->init++; /* switch to config #2 */ |
| 3828 | spec->multiout.num_dacs = STAC92HD83_DAC_COUNT; |
| 3829 | } |
| 3830 | |
| 3831 | spec->mixer = stac92hd83xxx_mixer; |
| 3832 | spec->num_pins = ARRAY_SIZE(stac92hd83xxx_pin_nids); |
| 3833 | spec->num_dmuxes = ARRAY_SIZE(stac92hd83xxx_dmux_nids); |
| 3834 | spec->num_adcs = ARRAY_SIZE(stac92hd83xxx_adc_nids); |
| 3835 | spec->num_dmics = STAC92HD83XXX_NUM_DMICS; |
| 3836 | spec->dinput_mux = &stac92hd83xxx_dmux; |
| 3837 | spec->pin_nids = stac92hd83xxx_pin_nids; |
| 3838 | spec->board_config = snd_hda_check_board_config(codec, |
| 3839 | STAC_92HD83XXX_MODELS, |
| 3840 | stac92hd83xxx_models, |
| 3841 | stac92hd83xxx_cfg_tbl); |
| 3842 | again: |
| 3843 | if (spec->board_config < 0) { |
| 3844 | snd_printdd(KERN_INFO "hda_codec: Unknown model for" |
| 3845 | " STAC92HD83XXX, using BIOS defaults\n"); |
| 3846 | err = stac92xx_save_bios_config_regs(codec); |
| 3847 | if (err < 0) { |
| 3848 | stac92xx_free(codec); |
| 3849 | return err; |
| 3850 | } |
| 3851 | spec->pin_configs = spec->bios_pin_configs; |
| 3852 | } else { |
| 3853 | spec->pin_configs = stac92hd83xxx_brd_tbl[spec->board_config]; |
| 3854 | stac92xx_set_config_regs(codec); |
| 3855 | } |
| 3856 | |
| 3857 | err = stac92xx_parse_auto_config(codec, 0x1d, 0); |
| 3858 | if (!err) { |
| 3859 | if (spec->board_config < 0) { |
| 3860 | printk(KERN_WARNING "hda_codec: No auto-config is " |
| 3861 | "available, default to model=ref\n"); |
| 3862 | spec->board_config = STAC_92HD83XXX_REF; |
| 3863 | goto again; |
| 3864 | } |
| 3865 | err = -EINVAL; |
| 3866 | } |
| 3867 | |
| 3868 | if (err < 0) { |
| 3869 | stac92xx_free(codec); |
| 3870 | return err; |
| 3871 | } |
| 3872 | |
| 3873 | codec->patch_ops = stac92xx_patch_ops; |
| 3874 | |
| 3875 | return 0; |
| 3876 | } |
| 3877 | |
| 3878 | |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 3879 | static int patch_stac92hd71bxx(struct hda_codec *codec) |
| 3880 | { |
| 3881 | struct sigmatel_spec *spec; |
| 3882 | int err = 0; |
| 3883 | |
| 3884 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 3885 | if (spec == NULL) |
| 3886 | return -ENOMEM; |
| 3887 | |
| 3888 | codec->spec = spec; |
| 3889 | spec->num_pins = ARRAY_SIZE(stac92hd71bxx_pin_nids); |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 3890 | spec->num_pwrs = ARRAY_SIZE(stac92hd71bxx_pwr_nids); |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 3891 | spec->pin_nids = stac92hd71bxx_pin_nids; |
| 3892 | spec->board_config = snd_hda_check_board_config(codec, |
| 3893 | STAC_92HD71BXX_MODELS, |
| 3894 | stac92hd71bxx_models, |
| 3895 | stac92hd71bxx_cfg_tbl); |
| 3896 | again: |
| 3897 | if (spec->board_config < 0) { |
| 3898 | snd_printdd(KERN_INFO "hda_codec: Unknown model for" |
| 3899 | " STAC92HD71BXX, using BIOS defaults\n"); |
| 3900 | err = stac92xx_save_bios_config_regs(codec); |
| 3901 | if (err < 0) { |
| 3902 | stac92xx_free(codec); |
| 3903 | return err; |
| 3904 | } |
| 3905 | spec->pin_configs = spec->bios_pin_configs; |
| 3906 | } else { |
| 3907 | spec->pin_configs = stac92hd71bxx_brd_tbl[spec->board_config]; |
| 3908 | stac92xx_set_config_regs(codec); |
| 3909 | } |
| 3910 | |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 3911 | switch (codec->vendor_id) { |
| 3912 | case 0x111d76b6: /* 4 Port without Analog Mixer */ |
| 3913 | case 0x111d76b7: |
| 3914 | case 0x111d76b4: /* 6 Port without Analog Mixer */ |
| 3915 | case 0x111d76b5: |
| 3916 | spec->mixer = stac92hd71bxx_mixer; |
| 3917 | spec->init = stac92hd71bxx_core_init; |
| 3918 | break; |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 3919 | case 0x111d7608: /* 5 Port with Analog Mixer */ |
| 3920 | /* no output amps */ |
| 3921 | spec->num_pwrs = 0; |
| 3922 | spec->mixer = stac92hd71bxx_analog_mixer; |
| 3923 | |
| 3924 | /* disable VSW */ |
| 3925 | spec->init = &stac92hd71bxx_analog_core_init[HD_DISABLE_PORTF]; |
| 3926 | stac92xx_set_config_reg(codec, 0xf, 0x40f000f0); |
| 3927 | break; |
| 3928 | case 0x111d7603: /* 6 Port with Analog Mixer */ |
| 3929 | /* no output amps */ |
| 3930 | spec->num_pwrs = 0; |
| 3931 | /* fallthru */ |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 3932 | default: |
| 3933 | spec->mixer = stac92hd71bxx_analog_mixer; |
| 3934 | spec->init = stac92hd71bxx_analog_core_init; |
| 3935 | } |
| 3936 | |
| 3937 | spec->aloopback_mask = 0x20; |
| 3938 | spec->aloopback_shift = 0; |
| 3939 | |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 3940 | /* GPIO0 High = EAPD */ |
Matthew Ranostay | 0fc9dec | 2008-04-14 13:32:54 +0200 | [diff] [blame] | 3941 | spec->gpio_mask = 0x01; |
| 3942 | spec->gpio_dir = 0x01; |
Matthew Ranostay | 0fc9dec | 2008-04-14 13:32:54 +0200 | [diff] [blame] | 3943 | spec->gpio_data = 0x01; |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 3944 | |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 3945 | spec->digbeep_nid = 0x26; |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 3946 | spec->mux_nids = stac92hd71bxx_mux_nids; |
| 3947 | spec->adc_nids = stac92hd71bxx_adc_nids; |
| 3948 | spec->dmic_nids = stac92hd71bxx_dmic_nids; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 3949 | spec->dmux_nids = stac92hd71bxx_dmux_nids; |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 3950 | spec->pwr_nids = stac92hd71bxx_pwr_nids; |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 3951 | |
| 3952 | spec->num_muxes = ARRAY_SIZE(stac92hd71bxx_mux_nids); |
| 3953 | spec->num_adcs = ARRAY_SIZE(stac92hd71bxx_adc_nids); |
| 3954 | spec->num_dmics = STAC92HD71BXX_NUM_DMICS; |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 3955 | spec->num_dmuxes = ARRAY_SIZE(stac92hd71bxx_dmux_nids); |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 3956 | |
Takashi Iwai | aea7bb0 | 2008-02-25 18:26:41 +0100 | [diff] [blame] | 3957 | spec->multiout.num_dacs = 1; |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 3958 | spec->multiout.hp_nid = 0x11; |
| 3959 | spec->multiout.dac_nids = stac92hd71bxx_dac_nids; |
| 3960 | |
| 3961 | err = stac92xx_parse_auto_config(codec, 0x21, 0x23); |
| 3962 | if (!err) { |
| 3963 | if (spec->board_config < 0) { |
| 3964 | printk(KERN_WARNING "hda_codec: No auto-config is " |
| 3965 | "available, default to model=ref\n"); |
| 3966 | spec->board_config = STAC_92HD71BXX_REF; |
| 3967 | goto again; |
| 3968 | } |
| 3969 | err = -EINVAL; |
| 3970 | } |
| 3971 | |
| 3972 | if (err < 0) { |
| 3973 | stac92xx_free(codec); |
| 3974 | return err; |
| 3975 | } |
| 3976 | |
| 3977 | codec->patch_ops = stac92xx_patch_ops; |
| 3978 | |
| 3979 | return 0; |
| 3980 | }; |
| 3981 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 3982 | static int patch_stac922x(struct hda_codec *codec) |
| 3983 | { |
| 3984 | struct sigmatel_spec *spec; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3985 | int err; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 3986 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 3987 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 3988 | if (spec == NULL) |
| 3989 | return -ENOMEM; |
| 3990 | |
| 3991 | codec->spec = spec; |
Takashi Iwai | a4eed13 | 2007-07-06 18:17:04 +0200 | [diff] [blame] | 3992 | spec->num_pins = ARRAY_SIZE(stac922x_pin_nids); |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 3993 | spec->pin_nids = stac922x_pin_nids; |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 3994 | spec->board_config = snd_hda_check_board_config(codec, STAC_922X_MODELS, |
| 3995 | stac922x_models, |
| 3996 | stac922x_cfg_tbl); |
Nicolas Boichat | 536319a | 2008-07-21 22:18:01 +0800 | [diff] [blame] | 3997 | if (spec->board_config == STAC_INTEL_MAC_AUTO) { |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 3998 | spec->gpio_mask = spec->gpio_dir = 0x03; |
| 3999 | spec->gpio_data = 0x03; |
Takashi Iwai | 3fc24d8 | 2007-02-16 13:27:18 +0100 | [diff] [blame] | 4000 | /* Intel Macs have all same PCI SSID, so we need to check |
| 4001 | * codec SSID to distinguish the exact models |
| 4002 | */ |
Nicolas Boichat | 6f0778d | 2007-03-15 12:38:15 +0100 | [diff] [blame] | 4003 | printk(KERN_INFO "hda_codec: STAC922x, Apple subsys_id=%x\n", codec->subsystem_id); |
Takashi Iwai | 3fc24d8 | 2007-02-16 13:27:18 +0100 | [diff] [blame] | 4004 | switch (codec->subsystem_id) { |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 4005 | |
| 4006 | case 0x106b0800: |
| 4007 | spec->board_config = STAC_INTEL_MAC_V1; |
Abhijit Bhopatkar | c45e20e | 2007-04-17 11:57:16 +0200 | [diff] [blame] | 4008 | break; |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 4009 | case 0x106b0600: |
| 4010 | case 0x106b0700: |
| 4011 | spec->board_config = STAC_INTEL_MAC_V2; |
Nicolas Boichat | 6f0778d | 2007-03-15 12:38:15 +0100 | [diff] [blame] | 4012 | break; |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 4013 | case 0x106b0e00: |
| 4014 | case 0x106b0f00: |
| 4015 | case 0x106b1600: |
| 4016 | case 0x106b1700: |
| 4017 | case 0x106b0200: |
| 4018 | case 0x106b1e00: |
| 4019 | spec->board_config = STAC_INTEL_MAC_V3; |
Takashi Iwai | 3fc24d8 | 2007-02-16 13:27:18 +0100 | [diff] [blame] | 4020 | break; |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 4021 | case 0x106b1a00: |
| 4022 | case 0x00000100: |
| 4023 | spec->board_config = STAC_INTEL_MAC_V4; |
Sylvain FORET | f16928f | 2007-04-27 14:22:36 +0200 | [diff] [blame] | 4024 | break; |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 4025 | case 0x106b0a00: |
| 4026 | case 0x106b2200: |
| 4027 | spec->board_config = STAC_INTEL_MAC_V5; |
Takashi Iwai | 0dae0f8 | 2007-05-21 12:41:29 +0200 | [diff] [blame] | 4028 | break; |
Nicolas Boichat | 536319a | 2008-07-21 22:18:01 +0800 | [diff] [blame] | 4029 | default: |
| 4030 | spec->board_config = STAC_INTEL_MAC_V3; |
| 4031 | break; |
Takashi Iwai | 3fc24d8 | 2007-02-16 13:27:18 +0100 | [diff] [blame] | 4032 | } |
| 4033 | } |
| 4034 | |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 4035 | again: |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 4036 | if (spec->board_config < 0) { |
| 4037 | snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC922x, " |
| 4038 | "using BIOS defaults\n"); |
| 4039 | err = stac92xx_save_bios_config_regs(codec); |
| 4040 | if (err < 0) { |
| 4041 | stac92xx_free(codec); |
| 4042 | return err; |
| 4043 | } |
| 4044 | spec->pin_configs = spec->bios_pin_configs; |
| 4045 | } else if (stac922x_brd_tbl[spec->board_config] != NULL) { |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 4046 | spec->pin_configs = stac922x_brd_tbl[spec->board_config]; |
| 4047 | stac92xx_set_config_regs(codec); |
| 4048 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4049 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4050 | spec->adc_nids = stac922x_adc_nids; |
| 4051 | spec->mux_nids = stac922x_mux_nids; |
Takashi Iwai | 2549413 | 2007-03-12 12:36:16 +0100 | [diff] [blame] | 4052 | spec->num_muxes = ARRAY_SIZE(stac922x_mux_nids); |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 4053 | spec->num_adcs = ARRAY_SIZE(stac922x_adc_nids); |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 4054 | spec->num_dmics = 0; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4055 | spec->num_pwrs = 0; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 4056 | |
| 4057 | spec->init = stac922x_core_init; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4058 | spec->mixer = stac922x_mixer; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 4059 | |
| 4060 | spec->multiout.dac_nids = spec->dac_nids; |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 4061 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 4062 | err = stac92xx_parse_auto_config(codec, 0x08, 0x09); |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 4063 | if (!err) { |
| 4064 | if (spec->board_config < 0) { |
| 4065 | printk(KERN_WARNING "hda_codec: No auto-config is " |
| 4066 | "available, default to model=ref\n"); |
| 4067 | spec->board_config = STAC_D945_REF; |
| 4068 | goto again; |
| 4069 | } |
| 4070 | err = -EINVAL; |
| 4071 | } |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 4072 | if (err < 0) { |
| 4073 | stac92xx_free(codec); |
| 4074 | return err; |
| 4075 | } |
| 4076 | |
| 4077 | codec->patch_ops = stac92xx_patch_ops; |
| 4078 | |
Takashi Iwai | 807a4636 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 4079 | /* Fix Mux capture level; max to 2 */ |
| 4080 | snd_hda_override_amp_caps(codec, 0x12, HDA_OUTPUT, |
| 4081 | (0 << AC_AMPCAP_OFFSET_SHIFT) | |
| 4082 | (2 << AC_AMPCAP_NUM_STEPS_SHIFT) | |
| 4083 | (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT) | |
| 4084 | (0 << AC_AMPCAP_MUTE_SHIFT)); |
| 4085 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 4086 | return 0; |
| 4087 | } |
| 4088 | |
| 4089 | static int patch_stac927x(struct hda_codec *codec) |
| 4090 | { |
| 4091 | struct sigmatel_spec *spec; |
| 4092 | int err; |
| 4093 | |
| 4094 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 4095 | if (spec == NULL) |
| 4096 | return -ENOMEM; |
| 4097 | |
| 4098 | codec->spec = spec; |
Takashi Iwai | a4eed13 | 2007-07-06 18:17:04 +0200 | [diff] [blame] | 4099 | spec->num_pins = ARRAY_SIZE(stac927x_pin_nids); |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 4100 | spec->pin_nids = stac927x_pin_nids; |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 4101 | spec->board_config = snd_hda_check_board_config(codec, STAC_927X_MODELS, |
| 4102 | stac927x_models, |
| 4103 | stac927x_cfg_tbl); |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 4104 | again: |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 4105 | if (spec->board_config < 0 || !stac927x_brd_tbl[spec->board_config]) { |
| 4106 | if (spec->board_config < 0) |
| 4107 | snd_printdd(KERN_INFO "hda_codec: Unknown model for" |
| 4108 | "STAC927x, using BIOS defaults\n"); |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 4109 | err = stac92xx_save_bios_config_regs(codec); |
| 4110 | if (err < 0) { |
| 4111 | stac92xx_free(codec); |
| 4112 | return err; |
| 4113 | } |
| 4114 | spec->pin_configs = spec->bios_pin_configs; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 4115 | } else { |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 4116 | spec->pin_configs = stac927x_brd_tbl[spec->board_config]; |
| 4117 | stac92xx_set_config_regs(codec); |
| 4118 | } |
| 4119 | |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 4120 | spec->digbeep_nid = 0x23; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 4121 | spec->adc_nids = stac927x_adc_nids; |
| 4122 | spec->num_adcs = ARRAY_SIZE(stac927x_adc_nids); |
| 4123 | spec->mux_nids = stac927x_mux_nids; |
| 4124 | spec->num_muxes = ARRAY_SIZE(stac927x_mux_nids); |
Matthew Ranostay | b76c850 | 2008-02-06 14:49:44 +0100 | [diff] [blame] | 4125 | spec->dac_list = stac927x_dac_nids; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 4126 | spec->multiout.dac_nids = spec->dac_nids; |
| 4127 | |
Tobin Davis | 81d3dbd | 2006-08-22 19:44:45 +0200 | [diff] [blame] | 4128 | switch (spec->board_config) { |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 4129 | case STAC_D965_3ST: |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 4130 | case STAC_D965_5ST: |
| 4131 | /* GPIO0 High = Enable EAPD */ |
Matthew Ranostay | 0fc9dec | 2008-04-14 13:32:54 +0200 | [diff] [blame] | 4132 | spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x01; |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 4133 | spec->gpio_data = 0x01; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 4134 | spec->num_dmics = 0; |
| 4135 | |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 4136 | spec->init = d965_core_init; |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 4137 | spec->mixer = stac927x_mixer; |
Tobin Davis | 81d3dbd | 2006-08-22 19:44:45 +0200 | [diff] [blame] | 4138 | break; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 4139 | case STAC_DELL_BIOS: |
Matthew Ranostay | 780c8be | 2008-04-14 13:32:27 +0200 | [diff] [blame] | 4140 | switch (codec->subsystem_id) { |
| 4141 | case 0x10280209: |
| 4142 | case 0x1028022e: |
| 4143 | /* correct the device field to SPDIF out */ |
| 4144 | stac92xx_set_config_reg(codec, 0x21, 0x01442070); |
| 4145 | break; |
| 4146 | }; |
Matthew Ranostay | 03d7ca1 | 2008-02-21 07:51:46 +0100 | [diff] [blame] | 4147 | /* configure the analog microphone on some laptops */ |
| 4148 | stac92xx_set_config_reg(codec, 0x0c, 0x90a79130); |
Matthew Ranostay | 2f32d90 | 2008-01-10 13:06:26 +0100 | [diff] [blame] | 4149 | /* correct the front output jack as a hp out */ |
Matthew Ranostay | 7989fba | 2008-02-21 07:50:12 +0100 | [diff] [blame] | 4150 | stac92xx_set_config_reg(codec, 0x0f, 0x0227011f); |
Matthew Ranostay | c481fca | 2008-01-07 12:18:28 +0100 | [diff] [blame] | 4151 | /* correct the front input jack as a mic */ |
| 4152 | stac92xx_set_config_reg(codec, 0x0e, 0x02a79130); |
| 4153 | /* fallthru */ |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 4154 | case STAC_DELL_3ST: |
| 4155 | /* GPIO2 High = Enable EAPD */ |
Matthew Ranostay | 0fc9dec | 2008-04-14 13:32:54 +0200 | [diff] [blame] | 4156 | spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x04; |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 4157 | spec->gpio_data = 0x04; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 4158 | spec->dmic_nids = stac927x_dmic_nids; |
| 4159 | spec->num_dmics = STAC927X_NUM_DMICS; |
| 4160 | |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 4161 | spec->init = d965_core_init; |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 4162 | spec->mixer = stac927x_mixer; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 4163 | spec->dmux_nids = stac927x_dmux_nids; |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 4164 | spec->num_dmuxes = ARRAY_SIZE(stac927x_dmux_nids); |
Tobin Davis | 81d3dbd | 2006-08-22 19:44:45 +0200 | [diff] [blame] | 4165 | break; |
| 4166 | default: |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 4167 | /* GPIO0 High = Enable EAPD */ |
Matthew Ranostay | 0fc9dec | 2008-04-14 13:32:54 +0200 | [diff] [blame] | 4168 | spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1; |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 4169 | spec->gpio_data = 0x01; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 4170 | spec->num_dmics = 0; |
| 4171 | |
Tobin Davis | 81d3dbd | 2006-08-22 19:44:45 +0200 | [diff] [blame] | 4172 | spec->init = stac927x_core_init; |
| 4173 | spec->mixer = stac927x_mixer; |
| 4174 | } |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 4175 | |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4176 | spec->num_pwrs = 0; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 4177 | spec->aloopback_mask = 0x40; |
| 4178 | spec->aloopback_shift = 0; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 4179 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 4180 | err = stac92xx_parse_auto_config(codec, 0x1e, 0x20); |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 4181 | if (!err) { |
| 4182 | if (spec->board_config < 0) { |
| 4183 | printk(KERN_WARNING "hda_codec: No auto-config is " |
| 4184 | "available, default to model=ref\n"); |
| 4185 | spec->board_config = STAC_D965_REF; |
| 4186 | goto again; |
| 4187 | } |
| 4188 | err = -EINVAL; |
| 4189 | } |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 4190 | if (err < 0) { |
| 4191 | stac92xx_free(codec); |
| 4192 | return err; |
| 4193 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4194 | |
| 4195 | codec->patch_ops = stac92xx_patch_ops; |
| 4196 | |
Takashi Iwai | 5298765 | 2008-01-16 16:09:47 +0100 | [diff] [blame] | 4197 | /* |
| 4198 | * !!FIXME!! |
| 4199 | * The STAC927x seem to require fairly long delays for certain |
| 4200 | * command sequences. With too short delays (even if the answer |
| 4201 | * is set to RIRB properly), it results in the silence output |
| 4202 | * on some hardwares like Dell. |
| 4203 | * |
| 4204 | * The below flag enables the longer delay (see get_response |
| 4205 | * in hda_intel.c). |
| 4206 | */ |
| 4207 | codec->bus->needs_damn_long_delay = 1; |
| 4208 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4209 | return 0; |
| 4210 | } |
| 4211 | |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 4212 | static int patch_stac9205(struct hda_codec *codec) |
| 4213 | { |
| 4214 | struct sigmatel_spec *spec; |
Takashi Iwai | 8259980 | 2007-07-31 15:56:24 +0200 | [diff] [blame] | 4215 | int err; |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 4216 | |
| 4217 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 4218 | if (spec == NULL) |
| 4219 | return -ENOMEM; |
| 4220 | |
| 4221 | codec->spec = spec; |
Takashi Iwai | a4eed13 | 2007-07-06 18:17:04 +0200 | [diff] [blame] | 4222 | spec->num_pins = ARRAY_SIZE(stac9205_pin_nids); |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 4223 | spec->pin_nids = stac9205_pin_nids; |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 4224 | spec->board_config = snd_hda_check_board_config(codec, STAC_9205_MODELS, |
| 4225 | stac9205_models, |
| 4226 | stac9205_cfg_tbl); |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 4227 | again: |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 4228 | if (spec->board_config < 0) { |
| 4229 | snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9205, using BIOS defaults\n"); |
| 4230 | err = stac92xx_save_bios_config_regs(codec); |
| 4231 | if (err < 0) { |
| 4232 | stac92xx_free(codec); |
| 4233 | return err; |
| 4234 | } |
| 4235 | spec->pin_configs = spec->bios_pin_configs; |
| 4236 | } else { |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 4237 | spec->pin_configs = stac9205_brd_tbl[spec->board_config]; |
| 4238 | stac92xx_set_config_regs(codec); |
| 4239 | } |
| 4240 | |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 4241 | spec->digbeep_nid = 0x23; |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 4242 | spec->adc_nids = stac9205_adc_nids; |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 4243 | spec->num_adcs = ARRAY_SIZE(stac9205_adc_nids); |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 4244 | spec->mux_nids = stac9205_mux_nids; |
Takashi Iwai | 2549413 | 2007-03-12 12:36:16 +0100 | [diff] [blame] | 4245 | spec->num_muxes = ARRAY_SIZE(stac9205_mux_nids); |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 4246 | spec->dmic_nids = stac9205_dmic_nids; |
Takashi Iwai | f6e9852 | 2007-10-16 14:27:04 +0200 | [diff] [blame] | 4247 | spec->num_dmics = STAC9205_NUM_DMICS; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 4248 | spec->dmux_nids = stac9205_dmux_nids; |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 4249 | spec->num_dmuxes = ARRAY_SIZE(stac9205_dmux_nids); |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4250 | spec->num_pwrs = 0; |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 4251 | |
| 4252 | spec->init = stac9205_core_init; |
| 4253 | spec->mixer = stac9205_mixer; |
| 4254 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 4255 | spec->aloopback_mask = 0x40; |
| 4256 | spec->aloopback_shift = 0; |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 4257 | spec->multiout.dac_nids = spec->dac_nids; |
Matthew Ranostay | 87d4836 | 2007-07-17 11:52:24 +0200 | [diff] [blame] | 4258 | |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 4259 | switch (spec->board_config){ |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 4260 | case STAC_9205_DELL_M43: |
Matthew Ranostay | 87d4836 | 2007-07-17 11:52:24 +0200 | [diff] [blame] | 4261 | /* Enable SPDIF in/out */ |
| 4262 | stac92xx_set_config_reg(codec, 0x1f, 0x01441030); |
| 4263 | stac92xx_set_config_reg(codec, 0x20, 0x1c410030); |
Matt Porter | 3338240 | 2006-12-18 13:17:28 +0100 | [diff] [blame] | 4264 | |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 4265 | /* Enable unsol response for GPIO4/Dock HP connection */ |
| 4266 | snd_hda_codec_write(codec, codec->afg, 0, |
| 4267 | AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10); |
| 4268 | snd_hda_codec_write_cache(codec, codec->afg, 0, |
| 4269 | AC_VERB_SET_UNSOLICITED_ENABLE, |
| 4270 | (AC_USRSP_EN | STAC_HP_EVENT)); |
| 4271 | |
| 4272 | spec->gpio_dir = 0x0b; |
Matthew Ranostay | 0fc9dec | 2008-04-14 13:32:54 +0200 | [diff] [blame] | 4273 | spec->eapd_mask = 0x01; |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 4274 | spec->gpio_mask = 0x1b; |
| 4275 | spec->gpio_mute = 0x10; |
Matthew Ranostay | e2e7d62 | 2008-01-24 15:32:15 +0100 | [diff] [blame] | 4276 | /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute, |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 4277 | * GPIO3 Low = DRM |
Matthew Ranostay | 87d4836 | 2007-07-17 11:52:24 +0200 | [diff] [blame] | 4278 | */ |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 4279 | spec->gpio_data = 0x01; |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 4280 | break; |
| 4281 | default: |
| 4282 | /* GPIO0 High = EAPD */ |
Matthew Ranostay | 0fc9dec | 2008-04-14 13:32:54 +0200 | [diff] [blame] | 4283 | spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1; |
Matthew Ranostay | 4fe5195 | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 4284 | spec->gpio_data = 0x01; |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 4285 | break; |
| 4286 | } |
Matthew Ranostay | 87d4836 | 2007-07-17 11:52:24 +0200 | [diff] [blame] | 4287 | |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 4288 | err = stac92xx_parse_auto_config(codec, 0x1f, 0x20); |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 4289 | if (!err) { |
| 4290 | if (spec->board_config < 0) { |
| 4291 | printk(KERN_WARNING "hda_codec: No auto-config is " |
| 4292 | "available, default to model=ref\n"); |
| 4293 | spec->board_config = STAC_9205_REF; |
| 4294 | goto again; |
| 4295 | } |
| 4296 | err = -EINVAL; |
| 4297 | } |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 4298 | if (err < 0) { |
| 4299 | stac92xx_free(codec); |
| 4300 | return err; |
| 4301 | } |
| 4302 | |
| 4303 | codec->patch_ops = stac92xx_patch_ops; |
| 4304 | |
| 4305 | return 0; |
| 4306 | } |
| 4307 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4308 | /* |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 4309 | * STAC9872 hack |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4310 | */ |
| 4311 | |
Guillaume Munch | 99ccc56 | 2006-08-16 19:35:12 +0200 | [diff] [blame] | 4312 | /* static config for Sony VAIO FE550G and Sony VAIO AR */ |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4313 | static hda_nid_t vaio_dacs[] = { 0x2 }; |
| 4314 | #define VAIO_HP_DAC 0x5 |
| 4315 | static hda_nid_t vaio_adcs[] = { 0x8 /*,0x6*/ }; |
| 4316 | static hda_nid_t vaio_mux_nids[] = { 0x15 }; |
| 4317 | |
| 4318 | static struct hda_input_mux vaio_mux = { |
Takashi Iwai | a3a2f42 | 2007-10-11 11:21:21 +0200 | [diff] [blame] | 4319 | .num_items = 3, |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4320 | .items = { |
Takashi Iwai | d773781 | 2006-04-25 13:05:43 +0200 | [diff] [blame] | 4321 | /* { "HP", 0x0 }, */ |
Takashi Iwai | 1624cb9 | 2007-07-05 13:10:51 +0200 | [diff] [blame] | 4322 | { "Mic Jack", 0x1 }, |
| 4323 | { "Internal Mic", 0x2 }, |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4324 | { "PCM", 0x3 }, |
| 4325 | } |
| 4326 | }; |
| 4327 | |
| 4328 | static struct hda_verb vaio_init[] = { |
| 4329 | {0x0a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, /* HP <- 0x2 */ |
Takashi Iwai | 72e7b0d | 2007-08-16 17:33:55 +0200 | [diff] [blame] | 4330 | {0x0a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | STAC_HP_EVENT}, |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4331 | {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Speaker <- 0x5 */ |
| 4332 | {0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Mic? (<- 0x2) */ |
| 4333 | {0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* CD */ |
| 4334 | {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Mic? */ |
Takashi Iwai | 1624cb9 | 2007-07-05 13:10:51 +0200 | [diff] [blame] | 4335 | {0x15, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mic-sel: 0a,0d,14,02 */ |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4336 | {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, /* HP */ |
| 4337 | {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, /* Speaker */ |
| 4338 | {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* capture sw/vol -> 0x8 */ |
| 4339 | {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, /* CD-in -> 0x6 */ |
| 4340 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */ |
| 4341 | {} |
| 4342 | }; |
| 4343 | |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 4344 | static struct hda_verb vaio_ar_init[] = { |
| 4345 | {0x0a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, /* HP <- 0x2 */ |
| 4346 | {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Speaker <- 0x5 */ |
| 4347 | {0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Mic? (<- 0x2) */ |
| 4348 | {0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* CD */ |
| 4349 | /* {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },*/ /* Optical Out */ |
| 4350 | {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Mic? */ |
Takashi Iwai | 1624cb9 | 2007-07-05 13:10:51 +0200 | [diff] [blame] | 4351 | {0x15, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mic-sel: 0a,0d,14,02 */ |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 4352 | {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, /* HP */ |
| 4353 | {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, /* Speaker */ |
| 4354 | /* {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},*/ /* Optical Out */ |
| 4355 | {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* capture sw/vol -> 0x8 */ |
| 4356 | {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, /* CD-in -> 0x6 */ |
| 4357 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */ |
| 4358 | {} |
| 4359 | }; |
| 4360 | |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4361 | /* bind volumes of both NID 0x02 and 0x05 */ |
Takashi Iwai | cca3b37 | 2007-08-10 17:12:15 +0200 | [diff] [blame] | 4362 | static struct hda_bind_ctls vaio_bind_master_vol = { |
| 4363 | .ops = &snd_hda_bind_vol, |
| 4364 | .values = { |
| 4365 | HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT), |
| 4366 | HDA_COMPOSE_AMP_VAL(0x05, 3, 0, HDA_OUTPUT), |
| 4367 | 0 |
| 4368 | }, |
| 4369 | }; |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4370 | |
| 4371 | /* bind volumes of both NID 0x02 and 0x05 */ |
Takashi Iwai | cca3b37 | 2007-08-10 17:12:15 +0200 | [diff] [blame] | 4372 | static struct hda_bind_ctls vaio_bind_master_sw = { |
| 4373 | .ops = &snd_hda_bind_sw, |
| 4374 | .values = { |
| 4375 | HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT), |
| 4376 | HDA_COMPOSE_AMP_VAL(0x05, 3, 0, HDA_OUTPUT), |
| 4377 | 0, |
| 4378 | }, |
| 4379 | }; |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4380 | |
| 4381 | static struct snd_kcontrol_new vaio_mixer[] = { |
Takashi Iwai | cca3b37 | 2007-08-10 17:12:15 +0200 | [diff] [blame] | 4382 | HDA_BIND_VOL("Master Playback Volume", &vaio_bind_master_vol), |
| 4383 | HDA_BIND_SW("Master Playback Switch", &vaio_bind_master_sw), |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4384 | /* HDA_CODEC_VOLUME("CD Capture Volume", 0x07, 0, HDA_INPUT), */ |
| 4385 | HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_INPUT), |
| 4386 | HDA_CODEC_MUTE("Capture Switch", 0x09, 0, HDA_INPUT), |
| 4387 | { |
| 4388 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 4389 | .name = "Capture Source", |
| 4390 | .count = 1, |
| 4391 | .info = stac92xx_mux_enum_info, |
| 4392 | .get = stac92xx_mux_enum_get, |
| 4393 | .put = stac92xx_mux_enum_put, |
| 4394 | }, |
| 4395 | {} |
| 4396 | }; |
| 4397 | |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 4398 | static struct snd_kcontrol_new vaio_ar_mixer[] = { |
Takashi Iwai | cca3b37 | 2007-08-10 17:12:15 +0200 | [diff] [blame] | 4399 | HDA_BIND_VOL("Master Playback Volume", &vaio_bind_master_vol), |
| 4400 | HDA_BIND_SW("Master Playback Switch", &vaio_bind_master_sw), |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 4401 | /* HDA_CODEC_VOLUME("CD Capture Volume", 0x07, 0, HDA_INPUT), */ |
| 4402 | HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_INPUT), |
| 4403 | HDA_CODEC_MUTE("Capture Switch", 0x09, 0, HDA_INPUT), |
| 4404 | /*HDA_CODEC_MUTE("Optical Out Switch", 0x10, 0, HDA_OUTPUT), |
| 4405 | HDA_CODEC_VOLUME("Optical Out Volume", 0x10, 0, HDA_OUTPUT),*/ |
| 4406 | { |
| 4407 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 4408 | .name = "Capture Source", |
| 4409 | .count = 1, |
| 4410 | .info = stac92xx_mux_enum_info, |
| 4411 | .get = stac92xx_mux_enum_get, |
| 4412 | .put = stac92xx_mux_enum_put, |
| 4413 | }, |
| 4414 | {} |
| 4415 | }; |
| 4416 | |
| 4417 | static struct hda_codec_ops stac9872_patch_ops = { |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4418 | .build_controls = stac92xx_build_controls, |
| 4419 | .build_pcms = stac92xx_build_pcms, |
| 4420 | .init = stac92xx_init, |
| 4421 | .free = stac92xx_free, |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4422 | #ifdef SND_HDA_NEEDS_RESUME |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4423 | .resume = stac92xx_resume, |
| 4424 | #endif |
| 4425 | }; |
| 4426 | |
Takashi Iwai | 72e7b0d | 2007-08-16 17:33:55 +0200 | [diff] [blame] | 4427 | static int stac9872_vaio_init(struct hda_codec *codec) |
| 4428 | { |
| 4429 | int err; |
| 4430 | |
| 4431 | err = stac92xx_init(codec); |
| 4432 | if (err < 0) |
| 4433 | return err; |
| 4434 | if (codec->patch_ops.unsol_event) |
| 4435 | codec->patch_ops.unsol_event(codec, STAC_HP_EVENT << 26); |
| 4436 | return 0; |
| 4437 | } |
| 4438 | |
| 4439 | static void stac9872_vaio_hp_detect(struct hda_codec *codec, unsigned int res) |
| 4440 | { |
Jiang Zhe | 40c1d30 | 2007-11-12 13:05:16 +0100 | [diff] [blame] | 4441 | if (get_hp_pin_presence(codec, 0x0a)) { |
Takashi Iwai | 72e7b0d | 2007-08-16 17:33:55 +0200 | [diff] [blame] | 4442 | stac92xx_reset_pinctl(codec, 0x0f, AC_PINCTL_OUT_EN); |
| 4443 | stac92xx_set_pinctl(codec, 0x0a, AC_PINCTL_OUT_EN); |
| 4444 | } else { |
| 4445 | stac92xx_reset_pinctl(codec, 0x0a, AC_PINCTL_OUT_EN); |
| 4446 | stac92xx_set_pinctl(codec, 0x0f, AC_PINCTL_OUT_EN); |
| 4447 | } |
| 4448 | } |
| 4449 | |
| 4450 | static void stac9872_vaio_unsol_event(struct hda_codec *codec, unsigned int res) |
| 4451 | { |
| 4452 | switch (res >> 26) { |
| 4453 | case STAC_HP_EVENT: |
| 4454 | stac9872_vaio_hp_detect(codec, res); |
| 4455 | break; |
| 4456 | } |
| 4457 | } |
| 4458 | |
| 4459 | static struct hda_codec_ops stac9872_vaio_patch_ops = { |
| 4460 | .build_controls = stac92xx_build_controls, |
| 4461 | .build_pcms = stac92xx_build_pcms, |
| 4462 | .init = stac9872_vaio_init, |
| 4463 | .free = stac92xx_free, |
| 4464 | .unsol_event = stac9872_vaio_unsol_event, |
| 4465 | #ifdef CONFIG_PM |
| 4466 | .resume = stac92xx_resume, |
| 4467 | #endif |
| 4468 | }; |
| 4469 | |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 4470 | enum { /* FE and SZ series. id=0x83847661 and subsys=0x104D0700 or 104D1000. */ |
| 4471 | CXD9872RD_VAIO, |
| 4472 | /* Unknown. id=0x83847662 and subsys=0x104D1200 or 104D1000. */ |
| 4473 | STAC9872AK_VAIO, |
| 4474 | /* Unknown. id=0x83847661 and subsys=0x104D1200. */ |
| 4475 | STAC9872K_VAIO, |
| 4476 | /* AR Series. id=0x83847664 and subsys=104D1300 */ |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 4477 | CXD9872AKD_VAIO, |
| 4478 | STAC_9872_MODELS, |
| 4479 | }; |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4480 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 4481 | static const char *stac9872_models[STAC_9872_MODELS] = { |
| 4482 | [CXD9872RD_VAIO] = "vaio", |
| 4483 | [CXD9872AKD_VAIO] = "vaio-ar", |
| 4484 | }; |
| 4485 | |
| 4486 | static struct snd_pci_quirk stac9872_cfg_tbl[] = { |
| 4487 | SND_PCI_QUIRK(0x104d, 0x81e6, "Sony VAIO F/S", CXD9872RD_VAIO), |
| 4488 | SND_PCI_QUIRK(0x104d, 0x81ef, "Sony VAIO F/S", CXD9872RD_VAIO), |
| 4489 | SND_PCI_QUIRK(0x104d, 0x81fd, "Sony VAIO AR", CXD9872AKD_VAIO), |
Tobin Davis | 68e2254 | 2007-03-12 11:36:39 +0100 | [diff] [blame] | 4490 | SND_PCI_QUIRK(0x104d, 0x8205, "Sony VAIO AR", CXD9872AKD_VAIO), |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4491 | {} |
| 4492 | }; |
| 4493 | |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 4494 | static int patch_stac9872(struct hda_codec *codec) |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4495 | { |
| 4496 | struct sigmatel_spec *spec; |
| 4497 | int board_config; |
| 4498 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 4499 | board_config = snd_hda_check_board_config(codec, STAC_9872_MODELS, |
| 4500 | stac9872_models, |
| 4501 | stac9872_cfg_tbl); |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4502 | if (board_config < 0) |
| 4503 | /* unknown config, let generic-parser do its job... */ |
| 4504 | return snd_hda_parse_generic_codec(codec); |
| 4505 | |
| 4506 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 4507 | if (spec == NULL) |
| 4508 | return -ENOMEM; |
| 4509 | |
| 4510 | codec->spec = spec; |
| 4511 | switch (board_config) { |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 4512 | case CXD9872RD_VAIO: |
| 4513 | case STAC9872AK_VAIO: |
| 4514 | case STAC9872K_VAIO: |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4515 | spec->mixer = vaio_mixer; |
| 4516 | spec->init = vaio_init; |
| 4517 | spec->multiout.max_channels = 2; |
| 4518 | spec->multiout.num_dacs = ARRAY_SIZE(vaio_dacs); |
| 4519 | spec->multiout.dac_nids = vaio_dacs; |
| 4520 | spec->multiout.hp_nid = VAIO_HP_DAC; |
| 4521 | spec->num_adcs = ARRAY_SIZE(vaio_adcs); |
| 4522 | spec->adc_nids = vaio_adcs; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4523 | spec->num_pwrs = 0; |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4524 | spec->input_mux = &vaio_mux; |
| 4525 | spec->mux_nids = vaio_mux_nids; |
Takashi Iwai | 72e7b0d | 2007-08-16 17:33:55 +0200 | [diff] [blame] | 4526 | codec->patch_ops = stac9872_vaio_patch_ops; |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4527 | break; |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 4528 | |
| 4529 | case CXD9872AKD_VAIO: |
| 4530 | spec->mixer = vaio_ar_mixer; |
| 4531 | spec->init = vaio_ar_init; |
| 4532 | spec->multiout.max_channels = 2; |
| 4533 | spec->multiout.num_dacs = ARRAY_SIZE(vaio_dacs); |
| 4534 | spec->multiout.dac_nids = vaio_dacs; |
| 4535 | spec->multiout.hp_nid = VAIO_HP_DAC; |
| 4536 | spec->num_adcs = ARRAY_SIZE(vaio_adcs); |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4537 | spec->num_pwrs = 0; |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 4538 | spec->adc_nids = vaio_adcs; |
| 4539 | spec->input_mux = &vaio_mux; |
| 4540 | spec->mux_nids = vaio_mux_nids; |
Takashi Iwai | 72e7b0d | 2007-08-16 17:33:55 +0200 | [diff] [blame] | 4541 | codec->patch_ops = stac9872_patch_ops; |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 4542 | break; |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4543 | } |
| 4544 | |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 4545 | return 0; |
| 4546 | } |
| 4547 | |
| 4548 | |
| 4549 | /* |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4550 | * patch entries |
| 4551 | */ |
| 4552 | struct hda_codec_preset snd_hda_preset_sigmatel[] = { |
| 4553 | { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 }, |
| 4554 | { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x }, |
| 4555 | { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x }, |
| 4556 | { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x }, |
| 4557 | { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x }, |
| 4558 | { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x }, |
| 4559 | { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x }, |
Matt Porter | 22a27c7 | 2006-07-06 18:49:10 +0200 | [diff] [blame] | 4560 | { .id = 0x83847618, .name = "STAC9227", .patch = patch_stac927x }, |
| 4561 | { .id = 0x83847619, .name = "STAC9227", .patch = patch_stac927x }, |
| 4562 | { .id = 0x83847616, .name = "STAC9228", .patch = patch_stac927x }, |
| 4563 | { .id = 0x83847617, .name = "STAC9228", .patch = patch_stac927x }, |
| 4564 | { .id = 0x83847614, .name = "STAC9229", .patch = patch_stac927x }, |
| 4565 | { .id = 0x83847615, .name = "STAC9229", .patch = patch_stac927x }, |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 4566 | { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x }, |
| 4567 | { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x }, |
| 4568 | { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x }, |
| 4569 | { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x }, |
| 4570 | { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x }, |
| 4571 | { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x }, |
| 4572 | { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x }, |
| 4573 | { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x }, |
| 4574 | { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x }, |
| 4575 | { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x }, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 4576 | { .id = 0x83847632, .name = "STAC9202", .patch = patch_stac925x }, |
| 4577 | { .id = 0x83847633, .name = "STAC9202D", .patch = patch_stac925x }, |
| 4578 | { .id = 0x83847634, .name = "STAC9250", .patch = patch_stac925x }, |
| 4579 | { .id = 0x83847635, .name = "STAC9250D", .patch = patch_stac925x }, |
| 4580 | { .id = 0x83847636, .name = "STAC9251", .patch = patch_stac925x }, |
| 4581 | { .id = 0x83847637, .name = "STAC9250D", .patch = patch_stac925x }, |
Takashi Iwai | 7bd3c0f | 2008-05-02 12:28:02 +0200 | [diff] [blame] | 4582 | { .id = 0x83847645, .name = "92HD206X", .patch = patch_stac927x }, |
| 4583 | { .id = 0x83847646, .name = "92HD206D", .patch = patch_stac927x }, |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 4584 | /* The following does not take into account .id=0x83847661 when subsys = |
| 4585 | * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are |
| 4586 | * currently not fully supported. |
| 4587 | */ |
| 4588 | { .id = 0x83847661, .name = "CXD9872RD/K", .patch = patch_stac9872 }, |
| 4589 | { .id = 0x83847662, .name = "STAC9872AK", .patch = patch_stac9872 }, |
| 4590 | { .id = 0x83847664, .name = "CXD9872AKD", .patch = patch_stac9872 }, |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 4591 | { .id = 0x838476a0, .name = "STAC9205", .patch = patch_stac9205 }, |
| 4592 | { .id = 0x838476a1, .name = "STAC9205D", .patch = patch_stac9205 }, |
| 4593 | { .id = 0x838476a2, .name = "STAC9204", .patch = patch_stac9205 }, |
| 4594 | { .id = 0x838476a3, .name = "STAC9204D", .patch = patch_stac9205 }, |
| 4595 | { .id = 0x838476a4, .name = "STAC9255", .patch = patch_stac9205 }, |
| 4596 | { .id = 0x838476a5, .name = "STAC9255D", .patch = patch_stac9205 }, |
| 4597 | { .id = 0x838476a6, .name = "STAC9254", .patch = patch_stac9205 }, |
| 4598 | { .id = 0x838476a7, .name = "STAC9254D", .patch = patch_stac9205 }, |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 4599 | { .id = 0x111d7603, .name = "92HD75B3X5", .patch = patch_stac92hd71bxx}, |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 4600 | { .id = 0x111d7604, .name = "92HD83C1X5", .patch = patch_stac92hd83xxx}, |
| 4601 | { .id = 0x111d7605, .name = "92HD81B1X5", .patch = patch_stac92hd83xxx}, |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 4602 | { .id = 0x111d7608, .name = "92HD75B2X5", .patch = patch_stac92hd71bxx}, |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 4603 | { .id = 0x111d7674, .name = "92HD73D1X5", .patch = patch_stac92hd73xx }, |
| 4604 | { .id = 0x111d7675, .name = "92HD73C1X5", .patch = patch_stac92hd73xx }, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 4605 | { .id = 0x111d7676, .name = "92HD73E1X5", .patch = patch_stac92hd73xx }, |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 4606 | { .id = 0x111d76b0, .name = "92HD71B8X", .patch = patch_stac92hd71bxx }, |
| 4607 | { .id = 0x111d76b1, .name = "92HD71B8X", .patch = patch_stac92hd71bxx }, |
| 4608 | { .id = 0x111d76b2, .name = "92HD71B7X", .patch = patch_stac92hd71bxx }, |
| 4609 | { .id = 0x111d76b3, .name = "92HD71B7X", .patch = patch_stac92hd71bxx }, |
| 4610 | { .id = 0x111d76b4, .name = "92HD71B6X", .patch = patch_stac92hd71bxx }, |
| 4611 | { .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx }, |
| 4612 | { .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx }, |
| 4613 | { .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx }, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4614 | {} /* terminator */ |
| 4615 | }; |