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