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