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> |
Vitaliy Kulikov | 5bdaaad | 2009-11-04 07:57:45 +0100 | [diff] [blame] | 31 | #include <linux/dmi.h> |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 32 | #include <sound/core.h> |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 33 | #include <sound/asoundef.h> |
Matthew Ranostay | 45a6ac1 | 2008-10-15 14:45:38 -0400 | [diff] [blame] | 34 | #include <sound/jack.h> |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 35 | #include "hda_codec.h" |
| 36 | #include "hda_local.h" |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 37 | #include "hda_beep.h" |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 38 | |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 39 | enum { |
| 40 | STAC_VREF_EVENT = 1, |
| 41 | STAC_INSERT_EVENT, |
| 42 | STAC_PWR_EVENT, |
| 43 | STAC_HP_EVENT, |
Takashi Iwai | fefd67f | 2009-07-30 18:03:05 +0200 | [diff] [blame] | 44 | STAC_LO_EVENT, |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 45 | STAC_MIC_EVENT, |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 46 | }; |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 47 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 48 | enum { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 49 | STAC_AUTO, |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 50 | STAC_REF, |
Tobin Davis | bf27778 | 2008-02-03 20:31:47 +0100 | [diff] [blame] | 51 | STAC_9200_OQO, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 52 | STAC_9200_DELL_D21, |
| 53 | STAC_9200_DELL_D22, |
| 54 | STAC_9200_DELL_D23, |
| 55 | STAC_9200_DELL_M21, |
| 56 | STAC_9200_DELL_M22, |
| 57 | STAC_9200_DELL_M23, |
| 58 | STAC_9200_DELL_M24, |
| 59 | STAC_9200_DELL_M25, |
| 60 | STAC_9200_DELL_M26, |
| 61 | STAC_9200_DELL_M27, |
Mauro Carvalho Chehab | 58eec42 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 62 | STAC_9200_M4, |
| 63 | STAC_9200_M4_2, |
Takashi Iwai | 117f257 | 2008-03-18 09:53:23 +0100 | [diff] [blame] | 64 | STAC_9200_PANASONIC, |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 65 | STAC_9200_MODELS |
| 66 | }; |
| 67 | |
| 68 | enum { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 69 | STAC_9205_AUTO, |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 70 | STAC_9205_REF, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 71 | STAC_9205_DELL_M42, |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 72 | STAC_9205_DELL_M43, |
| 73 | STAC_9205_DELL_M44, |
Takashi Iwai | d9a4268 | 2009-01-22 17:40:18 +0100 | [diff] [blame] | 74 | STAC_9205_EAPD, |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 75 | STAC_9205_MODELS |
| 76 | }; |
| 77 | |
| 78 | enum { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 79 | STAC_92HD73XX_AUTO, |
Takashi Iwai | 9e43f0d | 2008-12-17 14:51:01 +0100 | [diff] [blame] | 80 | STAC_92HD73XX_NO_JD, /* no jack-detection */ |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 81 | STAC_92HD73XX_REF, |
Wu Fengguang | ae70944 | 2009-08-19 17:05:11 +0800 | [diff] [blame] | 82 | STAC_92HD73XX_INTEL, |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 83 | STAC_DELL_M6_AMIC, |
| 84 | STAC_DELL_M6_DMIC, |
| 85 | STAC_DELL_M6_BOTH, |
Matthew Ranostay | 6b3ab21 | 2008-11-03 08:12:43 -0500 | [diff] [blame] | 86 | STAC_DELL_EQ, |
Takashi Iwai | 842ae63 | 2009-09-02 07:43:08 +0200 | [diff] [blame] | 87 | STAC_ALIENWARE_M17X, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 88 | STAC_92HD73XX_MODELS |
| 89 | }; |
| 90 | |
| 91 | enum { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 92 | STAC_92HD83XXX_AUTO, |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 93 | STAC_92HD83XXX_REF, |
Matthew Ranostay | 32ed3f4 | 2009-01-22 20:53:29 -0500 | [diff] [blame] | 94 | STAC_92HD83XXX_PWR_REF, |
Matthew Ranostay | 8bb0ac5 | 2009-02-12 16:50:01 -0500 | [diff] [blame] | 95 | STAC_DELL_S14, |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 96 | STAC_92HD83XXX_MODELS |
| 97 | }; |
| 98 | |
| 99 | enum { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 100 | STAC_92HD71BXX_AUTO, |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 101 | STAC_92HD71BXX_REF, |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 102 | STAC_DELL_M4_1, |
| 103 | STAC_DELL_M4_2, |
Matthew Ranostay | 3a7abfd | 2008-11-20 21:21:43 -0500 | [diff] [blame] | 104 | STAC_DELL_M4_3, |
Matthew Ranostay | 6a14f58 | 2008-09-12 12:02:30 -0400 | [diff] [blame] | 105 | STAC_HP_M4, |
Takashi Iwai | 1b0652e | 2009-01-14 08:27:35 +0100 | [diff] [blame] | 106 | STAC_HP_DV5, |
Christoph Plattner | ae6241f | 2009-03-08 23:19:05 +0100 | [diff] [blame] | 107 | STAC_HP_HDX, |
James Gardiner | 514bf54 | 2009-05-03 04:00:44 -0400 | [diff] [blame] | 108 | STAC_HP_DV4_1222NR, |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 109 | STAC_92HD71BXX_MODELS |
| 110 | }; |
| 111 | |
| 112 | enum { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 113 | STAC_925x_AUTO, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 114 | STAC_925x_REF, |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 115 | STAC_M1, |
| 116 | STAC_M1_2, |
| 117 | STAC_M2, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 118 | STAC_M2_2, |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 119 | STAC_M3, |
| 120 | STAC_M5, |
| 121 | STAC_M6, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 122 | STAC_925x_MODELS |
| 123 | }; |
| 124 | |
| 125 | enum { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 126 | STAC_922X_AUTO, |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 127 | STAC_D945_REF, |
| 128 | STAC_D945GTP3, |
| 129 | STAC_D945GTP5, |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 130 | STAC_INTEL_MAC_V1, |
| 131 | STAC_INTEL_MAC_V2, |
| 132 | STAC_INTEL_MAC_V3, |
| 133 | STAC_INTEL_MAC_V4, |
| 134 | STAC_INTEL_MAC_V5, |
Nicolas Boichat | 536319a | 2008-07-21 22:18:01 +0800 | [diff] [blame] | 135 | STAC_INTEL_MAC_AUTO, /* This model is selected if no module parameter |
| 136 | * is given, one of the above models will be |
| 137 | * chosen according to the subsystem id. */ |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 138 | /* for backward compatibility */ |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 139 | STAC_MACMINI, |
Takashi Iwai | 3fc24d8 | 2007-02-16 13:27:18 +0100 | [diff] [blame] | 140 | STAC_MACBOOK, |
Nicolas Boichat | 6f0778d | 2007-03-15 12:38:15 +0100 | [diff] [blame] | 141 | STAC_MACBOOK_PRO_V1, |
| 142 | STAC_MACBOOK_PRO_V2, |
Sylvain FORET | f16928f | 2007-04-27 14:22:36 +0200 | [diff] [blame] | 143 | STAC_IMAC_INTEL, |
Takashi Iwai | 0dae0f8 | 2007-05-21 12:41:29 +0200 | [diff] [blame] | 144 | STAC_IMAC_INTEL_20, |
Mauro Carvalho Chehab | 8c65008 | 2008-08-04 10:39:59 -0300 | [diff] [blame] | 145 | STAC_ECS_202, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 146 | STAC_922X_DELL_D81, |
| 147 | STAC_922X_DELL_D82, |
| 148 | STAC_922X_DELL_M81, |
| 149 | STAC_922X_DELL_M82, |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 150 | STAC_922X_MODELS |
| 151 | }; |
| 152 | |
| 153 | enum { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 154 | STAC_927X_AUTO, |
Takashi Iwai | e28d832 | 2008-12-17 13:48:29 +0100 | [diff] [blame] | 155 | STAC_D965_REF_NO_JD, /* no jack-detection */ |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 156 | STAC_D965_REF, |
| 157 | STAC_D965_3ST, |
| 158 | STAC_D965_5ST, |
Takashi Iwai | 679d92e | 2009-05-24 19:00:08 +0200 | [diff] [blame] | 159 | STAC_D965_5ST_NO_FP, |
Tobin Davis | 4ff076e | 2007-08-07 11:48:12 +0200 | [diff] [blame] | 160 | STAC_DELL_3ST, |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 161 | STAC_DELL_BIOS, |
Takashi Iwai | 5493053 | 2009-10-11 17:38:29 +0200 | [diff] [blame] | 162 | STAC_927X_VOLKNOB, |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 163 | STAC_927X_MODELS |
| 164 | }; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 165 | |
Takashi Iwai | 307282c | 2009-03-12 18:17:58 +0100 | [diff] [blame] | 166 | enum { |
| 167 | STAC_9872_AUTO, |
| 168 | STAC_9872_VAIO, |
| 169 | STAC_9872_MODELS |
| 170 | }; |
| 171 | |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 172 | struct sigmatel_event { |
| 173 | hda_nid_t nid; |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 174 | unsigned char type; |
| 175 | unsigned char tag; |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 176 | int data; |
| 177 | }; |
| 178 | |
| 179 | struct sigmatel_jack { |
| 180 | hda_nid_t nid; |
| 181 | int type; |
| 182 | struct snd_jack *jack; |
| 183 | }; |
| 184 | |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 185 | struct sigmatel_mic_route { |
| 186 | hda_nid_t pin; |
Takashi Iwai | 02d3332 | 2009-10-01 16:38:11 +0200 | [diff] [blame] | 187 | signed char mux_idx; |
| 188 | signed char dmux_idx; |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 189 | }; |
| 190 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 191 | struct sigmatel_spec { |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 192 | struct snd_kcontrol_new *mixers[4]; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 193 | unsigned int num_mixers; |
| 194 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 195 | int board_config; |
Matthew Ranostay | c0cea0d | 2008-11-16 11:42:34 -0500 | [diff] [blame] | 196 | unsigned int eapd_switch: 1; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 197 | unsigned int surr_switch: 1; |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 198 | unsigned int alt_switch: 1; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 199 | unsigned int hp_detect: 1; |
Matthew Ranostay | 00ef50c | 2008-09-27 18:13:47 -0400 | [diff] [blame] | 200 | unsigned int spdif_mute: 1; |
Takashi Iwai | 7c7767e | 2009-01-20 15:28:38 +0100 | [diff] [blame] | 201 | unsigned int check_volume_offset:1; |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 202 | unsigned int auto_mic:1; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 203 | |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 204 | /* gpio lines */ |
Matthew Ranostay | 0fc9dec | 2008-04-14 13:32:54 +0200 | [diff] [blame] | 205 | unsigned int eapd_mask; |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 206 | unsigned int gpio_mask; |
| 207 | unsigned int gpio_dir; |
| 208 | unsigned int gpio_data; |
| 209 | unsigned int gpio_mute; |
Takashi Iwai | 86d190e | 2009-05-26 15:18:58 +0200 | [diff] [blame] | 210 | unsigned int gpio_led; |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 211 | |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 212 | /* stream */ |
| 213 | unsigned int stream_delay; |
| 214 | |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 215 | /* analog loopback */ |
Takashi Iwai | d78d7a9 | 2009-03-02 14:26:25 +0100 | [diff] [blame] | 216 | struct snd_kcontrol_new *aloopback_ctl; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 217 | unsigned char aloopback_mask; |
| 218 | unsigned char aloopback_shift; |
Takashi Iwai | 8259980 | 2007-07-31 15:56:24 +0200 | [diff] [blame] | 219 | |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 220 | /* power management */ |
| 221 | unsigned int num_pwrs; |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 222 | unsigned int *pwr_mapping; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 223 | hda_nid_t *pwr_nids; |
Matthew Ranostay | b76c850 | 2008-02-06 14:49:44 +0100 | [diff] [blame] | 224 | hda_nid_t *dac_list; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 225 | |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 226 | /* jack detection */ |
| 227 | struct snd_array jacks; |
| 228 | |
| 229 | /* events */ |
| 230 | struct snd_array events; |
| 231 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 232 | /* playback */ |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 233 | struct hda_input_mux *mono_mux; |
| 234 | unsigned int cur_mmux; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 235 | struct hda_multi_out multiout; |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 236 | hda_nid_t dac_nids[5]; |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 237 | hda_nid_t hp_dacs[5]; |
| 238 | hda_nid_t speaker_dacs[5]; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 239 | |
Takashi Iwai | 7c7767e | 2009-01-20 15:28:38 +0100 | [diff] [blame] | 240 | int volume_offset; |
| 241 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 242 | /* capture */ |
| 243 | hda_nid_t *adc_nids; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 244 | unsigned int num_adcs; |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 245 | hda_nid_t *mux_nids; |
| 246 | unsigned int num_muxes; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 247 | hda_nid_t *dmic_nids; |
| 248 | unsigned int num_dmics; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 249 | hda_nid_t *dmux_nids; |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 250 | unsigned int num_dmuxes; |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 251 | hda_nid_t *smux_nids; |
| 252 | unsigned int num_smuxes; |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 253 | unsigned int num_analog_muxes; |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 254 | |
| 255 | unsigned long *capvols; /* amp-volume attr: HDA_COMPOSE_AMP_VAL() */ |
| 256 | unsigned long *capsws; /* amp-mute attr: HDA_COMPOSE_AMP_VAL() */ |
| 257 | unsigned int num_caps; /* number of capture volume/switch elements */ |
| 258 | |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 259 | struct sigmatel_mic_route ext_mic; |
| 260 | struct sigmatel_mic_route int_mic; |
| 261 | |
Matthew Ranostay | 6597363 | 2008-09-16 10:39:37 -0400 | [diff] [blame] | 262 | const char **spdif_labels; |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 263 | |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 264 | hda_nid_t dig_in_nid; |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 265 | hda_nid_t mono_nid; |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 266 | hda_nid_t anabeep_nid; |
| 267 | hda_nid_t digbeep_nid; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 268 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 269 | /* pin widgets */ |
| 270 | hda_nid_t *pin_nids; |
| 271 | unsigned int num_pins; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 272 | |
| 273 | /* codec specific stuff */ |
| 274 | struct hda_verb *init; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 275 | struct snd_kcontrol_new *mixer; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 276 | |
| 277 | /* capture source */ |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 278 | struct hda_input_mux *dinput_mux; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 279 | unsigned int cur_dmux[2]; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 280 | struct hda_input_mux *input_mux; |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 281 | unsigned int cur_mux[3]; |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 282 | struct hda_input_mux *sinput_mux; |
| 283 | unsigned int cur_smux[2]; |
Matthew Ranostay | 2a9c781 | 2008-09-13 16:45:39 -0400 | [diff] [blame] | 284 | unsigned int cur_amux; |
| 285 | hda_nid_t *amp_nids; |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 286 | unsigned int powerdown_adcs; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 287 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 288 | /* i/o switches */ |
| 289 | unsigned int io_switch[2]; |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 290 | unsigned int clfe_swap; |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 291 | hda_nid_t line_switch; /* shared line-in for input and output */ |
| 292 | hda_nid_t mic_switch; /* shared mic-in for input and output */ |
| 293 | hda_nid_t hp_switch; /* NID of HP as line-out */ |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 294 | unsigned int aloopback; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 295 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 296 | struct hda_pcm pcm_rec[2]; /* PCM information */ |
| 297 | |
| 298 | /* dynamic controls and input_mux */ |
| 299 | struct auto_pin_cfg autocfg; |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 300 | struct snd_array kctls; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 301 | struct hda_input_mux private_dimux; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 302 | struct hda_input_mux private_imux; |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 303 | struct hda_input_mux private_smux; |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 304 | struct hda_input_mux private_mono_mux; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 305 | }; |
| 306 | |
| 307 | static hda_nid_t stac9200_adc_nids[1] = { |
| 308 | 0x03, |
| 309 | }; |
| 310 | |
| 311 | static hda_nid_t stac9200_mux_nids[1] = { |
| 312 | 0x0c, |
| 313 | }; |
| 314 | |
| 315 | static hda_nid_t stac9200_dac_nids[1] = { |
| 316 | 0x02, |
| 317 | }; |
| 318 | |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 319 | static hda_nid_t stac92hd73xx_pwr_nids[8] = { |
| 320 | 0x0a, 0x0b, 0x0c, 0xd, 0x0e, |
| 321 | 0x0f, 0x10, 0x11 |
| 322 | }; |
| 323 | |
Matthew Ranostay | 0ffa980 | 2008-09-08 11:20:05 -0400 | [diff] [blame] | 324 | static hda_nid_t stac92hd73xx_slave_dig_outs[2] = { |
| 325 | 0x26, 0, |
| 326 | }; |
| 327 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 328 | static hda_nid_t stac92hd73xx_adc_nids[2] = { |
| 329 | 0x1a, 0x1b |
| 330 | }; |
| 331 | |
| 332 | #define STAC92HD73XX_NUM_DMICS 2 |
| 333 | static hda_nid_t stac92hd73xx_dmic_nids[STAC92HD73XX_NUM_DMICS + 1] = { |
| 334 | 0x13, 0x14, 0 |
| 335 | }; |
| 336 | |
| 337 | #define STAC92HD73_DAC_COUNT 5 |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 338 | |
Takashi Iwai | e2aec17 | 2009-09-02 01:00:05 +0200 | [diff] [blame] | 339 | static hda_nid_t stac92hd73xx_mux_nids[2] = { |
| 340 | 0x20, 0x21, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 341 | }; |
| 342 | |
| 343 | static hda_nid_t stac92hd73xx_dmux_nids[2] = { |
| 344 | 0x20, 0x21, |
| 345 | }; |
| 346 | |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 347 | static hda_nid_t stac92hd73xx_smux_nids[2] = { |
| 348 | 0x22, 0x23, |
| 349 | }; |
| 350 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 351 | #define STAC92HD73XX_NUM_CAPS 2 |
| 352 | static unsigned long stac92hd73xx_capvols[] = { |
| 353 | HDA_COMPOSE_AMP_VAL(0x20, 3, 0, HDA_OUTPUT), |
| 354 | HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT), |
| 355 | }; |
| 356 | #define stac92hd73xx_capsws stac92hd73xx_capvols |
| 357 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 358 | #define STAC92HD83_DAC_COUNT 3 |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 359 | |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 360 | static hda_nid_t stac92hd83xxx_mux_nids[2] = { |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 361 | 0x17, 0x18, |
| 362 | }; |
| 363 | |
| 364 | static hda_nid_t stac92hd83xxx_adc_nids[2] = { |
| 365 | 0x15, 0x16, |
| 366 | }; |
| 367 | |
| 368 | static hda_nid_t stac92hd83xxx_pwr_nids[4] = { |
| 369 | 0xa, 0xb, 0xd, 0xe, |
| 370 | }; |
| 371 | |
Matthew Ranostay | 0ffa980 | 2008-09-08 11:20:05 -0400 | [diff] [blame] | 372 | static hda_nid_t stac92hd83xxx_slave_dig_outs[2] = { |
| 373 | 0x1e, 0, |
| 374 | }; |
| 375 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 376 | static unsigned int stac92hd83xxx_pwr_mapping[4] = { |
Matthew Ranostay | 87e88a7 | 2009-01-22 20:38:42 -0500 | [diff] [blame] | 377 | 0x03, 0x0c, 0x20, 0x40, |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 378 | }; |
| 379 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 380 | #define STAC92HD83XXX_NUM_CAPS 2 |
| 381 | static unsigned long stac92hd83xxx_capvols[] = { |
| 382 | HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_OUTPUT), |
| 383 | HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_OUTPUT), |
| 384 | }; |
| 385 | #define stac92hd83xxx_capsws stac92hd83xxx_capvols |
| 386 | |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 387 | static hda_nid_t stac92hd71bxx_pwr_nids[3] = { |
| 388 | 0x0a, 0x0d, 0x0f |
| 389 | }; |
| 390 | |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 391 | static hda_nid_t stac92hd71bxx_adc_nids[2] = { |
| 392 | 0x12, 0x13, |
| 393 | }; |
| 394 | |
| 395 | static hda_nid_t stac92hd71bxx_mux_nids[2] = { |
| 396 | 0x1a, 0x1b |
| 397 | }; |
| 398 | |
Matthew Ranostay | 4b33c76 | 2008-10-10 09:07:23 -0400 | [diff] [blame] | 399 | static hda_nid_t stac92hd71bxx_dmux_nids[2] = { |
| 400 | 0x1c, 0x1d, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 401 | }; |
| 402 | |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 403 | static hda_nid_t stac92hd71bxx_smux_nids[2] = { |
| 404 | 0x24, 0x25, |
| 405 | }; |
| 406 | |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 407 | #define STAC92HD71BXX_NUM_DMICS 2 |
| 408 | static hda_nid_t stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS + 1] = { |
| 409 | 0x18, 0x19, 0 |
| 410 | }; |
| 411 | |
Matthew Ranostay | 0ffa980 | 2008-09-08 11:20:05 -0400 | [diff] [blame] | 412 | static hda_nid_t stac92hd71bxx_slave_dig_outs[2] = { |
| 413 | 0x22, 0 |
| 414 | }; |
| 415 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 416 | #define STAC92HD71BXX_NUM_CAPS 2 |
| 417 | static unsigned long stac92hd71bxx_capvols[] = { |
| 418 | HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT), |
| 419 | HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT), |
| 420 | }; |
| 421 | #define stac92hd71bxx_capsws stac92hd71bxx_capvols |
| 422 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 423 | static hda_nid_t stac925x_adc_nids[1] = { |
| 424 | 0x03, |
| 425 | }; |
| 426 | |
| 427 | static hda_nid_t stac925x_mux_nids[1] = { |
| 428 | 0x0f, |
| 429 | }; |
| 430 | |
| 431 | static hda_nid_t stac925x_dac_nids[1] = { |
| 432 | 0x02, |
| 433 | }; |
| 434 | |
Takashi Iwai | f6e9852 | 2007-10-16 14:27:04 +0200 | [diff] [blame] | 435 | #define STAC925X_NUM_DMICS 1 |
| 436 | static hda_nid_t stac925x_dmic_nids[STAC925X_NUM_DMICS + 1] = { |
| 437 | 0x15, 0 |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 438 | }; |
| 439 | |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 440 | static hda_nid_t stac925x_dmux_nids[1] = { |
| 441 | 0x14, |
| 442 | }; |
| 443 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 444 | static unsigned long stac925x_capvols[] = { |
| 445 | HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_OUTPUT), |
| 446 | }; |
| 447 | static unsigned long stac925x_capsws[] = { |
| 448 | HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT), |
| 449 | }; |
| 450 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 451 | static hda_nid_t stac922x_adc_nids[2] = { |
| 452 | 0x06, 0x07, |
| 453 | }; |
| 454 | |
| 455 | static hda_nid_t stac922x_mux_nids[2] = { |
| 456 | 0x12, 0x13, |
| 457 | }; |
| 458 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 459 | #define STAC922X_NUM_CAPS 2 |
| 460 | static unsigned long stac922x_capvols[] = { |
| 461 | HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_INPUT), |
| 462 | HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT), |
| 463 | }; |
| 464 | #define stac922x_capsws stac922x_capvols |
| 465 | |
Matthew Ranostay | 45c1d85 | 2009-02-04 17:49:41 -0500 | [diff] [blame] | 466 | static hda_nid_t stac927x_slave_dig_outs[2] = { |
| 467 | 0x1f, 0, |
| 468 | }; |
| 469 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 470 | static hda_nid_t stac927x_adc_nids[3] = { |
| 471 | 0x07, 0x08, 0x09 |
| 472 | }; |
| 473 | |
| 474 | static hda_nid_t stac927x_mux_nids[3] = { |
| 475 | 0x15, 0x16, 0x17 |
| 476 | }; |
| 477 | |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 478 | static hda_nid_t stac927x_smux_nids[1] = { |
| 479 | 0x21, |
| 480 | }; |
| 481 | |
Matthew Ranostay | b76c850 | 2008-02-06 14:49:44 +0100 | [diff] [blame] | 482 | static hda_nid_t stac927x_dac_nids[6] = { |
| 483 | 0x02, 0x03, 0x04, 0x05, 0x06, 0 |
| 484 | }; |
| 485 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 486 | static hda_nid_t stac927x_dmux_nids[1] = { |
| 487 | 0x1b, |
| 488 | }; |
| 489 | |
Matthew Ranostay | 7f16859 | 2007-10-18 17:38:17 +0200 | [diff] [blame] | 490 | #define STAC927X_NUM_DMICS 2 |
| 491 | static hda_nid_t stac927x_dmic_nids[STAC927X_NUM_DMICS + 1] = { |
| 492 | 0x13, 0x14, 0 |
| 493 | }; |
| 494 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 495 | #define STAC927X_NUM_CAPS 3 |
| 496 | static unsigned long stac927x_capvols[] = { |
| 497 | HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT), |
| 498 | HDA_COMPOSE_AMP_VAL(0x19, 3, 0, HDA_INPUT), |
| 499 | HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_INPUT), |
| 500 | }; |
| 501 | static unsigned long stac927x_capsws[] = { |
| 502 | HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT), |
| 503 | HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT), |
| 504 | HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT), |
| 505 | }; |
| 506 | |
Matthew Ranostay | 6597363 | 2008-09-16 10:39:37 -0400 | [diff] [blame] | 507 | static const char *stac927x_spdif_labels[5] = { |
| 508 | "Digital Playback", "ADAT", "Analog Mux 1", |
| 509 | "Analog Mux 2", "Analog Mux 3" |
| 510 | }; |
| 511 | |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 512 | static hda_nid_t stac9205_adc_nids[2] = { |
| 513 | 0x12, 0x13 |
| 514 | }; |
| 515 | |
| 516 | static hda_nid_t stac9205_mux_nids[2] = { |
| 517 | 0x19, 0x1a |
| 518 | }; |
| 519 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 520 | static hda_nid_t stac9205_dmux_nids[1] = { |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 521 | 0x1d, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 522 | }; |
| 523 | |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 524 | static hda_nid_t stac9205_smux_nids[1] = { |
| 525 | 0x21, |
| 526 | }; |
| 527 | |
Takashi Iwai | f6e9852 | 2007-10-16 14:27:04 +0200 | [diff] [blame] | 528 | #define STAC9205_NUM_DMICS 2 |
| 529 | static hda_nid_t stac9205_dmic_nids[STAC9205_NUM_DMICS + 1] = { |
| 530 | 0x17, 0x18, 0 |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 531 | }; |
| 532 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 533 | #define STAC9205_NUM_CAPS 2 |
| 534 | static unsigned long stac9205_capvols[] = { |
| 535 | HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_INPUT), |
| 536 | HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_INPUT), |
| 537 | }; |
| 538 | static unsigned long stac9205_capsws[] = { |
| 539 | HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT), |
| 540 | HDA_COMPOSE_AMP_VAL(0x1e, 3, 0, HDA_OUTPUT), |
| 541 | }; |
| 542 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 543 | static hda_nid_t stac9200_pin_nids[8] = { |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 544 | 0x08, 0x09, 0x0d, 0x0e, |
| 545 | 0x0f, 0x10, 0x11, 0x12, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 546 | }; |
| 547 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 548 | static hda_nid_t stac925x_pin_nids[8] = { |
| 549 | 0x07, 0x08, 0x0a, 0x0b, |
| 550 | 0x0c, 0x0d, 0x10, 0x11, |
| 551 | }; |
| 552 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 553 | static hda_nid_t stac922x_pin_nids[10] = { |
| 554 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, |
| 555 | 0x0f, 0x10, 0x11, 0x15, 0x1b, |
| 556 | }; |
| 557 | |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 558 | static hda_nid_t stac92hd73xx_pin_nids[13] = { |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 559 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, |
| 560 | 0x0f, 0x10, 0x11, 0x12, 0x13, |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 561 | 0x14, 0x22, 0x23 |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 562 | }; |
| 563 | |
Matthew Ranostay | 8bb0ac5 | 2009-02-12 16:50:01 -0500 | [diff] [blame] | 564 | static hda_nid_t stac92hd83xxx_pin_nids[10] = { |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 565 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, |
Matthew Ranostay | 8bb0ac5 | 2009-02-12 16:50:01 -0500 | [diff] [blame] | 566 | 0x0f, 0x10, 0x11, 0x1f, 0x20, |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 567 | }; |
Herton Ronaldo Krzesinski | 616f89e | 2009-02-04 11:23:19 -0500 | [diff] [blame] | 568 | |
| 569 | #define STAC92HD71BXX_NUM_PINS 13 |
| 570 | static hda_nid_t stac92hd71bxx_pin_nids_4port[STAC92HD71BXX_NUM_PINS] = { |
| 571 | 0x0a, 0x0b, 0x0c, 0x0d, 0x00, |
| 572 | 0x00, 0x14, 0x18, 0x19, 0x1e, |
| 573 | 0x1f, 0x20, 0x27 |
| 574 | }; |
| 575 | static hda_nid_t stac92hd71bxx_pin_nids_6port[STAC92HD71BXX_NUM_PINS] = { |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 576 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, |
| 577 | 0x0f, 0x14, 0x18, 0x19, 0x1e, |
Herton Ronaldo Krzesinski | 616f89e | 2009-02-04 11:23:19 -0500 | [diff] [blame] | 578 | 0x1f, 0x20, 0x27 |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 579 | }; |
| 580 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 581 | static hda_nid_t stac927x_pin_nids[14] = { |
| 582 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, |
| 583 | 0x0f, 0x10, 0x11, 0x12, 0x13, |
| 584 | 0x14, 0x21, 0x22, 0x23, |
| 585 | }; |
| 586 | |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 587 | static hda_nid_t stac9205_pin_nids[12] = { |
| 588 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, |
| 589 | 0x0f, 0x14, 0x16, 0x17, 0x18, |
| 590 | 0x21, 0x22, |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 591 | }; |
| 592 | |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 593 | static int stac92xx_dmux_enum_info(struct snd_kcontrol *kcontrol, |
| 594 | struct snd_ctl_elem_info *uinfo) |
| 595 | { |
| 596 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 597 | struct sigmatel_spec *spec = codec->spec; |
| 598 | return snd_hda_input_mux_info(spec->dinput_mux, uinfo); |
| 599 | } |
| 600 | |
| 601 | static int stac92xx_dmux_enum_get(struct snd_kcontrol *kcontrol, |
| 602 | struct snd_ctl_elem_value *ucontrol) |
| 603 | { |
| 604 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 605 | struct sigmatel_spec *spec = codec->spec; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 606 | unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 607 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 608 | ucontrol->value.enumerated.item[0] = spec->cur_dmux[dmux_idx]; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 609 | return 0; |
| 610 | } |
| 611 | |
| 612 | static int stac92xx_dmux_enum_put(struct snd_kcontrol *kcontrol, |
| 613 | struct snd_ctl_elem_value *ucontrol) |
| 614 | { |
| 615 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 616 | struct sigmatel_spec *spec = codec->spec; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 617 | unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 618 | |
| 619 | return snd_hda_input_mux_put(codec, spec->dinput_mux, ucontrol, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 620 | spec->dmux_nids[dmux_idx], &spec->cur_dmux[dmux_idx]); |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 621 | } |
| 622 | |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 623 | static int stac92xx_smux_enum_info(struct snd_kcontrol *kcontrol, |
| 624 | struct snd_ctl_elem_info *uinfo) |
| 625 | { |
| 626 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 627 | struct sigmatel_spec *spec = codec->spec; |
| 628 | return snd_hda_input_mux_info(spec->sinput_mux, uinfo); |
| 629 | } |
| 630 | |
| 631 | static int stac92xx_smux_enum_get(struct snd_kcontrol *kcontrol, |
| 632 | struct snd_ctl_elem_value *ucontrol) |
| 633 | { |
| 634 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 635 | struct sigmatel_spec *spec = codec->spec; |
| 636 | unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
| 637 | |
| 638 | ucontrol->value.enumerated.item[0] = spec->cur_smux[smux_idx]; |
| 639 | return 0; |
| 640 | } |
| 641 | |
| 642 | static int stac92xx_smux_enum_put(struct snd_kcontrol *kcontrol, |
| 643 | struct snd_ctl_elem_value *ucontrol) |
| 644 | { |
| 645 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 646 | struct sigmatel_spec *spec = codec->spec; |
Matthew Ranostay | 00ef50c | 2008-09-27 18:13:47 -0400 | [diff] [blame] | 647 | struct hda_input_mux *smux = &spec->private_smux; |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 648 | unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
Matthew Ranostay | 00ef50c | 2008-09-27 18:13:47 -0400 | [diff] [blame] | 649 | int err, val; |
| 650 | hda_nid_t nid; |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 651 | |
Matthew Ranostay | 00ef50c | 2008-09-27 18:13:47 -0400 | [diff] [blame] | 652 | err = snd_hda_input_mux_put(codec, spec->sinput_mux, ucontrol, |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 653 | spec->smux_nids[smux_idx], &spec->cur_smux[smux_idx]); |
Matthew Ranostay | 00ef50c | 2008-09-27 18:13:47 -0400 | [diff] [blame] | 654 | if (err < 0) |
| 655 | return err; |
| 656 | |
| 657 | if (spec->spdif_mute) { |
| 658 | if (smux_idx == 0) |
| 659 | nid = spec->multiout.dig_out_nid; |
| 660 | else |
| 661 | nid = codec->slave_dig_outs[smux_idx - 1]; |
| 662 | if (spec->cur_smux[smux_idx] == smux->num_items - 1) |
Takashi Iwai | c9b46f9 | 2008-12-01 11:42:09 +0100 | [diff] [blame] | 663 | val = HDA_AMP_MUTE; |
Matthew Ranostay | 00ef50c | 2008-09-27 18:13:47 -0400 | [diff] [blame] | 664 | else |
Takashi Iwai | c9b46f9 | 2008-12-01 11:42:09 +0100 | [diff] [blame] | 665 | val = 0; |
Matthew Ranostay | 00ef50c | 2008-09-27 18:13:47 -0400 | [diff] [blame] | 666 | /* un/mute SPDIF out */ |
Takashi Iwai | c9b46f9 | 2008-12-01 11:42:09 +0100 | [diff] [blame] | 667 | snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0, |
| 668 | HDA_AMP_MUTE, val); |
Matthew Ranostay | 00ef50c | 2008-09-27 18:13:47 -0400 | [diff] [blame] | 669 | } |
| 670 | return 0; |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 671 | } |
| 672 | |
Nickolas Lloyd | 2fc9989 | 2009-05-15 15:33:30 +0200 | [diff] [blame] | 673 | static unsigned int stac92xx_vref_set(struct hda_codec *codec, |
| 674 | hda_nid_t nid, unsigned int new_vref) |
| 675 | { |
Takashi Iwai | b862151 | 2009-06-22 08:00:10 +0200 | [diff] [blame] | 676 | int error; |
Nickolas Lloyd | 2fc9989 | 2009-05-15 15:33:30 +0200 | [diff] [blame] | 677 | unsigned int pincfg; |
| 678 | pincfg = snd_hda_codec_read(codec, nid, 0, |
| 679 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); |
| 680 | |
| 681 | pincfg &= 0xff; |
| 682 | pincfg &= ~(AC_PINCTL_VREFEN | AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN); |
| 683 | pincfg |= new_vref; |
| 684 | |
| 685 | if (new_vref == AC_PINCTL_VREF_HIZ) |
| 686 | pincfg |= AC_PINCTL_OUT_EN; |
| 687 | else |
| 688 | pincfg |= AC_PINCTL_IN_EN; |
| 689 | |
| 690 | error = snd_hda_codec_write_cache(codec, nid, 0, |
| 691 | AC_VERB_SET_PIN_WIDGET_CONTROL, pincfg); |
| 692 | if (error < 0) |
| 693 | return error; |
| 694 | else |
| 695 | return 1; |
| 696 | } |
| 697 | |
| 698 | static unsigned int stac92xx_vref_get(struct hda_codec *codec, hda_nid_t nid) |
| 699 | { |
| 700 | unsigned int vref; |
| 701 | vref = snd_hda_codec_read(codec, nid, 0, |
| 702 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); |
| 703 | vref &= AC_PINCTL_VREFEN; |
| 704 | return vref; |
| 705 | } |
| 706 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 707 | 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] | 708 | { |
| 709 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 710 | struct sigmatel_spec *spec = codec->spec; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 711 | return snd_hda_input_mux_info(spec->input_mux, uinfo); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 712 | } |
| 713 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 714 | 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] | 715 | { |
| 716 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 717 | struct sigmatel_spec *spec = codec->spec; |
| 718 | unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
| 719 | |
| 720 | ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx]; |
| 721 | return 0; |
| 722 | } |
| 723 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 724 | 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] | 725 | { |
| 726 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 727 | struct sigmatel_spec *spec = codec->spec; |
| 728 | unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 729 | const struct hda_input_mux *imux = spec->input_mux; |
| 730 | unsigned int idx, prev_idx; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 731 | |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 732 | idx = ucontrol->value.enumerated.item[0]; |
| 733 | if (idx >= imux->num_items) |
| 734 | idx = imux->num_items - 1; |
| 735 | prev_idx = spec->cur_mux[adc_idx]; |
| 736 | if (prev_idx == idx) |
| 737 | return 0; |
| 738 | if (idx < spec->num_analog_muxes) { |
| 739 | snd_hda_codec_write_cache(codec, spec->mux_nids[adc_idx], 0, |
| 740 | AC_VERB_SET_CONNECT_SEL, |
| 741 | imux->items[idx].index); |
| 742 | if (prev_idx >= spec->num_analog_muxes) { |
| 743 | imux = spec->dinput_mux; |
| 744 | /* 0 = analog */ |
| 745 | snd_hda_codec_write_cache(codec, |
| 746 | spec->dmux_nids[adc_idx], 0, |
| 747 | AC_VERB_SET_CONNECT_SEL, |
| 748 | imux->items[0].index); |
| 749 | } |
| 750 | } else { |
| 751 | imux = spec->dinput_mux; |
| 752 | snd_hda_codec_write_cache(codec, spec->dmux_nids[adc_idx], 0, |
| 753 | AC_VERB_SET_CONNECT_SEL, |
| 754 | imux->items[idx - 1].index); |
| 755 | } |
| 756 | spec->cur_mux[adc_idx] = idx; |
| 757 | return 1; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 758 | } |
| 759 | |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 760 | static int stac92xx_mono_mux_enum_info(struct snd_kcontrol *kcontrol, |
| 761 | struct snd_ctl_elem_info *uinfo) |
| 762 | { |
| 763 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 764 | struct sigmatel_spec *spec = codec->spec; |
| 765 | return snd_hda_input_mux_info(spec->mono_mux, uinfo); |
| 766 | } |
| 767 | |
| 768 | static int stac92xx_mono_mux_enum_get(struct snd_kcontrol *kcontrol, |
| 769 | struct snd_ctl_elem_value *ucontrol) |
| 770 | { |
| 771 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 772 | struct sigmatel_spec *spec = codec->spec; |
| 773 | |
| 774 | ucontrol->value.enumerated.item[0] = spec->cur_mmux; |
| 775 | return 0; |
| 776 | } |
| 777 | |
| 778 | static int stac92xx_mono_mux_enum_put(struct snd_kcontrol *kcontrol, |
| 779 | struct snd_ctl_elem_value *ucontrol) |
| 780 | { |
| 781 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 782 | struct sigmatel_spec *spec = codec->spec; |
| 783 | |
| 784 | return snd_hda_input_mux_put(codec, spec->mono_mux, ucontrol, |
| 785 | spec->mono_nid, &spec->cur_mmux); |
| 786 | } |
| 787 | |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 788 | #define stac92xx_aloopback_info snd_ctl_boolean_mono_info |
| 789 | |
| 790 | static int stac92xx_aloopback_get(struct snd_kcontrol *kcontrol, |
| 791 | struct snd_ctl_elem_value *ucontrol) |
| 792 | { |
| 793 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 794 | unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 795 | struct sigmatel_spec *spec = codec->spec; |
| 796 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 797 | ucontrol->value.integer.value[0] = !!(spec->aloopback & |
| 798 | (spec->aloopback_mask << idx)); |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 799 | return 0; |
| 800 | } |
| 801 | |
| 802 | static int stac92xx_aloopback_put(struct snd_kcontrol *kcontrol, |
| 803 | struct snd_ctl_elem_value *ucontrol) |
| 804 | { |
| 805 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 806 | struct sigmatel_spec *spec = codec->spec; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 807 | unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 808 | unsigned int dac_mode; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 809 | unsigned int val, idx_val; |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 810 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 811 | idx_val = spec->aloopback_mask << idx; |
| 812 | if (ucontrol->value.integer.value[0]) |
| 813 | val = spec->aloopback | idx_val; |
| 814 | else |
| 815 | val = spec->aloopback & ~idx_val; |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 816 | if (spec->aloopback == val) |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 817 | return 0; |
| 818 | |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 819 | spec->aloopback = val; |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 820 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 821 | /* Only return the bits defined by the shift value of the |
| 822 | * first two bytes of the mask |
| 823 | */ |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 824 | dac_mode = snd_hda_codec_read(codec, codec->afg, 0, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 825 | kcontrol->private_value & 0xFFFF, 0x0); |
| 826 | dac_mode >>= spec->aloopback_shift; |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 827 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 828 | if (spec->aloopback & idx_val) { |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 829 | snd_hda_power_up(codec); |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 830 | dac_mode |= idx_val; |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 831 | } else { |
| 832 | snd_hda_power_down(codec); |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 833 | dac_mode &= ~idx_val; |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 834 | } |
| 835 | |
| 836 | snd_hda_codec_write_cache(codec, codec->afg, 0, |
| 837 | kcontrol->private_value >> 16, dac_mode); |
| 838 | |
| 839 | return 1; |
| 840 | } |
| 841 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 842 | static struct hda_verb stac9200_core_init[] = { |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 843 | /* set dac0mux for dac converter */ |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 844 | { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00}, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 845 | {} |
| 846 | }; |
| 847 | |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 848 | static struct hda_verb stac9200_eapd_init[] = { |
| 849 | /* set dac0mux for dac converter */ |
| 850 | {0x07, AC_VERB_SET_CONNECT_SEL, 0x00}, |
| 851 | {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02}, |
| 852 | {} |
| 853 | }; |
| 854 | |
Matthew Ranostay | d654a66 | 2008-03-14 08:46:51 +0100 | [diff] [blame] | 855 | static struct hda_verb dell_eq_core_init[] = { |
| 856 | /* set master volume to max value without distortion |
| 857 | * and direct control */ |
| 858 | { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec}, |
Matthew Ranostay | d654a66 | 2008-03-14 08:46:51 +0100 | [diff] [blame] | 859 | {} |
| 860 | }; |
| 861 | |
Takashi Iwai | e2aec17 | 2009-09-02 01:00:05 +0200 | [diff] [blame] | 862 | static struct hda_verb stac92hd73xx_core_init[] = { |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 863 | /* set master volume and direct control */ |
| 864 | { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 865 | {} |
| 866 | }; |
| 867 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 868 | static struct hda_verb stac92hd83xxx_core_init[] = { |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 869 | /* power state controls amps */ |
| 870 | { 0x01, AC_VERB_SET_EAPD, 1 << 2}, |
Herton Ronaldo Krzesinski | 574f3c4 | 2008-12-23 16:53:00 -0200 | [diff] [blame] | 871 | {} |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 872 | }; |
| 873 | |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 874 | static struct hda_verb stac92hd71bxx_core_init[] = { |
| 875 | /* set master volume and direct control */ |
| 876 | { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
Herton Ronaldo Krzesinski | 574f3c4 | 2008-12-23 16:53:00 -0200 | [diff] [blame] | 877 | {} |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 878 | }; |
| 879 | |
Matthew Ranostay | ca8d33f | 2009-01-26 09:33:52 -0500 | [diff] [blame] | 880 | static struct hda_verb stac92hd71bxx_unmute_core_init[] = { |
| 881 | /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */ |
| 882 | { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 883 | { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, |
| 884 | { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 885 | {} |
| 886 | }; |
| 887 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 888 | static struct hda_verb stac925x_core_init[] = { |
| 889 | /* set dac0mux for dac converter */ |
| 890 | { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00}, |
Takashi Iwai | c9280d6 | 2009-01-15 17:31:00 +0100 | [diff] [blame] | 891 | /* mute the master volume */ |
| 892 | { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE }, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 893 | {} |
| 894 | }; |
| 895 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 896 | static struct hda_verb stac922x_core_init[] = { |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 897 | /* set master volume and direct control */ |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 898 | { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 899 | {} |
| 900 | }; |
| 901 | |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 902 | static struct hda_verb d965_core_init[] = { |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 903 | /* set master volume and direct control */ |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 904 | { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 905 | /* unmute node 0x1b */ |
| 906 | { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000}, |
| 907 | /* select node 0x03 as DAC */ |
| 908 | { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 909 | {} |
| 910 | }; |
| 911 | |
Takashi Iwai | ccca7cd | 2009-10-13 15:32:21 +0200 | [diff] [blame] | 912 | static struct hda_verb dell_3st_core_init[] = { |
| 913 | /* don't set delta bit */ |
| 914 | {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f}, |
| 915 | /* unmute node 0x1b */ |
| 916 | {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000}, |
| 917 | /* select node 0x03 as DAC */ |
| 918 | {0x0b, AC_VERB_SET_CONNECT_SEL, 0x01}, |
| 919 | {} |
| 920 | }; |
| 921 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 922 | static struct hda_verb stac927x_core_init[] = { |
| 923 | /* set master volume and direct control */ |
| 924 | { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 925 | /* enable analog pc beep path */ |
| 926 | { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5}, |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 927 | {} |
| 928 | }; |
| 929 | |
Takashi Iwai | 5493053 | 2009-10-11 17:38:29 +0200 | [diff] [blame] | 930 | static struct hda_verb stac927x_volknob_core_init[] = { |
| 931 | /* don't set delta bit */ |
| 932 | {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f}, |
| 933 | /* enable analog pc beep path */ |
| 934 | {0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5}, |
| 935 | {} |
| 936 | }; |
| 937 | |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 938 | static struct hda_verb stac9205_core_init[] = { |
| 939 | /* set master volume and direct control */ |
| 940 | { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 941 | /* enable analog pc beep path */ |
| 942 | { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5}, |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 943 | {} |
| 944 | }; |
| 945 | |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 946 | #define STAC_MONO_MUX \ |
| 947 | { \ |
| 948 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| 949 | .name = "Mono Mux", \ |
| 950 | .count = 1, \ |
| 951 | .info = stac92xx_mono_mux_enum_info, \ |
| 952 | .get = stac92xx_mono_mux_enum_get, \ |
| 953 | .put = stac92xx_mono_mux_enum_put, \ |
| 954 | } |
| 955 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 956 | #define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \ |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 957 | { \ |
| 958 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| 959 | .name = "Analog Loopback", \ |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 960 | .count = cnt, \ |
Maxim Levitsky | 5f10c4a | 2007-09-03 15:29:37 +0200 | [diff] [blame] | 961 | .info = stac92xx_aloopback_info, \ |
| 962 | .get = stac92xx_aloopback_get, \ |
| 963 | .put = stac92xx_aloopback_put, \ |
| 964 | .private_value = verb_read | (verb_write << 16), \ |
| 965 | } |
| 966 | |
Nickolas Lloyd | 2fc9989 | 2009-05-15 15:33:30 +0200 | [diff] [blame] | 967 | #define DC_BIAS(xname, idx, nid) \ |
| 968 | { \ |
| 969 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| 970 | .name = xname, \ |
| 971 | .index = idx, \ |
| 972 | .info = stac92xx_dc_bias_info, \ |
| 973 | .get = stac92xx_dc_bias_get, \ |
| 974 | .put = stac92xx_dc_bias_put, \ |
| 975 | .private_value = nid, \ |
| 976 | } |
| 977 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 978 | static struct snd_kcontrol_new stac9200_mixer[] = { |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 979 | HDA_CODEC_VOLUME("Master Playback Volume", 0xb, 0, HDA_OUTPUT), |
| 980 | HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT), |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 981 | HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT), |
| 982 | HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT), |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 983 | { } /* end */ |
| 984 | }; |
| 985 | |
Takashi Iwai | d78d7a9 | 2009-03-02 14:26:25 +0100 | [diff] [blame] | 986 | static struct snd_kcontrol_new stac92hd73xx_6ch_loopback[] = { |
| 987 | STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3), |
| 988 | {} |
| 989 | }; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 990 | |
Takashi Iwai | d78d7a9 | 2009-03-02 14:26:25 +0100 | [diff] [blame] | 991 | static struct snd_kcontrol_new stac92hd73xx_8ch_loopback[] = { |
| 992 | STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4), |
| 993 | {} |
| 994 | }; |
| 995 | |
| 996 | static struct snd_kcontrol_new stac92hd73xx_10ch_loopback[] = { |
| 997 | STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5), |
| 998 | {} |
| 999 | }; |
| 1000 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 1001 | |
Takashi Iwai | d78d7a9 | 2009-03-02 14:26:25 +0100 | [diff] [blame] | 1002 | static struct snd_kcontrol_new stac92hd71bxx_loopback[] = { |
| 1003 | STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2) |
| 1004 | }; |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 1005 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1006 | static struct snd_kcontrol_new stac925x_mixer[] = { |
Takashi Iwai | c9280d6 | 2009-01-15 17:31:00 +0100 | [diff] [blame] | 1007 | HDA_CODEC_VOLUME("Master Playback Volume", 0x0e, 0, HDA_OUTPUT), |
| 1008 | HDA_CODEC_MUTE("Master Playback Switch", 0x0e, 0, HDA_OUTPUT), |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 1009 | { } /* end */ |
| 1010 | }; |
| 1011 | |
Takashi Iwai | d78d7a9 | 2009-03-02 14:26:25 +0100 | [diff] [blame] | 1012 | static struct snd_kcontrol_new stac9205_loopback[] = { |
| 1013 | STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1), |
| 1014 | {} |
| 1015 | }; |
| 1016 | |
Takashi Iwai | d78d7a9 | 2009-03-02 14:26:25 +0100 | [diff] [blame] | 1017 | static struct snd_kcontrol_new stac927x_loopback[] = { |
| 1018 | STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1), |
| 1019 | {} |
| 1020 | }; |
| 1021 | |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 1022 | static struct snd_kcontrol_new stac_dmux_mixer = { |
| 1023 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1024 | .name = "Digital Input Source", |
| 1025 | /* count set later */ |
| 1026 | .info = stac92xx_dmux_enum_info, |
| 1027 | .get = stac92xx_dmux_enum_get, |
| 1028 | .put = stac92xx_dmux_enum_put, |
| 1029 | }; |
| 1030 | |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 1031 | static struct snd_kcontrol_new stac_smux_mixer = { |
| 1032 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Matthew Ranostay | e348797 | 2008-09-08 11:36:59 -0400 | [diff] [blame] | 1033 | .name = "IEC958 Playback Source", |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 1034 | /* count set later */ |
| 1035 | .info = stac92xx_smux_enum_info, |
| 1036 | .get = stac92xx_smux_enum_get, |
| 1037 | .put = stac92xx_smux_enum_put, |
| 1038 | }; |
| 1039 | |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1040 | static const char *slave_vols[] = { |
| 1041 | "Front Playback Volume", |
| 1042 | "Surround Playback Volume", |
| 1043 | "Center Playback Volume", |
| 1044 | "LFE Playback Volume", |
| 1045 | "Side Playback Volume", |
| 1046 | "Headphone Playback Volume", |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1047 | "Speaker Playback Volume", |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1048 | NULL |
| 1049 | }; |
| 1050 | |
| 1051 | static const char *slave_sws[] = { |
| 1052 | "Front Playback Switch", |
| 1053 | "Surround Playback Switch", |
| 1054 | "Center Playback Switch", |
| 1055 | "LFE Playback Switch", |
| 1056 | "Side Playback Switch", |
| 1057 | "Headphone Playback Switch", |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1058 | "Speaker Playback Switch", |
Takashi Iwai | edb54a5 | 2008-01-29 12:47:02 +0100 | [diff] [blame] | 1059 | "IEC958 Playback Switch", |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1060 | NULL |
| 1061 | }; |
| 1062 | |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1063 | static void stac92xx_free_kctls(struct hda_codec *codec); |
Takashi Iwai | e4973e1 | 2008-11-18 09:32:42 +0100 | [diff] [blame] | 1064 | 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] | 1065 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1066 | static int stac92xx_build_controls(struct hda_codec *codec) |
| 1067 | { |
| 1068 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | e4973e1 | 2008-11-18 09:32:42 +0100 | [diff] [blame] | 1069 | struct auto_pin_cfg *cfg = &spec->autocfg; |
| 1070 | hda_nid_t nid; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1071 | int err; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 1072 | int i; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1073 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 1074 | if (spec->mixer) { |
| 1075 | err = snd_hda_add_new_ctls(codec, spec->mixer); |
| 1076 | if (err < 0) |
| 1077 | return err; |
| 1078 | } |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 1079 | |
| 1080 | for (i = 0; i < spec->num_mixers; i++) { |
| 1081 | err = snd_hda_add_new_ctls(codec, spec->mixers[i]); |
| 1082 | if (err < 0) |
| 1083 | return err; |
| 1084 | } |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 1085 | if (!spec->auto_mic && spec->num_dmuxes > 0 && |
| 1086 | snd_hda_get_bool_hint(codec, "separate_dmux") == 1) { |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 1087 | stac_dmux_mixer.count = spec->num_dmuxes; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1088 | err = snd_hda_ctl_add(codec, 0, |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 1089 | snd_ctl_new1(&stac_dmux_mixer, codec)); |
| 1090 | if (err < 0) |
| 1091 | return err; |
| 1092 | } |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 1093 | if (spec->num_smuxes > 0) { |
Matthew Ranostay | 00ef50c | 2008-09-27 18:13:47 -0400 | [diff] [blame] | 1094 | int wcaps = get_wcaps(codec, spec->multiout.dig_out_nid); |
| 1095 | struct hda_input_mux *smux = &spec->private_smux; |
| 1096 | /* check for mute support on SPDIF out */ |
| 1097 | if (wcaps & AC_WCAP_OUT_AMP) { |
| 1098 | smux->items[smux->num_items].label = "Off"; |
| 1099 | smux->items[smux->num_items].index = 0; |
| 1100 | smux->num_items++; |
| 1101 | spec->spdif_mute = 1; |
| 1102 | } |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 1103 | stac_smux_mixer.count = spec->num_smuxes; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1104 | err = snd_hda_ctl_add(codec, 0, |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 1105 | snd_ctl_new1(&stac_smux_mixer, codec)); |
| 1106 | if (err < 0) |
| 1107 | return err; |
| 1108 | } |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 1109 | |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 1110 | if (spec->multiout.dig_out_nid) { |
| 1111 | err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid); |
| 1112 | if (err < 0) |
| 1113 | return err; |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 1114 | err = snd_hda_create_spdif_share_sw(codec, |
| 1115 | &spec->multiout); |
| 1116 | if (err < 0) |
| 1117 | return err; |
| 1118 | spec->multiout.share_spdif = 1; |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 1119 | } |
Harvey Harrison | da74ae3 | 2008-10-21 20:28:04 -0700 | [diff] [blame] | 1120 | if (spec->dig_in_nid && !(spec->gpio_dir & 0x01)) { |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 1121 | err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid); |
| 1122 | if (err < 0) |
| 1123 | return err; |
| 1124 | } |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1125 | |
| 1126 | /* if we have no master control, let's create it */ |
| 1127 | if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) { |
Takashi Iwai | 1c82ed1 | 2008-02-18 13:05:50 +0100 | [diff] [blame] | 1128 | unsigned int vmaster_tlv[4]; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1129 | snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0], |
Takashi Iwai | 1c82ed1 | 2008-02-18 13:05:50 +0100 | [diff] [blame] | 1130 | HDA_OUTPUT, vmaster_tlv); |
Takashi Iwai | 7c7767e | 2009-01-20 15:28:38 +0100 | [diff] [blame] | 1131 | /* correct volume offset */ |
| 1132 | vmaster_tlv[2] += vmaster_tlv[3] * spec->volume_offset; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1133 | err = snd_hda_add_vmaster(codec, "Master Playback Volume", |
Takashi Iwai | 1c82ed1 | 2008-02-18 13:05:50 +0100 | [diff] [blame] | 1134 | vmaster_tlv, slave_vols); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1135 | if (err < 0) |
| 1136 | return err; |
| 1137 | } |
| 1138 | if (!snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) { |
| 1139 | err = snd_hda_add_vmaster(codec, "Master Playback Switch", |
| 1140 | NULL, slave_sws); |
| 1141 | if (err < 0) |
| 1142 | return err; |
| 1143 | } |
| 1144 | |
Takashi Iwai | d78d7a9 | 2009-03-02 14:26:25 +0100 | [diff] [blame] | 1145 | if (spec->aloopback_ctl && |
| 1146 | snd_hda_get_bool_hint(codec, "loopback") == 1) { |
| 1147 | err = snd_hda_add_new_ctls(codec, spec->aloopback_ctl); |
| 1148 | if (err < 0) |
| 1149 | return err; |
| 1150 | } |
| 1151 | |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1152 | stac92xx_free_kctls(codec); /* no longer needed */ |
Takashi Iwai | e4973e1 | 2008-11-18 09:32:42 +0100 | [diff] [blame] | 1153 | |
| 1154 | /* create jack input elements */ |
| 1155 | if (spec->hp_detect) { |
| 1156 | for (i = 0; i < cfg->hp_outs; i++) { |
| 1157 | int type = SND_JACK_HEADPHONE; |
| 1158 | nid = cfg->hp_pins[i]; |
| 1159 | /* jack detection */ |
| 1160 | if (cfg->hp_outs == i) |
| 1161 | type |= SND_JACK_LINEOUT; |
| 1162 | err = stac92xx_add_jack(codec, nid, type); |
| 1163 | if (err < 0) |
| 1164 | return err; |
| 1165 | } |
| 1166 | } |
| 1167 | for (i = 0; i < cfg->line_outs; i++) { |
| 1168 | err = stac92xx_add_jack(codec, cfg->line_out_pins[i], |
| 1169 | SND_JACK_LINEOUT); |
| 1170 | if (err < 0) |
| 1171 | return err; |
| 1172 | } |
| 1173 | for (i = 0; i < AUTO_PIN_LAST; i++) { |
| 1174 | nid = cfg->input_pins[i]; |
| 1175 | if (nid) { |
| 1176 | err = stac92xx_add_jack(codec, nid, |
| 1177 | SND_JACK_MICROPHONE); |
| 1178 | if (err < 0) |
| 1179 | return err; |
| 1180 | } |
| 1181 | } |
| 1182 | |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 1183 | return 0; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1184 | } |
| 1185 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1186 | static unsigned int ref9200_pin_configs[8] = { |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 1187 | 0x01c47010, 0x01447010, 0x0221401f, 0x01114010, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1188 | 0x02a19020, 0x01a19021, 0x90100140, 0x01813122, |
| 1189 | }; |
| 1190 | |
Mauro Carvalho Chehab | 58eec42 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1191 | static unsigned int gateway9200_m4_pin_configs[8] = { |
| 1192 | 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010, |
| 1193 | 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3, |
| 1194 | }; |
| 1195 | static unsigned int gateway9200_m4_2_pin_configs[8] = { |
| 1196 | 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010, |
| 1197 | 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3, |
| 1198 | }; |
| 1199 | |
| 1200 | /* |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1201 | STAC 9200 pin configs for |
| 1202 | 102801A8 |
| 1203 | 102801DE |
| 1204 | 102801E8 |
| 1205 | */ |
| 1206 | static unsigned int dell9200_d21_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1207 | 0x400001f0, 0x400001f1, 0x02214030, 0x01014010, |
| 1208 | 0x02a19020, 0x01a19021, 0x90100140, 0x01813122, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1209 | }; |
| 1210 | |
| 1211 | /* |
| 1212 | STAC 9200 pin configs for |
| 1213 | 102801C0 |
| 1214 | 102801C1 |
| 1215 | */ |
| 1216 | static unsigned int dell9200_d22_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1217 | 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010, |
| 1218 | 0x01813020, 0x02a19021, 0x90100140, 0x400001f2, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1219 | }; |
| 1220 | |
| 1221 | /* |
| 1222 | STAC 9200 pin configs for |
| 1223 | 102801C4 (Dell Dimension E310) |
| 1224 | 102801C5 |
| 1225 | 102801C7 |
| 1226 | 102801D9 |
| 1227 | 102801DA |
| 1228 | 102801E3 |
| 1229 | */ |
| 1230 | static unsigned int dell9200_d23_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1231 | 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010, |
| 1232 | 0x01813020, 0x01a19021, 0x90100140, 0x400001f2, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1233 | }; |
| 1234 | |
| 1235 | |
| 1236 | /* |
| 1237 | STAC 9200-32 pin configs for |
| 1238 | 102801B5 (Dell Inspiron 630m) |
| 1239 | 102801D8 (Dell Inspiron 640m) |
| 1240 | */ |
| 1241 | static unsigned int dell9200_m21_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1242 | 0x40c003fa, 0x03441340, 0x0321121f, 0x90170310, |
| 1243 | 0x408003fb, 0x03a11020, 0x401003fc, 0x403003fd, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1244 | }; |
| 1245 | |
| 1246 | /* |
| 1247 | STAC 9200-32 pin configs for |
| 1248 | 102801C2 (Dell Latitude D620) |
| 1249 | 102801C8 |
| 1250 | 102801CC (Dell Latitude D820) |
| 1251 | 102801D4 |
| 1252 | 102801D6 |
| 1253 | */ |
| 1254 | static unsigned int dell9200_m22_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1255 | 0x40c003fa, 0x0144131f, 0x0321121f, 0x90170310, |
| 1256 | 0x90a70321, 0x03a11020, 0x401003fb, 0x40f000fc, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1257 | }; |
| 1258 | |
| 1259 | /* |
| 1260 | STAC 9200-32 pin configs for |
| 1261 | 102801CE (Dell XPS M1710) |
| 1262 | 102801CF (Dell Precision M90) |
| 1263 | */ |
| 1264 | static unsigned int dell9200_m23_pin_configs[8] = { |
| 1265 | 0x40c003fa, 0x01441340, 0x0421421f, 0x90170310, |
| 1266 | 0x408003fb, 0x04a1102e, 0x90170311, 0x403003fc, |
| 1267 | }; |
| 1268 | |
| 1269 | /* |
| 1270 | STAC 9200-32 pin configs for |
| 1271 | 102801C9 |
| 1272 | 102801CA |
| 1273 | 102801CB (Dell Latitude 120L) |
| 1274 | 102801D3 |
| 1275 | */ |
| 1276 | static unsigned int dell9200_m24_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1277 | 0x40c003fa, 0x404003fb, 0x0321121f, 0x90170310, |
| 1278 | 0x408003fc, 0x03a11020, 0x401003fd, 0x403003fe, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1279 | }; |
| 1280 | |
| 1281 | /* |
| 1282 | STAC 9200-32 pin configs for |
| 1283 | 102801BD (Dell Inspiron E1505n) |
| 1284 | 102801EE |
| 1285 | 102801EF |
| 1286 | */ |
| 1287 | static unsigned int dell9200_m25_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1288 | 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310, |
| 1289 | 0x408003fb, 0x04a11020, 0x401003fc, 0x403003fd, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1290 | }; |
| 1291 | |
| 1292 | /* |
| 1293 | STAC 9200-32 pin configs for |
| 1294 | 102801F5 (Dell Inspiron 1501) |
| 1295 | 102801F6 |
| 1296 | */ |
| 1297 | static unsigned int dell9200_m26_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1298 | 0x40c003fa, 0x404003fb, 0x0421121f, 0x90170310, |
| 1299 | 0x408003fc, 0x04a11020, 0x401003fd, 0x403003fe, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1300 | }; |
| 1301 | |
| 1302 | /* |
| 1303 | STAC 9200-32 |
| 1304 | 102801CD (Dell Inspiron E1705/9400) |
| 1305 | */ |
| 1306 | static unsigned int dell9200_m27_pin_configs[8] = { |
Takashi Iwai | af6c016 | 2007-09-05 23:46:03 +0200 | [diff] [blame] | 1307 | 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310, |
| 1308 | 0x90170310, 0x04a11020, 0x90170310, 0x40f003fc, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1309 | }; |
| 1310 | |
Tobin Davis | bf27778 | 2008-02-03 20:31:47 +0100 | [diff] [blame] | 1311 | static unsigned int oqo9200_pin_configs[8] = { |
| 1312 | 0x40c000f0, 0x404000f1, 0x0221121f, 0x02211210, |
| 1313 | 0x90170111, 0x90a70120, 0x400000f2, 0x400000f3, |
| 1314 | }; |
| 1315 | |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1316 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1317 | static unsigned int *stac9200_brd_tbl[STAC_9200_MODELS] = { |
| 1318 | [STAC_REF] = ref9200_pin_configs, |
Tobin Davis | bf27778 | 2008-02-03 20:31:47 +0100 | [diff] [blame] | 1319 | [STAC_9200_OQO] = oqo9200_pin_configs, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1320 | [STAC_9200_DELL_D21] = dell9200_d21_pin_configs, |
| 1321 | [STAC_9200_DELL_D22] = dell9200_d22_pin_configs, |
| 1322 | [STAC_9200_DELL_D23] = dell9200_d23_pin_configs, |
| 1323 | [STAC_9200_DELL_M21] = dell9200_m21_pin_configs, |
| 1324 | [STAC_9200_DELL_M22] = dell9200_m22_pin_configs, |
| 1325 | [STAC_9200_DELL_M23] = dell9200_m23_pin_configs, |
| 1326 | [STAC_9200_DELL_M24] = dell9200_m24_pin_configs, |
| 1327 | [STAC_9200_DELL_M25] = dell9200_m25_pin_configs, |
| 1328 | [STAC_9200_DELL_M26] = dell9200_m26_pin_configs, |
| 1329 | [STAC_9200_DELL_M27] = dell9200_m27_pin_configs, |
Mauro Carvalho Chehab | 58eec42 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1330 | [STAC_9200_M4] = gateway9200_m4_pin_configs, |
| 1331 | [STAC_9200_M4_2] = gateway9200_m4_2_pin_configs, |
Takashi Iwai | 117f257 | 2008-03-18 09:53:23 +0100 | [diff] [blame] | 1332 | [STAC_9200_PANASONIC] = ref9200_pin_configs, |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1333 | }; |
| 1334 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1335 | static const char *stac9200_models[STAC_9200_MODELS] = { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 1336 | [STAC_AUTO] = "auto", |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1337 | [STAC_REF] = "ref", |
Tobin Davis | bf27778 | 2008-02-03 20:31:47 +0100 | [diff] [blame] | 1338 | [STAC_9200_OQO] = "oqo", |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1339 | [STAC_9200_DELL_D21] = "dell-d21", |
| 1340 | [STAC_9200_DELL_D22] = "dell-d22", |
| 1341 | [STAC_9200_DELL_D23] = "dell-d23", |
| 1342 | [STAC_9200_DELL_M21] = "dell-m21", |
| 1343 | [STAC_9200_DELL_M22] = "dell-m22", |
| 1344 | [STAC_9200_DELL_M23] = "dell-m23", |
| 1345 | [STAC_9200_DELL_M24] = "dell-m24", |
| 1346 | [STAC_9200_DELL_M25] = "dell-m25", |
| 1347 | [STAC_9200_DELL_M26] = "dell-m26", |
| 1348 | [STAC_9200_DELL_M27] = "dell-m27", |
Mauro Carvalho Chehab | 58eec42 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1349 | [STAC_9200_M4] = "gateway-m4", |
| 1350 | [STAC_9200_M4_2] = "gateway-m4-2", |
Takashi Iwai | 117f257 | 2008-03-18 09:53:23 +0100 | [diff] [blame] | 1351 | [STAC_9200_PANASONIC] = "panasonic", |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1352 | }; |
| 1353 | |
| 1354 | static struct snd_pci_quirk stac9200_cfg_tbl[] = { |
| 1355 | /* SigmaTel reference board */ |
| 1356 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, |
| 1357 | "DFI LanParty", STAC_REF), |
Matthew Ranostay | 577aa2c | 2009-01-22 22:55:44 -0500 | [diff] [blame] | 1358 | SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, |
| 1359 | "DFI LanParty", STAC_REF), |
Matt Porter | e737707 | 2006-11-06 11:20:38 +0100 | [diff] [blame] | 1360 | /* Dell laptops have BIOS problem */ |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1361 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8, |
| 1362 | "unknown Dell", STAC_9200_DELL_D21), |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1363 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1364 | "Dell Inspiron 630m", STAC_9200_DELL_M21), |
| 1365 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd, |
| 1366 | "Dell Inspiron E1505n", STAC_9200_DELL_M25), |
| 1367 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0, |
| 1368 | "unknown Dell", STAC_9200_DELL_D22), |
| 1369 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1, |
| 1370 | "unknown Dell", STAC_9200_DELL_D22), |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1371 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1372 | "Dell Latitude D620", STAC_9200_DELL_M22), |
| 1373 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5, |
| 1374 | "unknown Dell", STAC_9200_DELL_D23), |
| 1375 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7, |
| 1376 | "unknown Dell", STAC_9200_DELL_D23), |
| 1377 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8, |
| 1378 | "unknown Dell", STAC_9200_DELL_M22), |
| 1379 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9, |
| 1380 | "unknown Dell", STAC_9200_DELL_M24), |
| 1381 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca, |
| 1382 | "unknown Dell", STAC_9200_DELL_M24), |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1383 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1384 | "Dell Latitude 120L", STAC_9200_DELL_M24), |
Cory T. Tusar | 877b866 | 2007-01-30 17:30:55 +0100 | [diff] [blame] | 1385 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1386 | "Dell Latitude D820", STAC_9200_DELL_M22), |
Mikael Nilsson | 46f02ca | 2007-02-13 12:46:16 +0100 | [diff] [blame] | 1387 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1388 | "Dell Inspiron E1705/9400", STAC_9200_DELL_M27), |
Mikael Nilsson | 46f02ca | 2007-02-13 12:46:16 +0100 | [diff] [blame] | 1389 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1390 | "Dell XPS M1710", STAC_9200_DELL_M23), |
Takashi Iwai | f0f9674 | 2007-02-14 00:59:17 +0100 | [diff] [blame] | 1391 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1392 | "Dell Precision M90", STAC_9200_DELL_M23), |
| 1393 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3, |
| 1394 | "unknown Dell", STAC_9200_DELL_M22), |
| 1395 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4, |
| 1396 | "unknown Dell", STAC_9200_DELL_M22), |
Daniel T Chen | 8286c53 | 2007-05-15 11:46:23 +0200 | [diff] [blame] | 1397 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1398 | "unknown Dell", STAC_9200_DELL_M22), |
Tobin Davis | 49c605d | 2007-05-17 09:38:24 +0200 | [diff] [blame] | 1399 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1400 | "Dell Inspiron 640m", STAC_9200_DELL_M21), |
| 1401 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9, |
| 1402 | "unknown Dell", STAC_9200_DELL_D23), |
| 1403 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da, |
| 1404 | "unknown Dell", STAC_9200_DELL_D23), |
| 1405 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de, |
| 1406 | "unknown Dell", STAC_9200_DELL_D21), |
| 1407 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3, |
| 1408 | "unknown Dell", STAC_9200_DELL_D23), |
| 1409 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8, |
| 1410 | "unknown Dell", STAC_9200_DELL_D21), |
| 1411 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee, |
| 1412 | "unknown Dell", STAC_9200_DELL_M25), |
| 1413 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef, |
| 1414 | "unknown Dell", STAC_9200_DELL_M25), |
Tobin Davis | 49c605d | 2007-05-17 09:38:24 +0200 | [diff] [blame] | 1415 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1416 | "Dell Inspiron 1501", STAC_9200_DELL_M26), |
| 1417 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6, |
| 1418 | "unknown Dell", STAC_9200_DELL_M26), |
Tobin Davis | 49c605d | 2007-05-17 09:38:24 +0200 | [diff] [blame] | 1419 | /* Panasonic */ |
Takashi Iwai | 117f257 | 2008-03-18 09:53:23 +0100 | [diff] [blame] | 1420 | SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC), |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 1421 | /* Gateway machines needs EAPD to be set on resume */ |
Mauro Carvalho Chehab | 58eec42 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1422 | SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4), |
| 1423 | SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2), |
| 1424 | SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2), |
Tobin Davis | bf27778 | 2008-02-03 20:31:47 +0100 | [diff] [blame] | 1425 | /* OQO Mobile */ |
| 1426 | SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO), |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1427 | {} /* terminator */ |
| 1428 | }; |
| 1429 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1430 | static unsigned int ref925x_pin_configs[8] = { |
| 1431 | 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021, |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 1432 | 0x90a70320, 0x02214210, 0x01019020, 0x9033032e, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1433 | }; |
| 1434 | |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1435 | static unsigned int stac925xM1_pin_configs[8] = { |
| 1436 | 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020, |
| 1437 | 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1438 | }; |
| 1439 | |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1440 | static unsigned int stac925xM1_2_pin_configs[8] = { |
| 1441 | 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020, |
| 1442 | 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e, |
| 1443 | }; |
Mauro Carvalho Chehab | 58eec42 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1444 | |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1445 | static unsigned int stac925xM2_pin_configs[8] = { |
| 1446 | 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020, |
| 1447 | 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e, |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 1448 | }; |
| 1449 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1450 | static unsigned int stac925xM2_2_pin_configs[8] = { |
Mauro Carvalho Chehab | 58eec42 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1451 | 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020, |
| 1452 | 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e, |
| 1453 | }; |
| 1454 | |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1455 | static unsigned int stac925xM3_pin_configs[8] = { |
| 1456 | 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020, |
| 1457 | 0x40a000f0, 0x90100210, 0x400003f1, 0x503303f3, |
| 1458 | }; |
Mauro Carvalho Chehab | 58eec42 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1459 | |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1460 | static unsigned int stac925xM5_pin_configs[8] = { |
| 1461 | 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020, |
| 1462 | 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e, |
| 1463 | }; |
| 1464 | |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1465 | static unsigned int stac925xM6_pin_configs[8] = { |
| 1466 | 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020, |
| 1467 | 0x40a000f0, 0x90100210, 0x400003f1, 0x90330320, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1468 | }; |
| 1469 | |
| 1470 | static unsigned int *stac925x_brd_tbl[STAC_925x_MODELS] = { |
| 1471 | [STAC_REF] = ref925x_pin_configs, |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1472 | [STAC_M1] = stac925xM1_pin_configs, |
| 1473 | [STAC_M1_2] = stac925xM1_2_pin_configs, |
| 1474 | [STAC_M2] = stac925xM2_pin_configs, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1475 | [STAC_M2_2] = stac925xM2_2_pin_configs, |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1476 | [STAC_M3] = stac925xM3_pin_configs, |
| 1477 | [STAC_M5] = stac925xM5_pin_configs, |
| 1478 | [STAC_M6] = stac925xM6_pin_configs, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1479 | }; |
| 1480 | |
| 1481 | static const char *stac925x_models[STAC_925x_MODELS] = { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 1482 | [STAC_925x_AUTO] = "auto", |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1483 | [STAC_REF] = "ref", |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1484 | [STAC_M1] = "m1", |
| 1485 | [STAC_M1_2] = "m1-2", |
| 1486 | [STAC_M2] = "m2", |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1487 | [STAC_M2_2] = "m2-2", |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1488 | [STAC_M3] = "m3", |
| 1489 | [STAC_M5] = "m5", |
| 1490 | [STAC_M6] = "m6", |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1491 | }; |
| 1492 | |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1493 | static struct snd_pci_quirk stac925x_codec_id_cfg_tbl[] = { |
Mauro Carvalho Chehab | 58eec42 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1494 | SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2), |
| 1495 | SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5), |
| 1496 | SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1), |
| 1497 | SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2), |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1498 | SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2), |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1499 | /* Not sure about the brand name for those */ |
| 1500 | SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1), |
| 1501 | SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3), |
| 1502 | SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6), |
| 1503 | SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2), |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1504 | {} /* terminator */ |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1505 | }; |
| 1506 | |
| 1507 | static struct snd_pci_quirk stac925x_cfg_tbl[] = { |
| 1508 | /* SigmaTel reference board */ |
| 1509 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF), |
Matthew Ranostay | 577aa2c | 2009-01-22 22:55:44 -0500 | [diff] [blame] | 1510 | SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, "DFI LanParty", STAC_REF), |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 1511 | SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF), |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 1512 | |
| 1513 | /* Default table for unknown ID */ |
| 1514 | SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2), |
| 1515 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 1516 | {} /* terminator */ |
| 1517 | }; |
| 1518 | |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1519 | static unsigned int ref92hd73xx_pin_configs[13] = { |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 1520 | 0x02214030, 0x02a19040, 0x01a19020, 0x02214030, |
| 1521 | 0x0181302e, 0x01014010, 0x01014020, 0x01014030, |
| 1522 | 0x02319040, 0x90a000f0, 0x90a000f0, 0x01452050, |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1523 | 0x01452050, |
| 1524 | }; |
| 1525 | |
| 1526 | static unsigned int dell_m6_pin_configs[13] = { |
| 1527 | 0x0321101f, 0x4f00000f, 0x4f0000f0, 0x90170110, |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 1528 | 0x03a11020, 0x0321101f, 0x4f0000f0, 0x4f0000f0, |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1529 | 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0, |
| 1530 | 0x4f0000f0, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 1531 | }; |
| 1532 | |
Takashi Iwai | 842ae63 | 2009-09-02 07:43:08 +0200 | [diff] [blame] | 1533 | static unsigned int alienware_m17x_pin_configs[13] = { |
| 1534 | 0x0321101f, 0x0321101f, 0x03a11020, 0x03014020, |
| 1535 | 0x90170110, 0x4f0000f0, 0x4f0000f0, 0x4f0000f0, |
| 1536 | 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0, |
| 1537 | 0x904601b0, |
| 1538 | }; |
| 1539 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 1540 | static unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = { |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1541 | [STAC_92HD73XX_REF] = ref92hd73xx_pin_configs, |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 1542 | [STAC_DELL_M6_AMIC] = dell_m6_pin_configs, |
| 1543 | [STAC_DELL_M6_DMIC] = dell_m6_pin_configs, |
| 1544 | [STAC_DELL_M6_BOTH] = dell_m6_pin_configs, |
Matthew Ranostay | 6b3ab21 | 2008-11-03 08:12:43 -0500 | [diff] [blame] | 1545 | [STAC_DELL_EQ] = dell_m6_pin_configs, |
Takashi Iwai | 842ae63 | 2009-09-02 07:43:08 +0200 | [diff] [blame] | 1546 | [STAC_ALIENWARE_M17X] = alienware_m17x_pin_configs, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 1547 | }; |
| 1548 | |
| 1549 | static const char *stac92hd73xx_models[STAC_92HD73XX_MODELS] = { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 1550 | [STAC_92HD73XX_AUTO] = "auto", |
Takashi Iwai | 9e43f0d | 2008-12-17 14:51:01 +0100 | [diff] [blame] | 1551 | [STAC_92HD73XX_NO_JD] = "no-jd", |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 1552 | [STAC_92HD73XX_REF] = "ref", |
Wu Fengguang | ae70944 | 2009-08-19 17:05:11 +0800 | [diff] [blame] | 1553 | [STAC_92HD73XX_INTEL] = "intel", |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 1554 | [STAC_DELL_M6_AMIC] = "dell-m6-amic", |
| 1555 | [STAC_DELL_M6_DMIC] = "dell-m6-dmic", |
| 1556 | [STAC_DELL_M6_BOTH] = "dell-m6", |
Matthew Ranostay | 6b3ab21 | 2008-11-03 08:12:43 -0500 | [diff] [blame] | 1557 | [STAC_DELL_EQ] = "dell-eq", |
Takashi Iwai | 842ae63 | 2009-09-02 07:43:08 +0200 | [diff] [blame] | 1558 | [STAC_ALIENWARE_M17X] = "alienware", |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 1559 | }; |
| 1560 | |
| 1561 | static struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = { |
| 1562 | /* SigmaTel reference board */ |
| 1563 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1564 | "DFI LanParty", STAC_92HD73XX_REF), |
Matthew Ranostay | 577aa2c | 2009-01-22 22:55:44 -0500 | [diff] [blame] | 1565 | SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, |
| 1566 | "DFI LanParty", STAC_92HD73XX_REF), |
Wu Fengguang | ae70944 | 2009-08-19 17:05:11 +0800 | [diff] [blame] | 1567 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5002, |
| 1568 | "Intel DG45ID", STAC_92HD73XX_INTEL), |
| 1569 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5003, |
| 1570 | "Intel DG45FC", STAC_92HD73XX_INTEL), |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1571 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254, |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 1572 | "Dell Studio 1535", STAC_DELL_M6_DMIC), |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1573 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255, |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 1574 | "unknown Dell", STAC_DELL_M6_DMIC), |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1575 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256, |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 1576 | "unknown Dell", STAC_DELL_M6_BOTH), |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1577 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257, |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 1578 | "unknown Dell", STAC_DELL_M6_BOTH), |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1579 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e, |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 1580 | "unknown Dell", STAC_DELL_M6_AMIC), |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1581 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f, |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 1582 | "unknown Dell", STAC_DELL_M6_AMIC), |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1583 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271, |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 1584 | "unknown Dell", STAC_DELL_M6_DMIC), |
| 1585 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0272, |
| 1586 | "unknown Dell", STAC_DELL_M6_DMIC), |
Takashi Iwai | b0fc5e0 | 2008-11-21 08:37:03 +0100 | [diff] [blame] | 1587 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x029f, |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 1588 | "Dell Studio 1537", STAC_DELL_M6_DMIC), |
Joerg Schirottke | fa620e9 | 2008-12-19 08:13:49 +0100 | [diff] [blame] | 1589 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a0, |
| 1590 | "Dell Studio 17", STAC_DELL_M6_DMIC), |
Takashi Iwai | 626f5ce | 2009-07-28 00:54:39 +0200 | [diff] [blame] | 1591 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02be, |
| 1592 | "Dell Studio 1555", STAC_DELL_M6_DMIC), |
Daniel J Blueman | 8ef5837 | 2009-11-14 18:20:04 +0000 | [diff] [blame] | 1593 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02bd, |
| 1594 | "Dell Studio 1557", STAC_DELL_M6_DMIC), |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 1595 | {} /* terminator */ |
| 1596 | }; |
| 1597 | |
Takashi Iwai | 842ae63 | 2009-09-02 07:43:08 +0200 | [diff] [blame] | 1598 | static struct snd_pci_quirk stac92hd73xx_codec_id_cfg_tbl[] = { |
| 1599 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a1, |
| 1600 | "Alienware M17x", STAC_ALIENWARE_M17X), |
| 1601 | {} /* terminator */ |
| 1602 | }; |
| 1603 | |
Matthew Ranostay | 8bb0ac5 | 2009-02-12 16:50:01 -0500 | [diff] [blame] | 1604 | static unsigned int ref92hd83xxx_pin_configs[10] = { |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 1605 | 0x02214030, 0x02211010, 0x02a19020, 0x02170130, |
| 1606 | 0x01014050, 0x01819040, 0x01014020, 0x90a3014e, |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 1607 | 0x01451160, 0x98560170, |
| 1608 | }; |
| 1609 | |
Matthew Ranostay | 8bb0ac5 | 2009-02-12 16:50:01 -0500 | [diff] [blame] | 1610 | static unsigned int dell_s14_pin_configs[10] = { |
Takashi Iwai | 69b5655 | 2009-09-15 12:37:42 +0200 | [diff] [blame] | 1611 | 0x0221403f, 0x0221101f, 0x02a19020, 0x90170110, |
| 1612 | 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a60160, |
Matthew Ranostay | 8bb0ac5 | 2009-02-12 16:50:01 -0500 | [diff] [blame] | 1613 | 0x40f000f0, 0x40f000f0, |
| 1614 | }; |
| 1615 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 1616 | static unsigned int *stac92hd83xxx_brd_tbl[STAC_92HD83XXX_MODELS] = { |
| 1617 | [STAC_92HD83XXX_REF] = ref92hd83xxx_pin_configs, |
Matthew Ranostay | 32ed3f4 | 2009-01-22 20:53:29 -0500 | [diff] [blame] | 1618 | [STAC_92HD83XXX_PWR_REF] = ref92hd83xxx_pin_configs, |
Matthew Ranostay | 8bb0ac5 | 2009-02-12 16:50:01 -0500 | [diff] [blame] | 1619 | [STAC_DELL_S14] = dell_s14_pin_configs, |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 1620 | }; |
| 1621 | |
| 1622 | static const char *stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 1623 | [STAC_92HD83XXX_AUTO] = "auto", |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 1624 | [STAC_92HD83XXX_REF] = "ref", |
Matthew Ranostay | 32ed3f4 | 2009-01-22 20:53:29 -0500 | [diff] [blame] | 1625 | [STAC_92HD83XXX_PWR_REF] = "mic-ref", |
Matthew Ranostay | 8bb0ac5 | 2009-02-12 16:50:01 -0500 | [diff] [blame] | 1626 | [STAC_DELL_S14] = "dell-s14", |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 1627 | }; |
| 1628 | |
| 1629 | static struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = { |
| 1630 | /* SigmaTel reference board */ |
| 1631 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, |
Takashi Iwai | f9d088b | 2009-01-13 11:54:49 +0100 | [diff] [blame] | 1632 | "DFI LanParty", STAC_92HD83XXX_REF), |
Matthew Ranostay | 577aa2c | 2009-01-22 22:55:44 -0500 | [diff] [blame] | 1633 | SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, |
| 1634 | "DFI LanParty", STAC_92HD83XXX_REF), |
Matthew Ranostay | 8bb0ac5 | 2009-02-12 16:50:01 -0500 | [diff] [blame] | 1635 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ba, |
| 1636 | "unknown Dell", STAC_DELL_S14), |
Herton Ronaldo Krzesinski | 574f3c4 | 2008-12-23 16:53:00 -0200 | [diff] [blame] | 1637 | {} /* terminator */ |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 1638 | }; |
| 1639 | |
Herton Ronaldo Krzesinski | 616f89e | 2009-02-04 11:23:19 -0500 | [diff] [blame] | 1640 | static unsigned int ref92hd71bxx_pin_configs[STAC92HD71BXX_NUM_PINS] = { |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 1641 | 0x02214030, 0x02a19040, 0x01a19020, 0x01014010, |
Matthew Ranostay | 4b33c76 | 2008-10-10 09:07:23 -0400 | [diff] [blame] | 1642 | 0x0181302e, 0x01014010, 0x01019020, 0x90a000f0, |
Herton Ronaldo Krzesinski | 616f89e | 2009-02-04 11:23:19 -0500 | [diff] [blame] | 1643 | 0x90a000f0, 0x01452050, 0x01452050, 0x00000000, |
| 1644 | 0x00000000 |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 1645 | }; |
| 1646 | |
Herton Ronaldo Krzesinski | 616f89e | 2009-02-04 11:23:19 -0500 | [diff] [blame] | 1647 | static unsigned int dell_m4_1_pin_configs[STAC92HD71BXX_NUM_PINS] = { |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1648 | 0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110, |
Matthew Ranostay | 07bcb31 | 2008-03-20 12:10:57 +0100 | [diff] [blame] | 1649 | 0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0, |
Herton Ronaldo Krzesinski | 616f89e | 2009-02-04 11:23:19 -0500 | [diff] [blame] | 1650 | 0x40f000f0, 0x4f0000f0, 0x4f0000f0, 0x00000000, |
| 1651 | 0x00000000 |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1652 | }; |
| 1653 | |
Herton Ronaldo Krzesinski | 616f89e | 2009-02-04 11:23:19 -0500 | [diff] [blame] | 1654 | static unsigned int dell_m4_2_pin_configs[STAC92HD71BXX_NUM_PINS] = { |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1655 | 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110, |
| 1656 | 0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0, |
Herton Ronaldo Krzesinski | 616f89e | 2009-02-04 11:23:19 -0500 | [diff] [blame] | 1657 | 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000, |
| 1658 | 0x00000000 |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1659 | }; |
| 1660 | |
Herton Ronaldo Krzesinski | 616f89e | 2009-02-04 11:23:19 -0500 | [diff] [blame] | 1661 | static unsigned int dell_m4_3_pin_configs[STAC92HD71BXX_NUM_PINS] = { |
Matthew Ranostay | 3a7abfd | 2008-11-20 21:21:43 -0500 | [diff] [blame] | 1662 | 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110, |
| 1663 | 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a000f0, |
Herton Ronaldo Krzesinski | 616f89e | 2009-02-04 11:23:19 -0500 | [diff] [blame] | 1664 | 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000, |
| 1665 | 0x00000000 |
Matthew Ranostay | 3a7abfd | 2008-11-20 21:21:43 -0500 | [diff] [blame] | 1666 | }; |
| 1667 | |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 1668 | static unsigned int *stac92hd71bxx_brd_tbl[STAC_92HD71BXX_MODELS] = { |
| 1669 | [STAC_92HD71BXX_REF] = ref92hd71bxx_pin_configs, |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1670 | [STAC_DELL_M4_1] = dell_m4_1_pin_configs, |
| 1671 | [STAC_DELL_M4_2] = dell_m4_2_pin_configs, |
Matthew Ranostay | 3a7abfd | 2008-11-20 21:21:43 -0500 | [diff] [blame] | 1672 | [STAC_DELL_M4_3] = dell_m4_3_pin_configs, |
Matthew Ranostay | 6a14f58 | 2008-09-12 12:02:30 -0400 | [diff] [blame] | 1673 | [STAC_HP_M4] = NULL, |
Takashi Iwai | 1b0652e | 2009-01-14 08:27:35 +0100 | [diff] [blame] | 1674 | [STAC_HP_DV5] = NULL, |
Christoph Plattner | ae6241f | 2009-03-08 23:19:05 +0100 | [diff] [blame] | 1675 | [STAC_HP_HDX] = NULL, |
James Gardiner | 514bf54 | 2009-05-03 04:00:44 -0400 | [diff] [blame] | 1676 | [STAC_HP_DV4_1222NR] = NULL, |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 1677 | }; |
| 1678 | |
| 1679 | static const char *stac92hd71bxx_models[STAC_92HD71BXX_MODELS] = { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 1680 | [STAC_92HD71BXX_AUTO] = "auto", |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 1681 | [STAC_92HD71BXX_REF] = "ref", |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1682 | [STAC_DELL_M4_1] = "dell-m4-1", |
| 1683 | [STAC_DELL_M4_2] = "dell-m4-2", |
Matthew Ranostay | 3a7abfd | 2008-11-20 21:21:43 -0500 | [diff] [blame] | 1684 | [STAC_DELL_M4_3] = "dell-m4-3", |
Matthew Ranostay | 6a14f58 | 2008-09-12 12:02:30 -0400 | [diff] [blame] | 1685 | [STAC_HP_M4] = "hp-m4", |
Takashi Iwai | 1b0652e | 2009-01-14 08:27:35 +0100 | [diff] [blame] | 1686 | [STAC_HP_DV5] = "hp-dv5", |
Christoph Plattner | ae6241f | 2009-03-08 23:19:05 +0100 | [diff] [blame] | 1687 | [STAC_HP_HDX] = "hp-hdx", |
James Gardiner | 514bf54 | 2009-05-03 04:00:44 -0400 | [diff] [blame] | 1688 | [STAC_HP_DV4_1222NR] = "hp-dv4-1222nr", |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 1689 | }; |
| 1690 | |
| 1691 | static struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = { |
| 1692 | /* SigmaTel reference board */ |
| 1693 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, |
| 1694 | "DFI LanParty", STAC_92HD71BXX_REF), |
Matthew Ranostay | 577aa2c | 2009-01-22 22:55:44 -0500 | [diff] [blame] | 1695 | SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, |
| 1696 | "DFI LanParty", STAC_92HD71BXX_REF), |
James Gardiner | 514bf54 | 2009-05-03 04:00:44 -0400 | [diff] [blame] | 1697 | SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30fb, |
| 1698 | "HP dv4-1222nr", STAC_HP_DV4_1222NR), |
Vitaliy Kulikov | 5bdaaad | 2009-11-04 07:57:45 +0100 | [diff] [blame] | 1699 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x1720, |
| 1700 | "HP", STAC_HP_DV5), |
Takashi Iwai | 58d8395 | 2009-03-13 17:04:34 +0100 | [diff] [blame] | 1701 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3080, |
| 1702 | "HP", STAC_HP_DV5), |
Takashi Iwai | 2ae466f | 2009-02-16 14:16:36 +0100 | [diff] [blame] | 1703 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x30f0, |
| 1704 | "HP dv4-7", STAC_HP_DV5), |
| 1705 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3600, |
| 1706 | "HP dv4-7", STAC_HP_DV5), |
Takashi Iwai | 6fce61a | 2009-03-10 07:48:57 +0100 | [diff] [blame] | 1707 | SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3610, |
| 1708 | "HP HDX", STAC_HP_HDX), /* HDX18 */ |
Matthew Ranostay | 9a9e235 | 2008-09-26 10:37:03 -0400 | [diff] [blame] | 1709 | SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a, |
Takashi Iwai | 2ae466f | 2009-02-16 14:16:36 +0100 | [diff] [blame] | 1710 | "HP mini 1000", STAC_HP_M4), |
Christoph Plattner | ae6241f | 2009-03-08 23:19:05 +0100 | [diff] [blame] | 1711 | SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361b, |
Takashi Iwai | 6fce61a | 2009-03-10 07:48:57 +0100 | [diff] [blame] | 1712 | "HP HDX", STAC_HP_HDX), /* HDX16 */ |
Takashi Iwai | 6e34c03 | 2009-09-14 15:42:18 +0200 | [diff] [blame] | 1713 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3620, |
| 1714 | "HP dv6", STAC_HP_DV5), |
Takashi Iwai | 1972d02 | 2009-08-06 08:44:43 +0200 | [diff] [blame] | 1715 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x7010, |
| 1716 | "HP", STAC_HP_DV5), |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 1717 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233, |
| 1718 | "unknown Dell", STAC_DELL_M4_1), |
| 1719 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234, |
| 1720 | "unknown Dell", STAC_DELL_M4_1), |
| 1721 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250, |
| 1722 | "unknown Dell", STAC_DELL_M4_1), |
| 1723 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f, |
| 1724 | "unknown Dell", STAC_DELL_M4_1), |
| 1725 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d, |
| 1726 | "unknown Dell", STAC_DELL_M4_1), |
| 1727 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251, |
| 1728 | "unknown Dell", STAC_DELL_M4_1), |
| 1729 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277, |
| 1730 | "unknown Dell", STAC_DELL_M4_1), |
| 1731 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263, |
| 1732 | "unknown Dell", STAC_DELL_M4_2), |
| 1733 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265, |
| 1734 | "unknown Dell", STAC_DELL_M4_2), |
| 1735 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262, |
| 1736 | "unknown Dell", STAC_DELL_M4_2), |
| 1737 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264, |
| 1738 | "unknown Dell", STAC_DELL_M4_2), |
Matthew Ranostay | 3a7abfd | 2008-11-20 21:21:43 -0500 | [diff] [blame] | 1739 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa, |
| 1740 | "unknown Dell", STAC_DELL_M4_3), |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 1741 | {} /* terminator */ |
| 1742 | }; |
| 1743 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1744 | static unsigned int ref922x_pin_configs[10] = { |
| 1745 | 0x01014010, 0x01016011, 0x01012012, 0x0221401f, |
| 1746 | 0x01813122, 0x01011014, 0x01441030, 0x01c41030, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1747 | 0x40000100, 0x40000100, |
| 1748 | }; |
| 1749 | |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1750 | /* |
| 1751 | STAC 922X pin configs for |
| 1752 | 102801A7 |
| 1753 | 102801AB |
| 1754 | 102801A9 |
| 1755 | 102801D1 |
| 1756 | 102801D2 |
| 1757 | */ |
| 1758 | static unsigned int dell_922x_d81_pin_configs[10] = { |
| 1759 | 0x02214030, 0x01a19021, 0x01111012, 0x01114010, |
| 1760 | 0x02a19020, 0x01117011, 0x400001f0, 0x400001f1, |
| 1761 | 0x01813122, 0x400001f2, |
| 1762 | }; |
| 1763 | |
| 1764 | /* |
| 1765 | STAC 922X pin configs for |
| 1766 | 102801AC |
| 1767 | 102801D0 |
| 1768 | */ |
| 1769 | static unsigned int dell_922x_d82_pin_configs[10] = { |
| 1770 | 0x02214030, 0x01a19021, 0x01111012, 0x01114010, |
| 1771 | 0x02a19020, 0x01117011, 0x01451140, 0x400001f0, |
| 1772 | 0x01813122, 0x400001f1, |
| 1773 | }; |
| 1774 | |
| 1775 | /* |
| 1776 | STAC 922X pin configs for |
| 1777 | 102801BF |
| 1778 | */ |
| 1779 | static unsigned int dell_922x_m81_pin_configs[10] = { |
| 1780 | 0x0321101f, 0x01112024, 0x01111222, 0x91174220, |
| 1781 | 0x03a11050, 0x01116221, 0x90a70330, 0x01452340, |
| 1782 | 0x40C003f1, 0x405003f0, |
| 1783 | }; |
| 1784 | |
| 1785 | /* |
| 1786 | STAC 9221 A1 pin configs for |
| 1787 | 102801D7 (Dell XPS M1210) |
| 1788 | */ |
| 1789 | static unsigned int dell_922x_m82_pin_configs[10] = { |
Jiang Zhe | 7f9310c | 2007-11-12 12:43:37 +0100 | [diff] [blame] | 1790 | 0x02211211, 0x408103ff, 0x02a1123e, 0x90100310, |
| 1791 | 0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1792 | 0x508003f3, 0x405003f4, |
| 1793 | }; |
| 1794 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1795 | static unsigned int d945gtp3_pin_configs[10] = { |
Matt Porter | 869264c | 2006-01-25 19:20:50 +0100 | [diff] [blame] | 1796 | 0x0221401f, 0x01a19022, 0x01813021, 0x01014010, |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1797 | 0x40000100, 0x40000100, 0x40000100, 0x40000100, |
| 1798 | 0x02a19120, 0x40000100, |
| 1799 | }; |
| 1800 | |
| 1801 | static unsigned int d945gtp5_pin_configs[10] = { |
Matt Porter | 869264c | 2006-01-25 19:20:50 +0100 | [diff] [blame] | 1802 | 0x0221401f, 0x01011012, 0x01813024, 0x01014010, |
| 1803 | 0x01a19021, 0x01016011, 0x01452130, 0x40000100, |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1804 | 0x02a19320, 0x40000100, |
| 1805 | }; |
| 1806 | |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 1807 | static unsigned int intel_mac_v1_pin_configs[10] = { |
| 1808 | 0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd, |
| 1809 | 0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240, |
Takashi Iwai | 3fc24d8 | 2007-02-16 13:27:18 +0100 | [diff] [blame] | 1810 | 0x400000fc, 0x400000fb, |
| 1811 | }; |
| 1812 | |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 1813 | static unsigned int intel_mac_v2_pin_configs[10] = { |
| 1814 | 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd, |
| 1815 | 0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa, |
Sylvain FORET | f16928f | 2007-04-27 14:22:36 +0200 | [diff] [blame] | 1816 | 0x400000fc, 0x400000fb, |
| 1817 | }; |
| 1818 | |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 1819 | static unsigned int intel_mac_v3_pin_configs[10] = { |
| 1820 | 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd, |
| 1821 | 0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240, |
| 1822 | 0x400000fc, 0x400000fb, |
| 1823 | }; |
| 1824 | |
| 1825 | static unsigned int intel_mac_v4_pin_configs[10] = { |
| 1826 | 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f, |
| 1827 | 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240, |
| 1828 | 0x400000fc, 0x400000fb, |
| 1829 | }; |
| 1830 | |
| 1831 | static unsigned int intel_mac_v5_pin_configs[10] = { |
| 1832 | 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f, |
| 1833 | 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240, |
| 1834 | 0x400000fc, 0x400000fb, |
Takashi Iwai | 0dae0f8 | 2007-05-21 12:41:29 +0200 | [diff] [blame] | 1835 | }; |
| 1836 | |
Mauro Carvalho Chehab | 8c65008 | 2008-08-04 10:39:59 -0300 | [diff] [blame] | 1837 | static unsigned int ecs202_pin_configs[10] = { |
| 1838 | 0x0221401f, 0x02a19020, 0x01a19020, 0x01114010, |
| 1839 | 0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1, |
| 1840 | 0x9037012e, 0x40e000f2, |
| 1841 | }; |
Takashi Iwai | 76c0882 | 2007-06-19 12:17:42 +0200 | [diff] [blame] | 1842 | |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 1843 | static unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = { |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1844 | [STAC_D945_REF] = ref922x_pin_configs, |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 1845 | [STAC_D945GTP3] = d945gtp3_pin_configs, |
| 1846 | [STAC_D945GTP5] = d945gtp5_pin_configs, |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 1847 | [STAC_INTEL_MAC_V1] = intel_mac_v1_pin_configs, |
| 1848 | [STAC_INTEL_MAC_V2] = intel_mac_v2_pin_configs, |
| 1849 | [STAC_INTEL_MAC_V3] = intel_mac_v3_pin_configs, |
| 1850 | [STAC_INTEL_MAC_V4] = intel_mac_v4_pin_configs, |
| 1851 | [STAC_INTEL_MAC_V5] = intel_mac_v5_pin_configs, |
Nicolas Boichat | 536319a | 2008-07-21 22:18:01 +0800 | [diff] [blame] | 1852 | [STAC_INTEL_MAC_AUTO] = intel_mac_v3_pin_configs, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1853 | /* for backward compatibility */ |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 1854 | [STAC_MACMINI] = intel_mac_v3_pin_configs, |
| 1855 | [STAC_MACBOOK] = intel_mac_v5_pin_configs, |
| 1856 | [STAC_MACBOOK_PRO_V1] = intel_mac_v3_pin_configs, |
| 1857 | [STAC_MACBOOK_PRO_V2] = intel_mac_v3_pin_configs, |
| 1858 | [STAC_IMAC_INTEL] = intel_mac_v2_pin_configs, |
| 1859 | [STAC_IMAC_INTEL_20] = intel_mac_v3_pin_configs, |
Mauro Carvalho Chehab | 8c65008 | 2008-08-04 10:39:59 -0300 | [diff] [blame] | 1860 | [STAC_ECS_202] = ecs202_pin_configs, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1861 | [STAC_922X_DELL_D81] = dell_922x_d81_pin_configs, |
| 1862 | [STAC_922X_DELL_D82] = dell_922x_d82_pin_configs, |
| 1863 | [STAC_922X_DELL_M81] = dell_922x_m81_pin_configs, |
| 1864 | [STAC_922X_DELL_M82] = dell_922x_m82_pin_configs, |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1865 | }; |
| 1866 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1867 | static const char *stac922x_models[STAC_922X_MODELS] = { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 1868 | [STAC_922X_AUTO] = "auto", |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1869 | [STAC_D945_REF] = "ref", |
| 1870 | [STAC_D945GTP5] = "5stack", |
| 1871 | [STAC_D945GTP3] = "3stack", |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 1872 | [STAC_INTEL_MAC_V1] = "intel-mac-v1", |
| 1873 | [STAC_INTEL_MAC_V2] = "intel-mac-v2", |
| 1874 | [STAC_INTEL_MAC_V3] = "intel-mac-v3", |
| 1875 | [STAC_INTEL_MAC_V4] = "intel-mac-v4", |
| 1876 | [STAC_INTEL_MAC_V5] = "intel-mac-v5", |
Nicolas Boichat | 536319a | 2008-07-21 22:18:01 +0800 | [diff] [blame] | 1877 | [STAC_INTEL_MAC_AUTO] = "intel-mac-auto", |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1878 | /* for backward compatibility */ |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1879 | [STAC_MACMINI] = "macmini", |
Takashi Iwai | 3fc24d8 | 2007-02-16 13:27:18 +0100 | [diff] [blame] | 1880 | [STAC_MACBOOK] = "macbook", |
Nicolas Boichat | 6f0778d | 2007-03-15 12:38:15 +0100 | [diff] [blame] | 1881 | [STAC_MACBOOK_PRO_V1] = "macbook-pro-v1", |
| 1882 | [STAC_MACBOOK_PRO_V2] = "macbook-pro", |
Sylvain FORET | f16928f | 2007-04-27 14:22:36 +0200 | [diff] [blame] | 1883 | [STAC_IMAC_INTEL] = "imac-intel", |
Takashi Iwai | 0dae0f8 | 2007-05-21 12:41:29 +0200 | [diff] [blame] | 1884 | [STAC_IMAC_INTEL_20] = "imac-intel-20", |
Mauro Carvalho Chehab | 8c65008 | 2008-08-04 10:39:59 -0300 | [diff] [blame] | 1885 | [STAC_ECS_202] = "ecs202", |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1886 | [STAC_922X_DELL_D81] = "dell-d81", |
| 1887 | [STAC_922X_DELL_D82] = "dell-d82", |
| 1888 | [STAC_922X_DELL_M81] = "dell-m81", |
| 1889 | [STAC_922X_DELL_M82] = "dell-m82", |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1890 | }; |
| 1891 | |
| 1892 | static struct snd_pci_quirk stac922x_cfg_tbl[] = { |
| 1893 | /* SigmaTel reference board */ |
| 1894 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, |
| 1895 | "DFI LanParty", STAC_D945_REF), |
Matthew Ranostay | 577aa2c | 2009-01-22 22:55:44 -0500 | [diff] [blame] | 1896 | SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, |
| 1897 | "DFI LanParty", STAC_D945_REF), |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1898 | /* Intel 945G based systems */ |
| 1899 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101, |
| 1900 | "Intel D945G", STAC_D945GTP3), |
| 1901 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202, |
| 1902 | "Intel D945G", STAC_D945GTP3), |
| 1903 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606, |
| 1904 | "Intel D945G", STAC_D945GTP3), |
| 1905 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601, |
| 1906 | "Intel D945G", STAC_D945GTP3), |
| 1907 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111, |
| 1908 | "Intel D945G", STAC_D945GTP3), |
| 1909 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115, |
| 1910 | "Intel D945G", STAC_D945GTP3), |
| 1911 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116, |
| 1912 | "Intel D945G", STAC_D945GTP3), |
| 1913 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117, |
| 1914 | "Intel D945G", STAC_D945GTP3), |
| 1915 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118, |
| 1916 | "Intel D945G", STAC_D945GTP3), |
| 1917 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119, |
| 1918 | "Intel D945G", STAC_D945GTP3), |
| 1919 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826, |
| 1920 | "Intel D945G", STAC_D945GTP3), |
| 1921 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049, |
| 1922 | "Intel D945G", STAC_D945GTP3), |
| 1923 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055, |
| 1924 | "Intel D945G", STAC_D945GTP3), |
| 1925 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048, |
| 1926 | "Intel D945G", STAC_D945GTP3), |
| 1927 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110, |
| 1928 | "Intel D945G", STAC_D945GTP3), |
| 1929 | /* Intel D945G 5-stack systems */ |
| 1930 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404, |
| 1931 | "Intel D945G", STAC_D945GTP5), |
| 1932 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303, |
| 1933 | "Intel D945G", STAC_D945GTP5), |
| 1934 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013, |
| 1935 | "Intel D945G", STAC_D945GTP5), |
| 1936 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417, |
| 1937 | "Intel D945G", STAC_D945GTP5), |
| 1938 | /* Intel 945P based systems */ |
| 1939 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b, |
| 1940 | "Intel D945P", STAC_D945GTP3), |
| 1941 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112, |
| 1942 | "Intel D945P", STAC_D945GTP3), |
| 1943 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d, |
| 1944 | "Intel D945P", STAC_D945GTP3), |
| 1945 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909, |
| 1946 | "Intel D945P", STAC_D945GTP3), |
| 1947 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505, |
| 1948 | "Intel D945P", STAC_D945GTP3), |
| 1949 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707, |
| 1950 | "Intel D945P", STAC_D945GTP5), |
Takashi Iwai | 8056d47 | 2009-01-23 09:09:43 +0100 | [diff] [blame] | 1951 | /* other intel */ |
| 1952 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0204, |
| 1953 | "Intel D945", STAC_D945_REF), |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1954 | /* other systems */ |
Nicolas Boichat | 536319a | 2008-07-21 22:18:01 +0800 | [diff] [blame] | 1955 | /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */ |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 1956 | SND_PCI_QUIRK(0x8384, 0x7680, |
Nicolas Boichat | 536319a | 2008-07-21 22:18:01 +0800 | [diff] [blame] | 1957 | "Mac", STAC_INTEL_MAC_AUTO), |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 1958 | /* Dell systems */ |
| 1959 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7, |
| 1960 | "unknown Dell", STAC_922X_DELL_D81), |
| 1961 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9, |
| 1962 | "unknown Dell", STAC_922X_DELL_D81), |
| 1963 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab, |
| 1964 | "unknown Dell", STAC_922X_DELL_D81), |
| 1965 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac, |
| 1966 | "unknown Dell", STAC_922X_DELL_D82), |
| 1967 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf, |
| 1968 | "unknown Dell", STAC_922X_DELL_M81), |
| 1969 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0, |
| 1970 | "unknown Dell", STAC_922X_DELL_D82), |
| 1971 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1, |
| 1972 | "unknown Dell", STAC_922X_DELL_D81), |
| 1973 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2, |
| 1974 | "unknown Dell", STAC_922X_DELL_D81), |
| 1975 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7, |
| 1976 | "Dell XPS M1210", STAC_922X_DELL_M82), |
Mauro Carvalho Chehab | 8c65008 | 2008-08-04 10:39:59 -0300 | [diff] [blame] | 1977 | /* ECS/PC Chips boards */ |
Takashi Iwai | dea0a50 | 2009-02-09 17:14:52 +0100 | [diff] [blame] | 1978 | SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000, |
Herton Ronaldo Krzesinski | 8663ae5 | 2009-02-08 19:50:34 -0200 | [diff] [blame] | 1979 | "ECS/PC chips", STAC_ECS_202), |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1980 | {} /* terminator */ |
| 1981 | }; |
| 1982 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 1983 | static unsigned int ref927x_pin_configs[14] = { |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 1984 | 0x02214020, 0x02a19080, 0x0181304e, 0x01014010, |
| 1985 | 0x01a19040, 0x01011012, 0x01016011, 0x0101201f, |
| 1986 | 0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070, |
| 1987 | 0x01c42190, 0x40000100, |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 1988 | }; |
| 1989 | |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 1990 | static unsigned int d965_3st_pin_configs[14] = { |
Tobin Davis | 81d3dbd | 2006-08-22 19:44:45 +0200 | [diff] [blame] | 1991 | 0x0221401f, 0x02a19120, 0x40000100, 0x01014011, |
| 1992 | 0x01a19021, 0x01813024, 0x40000100, 0x40000100, |
| 1993 | 0x40000100, 0x40000100, 0x40000100, 0x40000100, |
| 1994 | 0x40000100, 0x40000100 |
| 1995 | }; |
| 1996 | |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 1997 | static unsigned int d965_5st_pin_configs[14] = { |
| 1998 | 0x02214020, 0x02a19080, 0x0181304e, 0x01014010, |
| 1999 | 0x01a19040, 0x01011012, 0x01016011, 0x40000100, |
| 2000 | 0x40000100, 0x40000100, 0x40000100, 0x01442070, |
| 2001 | 0x40000100, 0x40000100 |
| 2002 | }; |
| 2003 | |
Takashi Iwai | 679d92e | 2009-05-24 19:00:08 +0200 | [diff] [blame] | 2004 | static unsigned int d965_5st_no_fp_pin_configs[14] = { |
| 2005 | 0x40000100, 0x40000100, 0x0181304e, 0x01014010, |
| 2006 | 0x01a19040, 0x01011012, 0x01016011, 0x40000100, |
| 2007 | 0x40000100, 0x40000100, 0x40000100, 0x01442070, |
| 2008 | 0x40000100, 0x40000100 |
| 2009 | }; |
| 2010 | |
Tobin Davis | 4ff076e | 2007-08-07 11:48:12 +0200 | [diff] [blame] | 2011 | static unsigned int dell_3st_pin_configs[14] = { |
| 2012 | 0x02211230, 0x02a11220, 0x01a19040, 0x01114210, |
| 2013 | 0x01111212, 0x01116211, 0x01813050, 0x01112214, |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 2014 | 0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb, |
Tobin Davis | 4ff076e | 2007-08-07 11:48:12 +0200 | [diff] [blame] | 2015 | 0x40c003fc, 0x40000100 |
| 2016 | }; |
| 2017 | |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 2018 | static unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = { |
Takashi Iwai | e28d832 | 2008-12-17 13:48:29 +0100 | [diff] [blame] | 2019 | [STAC_D965_REF_NO_JD] = ref927x_pin_configs, |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 2020 | [STAC_D965_REF] = ref927x_pin_configs, |
| 2021 | [STAC_D965_3ST] = d965_3st_pin_configs, |
| 2022 | [STAC_D965_5ST] = d965_5st_pin_configs, |
Takashi Iwai | 679d92e | 2009-05-24 19:00:08 +0200 | [diff] [blame] | 2023 | [STAC_D965_5ST_NO_FP] = d965_5st_no_fp_pin_configs, |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 2024 | [STAC_DELL_3ST] = dell_3st_pin_configs, |
| 2025 | [STAC_DELL_BIOS] = NULL, |
Takashi Iwai | 5493053 | 2009-10-11 17:38:29 +0200 | [diff] [blame] | 2026 | [STAC_927X_VOLKNOB] = NULL, |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 2027 | }; |
| 2028 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 2029 | static const char *stac927x_models[STAC_927X_MODELS] = { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 2030 | [STAC_927X_AUTO] = "auto", |
Takashi Iwai | e28d832 | 2008-12-17 13:48:29 +0100 | [diff] [blame] | 2031 | [STAC_D965_REF_NO_JD] = "ref-no-jd", |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 2032 | [STAC_D965_REF] = "ref", |
| 2033 | [STAC_D965_3ST] = "3stack", |
| 2034 | [STAC_D965_5ST] = "5stack", |
Takashi Iwai | 679d92e | 2009-05-24 19:00:08 +0200 | [diff] [blame] | 2035 | [STAC_D965_5ST_NO_FP] = "5stack-no-fp", |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 2036 | [STAC_DELL_3ST] = "dell-3stack", |
| 2037 | [STAC_DELL_BIOS] = "dell-bios", |
Takashi Iwai | 5493053 | 2009-10-11 17:38:29 +0200 | [diff] [blame] | 2038 | [STAC_927X_VOLKNOB] = "volknob", |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 2039 | }; |
| 2040 | |
| 2041 | static struct snd_pci_quirk stac927x_cfg_tbl[] = { |
| 2042 | /* SigmaTel reference board */ |
| 2043 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, |
| 2044 | "DFI LanParty", STAC_D965_REF), |
Matthew Ranostay | 577aa2c | 2009-01-22 22:55:44 -0500 | [diff] [blame] | 2045 | SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, |
| 2046 | "DFI LanParty", STAC_D965_REF), |
Tobin Davis | 81d3dbd | 2006-08-22 19:44:45 +0200 | [diff] [blame] | 2047 | /* Intel 946 based systems */ |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 2048 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST), |
| 2049 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST), |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 2050 | /* 965 based 3 stack systems */ |
Takashi Iwai | dea0a50 | 2009-02-09 17:14:52 +0100 | [diff] [blame] | 2051 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2100, |
| 2052 | "Intel D965", STAC_D965_3ST), |
| 2053 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2000, |
| 2054 | "Intel D965", STAC_D965_3ST), |
Tobin Davis | 4ff076e | 2007-08-07 11:48:12 +0200 | [diff] [blame] | 2055 | /* Dell 3 stack systems */ |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 2056 | 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] | 2057 | 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] | 2058 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST), |
| 2059 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST), |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 2060 | /* Dell 3 stack systems with verb table in BIOS */ |
Matthew Ranostay | 2f32d90 | 2008-01-10 13:06:26 +0100 | [diff] [blame] | 2061 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS), |
| 2062 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS), |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 2063 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS), |
Chengu Wang | 84d3dc2 | 2009-07-30 19:43:55 +0800 | [diff] [blame] | 2064 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_BIOS), |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 2065 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS), |
| 2066 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS), |
| 2067 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS), |
| 2068 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS), |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 2069 | /* 965 based 5 stack systems */ |
Takashi Iwai | dea0a50 | 2009-02-09 17:14:52 +0100 | [diff] [blame] | 2070 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2300, |
| 2071 | "Intel D965", STAC_D965_5ST), |
| 2072 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2500, |
| 2073 | "Intel D965", STAC_D965_5ST), |
Takashi Iwai | 5493053 | 2009-10-11 17:38:29 +0200 | [diff] [blame] | 2074 | /* volume-knob fixes */ |
| 2075 | SND_PCI_QUIRK_VENDOR(0x10cf, "FSC", STAC_927X_VOLKNOB), |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 2076 | {} /* terminator */ |
| 2077 | }; |
| 2078 | |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 2079 | static unsigned int ref9205_pin_configs[12] = { |
| 2080 | 0x40000100, 0x40000100, 0x01016011, 0x01014010, |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 2081 | 0x01813122, 0x01a19021, 0x01019020, 0x40000100, |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 2082 | 0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030 |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 2083 | }; |
| 2084 | |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 2085 | /* |
| 2086 | STAC 9205 pin configs for |
| 2087 | 102801F1 |
| 2088 | 102801F2 |
| 2089 | 102801FC |
| 2090 | 102801FD |
| 2091 | 10280204 |
| 2092 | 1028021F |
Matthew Ranostay | 3fa2ef7 | 2008-01-11 11:39:06 +0100 | [diff] [blame] | 2093 | 10280228 (Dell Vostro 1500) |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 2094 | */ |
| 2095 | static unsigned int dell_9205_m42_pin_configs[12] = { |
| 2096 | 0x0321101F, 0x03A11020, 0x400003FA, 0x90170310, |
| 2097 | 0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9, |
| 2098 | 0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE, |
| 2099 | }; |
| 2100 | |
| 2101 | /* |
| 2102 | STAC 9205 pin configs for |
| 2103 | 102801F9 |
| 2104 | 102801FA |
| 2105 | 102801FE |
| 2106 | 102801FF (Dell Precision M4300) |
| 2107 | 10280206 |
| 2108 | 10280200 |
| 2109 | 10280201 |
| 2110 | */ |
| 2111 | static unsigned int dell_9205_m43_pin_configs[12] = { |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 2112 | 0x0321101f, 0x03a11020, 0x90a70330, 0x90170310, |
| 2113 | 0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9, |
| 2114 | 0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8, |
| 2115 | }; |
| 2116 | |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 2117 | static unsigned int dell_9205_m44_pin_configs[12] = { |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 2118 | 0x0421101f, 0x04a11020, 0x400003fa, 0x90170310, |
| 2119 | 0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9, |
| 2120 | 0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe, |
| 2121 | }; |
| 2122 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 2123 | static unsigned int *stac9205_brd_tbl[STAC_9205_MODELS] = { |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 2124 | [STAC_9205_REF] = ref9205_pin_configs, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 2125 | [STAC_9205_DELL_M42] = dell_9205_m42_pin_configs, |
| 2126 | [STAC_9205_DELL_M43] = dell_9205_m43_pin_configs, |
| 2127 | [STAC_9205_DELL_M44] = dell_9205_m44_pin_configs, |
Takashi Iwai | d9a4268 | 2009-01-22 17:40:18 +0100 | [diff] [blame] | 2128 | [STAC_9205_EAPD] = NULL, |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 2129 | }; |
| 2130 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 2131 | static const char *stac9205_models[STAC_9205_MODELS] = { |
Takashi Iwai | 1607b8e | 2009-02-26 16:50:43 +0100 | [diff] [blame] | 2132 | [STAC_9205_AUTO] = "auto", |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 2133 | [STAC_9205_REF] = "ref", |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 2134 | [STAC_9205_DELL_M42] = "dell-m42", |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 2135 | [STAC_9205_DELL_M43] = "dell-m43", |
| 2136 | [STAC_9205_DELL_M44] = "dell-m44", |
Takashi Iwai | d9a4268 | 2009-01-22 17:40:18 +0100 | [diff] [blame] | 2137 | [STAC_9205_EAPD] = "eapd", |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 2138 | }; |
| 2139 | |
| 2140 | static struct snd_pci_quirk stac9205_cfg_tbl[] = { |
| 2141 | /* SigmaTel reference board */ |
| 2142 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, |
| 2143 | "DFI LanParty", STAC_9205_REF), |
Herton Ronaldo Krzesinski | 02358fc | 2009-07-04 01:44:59 -0300 | [diff] [blame] | 2144 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xfb30, |
| 2145 | "SigmaTel", STAC_9205_REF), |
Matthew Ranostay | 577aa2c | 2009-01-22 22:55:44 -0500 | [diff] [blame] | 2146 | SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, |
| 2147 | "DFI LanParty", STAC_9205_REF), |
Takashi Iwai | d9a4268 | 2009-01-22 17:40:18 +0100 | [diff] [blame] | 2148 | /* Dell */ |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 2149 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1, |
| 2150 | "unknown Dell", STAC_9205_DELL_M42), |
| 2151 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2, |
| 2152 | "unknown Dell", STAC_9205_DELL_M42), |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 2153 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8, |
Matthew Ranostay | b44ef2f | 2007-09-18 00:52:38 +0200 | [diff] [blame] | 2154 | "Dell Precision", STAC_9205_DELL_M43), |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 2155 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9, |
| 2156 | "Dell Precision", STAC_9205_DELL_M43), |
| 2157 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa, |
| 2158 | "Dell Precision", STAC_9205_DELL_M43), |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 2159 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc, |
| 2160 | "unknown Dell", STAC_9205_DELL_M42), |
| 2161 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd, |
| 2162 | "unknown Dell", STAC_9205_DELL_M42), |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 2163 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe, |
| 2164 | "Dell Precision", STAC_9205_DELL_M43), |
| 2165 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff, |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 2166 | "Dell Precision M4300", STAC_9205_DELL_M43), |
Takashi Iwai | dfe495d | 2007-08-23 19:04:28 +0200 | [diff] [blame] | 2167 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204, |
| 2168 | "unknown Dell", STAC_9205_DELL_M42), |
Takashi Iwai | 4549915 | 2008-06-12 16:27:24 +0200 | [diff] [blame] | 2169 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206, |
| 2170 | "Dell Precision", STAC_9205_DELL_M43), |
| 2171 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b, |
| 2172 | "Dell Precision", STAC_9205_DELL_M43), |
| 2173 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c, |
| 2174 | "Dell Precision", STAC_9205_DELL_M43), |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 2175 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f, |
| 2176 | "Dell Inspiron", STAC_9205_DELL_M44), |
Matthew Ranostay | 3fa2ef7 | 2008-01-11 11:39:06 +0100 | [diff] [blame] | 2177 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228, |
| 2178 | "Dell Vostro 1500", STAC_9205_DELL_M42), |
Takashi Iwai | d9a4268 | 2009-01-22 17:40:18 +0100 | [diff] [blame] | 2179 | /* Gateway */ |
Hao Song | 42b95f0 | 2009-07-20 15:01:16 +0800 | [diff] [blame] | 2180 | SND_PCI_QUIRK(0x107b, 0x0560, "Gateway T6834c", STAC_9205_EAPD), |
Takashi Iwai | d9a4268 | 2009-01-22 17:40:18 +0100 | [diff] [blame] | 2181 | SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD), |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 2182 | {} /* terminator */ |
| 2183 | }; |
| 2184 | |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 2185 | static void stac92xx_set_config_regs(struct hda_codec *codec, |
| 2186 | unsigned int *pincfgs) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2187 | { |
| 2188 | int i; |
| 2189 | struct sigmatel_spec *spec = codec->spec; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2190 | |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 2191 | if (!pincfgs) |
| 2192 | return; |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 2193 | |
Matthew Ranostay | 87d4836 | 2007-07-17 11:52:24 +0200 | [diff] [blame] | 2194 | for (i = 0; i < spec->num_pins; i++) |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 2195 | if (spec->pin_nids[i] && pincfgs[i]) |
| 2196 | snd_hda_codec_set_pincfg(codec, spec->pin_nids[i], |
| 2197 | pincfgs[i]); |
Takashi Iwai | af9f341a | 2008-11-18 10:38:56 +0100 | [diff] [blame] | 2198 | } |
| 2199 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2200 | /* |
| 2201 | * Analog playback callbacks |
| 2202 | */ |
| 2203 | static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo, |
| 2204 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2205 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2206 | { |
| 2207 | struct sigmatel_spec *spec = codec->spec; |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 2208 | if (spec->stream_delay) |
| 2209 | msleep(spec->stream_delay); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2210 | return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream, |
| 2211 | hinfo); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2212 | } |
| 2213 | |
| 2214 | static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 2215 | struct hda_codec *codec, |
| 2216 | unsigned int stream_tag, |
| 2217 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2218 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2219 | { |
| 2220 | struct sigmatel_spec *spec = codec->spec; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2221 | 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] | 2222 | } |
| 2223 | |
| 2224 | static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo, |
| 2225 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2226 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2227 | { |
| 2228 | struct sigmatel_spec *spec = codec->spec; |
| 2229 | return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout); |
| 2230 | } |
| 2231 | |
| 2232 | /* |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2233 | * Digital playback callbacks |
| 2234 | */ |
| 2235 | static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo, |
| 2236 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2237 | struct snd_pcm_substream *substream) |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2238 | { |
| 2239 | struct sigmatel_spec *spec = codec->spec; |
| 2240 | return snd_hda_multi_out_dig_open(codec, &spec->multiout); |
| 2241 | } |
| 2242 | |
| 2243 | static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo, |
| 2244 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2245 | struct snd_pcm_substream *substream) |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2246 | { |
| 2247 | struct sigmatel_spec *spec = codec->spec; |
| 2248 | return snd_hda_multi_out_dig_close(codec, &spec->multiout); |
| 2249 | } |
| 2250 | |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 2251 | static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 2252 | struct hda_codec *codec, |
| 2253 | unsigned int stream_tag, |
| 2254 | unsigned int format, |
| 2255 | struct snd_pcm_substream *substream) |
| 2256 | { |
| 2257 | struct sigmatel_spec *spec = codec->spec; |
| 2258 | return snd_hda_multi_out_dig_prepare(codec, &spec->multiout, |
| 2259 | stream_tag, format, substream); |
| 2260 | } |
| 2261 | |
Takashi Iwai | 9411e21 | 2009-02-13 11:32:28 +0100 | [diff] [blame] | 2262 | static int stac92xx_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo, |
| 2263 | struct hda_codec *codec, |
| 2264 | struct snd_pcm_substream *substream) |
| 2265 | { |
| 2266 | struct sigmatel_spec *spec = codec->spec; |
| 2267 | return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout); |
| 2268 | } |
| 2269 | |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2270 | |
| 2271 | /* |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2272 | * Analog capture callbacks |
| 2273 | */ |
| 2274 | static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 2275 | struct hda_codec *codec, |
| 2276 | unsigned int stream_tag, |
| 2277 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2278 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2279 | { |
| 2280 | struct sigmatel_spec *spec = codec->spec; |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 2281 | hda_nid_t nid = spec->adc_nids[substream->number]; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2282 | |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 2283 | if (spec->powerdown_adcs) { |
| 2284 | msleep(40); |
Takashi Iwai | 8c2f767 | 2008-12-01 11:54:35 +0100 | [diff] [blame] | 2285 | snd_hda_codec_write(codec, nid, 0, |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 2286 | AC_VERB_SET_POWER_STATE, AC_PWRST_D0); |
| 2287 | } |
| 2288 | snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2289 | return 0; |
| 2290 | } |
| 2291 | |
| 2292 | static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo, |
| 2293 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2294 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2295 | { |
| 2296 | struct sigmatel_spec *spec = codec->spec; |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 2297 | hda_nid_t nid = spec->adc_nids[substream->number]; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2298 | |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 2299 | snd_hda_codec_cleanup_stream(codec, nid); |
| 2300 | if (spec->powerdown_adcs) |
Takashi Iwai | 8c2f767 | 2008-12-01 11:54:35 +0100 | [diff] [blame] | 2301 | snd_hda_codec_write(codec, nid, 0, |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 2302 | AC_VERB_SET_POWER_STATE, AC_PWRST_D3); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2303 | return 0; |
| 2304 | } |
| 2305 | |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2306 | static struct hda_pcm_stream stac92xx_pcm_digital_playback = { |
| 2307 | .substreams = 1, |
| 2308 | .channels_min = 2, |
| 2309 | .channels_max = 2, |
| 2310 | /* NID is set in stac92xx_build_pcms */ |
| 2311 | .ops = { |
| 2312 | .open = stac92xx_dig_playback_pcm_open, |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 2313 | .close = stac92xx_dig_playback_pcm_close, |
Takashi Iwai | 9411e21 | 2009-02-13 11:32:28 +0100 | [diff] [blame] | 2314 | .prepare = stac92xx_dig_playback_pcm_prepare, |
| 2315 | .cleanup = stac92xx_dig_playback_pcm_cleanup |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2316 | }, |
| 2317 | }; |
| 2318 | |
| 2319 | static struct hda_pcm_stream stac92xx_pcm_digital_capture = { |
| 2320 | .substreams = 1, |
| 2321 | .channels_min = 2, |
| 2322 | .channels_max = 2, |
| 2323 | /* NID is set in stac92xx_build_pcms */ |
| 2324 | }; |
| 2325 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2326 | static struct hda_pcm_stream stac92xx_pcm_analog_playback = { |
| 2327 | .substreams = 1, |
| 2328 | .channels_min = 2, |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2329 | .channels_max = 8, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2330 | .nid = 0x02, /* NID to query formats and rates */ |
| 2331 | .ops = { |
| 2332 | .open = stac92xx_playback_pcm_open, |
| 2333 | .prepare = stac92xx_playback_pcm_prepare, |
| 2334 | .cleanup = stac92xx_playback_pcm_cleanup |
| 2335 | }, |
| 2336 | }; |
| 2337 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 2338 | static struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = { |
| 2339 | .substreams = 1, |
| 2340 | .channels_min = 2, |
| 2341 | .channels_max = 2, |
| 2342 | .nid = 0x06, /* NID to query formats and rates */ |
| 2343 | .ops = { |
| 2344 | .open = stac92xx_playback_pcm_open, |
| 2345 | .prepare = stac92xx_playback_pcm_prepare, |
| 2346 | .cleanup = stac92xx_playback_pcm_cleanup |
| 2347 | }, |
| 2348 | }; |
| 2349 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2350 | static struct hda_pcm_stream stac92xx_pcm_analog_capture = { |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2351 | .channels_min = 2, |
| 2352 | .channels_max = 2, |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 2353 | /* NID + .substreams is set in stac92xx_build_pcms */ |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2354 | .ops = { |
| 2355 | .prepare = stac92xx_capture_pcm_prepare, |
| 2356 | .cleanup = stac92xx_capture_pcm_cleanup |
| 2357 | }, |
| 2358 | }; |
| 2359 | |
| 2360 | static int stac92xx_build_pcms(struct hda_codec *codec) |
| 2361 | { |
| 2362 | struct sigmatel_spec *spec = codec->spec; |
| 2363 | struct hda_pcm *info = spec->pcm_rec; |
| 2364 | |
| 2365 | codec->num_pcms = 1; |
| 2366 | codec->pcm_info = info; |
| 2367 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2368 | info->name = "STAC92xx Analog"; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2369 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback; |
Takashi Iwai | 00a602d | 2009-01-23 11:55:42 +0100 | [diff] [blame] | 2370 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = |
| 2371 | spec->multiout.dac_nids[0]; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2372 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture; |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 2373 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0]; |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 2374 | info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adcs; |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 2375 | |
| 2376 | if (spec->alt_switch) { |
| 2377 | codec->num_pcms++; |
| 2378 | info++; |
| 2379 | info->name = "STAC92xx Analog Alt"; |
| 2380 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback; |
| 2381 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2382 | |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2383 | if (spec->multiout.dig_out_nid || spec->dig_in_nid) { |
| 2384 | codec->num_pcms++; |
| 2385 | info++; |
| 2386 | info->name = "STAC92xx Digital"; |
Takashi Iwai | 0852d7a | 2009-02-11 11:35:15 +0100 | [diff] [blame] | 2387 | info->pcm_type = spec->autocfg.dig_out_type[0]; |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 2388 | if (spec->multiout.dig_out_nid) { |
| 2389 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback; |
| 2390 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid; |
| 2391 | } |
| 2392 | if (spec->dig_in_nid) { |
| 2393 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture; |
| 2394 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid; |
| 2395 | } |
| 2396 | } |
| 2397 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 2398 | return 0; |
| 2399 | } |
| 2400 | |
Nickolas Lloyd | 7c922de | 2009-06-01 11:12:29 +0200 | [diff] [blame] | 2401 | static unsigned int stac92xx_get_default_vref(struct hda_codec *codec, |
| 2402 | hda_nid_t nid) |
Takashi Iwai | c960a03 | 2006-03-23 17:06:28 +0100 | [diff] [blame] | 2403 | { |
Takashi Iwai | 1327a32 | 2009-03-23 13:07:47 +0100 | [diff] [blame] | 2404 | unsigned int pincap = snd_hda_query_pin_caps(codec, nid); |
Takashi Iwai | c960a03 | 2006-03-23 17:06:28 +0100 | [diff] [blame] | 2405 | pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT; |
| 2406 | if (pincap & AC_PINCAP_VREF_100) |
| 2407 | return AC_PINCTL_VREF_100; |
| 2408 | if (pincap & AC_PINCAP_VREF_80) |
| 2409 | return AC_PINCTL_VREF_80; |
| 2410 | if (pincap & AC_PINCAP_VREF_50) |
| 2411 | return AC_PINCTL_VREF_50; |
| 2412 | if (pincap & AC_PINCAP_VREF_GRD) |
| 2413 | return AC_PINCTL_VREF_GRD; |
| 2414 | return 0; |
| 2415 | } |
| 2416 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2417 | static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type) |
| 2418 | |
| 2419 | { |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 2420 | snd_hda_codec_write_cache(codec, nid, 0, |
| 2421 | AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type); |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2422 | } |
| 2423 | |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 2424 | #define stac92xx_hp_switch_info snd_ctl_boolean_mono_info |
| 2425 | |
| 2426 | static int stac92xx_hp_switch_get(struct snd_kcontrol *kcontrol, |
| 2427 | struct snd_ctl_elem_value *ucontrol) |
| 2428 | { |
| 2429 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2430 | struct sigmatel_spec *spec = codec->spec; |
| 2431 | |
Takashi Iwai | d7a8943 | 2008-11-12 09:48:04 +0100 | [diff] [blame] | 2432 | ucontrol->value.integer.value[0] = !!spec->hp_switch; |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 2433 | return 0; |
| 2434 | } |
| 2435 | |
Takashi Iwai | 62558ce | 2009-07-29 14:23:09 +0200 | [diff] [blame] | 2436 | static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid); |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 2437 | |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 2438 | static int stac92xx_hp_switch_put(struct snd_kcontrol *kcontrol, |
| 2439 | struct snd_ctl_elem_value *ucontrol) |
| 2440 | { |
| 2441 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2442 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | d7a8943 | 2008-11-12 09:48:04 +0100 | [diff] [blame] | 2443 | int nid = kcontrol->private_value; |
| 2444 | |
| 2445 | spec->hp_switch = ucontrol->value.integer.value[0] ? nid : 0; |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 2446 | |
| 2447 | /* check to be sure that the ports are upto date with |
| 2448 | * switch changes |
| 2449 | */ |
Takashi Iwai | 62558ce | 2009-07-29 14:23:09 +0200 | [diff] [blame] | 2450 | stac_issue_unsol_event(codec, nid); |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 2451 | |
| 2452 | return 1; |
| 2453 | } |
| 2454 | |
Nickolas Lloyd | 7c922de | 2009-06-01 11:12:29 +0200 | [diff] [blame] | 2455 | static int stac92xx_dc_bias_info(struct snd_kcontrol *kcontrol, |
| 2456 | struct snd_ctl_elem_info *uinfo) |
| 2457 | { |
| 2458 | int i; |
| 2459 | static char *texts[] = { |
| 2460 | "Mic In", "Line In", "Line Out" |
| 2461 | }; |
| 2462 | |
| 2463 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2464 | struct sigmatel_spec *spec = codec->spec; |
| 2465 | hda_nid_t nid = kcontrol->private_value; |
| 2466 | |
| 2467 | if (nid == spec->mic_switch || nid == spec->line_switch) |
| 2468 | i = 3; |
| 2469 | else |
| 2470 | i = 2; |
| 2471 | |
| 2472 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 2473 | uinfo->value.enumerated.items = i; |
| 2474 | uinfo->count = 1; |
| 2475 | if (uinfo->value.enumerated.item >= i) |
| 2476 | uinfo->value.enumerated.item = i-1; |
| 2477 | strcpy(uinfo->value.enumerated.name, |
| 2478 | texts[uinfo->value.enumerated.item]); |
| 2479 | |
| 2480 | return 0; |
| 2481 | } |
| 2482 | |
| 2483 | static int stac92xx_dc_bias_get(struct snd_kcontrol *kcontrol, |
| 2484 | struct snd_ctl_elem_value *ucontrol) |
| 2485 | { |
| 2486 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2487 | hda_nid_t nid = kcontrol->private_value; |
| 2488 | unsigned int vref = stac92xx_vref_get(codec, nid); |
| 2489 | |
| 2490 | if (vref == stac92xx_get_default_vref(codec, nid)) |
| 2491 | ucontrol->value.enumerated.item[0] = 0; |
| 2492 | else if (vref == AC_PINCTL_VREF_GRD) |
| 2493 | ucontrol->value.enumerated.item[0] = 1; |
| 2494 | else if (vref == AC_PINCTL_VREF_HIZ) |
| 2495 | ucontrol->value.enumerated.item[0] = 2; |
| 2496 | |
| 2497 | return 0; |
| 2498 | } |
| 2499 | |
| 2500 | static int stac92xx_dc_bias_put(struct snd_kcontrol *kcontrol, |
| 2501 | struct snd_ctl_elem_value *ucontrol) |
| 2502 | { |
| 2503 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2504 | unsigned int new_vref = 0; |
Takashi Iwai | b862151 | 2009-06-22 08:00:10 +0200 | [diff] [blame] | 2505 | int error; |
Nickolas Lloyd | 7c922de | 2009-06-01 11:12:29 +0200 | [diff] [blame] | 2506 | hda_nid_t nid = kcontrol->private_value; |
| 2507 | |
| 2508 | if (ucontrol->value.enumerated.item[0] == 0) |
| 2509 | new_vref = stac92xx_get_default_vref(codec, nid); |
| 2510 | else if (ucontrol->value.enumerated.item[0] == 1) |
| 2511 | new_vref = AC_PINCTL_VREF_GRD; |
| 2512 | else if (ucontrol->value.enumerated.item[0] == 2) |
| 2513 | new_vref = AC_PINCTL_VREF_HIZ; |
| 2514 | else |
| 2515 | return 0; |
| 2516 | |
| 2517 | if (new_vref != stac92xx_vref_get(codec, nid)) { |
| 2518 | error = stac92xx_vref_set(codec, nid, new_vref); |
| 2519 | return error; |
| 2520 | } |
| 2521 | |
| 2522 | return 0; |
| 2523 | } |
| 2524 | |
| 2525 | static int stac92xx_io_switch_info(struct snd_kcontrol *kcontrol, |
| 2526 | struct snd_ctl_elem_info *uinfo) |
| 2527 | { |
| 2528 | static char *texts[2]; |
| 2529 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2530 | struct sigmatel_spec *spec = codec->spec; |
| 2531 | |
| 2532 | if (kcontrol->private_value == spec->line_switch) |
| 2533 | texts[0] = "Line In"; |
| 2534 | else |
| 2535 | texts[0] = "Mic In"; |
| 2536 | texts[1] = "Line Out"; |
| 2537 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 2538 | uinfo->value.enumerated.items = 2; |
| 2539 | uinfo->count = 1; |
| 2540 | |
| 2541 | if (uinfo->value.enumerated.item >= 2) |
| 2542 | uinfo->value.enumerated.item = 1; |
| 2543 | strcpy(uinfo->value.enumerated.name, |
| 2544 | texts[uinfo->value.enumerated.item]); |
| 2545 | |
| 2546 | return 0; |
| 2547 | } |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2548 | |
| 2549 | static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) |
| 2550 | { |
| 2551 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2552 | struct sigmatel_spec *spec = codec->spec; |
Nickolas Lloyd | 7c922de | 2009-06-01 11:12:29 +0200 | [diff] [blame] | 2553 | hda_nid_t nid = kcontrol->private_value; |
| 2554 | int io_idx = (nid == spec->mic_switch) ? 1 : 0; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2555 | |
Nickolas Lloyd | 7c922de | 2009-06-01 11:12:29 +0200 | [diff] [blame] | 2556 | ucontrol->value.enumerated.item[0] = spec->io_switch[io_idx]; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2557 | return 0; |
| 2558 | } |
| 2559 | |
| 2560 | static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) |
| 2561 | { |
| 2562 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2563 | struct sigmatel_spec *spec = codec->spec; |
Nickolas Lloyd | 7c922de | 2009-06-01 11:12:29 +0200 | [diff] [blame] | 2564 | hda_nid_t nid = kcontrol->private_value; |
| 2565 | int io_idx = (nid == spec->mic_switch) ? 1 : 0; |
| 2566 | unsigned short val = !!ucontrol->value.enumerated.item[0]; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2567 | |
| 2568 | spec->io_switch[io_idx] = val; |
| 2569 | |
| 2570 | if (val) |
| 2571 | stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN); |
Takashi Iwai | c960a03 | 2006-03-23 17:06:28 +0100 | [diff] [blame] | 2572 | else { |
| 2573 | unsigned int pinctl = AC_PINCTL_IN_EN; |
| 2574 | if (io_idx) /* set VREF for mic */ |
Nickolas Lloyd | 7c922de | 2009-06-01 11:12:29 +0200 | [diff] [blame] | 2575 | pinctl |= stac92xx_get_default_vref(codec, nid); |
Takashi Iwai | c960a03 | 2006-03-23 17:06:28 +0100 | [diff] [blame] | 2576 | stac92xx_auto_set_pinctl(codec, nid, pinctl); |
| 2577 | } |
Jiang Zhe | 40c1d30 | 2007-11-12 13:05:16 +0100 | [diff] [blame] | 2578 | |
| 2579 | /* check the auto-mute again: we need to mute/unmute the speaker |
| 2580 | * appropriately according to the pin direction |
| 2581 | */ |
| 2582 | if (spec->hp_detect) |
Takashi Iwai | 62558ce | 2009-07-29 14:23:09 +0200 | [diff] [blame] | 2583 | stac_issue_unsol_event(codec, nid); |
Jiang Zhe | 40c1d30 | 2007-11-12 13:05:16 +0100 | [diff] [blame] | 2584 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2585 | return 1; |
| 2586 | } |
| 2587 | |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2588 | #define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info |
| 2589 | |
| 2590 | static int stac92xx_clfe_switch_get(struct snd_kcontrol *kcontrol, |
| 2591 | struct snd_ctl_elem_value *ucontrol) |
| 2592 | { |
| 2593 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2594 | struct sigmatel_spec *spec = codec->spec; |
| 2595 | |
| 2596 | ucontrol->value.integer.value[0] = spec->clfe_swap; |
| 2597 | return 0; |
| 2598 | } |
| 2599 | |
| 2600 | static int stac92xx_clfe_switch_put(struct snd_kcontrol *kcontrol, |
| 2601 | struct snd_ctl_elem_value *ucontrol) |
| 2602 | { |
| 2603 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2604 | struct sigmatel_spec *spec = codec->spec; |
| 2605 | hda_nid_t nid = kcontrol->private_value & 0xff; |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 2606 | unsigned int val = !!ucontrol->value.integer.value[0]; |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2607 | |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 2608 | if (spec->clfe_swap == val) |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2609 | return 0; |
| 2610 | |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 2611 | spec->clfe_swap = val; |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2612 | |
| 2613 | snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE, |
| 2614 | spec->clfe_swap ? 0x4 : 0x0); |
| 2615 | |
| 2616 | return 1; |
| 2617 | } |
| 2618 | |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 2619 | #define STAC_CODEC_HP_SWITCH(xname) \ |
| 2620 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| 2621 | .name = xname, \ |
| 2622 | .index = 0, \ |
| 2623 | .info = stac92xx_hp_switch_info, \ |
| 2624 | .get = stac92xx_hp_switch_get, \ |
| 2625 | .put = stac92xx_hp_switch_put, \ |
| 2626 | } |
| 2627 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2628 | #define STAC_CODEC_IO_SWITCH(xname, xpval) \ |
| 2629 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| 2630 | .name = xname, \ |
| 2631 | .index = 0, \ |
| 2632 | .info = stac92xx_io_switch_info, \ |
| 2633 | .get = stac92xx_io_switch_get, \ |
| 2634 | .put = stac92xx_io_switch_put, \ |
| 2635 | .private_value = xpval, \ |
| 2636 | } |
| 2637 | |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2638 | #define STAC_CODEC_CLFE_SWITCH(xname, xpval) \ |
| 2639 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| 2640 | .name = xname, \ |
| 2641 | .index = 0, \ |
| 2642 | .info = stac92xx_clfe_switch_info, \ |
| 2643 | .get = stac92xx_clfe_switch_get, \ |
| 2644 | .put = stac92xx_clfe_switch_put, \ |
| 2645 | .private_value = xpval, \ |
| 2646 | } |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2647 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2648 | enum { |
| 2649 | STAC_CTL_WIDGET_VOL, |
| 2650 | STAC_CTL_WIDGET_MUTE, |
Jaroslav Kysela | 123c07a | 2009-10-21 14:48:23 +0200 | [diff] [blame] | 2651 | STAC_CTL_WIDGET_MUTE_BEEP, |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 2652 | STAC_CTL_WIDGET_MONO_MUX, |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 2653 | STAC_CTL_WIDGET_HP_SWITCH, |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2654 | STAC_CTL_WIDGET_IO_SWITCH, |
Nickolas Lloyd | 2fc9989 | 2009-05-15 15:33:30 +0200 | [diff] [blame] | 2655 | STAC_CTL_WIDGET_CLFE_SWITCH, |
| 2656 | STAC_CTL_WIDGET_DC_BIAS |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2657 | }; |
| 2658 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2659 | static struct snd_kcontrol_new stac92xx_control_templates[] = { |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2660 | HDA_CODEC_VOLUME(NULL, 0, 0, 0), |
| 2661 | HDA_CODEC_MUTE(NULL, 0, 0, 0), |
Jaroslav Kysela | 123c07a | 2009-10-21 14:48:23 +0200 | [diff] [blame] | 2662 | HDA_CODEC_MUTE_BEEP(NULL, 0, 0, 0), |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 2663 | STAC_MONO_MUX, |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 2664 | STAC_CODEC_HP_SWITCH(NULL), |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2665 | STAC_CODEC_IO_SWITCH(NULL, 0), |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 2666 | STAC_CODEC_CLFE_SWITCH(NULL, 0), |
Nickolas Lloyd | 2fc9989 | 2009-05-15 15:33:30 +0200 | [diff] [blame] | 2667 | DC_BIAS(NULL, 0, 0), |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2668 | }; |
| 2669 | |
| 2670 | /* add dynamic controls */ |
Takashi Iwai | e3c7596 | 2009-01-23 11:57:22 +0100 | [diff] [blame] | 2671 | static struct snd_kcontrol_new * |
| 2672 | stac_control_new(struct sigmatel_spec *spec, |
| 2673 | struct snd_kcontrol_new *ktemp, |
Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 2674 | const char *name, |
| 2675 | hda_nid_t nid) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2676 | { |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2677 | struct snd_kcontrol_new *knew; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2678 | |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2679 | snd_array_init(&spec->kctls, sizeof(*knew), 32); |
| 2680 | knew = snd_array_new(&spec->kctls); |
| 2681 | if (!knew) |
Takashi Iwai | e3c7596 | 2009-01-23 11:57:22 +0100 | [diff] [blame] | 2682 | return NULL; |
Takashi Iwai | 4d4e9bb | 2008-11-12 16:45:04 +0100 | [diff] [blame] | 2683 | *knew = *ktemp; |
Takashi Iwai | 82fe0c5 | 2005-06-30 10:54:33 +0200 | [diff] [blame] | 2684 | knew->name = kstrdup(name, GFP_KERNEL); |
Takashi Iwai | e3c7596 | 2009-01-23 11:57:22 +0100 | [diff] [blame] | 2685 | if (!knew->name) { |
| 2686 | /* roolback */ |
| 2687 | memset(knew, 0, sizeof(*knew)); |
| 2688 | spec->kctls.alloced--; |
| 2689 | return NULL; |
| 2690 | } |
Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 2691 | if (nid) |
Takashi Iwai | 9c96fa5 | 2009-11-16 11:25:33 +0100 | [diff] [blame] | 2692 | knew->subdevice = HDA_SUBDEV_NID_FLAG | nid; |
Takashi Iwai | e3c7596 | 2009-01-23 11:57:22 +0100 | [diff] [blame] | 2693 | return knew; |
| 2694 | } |
| 2695 | |
| 2696 | static int stac92xx_add_control_temp(struct sigmatel_spec *spec, |
| 2697 | struct snd_kcontrol_new *ktemp, |
| 2698 | int idx, const char *name, |
| 2699 | unsigned long val) |
| 2700 | { |
Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 2701 | struct snd_kcontrol_new *knew = stac_control_new(spec, ktemp, name, |
| 2702 | get_amp_nid_(val)); |
Takashi Iwai | e3c7596 | 2009-01-23 11:57:22 +0100 | [diff] [blame] | 2703 | if (!knew) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2704 | return -ENOMEM; |
Takashi Iwai | e3c7596 | 2009-01-23 11:57:22 +0100 | [diff] [blame] | 2705 | knew->index = idx; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2706 | knew->private_value = val; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2707 | return 0; |
| 2708 | } |
| 2709 | |
Takashi Iwai | 4d4e9bb | 2008-11-12 16:45:04 +0100 | [diff] [blame] | 2710 | static inline int stac92xx_add_control_idx(struct sigmatel_spec *spec, |
| 2711 | int type, int idx, const char *name, |
| 2712 | unsigned long val) |
| 2713 | { |
| 2714 | return stac92xx_add_control_temp(spec, |
| 2715 | &stac92xx_control_templates[type], |
| 2716 | idx, name, val); |
| 2717 | } |
| 2718 | |
Matthew Ranostay | 4682eee | 2008-08-15 07:43:24 +0200 | [diff] [blame] | 2719 | |
| 2720 | /* add dynamic controls */ |
Takashi Iwai | 4d4e9bb | 2008-11-12 16:45:04 +0100 | [diff] [blame] | 2721 | static inline int stac92xx_add_control(struct sigmatel_spec *spec, int type, |
| 2722 | const char *name, unsigned long val) |
Matthew Ranostay | 4682eee | 2008-08-15 07:43:24 +0200 | [diff] [blame] | 2723 | { |
| 2724 | return stac92xx_add_control_idx(spec, type, 0, name, val); |
| 2725 | } |
| 2726 | |
Takashi Iwai | e3c7596 | 2009-01-23 11:57:22 +0100 | [diff] [blame] | 2727 | static struct snd_kcontrol_new stac_input_src_temp = { |
| 2728 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2729 | .name = "Input Source", |
| 2730 | .info = stac92xx_mux_enum_info, |
| 2731 | .get = stac92xx_mux_enum_get, |
| 2732 | .put = stac92xx_mux_enum_put, |
| 2733 | }; |
| 2734 | |
Nickolas Lloyd | 7c922de | 2009-06-01 11:12:29 +0200 | [diff] [blame] | 2735 | static inline int stac92xx_add_jack_mode_control(struct hda_codec *codec, |
| 2736 | hda_nid_t nid, int idx) |
| 2737 | { |
| 2738 | int def_conf = snd_hda_codec_get_pincfg(codec, nid); |
| 2739 | int control = 0; |
| 2740 | struct sigmatel_spec *spec = codec->spec; |
| 2741 | char name[22]; |
| 2742 | |
| 2743 | if (!((get_defcfg_connect(def_conf)) & AC_JACK_PORT_FIXED)) { |
| 2744 | if (stac92xx_get_default_vref(codec, nid) == AC_PINCTL_VREF_GRD |
| 2745 | && nid == spec->line_switch) |
| 2746 | control = STAC_CTL_WIDGET_IO_SWITCH; |
| 2747 | else if (snd_hda_query_pin_caps(codec, nid) |
| 2748 | & (AC_PINCAP_VREF_GRD << AC_PINCAP_VREF_SHIFT)) |
| 2749 | control = STAC_CTL_WIDGET_DC_BIAS; |
| 2750 | else if (nid == spec->mic_switch) |
| 2751 | control = STAC_CTL_WIDGET_IO_SWITCH; |
| 2752 | } |
| 2753 | |
| 2754 | if (control) { |
| 2755 | strcpy(name, auto_pin_cfg_labels[idx]); |
| 2756 | return stac92xx_add_control(codec->spec, control, |
| 2757 | strcat(name, " Jack Mode"), nid); |
| 2758 | } |
| 2759 | |
| 2760 | return 0; |
| 2761 | } |
| 2762 | |
Takashi Iwai | e3c7596 | 2009-01-23 11:57:22 +0100 | [diff] [blame] | 2763 | static int stac92xx_add_input_source(struct sigmatel_spec *spec) |
| 2764 | { |
| 2765 | struct snd_kcontrol_new *knew; |
| 2766 | struct hda_input_mux *imux = &spec->private_imux; |
| 2767 | |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 2768 | if (spec->auto_mic) |
| 2769 | return 0; /* no need for input source */ |
Takashi Iwai | e3c7596 | 2009-01-23 11:57:22 +0100 | [diff] [blame] | 2770 | if (!spec->num_adcs || imux->num_items <= 1) |
| 2771 | return 0; /* no need for input source control */ |
| 2772 | knew = stac_control_new(spec, &stac_input_src_temp, |
Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 2773 | stac_input_src_temp.name, 0); |
Takashi Iwai | e3c7596 | 2009-01-23 11:57:22 +0100 | [diff] [blame] | 2774 | if (!knew) |
| 2775 | return -ENOMEM; |
| 2776 | knew->count = spec->num_adcs; |
| 2777 | return 0; |
| 2778 | } |
| 2779 | |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2780 | /* check whether the line-input can be used as line-out */ |
| 2781 | static hda_nid_t check_line_out_switch(struct hda_codec *codec) |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2782 | { |
| 2783 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2784 | struct auto_pin_cfg *cfg = &spec->autocfg; |
| 2785 | hda_nid_t nid; |
| 2786 | unsigned int pincap; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 2787 | |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2788 | if (cfg->line_out_type != AUTO_PIN_LINE_OUT) |
| 2789 | return 0; |
| 2790 | nid = cfg->input_pins[AUTO_PIN_LINE]; |
Takashi Iwai | 1327a32 | 2009-03-23 13:07:47 +0100 | [diff] [blame] | 2791 | pincap = snd_hda_query_pin_caps(codec, nid); |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2792 | if (pincap & AC_PINCAP_OUT) |
| 2793 | return nid; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 2794 | return 0; |
| 2795 | } |
| 2796 | |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2797 | /* check whether the mic-input can be used as line-out */ |
| 2798 | static hda_nid_t check_mic_out_switch(struct hda_codec *codec) |
| 2799 | { |
| 2800 | struct sigmatel_spec *spec = codec->spec; |
| 2801 | struct auto_pin_cfg *cfg = &spec->autocfg; |
| 2802 | unsigned int def_conf, pincap; |
| 2803 | unsigned int mic_pin; |
| 2804 | |
| 2805 | if (cfg->line_out_type != AUTO_PIN_LINE_OUT) |
| 2806 | return 0; |
| 2807 | mic_pin = AUTO_PIN_MIC; |
| 2808 | for (;;) { |
| 2809 | hda_nid_t nid = cfg->input_pins[mic_pin]; |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 2810 | def_conf = snd_hda_codec_get_pincfg(codec, nid); |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2811 | /* some laptops have an internal analog microphone |
| 2812 | * which can't be used as a output */ |
| 2813 | if (get_defcfg_connect(def_conf) != AC_JACK_PORT_FIXED) { |
Takashi Iwai | 1327a32 | 2009-03-23 13:07:47 +0100 | [diff] [blame] | 2814 | pincap = snd_hda_query_pin_caps(codec, nid); |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2815 | if (pincap & AC_PINCAP_OUT) |
| 2816 | return nid; |
| 2817 | } |
| 2818 | if (mic_pin == AUTO_PIN_MIC) |
| 2819 | mic_pin = AUTO_PIN_FRONT_MIC; |
| 2820 | else |
| 2821 | break; |
| 2822 | } |
| 2823 | return 0; |
| 2824 | } |
Steve Longerbeam | 7b043899 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2825 | |
| 2826 | static int is_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid) |
| 2827 | { |
| 2828 | int i; |
| 2829 | |
| 2830 | for (i = 0; i < spec->multiout.num_dacs; i++) { |
| 2831 | if (spec->multiout.dac_nids[i] == nid) |
| 2832 | return 1; |
| 2833 | } |
| 2834 | |
| 2835 | return 0; |
| 2836 | } |
| 2837 | |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2838 | static int check_all_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid) |
| 2839 | { |
| 2840 | int i; |
| 2841 | if (is_in_dac_nids(spec, nid)) |
| 2842 | return 1; |
| 2843 | for (i = 0; i < spec->autocfg.hp_outs; i++) |
| 2844 | if (spec->hp_dacs[i] == nid) |
| 2845 | return 1; |
| 2846 | for (i = 0; i < spec->autocfg.speaker_outs; i++) |
| 2847 | if (spec->speaker_dacs[i] == nid) |
| 2848 | return 1; |
| 2849 | return 0; |
| 2850 | } |
| 2851 | |
| 2852 | static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid) |
| 2853 | { |
| 2854 | struct sigmatel_spec *spec = codec->spec; |
| 2855 | int j, conn_len; |
| 2856 | hda_nid_t conn[HDA_MAX_CONNECTIONS]; |
| 2857 | unsigned int wcaps, wtype; |
| 2858 | |
| 2859 | conn_len = snd_hda_get_connections(codec, nid, conn, |
| 2860 | HDA_MAX_CONNECTIONS); |
| 2861 | for (j = 0; j < conn_len; j++) { |
Takashi Iwai | 14bafe3 | 2009-03-23 16:35:39 +0100 | [diff] [blame] | 2862 | wcaps = get_wcaps(codec, conn[j]); |
Takashi Iwai | a22d543 | 2009-07-27 12:54:26 +0200 | [diff] [blame] | 2863 | wtype = get_wcaps_type(wcaps); |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2864 | /* we check only analog outputs */ |
| 2865 | if (wtype != AC_WID_AUD_OUT || (wcaps & AC_WCAP_DIGITAL)) |
| 2866 | continue; |
| 2867 | /* if this route has a free DAC, assign it */ |
| 2868 | if (!check_all_dac_nids(spec, conn[j])) { |
| 2869 | if (conn_len > 1) { |
| 2870 | /* select this DAC in the pin's input mux */ |
| 2871 | snd_hda_codec_write_cache(codec, nid, 0, |
| 2872 | AC_VERB_SET_CONNECT_SEL, j); |
| 2873 | } |
| 2874 | return conn[j]; |
| 2875 | } |
| 2876 | } |
Takashi Iwai | ee58a7c | 2009-03-06 12:00:24 +0100 | [diff] [blame] | 2877 | /* if all DACs are already assigned, connect to the primary DAC */ |
| 2878 | if (conn_len > 1) { |
| 2879 | for (j = 0; j < conn_len; j++) { |
| 2880 | if (conn[j] == spec->multiout.dac_nids[0]) { |
| 2881 | snd_hda_codec_write_cache(codec, nid, 0, |
| 2882 | AC_VERB_SET_CONNECT_SEL, j); |
| 2883 | break; |
| 2884 | } |
| 2885 | } |
| 2886 | } |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2887 | return 0; |
| 2888 | } |
| 2889 | |
| 2890 | static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid); |
| 2891 | static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid); |
| 2892 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 2893 | /* |
Steve Longerbeam | 7b043899 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2894 | * Fill in the dac_nids table from the parsed pin configuration |
| 2895 | * This function only works when every pin in line_out_pins[] |
| 2896 | * contains atleast one DAC in its connection list. Some 92xx |
| 2897 | * codecs are not connected directly to a DAC, such as the 9200 |
| 2898 | * and 9202/925x. For those, dac_nids[] must be hard-coded. |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 2899 | */ |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2900 | static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2901 | { |
| 2902 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2903 | struct auto_pin_cfg *cfg = &spec->autocfg; |
| 2904 | int i; |
| 2905 | hda_nid_t nid, dac; |
Steve Longerbeam | 7b043899 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2906 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2907 | for (i = 0; i < cfg->line_outs; i++) { |
| 2908 | nid = cfg->line_out_pins[i]; |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2909 | dac = get_unassigned_dac(codec, nid); |
| 2910 | if (!dac) { |
Takashi Iwai | df80295 | 2007-07-02 19:18:00 +0200 | [diff] [blame] | 2911 | if (spec->multiout.num_dacs > 0) { |
| 2912 | /* we have already working output pins, |
| 2913 | * so let's drop the broken ones again |
| 2914 | */ |
| 2915 | cfg->line_outs = spec->multiout.num_dacs; |
| 2916 | break; |
| 2917 | } |
Steve Longerbeam | 7b043899 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2918 | /* error out, no available DAC found */ |
| 2919 | snd_printk(KERN_ERR |
| 2920 | "%s: No available DAC for pin 0x%x\n", |
| 2921 | __func__, nid); |
| 2922 | return -ENODEV; |
| 2923 | } |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2924 | add_spec_dacs(spec, dac); |
| 2925 | } |
Steve Longerbeam | 7b043899 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2926 | |
Takashi Iwai | 139e071 | 2009-03-06 12:10:41 +0100 | [diff] [blame] | 2927 | for (i = 0; i < cfg->hp_outs; i++) { |
| 2928 | nid = cfg->hp_pins[i]; |
| 2929 | dac = get_unassigned_dac(codec, nid); |
| 2930 | if (dac) { |
| 2931 | if (!spec->multiout.hp_nid) |
| 2932 | spec->multiout.hp_nid = dac; |
| 2933 | else |
| 2934 | add_spec_extra_dacs(spec, dac); |
| 2935 | } |
| 2936 | spec->hp_dacs[i] = dac; |
| 2937 | } |
| 2938 | |
| 2939 | for (i = 0; i < cfg->speaker_outs; i++) { |
| 2940 | nid = cfg->speaker_pins[i]; |
| 2941 | dac = get_unassigned_dac(codec, nid); |
| 2942 | if (dac) |
| 2943 | add_spec_extra_dacs(spec, dac); |
| 2944 | spec->speaker_dacs[i] = dac; |
| 2945 | } |
| 2946 | |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2947 | /* add line-in as output */ |
| 2948 | nid = check_line_out_switch(codec); |
| 2949 | if (nid) { |
| 2950 | dac = get_unassigned_dac(codec, nid); |
| 2951 | if (dac) { |
| 2952 | snd_printdd("STAC: Add line-in 0x%x as output %d\n", |
| 2953 | nid, cfg->line_outs); |
| 2954 | cfg->line_out_pins[cfg->line_outs] = nid; |
| 2955 | cfg->line_outs++; |
| 2956 | spec->line_switch = nid; |
| 2957 | add_spec_dacs(spec, dac); |
| 2958 | } |
| 2959 | } |
| 2960 | /* add mic as output */ |
| 2961 | nid = check_mic_out_switch(codec); |
| 2962 | if (nid) { |
| 2963 | dac = get_unassigned_dac(codec, nid); |
| 2964 | if (dac) { |
| 2965 | snd_printdd("STAC: Add mic-in 0x%x as output %d\n", |
| 2966 | nid, cfg->line_outs); |
| 2967 | cfg->line_out_pins[cfg->line_outs] = nid; |
| 2968 | cfg->line_outs++; |
| 2969 | spec->mic_switch = nid; |
| 2970 | add_spec_dacs(spec, dac); |
Steve Longerbeam | 7b043899 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2971 | } |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2972 | } |
| 2973 | |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2974 | snd_printd("stac92xx: dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n", |
Steve Longerbeam | 7b043899 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 2975 | spec->multiout.num_dacs, |
| 2976 | spec->multiout.dac_nids[0], |
| 2977 | spec->multiout.dac_nids[1], |
| 2978 | spec->multiout.dac_nids[2], |
| 2979 | spec->multiout.dac_nids[3], |
| 2980 | spec->multiout.dac_nids[4]); |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 2981 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 2982 | return 0; |
| 2983 | } |
| 2984 | |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2985 | /* create volume control/switch for the given prefx type */ |
Takashi Iwai | 668b965 | 2009-03-06 10:13:24 +0100 | [diff] [blame] | 2986 | static int create_controls_idx(struct hda_codec *codec, const char *pfx, |
| 2987 | int idx, hda_nid_t nid, int chs) |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2988 | { |
Takashi Iwai | 7c7767e | 2009-01-20 15:28:38 +0100 | [diff] [blame] | 2989 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 2990 | char name[32]; |
| 2991 | int err; |
| 2992 | |
Takashi Iwai | 7c7767e | 2009-01-20 15:28:38 +0100 | [diff] [blame] | 2993 | if (!spec->check_volume_offset) { |
| 2994 | unsigned int caps, step, nums, db_scale; |
| 2995 | caps = query_amp_caps(codec, nid, HDA_OUTPUT); |
| 2996 | step = (caps & AC_AMPCAP_STEP_SIZE) >> |
| 2997 | AC_AMPCAP_STEP_SIZE_SHIFT; |
| 2998 | step = (step + 1) * 25; /* in .01dB unit */ |
| 2999 | nums = (caps & AC_AMPCAP_NUM_STEPS) >> |
| 3000 | AC_AMPCAP_NUM_STEPS_SHIFT; |
| 3001 | db_scale = nums * step; |
| 3002 | /* if dB scale is over -64dB, and finer enough, |
| 3003 | * let's reduce it to half |
| 3004 | */ |
| 3005 | if (db_scale > 6400 && nums >= 0x1f) |
| 3006 | spec->volume_offset = nums / 2; |
| 3007 | spec->check_volume_offset = 1; |
| 3008 | } |
| 3009 | |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3010 | sprintf(name, "%s Playback Volume", pfx); |
Takashi Iwai | 668b965 | 2009-03-06 10:13:24 +0100 | [diff] [blame] | 3011 | err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, idx, name, |
Takashi Iwai | 7c7767e | 2009-01-20 15:28:38 +0100 | [diff] [blame] | 3012 | HDA_COMPOSE_AMP_VAL_OFS(nid, chs, 0, HDA_OUTPUT, |
| 3013 | spec->volume_offset)); |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3014 | if (err < 0) |
| 3015 | return err; |
| 3016 | sprintf(name, "%s Playback Switch", pfx); |
Takashi Iwai | 668b965 | 2009-03-06 10:13:24 +0100 | [diff] [blame] | 3017 | err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_MUTE, idx, name, |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3018 | HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT)); |
| 3019 | if (err < 0) |
| 3020 | return err; |
| 3021 | return 0; |
| 3022 | } |
| 3023 | |
Takashi Iwai | 668b965 | 2009-03-06 10:13:24 +0100 | [diff] [blame] | 3024 | #define create_controls(codec, pfx, nid, chs) \ |
| 3025 | create_controls_idx(codec, pfx, 0, nid, chs) |
| 3026 | |
Matthew Ranostay | ae0afd8 | 2008-02-22 17:55:05 +0100 | [diff] [blame] | 3027 | static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid) |
| 3028 | { |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 3029 | if (spec->multiout.num_dacs > 4) { |
Matthew Ranostay | ae0afd8 | 2008-02-22 17:55:05 +0100 | [diff] [blame] | 3030 | printk(KERN_WARNING "stac92xx: No space for DAC 0x%x\n", nid); |
| 3031 | return 1; |
| 3032 | } else { |
| 3033 | spec->multiout.dac_nids[spec->multiout.num_dacs] = nid; |
| 3034 | spec->multiout.num_dacs++; |
| 3035 | } |
| 3036 | return 0; |
| 3037 | } |
| 3038 | |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 3039 | 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] | 3040 | { |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 3041 | int i; |
| 3042 | for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++) { |
| 3043 | if (!spec->multiout.extra_out_nid[i]) { |
| 3044 | spec->multiout.extra_out_nid[i] = nid; |
| 3045 | return 0; |
| 3046 | } |
| 3047 | } |
| 3048 | printk(KERN_WARNING "stac92xx: No space for extra DAC 0x%x\n", nid); |
| 3049 | return 1; |
Matthew Ranostay | ae0afd8 | 2008-02-22 17:55:05 +0100 | [diff] [blame] | 3050 | } |
| 3051 | |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3052 | /* Create output controls |
| 3053 | * The mixer elements are named depending on the given type (AUTO_PIN_XXX_OUT) |
| 3054 | */ |
| 3055 | static int create_multi_out_ctls(struct hda_codec *codec, int num_outs, |
| 3056 | const hda_nid_t *pins, |
| 3057 | const hda_nid_t *dac_nids, |
| 3058 | int type) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3059 | { |
Takashi Iwai | 7662453 | 2008-12-19 10:09:47 +0100 | [diff] [blame] | 3060 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 3061 | static const char *chname[4] = { |
| 3062 | "Front", "Surround", NULL /*CLFE*/, "Side" |
| 3063 | }; |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3064 | hda_nid_t nid; |
Takashi Iwai | 9158923 | 2008-12-19 15:59:40 +0100 | [diff] [blame] | 3065 | int i, err; |
| 3066 | unsigned int wid_caps; |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 3067 | |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3068 | for (i = 0; i < num_outs && i < ARRAY_SIZE(chname); i++) { |
Takashi Iwai | ffd0e56 | 2009-04-16 12:20:24 +0200 | [diff] [blame] | 3069 | if (type == AUTO_PIN_HP_OUT && !spec->hp_detect) { |
| 3070 | wid_caps = get_wcaps(codec, pins[i]); |
| 3071 | if (wid_caps & AC_WCAP_UNSOL_CAP) |
| 3072 | spec->hp_detect = 1; |
| 3073 | } |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3074 | nid = dac_nids[i]; |
| 3075 | if (!nid) |
| 3076 | continue; |
| 3077 | if (type != AUTO_PIN_HP_OUT && i == 2) { |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3078 | /* Center/LFE */ |
Takashi Iwai | 7c7767e | 2009-01-20 15:28:38 +0100 | [diff] [blame] | 3079 | err = create_controls(codec, "Center", nid, 1); |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3080 | if (err < 0) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3081 | return err; |
Takashi Iwai | 7c7767e | 2009-01-20 15:28:38 +0100 | [diff] [blame] | 3082 | err = create_controls(codec, "LFE", nid, 2); |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3083 | if (err < 0) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3084 | return err; |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 3085 | |
| 3086 | wid_caps = get_wcaps(codec, nid); |
| 3087 | |
| 3088 | if (wid_caps & AC_WCAP_LR_SWAP) { |
| 3089 | err = stac92xx_add_control(spec, |
| 3090 | STAC_CTL_WIDGET_CLFE_SWITCH, |
| 3091 | "Swap Center/LFE Playback Switch", nid); |
| 3092 | |
| 3093 | if (err < 0) |
| 3094 | return err; |
| 3095 | } |
| 3096 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3097 | } else { |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3098 | const char *name; |
Takashi Iwai | 668b965 | 2009-03-06 10:13:24 +0100 | [diff] [blame] | 3099 | int idx; |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3100 | switch (type) { |
| 3101 | case AUTO_PIN_HP_OUT: |
Takashi Iwai | 668b965 | 2009-03-06 10:13:24 +0100 | [diff] [blame] | 3102 | name = "Headphone"; |
| 3103 | idx = i; |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3104 | break; |
| 3105 | case AUTO_PIN_SPEAKER_OUT: |
Takashi Iwai | 668b965 | 2009-03-06 10:13:24 +0100 | [diff] [blame] | 3106 | name = "Speaker"; |
| 3107 | idx = i; |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3108 | break; |
| 3109 | default: |
| 3110 | name = chname[i]; |
Takashi Iwai | 668b965 | 2009-03-06 10:13:24 +0100 | [diff] [blame] | 3111 | idx = 0; |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3112 | break; |
Takashi Iwai | 7662453 | 2008-12-19 10:09:47 +0100 | [diff] [blame] | 3113 | } |
Takashi Iwai | 668b965 | 2009-03-06 10:13:24 +0100 | [diff] [blame] | 3114 | err = create_controls_idx(codec, name, idx, nid, 3); |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3115 | if (err < 0) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3116 | return err; |
| 3117 | } |
| 3118 | } |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3119 | return 0; |
| 3120 | } |
| 3121 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 3122 | static int stac92xx_add_capvol_ctls(struct hda_codec *codec, unsigned long vol, |
| 3123 | unsigned long sw, int idx) |
| 3124 | { |
| 3125 | int err; |
| 3126 | err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_VOL, idx, |
Takashi Iwai | bf677bd | 2009-07-30 09:24:29 +0200 | [diff] [blame] | 3127 | "Capture Volume", vol); |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 3128 | if (err < 0) |
| 3129 | return err; |
| 3130 | err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_MUTE, idx, |
Takashi Iwai | bf677bd | 2009-07-30 09:24:29 +0200 | [diff] [blame] | 3131 | "Capture Switch", sw); |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 3132 | if (err < 0) |
| 3133 | return err; |
| 3134 | return 0; |
| 3135 | } |
| 3136 | |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3137 | /* add playback controls from the parsed DAC table */ |
| 3138 | static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec, |
| 3139 | const struct auto_pin_cfg *cfg) |
| 3140 | { |
| 3141 | struct sigmatel_spec *spec = codec->spec; |
Nickolas Lloyd | 7c922de | 2009-06-01 11:12:29 +0200 | [diff] [blame] | 3142 | hda_nid_t nid; |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3143 | int err; |
Nickolas Lloyd | 7c922de | 2009-06-01 11:12:29 +0200 | [diff] [blame] | 3144 | int idx; |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3145 | |
| 3146 | err = create_multi_out_ctls(codec, cfg->line_outs, cfg->line_out_pins, |
| 3147 | spec->multiout.dac_nids, |
| 3148 | cfg->line_out_type); |
| 3149 | if (err < 0) |
| 3150 | return err; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3151 | |
Takashi Iwai | a9cb5c9 | 2008-11-24 07:51:11 +0100 | [diff] [blame] | 3152 | 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] | 3153 | err = stac92xx_add_control(spec, |
| 3154 | STAC_CTL_WIDGET_HP_SWITCH, |
Takashi Iwai | d7a8943 | 2008-11-12 09:48:04 +0100 | [diff] [blame] | 3155 | "Headphone as Line Out Switch", |
| 3156 | cfg->hp_pins[cfg->hp_outs - 1]); |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 3157 | if (err < 0) |
| 3158 | return err; |
| 3159 | } |
| 3160 | |
Nickolas Lloyd | 7c922de | 2009-06-01 11:12:29 +0200 | [diff] [blame] | 3161 | for (idx = AUTO_PIN_MIC; idx <= AUTO_PIN_FRONT_LINE; idx++) { |
| 3162 | nid = cfg->input_pins[idx]; |
| 3163 | if (nid) { |
| 3164 | err = stac92xx_add_jack_mode_control(codec, nid, idx); |
| 3165 | if (err < 0) |
| 3166 | return err; |
| 3167 | } |
Matthew Ranostay | b5895dc | 2008-01-25 15:24:50 +0100 | [diff] [blame] | 3168 | } |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 3169 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3170 | return 0; |
| 3171 | } |
| 3172 | |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3173 | /* add playback controls for Speaker and HP outputs */ |
| 3174 | static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec, |
| 3175 | struct auto_pin_cfg *cfg) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3176 | { |
| 3177 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3178 | int err; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3179 | |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3180 | err = create_multi_out_ctls(codec, cfg->hp_outs, cfg->hp_pins, |
| 3181 | spec->hp_dacs, AUTO_PIN_HP_OUT); |
| 3182 | if (err < 0) |
| 3183 | return err; |
| 3184 | |
| 3185 | err = create_multi_out_ctls(codec, cfg->speaker_outs, cfg->speaker_pins, |
| 3186 | spec->speaker_dacs, AUTO_PIN_SPEAKER_OUT); |
| 3187 | if (err < 0) |
| 3188 | return err; |
| 3189 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3190 | return 0; |
| 3191 | } |
| 3192 | |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 3193 | /* labels for mono mux outputs */ |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 3194 | static const char *stac92xx_mono_labels[4] = { |
| 3195 | "DAC0", "DAC1", "Mixer", "DAC2" |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 3196 | }; |
| 3197 | |
| 3198 | /* create mono mux for mono out on capable codecs */ |
| 3199 | static int stac92xx_auto_create_mono_output_ctls(struct hda_codec *codec) |
| 3200 | { |
| 3201 | struct sigmatel_spec *spec = codec->spec; |
| 3202 | struct hda_input_mux *mono_mux = &spec->private_mono_mux; |
| 3203 | int i, num_cons; |
| 3204 | hda_nid_t con_lst[ARRAY_SIZE(stac92xx_mono_labels)]; |
| 3205 | |
| 3206 | num_cons = snd_hda_get_connections(codec, |
| 3207 | spec->mono_nid, |
| 3208 | con_lst, |
| 3209 | HDA_MAX_NUM_INPUTS); |
Jaroslav Kysela | 16a433d | 2009-07-22 16:20:40 +0200 | [diff] [blame] | 3210 | if (num_cons <= 0 || num_cons > ARRAY_SIZE(stac92xx_mono_labels)) |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 3211 | return -EINVAL; |
| 3212 | |
| 3213 | for (i = 0; i < num_cons; i++) { |
| 3214 | mono_mux->items[mono_mux->num_items].label = |
| 3215 | stac92xx_mono_labels[i]; |
| 3216 | mono_mux->items[mono_mux->num_items].index = i; |
| 3217 | mono_mux->num_items++; |
| 3218 | } |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 3219 | |
| 3220 | return stac92xx_add_control(spec, STAC_CTL_WIDGET_MONO_MUX, |
| 3221 | "Mono Mux", spec->mono_nid); |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 3222 | } |
| 3223 | |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 3224 | /* create PC beep volume controls */ |
| 3225 | static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec, |
| 3226 | hda_nid_t nid) |
| 3227 | { |
| 3228 | struct sigmatel_spec *spec = codec->spec; |
| 3229 | u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT); |
Jaroslav Kysela | 123c07a | 2009-10-21 14:48:23 +0200 | [diff] [blame] | 3230 | int err, type = STAC_CTL_WIDGET_MUTE_BEEP; |
| 3231 | |
| 3232 | if (spec->anabeep_nid == nid) |
| 3233 | type = STAC_CTL_WIDGET_MUTE; |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 3234 | |
| 3235 | /* check for mute support for the the amp */ |
| 3236 | if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) { |
Jaroslav Kysela | 123c07a | 2009-10-21 14:48:23 +0200 | [diff] [blame] | 3237 | err = stac92xx_add_control(spec, type, |
Jaroslav Kysela | d355c82a | 2009-11-03 15:47:25 +0100 | [diff] [blame] | 3238 | "Beep Playback Switch", |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 3239 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT)); |
| 3240 | if (err < 0) |
| 3241 | return err; |
| 3242 | } |
| 3243 | |
| 3244 | /* check to see if there is volume support for the amp */ |
| 3245 | if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) { |
| 3246 | err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, |
Jaroslav Kysela | d355c82a | 2009-11-03 15:47:25 +0100 | [diff] [blame] | 3247 | "Beep Playback Volume", |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 3248 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT)); |
| 3249 | if (err < 0) |
| 3250 | return err; |
| 3251 | } |
| 3252 | return 0; |
| 3253 | } |
| 3254 | |
Takashi Iwai | 4d4e9bb | 2008-11-12 16:45:04 +0100 | [diff] [blame] | 3255 | #ifdef CONFIG_SND_HDA_INPUT_BEEP |
| 3256 | #define stac92xx_dig_beep_switch_info snd_ctl_boolean_mono_info |
| 3257 | |
| 3258 | static int stac92xx_dig_beep_switch_get(struct snd_kcontrol *kcontrol, |
| 3259 | struct snd_ctl_elem_value *ucontrol) |
| 3260 | { |
| 3261 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 3262 | ucontrol->value.integer.value[0] = codec->beep->enabled; |
| 3263 | return 0; |
| 3264 | } |
| 3265 | |
| 3266 | static int stac92xx_dig_beep_switch_put(struct snd_kcontrol *kcontrol, |
| 3267 | struct snd_ctl_elem_value *ucontrol) |
| 3268 | { |
| 3269 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Jaroslav Kysela | 123c07a | 2009-10-21 14:48:23 +0200 | [diff] [blame] | 3270 | return snd_hda_enable_beep_device(codec, ucontrol->value.integer.value[0]); |
Takashi Iwai | 4d4e9bb | 2008-11-12 16:45:04 +0100 | [diff] [blame] | 3271 | } |
| 3272 | |
| 3273 | static struct snd_kcontrol_new stac92xx_dig_beep_ctrl = { |
| 3274 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 3275 | .info = stac92xx_dig_beep_switch_info, |
| 3276 | .get = stac92xx_dig_beep_switch_get, |
| 3277 | .put = stac92xx_dig_beep_switch_put, |
| 3278 | }; |
| 3279 | |
| 3280 | static int stac92xx_beep_switch_ctl(struct hda_codec *codec) |
| 3281 | { |
| 3282 | return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl, |
Jaroslav Kysela | d355c82a | 2009-11-03 15:47:25 +0100 | [diff] [blame] | 3283 | 0, "Beep Playback Switch", 0); |
Takashi Iwai | 4d4e9bb | 2008-11-12 16:45:04 +0100 | [diff] [blame] | 3284 | } |
| 3285 | #endif |
| 3286 | |
Matthew Ranostay | 4682eee | 2008-08-15 07:43:24 +0200 | [diff] [blame] | 3287 | static int stac92xx_auto_create_mux_input_ctls(struct hda_codec *codec) |
| 3288 | { |
| 3289 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3290 | int i, j, err = 0; |
Matthew Ranostay | 4682eee | 2008-08-15 07:43:24 +0200 | [diff] [blame] | 3291 | |
| 3292 | for (i = 0; i < spec->num_muxes; i++) { |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3293 | hda_nid_t nid; |
| 3294 | unsigned int wcaps; |
| 3295 | unsigned long val; |
| 3296 | |
Matthew Ranostay | 4682eee | 2008-08-15 07:43:24 +0200 | [diff] [blame] | 3297 | nid = spec->mux_nids[i]; |
| 3298 | wcaps = get_wcaps(codec, nid); |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3299 | if (!(wcaps & AC_WCAP_OUT_AMP)) |
| 3300 | continue; |
Matthew Ranostay | 4682eee | 2008-08-15 07:43:24 +0200 | [diff] [blame] | 3301 | |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3302 | /* check whether already the same control was created as |
| 3303 | * normal Capture Volume. |
| 3304 | */ |
| 3305 | val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT); |
| 3306 | for (j = 0; j < spec->num_caps; j++) { |
| 3307 | if (spec->capvols[j] == val) |
| 3308 | break; |
Matthew Ranostay | 4682eee | 2008-08-15 07:43:24 +0200 | [diff] [blame] | 3309 | } |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3310 | if (j < spec->num_caps) |
| 3311 | continue; |
| 3312 | |
| 3313 | err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, i, |
| 3314 | "Mux Capture Volume", val); |
| 3315 | if (err < 0) |
| 3316 | return err; |
Matthew Ranostay | 4682eee | 2008-08-15 07:43:24 +0200 | [diff] [blame] | 3317 | } |
| 3318 | return 0; |
| 3319 | }; |
| 3320 | |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 3321 | static const char *stac92xx_spdif_labels[3] = { |
Matthew Ranostay | 6597363 | 2008-09-16 10:39:37 -0400 | [diff] [blame] | 3322 | "Digital Playback", "Analog Mux 1", "Analog Mux 2", |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 3323 | }; |
| 3324 | |
| 3325 | static int stac92xx_auto_create_spdif_mux_ctls(struct hda_codec *codec) |
| 3326 | { |
| 3327 | struct sigmatel_spec *spec = codec->spec; |
| 3328 | struct hda_input_mux *spdif_mux = &spec->private_smux; |
Matthew Ranostay | 6597363 | 2008-09-16 10:39:37 -0400 | [diff] [blame] | 3329 | const char **labels = spec->spdif_labels; |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 3330 | int i, num_cons; |
Matthew Ranostay | 6597363 | 2008-09-16 10:39:37 -0400 | [diff] [blame] | 3331 | hda_nid_t con_lst[HDA_MAX_NUM_INPUTS]; |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 3332 | |
| 3333 | num_cons = snd_hda_get_connections(codec, |
| 3334 | spec->smux_nids[0], |
| 3335 | con_lst, |
| 3336 | HDA_MAX_NUM_INPUTS); |
Jaroslav Kysela | 16a433d | 2009-07-22 16:20:40 +0200 | [diff] [blame] | 3337 | if (num_cons <= 0) |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 3338 | return -EINVAL; |
| 3339 | |
Matthew Ranostay | 6597363 | 2008-09-16 10:39:37 -0400 | [diff] [blame] | 3340 | if (!labels) |
| 3341 | labels = stac92xx_spdif_labels; |
| 3342 | |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 3343 | for (i = 0; i < num_cons; i++) { |
Matthew Ranostay | 6597363 | 2008-09-16 10:39:37 -0400 | [diff] [blame] | 3344 | spdif_mux->items[spdif_mux->num_items].label = labels[i]; |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 3345 | spdif_mux->items[spdif_mux->num_items].index = i; |
| 3346 | spdif_mux->num_items++; |
| 3347 | } |
| 3348 | |
| 3349 | return 0; |
| 3350 | } |
| 3351 | |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3352 | /* labels for dmic mux inputs */ |
Adrian Bunk | ddc2cec | 2006-11-20 12:03:44 +0100 | [diff] [blame] | 3353 | static const char *stac92xx_dmic_labels[5] = { |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3354 | "Analog Inputs", "Digital Mic 1", "Digital Mic 2", |
| 3355 | "Digital Mic 3", "Digital Mic 4" |
| 3356 | }; |
| 3357 | |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 3358 | static int get_connection_index(struct hda_codec *codec, hda_nid_t mux, |
| 3359 | hda_nid_t nid) |
| 3360 | { |
| 3361 | hda_nid_t conn[HDA_MAX_NUM_INPUTS]; |
| 3362 | int i, nums; |
| 3363 | |
| 3364 | nums = snd_hda_get_connections(codec, mux, conn, ARRAY_SIZE(conn)); |
| 3365 | for (i = 0; i < nums; i++) |
| 3366 | if (conn[i] == nid) |
| 3367 | return i; |
| 3368 | return -1; |
| 3369 | } |
| 3370 | |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3371 | /* create a volume assigned to the given pin (only if supported) */ |
Takashi Iwai | 96f845d | 2009-08-29 00:49:36 +0200 | [diff] [blame] | 3372 | /* return 1 if the volume control is created */ |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3373 | static int create_elem_capture_vol(struct hda_codec *codec, hda_nid_t nid, |
Takashi Iwai | 96f845d | 2009-08-29 00:49:36 +0200 | [diff] [blame] | 3374 | const char *label, int direction) |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3375 | { |
| 3376 | unsigned int caps, nums; |
| 3377 | char name[32]; |
Takashi Iwai | 96f845d | 2009-08-29 00:49:36 +0200 | [diff] [blame] | 3378 | int err; |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3379 | |
Takashi Iwai | 96f845d | 2009-08-29 00:49:36 +0200 | [diff] [blame] | 3380 | if (direction == HDA_OUTPUT) |
| 3381 | caps = AC_WCAP_OUT_AMP; |
| 3382 | else |
| 3383 | caps = AC_WCAP_IN_AMP; |
| 3384 | if (!(get_wcaps(codec, nid) & caps)) |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3385 | return 0; |
Takashi Iwai | 96f845d | 2009-08-29 00:49:36 +0200 | [diff] [blame] | 3386 | caps = query_amp_caps(codec, nid, direction); |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3387 | nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT; |
| 3388 | if (!nums) |
| 3389 | return 0; |
| 3390 | snprintf(name, sizeof(name), "%s Capture Volume", label); |
Takashi Iwai | 96f845d | 2009-08-29 00:49:36 +0200 | [diff] [blame] | 3391 | err = stac92xx_add_control(codec->spec, STAC_CTL_WIDGET_VOL, name, |
| 3392 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, direction)); |
| 3393 | if (err < 0) |
| 3394 | return err; |
| 3395 | return 1; |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3396 | } |
| 3397 | |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3398 | /* create playback/capture controls for input pins on dmic capable codecs */ |
| 3399 | static int stac92xx_auto_create_dmic_input_ctls(struct hda_codec *codec, |
| 3400 | const struct auto_pin_cfg *cfg) |
| 3401 | { |
| 3402 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 3403 | struct hda_input_mux *imux = &spec->private_imux; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3404 | struct hda_input_mux *dimux = &spec->private_dimux; |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 3405 | int err, i, active_mics; |
| 3406 | unsigned int def_conf; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3407 | |
| 3408 | dimux->items[dimux->num_items].label = stac92xx_dmic_labels[0]; |
| 3409 | dimux->items[dimux->num_items].index = 0; |
| 3410 | dimux->num_items++; |
| 3411 | |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 3412 | active_mics = 0; |
| 3413 | for (i = 0; i < spec->num_dmics; i++) { |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3414 | /* check the validity: sometimes it's a dead vendor-spec node */ |
| 3415 | if (get_wcaps_type(get_wcaps(codec, spec->dmic_nids[i])) |
| 3416 | != AC_WID_PIN) |
| 3417 | continue; |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 3418 | def_conf = snd_hda_codec_get_pincfg(codec, spec->dmic_nids[i]); |
| 3419 | if (get_defcfg_connect(def_conf) != AC_JACK_PORT_NONE) |
| 3420 | active_mics++; |
| 3421 | } |
| 3422 | |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3423 | for (i = 0; i < spec->num_dmics; i++) { |
Matthew Ranostay | 0678acc | 2008-01-08 12:10:50 +0100 | [diff] [blame] | 3424 | hda_nid_t nid; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3425 | int index; |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 3426 | const char *label; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3427 | |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3428 | nid = spec->dmic_nids[i]; |
| 3429 | if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN) |
| 3430 | continue; |
| 3431 | def_conf = snd_hda_codec_get_pincfg(codec, nid); |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3432 | if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE) |
| 3433 | continue; |
| 3434 | |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 3435 | index = get_connection_index(codec, spec->dmux_nids[0], nid); |
| 3436 | if (index < 0) |
| 3437 | continue; |
| 3438 | |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 3439 | if (active_mics == 1) |
| 3440 | label = "Digital Mic"; |
| 3441 | else |
| 3442 | label = stac92xx_dmic_labels[dimux->num_items]; |
| 3443 | |
Takashi Iwai | 96f845d | 2009-08-29 00:49:36 +0200 | [diff] [blame] | 3444 | err = create_elem_capture_vol(codec, nid, label, HDA_INPUT); |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3445 | if (err < 0) |
| 3446 | return err; |
Takashi Iwai | 96f845d | 2009-08-29 00:49:36 +0200 | [diff] [blame] | 3447 | if (!err) { |
| 3448 | err = create_elem_capture_vol(codec, nid, label, |
| 3449 | HDA_OUTPUT); |
| 3450 | if (err < 0) |
| 3451 | return err; |
| 3452 | } |
Matthew Ranostay | 0678acc | 2008-01-08 12:10:50 +0100 | [diff] [blame] | 3453 | |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 3454 | dimux->items[dimux->num_items].label = label; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3455 | dimux->items[dimux->num_items].index = index; |
| 3456 | dimux->num_items++; |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 3457 | if (snd_hda_get_bool_hint(codec, "separate_dmux") != 1) { |
| 3458 | imux->items[imux->num_items].label = label; |
| 3459 | imux->items[imux->num_items].index = index; |
| 3460 | imux->num_items++; |
| 3461 | } |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3462 | } |
| 3463 | |
| 3464 | return 0; |
| 3465 | } |
| 3466 | |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 3467 | static int check_mic_pin(struct hda_codec *codec, hda_nid_t nid, |
| 3468 | hda_nid_t *fixed, hda_nid_t *ext) |
| 3469 | { |
| 3470 | unsigned int cfg; |
| 3471 | |
| 3472 | if (!nid) |
| 3473 | return 0; |
| 3474 | cfg = snd_hda_codec_get_pincfg(codec, nid); |
| 3475 | switch (get_defcfg_connect(cfg)) { |
| 3476 | case AC_JACK_PORT_FIXED: |
| 3477 | if (*fixed) |
| 3478 | return 1; /* already occupied */ |
| 3479 | *fixed = nid; |
| 3480 | break; |
| 3481 | case AC_JACK_PORT_COMPLEX: |
| 3482 | if (*ext) |
| 3483 | return 1; /* already occupied */ |
| 3484 | *ext = nid; |
| 3485 | break; |
| 3486 | } |
| 3487 | return 0; |
| 3488 | } |
| 3489 | |
| 3490 | static int set_mic_route(struct hda_codec *codec, |
| 3491 | struct sigmatel_mic_route *mic, |
| 3492 | hda_nid_t pin) |
| 3493 | { |
| 3494 | struct sigmatel_spec *spec = codec->spec; |
| 3495 | struct auto_pin_cfg *cfg = &spec->autocfg; |
| 3496 | int i; |
| 3497 | |
| 3498 | mic->pin = pin; |
| 3499 | for (i = AUTO_PIN_MIC; i <= AUTO_PIN_FRONT_MIC; i++) |
| 3500 | if (pin == cfg->input_pins[i]) |
| 3501 | break; |
| 3502 | if (i <= AUTO_PIN_FRONT_MIC) { |
| 3503 | /* analog pin */ |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 3504 | i = get_connection_index(codec, spec->mux_nids[0], pin); |
| 3505 | if (i < 0) |
| 3506 | return -1; |
| 3507 | mic->mux_idx = i; |
Takashi Iwai | 02d3332 | 2009-10-01 16:38:11 +0200 | [diff] [blame] | 3508 | mic->dmux_idx = -1; |
| 3509 | if (spec->dmux_nids) |
| 3510 | mic->dmux_idx = get_connection_index(codec, |
| 3511 | spec->dmux_nids[0], |
| 3512 | spec->mux_nids[0]); |
Takashi Iwai | da2a2aa | 2009-08-10 07:44:09 +0200 | [diff] [blame] | 3513 | } else if (spec->dmux_nids) { |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 3514 | /* digital pin */ |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 3515 | i = get_connection_index(codec, spec->dmux_nids[0], pin); |
| 3516 | if (i < 0) |
| 3517 | return -1; |
| 3518 | mic->dmux_idx = i; |
Takashi Iwai | 02d3332 | 2009-10-01 16:38:11 +0200 | [diff] [blame] | 3519 | mic->mux_idx = -1; |
| 3520 | if (spec->mux_nids) |
| 3521 | mic->mux_idx = get_connection_index(codec, |
| 3522 | spec->mux_nids[0], |
| 3523 | spec->dmux_nids[0]); |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 3524 | } |
| 3525 | return 0; |
| 3526 | } |
| 3527 | |
| 3528 | /* return non-zero if the device is for automatic mic switch */ |
| 3529 | static int stac_check_auto_mic(struct hda_codec *codec) |
| 3530 | { |
| 3531 | struct sigmatel_spec *spec = codec->spec; |
| 3532 | struct auto_pin_cfg *cfg = &spec->autocfg; |
| 3533 | hda_nid_t fixed, ext; |
| 3534 | int i; |
| 3535 | |
| 3536 | for (i = AUTO_PIN_LINE; i < AUTO_PIN_LAST; i++) { |
| 3537 | if (cfg->input_pins[i]) |
| 3538 | return 0; /* must be exclusively mics */ |
| 3539 | } |
| 3540 | fixed = ext = 0; |
| 3541 | for (i = AUTO_PIN_MIC; i <= AUTO_PIN_FRONT_MIC; i++) |
| 3542 | if (check_mic_pin(codec, cfg->input_pins[i], &fixed, &ext)) |
| 3543 | return 0; |
| 3544 | for (i = 0; i < spec->num_dmics; i++) |
| 3545 | if (check_mic_pin(codec, spec->dmic_nids[i], &fixed, &ext)) |
| 3546 | return 0; |
| 3547 | if (!fixed || !ext) |
| 3548 | return 0; |
| 3549 | if (!(get_wcaps(codec, ext) & AC_WCAP_UNSOL_CAP)) |
| 3550 | return 0; /* no unsol support */ |
| 3551 | if (set_mic_route(codec, &spec->ext_mic, ext) || |
| 3552 | set_mic_route(codec, &spec->int_mic, fixed)) |
| 3553 | return 0; /* something is wrong */ |
| 3554 | return 1; |
| 3555 | } |
| 3556 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3557 | /* create playback/capture controls for input pins */ |
| 3558 | static int stac92xx_auto_create_analog_input_ctls(struct hda_codec *codec, const struct auto_pin_cfg *cfg) |
| 3559 | { |
| 3560 | struct sigmatel_spec *spec = codec->spec; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3561 | struct hda_input_mux *imux = &spec->private_imux; |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3562 | int i, j; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3563 | |
| 3564 | for (i = 0; i < AUTO_PIN_LAST; i++) { |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3565 | hda_nid_t nid = cfg->input_pins[i]; |
| 3566 | int index, err; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3567 | |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3568 | if (!nid) |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 3569 | continue; |
| 3570 | index = -1; |
| 3571 | for (j = 0; j < spec->num_muxes; j++) { |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3572 | index = get_connection_index(codec, spec->mux_nids[j], |
| 3573 | nid); |
| 3574 | if (index >= 0) |
| 3575 | break; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3576 | } |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3577 | if (index < 0) |
| 3578 | continue; |
| 3579 | |
| 3580 | err = create_elem_capture_vol(codec, nid, |
Takashi Iwai | 96f845d | 2009-08-29 00:49:36 +0200 | [diff] [blame] | 3581 | auto_pin_cfg_labels[i], |
| 3582 | HDA_INPUT); |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 3583 | if (err < 0) |
| 3584 | return err; |
| 3585 | |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 3586 | imux->items[imux->num_items].label = auto_pin_cfg_labels[i]; |
| 3587 | imux->items[imux->num_items].index = index; |
| 3588 | imux->num_items++; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3589 | } |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 3590 | spec->num_analog_muxes = imux->num_items; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3591 | |
Steve Longerbeam | 7b043899 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 3592 | if (imux->num_items) { |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3593 | /* |
| 3594 | * Set the current input for the muxes. |
| 3595 | * The STAC9221 has two input muxes with identical source |
| 3596 | * NID lists. Hopefully this won't get confused. |
| 3597 | */ |
| 3598 | for (i = 0; i < spec->num_muxes; i++) { |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3599 | snd_hda_codec_write_cache(codec, spec->mux_nids[i], 0, |
| 3600 | AC_VERB_SET_CONNECT_SEL, |
| 3601 | imux->items[0].index); |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3602 | } |
| 3603 | } |
| 3604 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3605 | return 0; |
| 3606 | } |
| 3607 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3608 | static void stac92xx_auto_init_multi_out(struct hda_codec *codec) |
| 3609 | { |
| 3610 | struct sigmatel_spec *spec = codec->spec; |
| 3611 | int i; |
| 3612 | |
| 3613 | for (i = 0; i < spec->autocfg.line_outs; i++) { |
| 3614 | hda_nid_t nid = spec->autocfg.line_out_pins[i]; |
| 3615 | stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN); |
| 3616 | } |
| 3617 | } |
| 3618 | |
| 3619 | static void stac92xx_auto_init_hp_out(struct hda_codec *codec) |
| 3620 | { |
| 3621 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3622 | int i; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3623 | |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3624 | for (i = 0; i < spec->autocfg.hp_outs; i++) { |
| 3625 | hda_nid_t pin; |
| 3626 | pin = spec->autocfg.hp_pins[i]; |
| 3627 | if (pin) /* connect to front */ |
| 3628 | stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN); |
| 3629 | } |
| 3630 | for (i = 0; i < spec->autocfg.speaker_outs; i++) { |
| 3631 | hda_nid_t pin; |
| 3632 | pin = spec->autocfg.speaker_pins[i]; |
| 3633 | if (pin) /* connect to front */ |
| 3634 | stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN); |
| 3635 | } |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3636 | } |
| 3637 | |
Takashi Iwai | 8af3aeb | 2009-11-18 14:23:37 +0100 | [diff] [blame^] | 3638 | static int is_dual_headphones(struct hda_codec *codec) |
| 3639 | { |
| 3640 | struct sigmatel_spec *spec = codec->spec; |
| 3641 | int i, valid_hps; |
| 3642 | |
| 3643 | if (spec->autocfg.line_out_type != AUTO_PIN_SPEAKER_OUT || |
| 3644 | spec->autocfg.hp_outs <= 1) |
| 3645 | return 0; |
| 3646 | valid_hps = 0; |
| 3647 | for (i = 0; i < spec->autocfg.hp_outs; i++) { |
| 3648 | hda_nid_t nid = spec->autocfg.hp_pins[i]; |
| 3649 | unsigned int cfg = snd_hda_codec_get_pincfg(codec, nid); |
| 3650 | if (get_defcfg_location(cfg) & AC_JACK_LOC_SEPARATE) |
| 3651 | continue; |
| 3652 | valid_hps++; |
| 3653 | } |
| 3654 | return (valid_hps > 1); |
| 3655 | } |
| 3656 | |
| 3657 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 3658 | 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] | 3659 | { |
| 3660 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3661 | int hp_swap = 0; |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 3662 | int i, err; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3663 | |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3664 | if ((err = snd_hda_parse_pin_def_config(codec, |
| 3665 | &spec->autocfg, |
| 3666 | spec->dmic_nids)) < 0) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3667 | return err; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3668 | if (! spec->autocfg.line_outs) |
Matt Porter | 869264c | 2006-01-25 19:20:50 +0100 | [diff] [blame] | 3669 | return 0; /* can't find valid pin config */ |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 3670 | |
Jiang Zhe | bcecd9b | 2007-11-12 12:57:03 +0100 | [diff] [blame] | 3671 | /* If we have no real line-out pin and multiple hp-outs, HPs should |
| 3672 | * be set up as multi-channel outputs. |
| 3673 | */ |
Takashi Iwai | 8af3aeb | 2009-11-18 14:23:37 +0100 | [diff] [blame^] | 3674 | if (is_dual_headphones(codec)) { |
Jiang Zhe | bcecd9b | 2007-11-12 12:57:03 +0100 | [diff] [blame] | 3675 | /* Copy hp_outs to line_outs, backup line_outs in |
| 3676 | * speaker_outs so that the following routines can handle |
| 3677 | * HP pins as primary outputs. |
| 3678 | */ |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 3679 | snd_printdd("stac92xx: Enabling multi-HPs workaround\n"); |
Jiang Zhe | bcecd9b | 2007-11-12 12:57:03 +0100 | [diff] [blame] | 3680 | memcpy(spec->autocfg.speaker_pins, spec->autocfg.line_out_pins, |
| 3681 | sizeof(spec->autocfg.line_out_pins)); |
| 3682 | spec->autocfg.speaker_outs = spec->autocfg.line_outs; |
| 3683 | memcpy(spec->autocfg.line_out_pins, spec->autocfg.hp_pins, |
| 3684 | sizeof(spec->autocfg.hp_pins)); |
| 3685 | spec->autocfg.line_outs = spec->autocfg.hp_outs; |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 3686 | spec->autocfg.line_out_type = AUTO_PIN_HP_OUT; |
| 3687 | spec->autocfg.hp_outs = 0; |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3688 | hp_swap = 1; |
Jiang Zhe | bcecd9b | 2007-11-12 12:57:03 +0100 | [diff] [blame] | 3689 | } |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 3690 | if (spec->autocfg.mono_out_pin) { |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 3691 | int dir = get_wcaps(codec, spec->autocfg.mono_out_pin) & |
| 3692 | (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP); |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 3693 | u32 caps = query_amp_caps(codec, |
| 3694 | spec->autocfg.mono_out_pin, dir); |
| 3695 | hda_nid_t conn_list[1]; |
| 3696 | |
| 3697 | /* get the mixer node and then the mono mux if it exists */ |
| 3698 | if (snd_hda_get_connections(codec, |
| 3699 | spec->autocfg.mono_out_pin, conn_list, 1) && |
| 3700 | snd_hda_get_connections(codec, conn_list[0], |
Jaroslav Kysela | 16a433d | 2009-07-22 16:20:40 +0200 | [diff] [blame] | 3701 | conn_list, 1) > 0) { |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 3702 | |
| 3703 | int wcaps = get_wcaps(codec, conn_list[0]); |
Takashi Iwai | a22d543 | 2009-07-27 12:54:26 +0200 | [diff] [blame] | 3704 | int wid_type = get_wcaps_type(wcaps); |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 3705 | /* LR swap check, some stac925x have a mux that |
| 3706 | * changes the DACs output path instead of the |
| 3707 | * mono-mux path. |
| 3708 | */ |
| 3709 | if (wid_type == AC_WID_AUD_SEL && |
| 3710 | !(wcaps & AC_WCAP_LR_SWAP)) |
| 3711 | spec->mono_nid = conn_list[0]; |
| 3712 | } |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 3713 | if (dir) { |
| 3714 | hda_nid_t nid = spec->autocfg.mono_out_pin; |
| 3715 | |
| 3716 | /* most mono outs have a least a mute/unmute switch */ |
| 3717 | dir = (dir & AC_WCAP_OUT_AMP) ? HDA_OUTPUT : HDA_INPUT; |
| 3718 | err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, |
| 3719 | "Mono Playback Switch", |
| 3720 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir)); |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 3721 | if (err < 0) |
| 3722 | return err; |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 3723 | /* check for volume support for the amp */ |
| 3724 | if ((caps & AC_AMPCAP_NUM_STEPS) |
| 3725 | >> AC_AMPCAP_NUM_STEPS_SHIFT) { |
| 3726 | err = stac92xx_add_control(spec, |
| 3727 | STAC_CTL_WIDGET_VOL, |
| 3728 | "Mono Playback Volume", |
| 3729 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir)); |
| 3730 | if (err < 0) |
| 3731 | return err; |
| 3732 | } |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 3733 | } |
| 3734 | |
| 3735 | stac92xx_auto_set_pinctl(codec, spec->autocfg.mono_out_pin, |
| 3736 | AC_PINCTL_OUT_EN); |
| 3737 | } |
Jiang Zhe | bcecd9b | 2007-11-12 12:57:03 +0100 | [diff] [blame] | 3738 | |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 3739 | if (!spec->multiout.num_dacs) { |
| 3740 | err = stac92xx_auto_fill_dac_nids(codec); |
| 3741 | if (err < 0) |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 3742 | return err; |
Takashi Iwai | c9280d6 | 2009-01-15 17:31:00 +0100 | [diff] [blame] | 3743 | err = stac92xx_auto_create_multi_out_ctls(codec, |
| 3744 | &spec->autocfg); |
| 3745 | if (err < 0) |
| 3746 | return err; |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 3747 | } |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3748 | |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 3749 | /* setup analog beep controls */ |
| 3750 | if (spec->anabeep_nid > 0) { |
| 3751 | err = stac92xx_auto_create_beep_ctls(codec, |
| 3752 | spec->anabeep_nid); |
| 3753 | if (err < 0) |
| 3754 | return err; |
| 3755 | } |
| 3756 | |
| 3757 | /* setup digital beep controls and input device */ |
| 3758 | #ifdef CONFIG_SND_HDA_INPUT_BEEP |
| 3759 | if (spec->digbeep_nid > 0) { |
| 3760 | hda_nid_t nid = spec->digbeep_nid; |
Takashi Iwai | 4d4e9bb | 2008-11-12 16:45:04 +0100 | [diff] [blame] | 3761 | unsigned int caps; |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 3762 | |
| 3763 | err = stac92xx_auto_create_beep_ctls(codec, nid); |
| 3764 | if (err < 0) |
| 3765 | return err; |
| 3766 | err = snd_hda_attach_beep_device(codec, nid); |
| 3767 | if (err < 0) |
| 3768 | return err; |
Takashi Iwai | fa79796 | 2009-05-19 12:50:04 +0200 | [diff] [blame] | 3769 | /* IDT/STAC codecs have linear beep tone parameter */ |
| 3770 | codec->beep->linear_tone = 1; |
Takashi Iwai | 4d4e9bb | 2008-11-12 16:45:04 +0100 | [diff] [blame] | 3771 | /* if no beep switch is available, make its own one */ |
| 3772 | caps = query_amp_caps(codec, nid, HDA_OUTPUT); |
| 3773 | if (codec->beep && |
| 3774 | !((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT)) { |
| 3775 | err = stac92xx_beep_switch_ctl(codec); |
| 3776 | if (err < 0) |
| 3777 | return err; |
| 3778 | } |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 3779 | } |
| 3780 | #endif |
| 3781 | |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 3782 | err = stac92xx_auto_create_hp_ctls(codec, &spec->autocfg); |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 3783 | if (err < 0) |
| 3784 | return err; |
| 3785 | |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3786 | /* All output parsing done, now restore the swapped hp pins */ |
| 3787 | if (hp_swap) { |
| 3788 | memcpy(spec->autocfg.hp_pins, spec->autocfg.line_out_pins, |
| 3789 | sizeof(spec->autocfg.hp_pins)); |
| 3790 | spec->autocfg.hp_outs = spec->autocfg.line_outs; |
| 3791 | spec->autocfg.line_out_type = AUTO_PIN_HP_OUT; |
| 3792 | spec->autocfg.line_outs = 0; |
| 3793 | } |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 3794 | |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 3795 | if (stac_check_auto_mic(codec)) { |
| 3796 | spec->auto_mic = 1; |
| 3797 | /* only one capture for auto-mic */ |
| 3798 | spec->num_adcs = 1; |
| 3799 | spec->num_caps = 1; |
| 3800 | spec->num_muxes = 1; |
| 3801 | } |
| 3802 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 3803 | for (i = 0; i < spec->num_caps; i++) { |
| 3804 | err = stac92xx_add_capvol_ctls(codec, spec->capvols[i], |
| 3805 | spec->capsws[i], i); |
| 3806 | if (err < 0) |
| 3807 | return err; |
| 3808 | } |
| 3809 | |
Takashi Iwai | dc04d1b | 2009-03-06 10:00:05 +0100 | [diff] [blame] | 3810 | err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg); |
Maxim Levitsky | 0fb87bb | 2007-09-03 15:29:04 +0200 | [diff] [blame] | 3811 | if (err < 0) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3812 | return err; |
| 3813 | |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 3814 | if (spec->mono_nid > 0) { |
| 3815 | err = stac92xx_auto_create_mono_output_ctls(codec); |
| 3816 | if (err < 0) |
| 3817 | return err; |
| 3818 | } |
Matthew Ranostay | 2a9c781 | 2008-09-13 16:45:39 -0400 | [diff] [blame] | 3819 | if (spec->num_dmics > 0 && !spec->dinput_mux) |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3820 | if ((err = stac92xx_auto_create_dmic_input_ctls(codec, |
| 3821 | &spec->autocfg)) < 0) |
| 3822 | return err; |
Matthew Ranostay | 4682eee | 2008-08-15 07:43:24 +0200 | [diff] [blame] | 3823 | if (spec->num_muxes > 0) { |
| 3824 | err = stac92xx_auto_create_mux_input_ctls(codec); |
| 3825 | if (err < 0) |
| 3826 | return err; |
| 3827 | } |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 3828 | if (spec->num_smuxes > 0) { |
| 3829 | err = stac92xx_auto_create_spdif_mux_ctls(codec); |
| 3830 | if (err < 0) |
| 3831 | return err; |
| 3832 | } |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3833 | |
Takashi Iwai | e3c7596 | 2009-01-23 11:57:22 +0100 | [diff] [blame] | 3834 | err = stac92xx_add_input_source(spec); |
| 3835 | if (err < 0) |
| 3836 | return err; |
| 3837 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3838 | spec->multiout.max_channels = spec->multiout.num_dacs * 2; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 3839 | if (spec->multiout.max_channels > 2) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3840 | spec->surr_switch = 1; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3841 | |
Takashi Iwai | 0852d7a | 2009-02-11 11:35:15 +0100 | [diff] [blame] | 3842 | if (spec->autocfg.dig_outs) |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 3843 | spec->multiout.dig_out_nid = dig_out; |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 3844 | if (dig_in && spec->autocfg.dig_in_pin) |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 3845 | spec->dig_in_nid = dig_in; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3846 | |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3847 | if (spec->kctls.list) |
| 3848 | spec->mixers[spec->num_mixers++] = spec->kctls.list; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3849 | |
| 3850 | spec->input_mux = &spec->private_imux; |
Matthew Ranostay | f8ccbf6 | 2008-12-20 17:36:28 -0500 | [diff] [blame] | 3851 | if (!spec->dinput_mux) |
| 3852 | spec->dinput_mux = &spec->private_dimux; |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 3853 | spec->sinput_mux = &spec->private_smux; |
Matthew Ranostay | b22b482 | 2008-01-22 12:32:30 +0100 | [diff] [blame] | 3854 | spec->mono_mux = &spec->private_mono_mux; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3855 | return 1; |
| 3856 | } |
| 3857 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3858 | /* add playback controls for HP output */ |
| 3859 | static int stac9200_auto_create_hp_ctls(struct hda_codec *codec, |
| 3860 | struct auto_pin_cfg *cfg) |
| 3861 | { |
| 3862 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3863 | hda_nid_t pin = cfg->hp_pins[0]; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3864 | unsigned int wid_caps; |
| 3865 | |
| 3866 | if (! pin) |
| 3867 | return 0; |
| 3868 | |
| 3869 | wid_caps = get_wcaps(codec, pin); |
Takashi Iwai | 505cb34 | 2006-03-27 12:51:52 +0200 | [diff] [blame] | 3870 | if (wid_caps & AC_WCAP_UNSOL_CAP) |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3871 | spec->hp_detect = 1; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3872 | |
| 3873 | return 0; |
| 3874 | } |
| 3875 | |
Richard Fish | 160ea0d | 2006-09-06 13:58:25 +0200 | [diff] [blame] | 3876 | /* add playback controls for LFE output */ |
| 3877 | static int stac9200_auto_create_lfe_ctls(struct hda_codec *codec, |
| 3878 | struct auto_pin_cfg *cfg) |
| 3879 | { |
| 3880 | struct sigmatel_spec *spec = codec->spec; |
| 3881 | int err; |
| 3882 | hda_nid_t lfe_pin = 0x0; |
| 3883 | int i; |
| 3884 | |
| 3885 | /* |
| 3886 | * search speaker outs and line outs for a mono speaker pin |
| 3887 | * with an amp. If one is found, add LFE controls |
| 3888 | * for it. |
| 3889 | */ |
| 3890 | for (i = 0; i < spec->autocfg.speaker_outs && lfe_pin == 0x0; i++) { |
| 3891 | hda_nid_t pin = spec->autocfg.speaker_pins[i]; |
Takashi Iwai | 64ed0df | 2008-02-29 11:57:53 +0100 | [diff] [blame] | 3892 | unsigned int wcaps = get_wcaps(codec, pin); |
Richard Fish | 160ea0d | 2006-09-06 13:58:25 +0200 | [diff] [blame] | 3893 | wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP); |
| 3894 | if (wcaps == AC_WCAP_OUT_AMP) |
| 3895 | /* found a mono speaker with an amp, must be lfe */ |
| 3896 | lfe_pin = pin; |
| 3897 | } |
| 3898 | |
| 3899 | /* if speaker_outs is 0, then speakers may be in line_outs */ |
| 3900 | if (lfe_pin == 0 && spec->autocfg.speaker_outs == 0) { |
| 3901 | for (i = 0; i < spec->autocfg.line_outs && lfe_pin == 0x0; i++) { |
| 3902 | hda_nid_t pin = spec->autocfg.line_out_pins[i]; |
Takashi Iwai | 64ed0df | 2008-02-29 11:57:53 +0100 | [diff] [blame] | 3903 | unsigned int defcfg; |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 3904 | defcfg = snd_hda_codec_get_pincfg(codec, pin); |
Harvey Harrison | 8b55178 | 2008-02-29 11:56:48 +0100 | [diff] [blame] | 3905 | if (get_defcfg_device(defcfg) == AC_JACK_SPEAKER) { |
Takashi Iwai | 64ed0df | 2008-02-29 11:57:53 +0100 | [diff] [blame] | 3906 | unsigned int wcaps = get_wcaps(codec, pin); |
Richard Fish | 160ea0d | 2006-09-06 13:58:25 +0200 | [diff] [blame] | 3907 | wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP); |
| 3908 | if (wcaps == AC_WCAP_OUT_AMP) |
| 3909 | /* found a mono speaker with an amp, |
| 3910 | must be lfe */ |
| 3911 | lfe_pin = pin; |
| 3912 | } |
| 3913 | } |
| 3914 | } |
| 3915 | |
| 3916 | if (lfe_pin) { |
Takashi Iwai | 7c7767e | 2009-01-20 15:28:38 +0100 | [diff] [blame] | 3917 | err = create_controls(codec, "LFE", lfe_pin, 1); |
Richard Fish | 160ea0d | 2006-09-06 13:58:25 +0200 | [diff] [blame] | 3918 | if (err < 0) |
| 3919 | return err; |
| 3920 | } |
| 3921 | |
| 3922 | return 0; |
| 3923 | } |
| 3924 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3925 | static int stac9200_parse_auto_config(struct hda_codec *codec) |
| 3926 | { |
| 3927 | struct sigmatel_spec *spec = codec->spec; |
| 3928 | int err; |
| 3929 | |
Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 3930 | if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3931 | return err; |
| 3932 | |
| 3933 | if ((err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg)) < 0) |
| 3934 | return err; |
| 3935 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3936 | if ((err = stac9200_auto_create_hp_ctls(codec, &spec->autocfg)) < 0) |
| 3937 | return err; |
| 3938 | |
Richard Fish | 160ea0d | 2006-09-06 13:58:25 +0200 | [diff] [blame] | 3939 | if ((err = stac9200_auto_create_lfe_ctls(codec, &spec->autocfg)) < 0) |
| 3940 | return err; |
| 3941 | |
Takashi Iwai | 355a0ec | 2008-11-11 16:46:19 +0100 | [diff] [blame] | 3942 | if (spec->num_muxes > 0) { |
| 3943 | err = stac92xx_auto_create_mux_input_ctls(codec); |
| 3944 | if (err < 0) |
| 3945 | return err; |
| 3946 | } |
| 3947 | |
Takashi Iwai | e3c7596 | 2009-01-23 11:57:22 +0100 | [diff] [blame] | 3948 | err = stac92xx_add_input_source(spec); |
| 3949 | if (err < 0) |
| 3950 | return err; |
| 3951 | |
Takashi Iwai | 0852d7a | 2009-02-11 11:35:15 +0100 | [diff] [blame] | 3952 | if (spec->autocfg.dig_outs) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3953 | spec->multiout.dig_out_nid = 0x05; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3954 | if (spec->autocfg.dig_in_pin) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3955 | spec->dig_in_nid = 0x04; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3956 | |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3957 | if (spec->kctls.list) |
| 3958 | spec->mixers[spec->num_mixers++] = spec->kctls.list; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3959 | |
| 3960 | spec->input_mux = &spec->private_imux; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 3961 | spec->dinput_mux = &spec->private_dimux; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 3962 | |
| 3963 | return 1; |
| 3964 | } |
| 3965 | |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3966 | /* |
| 3967 | * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a |
| 3968 | * funky external mute control using GPIO pins. |
| 3969 | */ |
| 3970 | |
Takashi Iwai | 76e1ddf | 2008-01-15 11:39:08 +0100 | [diff] [blame] | 3971 | static void stac_gpio_set(struct hda_codec *codec, unsigned int mask, |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 3972 | unsigned int dir_mask, unsigned int data) |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3973 | { |
| 3974 | unsigned int gpiostate, gpiomask, gpiodir; |
| 3975 | |
| 3976 | gpiostate = snd_hda_codec_read(codec, codec->afg, 0, |
| 3977 | AC_VERB_GET_GPIO_DATA, 0); |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 3978 | gpiostate = (gpiostate & ~dir_mask) | (data & dir_mask); |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3979 | |
| 3980 | gpiomask = snd_hda_codec_read(codec, codec->afg, 0, |
| 3981 | AC_VERB_GET_GPIO_MASK, 0); |
Takashi Iwai | 76e1ddf | 2008-01-15 11:39:08 +0100 | [diff] [blame] | 3982 | gpiomask |= mask; |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3983 | |
| 3984 | gpiodir = snd_hda_codec_read(codec, codec->afg, 0, |
| 3985 | AC_VERB_GET_GPIO_DIRECTION, 0); |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 3986 | gpiodir |= dir_mask; |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3987 | |
Takashi Iwai | 76e1ddf | 2008-01-15 11:39:08 +0100 | [diff] [blame] | 3988 | /* Configure GPIOx as CMOS */ |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3989 | snd_hda_codec_write(codec, codec->afg, 0, 0x7e7, 0); |
| 3990 | |
| 3991 | snd_hda_codec_write(codec, codec->afg, 0, |
| 3992 | AC_VERB_SET_GPIO_MASK, gpiomask); |
Takashi Iwai | 76e1ddf | 2008-01-15 11:39:08 +0100 | [diff] [blame] | 3993 | snd_hda_codec_read(codec, codec->afg, 0, |
| 3994 | AC_VERB_SET_GPIO_DIRECTION, gpiodir); /* sync */ |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 3995 | |
| 3996 | msleep(1); |
| 3997 | |
Takashi Iwai | 76e1ddf | 2008-01-15 11:39:08 +0100 | [diff] [blame] | 3998 | snd_hda_codec_read(codec, codec->afg, 0, |
| 3999 | AC_VERB_SET_GPIO_DATA, gpiostate); /* sync */ |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 4000 | } |
| 4001 | |
Takashi Iwai | 8c8145b | 2009-06-22 17:00:38 +0200 | [diff] [blame] | 4002 | #ifdef CONFIG_SND_HDA_INPUT_JACK |
Takashi Iwai | 95c0909 | 2009-04-14 16:15:29 +0200 | [diff] [blame] | 4003 | static void stac92xx_free_jack_priv(struct snd_jack *jack) |
| 4004 | { |
| 4005 | struct sigmatel_jack *jacks = jack->private_data; |
| 4006 | jacks->nid = 0; |
| 4007 | jacks->jack = NULL; |
| 4008 | } |
| 4009 | #endif |
| 4010 | |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4011 | static int stac92xx_add_jack(struct hda_codec *codec, |
| 4012 | hda_nid_t nid, int type) |
| 4013 | { |
Takashi Iwai | 8c8145b | 2009-06-22 17:00:38 +0200 | [diff] [blame] | 4014 | #ifdef CONFIG_SND_HDA_INPUT_JACK |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4015 | struct sigmatel_spec *spec = codec->spec; |
| 4016 | struct sigmatel_jack *jack; |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 4017 | int def_conf = snd_hda_codec_get_pincfg(codec, nid); |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4018 | int connectivity = get_defcfg_connect(def_conf); |
| 4019 | char name[32]; |
Takashi Iwai | 95c0909 | 2009-04-14 16:15:29 +0200 | [diff] [blame] | 4020 | int err; |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4021 | |
| 4022 | if (connectivity && connectivity != AC_JACK_PORT_FIXED) |
| 4023 | return 0; |
| 4024 | |
| 4025 | snd_array_init(&spec->jacks, sizeof(*jack), 32); |
| 4026 | jack = snd_array_new(&spec->jacks); |
| 4027 | if (!jack) |
| 4028 | return -ENOMEM; |
| 4029 | jack->nid = nid; |
| 4030 | jack->type = type; |
| 4031 | |
Takashi Iwai | 86de741 | 2009-07-22 16:02:46 +0200 | [diff] [blame] | 4032 | snprintf(name, sizeof(name), "%s at %s %s Jack", |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4033 | snd_hda_get_jack_type(def_conf), |
| 4034 | snd_hda_get_jack_connectivity(def_conf), |
| 4035 | snd_hda_get_jack_location(def_conf)); |
| 4036 | |
Takashi Iwai | 95c0909 | 2009-04-14 16:15:29 +0200 | [diff] [blame] | 4037 | err = snd_jack_new(codec->bus->card, name, type, &jack->jack); |
| 4038 | if (err < 0) { |
| 4039 | jack->nid = 0; |
| 4040 | return err; |
| 4041 | } |
| 4042 | jack->jack->private_data = jack; |
| 4043 | jack->jack->private_free = stac92xx_free_jack_priv; |
Takashi Iwai | e4973e1 | 2008-11-18 09:32:42 +0100 | [diff] [blame] | 4044 | #endif |
Takashi Iwai | 95c0909 | 2009-04-14 16:15:29 +0200 | [diff] [blame] | 4045 | return 0; |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4046 | } |
| 4047 | |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4048 | static int stac_add_event(struct sigmatel_spec *spec, hda_nid_t nid, |
| 4049 | unsigned char type, int data) |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4050 | { |
| 4051 | struct sigmatel_event *event; |
| 4052 | |
| 4053 | snd_array_init(&spec->events, sizeof(*event), 32); |
| 4054 | event = snd_array_new(&spec->events); |
| 4055 | if (!event) |
| 4056 | return -ENOMEM; |
| 4057 | event->nid = nid; |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4058 | event->type = type; |
| 4059 | event->tag = spec->events.used; |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4060 | event->data = data; |
| 4061 | |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4062 | return event->tag; |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4063 | } |
| 4064 | |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4065 | static struct sigmatel_event *stac_get_event(struct hda_codec *codec, |
Takashi Iwai | 62558ce | 2009-07-29 14:23:09 +0200 | [diff] [blame] | 4066 | hda_nid_t nid) |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4067 | { |
| 4068 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4069 | struct sigmatel_event *event = spec->events.list; |
| 4070 | int i; |
| 4071 | |
| 4072 | for (i = 0; i < spec->events.used; i++, event++) { |
Takashi Iwai | 62558ce | 2009-07-29 14:23:09 +0200 | [diff] [blame] | 4073 | if (event->nid == nid) |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4074 | return event; |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4075 | } |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4076 | return NULL; |
| 4077 | } |
| 4078 | |
| 4079 | static struct sigmatel_event *stac_get_event_from_tag(struct hda_codec *codec, |
| 4080 | unsigned char tag) |
| 4081 | { |
| 4082 | struct sigmatel_spec *spec = codec->spec; |
| 4083 | struct sigmatel_event *event = spec->events.list; |
| 4084 | int i; |
| 4085 | |
| 4086 | for (i = 0; i < spec->events.used; i++, event++) { |
| 4087 | if (event->tag == tag) |
| 4088 | return event; |
| 4089 | } |
| 4090 | return NULL; |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4091 | } |
| 4092 | |
Takashi Iwai | 62558ce | 2009-07-29 14:23:09 +0200 | [diff] [blame] | 4093 | /* check if given nid is a valid pin and no other events are assigned |
| 4094 | * to it. If OK, assign the event, set the unsol flag, and returns 1. |
| 4095 | * Otherwise, returns zero. |
| 4096 | */ |
| 4097 | static int enable_pin_detect(struct hda_codec *codec, hda_nid_t nid, |
| 4098 | unsigned int type) |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 4099 | { |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4100 | struct sigmatel_event *event; |
| 4101 | int tag; |
| 4102 | |
| 4103 | if (!(get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP)) |
Takashi Iwai | 62558ce | 2009-07-29 14:23:09 +0200 | [diff] [blame] | 4104 | return 0; |
| 4105 | event = stac_get_event(codec, nid); |
| 4106 | if (event) { |
| 4107 | if (event->type != type) |
| 4108 | return 0; |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4109 | tag = event->tag; |
Takashi Iwai | 62558ce | 2009-07-29 14:23:09 +0200 | [diff] [blame] | 4110 | } else { |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4111 | tag = stac_add_event(codec->spec, nid, type, 0); |
Takashi Iwai | 62558ce | 2009-07-29 14:23:09 +0200 | [diff] [blame] | 4112 | if (tag < 0) |
| 4113 | return 0; |
| 4114 | } |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4115 | snd_hda_codec_write_cache(codec, nid, 0, |
| 4116 | AC_VERB_SET_UNSOLICITED_ENABLE, |
| 4117 | AC_USRSP_EN | tag); |
Takashi Iwai | 62558ce | 2009-07-29 14:23:09 +0200 | [diff] [blame] | 4118 | return 1; |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 4119 | } |
| 4120 | |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4121 | static int is_nid_hp_pin(struct auto_pin_cfg *cfg, hda_nid_t nid) |
| 4122 | { |
| 4123 | int i; |
| 4124 | for (i = 0; i < cfg->hp_outs; i++) |
| 4125 | if (cfg->hp_pins[i] == nid) |
| 4126 | return 1; /* nid is a HP-Out */ |
| 4127 | |
| 4128 | return 0; /* nid is not a HP-Out */ |
| 4129 | }; |
| 4130 | |
Matthew Ranostay | b76c850 | 2008-02-06 14:49:44 +0100 | [diff] [blame] | 4131 | static void stac92xx_power_down(struct hda_codec *codec) |
| 4132 | { |
| 4133 | struct sigmatel_spec *spec = codec->spec; |
| 4134 | |
| 4135 | /* power down inactive DACs */ |
| 4136 | hda_nid_t *dac; |
| 4137 | for (dac = spec->dac_list; *dac; dac++) |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 4138 | if (!check_all_dac_nids(spec, *dac)) |
Takashi Iwai | 8c2f767 | 2008-12-01 11:54:35 +0100 | [diff] [blame] | 4139 | snd_hda_codec_write(codec, *dac, 0, |
Matthew Ranostay | b76c850 | 2008-02-06 14:49:44 +0100 | [diff] [blame] | 4140 | AC_VERB_SET_POWER_STATE, AC_PWRST_D3); |
| 4141 | } |
| 4142 | |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4143 | static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid, |
| 4144 | int enable); |
| 4145 | |
Takashi Iwai | 6565e4f | 2009-03-02 14:38:35 +0100 | [diff] [blame] | 4146 | /* override some hints from the hwdep entry */ |
| 4147 | static void stac_store_hints(struct hda_codec *codec) |
| 4148 | { |
| 4149 | struct sigmatel_spec *spec = codec->spec; |
| 4150 | const char *p; |
| 4151 | int val; |
| 4152 | |
| 4153 | val = snd_hda_get_bool_hint(codec, "hp_detect"); |
| 4154 | if (val >= 0) |
| 4155 | spec->hp_detect = val; |
| 4156 | p = snd_hda_get_hint(codec, "gpio_mask"); |
| 4157 | if (p) { |
| 4158 | spec->gpio_mask = simple_strtoul(p, NULL, 0); |
| 4159 | spec->eapd_mask = spec->gpio_dir = spec->gpio_data = |
| 4160 | spec->gpio_mask; |
| 4161 | } |
| 4162 | p = snd_hda_get_hint(codec, "gpio_dir"); |
| 4163 | if (p) |
| 4164 | spec->gpio_dir = simple_strtoul(p, NULL, 0) & spec->gpio_mask; |
| 4165 | p = snd_hda_get_hint(codec, "gpio_data"); |
| 4166 | if (p) |
| 4167 | spec->gpio_data = simple_strtoul(p, NULL, 0) & spec->gpio_mask; |
| 4168 | p = snd_hda_get_hint(codec, "eapd_mask"); |
| 4169 | if (p) |
| 4170 | spec->eapd_mask = simple_strtoul(p, NULL, 0) & spec->gpio_mask; |
| 4171 | val = snd_hda_get_bool_hint(codec, "eapd_switch"); |
| 4172 | if (val >= 0) |
| 4173 | spec->eapd_switch = val; |
| 4174 | } |
| 4175 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 4176 | static int stac92xx_init(struct hda_codec *codec) |
| 4177 | { |
| 4178 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4179 | struct auto_pin_cfg *cfg = &spec->autocfg; |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4180 | unsigned int gpio; |
Takashi Iwai | e4973e1 | 2008-11-18 09:32:42 +0100 | [diff] [blame] | 4181 | int i; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 4182 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 4183 | snd_hda_sequence_write(codec, spec->init); |
| 4184 | |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 4185 | /* power down adcs initially */ |
| 4186 | if (spec->powerdown_adcs) |
| 4187 | for (i = 0; i < spec->num_adcs; i++) |
Takashi Iwai | 8c2f767 | 2008-12-01 11:54:35 +0100 | [diff] [blame] | 4188 | snd_hda_codec_write(codec, |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 4189 | spec->adc_nids[i], 0, |
| 4190 | AC_VERB_SET_POWER_STATE, AC_PWRST_D3); |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4191 | |
Takashi Iwai | 6565e4f | 2009-03-02 14:38:35 +0100 | [diff] [blame] | 4192 | /* override some hints */ |
| 4193 | stac_store_hints(codec); |
| 4194 | |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4195 | /* set up GPIO */ |
| 4196 | gpio = spec->gpio_data; |
| 4197 | /* turn on EAPD statically when spec->eapd_switch isn't set. |
| 4198 | * otherwise, unsol event will turn it on/off dynamically |
| 4199 | */ |
| 4200 | if (!spec->eapd_switch) |
| 4201 | gpio |= spec->eapd_mask; |
| 4202 | stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, gpio); |
| 4203 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4204 | /* set up pins */ |
| 4205 | if (spec->hp_detect) { |
Takashi Iwai | 505cb34 | 2006-03-27 12:51:52 +0200 | [diff] [blame] | 4206 | /* Enable unsolicited responses on the HP widget */ |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4207 | for (i = 0; i < cfg->hp_outs; i++) { |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4208 | hda_nid_t nid = cfg->hp_pins[i]; |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4209 | enable_pin_detect(codec, nid, STAC_HP_EVENT); |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4210 | } |
Takashi Iwai | 1c4bdf9 | 2009-08-13 08:23:24 +0200 | [diff] [blame] | 4211 | if (cfg->line_out_type == AUTO_PIN_LINE_OUT && |
| 4212 | cfg->speaker_outs > 0) { |
Takashi Iwai | fefd67f | 2009-07-30 18:03:05 +0200 | [diff] [blame] | 4213 | /* enable pin-detect for line-outs as well */ |
Takashi Iwai | 15cfa2b | 2009-08-03 14:23:33 +0200 | [diff] [blame] | 4214 | for (i = 0; i < cfg->line_outs; i++) { |
| 4215 | hda_nid_t nid = cfg->line_out_pins[i]; |
Takashi Iwai | fefd67f | 2009-07-30 18:03:05 +0200 | [diff] [blame] | 4216 | enable_pin_detect(codec, nid, STAC_LO_EVENT); |
| 4217 | } |
| 4218 | } |
| 4219 | |
Takashi Iwai | 0a07acaf | 2007-03-13 10:40:23 +0100 | [diff] [blame] | 4220 | /* force to enable the first line-out; the others are set up |
| 4221 | * in unsol_event |
| 4222 | */ |
| 4223 | stac92xx_auto_set_pinctl(codec, spec->autocfg.line_out_pins[0], |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4224 | AC_PINCTL_OUT_EN); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4225 | /* fake event to set up pins */ |
Takashi Iwai | 5f380eb | 2009-09-14 15:36:14 +0200 | [diff] [blame] | 4226 | if (cfg->hp_pins[0]) |
| 4227 | stac_issue_unsol_event(codec, cfg->hp_pins[0]); |
| 4228 | else if (cfg->line_out_pins[0]) |
| 4229 | stac_issue_unsol_event(codec, cfg->line_out_pins[0]); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4230 | } else { |
| 4231 | stac92xx_auto_init_multi_out(codec); |
| 4232 | stac92xx_auto_init_hp_out(codec); |
Takashi Iwai | 12dde4c | 2008-12-05 13:09:27 +0100 | [diff] [blame] | 4233 | for (i = 0; i < cfg->hp_outs; i++) |
| 4234 | stac_toggle_power_map(codec, cfg->hp_pins[i], 1); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4235 | } |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 4236 | if (spec->auto_mic) { |
Takashi Iwai | 15b4f29 | 2009-07-29 16:32:55 +0200 | [diff] [blame] | 4237 | /* initialize connection to analog input */ |
Takashi Iwai | da2a2aa | 2009-08-10 07:44:09 +0200 | [diff] [blame] | 4238 | if (spec->dmux_nids) |
| 4239 | snd_hda_codec_write_cache(codec, spec->dmux_nids[0], 0, |
Takashi Iwai | 15b4f29 | 2009-07-29 16:32:55 +0200 | [diff] [blame] | 4240 | AC_VERB_SET_CONNECT_SEL, 0); |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 4241 | if (enable_pin_detect(codec, spec->ext_mic.pin, STAC_MIC_EVENT)) |
| 4242 | stac_issue_unsol_event(codec, spec->ext_mic.pin); |
| 4243 | } |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4244 | for (i = 0; i < AUTO_PIN_LAST; i++) { |
Takashi Iwai | c960a03 | 2006-03-23 17:06:28 +0100 | [diff] [blame] | 4245 | hda_nid_t nid = cfg->input_pins[i]; |
| 4246 | if (nid) { |
Takashi Iwai | 12dde4c | 2008-12-05 13:09:27 +0100 | [diff] [blame] | 4247 | unsigned int pinctl, conf; |
Takashi Iwai | 4f1e6bc | 2008-11-11 16:47:24 +0100 | [diff] [blame] | 4248 | if (i == AUTO_PIN_MIC || i == AUTO_PIN_FRONT_MIC) { |
| 4249 | /* for mic pins, force to initialize */ |
Nickolas Lloyd | 7c922de | 2009-06-01 11:12:29 +0200 | [diff] [blame] | 4250 | pinctl = stac92xx_get_default_vref(codec, nid); |
Takashi Iwai | 12dde4c | 2008-12-05 13:09:27 +0100 | [diff] [blame] | 4251 | pinctl |= AC_PINCTL_IN_EN; |
| 4252 | stac92xx_auto_set_pinctl(codec, nid, pinctl); |
Takashi Iwai | 4f1e6bc | 2008-11-11 16:47:24 +0100 | [diff] [blame] | 4253 | } else { |
| 4254 | pinctl = snd_hda_codec_read(codec, nid, 0, |
| 4255 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); |
| 4256 | /* if PINCTL already set then skip */ |
Takashi Iwai | 5dd17cb | 2009-05-07 16:22:53 +0200 | [diff] [blame] | 4257 | /* Also, if both INPUT and OUTPUT are set, |
| 4258 | * it must be a BIOS bug; need to override, too |
| 4259 | */ |
| 4260 | if (!(pinctl & AC_PINCTL_IN_EN) || |
| 4261 | (pinctl & AC_PINCTL_OUT_EN)) { |
| 4262 | pinctl &= ~AC_PINCTL_OUT_EN; |
Takashi Iwai | 12dde4c | 2008-12-05 13:09:27 +0100 | [diff] [blame] | 4263 | pinctl |= AC_PINCTL_IN_EN; |
| 4264 | stac92xx_auto_set_pinctl(codec, nid, |
| 4265 | pinctl); |
| 4266 | } |
Takashi Iwai | 4f1e6bc | 2008-11-11 16:47:24 +0100 | [diff] [blame] | 4267 | } |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 4268 | conf = snd_hda_codec_get_pincfg(codec, nid); |
Takashi Iwai | 12dde4c | 2008-12-05 13:09:27 +0100 | [diff] [blame] | 4269 | if (get_defcfg_connect(conf) != AC_JACK_PORT_FIXED) { |
Takashi Iwai | 62558ce | 2009-07-29 14:23:09 +0200 | [diff] [blame] | 4270 | if (enable_pin_detect(codec, nid, |
| 4271 | STAC_INSERT_EVENT)) |
| 4272 | stac_issue_unsol_event(codec, nid); |
Takashi Iwai | 12dde4c | 2008-12-05 13:09:27 +0100 | [diff] [blame] | 4273 | } |
Takashi Iwai | c960a03 | 2006-03-23 17:06:28 +0100 | [diff] [blame] | 4274 | } |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4275 | } |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4276 | for (i = 0; i < spec->num_dmics; i++) |
| 4277 | stac92xx_auto_set_pinctl(codec, spec->dmic_nids[i], |
| 4278 | AC_PINCTL_IN_EN); |
Takashi Iwai | 0852d7a | 2009-02-11 11:35:15 +0100 | [diff] [blame] | 4279 | if (cfg->dig_out_pins[0]) |
| 4280 | stac92xx_auto_set_pinctl(codec, cfg->dig_out_pins[0], |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4281 | AC_PINCTL_OUT_EN); |
| 4282 | if (cfg->dig_in_pin) |
| 4283 | stac92xx_auto_set_pinctl(codec, cfg->dig_in_pin, |
| 4284 | AC_PINCTL_IN_EN); |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4285 | for (i = 0; i < spec->num_pwrs; i++) { |
| 4286 | hda_nid_t nid = spec->pwr_nids[i]; |
| 4287 | int pinctl, def_conf; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4288 | |
Takashi Iwai | eb63212 | 2008-12-19 16:39:48 +0100 | [diff] [blame] | 4289 | /* power on when no jack detection is available */ |
| 4290 | if (!spec->hp_detect) { |
| 4291 | stac_toggle_power_map(codec, nid, 1); |
| 4292 | continue; |
| 4293 | } |
| 4294 | |
| 4295 | if (is_nid_hp_pin(cfg, nid)) |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4296 | continue; /* already has an unsol event */ |
Sam Revitch | 62fe78e | 2006-05-10 15:09:17 +0200 | [diff] [blame] | 4297 | |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4298 | pinctl = snd_hda_codec_read(codec, nid, 0, |
| 4299 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); |
| 4300 | /* outputs are only ports capable of power management |
| 4301 | * any attempts on powering down a input port cause the |
| 4302 | * referenced VREF to act quirky. |
| 4303 | */ |
Takashi Iwai | eb63212 | 2008-12-19 16:39:48 +0100 | [diff] [blame] | 4304 | if (pinctl & AC_PINCTL_IN_EN) { |
| 4305 | stac_toggle_power_map(codec, nid, 1); |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4306 | continue; |
Takashi Iwai | eb63212 | 2008-12-19 16:39:48 +0100 | [diff] [blame] | 4307 | } |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 4308 | def_conf = snd_hda_codec_get_pincfg(codec, nid); |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4309 | def_conf = get_defcfg_connect(def_conf); |
| 4310 | /* skip any ports that don't have jacks since presence |
| 4311 | * detection is useless */ |
| 4312 | if (def_conf != AC_JACK_PORT_COMPLEX) { |
| 4313 | if (def_conf != AC_JACK_PORT_NONE) |
| 4314 | stac_toggle_power_map(codec, nid, 1); |
| 4315 | continue; |
| 4316 | } |
Takashi Iwai | 62558ce | 2009-07-29 14:23:09 +0200 | [diff] [blame] | 4317 | if (enable_pin_detect(codec, nid, STAC_PWR_EVENT)) |
| 4318 | stac_issue_unsol_event(codec, nid); |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4319 | } |
| 4320 | if (spec->dac_list) |
| 4321 | stac92xx_power_down(codec); |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 4322 | return 0; |
| 4323 | } |
| 4324 | |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4325 | static void stac92xx_free_jacks(struct hda_codec *codec) |
| 4326 | { |
Takashi Iwai | 8c8145b | 2009-06-22 17:00:38 +0200 | [diff] [blame] | 4327 | #ifdef CONFIG_SND_HDA_INPUT_JACK |
Takashi Iwai | b94d3539 | 2008-11-21 09:08:06 +0100 | [diff] [blame] | 4328 | /* free jack instances manually when clearing/reconfiguring */ |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4329 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | b94d3539 | 2008-11-21 09:08:06 +0100 | [diff] [blame] | 4330 | if (!codec->bus->shutdown && spec->jacks.list) { |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4331 | struct sigmatel_jack *jacks = spec->jacks.list; |
| 4332 | int i; |
Takashi Iwai | 95c0909 | 2009-04-14 16:15:29 +0200 | [diff] [blame] | 4333 | for (i = 0; i < spec->jacks.used; i++, jacks++) { |
| 4334 | if (jacks->jack) |
| 4335 | snd_device_free(codec->bus->card, jacks->jack); |
| 4336 | } |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4337 | } |
| 4338 | snd_array_free(&spec->jacks); |
Takashi Iwai | e4973e1 | 2008-11-18 09:32:42 +0100 | [diff] [blame] | 4339 | #endif |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4340 | } |
| 4341 | |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4342 | static void stac92xx_free_kctls(struct hda_codec *codec) |
| 4343 | { |
| 4344 | struct sigmatel_spec *spec = codec->spec; |
| 4345 | |
| 4346 | if (spec->kctls.list) { |
| 4347 | struct snd_kcontrol_new *kctl = spec->kctls.list; |
| 4348 | int i; |
| 4349 | for (i = 0; i < spec->kctls.used; i++) |
| 4350 | kfree(kctl[i].name); |
| 4351 | } |
| 4352 | snd_array_free(&spec->kctls); |
| 4353 | } |
| 4354 | |
Takashi Iwai | 167eae5 | 2009-11-06 15:47:50 +0100 | [diff] [blame] | 4355 | static void stac92xx_shutup(struct hda_codec *codec) |
| 4356 | { |
| 4357 | struct sigmatel_spec *spec = codec->spec; |
| 4358 | int i; |
| 4359 | hda_nid_t nid; |
| 4360 | |
| 4361 | /* reset each pin before powering down DAC/ADC to avoid click noise */ |
| 4362 | nid = codec->start_nid; |
| 4363 | for (i = 0; i < codec->num_nodes; i++, nid++) { |
| 4364 | unsigned int wcaps = get_wcaps(codec, nid); |
| 4365 | unsigned int wid_type = get_wcaps_type(wcaps); |
| 4366 | if (wid_type == AC_WID_PIN) |
| 4367 | snd_hda_codec_read(codec, nid, 0, |
| 4368 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0); |
| 4369 | } |
| 4370 | |
| 4371 | if (spec->eapd_mask) |
| 4372 | stac_gpio_set(codec, spec->gpio_mask, |
| 4373 | spec->gpio_dir, spec->gpio_data & |
| 4374 | ~spec->eapd_mask); |
| 4375 | } |
| 4376 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4377 | static void stac92xx_free(struct hda_codec *codec) |
| 4378 | { |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 4379 | struct sigmatel_spec *spec = codec->spec; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 4380 | |
| 4381 | if (! spec) |
| 4382 | return; |
| 4383 | |
Takashi Iwai | 167eae5 | 2009-11-06 15:47:50 +0100 | [diff] [blame] | 4384 | stac92xx_shutup(codec); |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4385 | stac92xx_free_jacks(codec); |
| 4386 | snd_array_free(&spec->events); |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 4387 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 4388 | kfree(spec); |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 4389 | snd_hda_detach_beep_device(codec); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4390 | } |
| 4391 | |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 4392 | static void stac92xx_set_pinctl(struct hda_codec *codec, hda_nid_t nid, |
| 4393 | unsigned int flag) |
| 4394 | { |
Takashi Iwai | 8ce8419 | 2009-01-22 16:59:20 +0100 | [diff] [blame] | 4395 | unsigned int old_ctl, pin_ctl; |
| 4396 | |
| 4397 | pin_ctl = snd_hda_codec_read(codec, nid, |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 4398 | 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00); |
Steve Longerbeam | 7b043899 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 4399 | |
Takashi Iwai | f9acba4 | 2007-05-29 18:01:06 +0200 | [diff] [blame] | 4400 | if (pin_ctl & AC_PINCTL_IN_EN) { |
| 4401 | /* |
| 4402 | * we need to check the current set-up direction of |
| 4403 | * shared input pins since they can be switched via |
| 4404 | * "xxx as Output" mixer switch |
| 4405 | */ |
| 4406 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 4407 | if (nid == spec->line_switch || nid == spec->mic_switch) |
Takashi Iwai | f9acba4 | 2007-05-29 18:01:06 +0200 | [diff] [blame] | 4408 | return; |
| 4409 | } |
| 4410 | |
Takashi Iwai | 8ce8419 | 2009-01-22 16:59:20 +0100 | [diff] [blame] | 4411 | old_ctl = pin_ctl; |
Steve Longerbeam | 7b043899 | 2007-05-03 20:50:03 +0200 | [diff] [blame] | 4412 | /* if setting pin direction bits, clear the current |
| 4413 | direction bits first */ |
| 4414 | if (flag & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)) |
| 4415 | pin_ctl &= ~(AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN); |
| 4416 | |
Takashi Iwai | 8ce8419 | 2009-01-22 16:59:20 +0100 | [diff] [blame] | 4417 | pin_ctl |= flag; |
| 4418 | if (old_ctl != pin_ctl) |
| 4419 | snd_hda_codec_write_cache(codec, nid, 0, |
| 4420 | AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 4421 | pin_ctl); |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 4422 | } |
| 4423 | |
| 4424 | static void stac92xx_reset_pinctl(struct hda_codec *codec, hda_nid_t nid, |
| 4425 | unsigned int flag) |
| 4426 | { |
| 4427 | unsigned int pin_ctl = snd_hda_codec_read(codec, nid, |
| 4428 | 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00); |
Takashi Iwai | 8ce8419 | 2009-01-22 16:59:20 +0100 | [diff] [blame] | 4429 | if (pin_ctl & flag) |
| 4430 | snd_hda_codec_write_cache(codec, nid, 0, |
| 4431 | AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 4432 | pin_ctl & ~flag); |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 4433 | } |
| 4434 | |
Takashi Iwai | d56757a | 2009-11-18 08:00:14 +0100 | [diff] [blame] | 4435 | static inline int get_pin_presence(struct hda_codec *codec, hda_nid_t nid) |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 4436 | { |
| 4437 | if (!nid) |
| 4438 | return 0; |
Takashi Iwai | d56757a | 2009-11-18 08:00:14 +0100 | [diff] [blame] | 4439 | return snd_hda_jack_detect(codec, nid); |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 4440 | } |
| 4441 | |
Takashi Iwai | fefd67f | 2009-07-30 18:03:05 +0200 | [diff] [blame] | 4442 | static void stac92xx_line_out_detect(struct hda_codec *codec, |
| 4443 | int presence) |
| 4444 | { |
| 4445 | struct sigmatel_spec *spec = codec->spec; |
| 4446 | struct auto_pin_cfg *cfg = &spec->autocfg; |
| 4447 | int i; |
| 4448 | |
| 4449 | for (i = 0; i < cfg->line_outs; i++) { |
| 4450 | if (presence) |
| 4451 | break; |
| 4452 | presence = get_pin_presence(codec, cfg->line_out_pins[i]); |
| 4453 | if (presence) { |
| 4454 | unsigned int pinctl; |
| 4455 | pinctl = snd_hda_codec_read(codec, |
| 4456 | cfg->line_out_pins[i], 0, |
| 4457 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); |
| 4458 | if (pinctl & AC_PINCTL_IN_EN) |
| 4459 | presence = 0; /* mic- or line-input */ |
| 4460 | } |
| 4461 | } |
| 4462 | |
| 4463 | if (presence) { |
| 4464 | /* disable speakers */ |
| 4465 | for (i = 0; i < cfg->speaker_outs; i++) |
| 4466 | stac92xx_reset_pinctl(codec, cfg->speaker_pins[i], |
| 4467 | AC_PINCTL_OUT_EN); |
| 4468 | if (spec->eapd_mask && spec->eapd_switch) |
| 4469 | stac_gpio_set(codec, spec->gpio_mask, |
| 4470 | spec->gpio_dir, spec->gpio_data & |
| 4471 | ~spec->eapd_mask); |
| 4472 | } else { |
| 4473 | /* enable speakers */ |
| 4474 | for (i = 0; i < cfg->speaker_outs; i++) |
| 4475 | stac92xx_set_pinctl(codec, cfg->speaker_pins[i], |
| 4476 | AC_PINCTL_OUT_EN); |
| 4477 | if (spec->eapd_mask && spec->eapd_switch) |
| 4478 | stac_gpio_set(codec, spec->gpio_mask, |
| 4479 | spec->gpio_dir, spec->gpio_data | |
| 4480 | spec->eapd_mask); |
| 4481 | } |
| 4482 | } |
| 4483 | |
Takashi Iwai | d7a8943 | 2008-11-12 09:48:04 +0100 | [diff] [blame] | 4484 | /* return non-zero if the hp-pin of the given array index isn't |
| 4485 | * a jack-detection target |
| 4486 | */ |
| 4487 | static int no_hp_sensing(struct sigmatel_spec *spec, int i) |
| 4488 | { |
| 4489 | struct auto_pin_cfg *cfg = &spec->autocfg; |
| 4490 | |
| 4491 | /* ignore sensing of shared line and mic jacks */ |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 4492 | if (cfg->hp_pins[i] == spec->line_switch) |
Takashi Iwai | d7a8943 | 2008-11-12 09:48:04 +0100 | [diff] [blame] | 4493 | return 1; |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 4494 | if (cfg->hp_pins[i] == spec->mic_switch) |
Takashi Iwai | d7a8943 | 2008-11-12 09:48:04 +0100 | [diff] [blame] | 4495 | return 1; |
| 4496 | /* ignore if the pin is set as line-out */ |
| 4497 | if (cfg->hp_pins[i] == spec->hp_switch) |
| 4498 | return 1; |
| 4499 | return 0; |
| 4500 | } |
| 4501 | |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4502 | static void stac92xx_hp_detect(struct hda_codec *codec) |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 4503 | { |
| 4504 | struct sigmatel_spec *spec = codec->spec; |
| 4505 | struct auto_pin_cfg *cfg = &spec->autocfg; |
| 4506 | int i, presence; |
| 4507 | |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 4508 | presence = 0; |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 4509 | if (spec->gpio_mute) |
| 4510 | presence = !(snd_hda_codec_read(codec, codec->afg, 0, |
| 4511 | AC_VERB_GET_GPIO_DATA, 0) & spec->gpio_mute); |
| 4512 | |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 4513 | for (i = 0; i < cfg->hp_outs; i++) { |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 4514 | if (presence) |
| 4515 | break; |
Takashi Iwai | d7a8943 | 2008-11-12 09:48:04 +0100 | [diff] [blame] | 4516 | if (no_hp_sensing(spec, i)) |
| 4517 | continue; |
Takashi Iwai | e6e3ea2 | 2008-12-05 12:54:56 +0100 | [diff] [blame] | 4518 | presence = get_pin_presence(codec, cfg->hp_pins[i]); |
| 4519 | if (presence) { |
| 4520 | unsigned int pinctl; |
| 4521 | pinctl = snd_hda_codec_read(codec, cfg->hp_pins[i], 0, |
| 4522 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); |
| 4523 | if (pinctl & AC_PINCTL_IN_EN) |
| 4524 | presence = 0; /* mic- or line-input */ |
| 4525 | } |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 4526 | } |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 4527 | |
| 4528 | if (presence) { |
Takashi Iwai | d7a8943 | 2008-11-12 09:48:04 +0100 | [diff] [blame] | 4529 | /* disable lineouts */ |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 4530 | if (spec->hp_switch) |
Takashi Iwai | d7a8943 | 2008-11-12 09:48:04 +0100 | [diff] [blame] | 4531 | stac92xx_reset_pinctl(codec, spec->hp_switch, |
| 4532 | AC_PINCTL_OUT_EN); |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 4533 | for (i = 0; i < cfg->line_outs; i++) |
| 4534 | stac92xx_reset_pinctl(codec, cfg->line_out_pins[i], |
| 4535 | AC_PINCTL_OUT_EN); |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 4536 | } else { |
Takashi Iwai | d7a8943 | 2008-11-12 09:48:04 +0100 | [diff] [blame] | 4537 | /* enable lineouts */ |
Matthew Ranostay | 7c2ba97 | 2008-04-16 13:13:59 +0200 | [diff] [blame] | 4538 | if (spec->hp_switch) |
Takashi Iwai | d7a8943 | 2008-11-12 09:48:04 +0100 | [diff] [blame] | 4539 | stac92xx_set_pinctl(codec, spec->hp_switch, |
| 4540 | AC_PINCTL_OUT_EN); |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 4541 | for (i = 0; i < cfg->line_outs; i++) |
| 4542 | stac92xx_set_pinctl(codec, cfg->line_out_pins[i], |
| 4543 | AC_PINCTL_OUT_EN); |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 4544 | } |
Takashi Iwai | fefd67f | 2009-07-30 18:03:05 +0200 | [diff] [blame] | 4545 | stac92xx_line_out_detect(codec, presence); |
Takashi Iwai | d7a8943 | 2008-11-12 09:48:04 +0100 | [diff] [blame] | 4546 | /* toggle hp outs */ |
| 4547 | for (i = 0; i < cfg->hp_outs; i++) { |
| 4548 | unsigned int val = AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN; |
| 4549 | if (no_hp_sensing(spec, i)) |
| 4550 | continue; |
| 4551 | if (presence) |
| 4552 | stac92xx_set_pinctl(codec, cfg->hp_pins[i], val); |
Takashi Iwai | 8317e0b | 2009-01-14 07:56:51 +0100 | [diff] [blame] | 4553 | #if 0 /* FIXME */ |
| 4554 | /* Resetting the pinctl like below may lead to (a sort of) regressions |
| 4555 | * on some devices since they use the HP pin actually for line/speaker |
| 4556 | * outs although the default pin config shows a different pin (that is |
| 4557 | * wrong and useless). |
| 4558 | * |
| 4559 | * So, it's basically a problem of default pin configs, likely a BIOS issue. |
| 4560 | * But, disabling the code below just works around it, and I'm too tired of |
| 4561 | * bug reports with such devices... |
| 4562 | */ |
Takashi Iwai | d7a8943 | 2008-11-12 09:48:04 +0100 | [diff] [blame] | 4563 | else |
| 4564 | stac92xx_reset_pinctl(codec, cfg->hp_pins[i], val); |
Takashi Iwai | 8317e0b | 2009-01-14 07:56:51 +0100 | [diff] [blame] | 4565 | #endif /* FIXME */ |
Takashi Iwai | d7a8943 | 2008-11-12 09:48:04 +0100 | [diff] [blame] | 4566 | } |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 4567 | } |
| 4568 | |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4569 | static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid, |
| 4570 | int enable) |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4571 | { |
| 4572 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4573 | unsigned int idx, val; |
| 4574 | |
| 4575 | for (idx = 0; idx < spec->num_pwrs; idx++) { |
| 4576 | if (spec->pwr_nids[idx] == nid) |
| 4577 | break; |
| 4578 | } |
| 4579 | if (idx >= spec->num_pwrs) |
| 4580 | return; |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 4581 | |
| 4582 | /* several codecs have two power down bits */ |
| 4583 | if (spec->pwr_mapping) |
| 4584 | idx = spec->pwr_mapping[idx]; |
| 4585 | else |
| 4586 | idx = 1 << idx; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4587 | |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4588 | val = snd_hda_codec_read(codec, codec->afg, 0, 0x0fec, 0x0) & 0xff; |
| 4589 | if (enable) |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4590 | val &= ~idx; |
| 4591 | else |
| 4592 | val |= idx; |
| 4593 | |
| 4594 | /* power down unused output ports */ |
| 4595 | snd_hda_codec_write(codec, codec->afg, 0, 0x7ec, val); |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4596 | } |
| 4597 | |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4598 | static void stac92xx_pin_sense(struct hda_codec *codec, hda_nid_t nid) |
| 4599 | { |
Takashi Iwai | e6e3ea2 | 2008-12-05 12:54:56 +0100 | [diff] [blame] | 4600 | stac_toggle_power_map(codec, nid, get_pin_presence(codec, nid)); |
Takashi Iwai | f73d358 | 2008-11-25 08:21:51 +0100 | [diff] [blame] | 4601 | } |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4602 | |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4603 | static void stac92xx_report_jack(struct hda_codec *codec, hda_nid_t nid) |
| 4604 | { |
| 4605 | struct sigmatel_spec *spec = codec->spec; |
| 4606 | struct sigmatel_jack *jacks = spec->jacks.list; |
| 4607 | |
| 4608 | if (jacks) { |
| 4609 | int i; |
| 4610 | for (i = 0; i < spec->jacks.used; i++) { |
| 4611 | if (jacks->nid == nid) { |
| 4612 | unsigned int pin_ctl = |
| 4613 | snd_hda_codec_read(codec, nid, |
| 4614 | 0, AC_VERB_GET_PIN_WIDGET_CONTROL, |
| 4615 | 0x00); |
| 4616 | int type = jacks->type; |
| 4617 | if (type == (SND_JACK_LINEOUT |
| 4618 | | SND_JACK_HEADPHONE)) |
| 4619 | type = (pin_ctl & AC_PINCTL_HP_EN) |
| 4620 | ? SND_JACK_HEADPHONE : SND_JACK_LINEOUT; |
| 4621 | snd_jack_report(jacks->jack, |
Takashi Iwai | e6e3ea2 | 2008-12-05 12:54:56 +0100 | [diff] [blame] | 4622 | get_pin_presence(codec, nid) |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4623 | ? type : 0); |
| 4624 | } |
| 4625 | jacks++; |
| 4626 | } |
| 4627 | } |
| 4628 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4629 | |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 4630 | static void stac92xx_mic_detect(struct hda_codec *codec) |
| 4631 | { |
| 4632 | struct sigmatel_spec *spec = codec->spec; |
| 4633 | struct sigmatel_mic_route *mic; |
| 4634 | |
| 4635 | if (get_pin_presence(codec, spec->ext_mic.pin)) |
| 4636 | mic = &spec->ext_mic; |
| 4637 | else |
| 4638 | mic = &spec->int_mic; |
Takashi Iwai | 02d3332 | 2009-10-01 16:38:11 +0200 | [diff] [blame] | 4639 | if (mic->dmux_idx >= 0) |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 4640 | snd_hda_codec_write_cache(codec, spec->dmux_nids[0], 0, |
| 4641 | AC_VERB_SET_CONNECT_SEL, |
| 4642 | mic->dmux_idx); |
Takashi Iwai | 02d3332 | 2009-10-01 16:38:11 +0200 | [diff] [blame] | 4643 | if (mic->mux_idx >= 0) |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 4644 | snd_hda_codec_write_cache(codec, spec->mux_nids[0], 0, |
| 4645 | AC_VERB_SET_CONNECT_SEL, |
| 4646 | mic->mux_idx); |
| 4647 | } |
| 4648 | |
Takashi Iwai | 62558ce | 2009-07-29 14:23:09 +0200 | [diff] [blame] | 4649 | static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid) |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4650 | { |
Takashi Iwai | 62558ce | 2009-07-29 14:23:09 +0200 | [diff] [blame] | 4651 | struct sigmatel_event *event = stac_get_event(codec, nid); |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4652 | if (!event) |
| 4653 | return; |
| 4654 | codec->patch_ops.unsol_event(codec, (unsigned)event->tag << 26); |
| 4655 | } |
| 4656 | |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 4657 | static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res) |
| 4658 | { |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4659 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4660 | struct sigmatel_event *event; |
| 4661 | int tag, data; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4662 | |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4663 | tag = (res >> 26) & 0x7f; |
| 4664 | event = stac_get_event_from_tag(codec, tag); |
| 4665 | if (!event) |
| 4666 | return; |
| 4667 | |
| 4668 | switch (event->type) { |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 4669 | case STAC_HP_EVENT: |
Takashi Iwai | fefd67f | 2009-07-30 18:03:05 +0200 | [diff] [blame] | 4670 | case STAC_LO_EVENT: |
Takashi Iwai | 16ffe32 | 2009-08-04 13:40:54 +0200 | [diff] [blame] | 4671 | stac92xx_hp_detect(codec); |
Takashi Iwai | fefd67f | 2009-07-30 18:03:05 +0200 | [diff] [blame] | 4672 | break; |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 4673 | case STAC_MIC_EVENT: |
| 4674 | stac92xx_mic_detect(codec); |
| 4675 | break; |
| 4676 | } |
| 4677 | |
| 4678 | switch (event->type) { |
| 4679 | case STAC_HP_EVENT: |
Takashi Iwai | fefd67f | 2009-07-30 18:03:05 +0200 | [diff] [blame] | 4680 | case STAC_LO_EVENT: |
Takashi Iwai | 3d21d3f | 2009-07-29 14:32:56 +0200 | [diff] [blame] | 4681 | case STAC_MIC_EVENT: |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 4682 | case STAC_INSERT_EVENT: |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4683 | case STAC_PWR_EVENT: |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4684 | if (spec->num_pwrs > 0) |
| 4685 | stac92xx_pin_sense(codec, event->nid); |
| 4686 | stac92xx_report_jack(codec, event->nid); |
Matthew Ranostay | fd60cc8 | 2009-04-06 09:30:46 -0400 | [diff] [blame] | 4687 | |
| 4688 | switch (codec->subsystem_id) { |
| 4689 | case 0x103c308f: |
| 4690 | if (event->nid == 0xb) { |
| 4691 | int pin = AC_PINCTL_IN_EN; |
| 4692 | |
| 4693 | if (get_pin_presence(codec, 0xa) |
| 4694 | && get_pin_presence(codec, 0xb)) |
| 4695 | pin |= AC_PINCTL_VREF_80; |
| 4696 | if (!get_pin_presence(codec, 0xb)) |
| 4697 | pin |= AC_PINCTL_VREF_80; |
| 4698 | |
| 4699 | /* toggle VREF state based on mic + hp pin |
| 4700 | * status |
| 4701 | */ |
| 4702 | stac92xx_auto_set_pinctl(codec, 0x0a, pin); |
| 4703 | } |
| 4704 | } |
Matthew Ranostay | 72474be | 2008-10-09 09:32:17 -0400 | [diff] [blame] | 4705 | break; |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4706 | case STAC_VREF_EVENT: |
| 4707 | data = snd_hda_codec_read(codec, codec->afg, 0, |
| 4708 | AC_VERB_GET_GPIO_DATA, 0); |
Matthew Ranostay | 72474be | 2008-10-09 09:32:17 -0400 | [diff] [blame] | 4709 | /* toggle VREF state based on GPIOx status */ |
| 4710 | snd_hda_codec_write(codec, codec->afg, 0, 0x7e0, |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 4711 | !!(data & (1 << event->data))); |
Matthew Ranostay | 72474be | 2008-10-09 09:32:17 -0400 | [diff] [blame] | 4712 | break; |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 4713 | } |
| 4714 | } |
| 4715 | |
Randy Dunlap | 78987bd | 2009-11-05 09:22:30 -0800 | [diff] [blame] | 4716 | static int hp_bseries_system(u32 subsystem_id) |
| 4717 | { |
| 4718 | switch (subsystem_id) { |
| 4719 | case 0x103c307e: |
| 4720 | case 0x103c307f: |
| 4721 | case 0x103c3080: |
| 4722 | case 0x103c3081: |
| 4723 | case 0x103c1722: |
| 4724 | case 0x103c1723: |
| 4725 | case 0x103c1724: |
| 4726 | case 0x103c1725: |
| 4727 | case 0x103c1726: |
| 4728 | case 0x103c1727: |
| 4729 | case 0x103c1728: |
| 4730 | case 0x103c1729: |
| 4731 | return 1; |
| 4732 | } |
| 4733 | return 0; |
| 4734 | } |
| 4735 | |
Takashi Iwai | 2d34e1b | 2008-11-28 14:35:16 +0100 | [diff] [blame] | 4736 | #ifdef CONFIG_PROC_FS |
| 4737 | static void stac92hd_proc_hook(struct snd_info_buffer *buffer, |
| 4738 | struct hda_codec *codec, hda_nid_t nid) |
| 4739 | { |
| 4740 | if (nid == codec->afg) |
| 4741 | snd_iprintf(buffer, "Power-Map: 0x%02x\n", |
| 4742 | snd_hda_codec_read(codec, nid, 0, 0x0fec, 0x0)); |
| 4743 | } |
| 4744 | |
| 4745 | static void analog_loop_proc_hook(struct snd_info_buffer *buffer, |
| 4746 | struct hda_codec *codec, |
| 4747 | unsigned int verb) |
| 4748 | { |
| 4749 | snd_iprintf(buffer, "Analog Loopback: 0x%02x\n", |
| 4750 | snd_hda_codec_read(codec, codec->afg, 0, verb, 0)); |
| 4751 | } |
| 4752 | |
| 4753 | /* stac92hd71bxx, stac92hd73xx */ |
| 4754 | static void stac92hd7x_proc_hook(struct snd_info_buffer *buffer, |
| 4755 | struct hda_codec *codec, hda_nid_t nid) |
| 4756 | { |
| 4757 | stac92hd_proc_hook(buffer, codec, nid); |
| 4758 | if (nid == codec->afg) |
| 4759 | analog_loop_proc_hook(buffer, codec, 0xfa0); |
| 4760 | } |
| 4761 | |
| 4762 | static void stac9205_proc_hook(struct snd_info_buffer *buffer, |
| 4763 | struct hda_codec *codec, hda_nid_t nid) |
| 4764 | { |
| 4765 | if (nid == codec->afg) |
| 4766 | analog_loop_proc_hook(buffer, codec, 0xfe0); |
| 4767 | } |
| 4768 | |
| 4769 | static void stac927x_proc_hook(struct snd_info_buffer *buffer, |
| 4770 | struct hda_codec *codec, hda_nid_t nid) |
| 4771 | { |
| 4772 | if (nid == codec->afg) |
| 4773 | analog_loop_proc_hook(buffer, codec, 0xfeb); |
| 4774 | } |
| 4775 | #else |
| 4776 | #define stac92hd_proc_hook NULL |
| 4777 | #define stac92hd7x_proc_hook NULL |
| 4778 | #define stac9205_proc_hook NULL |
| 4779 | #define stac927x_proc_hook NULL |
| 4780 | #endif |
| 4781 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4782 | #ifdef SND_HDA_NEEDS_RESUME |
Matt | ff6fdc3 | 2005-06-27 15:06:52 +0200 | [diff] [blame] | 4783 | static int stac92xx_resume(struct hda_codec *codec) |
| 4784 | { |
Takashi Iwai | dc81bed | 2007-09-03 09:36:36 +0200 | [diff] [blame] | 4785 | struct sigmatel_spec *spec = codec->spec; |
| 4786 | |
Takashi Iwai | 2c88587 | 2008-11-18 09:36:55 +0100 | [diff] [blame] | 4787 | stac92xx_init(codec); |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 4788 | snd_hda_codec_resume_amp(codec); |
| 4789 | snd_hda_codec_resume_cache(codec); |
Takashi Iwai | 2c88587 | 2008-11-18 09:36:55 +0100 | [diff] [blame] | 4790 | /* fake event to set up pins again to override cached values */ |
Takashi Iwai | 5f380eb | 2009-09-14 15:36:14 +0200 | [diff] [blame] | 4791 | if (spec->hp_detect) { |
| 4792 | if (spec->autocfg.hp_pins[0]) |
| 4793 | stac_issue_unsol_event(codec, spec->autocfg.hp_pins[0]); |
| 4794 | else if (spec->autocfg.line_out_pins[0]) |
| 4795 | stac_issue_unsol_event(codec, |
| 4796 | spec->autocfg.line_out_pins[0]); |
| 4797 | } |
Matt | ff6fdc3 | 2005-06-27 15:06:52 +0200 | [diff] [blame] | 4798 | return 0; |
| 4799 | } |
Matthew Ranostay | c6798d2 | 2008-11-18 20:54:17 -0500 | [diff] [blame] | 4800 | |
Christoph Plattner | ae6241f | 2009-03-08 23:19:05 +0100 | [diff] [blame] | 4801 | /* |
James Gardiner | 514bf54 | 2009-05-03 04:00:44 -0400 | [diff] [blame] | 4802 | * using power check for controlling mute led of HP notebooks |
Christoph Plattner | ae6241f | 2009-03-08 23:19:05 +0100 | [diff] [blame] | 4803 | * check for mute state only on Speakers (nid = 0x10) |
| 4804 | * |
| 4805 | * For this feature CONFIG_SND_HDA_POWER_SAVE is needed, otherwise |
| 4806 | * the LED is NOT working properly ! |
James Gardiner | 514bf54 | 2009-05-03 04:00:44 -0400 | [diff] [blame] | 4807 | * |
| 4808 | * Changed name to reflect that it now works for any designated |
| 4809 | * model, not just HP HDX. |
Christoph Plattner | ae6241f | 2009-03-08 23:19:05 +0100 | [diff] [blame] | 4810 | */ |
| 4811 | |
| 4812 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
James Gardiner | 514bf54 | 2009-05-03 04:00:44 -0400 | [diff] [blame] | 4813 | static int stac92xx_hp_check_power_status(struct hda_codec *codec, |
Takashi Iwai | 6fce61a | 2009-03-10 07:48:57 +0100 | [diff] [blame] | 4814 | hda_nid_t nid) |
Christoph Plattner | ae6241f | 2009-03-08 23:19:05 +0100 | [diff] [blame] | 4815 | { |
| 4816 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | 6fce61a | 2009-03-10 07:48:57 +0100 | [diff] [blame] | 4817 | |
| 4818 | if (nid == 0x10) { |
| 4819 | if (snd_hda_codec_amp_read(codec, nid, 0, HDA_OUTPUT, 0) & |
Christoph Plattner | ae6241f | 2009-03-08 23:19:05 +0100 | [diff] [blame] | 4820 | HDA_AMP_MUTE) |
Takashi Iwai | 86d190e | 2009-05-26 15:18:58 +0200 | [diff] [blame] | 4821 | spec->gpio_data &= ~spec->gpio_led; /* orange */ |
Takashi Iwai | ba84bfc | 2009-05-30 08:59:03 +0200 | [diff] [blame] | 4822 | else |
| 4823 | spec->gpio_data |= spec->gpio_led; /* white */ |
Takashi Iwai | 6fce61a | 2009-03-10 07:48:57 +0100 | [diff] [blame] | 4824 | |
Vitaliy Kulikov | 5bdaaad | 2009-11-04 07:57:45 +0100 | [diff] [blame] | 4825 | if (hp_bseries_system(codec->subsystem_id)) { |
| 4826 | /* LED state is inverted on these systems */ |
| 4827 | spec->gpio_data ^= spec->gpio_led; |
| 4828 | } |
| 4829 | |
Takashi Iwai | 6fce61a | 2009-03-10 07:48:57 +0100 | [diff] [blame] | 4830 | stac_gpio_set(codec, spec->gpio_mask, |
| 4831 | spec->gpio_dir, |
Christoph Plattner | ae6241f | 2009-03-08 23:19:05 +0100 | [diff] [blame] | 4832 | spec->gpio_data); |
| 4833 | } |
| 4834 | |
| 4835 | return 0; |
| 4836 | } |
| 4837 | #endif |
| 4838 | |
Matthew Ranostay | c6798d2 | 2008-11-18 20:54:17 -0500 | [diff] [blame] | 4839 | static int stac92xx_suspend(struct hda_codec *codec, pm_message_t state) |
| 4840 | { |
Takashi Iwai | 167eae5 | 2009-11-06 15:47:50 +0100 | [diff] [blame] | 4841 | stac92xx_shutup(codec); |
Matthew Ranostay | c6798d2 | 2008-11-18 20:54:17 -0500 | [diff] [blame] | 4842 | return 0; |
| 4843 | } |
Matt | ff6fdc3 | 2005-06-27 15:06:52 +0200 | [diff] [blame] | 4844 | #endif |
| 4845 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4846 | static struct hda_codec_ops stac92xx_patch_ops = { |
| 4847 | .build_controls = stac92xx_build_controls, |
| 4848 | .build_pcms = stac92xx_build_pcms, |
| 4849 | .init = stac92xx_init, |
| 4850 | .free = stac92xx_free, |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 4851 | .unsol_event = stac92xx_unsol_event, |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4852 | #ifdef SND_HDA_NEEDS_RESUME |
Matthew Ranostay | c6798d2 | 2008-11-18 20:54:17 -0500 | [diff] [blame] | 4853 | .suspend = stac92xx_suspend, |
Matt | ff6fdc3 | 2005-06-27 15:06:52 +0200 | [diff] [blame] | 4854 | .resume = stac92xx_resume, |
| 4855 | #endif |
Takashi Iwai | fb8d1a3 | 2009-11-10 16:02:29 +0100 | [diff] [blame] | 4856 | .reboot_notify = stac92xx_shutup, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4857 | }; |
| 4858 | |
| 4859 | static int patch_stac9200(struct hda_codec *codec) |
| 4860 | { |
| 4861 | struct sigmatel_spec *spec; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 4862 | int err; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4863 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 4864 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4865 | if (spec == NULL) |
| 4866 | return -ENOMEM; |
| 4867 | |
| 4868 | codec->spec = spec; |
Takashi Iwai | a4eed13 | 2007-07-06 18:17:04 +0200 | [diff] [blame] | 4869 | spec->num_pins = ARRAY_SIZE(stac9200_pin_nids); |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 4870 | spec->pin_nids = stac9200_pin_nids; |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 4871 | spec->board_config = snd_hda_check_board_config(codec, STAC_9200_MODELS, |
| 4872 | stac9200_models, |
| 4873 | stac9200_cfg_tbl); |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 4874 | if (spec->board_config < 0) |
Takashi Iwai | 9a11f1a | 2009-07-28 16:01:20 +0200 | [diff] [blame] | 4875 | snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n", |
| 4876 | codec->chip_name); |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 4877 | else |
| 4878 | stac92xx_set_config_regs(codec, |
Takashi Iwai | af9f341a | 2008-11-18 10:38:56 +0100 | [diff] [blame] | 4879 | stac9200_brd_tbl[spec->board_config]); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4880 | |
| 4881 | spec->multiout.max_channels = 2; |
| 4882 | spec->multiout.num_dacs = 1; |
| 4883 | spec->multiout.dac_nids = stac9200_dac_nids; |
| 4884 | spec->adc_nids = stac9200_adc_nids; |
| 4885 | spec->mux_nids = stac9200_mux_nids; |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 4886 | spec->num_muxes = 1; |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 4887 | spec->num_dmics = 0; |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 4888 | spec->num_adcs = 1; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4889 | spec->num_pwrs = 0; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 4890 | |
Mauro Carvalho Chehab | 58eec42 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 4891 | if (spec->board_config == STAC_9200_M4 || |
| 4892 | spec->board_config == STAC_9200_M4_2 || |
Tobin Davis | bf27778 | 2008-02-03 20:31:47 +0100 | [diff] [blame] | 4893 | spec->board_config == STAC_9200_OQO) |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 4894 | spec->init = stac9200_eapd_init; |
| 4895 | else |
| 4896 | spec->init = stac9200_core_init; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4897 | spec->mixer = stac9200_mixer; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 4898 | |
Takashi Iwai | 117f257 | 2008-03-18 09:53:23 +0100 | [diff] [blame] | 4899 | if (spec->board_config == STAC_9200_PANASONIC) { |
| 4900 | spec->gpio_mask = spec->gpio_dir = 0x09; |
| 4901 | spec->gpio_data = 0x00; |
| 4902 | } |
| 4903 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 4904 | err = stac9200_parse_auto_config(codec); |
| 4905 | if (err < 0) { |
| 4906 | stac92xx_free(codec); |
| 4907 | return err; |
| 4908 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4909 | |
Takashi Iwai | 2acc9dc | 2009-01-09 16:57:14 +0100 | [diff] [blame] | 4910 | /* CF-74 has no headphone detection, and the driver should *NOT* |
| 4911 | * do detection and HP/speaker toggle because the hardware does it. |
| 4912 | */ |
| 4913 | if (spec->board_config == STAC_9200_PANASONIC) |
| 4914 | spec->hp_detect = 0; |
| 4915 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 4916 | codec->patch_ops = stac92xx_patch_ops; |
| 4917 | |
| 4918 | return 0; |
| 4919 | } |
| 4920 | |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 4921 | static int patch_stac925x(struct hda_codec *codec) |
| 4922 | { |
| 4923 | struct sigmatel_spec *spec; |
| 4924 | int err; |
| 4925 | |
| 4926 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 4927 | if (spec == NULL) |
| 4928 | return -ENOMEM; |
| 4929 | |
| 4930 | codec->spec = spec; |
Takashi Iwai | a4eed13 | 2007-07-06 18:17:04 +0200 | [diff] [blame] | 4931 | spec->num_pins = ARRAY_SIZE(stac925x_pin_nids); |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 4932 | spec->pin_nids = stac925x_pin_nids; |
Mauro Carvalho Chehab | 9cb36c2 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 4933 | |
| 4934 | /* Check first for codec ID */ |
| 4935 | spec->board_config = snd_hda_check_board_codec_sid_config(codec, |
| 4936 | STAC_925x_MODELS, |
| 4937 | stac925x_models, |
| 4938 | stac925x_codec_id_cfg_tbl); |
| 4939 | |
| 4940 | /* Now checks for PCI ID, if codec ID is not found */ |
| 4941 | if (spec->board_config < 0) |
| 4942 | spec->board_config = snd_hda_check_board_config(codec, |
| 4943 | STAC_925x_MODELS, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 4944 | stac925x_models, |
| 4945 | stac925x_cfg_tbl); |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 4946 | again: |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 4947 | if (spec->board_config < 0) |
Takashi Iwai | 9a11f1a | 2009-07-28 16:01:20 +0200 | [diff] [blame] | 4948 | snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n", |
| 4949 | codec->chip_name); |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 4950 | else |
| 4951 | stac92xx_set_config_regs(codec, |
Takashi Iwai | af9f341a | 2008-11-18 10:38:56 +0100 | [diff] [blame] | 4952 | stac925x_brd_tbl[spec->board_config]); |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 4953 | |
| 4954 | spec->multiout.max_channels = 2; |
| 4955 | spec->multiout.num_dacs = 1; |
| 4956 | spec->multiout.dac_nids = stac925x_dac_nids; |
| 4957 | spec->adc_nids = stac925x_adc_nids; |
| 4958 | spec->mux_nids = stac925x_mux_nids; |
| 4959 | spec->num_muxes = 1; |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 4960 | spec->num_adcs = 1; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 4961 | spec->num_pwrs = 0; |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 4962 | switch (codec->vendor_id) { |
| 4963 | case 0x83847632: /* STAC9202 */ |
| 4964 | case 0x83847633: /* STAC9202D */ |
| 4965 | case 0x83847636: /* STAC9251 */ |
| 4966 | case 0x83847637: /* STAC9251D */ |
Takashi Iwai | f6e9852 | 2007-10-16 14:27:04 +0200 | [diff] [blame] | 4967 | spec->num_dmics = STAC925X_NUM_DMICS; |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 4968 | spec->dmic_nids = stac925x_dmic_nids; |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 4969 | spec->num_dmuxes = ARRAY_SIZE(stac925x_dmux_nids); |
| 4970 | spec->dmux_nids = stac925x_dmux_nids; |
Tobin Davis | 2c11f95 | 2007-05-17 09:36:34 +0200 | [diff] [blame] | 4971 | break; |
| 4972 | default: |
| 4973 | spec->num_dmics = 0; |
| 4974 | break; |
| 4975 | } |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 4976 | |
| 4977 | spec->init = stac925x_core_init; |
| 4978 | spec->mixer = stac925x_mixer; |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 4979 | spec->num_caps = 1; |
| 4980 | spec->capvols = stac925x_capvols; |
| 4981 | spec->capsws = stac925x_capsws; |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 4982 | |
| 4983 | err = stac92xx_parse_auto_config(codec, 0x8, 0x7); |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 4984 | if (!err) { |
| 4985 | if (spec->board_config < 0) { |
| 4986 | printk(KERN_WARNING "hda_codec: No auto-config is " |
| 4987 | "available, default to model=ref\n"); |
| 4988 | spec->board_config = STAC_925x_REF; |
| 4989 | goto again; |
| 4990 | } |
| 4991 | err = -EINVAL; |
| 4992 | } |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 4993 | if (err < 0) { |
| 4994 | stac92xx_free(codec); |
| 4995 | return err; |
| 4996 | } |
| 4997 | |
| 4998 | codec->patch_ops = stac92xx_patch_ops; |
| 4999 | |
| 5000 | return 0; |
| 5001 | } |
| 5002 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5003 | static int patch_stac92hd73xx(struct hda_codec *codec) |
| 5004 | { |
| 5005 | struct sigmatel_spec *spec; |
| 5006 | hda_nid_t conn[STAC92HD73_DAC_COUNT + 2]; |
| 5007 | int err = 0; |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 5008 | int num_dacs; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5009 | |
| 5010 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 5011 | if (spec == NULL) |
| 5012 | return -ENOMEM; |
| 5013 | |
| 5014 | codec->spec = spec; |
Matthew Ranostay | e99d32b | 2008-09-09 10:46:38 +0200 | [diff] [blame] | 5015 | codec->slave_dig_outs = stac92hd73xx_slave_dig_outs; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5016 | spec->num_pins = ARRAY_SIZE(stac92hd73xx_pin_nids); |
| 5017 | spec->pin_nids = stac92hd73xx_pin_nids; |
| 5018 | spec->board_config = snd_hda_check_board_config(codec, |
| 5019 | STAC_92HD73XX_MODELS, |
| 5020 | stac92hd73xx_models, |
| 5021 | stac92hd73xx_cfg_tbl); |
Takashi Iwai | 842ae63 | 2009-09-02 07:43:08 +0200 | [diff] [blame] | 5022 | /* check codec subsystem id if not found */ |
| 5023 | if (spec->board_config < 0) |
| 5024 | spec->board_config = |
| 5025 | snd_hda_check_board_codec_sid_config(codec, |
| 5026 | STAC_92HD73XX_MODELS, stac92hd73xx_models, |
| 5027 | stac92hd73xx_codec_id_cfg_tbl); |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5028 | again: |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5029 | if (spec->board_config < 0) |
Takashi Iwai | 9a11f1a | 2009-07-28 16:01:20 +0200 | [diff] [blame] | 5030 | snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n", |
| 5031 | codec->chip_name); |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5032 | else |
| 5033 | stac92xx_set_config_regs(codec, |
Takashi Iwai | af9f341a | 2008-11-18 10:38:56 +0100 | [diff] [blame] | 5034 | stac92hd73xx_brd_tbl[spec->board_config]); |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5035 | |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 5036 | num_dacs = snd_hda_get_connections(codec, 0x0a, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5037 | conn, STAC92HD73_DAC_COUNT + 2) - 1; |
| 5038 | |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 5039 | if (num_dacs < 3 || num_dacs > 5) { |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5040 | printk(KERN_WARNING "hda_codec: Could not determine " |
| 5041 | "number of channels defaulting to DAC count\n"); |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 5042 | num_dacs = STAC92HD73_DAC_COUNT; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5043 | } |
Takashi Iwai | e2aec17 | 2009-09-02 01:00:05 +0200 | [diff] [blame] | 5044 | spec->init = stac92hd73xx_core_init; |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 5045 | switch (num_dacs) { |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5046 | case 0x3: /* 6 Channel */ |
Takashi Iwai | d78d7a9 | 2009-03-02 14:26:25 +0100 | [diff] [blame] | 5047 | spec->aloopback_ctl = stac92hd73xx_6ch_loopback; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5048 | break; |
| 5049 | case 0x4: /* 8 Channel */ |
Takashi Iwai | d78d7a9 | 2009-03-02 14:26:25 +0100 | [diff] [blame] | 5050 | spec->aloopback_ctl = stac92hd73xx_8ch_loopback; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5051 | break; |
| 5052 | case 0x5: /* 10 Channel */ |
Takashi Iwai | d78d7a9 | 2009-03-02 14:26:25 +0100 | [diff] [blame] | 5053 | spec->aloopback_ctl = stac92hd73xx_10ch_loopback; |
| 5054 | break; |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 5055 | } |
| 5056 | spec->multiout.dac_nids = spec->dac_nids; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5057 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5058 | spec->aloopback_mask = 0x01; |
| 5059 | spec->aloopback_shift = 8; |
| 5060 | |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 5061 | spec->digbeep_nid = 0x1c; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5062 | spec->mux_nids = stac92hd73xx_mux_nids; |
| 5063 | spec->adc_nids = stac92hd73xx_adc_nids; |
| 5064 | spec->dmic_nids = stac92hd73xx_dmic_nids; |
| 5065 | spec->dmux_nids = stac92hd73xx_dmux_nids; |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 5066 | spec->smux_nids = stac92hd73xx_smux_nids; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5067 | |
| 5068 | spec->num_muxes = ARRAY_SIZE(stac92hd73xx_mux_nids); |
| 5069 | spec->num_adcs = ARRAY_SIZE(stac92hd73xx_adc_nids); |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 5070 | spec->num_dmuxes = ARRAY_SIZE(stac92hd73xx_dmux_nids); |
Matthew Ranostay | 2a9c781 | 2008-09-13 16:45:39 -0400 | [diff] [blame] | 5071 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 5072 | spec->num_caps = STAC92HD73XX_NUM_CAPS; |
| 5073 | spec->capvols = stac92hd73xx_capvols; |
| 5074 | spec->capsws = stac92hd73xx_capsws; |
| 5075 | |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 5076 | switch (spec->board_config) { |
Matthew Ranostay | 6b3ab21 | 2008-11-03 08:12:43 -0500 | [diff] [blame] | 5077 | case STAC_DELL_EQ: |
Matthew Ranostay | d654a66 | 2008-03-14 08:46:51 +0100 | [diff] [blame] | 5078 | spec->init = dell_eq_core_init; |
Matthew Ranostay | 6b3ab21 | 2008-11-03 08:12:43 -0500 | [diff] [blame] | 5079 | /* fallthru */ |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 5080 | case STAC_DELL_M6_AMIC: |
| 5081 | case STAC_DELL_M6_DMIC: |
| 5082 | case STAC_DELL_M6_BOTH: |
Matthew Ranostay | 2a9c781 | 2008-09-13 16:45:39 -0400 | [diff] [blame] | 5083 | spec->num_smuxes = 0; |
Matthew Ranostay | c0cea0d | 2008-11-16 11:42:34 -0500 | [diff] [blame] | 5084 | spec->eapd_switch = 0; |
Matthew Ranostay | 6b3ab21 | 2008-11-03 08:12:43 -0500 | [diff] [blame] | 5085 | |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 5086 | switch (spec->board_config) { |
| 5087 | case STAC_DELL_M6_AMIC: /* Analog Mics */ |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5088 | snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170); |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 5089 | spec->num_dmics = 0; |
| 5090 | break; |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 5091 | case STAC_DELL_M6_DMIC: /* Digital Mics */ |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5092 | snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160); |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 5093 | spec->num_dmics = 1; |
| 5094 | break; |
Takashi Iwai | 661cd8f | 2008-11-25 15:18:29 +0100 | [diff] [blame] | 5095 | case STAC_DELL_M6_BOTH: /* Both */ |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5096 | snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170); |
| 5097 | snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160); |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 5098 | spec->num_dmics = 1; |
| 5099 | break; |
| 5100 | } |
| 5101 | break; |
Takashi Iwai | 842ae63 | 2009-09-02 07:43:08 +0200 | [diff] [blame] | 5102 | case STAC_ALIENWARE_M17X: |
| 5103 | spec->num_dmics = STAC92HD73XX_NUM_DMICS; |
| 5104 | spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids); |
| 5105 | spec->eapd_switch = 0; |
| 5106 | break; |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 5107 | default: |
| 5108 | spec->num_dmics = STAC92HD73XX_NUM_DMICS; |
Matthew Ranostay | 2a9c781 | 2008-09-13 16:45:39 -0400 | [diff] [blame] | 5109 | spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids); |
Matthew Ranostay | c0cea0d | 2008-11-16 11:42:34 -0500 | [diff] [blame] | 5110 | spec->eapd_switch = 1; |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 5111 | break; |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 5112 | } |
Takashi Iwai | af6ee30 | 2009-09-14 15:03:12 +0200 | [diff] [blame] | 5113 | if (spec->board_config != STAC_92HD73XX_REF) { |
Matthew Ranostay | b2c4f4d | 2008-09-26 10:06:40 -0400 | [diff] [blame] | 5114 | /* GPIO0 High = Enable EAPD */ |
| 5115 | spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1; |
| 5116 | spec->gpio_data = 0x01; |
| 5117 | } |
Matthew Ranostay | a766264 | 2008-02-21 07:51:14 +0100 | [diff] [blame] | 5118 | |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 5119 | spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids); |
| 5120 | spec->pwr_nids = stac92hd73xx_pwr_nids; |
| 5121 | |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 5122 | err = stac92xx_parse_auto_config(codec, 0x25, 0x27); |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5123 | |
| 5124 | if (!err) { |
| 5125 | if (spec->board_config < 0) { |
| 5126 | printk(KERN_WARNING "hda_codec: No auto-config is " |
| 5127 | "available, default to model=ref\n"); |
| 5128 | spec->board_config = STAC_92HD73XX_REF; |
| 5129 | goto again; |
| 5130 | } |
| 5131 | err = -EINVAL; |
| 5132 | } |
| 5133 | |
| 5134 | if (err < 0) { |
| 5135 | stac92xx_free(codec); |
| 5136 | return err; |
| 5137 | } |
| 5138 | |
Takashi Iwai | 9e43f0d | 2008-12-17 14:51:01 +0100 | [diff] [blame] | 5139 | if (spec->board_config == STAC_92HD73XX_NO_JD) |
| 5140 | spec->hp_detect = 0; |
| 5141 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5142 | codec->patch_ops = stac92xx_patch_ops; |
| 5143 | |
Takashi Iwai | 2d34e1b | 2008-11-28 14:35:16 +0100 | [diff] [blame] | 5144 | codec->proc_widget_hook = stac92hd7x_proc_hook; |
| 5145 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5146 | return 0; |
| 5147 | } |
| 5148 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 5149 | static int patch_stac92hd83xxx(struct hda_codec *codec) |
| 5150 | { |
| 5151 | struct sigmatel_spec *spec; |
Matthew Ranostay | 65557f3 | 2009-01-20 16:50:25 -0500 | [diff] [blame] | 5152 | hda_nid_t conn[STAC92HD83_DAC_COUNT + 1]; |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 5153 | int err; |
Matthew Ranostay | 65557f3 | 2009-01-20 16:50:25 -0500 | [diff] [blame] | 5154 | int num_dacs; |
Matthew Ranostay | 8bb0ac5 | 2009-02-12 16:50:01 -0500 | [diff] [blame] | 5155 | hda_nid_t nid; |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 5156 | |
| 5157 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 5158 | if (spec == NULL) |
| 5159 | return -ENOMEM; |
| 5160 | |
| 5161 | codec->spec = spec; |
Matthew Ranostay | 0ffa980 | 2008-09-08 11:20:05 -0400 | [diff] [blame] | 5162 | codec->slave_dig_outs = stac92hd83xxx_slave_dig_outs; |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 5163 | spec->digbeep_nid = 0x21; |
Takashi Iwai | 667067d | 2009-08-13 18:14:42 +0200 | [diff] [blame] | 5164 | spec->mux_nids = stac92hd83xxx_mux_nids; |
| 5165 | spec->num_muxes = ARRAY_SIZE(stac92hd83xxx_mux_nids); |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 5166 | spec->adc_nids = stac92hd83xxx_adc_nids; |
Takashi Iwai | 7570ef1 | 2009-08-15 11:57:53 +0200 | [diff] [blame] | 5167 | spec->num_adcs = ARRAY_SIZE(stac92hd83xxx_adc_nids); |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 5168 | spec->pwr_nids = stac92hd83xxx_pwr_nids; |
| 5169 | spec->pwr_mapping = stac92hd83xxx_pwr_mapping; |
| 5170 | spec->num_pwrs = ARRAY_SIZE(stac92hd83xxx_pwr_nids); |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 5171 | spec->multiout.dac_nids = spec->dac_nids; |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 5172 | |
| 5173 | spec->init = stac92hd83xxx_core_init; |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 5174 | spec->num_pins = ARRAY_SIZE(stac92hd83xxx_pin_nids); |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 5175 | spec->pin_nids = stac92hd83xxx_pin_nids; |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 5176 | spec->num_caps = STAC92HD83XXX_NUM_CAPS; |
| 5177 | spec->capvols = stac92hd83xxx_capvols; |
| 5178 | spec->capsws = stac92hd83xxx_capsws; |
| 5179 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 5180 | spec->board_config = snd_hda_check_board_config(codec, |
| 5181 | STAC_92HD83XXX_MODELS, |
| 5182 | stac92hd83xxx_models, |
| 5183 | stac92hd83xxx_cfg_tbl); |
| 5184 | again: |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5185 | if (spec->board_config < 0) |
Takashi Iwai | 9a11f1a | 2009-07-28 16:01:20 +0200 | [diff] [blame] | 5186 | snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n", |
| 5187 | codec->chip_name); |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5188 | else |
| 5189 | stac92xx_set_config_regs(codec, |
Takashi Iwai | af9f341a | 2008-11-18 10:38:56 +0100 | [diff] [blame] | 5190 | stac92hd83xxx_brd_tbl[spec->board_config]); |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 5191 | |
Matthew Ranostay | 32ed3f4 | 2009-01-22 20:53:29 -0500 | [diff] [blame] | 5192 | switch (codec->vendor_id) { |
| 5193 | case 0x111d7604: |
| 5194 | case 0x111d7605: |
Matthew Ranostay | ff2e733 | 2009-04-01 14:49:48 -0400 | [diff] [blame] | 5195 | case 0x111d76d5: |
Matthew Ranostay | 32ed3f4 | 2009-01-22 20:53:29 -0500 | [diff] [blame] | 5196 | if (spec->board_config == STAC_92HD83XXX_PWR_REF) |
| 5197 | break; |
| 5198 | spec->num_pwrs = 0; |
| 5199 | break; |
| 5200 | } |
| 5201 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 5202 | err = stac92xx_parse_auto_config(codec, 0x1d, 0); |
| 5203 | if (!err) { |
| 5204 | if (spec->board_config < 0) { |
| 5205 | printk(KERN_WARNING "hda_codec: No auto-config is " |
| 5206 | "available, default to model=ref\n"); |
| 5207 | spec->board_config = STAC_92HD83XXX_REF; |
| 5208 | goto again; |
| 5209 | } |
| 5210 | err = -EINVAL; |
| 5211 | } |
| 5212 | |
| 5213 | if (err < 0) { |
| 5214 | stac92xx_free(codec); |
| 5215 | return err; |
| 5216 | } |
| 5217 | |
Matthew Ranostay | 8bb0ac5 | 2009-02-12 16:50:01 -0500 | [diff] [blame] | 5218 | switch (spec->board_config) { |
| 5219 | case STAC_DELL_S14: |
| 5220 | nid = 0xf; |
| 5221 | break; |
| 5222 | default: |
| 5223 | nid = 0xe; |
| 5224 | break; |
| 5225 | } |
| 5226 | |
| 5227 | num_dacs = snd_hda_get_connections(codec, nid, |
| 5228 | conn, STAC92HD83_DAC_COUNT + 1) - 1; |
Jaroslav Kysela | 16a433d | 2009-07-22 16:20:40 +0200 | [diff] [blame] | 5229 | if (num_dacs < 0) |
| 5230 | num_dacs = STAC92HD83_DAC_COUNT; |
Matthew Ranostay | 8bb0ac5 | 2009-02-12 16:50:01 -0500 | [diff] [blame] | 5231 | |
| 5232 | /* set port X to select the last DAC |
| 5233 | */ |
| 5234 | snd_hda_codec_write_cache(codec, nid, 0, |
| 5235 | AC_VERB_SET_CONNECT_SEL, num_dacs); |
| 5236 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 5237 | codec->patch_ops = stac92xx_patch_ops; |
| 5238 | |
Takashi Iwai | 2d34e1b | 2008-11-28 14:35:16 +0100 | [diff] [blame] | 5239 | codec->proc_widget_hook = stac92hd_proc_hook; |
| 5240 | |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 5241 | return 0; |
| 5242 | } |
| 5243 | |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5244 | /* get the pin connection (fixed, none, etc) */ |
| 5245 | static unsigned int stac_get_defcfg_connect(struct hda_codec *codec, int idx) |
| 5246 | { |
| 5247 | struct sigmatel_spec *spec = codec->spec; |
| 5248 | unsigned int cfg; |
| 5249 | |
| 5250 | cfg = snd_hda_codec_get_pincfg(codec, spec->pin_nids[idx]); |
| 5251 | return get_defcfg_connect(cfg); |
| 5252 | } |
| 5253 | |
Herton Ronaldo Krzesinski | 6df703a | 2009-02-04 11:34:22 -0500 | [diff] [blame] | 5254 | static int stac92hd71bxx_connected_ports(struct hda_codec *codec, |
| 5255 | hda_nid_t *nids, int num_nids) |
| 5256 | { |
| 5257 | struct sigmatel_spec *spec = codec->spec; |
| 5258 | int idx, num; |
| 5259 | unsigned int def_conf; |
| 5260 | |
| 5261 | for (num = 0; num < num_nids; num++) { |
| 5262 | for (idx = 0; idx < spec->num_pins; idx++) |
| 5263 | if (spec->pin_nids[idx] == nids[num]) |
| 5264 | break; |
| 5265 | if (idx >= spec->num_pins) |
| 5266 | break; |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5267 | def_conf = stac_get_defcfg_connect(codec, idx); |
Herton Ronaldo Krzesinski | 6df703a | 2009-02-04 11:34:22 -0500 | [diff] [blame] | 5268 | if (def_conf == AC_JACK_PORT_NONE) |
| 5269 | break; |
| 5270 | } |
| 5271 | return num; |
| 5272 | } |
| 5273 | |
| 5274 | static int stac92hd71bxx_connected_smuxes(struct hda_codec *codec, |
| 5275 | hda_nid_t dig0pin) |
| 5276 | { |
| 5277 | struct sigmatel_spec *spec = codec->spec; |
| 5278 | int idx; |
| 5279 | |
| 5280 | for (idx = 0; idx < spec->num_pins; idx++) |
| 5281 | if (spec->pin_nids[idx] == dig0pin) |
| 5282 | break; |
| 5283 | if ((idx + 2) >= spec->num_pins) |
| 5284 | return 0; |
| 5285 | |
| 5286 | /* dig1pin case */ |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5287 | if (stac_get_defcfg_connect(codec, idx + 1) != AC_JACK_PORT_NONE) |
Herton Ronaldo Krzesinski | 6df703a | 2009-02-04 11:34:22 -0500 | [diff] [blame] | 5288 | return 2; |
| 5289 | |
| 5290 | /* dig0pin + dig2pin case */ |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5291 | if (stac_get_defcfg_connect(codec, idx + 2) != AC_JACK_PORT_NONE) |
Herton Ronaldo Krzesinski | 6df703a | 2009-02-04 11:34:22 -0500 | [diff] [blame] | 5292 | return 2; |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5293 | if (stac_get_defcfg_connect(codec, idx) != AC_JACK_PORT_NONE) |
Herton Ronaldo Krzesinski | 6df703a | 2009-02-04 11:34:22 -0500 | [diff] [blame] | 5294 | return 1; |
| 5295 | else |
| 5296 | return 0; |
| 5297 | } |
| 5298 | |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 5299 | static int patch_stac92hd71bxx(struct hda_codec *codec) |
| 5300 | { |
| 5301 | struct sigmatel_spec *spec; |
Matthew Ranostay | ca8d33f | 2009-01-26 09:33:52 -0500 | [diff] [blame] | 5302 | struct hda_verb *unmute_init = stac92hd71bxx_unmute_core_init; |
Vitaliy Kulikov | 5bdaaad | 2009-11-04 07:57:45 +0100 | [diff] [blame] | 5303 | unsigned int pin_cfg; |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 5304 | int err = 0; |
| 5305 | |
| 5306 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 5307 | if (spec == NULL) |
| 5308 | return -ENOMEM; |
| 5309 | |
| 5310 | codec->spec = spec; |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 5311 | codec->patch_ops = stac92xx_patch_ops; |
Herton Ronaldo Krzesinski | 616f89e | 2009-02-04 11:23:19 -0500 | [diff] [blame] | 5312 | spec->num_pins = STAC92HD71BXX_NUM_PINS; |
| 5313 | switch (codec->vendor_id) { |
| 5314 | case 0x111d76b6: |
| 5315 | case 0x111d76b7: |
| 5316 | spec->pin_nids = stac92hd71bxx_pin_nids_4port; |
| 5317 | break; |
| 5318 | case 0x111d7603: |
| 5319 | case 0x111d7608: |
| 5320 | /* On 92HD75Bx 0x27 isn't a pin nid */ |
| 5321 | spec->num_pins--; |
| 5322 | /* fallthrough */ |
| 5323 | default: |
| 5324 | spec->pin_nids = stac92hd71bxx_pin_nids_6port; |
| 5325 | } |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 5326 | spec->num_pwrs = ARRAY_SIZE(stac92hd71bxx_pwr_nids); |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 5327 | spec->board_config = snd_hda_check_board_config(codec, |
| 5328 | STAC_92HD71BXX_MODELS, |
| 5329 | stac92hd71bxx_models, |
| 5330 | stac92hd71bxx_cfg_tbl); |
| 5331 | again: |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5332 | if (spec->board_config < 0) |
Takashi Iwai | 9a11f1a | 2009-07-28 16:01:20 +0200 | [diff] [blame] | 5333 | snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n", |
| 5334 | codec->chip_name); |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5335 | else |
| 5336 | stac92xx_set_config_regs(codec, |
Takashi Iwai | af9f341a | 2008-11-18 10:38:56 +0100 | [diff] [blame] | 5337 | stac92hd71bxx_brd_tbl[spec->board_config]); |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 5338 | |
Takashi Iwai | fc64b26 | 2009-09-14 15:33:01 +0200 | [diff] [blame] | 5339 | if (spec->board_config != STAC_92HD71BXX_REF) { |
Takashi Iwai | 41c3b64 | 2008-11-18 10:45:15 +0100 | [diff] [blame] | 5340 | /* GPIO0 = EAPD */ |
| 5341 | spec->gpio_mask = 0x01; |
| 5342 | spec->gpio_dir = 0x01; |
| 5343 | spec->gpio_data = 0x01; |
| 5344 | } |
| 5345 | |
Herton Ronaldo Krzesinski | 6df703a | 2009-02-04 11:34:22 -0500 | [diff] [blame] | 5346 | spec->dmic_nids = stac92hd71bxx_dmic_nids; |
| 5347 | spec->dmux_nids = stac92hd71bxx_dmux_nids; |
| 5348 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 5349 | spec->num_caps = STAC92HD71BXX_NUM_CAPS; |
| 5350 | spec->capvols = stac92hd71bxx_capvols; |
| 5351 | spec->capsws = stac92hd71bxx_capsws; |
| 5352 | |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 5353 | switch (codec->vendor_id) { |
| 5354 | case 0x111d76b6: /* 4 Port without Analog Mixer */ |
| 5355 | case 0x111d76b7: |
Herton Ronaldo Krzesinski | 23c7b52 | 2009-02-08 19:51:28 -0200 | [diff] [blame] | 5356 | unmute_init++; |
| 5357 | /* fallthru */ |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 5358 | case 0x111d76b4: /* 6 Port without Analog Mixer */ |
| 5359 | case 0x111d76b5: |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 5360 | spec->init = stac92hd71bxx_core_init; |
Matthew Ranostay | 0ffa980 | 2008-09-08 11:20:05 -0400 | [diff] [blame] | 5361 | codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs; |
Herton Ronaldo Krzesinski | 6df703a | 2009-02-04 11:34:22 -0500 | [diff] [blame] | 5362 | spec->num_dmics = stac92hd71bxx_connected_ports(codec, |
| 5363 | stac92hd71bxx_dmic_nids, |
| 5364 | STAC92HD71BXX_NUM_DMICS); |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 5365 | break; |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 5366 | case 0x111d7608: /* 5 Port with Analog Mixer */ |
Takashi Iwai | 8e5f262 | 2008-11-15 19:28:54 +0100 | [diff] [blame] | 5367 | switch (spec->board_config) { |
| 5368 | case STAC_HP_M4: |
Matthew Ranostay | 72474be | 2008-10-09 09:32:17 -0400 | [diff] [blame] | 5369 | /* Enable VREF power saving on GPIO1 detect */ |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 5370 | err = stac_add_event(spec, codec->afg, |
| 5371 | STAC_VREF_EVENT, 0x02); |
| 5372 | if (err < 0) |
| 5373 | return err; |
Takashi Iwai | c5d08bb | 2008-11-18 10:55:36 +0100 | [diff] [blame] | 5374 | snd_hda_codec_write_cache(codec, codec->afg, 0, |
Matthew Ranostay | 72474be | 2008-10-09 09:32:17 -0400 | [diff] [blame] | 5375 | AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x02); |
| 5376 | snd_hda_codec_write_cache(codec, codec->afg, 0, |
Matthew Ranostay | 74aeaab | 2008-10-25 01:06:04 -0400 | [diff] [blame] | 5377 | AC_VERB_SET_UNSOLICITED_ENABLE, |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 5378 | AC_USRSP_EN | err); |
Matthew Ranostay | 72474be | 2008-10-09 09:32:17 -0400 | [diff] [blame] | 5379 | spec->gpio_mask |= 0x02; |
| 5380 | break; |
| 5381 | } |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 5382 | if ((codec->revision_id & 0xf) == 0 || |
Takashi Iwai | 8c2f767 | 2008-12-01 11:54:35 +0100 | [diff] [blame] | 5383 | (codec->revision_id & 0xf) == 1) |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 5384 | spec->stream_delay = 40; /* 40 milliseconds */ |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 5385 | |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 5386 | /* no output amps */ |
| 5387 | spec->num_pwrs = 0; |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 5388 | /* disable VSW */ |
Takashi Iwai | 26a2798 | 2009-07-29 16:28:09 +0200 | [diff] [blame] | 5389 | spec->init = stac92hd71bxx_core_init; |
Matthew Ranostay | ca8d33f | 2009-01-26 09:33:52 -0500 | [diff] [blame] | 5390 | unmute_init++; |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5391 | snd_hda_codec_set_pincfg(codec, 0x0f, 0x40f000f0); |
| 5392 | snd_hda_codec_set_pincfg(codec, 0x19, 0x40f000f3); |
Herton Ronaldo Krzesinski | 6df703a | 2009-02-04 11:34:22 -0500 | [diff] [blame] | 5393 | stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS - 1] = 0; |
| 5394 | spec->num_dmics = stac92hd71bxx_connected_ports(codec, |
| 5395 | stac92hd71bxx_dmic_nids, |
| 5396 | STAC92HD71BXX_NUM_DMICS - 1); |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 5397 | break; |
| 5398 | case 0x111d7603: /* 6 Port with Analog Mixer */ |
Takashi Iwai | 8c2f767 | 2008-12-01 11:54:35 +0100 | [diff] [blame] | 5399 | if ((codec->revision_id & 0xf) == 1) |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 5400 | spec->stream_delay = 40; /* 40 milliseconds */ |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 5401 | |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 5402 | /* no output amps */ |
| 5403 | spec->num_pwrs = 0; |
| 5404 | /* fallthru */ |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 5405 | default: |
Takashi Iwai | 26a2798 | 2009-07-29 16:28:09 +0200 | [diff] [blame] | 5406 | spec->init = stac92hd71bxx_core_init; |
Matthew Ranostay | 0ffa980 | 2008-09-08 11:20:05 -0400 | [diff] [blame] | 5407 | codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs; |
Herton Ronaldo Krzesinski | 6df703a | 2009-02-04 11:34:22 -0500 | [diff] [blame] | 5408 | spec->num_dmics = stac92hd71bxx_connected_ports(codec, |
| 5409 | stac92hd71bxx_dmic_nids, |
| 5410 | STAC92HD71BXX_NUM_DMICS); |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 5411 | break; |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 5412 | } |
| 5413 | |
Matthew Ranostay | ca8d33f | 2009-01-26 09:33:52 -0500 | [diff] [blame] | 5414 | if (get_wcaps(codec, 0xa) & AC_WCAP_IN_AMP) |
| 5415 | snd_hda_sequence_write_cache(codec, unmute_init); |
| 5416 | |
Takashi Iwai | b20f3b8 | 2009-06-02 01:20:22 +0200 | [diff] [blame] | 5417 | /* Some HP machines seem to have unstable codec communications |
| 5418 | * especially with ATI fglrx driver. For recovering from the |
| 5419 | * CORB/RIRB stall, allow the BUS reset and keep always sync |
| 5420 | */ |
| 5421 | if (spec->board_config == STAC_HP_DV5) { |
| 5422 | codec->bus->sync_write = 1; |
| 5423 | codec->bus->allow_bus_reset = 1; |
| 5424 | } |
| 5425 | |
Takashi Iwai | d78d7a9 | 2009-03-02 14:26:25 +0100 | [diff] [blame] | 5426 | spec->aloopback_ctl = stac92hd71bxx_loopback; |
Matthew Ranostay | 4b33c76 | 2008-10-10 09:07:23 -0400 | [diff] [blame] | 5427 | spec->aloopback_mask = 0x50; |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 5428 | spec->aloopback_shift = 0; |
| 5429 | |
Matthew Ranostay | 8daaaa9 | 2008-08-15 07:45:52 +0200 | [diff] [blame] | 5430 | spec->powerdown_adcs = 1; |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 5431 | spec->digbeep_nid = 0x26; |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 5432 | spec->mux_nids = stac92hd71bxx_mux_nids; |
| 5433 | spec->adc_nids = stac92hd71bxx_adc_nids; |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 5434 | spec->smux_nids = stac92hd71bxx_smux_nids; |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 5435 | spec->pwr_nids = stac92hd71bxx_pwr_nids; |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 5436 | |
| 5437 | spec->num_muxes = ARRAY_SIZE(stac92hd71bxx_mux_nids); |
| 5438 | spec->num_adcs = ARRAY_SIZE(stac92hd71bxx_adc_nids); |
Takashi Iwai | 5207e10 | 2009-07-30 13:09:08 +0200 | [diff] [blame] | 5439 | spec->num_dmuxes = ARRAY_SIZE(stac92hd71bxx_dmux_nids); |
Herton Ronaldo Krzesinski | 6df703a | 2009-02-04 11:34:22 -0500 | [diff] [blame] | 5440 | spec->num_smuxes = stac92hd71bxx_connected_smuxes(codec, 0x1e); |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 5441 | |
Matthew Ranostay | 6a14f58 | 2008-09-12 12:02:30 -0400 | [diff] [blame] | 5442 | switch (spec->board_config) { |
| 5443 | case STAC_HP_M4: |
Matthew Ranostay | 6a14f58 | 2008-09-12 12:02:30 -0400 | [diff] [blame] | 5444 | /* enable internal microphone */ |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5445 | snd_hda_codec_set_pincfg(codec, 0x0e, 0x01813040); |
Matthew Ranostay | b9aea71 | 2008-10-09 08:37:28 -0400 | [diff] [blame] | 5446 | stac92xx_auto_set_pinctl(codec, 0x0e, |
| 5447 | AC_PINCTL_IN_EN | AC_PINCTL_VREF_80); |
Matthew Ranostay | 3a7abfd | 2008-11-20 21:21:43 -0500 | [diff] [blame] | 5448 | /* fallthru */ |
| 5449 | case STAC_DELL_M4_2: |
| 5450 | spec->num_dmics = 0; |
| 5451 | spec->num_smuxes = 0; |
| 5452 | spec->num_dmuxes = 0; |
| 5453 | break; |
| 5454 | case STAC_DELL_M4_1: |
| 5455 | case STAC_DELL_M4_3: |
| 5456 | spec->num_dmics = 1; |
| 5457 | spec->num_smuxes = 0; |
Takashi Iwai | ea18aa4 | 2009-02-27 17:36:33 +0100 | [diff] [blame] | 5458 | spec->num_dmuxes = 1; |
Matthew Ranostay | 6a14f58 | 2008-09-12 12:02:30 -0400 | [diff] [blame] | 5459 | break; |
James Gardiner | 514bf54 | 2009-05-03 04:00:44 -0400 | [diff] [blame] | 5460 | case STAC_HP_DV4_1222NR: |
| 5461 | spec->num_dmics = 1; |
| 5462 | /* I don't know if it needs 1 or 2 smuxes - will wait for |
| 5463 | * bug reports to fix if needed |
| 5464 | */ |
| 5465 | spec->num_smuxes = 1; |
| 5466 | spec->num_dmuxes = 1; |
Takashi Iwai | 86d190e | 2009-05-26 15:18:58 +0200 | [diff] [blame] | 5467 | spec->gpio_led = 0x01; |
James Gardiner | 514bf54 | 2009-05-03 04:00:44 -0400 | [diff] [blame] | 5468 | /* fallthrough */ |
Herton Ronaldo Krzesinski | e2ea57a | 2009-02-16 10:23:00 +0100 | [diff] [blame] | 5469 | case STAC_HP_DV5: |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5470 | snd_hda_codec_set_pincfg(codec, 0x0d, 0x90170010); |
Herton Ronaldo Krzesinski | e2ea57a | 2009-02-16 10:23:00 +0100 | [diff] [blame] | 5471 | stac92xx_auto_set_pinctl(codec, 0x0d, AC_PINCTL_OUT_EN); |
Takashi Iwai | 6e34c03 | 2009-09-14 15:42:18 +0200 | [diff] [blame] | 5472 | /* HP dv6 gives the headphone pin as a line-out. Thus we |
| 5473 | * need to set hp_detect flag here to force to enable HP |
| 5474 | * detection. |
| 5475 | */ |
| 5476 | spec->hp_detect = 1; |
Herton Ronaldo Krzesinski | e2ea57a | 2009-02-16 10:23:00 +0100 | [diff] [blame] | 5477 | break; |
Christoph Plattner | ae6241f | 2009-03-08 23:19:05 +0100 | [diff] [blame] | 5478 | case STAC_HP_HDX: |
| 5479 | spec->num_dmics = 1; |
| 5480 | spec->num_dmuxes = 1; |
| 5481 | spec->num_smuxes = 1; |
Christoph Plattner | 443e26d | 2009-03-10 00:05:56 +0100 | [diff] [blame] | 5482 | /* orange/white mute led on GPIO3, orange=0, white=1 */ |
Takashi Iwai | 86d190e | 2009-05-26 15:18:58 +0200 | [diff] [blame] | 5483 | spec->gpio_led = 0x08; |
| 5484 | break; |
| 5485 | } |
Christoph Plattner | 443e26d | 2009-03-10 00:05:56 +0100 | [diff] [blame] | 5486 | |
Vitaliy Kulikov | 5bdaaad | 2009-11-04 07:57:45 +0100 | [diff] [blame] | 5487 | if (hp_bseries_system(codec->subsystem_id)) { |
| 5488 | pin_cfg = snd_hda_codec_get_pincfg(codec, 0x0f); |
| 5489 | if (get_defcfg_device(pin_cfg) == AC_JACK_LINE_OUT || |
| 5490 | get_defcfg_device(pin_cfg) == AC_JACK_SPEAKER || |
| 5491 | get_defcfg_device(pin_cfg) == AC_JACK_HP_OUT) { |
| 5492 | /* It was changed in the BIOS to just satisfy MS DTM. |
| 5493 | * Lets turn it back into slaved HP |
| 5494 | */ |
| 5495 | pin_cfg = (pin_cfg & (~AC_DEFCFG_DEVICE)) |
| 5496 | | (AC_JACK_HP_OUT << |
| 5497 | AC_DEFCFG_DEVICE_SHIFT); |
| 5498 | pin_cfg = (pin_cfg & (~(AC_DEFCFG_DEF_ASSOC |
| 5499 | | AC_DEFCFG_SEQUENCE))) |
| 5500 | | 0x1f; |
| 5501 | snd_hda_codec_set_pincfg(codec, 0x0f, pin_cfg); |
| 5502 | } |
| 5503 | } |
| 5504 | |
| 5505 | if ((codec->subsystem_id >> 16) == PCI_VENDOR_ID_HP) { |
| 5506 | const struct dmi_device *dev = NULL; |
| 5507 | while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, |
| 5508 | NULL, dev))) { |
| 5509 | if (strcmp(dev->name, "HP_Mute_LED_1")) { |
| 5510 | switch (codec->vendor_id) { |
| 5511 | case 0x111d7608: |
| 5512 | spec->gpio_led = 0x01; |
| 5513 | break; |
| 5514 | case 0x111d7600: |
| 5515 | case 0x111d7601: |
| 5516 | case 0x111d7602: |
| 5517 | case 0x111d7603: |
| 5518 | spec->gpio_led = 0x08; |
| 5519 | break; |
| 5520 | } |
| 5521 | break; |
| 5522 | } |
| 5523 | } |
| 5524 | } |
| 5525 | |
Takashi Iwai | 86d190e | 2009-05-26 15:18:58 +0200 | [diff] [blame] | 5526 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 5527 | if (spec->gpio_led) { |
| 5528 | spec->gpio_mask |= spec->gpio_led; |
| 5529 | spec->gpio_dir |= spec->gpio_led; |
| 5530 | spec->gpio_data |= spec->gpio_led; |
Christoph Plattner | 443e26d | 2009-03-10 00:05:56 +0100 | [diff] [blame] | 5531 | /* register check_power_status callback. */ |
Takashi Iwai | 6fce61a | 2009-03-10 07:48:57 +0100 | [diff] [blame] | 5532 | codec->patch_ops.check_power_status = |
Takashi Iwai | 86d190e | 2009-05-26 15:18:58 +0200 | [diff] [blame] | 5533 | stac92xx_hp_check_power_status; |
| 5534 | } |
Christoph Plattner | 443e26d | 2009-03-10 00:05:56 +0100 | [diff] [blame] | 5535 | #endif |
Matthew Ranostay | 6a14f58 | 2008-09-12 12:02:30 -0400 | [diff] [blame] | 5536 | |
Takashi Iwai | c21ca4a | 2008-12-19 09:26:08 +0100 | [diff] [blame] | 5537 | spec->multiout.dac_nids = spec->dac_nids; |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 5538 | |
Herton Ronaldo Krzesinski | 29d4ab4 | 2009-02-04 11:37:27 -0500 | [diff] [blame] | 5539 | err = stac92xx_parse_auto_config(codec, 0x21, 0); |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 5540 | if (!err) { |
| 5541 | if (spec->board_config < 0) { |
| 5542 | printk(KERN_WARNING "hda_codec: No auto-config is " |
| 5543 | "available, default to model=ref\n"); |
| 5544 | spec->board_config = STAC_92HD71BXX_REF; |
| 5545 | goto again; |
| 5546 | } |
| 5547 | err = -EINVAL; |
| 5548 | } |
| 5549 | |
| 5550 | if (err < 0) { |
| 5551 | stac92xx_free(codec); |
| 5552 | return err; |
| 5553 | } |
| 5554 | |
Takashi Iwai | 2d34e1b | 2008-11-28 14:35:16 +0100 | [diff] [blame] | 5555 | codec->proc_widget_hook = stac92hd7x_proc_hook; |
| 5556 | |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 5557 | return 0; |
Takashi Iwai | 86d190e | 2009-05-26 15:18:58 +0200 | [diff] [blame] | 5558 | } |
Matthew Ranostay | e035b84 | 2007-11-06 11:53:55 +0100 | [diff] [blame] | 5559 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 5560 | static int patch_stac922x(struct hda_codec *codec) |
| 5561 | { |
| 5562 | struct sigmatel_spec *spec; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 5563 | int err; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 5564 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 5565 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 5566 | if (spec == NULL) |
| 5567 | return -ENOMEM; |
| 5568 | |
| 5569 | codec->spec = spec; |
Takashi Iwai | a4eed13 | 2007-07-06 18:17:04 +0200 | [diff] [blame] | 5570 | spec->num_pins = ARRAY_SIZE(stac922x_pin_nids); |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 5571 | spec->pin_nids = stac922x_pin_nids; |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 5572 | spec->board_config = snd_hda_check_board_config(codec, STAC_922X_MODELS, |
| 5573 | stac922x_models, |
| 5574 | stac922x_cfg_tbl); |
Nicolas Boichat | 536319a | 2008-07-21 22:18:01 +0800 | [diff] [blame] | 5575 | if (spec->board_config == STAC_INTEL_MAC_AUTO) { |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 5576 | spec->gpio_mask = spec->gpio_dir = 0x03; |
| 5577 | spec->gpio_data = 0x03; |
Takashi Iwai | 3fc24d8 | 2007-02-16 13:27:18 +0100 | [diff] [blame] | 5578 | /* Intel Macs have all same PCI SSID, so we need to check |
| 5579 | * codec SSID to distinguish the exact models |
| 5580 | */ |
Nicolas Boichat | 6f0778d | 2007-03-15 12:38:15 +0100 | [diff] [blame] | 5581 | 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] | 5582 | switch (codec->subsystem_id) { |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 5583 | |
| 5584 | case 0x106b0800: |
| 5585 | spec->board_config = STAC_INTEL_MAC_V1; |
Abhijit Bhopatkar | c45e20e | 2007-04-17 11:57:16 +0200 | [diff] [blame] | 5586 | break; |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 5587 | case 0x106b0600: |
| 5588 | case 0x106b0700: |
| 5589 | spec->board_config = STAC_INTEL_MAC_V2; |
Nicolas Boichat | 6f0778d | 2007-03-15 12:38:15 +0100 | [diff] [blame] | 5590 | break; |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 5591 | case 0x106b0e00: |
| 5592 | case 0x106b0f00: |
| 5593 | case 0x106b1600: |
| 5594 | case 0x106b1700: |
| 5595 | case 0x106b0200: |
| 5596 | case 0x106b1e00: |
| 5597 | spec->board_config = STAC_INTEL_MAC_V3; |
Takashi Iwai | 3fc24d8 | 2007-02-16 13:27:18 +0100 | [diff] [blame] | 5598 | break; |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 5599 | case 0x106b1a00: |
| 5600 | case 0x00000100: |
| 5601 | spec->board_config = STAC_INTEL_MAC_V4; |
Sylvain FORET | f16928f | 2007-04-27 14:22:36 +0200 | [diff] [blame] | 5602 | break; |
Ivan N. Zlatev | 5d5d3bc | 2007-05-29 16:03:00 +0200 | [diff] [blame] | 5603 | case 0x106b0a00: |
| 5604 | case 0x106b2200: |
| 5605 | spec->board_config = STAC_INTEL_MAC_V5; |
Takashi Iwai | 0dae0f8 | 2007-05-21 12:41:29 +0200 | [diff] [blame] | 5606 | break; |
Nicolas Boichat | 536319a | 2008-07-21 22:18:01 +0800 | [diff] [blame] | 5607 | default: |
| 5608 | spec->board_config = STAC_INTEL_MAC_V3; |
| 5609 | break; |
Takashi Iwai | 3fc24d8 | 2007-02-16 13:27:18 +0100 | [diff] [blame] | 5610 | } |
| 5611 | } |
| 5612 | |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 5613 | again: |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5614 | if (spec->board_config < 0) |
Takashi Iwai | 9a11f1a | 2009-07-28 16:01:20 +0200 | [diff] [blame] | 5615 | snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n", |
| 5616 | codec->chip_name); |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5617 | else |
| 5618 | stac92xx_set_config_regs(codec, |
Takashi Iwai | af9f341a | 2008-11-18 10:38:56 +0100 | [diff] [blame] | 5619 | stac922x_brd_tbl[spec->board_config]); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 5620 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 5621 | spec->adc_nids = stac922x_adc_nids; |
| 5622 | spec->mux_nids = stac922x_mux_nids; |
Takashi Iwai | 2549413 | 2007-03-12 12:36:16 +0100 | [diff] [blame] | 5623 | spec->num_muxes = ARRAY_SIZE(stac922x_mux_nids); |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 5624 | spec->num_adcs = ARRAY_SIZE(stac922x_adc_nids); |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 5625 | spec->num_dmics = 0; |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 5626 | spec->num_pwrs = 0; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 5627 | |
| 5628 | spec->init = stac922x_core_init; |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 5629 | |
| 5630 | spec->num_caps = STAC922X_NUM_CAPS; |
| 5631 | spec->capvols = stac922x_capvols; |
| 5632 | spec->capsws = stac922x_capsws; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 5633 | |
| 5634 | spec->multiout.dac_nids = spec->dac_nids; |
Takashi Iwai | 19039bd | 2006-06-28 15:52:16 +0200 | [diff] [blame] | 5635 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 5636 | err = stac92xx_parse_auto_config(codec, 0x08, 0x09); |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 5637 | if (!err) { |
| 5638 | if (spec->board_config < 0) { |
| 5639 | printk(KERN_WARNING "hda_codec: No auto-config is " |
| 5640 | "available, default to model=ref\n"); |
| 5641 | spec->board_config = STAC_D945_REF; |
| 5642 | goto again; |
| 5643 | } |
| 5644 | err = -EINVAL; |
| 5645 | } |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 5646 | if (err < 0) { |
| 5647 | stac92xx_free(codec); |
| 5648 | return err; |
| 5649 | } |
| 5650 | |
| 5651 | codec->patch_ops = stac92xx_patch_ops; |
| 5652 | |
Takashi Iwai | 807a4636 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 5653 | /* Fix Mux capture level; max to 2 */ |
| 5654 | snd_hda_override_amp_caps(codec, 0x12, HDA_OUTPUT, |
| 5655 | (0 << AC_AMPCAP_OFFSET_SHIFT) | |
| 5656 | (2 << AC_AMPCAP_NUM_STEPS_SHIFT) | |
| 5657 | (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT) | |
| 5658 | (0 << AC_AMPCAP_MUTE_SHIFT)); |
| 5659 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 5660 | return 0; |
| 5661 | } |
| 5662 | |
| 5663 | static int patch_stac927x(struct hda_codec *codec) |
| 5664 | { |
| 5665 | struct sigmatel_spec *spec; |
| 5666 | int err; |
| 5667 | |
| 5668 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 5669 | if (spec == NULL) |
| 5670 | return -ENOMEM; |
| 5671 | |
| 5672 | codec->spec = spec; |
Matthew Ranostay | 45c1d85 | 2009-02-04 17:49:41 -0500 | [diff] [blame] | 5673 | codec->slave_dig_outs = stac927x_slave_dig_outs; |
Takashi Iwai | a4eed13 | 2007-07-06 18:17:04 +0200 | [diff] [blame] | 5674 | spec->num_pins = ARRAY_SIZE(stac927x_pin_nids); |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 5675 | spec->pin_nids = stac927x_pin_nids; |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 5676 | spec->board_config = snd_hda_check_board_config(codec, STAC_927X_MODELS, |
| 5677 | stac927x_models, |
| 5678 | stac927x_cfg_tbl); |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 5679 | again: |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5680 | if (spec->board_config < 0) |
Takashi Iwai | 9a11f1a | 2009-07-28 16:01:20 +0200 | [diff] [blame] | 5681 | snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n", |
| 5682 | codec->chip_name); |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5683 | else |
| 5684 | stac92xx_set_config_regs(codec, |
Takashi Iwai | af9f341a | 2008-11-18 10:38:56 +0100 | [diff] [blame] | 5685 | stac927x_brd_tbl[spec->board_config]); |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 5686 | |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 5687 | spec->digbeep_nid = 0x23; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 5688 | spec->adc_nids = stac927x_adc_nids; |
| 5689 | spec->num_adcs = ARRAY_SIZE(stac927x_adc_nids); |
| 5690 | spec->mux_nids = stac927x_mux_nids; |
| 5691 | spec->num_muxes = ARRAY_SIZE(stac927x_mux_nids); |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 5692 | spec->smux_nids = stac927x_smux_nids; |
| 5693 | spec->num_smuxes = ARRAY_SIZE(stac927x_smux_nids); |
Matthew Ranostay | 6597363 | 2008-09-16 10:39:37 -0400 | [diff] [blame] | 5694 | spec->spdif_labels = stac927x_spdif_labels; |
Matthew Ranostay | b76c850 | 2008-02-06 14:49:44 +0100 | [diff] [blame] | 5695 | spec->dac_list = stac927x_dac_nids; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 5696 | spec->multiout.dac_nids = spec->dac_nids; |
| 5697 | |
Takashi Iwai | af6ee30 | 2009-09-14 15:03:12 +0200 | [diff] [blame] | 5698 | if (spec->board_config != STAC_D965_REF) { |
| 5699 | /* GPIO0 High = Enable EAPD */ |
| 5700 | spec->eapd_mask = spec->gpio_mask = 0x01; |
| 5701 | spec->gpio_dir = spec->gpio_data = 0x01; |
| 5702 | } |
| 5703 | |
Tobin Davis | 81d3dbd | 2006-08-22 19:44:45 +0200 | [diff] [blame] | 5704 | switch (spec->board_config) { |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 5705 | case STAC_D965_3ST: |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 5706 | case STAC_D965_5ST: |
| 5707 | /* GPIO0 High = Enable EAPD */ |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 5708 | spec->num_dmics = 0; |
Tobin Davis | 93ed150 | 2006-09-01 21:03:12 +0200 | [diff] [blame] | 5709 | spec->init = d965_core_init; |
Tobin Davis | 81d3dbd | 2006-08-22 19:44:45 +0200 | [diff] [blame] | 5710 | break; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 5711 | case STAC_DELL_BIOS: |
Matthew Ranostay | 780c8be | 2008-04-14 13:32:27 +0200 | [diff] [blame] | 5712 | switch (codec->subsystem_id) { |
| 5713 | case 0x10280209: |
| 5714 | case 0x1028022e: |
| 5715 | /* correct the device field to SPDIF out */ |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5716 | snd_hda_codec_set_pincfg(codec, 0x21, 0x01442070); |
Matthew Ranostay | 780c8be | 2008-04-14 13:32:27 +0200 | [diff] [blame] | 5717 | break; |
Takashi Iwai | 86d190e | 2009-05-26 15:18:58 +0200 | [diff] [blame] | 5718 | } |
Matthew Ranostay | 03d7ca1 | 2008-02-21 07:51:46 +0100 | [diff] [blame] | 5719 | /* configure the analog microphone on some laptops */ |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5720 | snd_hda_codec_set_pincfg(codec, 0x0c, 0x90a79130); |
Matthew Ranostay | 2f32d90 | 2008-01-10 13:06:26 +0100 | [diff] [blame] | 5721 | /* correct the front output jack as a hp out */ |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5722 | snd_hda_codec_set_pincfg(codec, 0x0f, 0x0227011f); |
Matthew Ranostay | c481fca | 2008-01-07 12:18:28 +0100 | [diff] [blame] | 5723 | /* correct the front input jack as a mic */ |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5724 | snd_hda_codec_set_pincfg(codec, 0x0e, 0x02a79130); |
Matthew Ranostay | c481fca | 2008-01-07 12:18:28 +0100 | [diff] [blame] | 5725 | /* fallthru */ |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 5726 | case STAC_DELL_3ST: |
Takashi Iwai | af6ee30 | 2009-09-14 15:03:12 +0200 | [diff] [blame] | 5727 | if (codec->subsystem_id != 0x1028022f) { |
| 5728 | /* GPIO2 High = Enable EAPD */ |
| 5729 | spec->eapd_mask = spec->gpio_mask = 0x04; |
| 5730 | spec->gpio_dir = spec->gpio_data = 0x04; |
| 5731 | } |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 5732 | spec->dmic_nids = stac927x_dmic_nids; |
| 5733 | spec->num_dmics = STAC927X_NUM_DMICS; |
| 5734 | |
Takashi Iwai | ccca7cd | 2009-10-13 15:32:21 +0200 | [diff] [blame] | 5735 | spec->init = dell_3st_core_init; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 5736 | spec->dmux_nids = stac927x_dmux_nids; |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 5737 | spec->num_dmuxes = ARRAY_SIZE(stac927x_dmux_nids); |
Tobin Davis | 81d3dbd | 2006-08-22 19:44:45 +0200 | [diff] [blame] | 5738 | break; |
Takashi Iwai | 5493053 | 2009-10-11 17:38:29 +0200 | [diff] [blame] | 5739 | case STAC_927X_VOLKNOB: |
| 5740 | spec->num_dmics = 0; |
| 5741 | spec->init = stac927x_volknob_core_init; |
| 5742 | break; |
Tobin Davis | 81d3dbd | 2006-08-22 19:44:45 +0200 | [diff] [blame] | 5743 | default: |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 5744 | spec->num_dmics = 0; |
Tobin Davis | 81d3dbd | 2006-08-22 19:44:45 +0200 | [diff] [blame] | 5745 | spec->init = stac927x_core_init; |
Takashi Iwai | af6ee30 | 2009-09-14 15:03:12 +0200 | [diff] [blame] | 5746 | break; |
Tobin Davis | 81d3dbd | 2006-08-22 19:44:45 +0200 | [diff] [blame] | 5747 | } |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 5748 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 5749 | spec->num_caps = STAC927X_NUM_CAPS; |
| 5750 | spec->capvols = stac927x_capvols; |
| 5751 | spec->capsws = stac927x_capsws; |
| 5752 | |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 5753 | spec->num_pwrs = 0; |
Takashi Iwai | d78d7a9 | 2009-03-02 14:26:25 +0100 | [diff] [blame] | 5754 | spec->aloopback_ctl = stac927x_loopback; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5755 | spec->aloopback_mask = 0x40; |
| 5756 | spec->aloopback_shift = 0; |
Matthew Ranostay | c0cea0d | 2008-11-16 11:42:34 -0500 | [diff] [blame] | 5757 | spec->eapd_switch = 1; |
Matthew Ranostay | 8e9068b | 2007-12-17 11:58:13 +0100 | [diff] [blame] | 5758 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 5759 | err = stac92xx_parse_auto_config(codec, 0x1e, 0x20); |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 5760 | if (!err) { |
| 5761 | if (spec->board_config < 0) { |
| 5762 | printk(KERN_WARNING "hda_codec: No auto-config is " |
| 5763 | "available, default to model=ref\n"); |
| 5764 | spec->board_config = STAC_D965_REF; |
| 5765 | goto again; |
| 5766 | } |
| 5767 | err = -EINVAL; |
| 5768 | } |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 5769 | if (err < 0) { |
| 5770 | stac92xx_free(codec); |
| 5771 | return err; |
| 5772 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 5773 | |
| 5774 | codec->patch_ops = stac92xx_patch_ops; |
| 5775 | |
Takashi Iwai | 2d34e1b | 2008-11-28 14:35:16 +0100 | [diff] [blame] | 5776 | codec->proc_widget_hook = stac927x_proc_hook; |
| 5777 | |
Takashi Iwai | 5298765 | 2008-01-16 16:09:47 +0100 | [diff] [blame] | 5778 | /* |
| 5779 | * !!FIXME!! |
| 5780 | * The STAC927x seem to require fairly long delays for certain |
| 5781 | * command sequences. With too short delays (even if the answer |
| 5782 | * is set to RIRB properly), it results in the silence output |
| 5783 | * on some hardwares like Dell. |
| 5784 | * |
| 5785 | * The below flag enables the longer delay (see get_response |
| 5786 | * in hda_intel.c). |
| 5787 | */ |
| 5788 | codec->bus->needs_damn_long_delay = 1; |
| 5789 | |
Takashi Iwai | e28d832 | 2008-12-17 13:48:29 +0100 | [diff] [blame] | 5790 | /* no jack detecion for ref-no-jd model */ |
| 5791 | if (spec->board_config == STAC_D965_REF_NO_JD) |
| 5792 | spec->hp_detect = 0; |
| 5793 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 5794 | return 0; |
| 5795 | } |
| 5796 | |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 5797 | static int patch_stac9205(struct hda_codec *codec) |
| 5798 | { |
| 5799 | struct sigmatel_spec *spec; |
Takashi Iwai | 8259980 | 2007-07-31 15:56:24 +0200 | [diff] [blame] | 5800 | int err; |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 5801 | |
| 5802 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 5803 | if (spec == NULL) |
| 5804 | return -ENOMEM; |
| 5805 | |
| 5806 | codec->spec = spec; |
Takashi Iwai | a4eed13 | 2007-07-06 18:17:04 +0200 | [diff] [blame] | 5807 | spec->num_pins = ARRAY_SIZE(stac9205_pin_nids); |
Richard Fish | 11b44bb | 2006-08-23 18:31:34 +0200 | [diff] [blame] | 5808 | spec->pin_nids = stac9205_pin_nids; |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 5809 | spec->board_config = snd_hda_check_board_config(codec, STAC_9205_MODELS, |
| 5810 | stac9205_models, |
| 5811 | stac9205_cfg_tbl); |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 5812 | again: |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5813 | if (spec->board_config < 0) |
Takashi Iwai | 9a11f1a | 2009-07-28 16:01:20 +0200 | [diff] [blame] | 5814 | snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n", |
| 5815 | codec->chip_name); |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5816 | else |
| 5817 | stac92xx_set_config_regs(codec, |
Takashi Iwai | af9f341a | 2008-11-18 10:38:56 +0100 | [diff] [blame] | 5818 | stac9205_brd_tbl[spec->board_config]); |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 5819 | |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 5820 | spec->digbeep_nid = 0x23; |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 5821 | spec->adc_nids = stac9205_adc_nids; |
Maxim Levitsky | 9e05b7a | 2007-09-03 15:31:02 +0200 | [diff] [blame] | 5822 | spec->num_adcs = ARRAY_SIZE(stac9205_adc_nids); |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 5823 | spec->mux_nids = stac9205_mux_nids; |
Takashi Iwai | 2549413 | 2007-03-12 12:36:16 +0100 | [diff] [blame] | 5824 | spec->num_muxes = ARRAY_SIZE(stac9205_mux_nids); |
Matthew Ranostay | d973775 | 2008-09-07 12:03:41 +0200 | [diff] [blame] | 5825 | spec->smux_nids = stac9205_smux_nids; |
| 5826 | spec->num_smuxes = ARRAY_SIZE(stac9205_smux_nids); |
Matt Porter | 8b65727 | 2006-10-26 17:12:59 +0200 | [diff] [blame] | 5827 | spec->dmic_nids = stac9205_dmic_nids; |
Takashi Iwai | f6e9852 | 2007-10-16 14:27:04 +0200 | [diff] [blame] | 5828 | spec->num_dmics = STAC9205_NUM_DMICS; |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5829 | spec->dmux_nids = stac9205_dmux_nids; |
Takashi Iwai | 1697055e | 2007-12-18 18:05:52 +0100 | [diff] [blame] | 5830 | spec->num_dmuxes = ARRAY_SIZE(stac9205_dmux_nids); |
Matthew Ranostay | a64135a | 2008-01-10 16:55:06 +0100 | [diff] [blame] | 5831 | spec->num_pwrs = 0; |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 5832 | |
| 5833 | spec->init = stac9205_core_init; |
Takashi Iwai | d78d7a9 | 2009-03-02 14:26:25 +0100 | [diff] [blame] | 5834 | spec->aloopback_ctl = stac9205_loopback; |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 5835 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 5836 | spec->num_caps = STAC9205_NUM_CAPS; |
| 5837 | spec->capvols = stac9205_capvols; |
| 5838 | spec->capsws = stac9205_capsws; |
| 5839 | |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 5840 | spec->aloopback_mask = 0x40; |
| 5841 | spec->aloopback_shift = 0; |
Takashi Iwai | d9a4268 | 2009-01-22 17:40:18 +0100 | [diff] [blame] | 5842 | /* Turn on/off EAPD per HP plugging */ |
| 5843 | if (spec->board_config != STAC_9205_EAPD) |
| 5844 | spec->eapd_switch = 1; |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 5845 | spec->multiout.dac_nids = spec->dac_nids; |
Matthew Ranostay | 87d4836 | 2007-07-17 11:52:24 +0200 | [diff] [blame] | 5846 | |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 5847 | switch (spec->board_config){ |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 5848 | case STAC_9205_DELL_M43: |
Matthew Ranostay | 87d4836 | 2007-07-17 11:52:24 +0200 | [diff] [blame] | 5849 | /* Enable SPDIF in/out */ |
Takashi Iwai | 330ee99 | 2009-02-20 14:33:36 +0100 | [diff] [blame] | 5850 | snd_hda_codec_set_pincfg(codec, 0x1f, 0x01441030); |
| 5851 | snd_hda_codec_set_pincfg(codec, 0x20, 0x1c410030); |
Matt Porter | 3338240 | 2006-12-18 13:17:28 +0100 | [diff] [blame] | 5852 | |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 5853 | /* Enable unsol response for GPIO4/Dock HP connection */ |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 5854 | err = stac_add_event(spec, codec->afg, STAC_VREF_EVENT, 0x01); |
| 5855 | if (err < 0) |
| 5856 | return err; |
Takashi Iwai | c5d08bb | 2008-11-18 10:55:36 +0100 | [diff] [blame] | 5857 | snd_hda_codec_write_cache(codec, codec->afg, 0, |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 5858 | AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10); |
| 5859 | snd_hda_codec_write_cache(codec, codec->afg, 0, |
Takashi Iwai | c6e4c66 | 2008-11-25 11:58:19 +0100 | [diff] [blame] | 5860 | AC_VERB_SET_UNSOLICITED_ENABLE, |
| 5861 | AC_USRSP_EN | err); |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 5862 | |
| 5863 | spec->gpio_dir = 0x0b; |
Matthew Ranostay | 0fc9dec | 2008-04-14 13:32:54 +0200 | [diff] [blame] | 5864 | spec->eapd_mask = 0x01; |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 5865 | spec->gpio_mask = 0x1b; |
| 5866 | spec->gpio_mute = 0x10; |
Matthew Ranostay | e2e7d62 | 2008-01-24 15:32:15 +0100 | [diff] [blame] | 5867 | /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute, |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 5868 | * GPIO3 Low = DRM |
Matthew Ranostay | 87d4836 | 2007-07-17 11:52:24 +0200 | [diff] [blame] | 5869 | */ |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 5870 | spec->gpio_data = 0x01; |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 5871 | break; |
Matthew Ranostay | b2c4f4d | 2008-09-26 10:06:40 -0400 | [diff] [blame] | 5872 | case STAC_9205_REF: |
| 5873 | /* SPDIF-In enabled */ |
| 5874 | break; |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 5875 | default: |
| 5876 | /* GPIO0 High = EAPD */ |
Matthew Ranostay | 0fc9dec | 2008-04-14 13:32:54 +0200 | [diff] [blame] | 5877 | spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1; |
Matthew Ranostay | 4fe5195c | 2008-01-29 15:28:44 +0100 | [diff] [blame] | 5878 | spec->gpio_data = 0x01; |
Tobin Davis | ae0a8ed | 2007-08-13 15:50:29 +0200 | [diff] [blame] | 5879 | break; |
| 5880 | } |
Matthew Ranostay | 87d4836 | 2007-07-17 11:52:24 +0200 | [diff] [blame] | 5881 | |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 5882 | err = stac92xx_parse_auto_config(codec, 0x1f, 0x20); |
Takashi Iwai | 9e507ab | 2007-02-08 17:50:10 +0100 | [diff] [blame] | 5883 | if (!err) { |
| 5884 | if (spec->board_config < 0) { |
| 5885 | printk(KERN_WARNING "hda_codec: No auto-config is " |
| 5886 | "available, default to model=ref\n"); |
| 5887 | spec->board_config = STAC_9205_REF; |
| 5888 | goto again; |
| 5889 | } |
| 5890 | err = -EINVAL; |
| 5891 | } |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 5892 | if (err < 0) { |
| 5893 | stac92xx_free(codec); |
| 5894 | return err; |
| 5895 | } |
| 5896 | |
| 5897 | codec->patch_ops = stac92xx_patch_ops; |
| 5898 | |
Takashi Iwai | 2d34e1b | 2008-11-28 14:35:16 +0100 | [diff] [blame] | 5899 | codec->proc_widget_hook = stac9205_proc_hook; |
| 5900 | |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 5901 | return 0; |
| 5902 | } |
| 5903 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 5904 | /* |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 5905 | * STAC9872 hack |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 5906 | */ |
| 5907 | |
Takashi Iwai | 1e137f9 | 2009-01-21 07:41:22 +0100 | [diff] [blame] | 5908 | static struct hda_verb stac9872_core_init[] = { |
Takashi Iwai | 1624cb9 | 2007-07-05 13:10:51 +0200 | [diff] [blame] | 5909 | {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] | 5910 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */ |
| 5911 | {} |
| 5912 | }; |
| 5913 | |
Takashi Iwai | caa10b6 | 2009-01-20 17:19:01 +0100 | [diff] [blame] | 5914 | static hda_nid_t stac9872_pin_nids[] = { |
| 5915 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, |
| 5916 | 0x11, 0x13, 0x14, |
| 5917 | }; |
| 5918 | |
| 5919 | static hda_nid_t stac9872_adc_nids[] = { |
| 5920 | 0x8 /*,0x6*/ |
| 5921 | }; |
| 5922 | |
| 5923 | static hda_nid_t stac9872_mux_nids[] = { |
| 5924 | 0x15 |
| 5925 | }; |
| 5926 | |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 5927 | static unsigned long stac9872_capvols[] = { |
| 5928 | HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT), |
| 5929 | }; |
| 5930 | #define stac9872_capsws stac9872_capvols |
| 5931 | |
Takashi Iwai | 307282c | 2009-03-12 18:17:58 +0100 | [diff] [blame] | 5932 | static unsigned int stac9872_vaio_pin_configs[9] = { |
| 5933 | 0x03211020, 0x411111f0, 0x411111f0, 0x03a15030, |
| 5934 | 0x411111f0, 0x90170110, 0x411111f0, 0x411111f0, |
| 5935 | 0x90a7013e |
| 5936 | }; |
| 5937 | |
| 5938 | static const char *stac9872_models[STAC_9872_MODELS] = { |
| 5939 | [STAC_9872_AUTO] = "auto", |
| 5940 | [STAC_9872_VAIO] = "vaio", |
| 5941 | }; |
| 5942 | |
| 5943 | static unsigned int *stac9872_brd_tbl[STAC_9872_MODELS] = { |
| 5944 | [STAC_9872_VAIO] = stac9872_vaio_pin_configs, |
| 5945 | }; |
| 5946 | |
| 5947 | static struct snd_pci_quirk stac9872_cfg_tbl[] = { |
Takashi Iwai | b04add9 | 2009-07-20 08:01:36 +0200 | [diff] [blame] | 5948 | SND_PCI_QUIRK_MASK(0x104d, 0xfff0, 0x81e0, |
| 5949 | "Sony VAIO F/S", STAC_9872_VAIO), |
Takashi Iwai | 307282c | 2009-03-12 18:17:58 +0100 | [diff] [blame] | 5950 | {} /* terminator */ |
| 5951 | }; |
| 5952 | |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 5953 | static int patch_stac9872(struct hda_codec *codec) |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 5954 | { |
| 5955 | struct sigmatel_spec *spec; |
Takashi Iwai | 1e137f9 | 2009-01-21 07:41:22 +0100 | [diff] [blame] | 5956 | int err; |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 5957 | |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 5958 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 5959 | if (spec == NULL) |
| 5960 | return -ENOMEM; |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 5961 | codec->spec = spec; |
Takashi Iwai | b04add9 | 2009-07-20 08:01:36 +0200 | [diff] [blame] | 5962 | spec->num_pins = ARRAY_SIZE(stac9872_pin_nids); |
| 5963 | spec->pin_nids = stac9872_pin_nids; |
Takashi Iwai | caa10b6 | 2009-01-20 17:19:01 +0100 | [diff] [blame] | 5964 | |
| 5965 | spec->board_config = snd_hda_check_board_config(codec, STAC_9872_MODELS, |
| 5966 | stac9872_models, |
| 5967 | stac9872_cfg_tbl); |
Takashi Iwai | 307282c | 2009-03-12 18:17:58 +0100 | [diff] [blame] | 5968 | if (spec->board_config < 0) |
Takashi Iwai | 9a11f1a | 2009-07-28 16:01:20 +0200 | [diff] [blame] | 5969 | snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n", |
| 5970 | codec->chip_name); |
Takashi Iwai | 307282c | 2009-03-12 18:17:58 +0100 | [diff] [blame] | 5971 | else |
| 5972 | stac92xx_set_config_regs(codec, |
| 5973 | stac9872_brd_tbl[spec->board_config]); |
Takashi Iwai | caa10b6 | 2009-01-20 17:19:01 +0100 | [diff] [blame] | 5974 | |
Takashi Iwai | 1e137f9 | 2009-01-21 07:41:22 +0100 | [diff] [blame] | 5975 | spec->multiout.dac_nids = spec->dac_nids; |
| 5976 | spec->num_adcs = ARRAY_SIZE(stac9872_adc_nids); |
| 5977 | spec->adc_nids = stac9872_adc_nids; |
| 5978 | spec->num_muxes = ARRAY_SIZE(stac9872_mux_nids); |
| 5979 | spec->mux_nids = stac9872_mux_nids; |
Takashi Iwai | 1e137f9 | 2009-01-21 07:41:22 +0100 | [diff] [blame] | 5980 | spec->init = stac9872_core_init; |
Takashi Iwai | 6479c63 | 2009-07-28 18:20:25 +0200 | [diff] [blame] | 5981 | spec->num_caps = 1; |
| 5982 | spec->capvols = stac9872_capvols; |
| 5983 | spec->capsws = stac9872_capsws; |
Takashi Iwai | caa10b6 | 2009-01-20 17:19:01 +0100 | [diff] [blame] | 5984 | |
Takashi Iwai | 1e137f9 | 2009-01-21 07:41:22 +0100 | [diff] [blame] | 5985 | err = stac92xx_parse_auto_config(codec, 0x10, 0x12); |
| 5986 | if (err < 0) { |
| 5987 | stac92xx_free(codec); |
| 5988 | return -EINVAL; |
Takashi Iwai | caa10b6 | 2009-01-20 17:19:01 +0100 | [diff] [blame] | 5989 | } |
Takashi Iwai | 1e137f9 | 2009-01-21 07:41:22 +0100 | [diff] [blame] | 5990 | spec->input_mux = &spec->private_imux; |
| 5991 | codec->patch_ops = stac92xx_patch_ops; |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 5992 | return 0; |
| 5993 | } |
| 5994 | |
| 5995 | |
| 5996 | /* |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 5997 | * patch entries |
| 5998 | */ |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 5999 | static struct hda_codec_preset snd_hda_preset_sigmatel[] = { |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 6000 | { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 }, |
| 6001 | { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x }, |
| 6002 | { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x }, |
| 6003 | { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x }, |
| 6004 | { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x }, |
| 6005 | { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x }, |
| 6006 | { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x }, |
Matt Porter | 22a27c7 | 2006-07-06 18:49:10 +0200 | [diff] [blame] | 6007 | { .id = 0x83847618, .name = "STAC9227", .patch = patch_stac927x }, |
| 6008 | { .id = 0x83847619, .name = "STAC9227", .patch = patch_stac927x }, |
| 6009 | { .id = 0x83847616, .name = "STAC9228", .patch = patch_stac927x }, |
| 6010 | { .id = 0x83847617, .name = "STAC9228", .patch = patch_stac927x }, |
| 6011 | { .id = 0x83847614, .name = "STAC9229", .patch = patch_stac927x }, |
| 6012 | { .id = 0x83847615, .name = "STAC9229", .patch = patch_stac927x }, |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 6013 | { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x }, |
| 6014 | { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x }, |
| 6015 | { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x }, |
| 6016 | { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x }, |
| 6017 | { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x }, |
| 6018 | { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x }, |
| 6019 | { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x }, |
| 6020 | { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x }, |
| 6021 | { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x }, |
| 6022 | { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x }, |
Tobin Davis | 8e21c34 | 2007-01-08 11:04:17 +0100 | [diff] [blame] | 6023 | { .id = 0x83847632, .name = "STAC9202", .patch = patch_stac925x }, |
| 6024 | { .id = 0x83847633, .name = "STAC9202D", .patch = patch_stac925x }, |
| 6025 | { .id = 0x83847634, .name = "STAC9250", .patch = patch_stac925x }, |
| 6026 | { .id = 0x83847635, .name = "STAC9250D", .patch = patch_stac925x }, |
| 6027 | { .id = 0x83847636, .name = "STAC9251", .patch = patch_stac925x }, |
| 6028 | { .id = 0x83847637, .name = "STAC9250D", .patch = patch_stac925x }, |
Takashi Iwai | 7bd3c0f | 2008-05-02 12:28:02 +0200 | [diff] [blame] | 6029 | { .id = 0x83847645, .name = "92HD206X", .patch = patch_stac927x }, |
| 6030 | { .id = 0x83847646, .name = "92HD206D", .patch = patch_stac927x }, |
Guillaume Munch | 6d85906 | 2006-08-22 17:15:47 +0200 | [diff] [blame] | 6031 | /* The following does not take into account .id=0x83847661 when subsys = |
| 6032 | * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are |
| 6033 | * currently not fully supported. |
| 6034 | */ |
| 6035 | { .id = 0x83847661, .name = "CXD9872RD/K", .patch = patch_stac9872 }, |
| 6036 | { .id = 0x83847662, .name = "STAC9872AK", .patch = patch_stac9872 }, |
| 6037 | { .id = 0x83847664, .name = "CXD9872AKD", .patch = patch_stac9872 }, |
Simos Xenitellis | a5c0f88 | 2009-06-10 16:33:31 +0100 | [diff] [blame] | 6038 | { .id = 0x83847698, .name = "STAC9205", .patch = patch_stac9205 }, |
Matt Porter | f3302a5 | 2006-07-31 12:49:34 +0200 | [diff] [blame] | 6039 | { .id = 0x838476a0, .name = "STAC9205", .patch = patch_stac9205 }, |
| 6040 | { .id = 0x838476a1, .name = "STAC9205D", .patch = patch_stac9205 }, |
| 6041 | { .id = 0x838476a2, .name = "STAC9204", .patch = patch_stac9205 }, |
| 6042 | { .id = 0x838476a3, .name = "STAC9204D", .patch = patch_stac9205 }, |
| 6043 | { .id = 0x838476a4, .name = "STAC9255", .patch = patch_stac9205 }, |
| 6044 | { .id = 0x838476a5, .name = "STAC9255D", .patch = patch_stac9205 }, |
| 6045 | { .id = 0x838476a6, .name = "STAC9254", .patch = patch_stac9205 }, |
| 6046 | { .id = 0x838476a7, .name = "STAC9254D", .patch = patch_stac9205 }, |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 6047 | { .id = 0x111d7603, .name = "92HD75B3X5", .patch = patch_stac92hd71bxx}, |
Matthew Ranostay | d0513fc | 2008-07-27 10:30:30 +0200 | [diff] [blame] | 6048 | { .id = 0x111d7604, .name = "92HD83C1X5", .patch = patch_stac92hd83xxx}, |
| 6049 | { .id = 0x111d7605, .name = "92HD81B1X5", .patch = patch_stac92hd83xxx}, |
Matthew Ranostay | ff2e733 | 2009-04-01 14:49:48 -0400 | [diff] [blame] | 6050 | { .id = 0x111d76d5, .name = "92HD81B1C5", .patch = patch_stac92hd83xxx}, |
Matthew Ranostay | aafc441 | 2008-06-13 18:04:33 +0200 | [diff] [blame] | 6051 | { .id = 0x111d7608, .name = "92HD75B2X5", .patch = patch_stac92hd71bxx}, |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 6052 | { .id = 0x111d7674, .name = "92HD73D1X5", .patch = patch_stac92hd73xx }, |
| 6053 | { .id = 0x111d7675, .name = "92HD73C1X5", .patch = patch_stac92hd73xx }, |
Matthew Ranostay | e1f0d66 | 2007-12-13 17:47:21 +0100 | [diff] [blame] | 6054 | { .id = 0x111d7676, .name = "92HD73E1X5", .patch = patch_stac92hd73xx }, |
Matthew Ranostay | 541eee8 | 2007-12-14 12:08:04 +0100 | [diff] [blame] | 6055 | { .id = 0x111d76b0, .name = "92HD71B8X", .patch = patch_stac92hd71bxx }, |
| 6056 | { .id = 0x111d76b1, .name = "92HD71B8X", .patch = patch_stac92hd71bxx }, |
| 6057 | { .id = 0x111d76b2, .name = "92HD71B7X", .patch = patch_stac92hd71bxx }, |
| 6058 | { .id = 0x111d76b3, .name = "92HD71B7X", .patch = patch_stac92hd71bxx }, |
| 6059 | { .id = 0x111d76b4, .name = "92HD71B6X", .patch = patch_stac92hd71bxx }, |
| 6060 | { .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx }, |
| 6061 | { .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx }, |
| 6062 | { .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx }, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 6063 | {} /* terminator */ |
| 6064 | }; |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 6065 | |
| 6066 | MODULE_ALIAS("snd-hda-codec-id:8384*"); |
| 6067 | MODULE_ALIAS("snd-hda-codec-id:111d*"); |
| 6068 | |
| 6069 | MODULE_LICENSE("GPL"); |
| 6070 | MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec"); |
| 6071 | |
| 6072 | static struct hda_codec_preset_list sigmatel_list = { |
| 6073 | .preset = snd_hda_preset_sigmatel, |
| 6074 | .owner = THIS_MODULE, |
| 6075 | }; |
| 6076 | |
| 6077 | static int __init patch_sigmatel_init(void) |
| 6078 | { |
| 6079 | return snd_hda_add_codec_preset(&sigmatel_list); |
| 6080 | } |
| 6081 | |
| 6082 | static void __exit patch_sigmatel_exit(void) |
| 6083 | { |
| 6084 | snd_hda_delete_codec_preset(&sigmatel_list); |
| 6085 | } |
| 6086 | |
| 6087 | module_init(patch_sigmatel_init) |
| 6088 | module_exit(patch_sigmatel_exit) |