blob: 3bd89ab0d9af703f9130d94a5747cd8ad77431a2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
4 * Generic widget tree parser
5 *
6 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
7 *
8 * This driver is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This driver is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/init.h>
24#include <linux/slab.h>
Paul Gortmakerd81a6d72011-09-22 09:34:58 -040025#include <linux/export.h>
Takashi Iwai352f7f92012-12-19 12:52:06 +010026#include <linux/sort.h>
Takashi Iwai55196ff2013-01-24 17:32:56 +010027#include <linux/delay.h>
Takashi Iwaif873e532012-12-20 16:58:39 +010028#include <linux/ctype.h>
29#include <linux/string.h>
Takashi Iwai294765582013-01-17 09:52:11 +010030#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <sound/core.h>
Takashi Iwai352f7f92012-12-19 12:52:06 +010032#include <sound/jack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "hda_codec.h"
34#include "hda_local.h"
Takashi Iwai352f7f92012-12-19 12:52:06 +010035#include "hda_auto_parser.h"
36#include "hda_jack.h"
Takashi Iwai7504b6c2013-03-18 11:25:51 +010037#include "hda_beep.h"
Takashi Iwai352f7f92012-12-19 12:52:06 +010038#include "hda_generic.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Takashi Iwai352f7f92012-12-19 12:52:06 +010041/* initialize hda_gen_spec struct */
42int snd_hda_gen_spec_init(struct hda_gen_spec *spec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
Takashi Iwai352f7f92012-12-19 12:52:06 +010044 snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32);
Takashi Iwai352f7f92012-12-19 12:52:06 +010045 snd_array_init(&spec->paths, sizeof(struct nid_path), 8);
Takashi Iwai0186f4f2013-02-07 10:45:11 +010046 snd_array_init(&spec->loopback_list, sizeof(struct hda_amp_list), 8);
Takashi Iwai38cf6f12012-12-21 14:09:42 +010047 mutex_init(&spec->pcm_mutex);
Takashi Iwai352f7f92012-12-19 12:52:06 +010048 return 0;
49}
50EXPORT_SYMBOL_HDA(snd_hda_gen_spec_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Takashi Iwai12c93df2012-12-19 14:38:33 +010052struct snd_kcontrol_new *
53snd_hda_gen_add_kctl(struct hda_gen_spec *spec, const char *name,
54 const struct snd_kcontrol_new *temp)
Takashi Iwai352f7f92012-12-19 12:52:06 +010055{
56 struct snd_kcontrol_new *knew = snd_array_new(&spec->kctls);
57 if (!knew)
58 return NULL;
59 *knew = *temp;
60 if (name)
61 knew->name = kstrdup(name, GFP_KERNEL);
62 else if (knew->name)
63 knew->name = kstrdup(knew->name, GFP_KERNEL);
64 if (!knew->name)
65 return NULL;
66 return knew;
67}
Takashi Iwai12c93df2012-12-19 14:38:33 +010068EXPORT_SYMBOL_HDA(snd_hda_gen_add_kctl);
Takashi Iwai352f7f92012-12-19 12:52:06 +010069
70static void free_kctls(struct hda_gen_spec *spec)
71{
72 if (spec->kctls.list) {
73 struct snd_kcontrol_new *kctl = spec->kctls.list;
74 int i;
75 for (i = 0; i < spec->kctls.used; i++)
76 kfree(kctl[i].name);
77 }
78 snd_array_free(&spec->kctls);
79}
80
Takashi Iwai352f7f92012-12-19 12:52:06 +010081void snd_hda_gen_spec_free(struct hda_gen_spec *spec)
82{
83 if (!spec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return;
Takashi Iwai352f7f92012-12-19 12:52:06 +010085 free_kctls(spec);
Takashi Iwai352f7f92012-12-19 12:52:06 +010086 snd_array_free(&spec->paths);
Takashi Iwai0186f4f2013-02-07 10:45:11 +010087 snd_array_free(&spec->loopback_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
Takashi Iwai352f7f92012-12-19 12:52:06 +010089EXPORT_SYMBOL_HDA(snd_hda_gen_spec_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91/*
Takashi Iwai1c70a582013-01-11 17:48:22 +010092 * store user hints
93 */
94static void parse_user_hints(struct hda_codec *codec)
95{
96 struct hda_gen_spec *spec = codec->spec;
97 int val;
98
99 val = snd_hda_get_bool_hint(codec, "jack_detect");
100 if (val >= 0)
101 codec->no_jack_detect = !val;
102 val = snd_hda_get_bool_hint(codec, "inv_jack_detect");
103 if (val >= 0)
104 codec->inv_jack_detect = !!val;
105 val = snd_hda_get_bool_hint(codec, "trigger_sense");
106 if (val >= 0)
107 codec->no_trigger_sense = !val;
108 val = snd_hda_get_bool_hint(codec, "inv_eapd");
109 if (val >= 0)
110 codec->inv_eapd = !!val;
111 val = snd_hda_get_bool_hint(codec, "pcm_format_first");
112 if (val >= 0)
113 codec->pcm_format_first = !!val;
114 val = snd_hda_get_bool_hint(codec, "sticky_stream");
115 if (val >= 0)
116 codec->no_sticky_stream = !val;
117 val = snd_hda_get_bool_hint(codec, "spdif_status_reset");
118 if (val >= 0)
119 codec->spdif_status_reset = !!val;
120 val = snd_hda_get_bool_hint(codec, "pin_amp_workaround");
121 if (val >= 0)
122 codec->pin_amp_workaround = !!val;
123 val = snd_hda_get_bool_hint(codec, "single_adc_amp");
124 if (val >= 0)
125 codec->single_adc_amp = !!val;
126
Takashi Iwaif72706b2013-01-16 18:20:07 +0100127 val = snd_hda_get_bool_hint(codec, "auto_mute");
128 if (val >= 0)
129 spec->suppress_auto_mute = !val;
Takashi Iwai1c70a582013-01-11 17:48:22 +0100130 val = snd_hda_get_bool_hint(codec, "auto_mic");
131 if (val >= 0)
132 spec->suppress_auto_mic = !val;
133 val = snd_hda_get_bool_hint(codec, "line_in_auto_switch");
134 if (val >= 0)
135 spec->line_in_auto_switch = !!val;
Takashi Iwai7eebffd2013-06-24 16:00:21 +0200136 val = snd_hda_get_bool_hint(codec, "auto_mute_via_amp");
137 if (val >= 0)
138 spec->auto_mute_via_amp = !!val;
Takashi Iwai1c70a582013-01-11 17:48:22 +0100139 val = snd_hda_get_bool_hint(codec, "need_dac_fix");
140 if (val >= 0)
141 spec->need_dac_fix = !!val;
142 val = snd_hda_get_bool_hint(codec, "primary_hp");
143 if (val >= 0)
144 spec->no_primary_hp = !val;
Takashi Iwaida96fb52013-07-29 16:54:36 +0200145 val = snd_hda_get_bool_hint(codec, "multi_io");
146 if (val >= 0)
147 spec->no_multi_io = !val;
Takashi Iwai1c70a582013-01-11 17:48:22 +0100148 val = snd_hda_get_bool_hint(codec, "multi_cap_vol");
149 if (val >= 0)
150 spec->multi_cap_vol = !!val;
151 val = snd_hda_get_bool_hint(codec, "inv_dmic_split");
152 if (val >= 0)
153 spec->inv_dmic_split = !!val;
154 val = snd_hda_get_bool_hint(codec, "indep_hp");
155 if (val >= 0)
156 spec->indep_hp = !!val;
157 val = snd_hda_get_bool_hint(codec, "add_stereo_mix_input");
158 if (val >= 0)
159 spec->add_stereo_mix_input = !!val;
Takashi Iwaif811c3c2013-03-07 18:32:59 +0100160 /* the following two are just for compatibility */
Takashi Iwai1c70a582013-01-11 17:48:22 +0100161 val = snd_hda_get_bool_hint(codec, "add_out_jack_modes");
162 if (val >= 0)
Takashi Iwaif811c3c2013-03-07 18:32:59 +0100163 spec->add_jack_modes = !!val;
Takashi Iwai294765582013-01-17 09:52:11 +0100164 val = snd_hda_get_bool_hint(codec, "add_in_jack_modes");
165 if (val >= 0)
Takashi Iwaif811c3c2013-03-07 18:32:59 +0100166 spec->add_jack_modes = !!val;
167 val = snd_hda_get_bool_hint(codec, "add_jack_modes");
168 if (val >= 0)
169 spec->add_jack_modes = !!val;
Takashi Iwai55196ff2013-01-24 17:32:56 +0100170 val = snd_hda_get_bool_hint(codec, "power_down_unused");
171 if (val >= 0)
172 spec->power_down_unused = !!val;
Takashi Iwai967303d2013-02-19 17:12:42 +0100173 val = snd_hda_get_bool_hint(codec, "add_hp_mic");
174 if (val >= 0)
175 spec->hp_mic = !!val;
176 val = snd_hda_get_bool_hint(codec, "hp_mic_detect");
177 if (val >= 0)
178 spec->suppress_hp_mic_detect = !val;
Takashi Iwai1c70a582013-01-11 17:48:22 +0100179
180 if (!snd_hda_get_int_hint(codec, "mixer_nid", &val))
181 spec->mixer_nid = val;
182}
183
184/*
Takashi Iwai2c12c302013-01-10 09:33:29 +0100185 * pin control value accesses
186 */
187
188#define update_pin_ctl(codec, pin, val) \
189 snd_hda_codec_update_cache(codec, pin, 0, \
190 AC_VERB_SET_PIN_WIDGET_CONTROL, val)
191
192/* restore the pinctl based on the cached value */
193static inline void restore_pin_ctl(struct hda_codec *codec, hda_nid_t pin)
194{
195 update_pin_ctl(codec, pin, snd_hda_codec_get_pin_target(codec, pin));
196}
197
198/* set the pinctl target value and write it if requested */
199static void set_pin_target(struct hda_codec *codec, hda_nid_t pin,
200 unsigned int val, bool do_write)
201{
202 if (!pin)
203 return;
204 val = snd_hda_correct_pin_ctl(codec, pin, val);
205 snd_hda_codec_set_pin_target(codec, pin, val);
206 if (do_write)
207 update_pin_ctl(codec, pin, val);
208}
209
210/* set pinctl target values for all given pins */
211static void set_pin_targets(struct hda_codec *codec, int num_pins,
212 hda_nid_t *pins, unsigned int val)
213{
214 int i;
215 for (i = 0; i < num_pins; i++)
216 set_pin_target(codec, pins[i], val, false);
217}
218
219/*
Takashi Iwai352f7f92012-12-19 12:52:06 +0100220 * parsing paths
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Takashi Iwai3ca529d2013-01-07 17:25:08 +0100223/* return the position of NID in the list, or -1 if not found */
224static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
225{
226 int i;
227 for (i = 0; i < nums; i++)
228 if (list[i] == nid)
229 return i;
230 return -1;
231}
232
233/* return true if the given NID is contained in the path */
234static bool is_nid_contained(struct nid_path *path, hda_nid_t nid)
235{
236 return find_idx_in_nid_list(nid, path->path, path->depth) >= 0;
237}
238
Takashi Iwaif5172a72013-01-04 13:19:55 +0100239static struct nid_path *get_nid_path(struct hda_codec *codec,
240 hda_nid_t from_nid, hda_nid_t to_nid,
Takashi Iwai3ca529d2013-01-07 17:25:08 +0100241 int anchor_nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Takashi Iwai352f7f92012-12-19 12:52:06 +0100243 struct hda_gen_spec *spec = codec->spec;
244 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Takashi Iwai352f7f92012-12-19 12:52:06 +0100246 for (i = 0; i < spec->paths.used; i++) {
247 struct nid_path *path = snd_array_elem(&spec->paths, i);
248 if (path->depth <= 0)
249 continue;
250 if ((!from_nid || path->path[0] == from_nid) &&
Takashi Iwaif5172a72013-01-04 13:19:55 +0100251 (!to_nid || path->path[path->depth - 1] == to_nid)) {
Takashi Iwai3ca529d2013-01-07 17:25:08 +0100252 if (!anchor_nid ||
253 (anchor_nid > 0 && is_nid_contained(path, anchor_nid)) ||
254 (anchor_nid < 0 && !is_nid_contained(path, anchor_nid)))
Takashi Iwaif5172a72013-01-04 13:19:55 +0100255 return path;
256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 }
258 return NULL;
259}
Takashi Iwaif5172a72013-01-04 13:19:55 +0100260
261/* get the path between the given NIDs;
262 * passing 0 to either @pin or @dac behaves as a wildcard
263 */
264struct nid_path *snd_hda_get_nid_path(struct hda_codec *codec,
265 hda_nid_t from_nid, hda_nid_t to_nid)
266{
Takashi Iwai3ca529d2013-01-07 17:25:08 +0100267 return get_nid_path(codec, from_nid, to_nid, 0);
Takashi Iwaif5172a72013-01-04 13:19:55 +0100268}
Takashi Iwai352f7f92012-12-19 12:52:06 +0100269EXPORT_SYMBOL_HDA(snd_hda_get_nid_path);
270
Takashi Iwai196c17662013-01-04 15:01:40 +0100271/* get the index number corresponding to the path instance;
272 * the index starts from 1, for easier checking the invalid value
273 */
274int snd_hda_get_path_idx(struct hda_codec *codec, struct nid_path *path)
275{
276 struct hda_gen_spec *spec = codec->spec;
277 struct nid_path *array = spec->paths.list;
278 ssize_t idx;
279
280 if (!spec->paths.used)
281 return 0;
282 idx = path - array;
283 if (idx < 0 || idx >= spec->paths.used)
284 return 0;
285 return idx + 1;
286}
Takashi Iwai4bd01e92013-01-22 15:17:20 +0100287EXPORT_SYMBOL_HDA(snd_hda_get_path_idx);
Takashi Iwai196c17662013-01-04 15:01:40 +0100288
289/* get the path instance corresponding to the given index number */
290struct nid_path *snd_hda_get_path_from_idx(struct hda_codec *codec, int idx)
291{
292 struct hda_gen_spec *spec = codec->spec;
293
294 if (idx <= 0 || idx > spec->paths.used)
295 return NULL;
296 return snd_array_elem(&spec->paths, idx - 1);
297}
Takashi Iwai4bd01e92013-01-22 15:17:20 +0100298EXPORT_SYMBOL_HDA(snd_hda_get_path_from_idx);
Takashi Iwai196c17662013-01-04 15:01:40 +0100299
Takashi Iwai352f7f92012-12-19 12:52:06 +0100300/* check whether the given DAC is already found in any existing paths */
301static bool is_dac_already_used(struct hda_codec *codec, hda_nid_t nid)
302{
303 struct hda_gen_spec *spec = codec->spec;
304 int i;
305
306 for (i = 0; i < spec->paths.used; i++) {
307 struct nid_path *path = snd_array_elem(&spec->paths, i);
308 if (path->path[0] == nid)
309 return true;
310 }
311 return false;
312}
313
314/* check whether the given two widgets can be connected */
315static bool is_reachable_path(struct hda_codec *codec,
316 hda_nid_t from_nid, hda_nid_t to_nid)
317{
318 if (!from_nid || !to_nid)
319 return false;
320 return snd_hda_get_conn_index(codec, to_nid, from_nid, true) >= 0;
321}
322
323/* nid, dir and idx */
324#define AMP_VAL_COMPARE_MASK (0xffff | (1U << 18) | (0x0f << 19))
325
326/* check whether the given ctl is already assigned in any path elements */
327static bool is_ctl_used(struct hda_codec *codec, unsigned int val, int type)
328{
329 struct hda_gen_spec *spec = codec->spec;
330 int i;
331
332 val &= AMP_VAL_COMPARE_MASK;
333 for (i = 0; i < spec->paths.used; i++) {
334 struct nid_path *path = snd_array_elem(&spec->paths, i);
335 if ((path->ctls[type] & AMP_VAL_COMPARE_MASK) == val)
336 return true;
337 }
338 return false;
339}
340
341/* check whether a control with the given (nid, dir, idx) was assigned */
342static bool is_ctl_associated(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwai8999bf02013-01-18 11:01:33 +0100343 int dir, int idx, int type)
Takashi Iwai352f7f92012-12-19 12:52:06 +0100344{
345 unsigned int val = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir);
Takashi Iwai8999bf02013-01-18 11:01:33 +0100346 return is_ctl_used(codec, val, type);
Takashi Iwai352f7f92012-12-19 12:52:06 +0100347}
348
Takashi Iwai0c8c0f52012-12-20 17:54:22 +0100349static void print_nid_path(const char *pfx, struct nid_path *path)
350{
351 char buf[40];
352 int i;
353
354
355 buf[0] = 0;
356 for (i = 0; i < path->depth; i++) {
357 char tmp[4];
358 sprintf(tmp, ":%02x", path->path[i]);
359 strlcat(buf, tmp, sizeof(buf));
360 }
361 snd_printdd("%s path: depth=%d %s\n", pfx, path->depth, buf);
362}
363
Takashi Iwai352f7f92012-12-19 12:52:06 +0100364/* called recursively */
365static bool __parse_nid_path(struct hda_codec *codec,
366 hda_nid_t from_nid, hda_nid_t to_nid,
Takashi Iwai3ca529d2013-01-07 17:25:08 +0100367 int anchor_nid, struct nid_path *path,
368 int depth)
Takashi Iwai352f7f92012-12-19 12:52:06 +0100369{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100370 const hda_nid_t *conn;
Takashi Iwai352f7f92012-12-19 12:52:06 +0100371 int i, nums;
372
Takashi Iwai3ca529d2013-01-07 17:25:08 +0100373 if (to_nid == anchor_nid)
374 anchor_nid = 0; /* anchor passed */
375 else if (to_nid == (hda_nid_t)(-anchor_nid))
376 return false; /* hit the exclusive nid */
Takashi Iwai352f7f92012-12-19 12:52:06 +0100377
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100378 nums = snd_hda_get_conn_list(codec, to_nid, &conn);
Takashi Iwai352f7f92012-12-19 12:52:06 +0100379 for (i = 0; i < nums; i++) {
380 if (conn[i] != from_nid) {
381 /* special case: when from_nid is 0,
382 * try to find an empty DAC
383 */
384 if (from_nid ||
385 get_wcaps_type(get_wcaps(codec, conn[i])) != AC_WID_AUD_OUT ||
386 is_dac_already_used(codec, conn[i]))
387 continue;
388 }
Takashi Iwai3ca529d2013-01-07 17:25:08 +0100389 /* anchor is not requested or already passed? */
390 if (anchor_nid <= 0)
Takashi Iwai352f7f92012-12-19 12:52:06 +0100391 goto found;
392 }
393 if (depth >= MAX_NID_PATH_DEPTH)
394 return false;
395 for (i = 0; i < nums; i++) {
396 unsigned int type;
397 type = get_wcaps_type(get_wcaps(codec, conn[i]));
398 if (type == AC_WID_AUD_OUT || type == AC_WID_AUD_IN ||
399 type == AC_WID_PIN)
400 continue;
401 if (__parse_nid_path(codec, from_nid, conn[i],
Takashi Iwai3ca529d2013-01-07 17:25:08 +0100402 anchor_nid, path, depth + 1))
Takashi Iwai352f7f92012-12-19 12:52:06 +0100403 goto found;
404 }
405 return false;
406
407 found:
408 path->path[path->depth] = conn[i];
409 path->idx[path->depth + 1] = i;
410 if (nums > 1 && get_wcaps_type(get_wcaps(codec, to_nid)) != AC_WID_AUD_MIX)
411 path->multi[path->depth + 1] = 1;
412 path->depth++;
413 return true;
414}
415
416/* parse the widget path from the given nid to the target nid;
417 * when @from_nid is 0, try to find an empty DAC;
Takashi Iwai3ca529d2013-01-07 17:25:08 +0100418 * when @anchor_nid is set to a positive value, only paths through the widget
419 * with the given value are evaluated.
420 * when @anchor_nid is set to a negative value, paths through the widget
421 * with the negative of given value are excluded, only other paths are chosen.
422 * when @anchor_nid is zero, no special handling about path selection.
Takashi Iwai352f7f92012-12-19 12:52:06 +0100423 */
424bool snd_hda_parse_nid_path(struct hda_codec *codec, hda_nid_t from_nid,
Takashi Iwai3ca529d2013-01-07 17:25:08 +0100425 hda_nid_t to_nid, int anchor_nid,
Takashi Iwai352f7f92012-12-19 12:52:06 +0100426 struct nid_path *path)
427{
Takashi Iwai3ca529d2013-01-07 17:25:08 +0100428 if (__parse_nid_path(codec, from_nid, to_nid, anchor_nid, path, 1)) {
Takashi Iwai352f7f92012-12-19 12:52:06 +0100429 path->path[path->depth] = to_nid;
430 path->depth++;
Takashi Iwai352f7f92012-12-19 12:52:06 +0100431 return true;
432 }
433 return false;
434}
435EXPORT_SYMBOL_HDA(snd_hda_parse_nid_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437/*
Takashi Iwai352f7f92012-12-19 12:52:06 +0100438 * parse the path between the given NIDs and add to the path list.
439 * if no valid path is found, return NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 */
Takashi Iwai352f7f92012-12-19 12:52:06 +0100441struct nid_path *
442snd_hda_add_new_path(struct hda_codec *codec, hda_nid_t from_nid,
Takashi Iwai3ca529d2013-01-07 17:25:08 +0100443 hda_nid_t to_nid, int anchor_nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
Takashi Iwai352f7f92012-12-19 12:52:06 +0100445 struct hda_gen_spec *spec = codec->spec;
446 struct nid_path *path;
447
448 if (from_nid && to_nid && !is_reachable_path(codec, from_nid, to_nid))
449 return NULL;
450
Takashi Iwaif5172a72013-01-04 13:19:55 +0100451 /* check whether the path has been already added */
Takashi Iwai3ca529d2013-01-07 17:25:08 +0100452 path = get_nid_path(codec, from_nid, to_nid, anchor_nid);
Takashi Iwaif5172a72013-01-04 13:19:55 +0100453 if (path)
454 return path;
455
Takashi Iwai352f7f92012-12-19 12:52:06 +0100456 path = snd_array_new(&spec->paths);
457 if (!path)
458 return NULL;
459 memset(path, 0, sizeof(*path));
Takashi Iwai3ca529d2013-01-07 17:25:08 +0100460 if (snd_hda_parse_nid_path(codec, from_nid, to_nid, anchor_nid, path))
Takashi Iwai352f7f92012-12-19 12:52:06 +0100461 return path;
462 /* push back */
463 spec->paths.used--;
464 return NULL;
465}
466EXPORT_SYMBOL_HDA(snd_hda_add_new_path);
467
Takashi Iwai980428c2013-01-09 09:28:20 +0100468/* clear the given path as invalid so that it won't be picked up later */
469static void invalidate_nid_path(struct hda_codec *codec, int idx)
470{
471 struct nid_path *path = snd_hda_get_path_from_idx(codec, idx);
472 if (!path)
473 return;
474 memset(path, 0, sizeof(*path));
475}
476
Takashi Iwai352f7f92012-12-19 12:52:06 +0100477/* look for an empty DAC slot */
478static hda_nid_t look_for_dac(struct hda_codec *codec, hda_nid_t pin,
479 bool is_digital)
480{
481 struct hda_gen_spec *spec = codec->spec;
482 bool cap_digital;
483 int i;
484
485 for (i = 0; i < spec->num_all_dacs; i++) {
486 hda_nid_t nid = spec->all_dacs[i];
487 if (!nid || is_dac_already_used(codec, nid))
488 continue;
489 cap_digital = !!(get_wcaps(codec, nid) & AC_WCAP_DIGITAL);
490 if (is_digital != cap_digital)
491 continue;
492 if (is_reachable_path(codec, nid, pin))
493 return nid;
494 }
495 return 0;
496}
497
498/* replace the channels in the composed amp value with the given number */
499static unsigned int amp_val_replace_channels(unsigned int val, unsigned int chs)
500{
501 val &= ~(0x3U << 16);
502 val |= chs << 16;
503 return val;
504}
505
506/* check whether the widget has the given amp capability for the direction */
507static bool check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
508 int dir, unsigned int bits)
509{
510 if (!nid)
511 return false;
512 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
513 if (query_amp_caps(codec, nid, dir) & bits)
514 return true;
515 return false;
516}
517
David Henningsson99a55922013-01-16 15:58:44 +0100518static bool same_amp_caps(struct hda_codec *codec, hda_nid_t nid1,
519 hda_nid_t nid2, int dir)
520{
521 if (!(get_wcaps(codec, nid1) & (1 << (dir + 1))))
522 return !(get_wcaps(codec, nid2) & (1 << (dir + 1)));
523 return (query_amp_caps(codec, nid1, dir) ==
524 query_amp_caps(codec, nid2, dir));
525}
526
Takashi Iwai352f7f92012-12-19 12:52:06 +0100527#define nid_has_mute(codec, nid, dir) \
Takashi Iwaif69910d2013-08-08 09:32:37 +0200528 check_amp_caps(codec, nid, dir, (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE))
Takashi Iwai352f7f92012-12-19 12:52:06 +0100529#define nid_has_volume(codec, nid, dir) \
530 check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS)
531
532/* look for a widget suitable for assigning a mute switch in the path */
533static hda_nid_t look_for_out_mute_nid(struct hda_codec *codec,
534 struct nid_path *path)
535{
536 int i;
537
538 for (i = path->depth - 1; i >= 0; i--) {
539 if (nid_has_mute(codec, path->path[i], HDA_OUTPUT))
540 return path->path[i];
541 if (i != path->depth - 1 && i != 0 &&
542 nid_has_mute(codec, path->path[i], HDA_INPUT))
543 return path->path[i];
544 }
545 return 0;
546}
547
548/* look for a widget suitable for assigning a volume ctl in the path */
549static hda_nid_t look_for_out_vol_nid(struct hda_codec *codec,
550 struct nid_path *path)
551{
Takashi Iwaia1114a82013-11-04 16:32:01 +0100552 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai352f7f92012-12-19 12:52:06 +0100553 int i;
554
555 for (i = path->depth - 1; i >= 0; i--) {
Takashi Iwaia1114a82013-11-04 16:32:01 +0100556 hda_nid_t nid = path->path[i];
557 if ((spec->out_vol_mask >> nid) & 1)
558 continue;
559 if (nid_has_volume(codec, nid, HDA_OUTPUT))
560 return nid;
Takashi Iwai352f7f92012-12-19 12:52:06 +0100561 }
Takashi Iwai82beb8f2007-08-10 17:09:26 +0200562 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
565/*
Takashi Iwai352f7f92012-12-19 12:52:06 +0100566 * path activation / deactivation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 */
Takashi Iwai352f7f92012-12-19 12:52:06 +0100568
569/* can have the amp-in capability? */
570static bool has_amp_in(struct hda_codec *codec, struct nid_path *path, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Takashi Iwai352f7f92012-12-19 12:52:06 +0100572 hda_nid_t nid = path->path[idx];
573 unsigned int caps = get_wcaps(codec, nid);
574 unsigned int type = get_wcaps_type(caps);
575
576 if (!(caps & AC_WCAP_IN_AMP))
577 return false;
578 if (type == AC_WID_PIN && idx > 0) /* only for input pins */
579 return false;
580 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Takashi Iwai352f7f92012-12-19 12:52:06 +0100583/* can have the amp-out capability? */
584static bool has_amp_out(struct hda_codec *codec, struct nid_path *path, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Takashi Iwai352f7f92012-12-19 12:52:06 +0100586 hda_nid_t nid = path->path[idx];
587 unsigned int caps = get_wcaps(codec, nid);
588 unsigned int type = get_wcaps_type(caps);
589
590 if (!(caps & AC_WCAP_OUT_AMP))
591 return false;
592 if (type == AC_WID_PIN && !idx) /* only for output pins */
593 return false;
594 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
Takashi Iwai352f7f92012-12-19 12:52:06 +0100597/* check whether the given (nid,dir,idx) is active */
598static bool is_active_nid(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwai7dddf2ae2013-01-24 16:31:35 +0100599 unsigned int dir, unsigned int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Takashi Iwai352f7f92012-12-19 12:52:06 +0100601 struct hda_gen_spec *spec = codec->spec;
602 int i, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Takashi Iwai352f7f92012-12-19 12:52:06 +0100604 for (n = 0; n < spec->paths.used; n++) {
605 struct nid_path *path = snd_array_elem(&spec->paths, n);
606 if (!path->active)
607 continue;
608 for (i = 0; i < path->depth; i++) {
609 if (path->path[i] == nid) {
610 if (dir == HDA_OUTPUT || path->idx[i] == idx)
611 return true;
612 break;
613 }
614 }
615 }
616 return false;
617}
618
Takashi Iwaib1b9fbd2013-05-14 12:58:47 +0200619/* check whether the NID is referred by any active paths */
620#define is_active_nid_for_any(codec, nid) \
621 is_active_nid(codec, nid, HDA_OUTPUT, 0)
622
Takashi Iwai352f7f92012-12-19 12:52:06 +0100623/* get the default amp value for the target state */
624static int get_amp_val_to_activate(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwai8999bf02013-01-18 11:01:33 +0100625 int dir, unsigned int caps, bool enable)
Takashi Iwai352f7f92012-12-19 12:52:06 +0100626{
Takashi Iwai352f7f92012-12-19 12:52:06 +0100627 unsigned int val = 0;
628
Takashi Iwai352f7f92012-12-19 12:52:06 +0100629 if (caps & AC_AMPCAP_NUM_STEPS) {
630 /* set to 0dB */
631 if (enable)
632 val = (caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT;
633 }
Takashi Iwaif69910d2013-08-08 09:32:37 +0200634 if (caps & (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE)) {
Takashi Iwai352f7f92012-12-19 12:52:06 +0100635 if (!enable)
636 val |= HDA_AMP_MUTE;
637 }
638 return val;
639}
640
641/* initialize the amp value (only at the first time) */
642static void init_amp(struct hda_codec *codec, hda_nid_t nid, int dir, int idx)
643{
Takashi Iwai8999bf02013-01-18 11:01:33 +0100644 unsigned int caps = query_amp_caps(codec, nid, dir);
645 int val = get_amp_val_to_activate(codec, nid, dir, caps, false);
Takashi Iwai352f7f92012-12-19 12:52:06 +0100646 snd_hda_codec_amp_init_stereo(codec, nid, dir, idx, 0xff, val);
647}
648
Takashi Iwai8999bf02013-01-18 11:01:33 +0100649/* calculate amp value mask we can modify;
650 * if the given amp is controlled by mixers, don't touch it
651 */
652static unsigned int get_amp_mask_to_modify(struct hda_codec *codec,
653 hda_nid_t nid, int dir, int idx,
654 unsigned int caps)
Takashi Iwai352f7f92012-12-19 12:52:06 +0100655{
Takashi Iwai8999bf02013-01-18 11:01:33 +0100656 unsigned int mask = 0xff;
657
Takashi Iwaif69910d2013-08-08 09:32:37 +0200658 if (caps & (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE)) {
Takashi Iwai8999bf02013-01-18 11:01:33 +0100659 if (is_ctl_associated(codec, nid, dir, idx, NID_PATH_MUTE_CTL))
660 mask &= ~0x80;
661 }
662 if (caps & AC_AMPCAP_NUM_STEPS) {
663 if (is_ctl_associated(codec, nid, dir, idx, NID_PATH_VOL_CTL) ||
664 is_ctl_associated(codec, nid, dir, idx, NID_PATH_BOOST_CTL))
665 mask &= ~0x7f;
666 }
667 return mask;
668}
669
670static void activate_amp(struct hda_codec *codec, hda_nid_t nid, int dir,
671 int idx, int idx_to_check, bool enable)
672{
673 unsigned int caps;
674 unsigned int mask, val;
675
Takashi Iwai7dddf2ae2013-01-24 16:31:35 +0100676 if (!enable && is_active_nid(codec, nid, dir, idx_to_check))
Takashi Iwai352f7f92012-12-19 12:52:06 +0100677 return;
Takashi Iwai8999bf02013-01-18 11:01:33 +0100678
679 caps = query_amp_caps(codec, nid, dir);
680 val = get_amp_val_to_activate(codec, nid, dir, caps, enable);
681 mask = get_amp_mask_to_modify(codec, nid, dir, idx_to_check, caps);
682 if (!mask)
683 return;
684
685 val &= mask;
686 snd_hda_codec_amp_stereo(codec, nid, dir, idx, mask, val);
Takashi Iwai352f7f92012-12-19 12:52:06 +0100687}
688
689static void activate_amp_out(struct hda_codec *codec, struct nid_path *path,
690 int i, bool enable)
691{
692 hda_nid_t nid = path->path[i];
693 init_amp(codec, nid, HDA_OUTPUT, 0);
Takashi Iwai8999bf02013-01-18 11:01:33 +0100694 activate_amp(codec, nid, HDA_OUTPUT, 0, 0, enable);
Takashi Iwai352f7f92012-12-19 12:52:06 +0100695}
696
697static void activate_amp_in(struct hda_codec *codec, struct nid_path *path,
698 int i, bool enable, bool add_aamix)
699{
700 struct hda_gen_spec *spec = codec->spec;
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100701 const hda_nid_t *conn;
Takashi Iwai352f7f92012-12-19 12:52:06 +0100702 int n, nums, idx;
703 int type;
704 hda_nid_t nid = path->path[i];
705
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100706 nums = snd_hda_get_conn_list(codec, nid, &conn);
Takashi Iwai352f7f92012-12-19 12:52:06 +0100707 type = get_wcaps_type(get_wcaps(codec, nid));
708 if (type == AC_WID_PIN ||
709 (type == AC_WID_AUD_IN && codec->single_adc_amp)) {
710 nums = 1;
711 idx = 0;
712 } else
713 idx = path->idx[i];
714
715 for (n = 0; n < nums; n++)
716 init_amp(codec, nid, HDA_INPUT, n);
717
Takashi Iwai352f7f92012-12-19 12:52:06 +0100718 /* here is a little bit tricky in comparison with activate_amp_out();
719 * when aa-mixer is available, we need to enable the path as well
720 */
721 for (n = 0; n < nums; n++) {
Takashi Iwaie4a395e2013-01-23 17:00:31 +0100722 if (n != idx && (!add_aamix || conn[n] != spec->mixer_merge_nid))
Takashi Iwai352f7f92012-12-19 12:52:06 +0100723 continue;
Takashi Iwai8999bf02013-01-18 11:01:33 +0100724 activate_amp(codec, nid, HDA_INPUT, n, idx, enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726}
727
Takashi Iwai352f7f92012-12-19 12:52:06 +0100728/* activate or deactivate the given path
729 * if @add_aamix is set, enable the input from aa-mix NID as well (if any)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 */
Takashi Iwai352f7f92012-12-19 12:52:06 +0100731void snd_hda_activate_path(struct hda_codec *codec, struct nid_path *path,
732 bool enable, bool add_aamix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Takashi Iwai55196ff2013-01-24 17:32:56 +0100734 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai352f7f92012-12-19 12:52:06 +0100735 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Takashi Iwai352f7f92012-12-19 12:52:06 +0100737 if (!enable)
738 path->active = false;
739
740 for (i = path->depth - 1; i >= 0; i--) {
Takashi Iwai55196ff2013-01-24 17:32:56 +0100741 hda_nid_t nid = path->path[i];
742 if (enable && spec->power_down_unused) {
743 /* make sure the widget is powered up */
744 if (!snd_hda_check_power_state(codec, nid, AC_PWRST_D0))
745 snd_hda_codec_write(codec, nid, 0,
746 AC_VERB_SET_POWER_STATE,
747 AC_PWRST_D0);
748 }
Takashi Iwai352f7f92012-12-19 12:52:06 +0100749 if (enable && path->multi[i])
Takashi Iwai55196ff2013-01-24 17:32:56 +0100750 snd_hda_codec_write_cache(codec, nid, 0,
Takashi Iwai352f7f92012-12-19 12:52:06 +0100751 AC_VERB_SET_CONNECT_SEL,
752 path->idx[i]);
753 if (has_amp_in(codec, path, i))
754 activate_amp_in(codec, path, i, enable, add_aamix);
755 if (has_amp_out(codec, path, i))
756 activate_amp_out(codec, path, i, enable);
757 }
758
759 if (enable)
760 path->active = true;
761}
762EXPORT_SYMBOL_HDA(snd_hda_activate_path);
763
Takashi Iwai55196ff2013-01-24 17:32:56 +0100764/* if the given path is inactive, put widgets into D3 (only if suitable) */
765static void path_power_down_sync(struct hda_codec *codec, struct nid_path *path)
766{
767 struct hda_gen_spec *spec = codec->spec;
Jiri Slaby868211d2013-04-04 22:32:10 +0200768 bool changed = false;
Takashi Iwai55196ff2013-01-24 17:32:56 +0100769 int i;
770
771 if (!spec->power_down_unused || path->active)
772 return;
773
774 for (i = 0; i < path->depth; i++) {
775 hda_nid_t nid = path->path[i];
Takashi Iwaib1b9fbd2013-05-14 12:58:47 +0200776 if (!snd_hda_check_power_state(codec, nid, AC_PWRST_D3) &&
777 !is_active_nid_for_any(codec, nid)) {
Takashi Iwai55196ff2013-01-24 17:32:56 +0100778 snd_hda_codec_write(codec, nid, 0,
779 AC_VERB_SET_POWER_STATE,
780 AC_PWRST_D3);
781 changed = true;
782 }
783 }
784
785 if (changed) {
786 msleep(10);
787 snd_hda_codec_read(codec, path->path[0], 0,
788 AC_VERB_GET_POWER_STATE, 0);
789 }
790}
791
Takashi Iwaid5a9f1b2012-12-20 15:36:30 +0100792/* turn on/off EAPD on the given pin */
793static void set_pin_eapd(struct hda_codec *codec, hda_nid_t pin, bool enable)
794{
795 struct hda_gen_spec *spec = codec->spec;
796 if (spec->own_eapd_ctl ||
797 !(snd_hda_query_pin_caps(codec, pin) & AC_PINCAP_EAPD))
798 return;
Takashi Iwai05909d5c2013-05-31 19:55:54 +0200799 if (spec->keep_eapd_on && !enable)
800 return;
Takashi Iwai468ac412013-11-12 11:36:00 +0100801 if (codec->inv_eapd)
802 enable = !enable;
Takashi Iwaid5a9f1b2012-12-20 15:36:30 +0100803 snd_hda_codec_update_cache(codec, pin, 0,
804 AC_VERB_SET_EAPD_BTLENABLE,
805 enable ? 0x02 : 0x00);
806}
807
Takashi Iwai3e367f12013-01-23 17:07:23 +0100808/* re-initialize the path specified by the given path index */
809static void resume_path_from_idx(struct hda_codec *codec, int path_idx)
810{
811 struct nid_path *path = snd_hda_get_path_from_idx(codec, path_idx);
812 if (path)
813 snd_hda_activate_path(codec, path, path->active, false);
814}
815
Takashi Iwai352f7f92012-12-19 12:52:06 +0100816
817/*
818 * Helper functions for creating mixer ctl elements
819 */
820
Takashi Iwai7eebffd2013-06-24 16:00:21 +0200821static int hda_gen_mixer_mute_put(struct snd_kcontrol *kcontrol,
822 struct snd_ctl_elem_value *ucontrol);
Takashi Iwaibc2eee22013-08-09 15:05:03 +0200823static int hda_gen_bind_mute_put(struct snd_kcontrol *kcontrol,
824 struct snd_ctl_elem_value *ucontrol);
Takashi Iwai7eebffd2013-06-24 16:00:21 +0200825
Takashi Iwai352f7f92012-12-19 12:52:06 +0100826enum {
827 HDA_CTL_WIDGET_VOL,
828 HDA_CTL_WIDGET_MUTE,
829 HDA_CTL_BIND_MUTE,
Takashi Iwai352f7f92012-12-19 12:52:06 +0100830};
831static const struct snd_kcontrol_new control_templates[] = {
832 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
Takashi Iwai7eebffd2013-06-24 16:00:21 +0200833 /* only the put callback is replaced for handling the special mute */
834 {
835 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
836 .subdevice = HDA_SUBDEV_AMP_FLAG,
837 .info = snd_hda_mixer_amp_switch_info,
838 .get = snd_hda_mixer_amp_switch_get,
839 .put = hda_gen_mixer_mute_put, /* replaced */
840 .private_value = HDA_COMPOSE_AMP_VAL(0, 3, 0, 0),
841 },
Takashi Iwaibc2eee22013-08-09 15:05:03 +0200842 {
843 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
844 .info = snd_hda_mixer_amp_switch_info,
845 .get = snd_hda_mixer_bind_switch_get,
846 .put = hda_gen_bind_mute_put, /* replaced */
847 .private_value = HDA_COMPOSE_AMP_VAL(0, 3, 0, 0),
848 },
Takashi Iwai352f7f92012-12-19 12:52:06 +0100849};
850
851/* add dynamic controls from template */
Takashi Iwaia35bd1e2013-01-18 14:01:14 +0100852static struct snd_kcontrol_new *
853add_control(struct hda_gen_spec *spec, int type, const char *name,
Takashi Iwai352f7f92012-12-19 12:52:06 +0100854 int cidx, unsigned long val)
855{
856 struct snd_kcontrol_new *knew;
857
Takashi Iwai12c93df2012-12-19 14:38:33 +0100858 knew = snd_hda_gen_add_kctl(spec, name, &control_templates[type]);
Takashi Iwai352f7f92012-12-19 12:52:06 +0100859 if (!knew)
Takashi Iwaia35bd1e2013-01-18 14:01:14 +0100860 return NULL;
Takashi Iwai352f7f92012-12-19 12:52:06 +0100861 knew->index = cidx;
862 if (get_amp_nid_(val))
863 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
864 knew->private_value = val;
Takashi Iwaia35bd1e2013-01-18 14:01:14 +0100865 return knew;
Takashi Iwai352f7f92012-12-19 12:52:06 +0100866}
867
868static int add_control_with_pfx(struct hda_gen_spec *spec, int type,
869 const char *pfx, const char *dir,
870 const char *sfx, int cidx, unsigned long val)
871{
Takashi Iwai975cc022013-06-28 11:56:49 +0200872 char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
Takashi Iwai352f7f92012-12-19 12:52:06 +0100873 snprintf(name, sizeof(name), "%s %s %s", pfx, dir, sfx);
Takashi Iwaia35bd1e2013-01-18 14:01:14 +0100874 if (!add_control(spec, type, name, cidx, val))
875 return -ENOMEM;
876 return 0;
Takashi Iwai352f7f92012-12-19 12:52:06 +0100877}
878
879#define add_pb_vol_ctrl(spec, type, pfx, val) \
880 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val)
881#define add_pb_sw_ctrl(spec, type, pfx, val) \
882 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val)
883#define __add_pb_vol_ctrl(spec, type, pfx, cidx, val) \
884 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val)
885#define __add_pb_sw_ctrl(spec, type, pfx, cidx, val) \
886 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val)
887
888static int add_vol_ctl(struct hda_codec *codec, const char *pfx, int cidx,
889 unsigned int chs, struct nid_path *path)
890{
891 unsigned int val;
892 if (!path)
893 return 0;
894 val = path->ctls[NID_PATH_VOL_CTL];
895 if (!val)
896 return 0;
897 val = amp_val_replace_channels(val, chs);
898 return __add_pb_vol_ctrl(codec->spec, HDA_CTL_WIDGET_VOL, pfx, cidx, val);
899}
900
901/* return the channel bits suitable for the given path->ctls[] */
902static int get_default_ch_nums(struct hda_codec *codec, struct nid_path *path,
903 int type)
904{
905 int chs = 1; /* mono (left only) */
906 if (path) {
907 hda_nid_t nid = get_amp_nid_(path->ctls[type]);
908 if (nid && (get_wcaps(codec, nid) & AC_WCAP_STEREO))
909 chs = 3; /* stereo */
910 }
911 return chs;
912}
913
914static int add_stereo_vol(struct hda_codec *codec, const char *pfx, int cidx,
915 struct nid_path *path)
916{
917 int chs = get_default_ch_nums(codec, path, NID_PATH_VOL_CTL);
918 return add_vol_ctl(codec, pfx, cidx, chs, path);
919}
920
921/* create a mute-switch for the given mixer widget;
922 * if it has multiple sources (e.g. DAC and loopback), create a bind-mute
923 */
924static int add_sw_ctl(struct hda_codec *codec, const char *pfx, int cidx,
925 unsigned int chs, struct nid_path *path)
926{
927 unsigned int val;
928 int type = HDA_CTL_WIDGET_MUTE;
929
930 if (!path)
931 return 0;
932 val = path->ctls[NID_PATH_MUTE_CTL];
933 if (!val)
934 return 0;
935 val = amp_val_replace_channels(val, chs);
936 if (get_amp_direction_(val) == HDA_INPUT) {
937 hda_nid_t nid = get_amp_nid_(val);
938 int nums = snd_hda_get_num_conns(codec, nid);
939 if (nums > 1) {
940 type = HDA_CTL_BIND_MUTE;
941 val |= nums << 19;
942 }
943 }
944 return __add_pb_sw_ctrl(codec->spec, type, pfx, cidx, val);
945}
946
947static int add_stereo_sw(struct hda_codec *codec, const char *pfx,
948 int cidx, struct nid_path *path)
949{
950 int chs = get_default_ch_nums(codec, path, NID_PATH_MUTE_CTL);
951 return add_sw_ctl(codec, pfx, cidx, chs, path);
952}
953
Takashi Iwai7eebffd2013-06-24 16:00:21 +0200954/* playback mute control with the software mute bit check */
Takashi Iwaibc2eee22013-08-09 15:05:03 +0200955static void sync_auto_mute_bits(struct snd_kcontrol *kcontrol,
956 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai7eebffd2013-06-24 16:00:21 +0200957{
958 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
959 struct hda_gen_spec *spec = codec->spec;
960
961 if (spec->auto_mute_via_amp) {
962 hda_nid_t nid = get_amp_nid(kcontrol);
963 bool enabled = !((spec->mute_bits >> nid) & 1);
964 ucontrol->value.integer.value[0] &= enabled;
965 ucontrol->value.integer.value[1] &= enabled;
966 }
Takashi Iwaibc2eee22013-08-09 15:05:03 +0200967}
Takashi Iwai7eebffd2013-06-24 16:00:21 +0200968
Takashi Iwaibc2eee22013-08-09 15:05:03 +0200969static int hda_gen_mixer_mute_put(struct snd_kcontrol *kcontrol,
970 struct snd_ctl_elem_value *ucontrol)
971{
972 sync_auto_mute_bits(kcontrol, ucontrol);
Takashi Iwai7eebffd2013-06-24 16:00:21 +0200973 return snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
974}
975
Takashi Iwaibc2eee22013-08-09 15:05:03 +0200976static int hda_gen_bind_mute_put(struct snd_kcontrol *kcontrol,
977 struct snd_ctl_elem_value *ucontrol)
978{
979 sync_auto_mute_bits(kcontrol, ucontrol);
980 return snd_hda_mixer_bind_switch_put(kcontrol, ucontrol);
981}
982
Takashi Iwai247d85e2013-01-17 16:18:11 +0100983/* any ctl assigned to the path with the given index? */
984static bool path_has_mixer(struct hda_codec *codec, int path_idx, int ctl_type)
985{
986 struct nid_path *path = snd_hda_get_path_from_idx(codec, path_idx);
987 return path && path->ctls[ctl_type];
988}
989
Takashi Iwai352f7f92012-12-19 12:52:06 +0100990static const char * const channel_name[4] = {
991 "Front", "Surround", "CLFE", "Side"
992};
993
994/* give some appropriate ctl name prefix for the given line out channel */
Takashi Iwai247d85e2013-01-17 16:18:11 +0100995static const char *get_line_out_pfx(struct hda_codec *codec, int ch,
996 int *index, int ctl_type)
Takashi Iwai352f7f92012-12-19 12:52:06 +0100997{
Takashi Iwai247d85e2013-01-17 16:18:11 +0100998 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai352f7f92012-12-19 12:52:06 +0100999 struct auto_pin_cfg *cfg = &spec->autocfg;
1000
1001 *index = 0;
1002 if (cfg->line_outs == 1 && !spec->multi_ios &&
Takashi Iwai247d85e2013-01-17 16:18:11 +01001003 !cfg->hp_outs && !cfg->speaker_outs)
Takashi Iwai352f7f92012-12-19 12:52:06 +01001004 return spec->vmaster_mute.hook ? "PCM" : "Master";
1005
1006 /* if there is really a single DAC used in the whole output paths,
1007 * use it master (or "PCM" if a vmaster hook is present)
1008 */
1009 if (spec->multiout.num_dacs == 1 && !spec->mixer_nid &&
1010 !spec->multiout.hp_out_nid[0] && !spec->multiout.extra_out_nid[0])
1011 return spec->vmaster_mute.hook ? "PCM" : "Master";
1012
Takashi Iwai247d85e2013-01-17 16:18:11 +01001013 /* multi-io channels */
1014 if (ch >= cfg->line_outs)
1015 return channel_name[ch];
1016
Takashi Iwai352f7f92012-12-19 12:52:06 +01001017 switch (cfg->line_out_type) {
1018 case AUTO_PIN_SPEAKER_OUT:
Takashi Iwai247d85e2013-01-17 16:18:11 +01001019 /* if the primary channel vol/mute is shared with HP volume,
1020 * don't name it as Speaker
1021 */
1022 if (!ch && cfg->hp_outs &&
1023 !path_has_mixer(codec, spec->hp_paths[0], ctl_type))
1024 break;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001025 if (cfg->line_outs == 1)
1026 return "Speaker";
1027 if (cfg->line_outs == 2)
1028 return ch ? "Bass Speaker" : "Speaker";
1029 break;
1030 case AUTO_PIN_HP_OUT:
Takashi Iwai247d85e2013-01-17 16:18:11 +01001031 /* if the primary channel vol/mute is shared with spk volume,
1032 * don't name it as Headphone
1033 */
1034 if (!ch && cfg->speaker_outs &&
1035 !path_has_mixer(codec, spec->speaker_paths[0], ctl_type))
1036 break;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001037 /* for multi-io case, only the primary out */
1038 if (ch && spec->multi_ios)
1039 break;
1040 *index = ch;
1041 return "Headphone";
Takashi Iwai352f7f92012-12-19 12:52:06 +01001042 }
Takashi Iwai247d85e2013-01-17 16:18:11 +01001043
1044 /* for a single channel output, we don't have to name the channel */
1045 if (cfg->line_outs == 1 && !spec->multi_ios)
1046 return "PCM";
1047
Takashi Iwai352f7f92012-12-19 12:52:06 +01001048 if (ch >= ARRAY_SIZE(channel_name)) {
1049 snd_BUG();
1050 return "PCM";
1051 }
1052
1053 return channel_name[ch];
1054}
1055
1056/*
1057 * Parse output paths
1058 */
1059
1060/* badness definition */
1061enum {
1062 /* No primary DAC is found for the main output */
1063 BAD_NO_PRIMARY_DAC = 0x10000,
1064 /* No DAC is found for the extra output */
1065 BAD_NO_DAC = 0x4000,
1066 /* No possible multi-ios */
Takashi Iwai1d739062013-02-13 14:17:32 +01001067 BAD_MULTI_IO = 0x120,
Takashi Iwai352f7f92012-12-19 12:52:06 +01001068 /* No individual DAC for extra output */
1069 BAD_NO_EXTRA_DAC = 0x102,
1070 /* No individual DAC for extra surrounds */
1071 BAD_NO_EXTRA_SURR_DAC = 0x101,
1072 /* Primary DAC shared with main surrounds */
1073 BAD_SHARED_SURROUND = 0x100,
Takashi Iwai55a63d42013-03-21 17:20:12 +01001074 /* No independent HP possible */
Takashi Iwaibec8e682013-03-22 15:10:08 +01001075 BAD_NO_INDEP_HP = 0x10,
Takashi Iwai352f7f92012-12-19 12:52:06 +01001076 /* Primary DAC shared with main CLFE */
1077 BAD_SHARED_CLFE = 0x10,
1078 /* Primary DAC shared with extra surrounds */
1079 BAD_SHARED_EXTRA_SURROUND = 0x10,
1080 /* Volume widget is shared */
1081 BAD_SHARED_VOL = 0x10,
1082};
1083
Takashi Iwai0e614dd2013-01-07 15:11:44 +01001084/* look for widgets in the given path which are appropriate for
Takashi Iwai352f7f92012-12-19 12:52:06 +01001085 * volume and mute controls, and assign the values to ctls[].
1086 *
1087 * When no appropriate widget is found in the path, the badness value
1088 * is incremented depending on the situation. The function returns the
1089 * total badness for both volume and mute controls.
1090 */
Takashi Iwai0e614dd2013-01-07 15:11:44 +01001091static int assign_out_path_ctls(struct hda_codec *codec, struct nid_path *path)
Takashi Iwai352f7f92012-12-19 12:52:06 +01001092{
Takashi Iwai352f7f92012-12-19 12:52:06 +01001093 hda_nid_t nid;
1094 unsigned int val;
1095 int badness = 0;
1096
1097 if (!path)
1098 return BAD_SHARED_VOL * 2;
Takashi Iwai0e614dd2013-01-07 15:11:44 +01001099
1100 if (path->ctls[NID_PATH_VOL_CTL] ||
1101 path->ctls[NID_PATH_MUTE_CTL])
1102 return 0; /* already evaluated */
1103
Takashi Iwai352f7f92012-12-19 12:52:06 +01001104 nid = look_for_out_vol_nid(codec, path);
1105 if (nid) {
1106 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
1107 if (is_ctl_used(codec, val, NID_PATH_VOL_CTL))
1108 badness += BAD_SHARED_VOL;
1109 else
1110 path->ctls[NID_PATH_VOL_CTL] = val;
1111 } else
1112 badness += BAD_SHARED_VOL;
1113 nid = look_for_out_mute_nid(codec, path);
1114 if (nid) {
1115 unsigned int wid_type = get_wcaps_type(get_wcaps(codec, nid));
1116 if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT ||
1117 nid_has_mute(codec, nid, HDA_OUTPUT))
1118 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
1119 else
1120 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT);
1121 if (is_ctl_used(codec, val, NID_PATH_MUTE_CTL))
1122 badness += BAD_SHARED_VOL;
1123 else
1124 path->ctls[NID_PATH_MUTE_CTL] = val;
1125 } else
1126 badness += BAD_SHARED_VOL;
1127 return badness;
1128}
1129
Takashi Iwai98bd1112013-03-22 14:53:50 +01001130const struct badness_table hda_main_out_badness = {
Takashi Iwai352f7f92012-12-19 12:52:06 +01001131 .no_primary_dac = BAD_NO_PRIMARY_DAC,
1132 .no_dac = BAD_NO_DAC,
1133 .shared_primary = BAD_NO_PRIMARY_DAC,
1134 .shared_surr = BAD_SHARED_SURROUND,
1135 .shared_clfe = BAD_SHARED_CLFE,
1136 .shared_surr_main = BAD_SHARED_SURROUND,
1137};
Takashi Iwai98bd1112013-03-22 14:53:50 +01001138EXPORT_SYMBOL_HDA(hda_main_out_badness);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001139
Takashi Iwai98bd1112013-03-22 14:53:50 +01001140const struct badness_table hda_extra_out_badness = {
Takashi Iwai352f7f92012-12-19 12:52:06 +01001141 .no_primary_dac = BAD_NO_DAC,
1142 .no_dac = BAD_NO_DAC,
1143 .shared_primary = BAD_NO_EXTRA_DAC,
1144 .shared_surr = BAD_SHARED_EXTRA_SURROUND,
1145 .shared_clfe = BAD_SHARED_EXTRA_SURROUND,
1146 .shared_surr_main = BAD_NO_EXTRA_SURR_DAC,
1147};
Takashi Iwai98bd1112013-03-22 14:53:50 +01001148EXPORT_SYMBOL_HDA(hda_extra_out_badness);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001149
Takashi Iwai7385df62013-01-07 09:50:52 +01001150/* get the DAC of the primary output corresponding to the given array index */
1151static hda_nid_t get_primary_out(struct hda_codec *codec, int idx)
1152{
1153 struct hda_gen_spec *spec = codec->spec;
1154 struct auto_pin_cfg *cfg = &spec->autocfg;
1155
1156 if (cfg->line_outs > idx)
1157 return spec->private_dac_nids[idx];
1158 idx -= cfg->line_outs;
1159 if (spec->multi_ios > idx)
1160 return spec->multi_io[idx].dac;
1161 return 0;
1162}
1163
1164/* return the DAC if it's reachable, otherwise zero */
1165static inline hda_nid_t try_dac(struct hda_codec *codec,
1166 hda_nid_t dac, hda_nid_t pin)
1167{
1168 return is_reachable_path(codec, dac, pin) ? dac : 0;
1169}
1170
Takashi Iwai352f7f92012-12-19 12:52:06 +01001171/* try to assign DACs to pins and return the resultant badness */
1172static int try_assign_dacs(struct hda_codec *codec, int num_outs,
1173 const hda_nid_t *pins, hda_nid_t *dacs,
Takashi Iwai196c17662013-01-04 15:01:40 +01001174 int *path_idx,
Takashi Iwai352f7f92012-12-19 12:52:06 +01001175 const struct badness_table *bad)
1176{
1177 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001178 int i, j;
1179 int badness = 0;
1180 hda_nid_t dac;
1181
1182 if (!num_outs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 return 0;
1184
Takashi Iwai352f7f92012-12-19 12:52:06 +01001185 for (i = 0; i < num_outs; i++) {
Takashi Iwai0c8c0f52012-12-20 17:54:22 +01001186 struct nid_path *path;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001187 hda_nid_t pin = pins[i];
Takashi Iwai1e0b5282013-01-04 12:56:52 +01001188
Takashi Iwai0e614dd2013-01-07 15:11:44 +01001189 path = snd_hda_get_path_from_idx(codec, path_idx[i]);
1190 if (path) {
1191 badness += assign_out_path_ctls(codec, path);
Takashi Iwai1e0b5282013-01-04 12:56:52 +01001192 continue;
1193 }
1194
1195 dacs[i] = look_for_dac(codec, pin, false);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001196 if (!dacs[i] && !i) {
Takashi Iwai980428c2013-01-09 09:28:20 +01001197 /* try to steal the DAC of surrounds for the front */
Takashi Iwai352f7f92012-12-19 12:52:06 +01001198 for (j = 1; j < num_outs; j++) {
1199 if (is_reachable_path(codec, dacs[j], pin)) {
1200 dacs[0] = dacs[j];
1201 dacs[j] = 0;
Takashi Iwai980428c2013-01-09 09:28:20 +01001202 invalidate_nid_path(codec, path_idx[j]);
Takashi Iwai196c17662013-01-04 15:01:40 +01001203 path_idx[j] = 0;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001204 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 }
1206 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01001207 }
1208 dac = dacs[i];
1209 if (!dac) {
Takashi Iwai7385df62013-01-07 09:50:52 +01001210 if (num_outs > 2)
1211 dac = try_dac(codec, get_primary_out(codec, i), pin);
1212 if (!dac)
1213 dac = try_dac(codec, dacs[0], pin);
1214 if (!dac)
1215 dac = try_dac(codec, get_primary_out(codec, i), pin);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001216 if (dac) {
1217 if (!i)
1218 badness += bad->shared_primary;
1219 else if (i == 1)
1220 badness += bad->shared_surr;
1221 else
1222 badness += bad->shared_clfe;
1223 } else if (is_reachable_path(codec, spec->private_dac_nids[0], pin)) {
1224 dac = spec->private_dac_nids[0];
1225 badness += bad->shared_surr_main;
1226 } else if (!i)
1227 badness += bad->no_primary_dac;
1228 else
1229 badness += bad->no_dac;
1230 }
Takashi Iwai1fa335b2013-01-21 11:43:19 +01001231 if (!dac)
1232 continue;
Takashi Iwai3ca529d2013-01-07 17:25:08 +01001233 path = snd_hda_add_new_path(codec, dac, pin, -spec->mixer_nid);
Takashi Iwai117688a2013-01-04 15:41:41 +01001234 if (!path && !i && spec->mixer_nid) {
Takashi Iwaib3a8c742012-12-20 18:29:16 +01001235 /* try with aamix */
Takashi Iwai3ca529d2013-01-07 17:25:08 +01001236 path = snd_hda_add_new_path(codec, dac, pin, 0);
Takashi Iwaib3a8c742012-12-20 18:29:16 +01001237 }
Takashi Iwai1fa335b2013-01-21 11:43:19 +01001238 if (!path) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01001239 dac = dacs[i] = 0;
Takashi Iwai1fa335b2013-01-21 11:43:19 +01001240 badness += bad->no_dac;
1241 } else {
Takashi Iwaia7694092013-01-21 10:43:18 +01001242 /* print_nid_path("output", path); */
Takashi Iwaie1284af2013-01-03 16:33:02 +01001243 path->active = true;
Takashi Iwai196c17662013-01-04 15:01:40 +01001244 path_idx[i] = snd_hda_get_path_idx(codec, path);
Takashi Iwai0e614dd2013-01-07 15:11:44 +01001245 badness += assign_out_path_ctls(codec, path);
Takashi Iwaie1284af2013-01-03 16:33:02 +01001246 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01001247 }
1248
1249 return badness;
1250}
1251
1252/* return NID if the given pin has only a single connection to a certain DAC */
1253static hda_nid_t get_dac_if_single(struct hda_codec *codec, hda_nid_t pin)
1254{
1255 struct hda_gen_spec *spec = codec->spec;
1256 int i;
1257 hda_nid_t nid_found = 0;
1258
1259 for (i = 0; i < spec->num_all_dacs; i++) {
1260 hda_nid_t nid = spec->all_dacs[i];
1261 if (!nid || is_dac_already_used(codec, nid))
1262 continue;
1263 if (is_reachable_path(codec, nid, pin)) {
1264 if (nid_found)
1265 return 0;
1266 nid_found = nid;
1267 }
1268 }
1269 return nid_found;
1270}
1271
1272/* check whether the given pin can be a multi-io pin */
1273static bool can_be_multiio_pin(struct hda_codec *codec,
1274 unsigned int location, hda_nid_t nid)
1275{
1276 unsigned int defcfg, caps;
1277
1278 defcfg = snd_hda_codec_get_pincfg(codec, nid);
1279 if (get_defcfg_connect(defcfg) != AC_JACK_PORT_COMPLEX)
1280 return false;
1281 if (location && get_defcfg_location(defcfg) != location)
1282 return false;
1283 caps = snd_hda_query_pin_caps(codec, nid);
1284 if (!(caps & AC_PINCAP_OUT))
1285 return false;
1286 return true;
1287}
1288
Takashi Iwaie22aab72013-01-04 14:50:04 +01001289/* count the number of input pins that are capable to be multi-io */
1290static int count_multiio_pins(struct hda_codec *codec, hda_nid_t reference_pin)
1291{
1292 struct hda_gen_spec *spec = codec->spec;
1293 struct auto_pin_cfg *cfg = &spec->autocfg;
1294 unsigned int defcfg = snd_hda_codec_get_pincfg(codec, reference_pin);
1295 unsigned int location = get_defcfg_location(defcfg);
1296 int type, i;
1297 int num_pins = 0;
1298
1299 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
1300 for (i = 0; i < cfg->num_inputs; i++) {
1301 if (cfg->inputs[i].type != type)
1302 continue;
1303 if (can_be_multiio_pin(codec, location,
1304 cfg->inputs[i].pin))
1305 num_pins++;
1306 }
1307 }
1308 return num_pins;
1309}
1310
Takashi Iwai352f7f92012-12-19 12:52:06 +01001311/*
1312 * multi-io helper
1313 *
1314 * When hardwired is set, try to fill ony hardwired pins, and returns
1315 * zero if any pins are filled, non-zero if nothing found.
1316 * When hardwired is off, try to fill possible input pins, and returns
1317 * the badness value.
1318 */
1319static int fill_multi_ios(struct hda_codec *codec,
1320 hda_nid_t reference_pin,
Takashi Iwaie22aab72013-01-04 14:50:04 +01001321 bool hardwired)
Takashi Iwai352f7f92012-12-19 12:52:06 +01001322{
1323 struct hda_gen_spec *spec = codec->spec;
1324 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaie22aab72013-01-04 14:50:04 +01001325 int type, i, j, num_pins, old_pins;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001326 unsigned int defcfg = snd_hda_codec_get_pincfg(codec, reference_pin);
1327 unsigned int location = get_defcfg_location(defcfg);
1328 int badness = 0;
Takashi Iwai0e614dd2013-01-07 15:11:44 +01001329 struct nid_path *path;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001330
1331 old_pins = spec->multi_ios;
1332 if (old_pins >= 2)
1333 goto end_fill;
1334
Takashi Iwaie22aab72013-01-04 14:50:04 +01001335 num_pins = count_multiio_pins(codec, reference_pin);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001336 if (num_pins < 2)
1337 goto end_fill;
1338
Takashi Iwai352f7f92012-12-19 12:52:06 +01001339 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
1340 for (i = 0; i < cfg->num_inputs; i++) {
1341 hda_nid_t nid = cfg->inputs[i].pin;
1342 hda_nid_t dac = 0;
1343
1344 if (cfg->inputs[i].type != type)
1345 continue;
1346 if (!can_be_multiio_pin(codec, location, nid))
1347 continue;
1348 for (j = 0; j < spec->multi_ios; j++) {
1349 if (nid == spec->multi_io[j].pin)
1350 break;
1351 }
1352 if (j < spec->multi_ios)
1353 continue;
1354
Takashi Iwai352f7f92012-12-19 12:52:06 +01001355 if (hardwired)
1356 dac = get_dac_if_single(codec, nid);
1357 else if (!dac)
1358 dac = look_for_dac(codec, nid, false);
1359 if (!dac) {
1360 badness++;
1361 continue;
1362 }
Takashi Iwai3ca529d2013-01-07 17:25:08 +01001363 path = snd_hda_add_new_path(codec, dac, nid,
1364 -spec->mixer_nid);
Takashi Iwai0c8c0f52012-12-20 17:54:22 +01001365 if (!path) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01001366 badness++;
1367 continue;
1368 }
Takashi Iwaia7694092013-01-21 10:43:18 +01001369 /* print_nid_path("multiio", path); */
Takashi Iwai352f7f92012-12-19 12:52:06 +01001370 spec->multi_io[spec->multi_ios].pin = nid;
1371 spec->multi_io[spec->multi_ios].dac = dac;
Takashi Iwai196c17662013-01-04 15:01:40 +01001372 spec->out_paths[cfg->line_outs + spec->multi_ios] =
1373 snd_hda_get_path_idx(codec, path);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001374 spec->multi_ios++;
1375 if (spec->multi_ios >= 2)
1376 break;
1377 }
1378 }
1379 end_fill:
1380 if (badness)
1381 badness = BAD_MULTI_IO;
1382 if (old_pins == spec->multi_ios) {
1383 if (hardwired)
1384 return 1; /* nothing found */
1385 else
1386 return badness; /* no badness if nothing found */
1387 }
1388 if (!hardwired && spec->multi_ios < 2) {
1389 /* cancel newly assigned paths */
1390 spec->paths.used -= spec->multi_ios - old_pins;
1391 spec->multi_ios = old_pins;
1392 return badness;
1393 }
1394
1395 /* assign volume and mute controls */
Takashi Iwai0e614dd2013-01-07 15:11:44 +01001396 for (i = old_pins; i < spec->multi_ios; i++) {
1397 path = snd_hda_get_path_from_idx(codec, spec->out_paths[cfg->line_outs + i]);
1398 badness += assign_out_path_ctls(codec, path);
1399 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01001400
1401 return badness;
1402}
1403
1404/* map DACs for all pins in the list if they are single connections */
1405static bool map_singles(struct hda_codec *codec, int outs,
Takashi Iwai196c17662013-01-04 15:01:40 +01001406 const hda_nid_t *pins, hda_nid_t *dacs, int *path_idx)
Takashi Iwai352f7f92012-12-19 12:52:06 +01001407{
Takashi Iwaib3a8c742012-12-20 18:29:16 +01001408 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001409 int i;
1410 bool found = false;
1411 for (i = 0; i < outs; i++) {
Takashi Iwai0c8c0f52012-12-20 17:54:22 +01001412 struct nid_path *path;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001413 hda_nid_t dac;
1414 if (dacs[i])
1415 continue;
1416 dac = get_dac_if_single(codec, pins[i]);
1417 if (!dac)
1418 continue;
Takashi Iwai3ca529d2013-01-07 17:25:08 +01001419 path = snd_hda_add_new_path(codec, dac, pins[i],
1420 -spec->mixer_nid);
Takashi Iwai117688a2013-01-04 15:41:41 +01001421 if (!path && !i && spec->mixer_nid)
Takashi Iwai3ca529d2013-01-07 17:25:08 +01001422 path = snd_hda_add_new_path(codec, dac, pins[i], 0);
Takashi Iwai0c8c0f52012-12-20 17:54:22 +01001423 if (path) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01001424 dacs[i] = dac;
1425 found = true;
Takashi Iwaia7694092013-01-21 10:43:18 +01001426 /* print_nid_path("output", path); */
Takashi Iwaie1284af2013-01-03 16:33:02 +01001427 path->active = true;
Takashi Iwai196c17662013-01-04 15:01:40 +01001428 path_idx[i] = snd_hda_get_path_idx(codec, path);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001429 }
1430 }
1431 return found;
1432}
1433
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01001434/* create a new path including aamix if available, and return its index */
1435static int check_aamix_out_path(struct hda_codec *codec, int path_idx)
1436{
Takashi Iwai3ca529d2013-01-07 17:25:08 +01001437 struct hda_gen_spec *spec = codec->spec;
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01001438 struct nid_path *path;
Takashi Iwai5ead56f2013-04-16 14:16:54 +02001439 hda_nid_t path_dac, dac, pin;
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01001440
1441 path = snd_hda_get_path_from_idx(codec, path_idx);
Takashi Iwai3ca529d2013-01-07 17:25:08 +01001442 if (!path || !path->depth ||
1443 is_nid_contained(path, spec->mixer_nid))
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01001444 return 0;
Takashi Iwai5ead56f2013-04-16 14:16:54 +02001445 path_dac = path->path[0];
1446 dac = spec->private_dac_nids[0];
Takashi Iwaif87498b2013-01-21 14:24:31 +01001447 pin = path->path[path->depth - 1];
1448 path = snd_hda_add_new_path(codec, dac, pin, spec->mixer_nid);
1449 if (!path) {
Takashi Iwai5ead56f2013-04-16 14:16:54 +02001450 if (dac != path_dac)
1451 dac = path_dac;
Takashi Iwaif87498b2013-01-21 14:24:31 +01001452 else if (spec->multiout.hp_out_nid[0])
1453 dac = spec->multiout.hp_out_nid[0];
1454 else if (spec->multiout.extra_out_nid[0])
1455 dac = spec->multiout.extra_out_nid[0];
Takashi Iwai5ead56f2013-04-16 14:16:54 +02001456 else
1457 dac = 0;
Takashi Iwaif87498b2013-01-21 14:24:31 +01001458 if (dac)
1459 path = snd_hda_add_new_path(codec, dac, pin,
1460 spec->mixer_nid);
1461 }
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01001462 if (!path)
1463 return 0;
Takashi Iwaia7694092013-01-21 10:43:18 +01001464 /* print_nid_path("output-aamix", path); */
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01001465 path->active = false; /* unused as default */
1466 return snd_hda_get_path_idx(codec, path);
1467}
1468
Takashi Iwai55a63d42013-03-21 17:20:12 +01001469/* check whether the independent HP is available with the current config */
1470static bool indep_hp_possible(struct hda_codec *codec)
1471{
1472 struct hda_gen_spec *spec = codec->spec;
1473 struct auto_pin_cfg *cfg = &spec->autocfg;
1474 struct nid_path *path;
1475 int i, idx;
1476
1477 if (cfg->line_out_type == AUTO_PIN_HP_OUT)
1478 idx = spec->out_paths[0];
1479 else
1480 idx = spec->hp_paths[0];
1481 path = snd_hda_get_path_from_idx(codec, idx);
1482 if (!path)
1483 return false;
1484
1485 /* assume no path conflicts unless aamix is involved */
1486 if (!spec->mixer_nid || !is_nid_contained(path, spec->mixer_nid))
1487 return true;
1488
1489 /* check whether output paths contain aamix */
1490 for (i = 0; i < cfg->line_outs; i++) {
1491 if (spec->out_paths[i] == idx)
1492 break;
1493 path = snd_hda_get_path_from_idx(codec, spec->out_paths[i]);
1494 if (path && is_nid_contained(path, spec->mixer_nid))
1495 return false;
1496 }
1497 for (i = 0; i < cfg->speaker_outs; i++) {
1498 path = snd_hda_get_path_from_idx(codec, spec->speaker_paths[i]);
1499 if (path && is_nid_contained(path, spec->mixer_nid))
1500 return false;
1501 }
1502
1503 return true;
1504}
1505
Takashi Iwaia07a9492013-01-07 16:44:06 +01001506/* fill the empty entries in the dac array for speaker/hp with the
1507 * shared dac pointed by the paths
1508 */
1509static void refill_shared_dacs(struct hda_codec *codec, int num_outs,
1510 hda_nid_t *dacs, int *path_idx)
1511{
1512 struct nid_path *path;
1513 int i;
1514
1515 for (i = 0; i < num_outs; i++) {
1516 if (dacs[i])
1517 continue;
1518 path = snd_hda_get_path_from_idx(codec, path_idx[i]);
1519 if (!path)
1520 continue;
1521 dacs[i] = path->path[0];
1522 }
1523}
1524
Takashi Iwai352f7f92012-12-19 12:52:06 +01001525/* fill in the dac_nids table from the parsed pin configuration */
1526static int fill_and_eval_dacs(struct hda_codec *codec,
1527 bool fill_hardwired,
1528 bool fill_mio_first)
1529{
1530 struct hda_gen_spec *spec = codec->spec;
1531 struct auto_pin_cfg *cfg = &spec->autocfg;
1532 int i, err, badness;
1533
1534 /* set num_dacs once to full for look_for_dac() */
1535 spec->multiout.num_dacs = cfg->line_outs;
1536 spec->multiout.dac_nids = spec->private_dac_nids;
1537 memset(spec->private_dac_nids, 0, sizeof(spec->private_dac_nids));
1538 memset(spec->multiout.hp_out_nid, 0, sizeof(spec->multiout.hp_out_nid));
1539 memset(spec->multiout.extra_out_nid, 0, sizeof(spec->multiout.extra_out_nid));
1540 spec->multi_ios = 0;
1541 snd_array_free(&spec->paths);
Takashi Iwaicd5be3f2013-01-07 15:07:00 +01001542
1543 /* clear path indices */
1544 memset(spec->out_paths, 0, sizeof(spec->out_paths));
1545 memset(spec->hp_paths, 0, sizeof(spec->hp_paths));
1546 memset(spec->speaker_paths, 0, sizeof(spec->speaker_paths));
1547 memset(spec->aamix_out_paths, 0, sizeof(spec->aamix_out_paths));
1548 memset(spec->digout_paths, 0, sizeof(spec->digout_paths));
Takashi Iwaic697b712013-01-07 17:09:26 +01001549 memset(spec->input_paths, 0, sizeof(spec->input_paths));
Takashi Iwaicd5be3f2013-01-07 15:07:00 +01001550 memset(spec->loopback_paths, 0, sizeof(spec->loopback_paths));
1551 memset(&spec->digin_path, 0, sizeof(spec->digin_path));
1552
Takashi Iwai352f7f92012-12-19 12:52:06 +01001553 badness = 0;
1554
1555 /* fill hard-wired DACs first */
1556 if (fill_hardwired) {
1557 bool mapped;
1558 do {
1559 mapped = map_singles(codec, cfg->line_outs,
1560 cfg->line_out_pins,
Takashi Iwai196c17662013-01-04 15:01:40 +01001561 spec->private_dac_nids,
1562 spec->out_paths);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001563 mapped |= map_singles(codec, cfg->hp_outs,
1564 cfg->hp_pins,
Takashi Iwai196c17662013-01-04 15:01:40 +01001565 spec->multiout.hp_out_nid,
1566 spec->hp_paths);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001567 mapped |= map_singles(codec, cfg->speaker_outs,
1568 cfg->speaker_pins,
Takashi Iwai196c17662013-01-04 15:01:40 +01001569 spec->multiout.extra_out_nid,
1570 spec->speaker_paths);
Takashi Iwaida96fb52013-07-29 16:54:36 +02001571 if (!spec->no_multi_io &&
1572 fill_mio_first && cfg->line_outs == 1 &&
Takashi Iwai352f7f92012-12-19 12:52:06 +01001573 cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaie22aab72013-01-04 14:50:04 +01001574 err = fill_multi_ios(codec, cfg->line_out_pins[0], true);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001575 if (!err)
1576 mapped = true;
1577 }
1578 } while (mapped);
1579 }
1580
1581 badness += try_assign_dacs(codec, cfg->line_outs, cfg->line_out_pins,
Takashi Iwai196c17662013-01-04 15:01:40 +01001582 spec->private_dac_nids, spec->out_paths,
Takashi Iwai98bd1112013-03-22 14:53:50 +01001583 spec->main_out_badness);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001584
Takashi Iwaida96fb52013-07-29 16:54:36 +02001585 if (!spec->no_multi_io && fill_mio_first &&
Takashi Iwai352f7f92012-12-19 12:52:06 +01001586 cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
1587 /* try to fill multi-io first */
Takashi Iwaie22aab72013-01-04 14:50:04 +01001588 err = fill_multi_ios(codec, cfg->line_out_pins[0], false);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001589 if (err < 0)
1590 return err;
1591 /* we don't count badness at this stage yet */
1592 }
1593
1594 if (cfg->line_out_type != AUTO_PIN_HP_OUT) {
1595 err = try_assign_dacs(codec, cfg->hp_outs, cfg->hp_pins,
1596 spec->multiout.hp_out_nid,
Takashi Iwai196c17662013-01-04 15:01:40 +01001597 spec->hp_paths,
Takashi Iwai98bd1112013-03-22 14:53:50 +01001598 spec->extra_out_badness);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001599 if (err < 0)
1600 return err;
1601 badness += err;
1602 }
1603 if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
1604 err = try_assign_dacs(codec, cfg->speaker_outs,
1605 cfg->speaker_pins,
1606 spec->multiout.extra_out_nid,
Takashi Iwai196c17662013-01-04 15:01:40 +01001607 spec->speaker_paths,
Takashi Iwai98bd1112013-03-22 14:53:50 +01001608 spec->extra_out_badness);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001609 if (err < 0)
1610 return err;
1611 badness += err;
1612 }
Takashi Iwaida96fb52013-07-29 16:54:36 +02001613 if (!spec->no_multi_io &&
1614 cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
Takashi Iwaie22aab72013-01-04 14:50:04 +01001615 err = fill_multi_ios(codec, cfg->line_out_pins[0], false);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001616 if (err < 0)
1617 return err;
1618 badness += err;
1619 }
Takashi Iwaie22aab72013-01-04 14:50:04 +01001620
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01001621 if (spec->mixer_nid) {
1622 spec->aamix_out_paths[0] =
1623 check_aamix_out_path(codec, spec->out_paths[0]);
1624 if (cfg->line_out_type != AUTO_PIN_HP_OUT)
1625 spec->aamix_out_paths[1] =
1626 check_aamix_out_path(codec, spec->hp_paths[0]);
1627 if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT)
1628 spec->aamix_out_paths[2] =
1629 check_aamix_out_path(codec, spec->speaker_paths[0]);
1630 }
1631
Takashi Iwaida96fb52013-07-29 16:54:36 +02001632 if (!spec->no_multi_io &&
1633 cfg->hp_outs && cfg->line_out_type == AUTO_PIN_SPEAKER_OUT)
Takashi Iwaie22aab72013-01-04 14:50:04 +01001634 if (count_multiio_pins(codec, cfg->hp_pins[0]) >= 2)
1635 spec->multi_ios = 1; /* give badness */
Takashi Iwai352f7f92012-12-19 12:52:06 +01001636
Takashi Iwaia07a9492013-01-07 16:44:06 +01001637 /* re-count num_dacs and squash invalid entries */
1638 spec->multiout.num_dacs = 0;
1639 for (i = 0; i < cfg->line_outs; i++) {
1640 if (spec->private_dac_nids[i])
1641 spec->multiout.num_dacs++;
1642 else {
1643 memmove(spec->private_dac_nids + i,
1644 spec->private_dac_nids + i + 1,
1645 sizeof(hda_nid_t) * (cfg->line_outs - i - 1));
1646 spec->private_dac_nids[cfg->line_outs - 1] = 0;
1647 }
1648 }
1649
1650 spec->ext_channel_count = spec->min_channel_count =
David Henningssonc0f3b212013-01-16 11:45:37 +01001651 spec->multiout.num_dacs * 2;
Takashi Iwaia07a9492013-01-07 16:44:06 +01001652
Takashi Iwai352f7f92012-12-19 12:52:06 +01001653 if (spec->multi_ios == 2) {
1654 for (i = 0; i < 2; i++)
1655 spec->private_dac_nids[spec->multiout.num_dacs++] =
1656 spec->multi_io[i].dac;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001657 } else if (spec->multi_ios) {
1658 spec->multi_ios = 0;
1659 badness += BAD_MULTI_IO;
1660 }
1661
Takashi Iwai55a63d42013-03-21 17:20:12 +01001662 if (spec->indep_hp && !indep_hp_possible(codec))
1663 badness += BAD_NO_INDEP_HP;
1664
Takashi Iwaia07a9492013-01-07 16:44:06 +01001665 /* re-fill the shared DAC for speaker / headphone */
1666 if (cfg->line_out_type != AUTO_PIN_HP_OUT)
1667 refill_shared_dacs(codec, cfg->hp_outs,
1668 spec->multiout.hp_out_nid,
1669 spec->hp_paths);
1670 if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT)
1671 refill_shared_dacs(codec, cfg->speaker_outs,
1672 spec->multiout.extra_out_nid,
1673 spec->speaker_paths);
1674
Takashi Iwai352f7f92012-12-19 12:52:06 +01001675 return badness;
1676}
1677
1678#define DEBUG_BADNESS
1679
1680#ifdef DEBUG_BADNESS
1681#define debug_badness snd_printdd
1682#else
1683#define debug_badness(...)
1684#endif
1685
Takashi Iwaia7694092013-01-21 10:43:18 +01001686#ifdef DEBUG_BADNESS
1687static inline void print_nid_path_idx(struct hda_codec *codec,
1688 const char *pfx, int idx)
Takashi Iwai352f7f92012-12-19 12:52:06 +01001689{
Takashi Iwaia7694092013-01-21 10:43:18 +01001690 struct nid_path *path;
1691
1692 path = snd_hda_get_path_from_idx(codec, idx);
1693 if (path)
1694 print_nid_path(pfx, path);
1695}
1696
1697static void debug_show_configs(struct hda_codec *codec,
1698 struct auto_pin_cfg *cfg)
1699{
1700 struct hda_gen_spec *spec = codec->spec;
Takashi Iwaia7694092013-01-21 10:43:18 +01001701 static const char * const lo_type[3] = { "LO", "SP", "HP" };
Takashi Iwaia7694092013-01-21 10:43:18 +01001702 int i;
1703
1704 debug_badness("multi_outs = %x/%x/%x/%x : %x/%x/%x/%x (type %s)\n",
Takashi Iwai352f7f92012-12-19 12:52:06 +01001705 cfg->line_out_pins[0], cfg->line_out_pins[1],
Takashi Iwai708122e2012-12-20 17:56:57 +01001706 cfg->line_out_pins[2], cfg->line_out_pins[3],
Takashi Iwai352f7f92012-12-19 12:52:06 +01001707 spec->multiout.dac_nids[0],
1708 spec->multiout.dac_nids[1],
1709 spec->multiout.dac_nids[2],
Takashi Iwaia7694092013-01-21 10:43:18 +01001710 spec->multiout.dac_nids[3],
1711 lo_type[cfg->line_out_type]);
1712 for (i = 0; i < cfg->line_outs; i++)
1713 print_nid_path_idx(codec, " out", spec->out_paths[i]);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001714 if (spec->multi_ios > 0)
1715 debug_badness("multi_ios(%d) = %x/%x : %x/%x\n",
1716 spec->multi_ios,
1717 spec->multi_io[0].pin, spec->multi_io[1].pin,
1718 spec->multi_io[0].dac, spec->multi_io[1].dac);
Takashi Iwaia7694092013-01-21 10:43:18 +01001719 for (i = 0; i < spec->multi_ios; i++)
1720 print_nid_path_idx(codec, " mio",
1721 spec->out_paths[cfg->line_outs + i]);
1722 if (cfg->hp_outs)
1723 debug_badness("hp_outs = %x/%x/%x/%x : %x/%x/%x/%x\n",
Takashi Iwai352f7f92012-12-19 12:52:06 +01001724 cfg->hp_pins[0], cfg->hp_pins[1],
Takashi Iwai708122e2012-12-20 17:56:57 +01001725 cfg->hp_pins[2], cfg->hp_pins[3],
Takashi Iwai352f7f92012-12-19 12:52:06 +01001726 spec->multiout.hp_out_nid[0],
1727 spec->multiout.hp_out_nid[1],
1728 spec->multiout.hp_out_nid[2],
1729 spec->multiout.hp_out_nid[3]);
Takashi Iwaia7694092013-01-21 10:43:18 +01001730 for (i = 0; i < cfg->hp_outs; i++)
1731 print_nid_path_idx(codec, " hp ", spec->hp_paths[i]);
1732 if (cfg->speaker_outs)
1733 debug_badness("spk_outs = %x/%x/%x/%x : %x/%x/%x/%x\n",
Takashi Iwai352f7f92012-12-19 12:52:06 +01001734 cfg->speaker_pins[0], cfg->speaker_pins[1],
1735 cfg->speaker_pins[2], cfg->speaker_pins[3],
1736 spec->multiout.extra_out_nid[0],
1737 spec->multiout.extra_out_nid[1],
1738 spec->multiout.extra_out_nid[2],
1739 spec->multiout.extra_out_nid[3]);
Takashi Iwaia7694092013-01-21 10:43:18 +01001740 for (i = 0; i < cfg->speaker_outs; i++)
1741 print_nid_path_idx(codec, " spk", spec->speaker_paths[i]);
1742 for (i = 0; i < 3; i++)
1743 print_nid_path_idx(codec, " mix", spec->aamix_out_paths[i]);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001744}
Takashi Iwaia7694092013-01-21 10:43:18 +01001745#else
1746#define debug_show_configs(codec, cfg) /* NOP */
1747#endif
Takashi Iwai352f7f92012-12-19 12:52:06 +01001748
1749/* find all available DACs of the codec */
1750static void fill_all_dac_nids(struct hda_codec *codec)
1751{
1752 struct hda_gen_spec *spec = codec->spec;
1753 int i;
1754 hda_nid_t nid = codec->start_nid;
1755
1756 spec->num_all_dacs = 0;
1757 memset(spec->all_dacs, 0, sizeof(spec->all_dacs));
1758 for (i = 0; i < codec->num_nodes; i++, nid++) {
1759 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_AUD_OUT)
1760 continue;
1761 if (spec->num_all_dacs >= ARRAY_SIZE(spec->all_dacs)) {
1762 snd_printk(KERN_ERR "hda: Too many DACs!\n");
1763 break;
1764 }
1765 spec->all_dacs[spec->num_all_dacs++] = nid;
1766 }
1767}
1768
1769static int parse_output_paths(struct hda_codec *codec)
1770{
1771 struct hda_gen_spec *spec = codec->spec;
1772 struct auto_pin_cfg *cfg = &spec->autocfg;
1773 struct auto_pin_cfg *best_cfg;
Takashi Iwai9314a582013-01-21 10:49:05 +01001774 unsigned int val;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001775 int best_badness = INT_MAX;
1776 int badness;
1777 bool fill_hardwired = true, fill_mio_first = true;
1778 bool best_wired = true, best_mio = true;
1779 bool hp_spk_swapped = false;
1780
Takashi Iwai352f7f92012-12-19 12:52:06 +01001781 best_cfg = kmalloc(sizeof(*best_cfg), GFP_KERNEL);
1782 if (!best_cfg)
1783 return -ENOMEM;
1784 *best_cfg = *cfg;
1785
1786 for (;;) {
1787 badness = fill_and_eval_dacs(codec, fill_hardwired,
1788 fill_mio_first);
1789 if (badness < 0) {
1790 kfree(best_cfg);
1791 return badness;
1792 }
1793 debug_badness("==> lo_type=%d, wired=%d, mio=%d, badness=0x%x\n",
1794 cfg->line_out_type, fill_hardwired, fill_mio_first,
1795 badness);
Takashi Iwaia7694092013-01-21 10:43:18 +01001796 debug_show_configs(codec, cfg);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001797 if (badness < best_badness) {
1798 best_badness = badness;
1799 *best_cfg = *cfg;
1800 best_wired = fill_hardwired;
1801 best_mio = fill_mio_first;
1802 }
1803 if (!badness)
1804 break;
1805 fill_mio_first = !fill_mio_first;
1806 if (!fill_mio_first)
1807 continue;
1808 fill_hardwired = !fill_hardwired;
1809 if (!fill_hardwired)
1810 continue;
1811 if (hp_spk_swapped)
1812 break;
1813 hp_spk_swapped = true;
1814 if (cfg->speaker_outs > 0 &&
1815 cfg->line_out_type == AUTO_PIN_HP_OUT) {
1816 cfg->hp_outs = cfg->line_outs;
1817 memcpy(cfg->hp_pins, cfg->line_out_pins,
1818 sizeof(cfg->hp_pins));
1819 cfg->line_outs = cfg->speaker_outs;
1820 memcpy(cfg->line_out_pins, cfg->speaker_pins,
1821 sizeof(cfg->speaker_pins));
1822 cfg->speaker_outs = 0;
1823 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
1824 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
1825 fill_hardwired = true;
1826 continue;
1827 }
1828 if (cfg->hp_outs > 0 &&
1829 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
1830 cfg->speaker_outs = cfg->line_outs;
1831 memcpy(cfg->speaker_pins, cfg->line_out_pins,
1832 sizeof(cfg->speaker_pins));
1833 cfg->line_outs = cfg->hp_outs;
1834 memcpy(cfg->line_out_pins, cfg->hp_pins,
1835 sizeof(cfg->hp_pins));
1836 cfg->hp_outs = 0;
1837 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
1838 cfg->line_out_type = AUTO_PIN_HP_OUT;
1839 fill_hardwired = true;
1840 continue;
1841 }
1842 break;
1843 }
1844
1845 if (badness) {
Takashi Iwai0c8c0f52012-12-20 17:54:22 +01001846 debug_badness("==> restoring best_cfg\n");
Takashi Iwai352f7f92012-12-19 12:52:06 +01001847 *cfg = *best_cfg;
1848 fill_and_eval_dacs(codec, best_wired, best_mio);
1849 }
1850 debug_badness("==> Best config: lo_type=%d, wired=%d, mio=%d\n",
1851 cfg->line_out_type, best_wired, best_mio);
Takashi Iwaia7694092013-01-21 10:43:18 +01001852 debug_show_configs(codec, cfg);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001853
1854 if (cfg->line_out_pins[0]) {
1855 struct nid_path *path;
Takashi Iwai196c17662013-01-04 15:01:40 +01001856 path = snd_hda_get_path_from_idx(codec, spec->out_paths[0]);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001857 if (path)
1858 spec->vmaster_nid = look_for_out_vol_nid(codec, path);
Takashi Iwai7a71bbf2013-01-17 10:25:15 +01001859 if (spec->vmaster_nid)
1860 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
1861 HDA_OUTPUT, spec->vmaster_tlv);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001862 }
1863
Takashi Iwai9314a582013-01-21 10:49:05 +01001864 /* set initial pinctl targets */
1865 if (spec->prefer_hp_amp || cfg->line_out_type == AUTO_PIN_HP_OUT)
1866 val = PIN_HP;
1867 else
1868 val = PIN_OUT;
1869 set_pin_targets(codec, cfg->line_outs, cfg->line_out_pins, val);
1870 if (cfg->line_out_type != AUTO_PIN_HP_OUT)
1871 set_pin_targets(codec, cfg->hp_outs, cfg->hp_pins, PIN_HP);
1872 if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
1873 val = spec->prefer_hp_amp ? PIN_HP : PIN_OUT;
1874 set_pin_targets(codec, cfg->speaker_outs,
1875 cfg->speaker_pins, val);
1876 }
1877
Takashi Iwai55a63d42013-03-21 17:20:12 +01001878 /* clear indep_hp flag if not available */
1879 if (spec->indep_hp && !indep_hp_possible(codec))
1880 spec->indep_hp = 0;
1881
Takashi Iwai352f7f92012-12-19 12:52:06 +01001882 kfree(best_cfg);
1883 return 0;
1884}
1885
1886/* add playback controls from the parsed DAC table */
1887static int create_multi_out_ctls(struct hda_codec *codec,
1888 const struct auto_pin_cfg *cfg)
1889{
1890 struct hda_gen_spec *spec = codec->spec;
1891 int i, err, noutputs;
1892
1893 noutputs = cfg->line_outs;
1894 if (spec->multi_ios > 0 && cfg->line_outs < 3)
1895 noutputs += spec->multi_ios;
1896
1897 for (i = 0; i < noutputs; i++) {
1898 const char *name;
1899 int index;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001900 struct nid_path *path;
1901
Takashi Iwai196c17662013-01-04 15:01:40 +01001902 path = snd_hda_get_path_from_idx(codec, spec->out_paths[i]);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001903 if (!path)
1904 continue;
Takashi Iwai247d85e2013-01-17 16:18:11 +01001905
1906 name = get_line_out_pfx(codec, i, &index, NID_PATH_VOL_CTL);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001907 if (!name || !strcmp(name, "CLFE")) {
1908 /* Center/LFE */
1909 err = add_vol_ctl(codec, "Center", 0, 1, path);
1910 if (err < 0)
1911 return err;
1912 err = add_vol_ctl(codec, "LFE", 0, 2, path);
1913 if (err < 0)
1914 return err;
Takashi Iwai247d85e2013-01-17 16:18:11 +01001915 } else {
1916 err = add_stereo_vol(codec, name, index, path);
1917 if (err < 0)
1918 return err;
1919 }
1920
1921 name = get_line_out_pfx(codec, i, &index, NID_PATH_MUTE_CTL);
1922 if (!name || !strcmp(name, "CLFE")) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01001923 err = add_sw_ctl(codec, "Center", 0, 1, path);
1924 if (err < 0)
1925 return err;
1926 err = add_sw_ctl(codec, "LFE", 0, 2, path);
1927 if (err < 0)
1928 return err;
1929 } else {
Takashi Iwai352f7f92012-12-19 12:52:06 +01001930 err = add_stereo_sw(codec, name, index, path);
1931 if (err < 0)
1932 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 }
1934 }
1935 return 0;
1936}
1937
Takashi Iwaic2c80382013-01-07 10:33:57 +01001938static int create_extra_out(struct hda_codec *codec, int path_idx,
Takashi Iwai196c17662013-01-04 15:01:40 +01001939 const char *pfx, int cidx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
Takashi Iwai352f7f92012-12-19 12:52:06 +01001941 struct nid_path *path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 int err;
1943
Takashi Iwai196c17662013-01-04 15:01:40 +01001944 path = snd_hda_get_path_from_idx(codec, path_idx);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001945 if (!path)
1946 return 0;
Takashi Iwaic2c80382013-01-07 10:33:57 +01001947 err = add_stereo_vol(codec, pfx, cidx, path);
1948 if (err < 0)
1949 return err;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001950 err = add_stereo_sw(codec, pfx, cidx, path);
1951 if (err < 0)
1952 return err;
1953 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954}
1955
Takashi Iwai352f7f92012-12-19 12:52:06 +01001956/* add playback controls for speaker and HP outputs */
1957static int create_extra_outs(struct hda_codec *codec, int num_pins,
Takashi Iwai196c17662013-01-04 15:01:40 +01001958 const int *paths, const char *pfx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959{
Takashi Iwaic2c80382013-01-07 10:33:57 +01001960 int i;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001961
1962 for (i = 0; i < num_pins; i++) {
Takashi Iwaic2c80382013-01-07 10:33:57 +01001963 const char *name;
Takashi Iwai975cc022013-06-28 11:56:49 +02001964 char tmp[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
Takashi Iwaic2c80382013-01-07 10:33:57 +01001965 int err, idx = 0;
1966
1967 if (num_pins == 2 && i == 1 && !strcmp(pfx, "Speaker"))
1968 name = "Bass Speaker";
1969 else if (num_pins >= 3) {
1970 snprintf(tmp, sizeof(tmp), "%s %s",
Takashi Iwai352f7f92012-12-19 12:52:06 +01001971 pfx, channel_name[i]);
Takashi Iwaic2c80382013-01-07 10:33:57 +01001972 name = tmp;
Takashi Iwai352f7f92012-12-19 12:52:06 +01001973 } else {
Takashi Iwaic2c80382013-01-07 10:33:57 +01001974 name = pfx;
1975 idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 }
Takashi Iwaic2c80382013-01-07 10:33:57 +01001977 err = create_extra_out(codec, paths[i], name, idx);
Takashi Iwai352f7f92012-12-19 12:52:06 +01001978 if (err < 0)
1979 return err;
1980 }
1981 return 0;
1982}
Takashi Iwai97ec5582006-03-21 11:29:07 +01001983
Takashi Iwai352f7f92012-12-19 12:52:06 +01001984static int create_hp_out_ctls(struct hda_codec *codec)
1985{
1986 struct hda_gen_spec *spec = codec->spec;
1987 return create_extra_outs(codec, spec->autocfg.hp_outs,
Takashi Iwai196c17662013-01-04 15:01:40 +01001988 spec->hp_paths,
Takashi Iwai352f7f92012-12-19 12:52:06 +01001989 "Headphone");
1990}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
Takashi Iwai352f7f92012-12-19 12:52:06 +01001992static int create_speaker_out_ctls(struct hda_codec *codec)
1993{
1994 struct hda_gen_spec *spec = codec->spec;
1995 return create_extra_outs(codec, spec->autocfg.speaker_outs,
Takashi Iwai196c17662013-01-04 15:01:40 +01001996 spec->speaker_paths,
Takashi Iwai352f7f92012-12-19 12:52:06 +01001997 "Speaker");
1998}
1999
2000/*
Takashi Iwai38cf6f12012-12-21 14:09:42 +01002001 * independent HP controls
2002 */
2003
Takashi Iwai963afde2013-05-31 15:20:31 +02002004static void call_hp_automute(struct hda_codec *codec, struct hda_jack_tbl *jack);
Takashi Iwai38cf6f12012-12-21 14:09:42 +01002005static int indep_hp_info(struct snd_kcontrol *kcontrol,
2006 struct snd_ctl_elem_info *uinfo)
2007{
2008 return snd_hda_enum_bool_helper_info(kcontrol, uinfo);
2009}
2010
2011static int indep_hp_get(struct snd_kcontrol *kcontrol,
2012 struct snd_ctl_elem_value *ucontrol)
2013{
2014 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2015 struct hda_gen_spec *spec = codec->spec;
2016 ucontrol->value.enumerated.item[0] = spec->indep_hp_enabled;
2017 return 0;
2018}
2019
Takashi Iwaia1e908e2013-01-21 15:11:25 +01002020static void update_aamix_paths(struct hda_codec *codec, bool do_mix,
2021 int nomix_path_idx, int mix_path_idx,
2022 int out_type);
2023
Takashi Iwai38cf6f12012-12-21 14:09:42 +01002024static int indep_hp_put(struct snd_kcontrol *kcontrol,
2025 struct snd_ctl_elem_value *ucontrol)
2026{
2027 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2028 struct hda_gen_spec *spec = codec->spec;
2029 unsigned int select = ucontrol->value.enumerated.item[0];
2030 int ret = 0;
2031
2032 mutex_lock(&spec->pcm_mutex);
2033 if (spec->active_streams) {
2034 ret = -EBUSY;
2035 goto unlock;
2036 }
2037
2038 if (spec->indep_hp_enabled != select) {
Takashi Iwaia1e908e2013-01-21 15:11:25 +01002039 hda_nid_t *dacp;
2040 if (spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)
2041 dacp = &spec->private_dac_nids[0];
2042 else
2043 dacp = &spec->multiout.hp_out_nid[0];
2044
2045 /* update HP aamix paths in case it conflicts with indep HP */
2046 if (spec->have_aamix_ctl) {
2047 if (spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)
2048 update_aamix_paths(codec, spec->aamix_mode,
2049 spec->out_paths[0],
2050 spec->aamix_out_paths[0],
2051 spec->autocfg.line_out_type);
2052 else
2053 update_aamix_paths(codec, spec->aamix_mode,
2054 spec->hp_paths[0],
2055 spec->aamix_out_paths[1],
2056 AUTO_PIN_HP_OUT);
2057 }
2058
Takashi Iwai38cf6f12012-12-21 14:09:42 +01002059 spec->indep_hp_enabled = select;
2060 if (spec->indep_hp_enabled)
Takashi Iwaia1e908e2013-01-21 15:11:25 +01002061 *dacp = 0;
Takashi Iwai38cf6f12012-12-21 14:09:42 +01002062 else
Takashi Iwaia1e908e2013-01-21 15:11:25 +01002063 *dacp = spec->alt_dac_nid;
Takashi Iwai92603c52013-01-22 07:46:31 +01002064
Takashi Iwai963afde2013-05-31 15:20:31 +02002065 call_hp_automute(codec, NULL);
Takashi Iwai38cf6f12012-12-21 14:09:42 +01002066 ret = 1;
2067 }
2068 unlock:
2069 mutex_unlock(&spec->pcm_mutex);
2070 return ret;
2071}
2072
2073static const struct snd_kcontrol_new indep_hp_ctl = {
2074 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2075 .name = "Independent HP",
2076 .info = indep_hp_info,
2077 .get = indep_hp_get,
2078 .put = indep_hp_put,
2079};
2080
2081
2082static int create_indep_hp_ctls(struct hda_codec *codec)
2083{
2084 struct hda_gen_spec *spec = codec->spec;
Takashi Iwaia1e908e2013-01-21 15:11:25 +01002085 hda_nid_t dac;
Takashi Iwai38cf6f12012-12-21 14:09:42 +01002086
2087 if (!spec->indep_hp)
2088 return 0;
Takashi Iwaia1e908e2013-01-21 15:11:25 +01002089 if (spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)
2090 dac = spec->multiout.dac_nids[0];
2091 else
2092 dac = spec->multiout.hp_out_nid[0];
2093 if (!dac) {
Takashi Iwai38cf6f12012-12-21 14:09:42 +01002094 spec->indep_hp = 0;
2095 return 0;
2096 }
2097
2098 spec->indep_hp_enabled = false;
Takashi Iwaia1e908e2013-01-21 15:11:25 +01002099 spec->alt_dac_nid = dac;
Takashi Iwai38cf6f12012-12-21 14:09:42 +01002100 if (!snd_hda_gen_add_kctl(spec, NULL, &indep_hp_ctl))
2101 return -ENOMEM;
2102 return 0;
2103}
2104
2105/*
Takashi Iwai352f7f92012-12-19 12:52:06 +01002106 * channel mode enum control
2107 */
2108
2109static int ch_mode_info(struct snd_kcontrol *kcontrol,
2110 struct snd_ctl_elem_info *uinfo)
2111{
2112 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2113 struct hda_gen_spec *spec = codec->spec;
Takashi Iwaia07a9492013-01-07 16:44:06 +01002114 int chs;
Takashi Iwai352f7f92012-12-19 12:52:06 +01002115
2116 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2117 uinfo->count = 1;
2118 uinfo->value.enumerated.items = spec->multi_ios + 1;
2119 if (uinfo->value.enumerated.item > spec->multi_ios)
2120 uinfo->value.enumerated.item = spec->multi_ios;
Takashi Iwaia07a9492013-01-07 16:44:06 +01002121 chs = uinfo->value.enumerated.item * 2 + spec->min_channel_count;
2122 sprintf(uinfo->value.enumerated.name, "%dch", chs);
Takashi Iwai352f7f92012-12-19 12:52:06 +01002123 return 0;
2124}
2125
2126static int ch_mode_get(struct snd_kcontrol *kcontrol,
2127 struct snd_ctl_elem_value *ucontrol)
2128{
2129 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2130 struct hda_gen_spec *spec = codec->spec;
Takashi Iwaia07a9492013-01-07 16:44:06 +01002131 ucontrol->value.enumerated.item[0] =
2132 (spec->ext_channel_count - spec->min_channel_count) / 2;
Takashi Iwai352f7f92012-12-19 12:52:06 +01002133 return 0;
2134}
2135
Takashi Iwai196c17662013-01-04 15:01:40 +01002136static inline struct nid_path *
2137get_multiio_path(struct hda_codec *codec, int idx)
2138{
2139 struct hda_gen_spec *spec = codec->spec;
2140 return snd_hda_get_path_from_idx(codec,
2141 spec->out_paths[spec->autocfg.line_outs + idx]);
2142}
2143
Takashi Iwaia5cc2502013-01-16 18:08:55 +01002144static void update_automute_all(struct hda_codec *codec);
2145
Takashi Iwai65033cc2013-04-16 12:31:05 +02002146/* Default value to be passed as aamix argument for snd_hda_activate_path();
2147 * used for output paths
2148 */
2149static bool aamix_default(struct hda_gen_spec *spec)
2150{
2151 return !spec->have_aamix_ctl || spec->aamix_mode;
2152}
2153
Takashi Iwai352f7f92012-12-19 12:52:06 +01002154static int set_multi_io(struct hda_codec *codec, int idx, bool output)
2155{
2156 struct hda_gen_spec *spec = codec->spec;
2157 hda_nid_t nid = spec->multi_io[idx].pin;
2158 struct nid_path *path;
2159
Takashi Iwai196c17662013-01-04 15:01:40 +01002160 path = get_multiio_path(codec, idx);
Takashi Iwai352f7f92012-12-19 12:52:06 +01002161 if (!path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 return -EINVAL;
Takashi Iwai352f7f92012-12-19 12:52:06 +01002163
2164 if (path->active == output)
2165 return 0;
2166
2167 if (output) {
Takashi Iwai2c12c302013-01-10 09:33:29 +01002168 set_pin_target(codec, nid, PIN_OUT, true);
Takashi Iwai65033cc2013-04-16 12:31:05 +02002169 snd_hda_activate_path(codec, path, true, aamix_default(spec));
Takashi Iwaid5a9f1b2012-12-20 15:36:30 +01002170 set_pin_eapd(codec, nid, true);
Takashi Iwai352f7f92012-12-19 12:52:06 +01002171 } else {
Takashi Iwaid5a9f1b2012-12-20 15:36:30 +01002172 set_pin_eapd(codec, nid, false);
Takashi Iwai65033cc2013-04-16 12:31:05 +02002173 snd_hda_activate_path(codec, path, false, aamix_default(spec));
Takashi Iwai2c12c302013-01-10 09:33:29 +01002174 set_pin_target(codec, nid, spec->multi_io[idx].ctl_in, true);
Takashi Iwai55196ff2013-01-24 17:32:56 +01002175 path_power_down_sync(codec, path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 }
Takashi Iwaia365fed2013-01-10 16:10:06 +01002177
2178 /* update jack retasking in case it modifies any of them */
Takashi Iwaia5cc2502013-01-16 18:08:55 +01002179 update_automute_all(codec);
Takashi Iwaia365fed2013-01-10 16:10:06 +01002180
Takashi Iwai352f7f92012-12-19 12:52:06 +01002181 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182}
2183
Takashi Iwai352f7f92012-12-19 12:52:06 +01002184static int ch_mode_put(struct snd_kcontrol *kcontrol,
2185 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186{
Takashi Iwai352f7f92012-12-19 12:52:06 +01002187 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2188 struct hda_gen_spec *spec = codec->spec;
2189 int i, ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Takashi Iwai352f7f92012-12-19 12:52:06 +01002191 ch = ucontrol->value.enumerated.item[0];
2192 if (ch < 0 || ch > spec->multi_ios)
2193 return -EINVAL;
Takashi Iwaia07a9492013-01-07 16:44:06 +01002194 if (ch == (spec->ext_channel_count - spec->min_channel_count) / 2)
Takashi Iwai352f7f92012-12-19 12:52:06 +01002195 return 0;
Takashi Iwaia07a9492013-01-07 16:44:06 +01002196 spec->ext_channel_count = ch * 2 + spec->min_channel_count;
Takashi Iwai352f7f92012-12-19 12:52:06 +01002197 for (i = 0; i < spec->multi_ios; i++)
2198 set_multi_io(codec, i, i < ch);
2199 spec->multiout.max_channels = max(spec->ext_channel_count,
2200 spec->const_channel_count);
2201 if (spec->need_dac_fix)
2202 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 return 1;
2204}
2205
Takashi Iwai352f7f92012-12-19 12:52:06 +01002206static const struct snd_kcontrol_new channel_mode_enum = {
2207 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2208 .name = "Channel Mode",
2209 .info = ch_mode_info,
2210 .get = ch_mode_get,
2211 .put = ch_mode_put,
2212};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Takashi Iwai352f7f92012-12-19 12:52:06 +01002214static int create_multi_channel_mode(struct hda_codec *codec)
2215{
2216 struct hda_gen_spec *spec = codec->spec;
2217
2218 if (spec->multi_ios > 0) {
Takashi Iwai12c93df2012-12-19 14:38:33 +01002219 if (!snd_hda_gen_add_kctl(spec, NULL, &channel_mode_enum))
Takashi Iwai352f7f92012-12-19 12:52:06 +01002220 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 return 0;
2223}
2224
Takashi Iwai352f7f92012-12-19 12:52:06 +01002225/*
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01002226 * aamix loopback enable/disable switch
2227 */
2228
2229#define loopback_mixing_info indep_hp_info
2230
2231static int loopback_mixing_get(struct snd_kcontrol *kcontrol,
2232 struct snd_ctl_elem_value *ucontrol)
2233{
2234 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2235 struct hda_gen_spec *spec = codec->spec;
2236 ucontrol->value.enumerated.item[0] = spec->aamix_mode;
2237 return 0;
2238}
2239
2240static void update_aamix_paths(struct hda_codec *codec, bool do_mix,
Takashi Iwaia1e908e2013-01-21 15:11:25 +01002241 int nomix_path_idx, int mix_path_idx,
2242 int out_type)
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01002243{
Takashi Iwaia1e908e2013-01-21 15:11:25 +01002244 struct hda_gen_spec *spec = codec->spec;
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01002245 struct nid_path *nomix_path, *mix_path;
2246
2247 nomix_path = snd_hda_get_path_from_idx(codec, nomix_path_idx);
2248 mix_path = snd_hda_get_path_from_idx(codec, mix_path_idx);
2249 if (!nomix_path || !mix_path)
2250 return;
Takashi Iwaia1e908e2013-01-21 15:11:25 +01002251
2252 /* if HP aamix path is driven from a different DAC and the
2253 * independent HP mode is ON, can't turn on aamix path
2254 */
2255 if (out_type == AUTO_PIN_HP_OUT && spec->indep_hp_enabled &&
2256 mix_path->path[0] != spec->alt_dac_nid)
2257 do_mix = false;
2258
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01002259 if (do_mix) {
2260 snd_hda_activate_path(codec, nomix_path, false, true);
2261 snd_hda_activate_path(codec, mix_path, true, true);
Takashi Iwai55196ff2013-01-24 17:32:56 +01002262 path_power_down_sync(codec, nomix_path);
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01002263 } else {
Takashi Iwai65033cc2013-04-16 12:31:05 +02002264 snd_hda_activate_path(codec, mix_path, false, false);
2265 snd_hda_activate_path(codec, nomix_path, true, false);
Takashi Iwai55196ff2013-01-24 17:32:56 +01002266 path_power_down_sync(codec, mix_path);
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01002267 }
2268}
2269
2270static int loopback_mixing_put(struct snd_kcontrol *kcontrol,
2271 struct snd_ctl_elem_value *ucontrol)
2272{
2273 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2274 struct hda_gen_spec *spec = codec->spec;
2275 unsigned int val = ucontrol->value.enumerated.item[0];
2276
2277 if (val == spec->aamix_mode)
2278 return 0;
2279 spec->aamix_mode = val;
2280 update_aamix_paths(codec, val, spec->out_paths[0],
Takashi Iwaia1e908e2013-01-21 15:11:25 +01002281 spec->aamix_out_paths[0],
2282 spec->autocfg.line_out_type);
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01002283 update_aamix_paths(codec, val, spec->hp_paths[0],
Takashi Iwaia1e908e2013-01-21 15:11:25 +01002284 spec->aamix_out_paths[1],
2285 AUTO_PIN_HP_OUT);
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01002286 update_aamix_paths(codec, val, spec->speaker_paths[0],
Takashi Iwaia1e908e2013-01-21 15:11:25 +01002287 spec->aamix_out_paths[2],
2288 AUTO_PIN_SPEAKER_OUT);
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01002289 return 1;
2290}
2291
2292static const struct snd_kcontrol_new loopback_mixing_enum = {
2293 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2294 .name = "Loopback Mixing",
2295 .info = loopback_mixing_info,
2296 .get = loopback_mixing_get,
2297 .put = loopback_mixing_put,
2298};
2299
2300static int create_loopback_mixing_ctl(struct hda_codec *codec)
2301{
2302 struct hda_gen_spec *spec = codec->spec;
2303
2304 if (!spec->mixer_nid)
2305 return 0;
2306 if (!(spec->aamix_out_paths[0] || spec->aamix_out_paths[1] ||
2307 spec->aamix_out_paths[2]))
2308 return 0;
2309 if (!snd_hda_gen_add_kctl(spec, NULL, &loopback_mixing_enum))
2310 return -ENOMEM;
Takashi Iwaia1e908e2013-01-21 15:11:25 +01002311 spec->have_aamix_ctl = 1;
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01002312 return 0;
2313}
2314
2315/*
Takashi Iwai352f7f92012-12-19 12:52:06 +01002316 * shared headphone/mic handling
2317 */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002318
Takashi Iwai352f7f92012-12-19 12:52:06 +01002319static void call_update_outputs(struct hda_codec *codec);
2320
2321/* for shared I/O, change the pin-control accordingly */
Takashi Iwai967303d2013-02-19 17:12:42 +01002322static void update_hp_mic(struct hda_codec *codec, int adc_mux, bool force)
Takashi Iwai352f7f92012-12-19 12:52:06 +01002323{
2324 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai967303d2013-02-19 17:12:42 +01002325 bool as_mic;
Takashi Iwai352f7f92012-12-19 12:52:06 +01002326 unsigned int val;
Takashi Iwai967303d2013-02-19 17:12:42 +01002327 hda_nid_t pin;
2328
2329 pin = spec->hp_mic_pin;
2330 as_mic = spec->cur_mux[adc_mux] == spec->hp_mic_mux_idx;
2331
2332 if (!force) {
2333 val = snd_hda_codec_get_pin_target(codec, pin);
2334 if (as_mic) {
2335 if (val & PIN_IN)
2336 return;
2337 } else {
2338 if (val & PIN_OUT)
2339 return;
2340 }
2341 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01002342
2343 val = snd_hda_get_default_vref(codec, pin);
Takashi Iwai967303d2013-02-19 17:12:42 +01002344 /* if the HP pin doesn't support VREF and the codec driver gives an
2345 * alternative pin, set up the VREF on that pin instead
2346 */
Takashi Iwai352f7f92012-12-19 12:52:06 +01002347 if (val == AC_PINCTL_VREF_HIZ && spec->shared_mic_vref_pin) {
2348 const hda_nid_t vref_pin = spec->shared_mic_vref_pin;
2349 unsigned int vref_val = snd_hda_get_default_vref(codec, vref_pin);
2350 if (vref_val != AC_PINCTL_VREF_HIZ)
Takashi Iwai7594aa32012-12-20 15:38:40 +01002351 snd_hda_set_pin_ctl_cache(codec, vref_pin,
Takashi Iwai967303d2013-02-19 17:12:42 +01002352 PIN_IN | (as_mic ? vref_val : 0));
Takashi Iwaicb53c622007-08-10 17:21:45 +02002353 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01002354
Takashi Iwai8ba955c2013-03-07 18:40:58 +01002355 if (!spec->hp_mic_jack_modes) {
2356 if (as_mic)
2357 val |= PIN_IN;
2358 else
2359 val = PIN_HP;
2360 set_pin_target(codec, pin, val, true);
Takashi Iwai963afde2013-05-31 15:20:31 +02002361 call_hp_automute(codec, NULL);
Takashi Iwai8ba955c2013-03-07 18:40:58 +01002362 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01002363}
2364
2365/* create a shared input with the headphone out */
Takashi Iwai967303d2013-02-19 17:12:42 +01002366static int create_hp_mic(struct hda_codec *codec)
Takashi Iwai352f7f92012-12-19 12:52:06 +01002367{
2368 struct hda_gen_spec *spec = codec->spec;
2369 struct auto_pin_cfg *cfg = &spec->autocfg;
2370 unsigned int defcfg;
2371 hda_nid_t nid;
2372
Takashi Iwai967303d2013-02-19 17:12:42 +01002373 if (!spec->hp_mic) {
2374 if (spec->suppress_hp_mic_detect)
2375 return 0;
2376 /* automatic detection: only if no input or a single internal
2377 * input pin is found, try to detect the shared hp/mic
2378 */
2379 if (cfg->num_inputs > 1)
2380 return 0;
2381 else if (cfg->num_inputs == 1) {
2382 defcfg = snd_hda_codec_get_pincfg(codec, cfg->inputs[0].pin);
2383 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
2384 return 0;
2385 }
2386 }
2387
2388 spec->hp_mic = 0; /* clear once */
2389 if (cfg->num_inputs >= AUTO_CFG_MAX_INS)
Takashi Iwai352f7f92012-12-19 12:52:06 +01002390 return 0;
2391
Takashi Iwai967303d2013-02-19 17:12:42 +01002392 nid = 0;
2393 if (cfg->line_out_type == AUTO_PIN_HP_OUT && cfg->line_outs > 0)
2394 nid = cfg->line_out_pins[0];
2395 else if (cfg->hp_outs > 0)
2396 nid = cfg->hp_pins[0];
2397 if (!nid)
2398 return 0;
Takashi Iwai352f7f92012-12-19 12:52:06 +01002399
2400 if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_IN))
2401 return 0; /* no input */
2402
Takashi Iwai967303d2013-02-19 17:12:42 +01002403 cfg->inputs[cfg->num_inputs].pin = nid;
2404 cfg->inputs[cfg->num_inputs].type = AUTO_PIN_MIC;
David Henningssoncb420b12013-04-11 11:30:28 +02002405 cfg->inputs[cfg->num_inputs].is_headphone_mic = 1;
Takashi Iwai967303d2013-02-19 17:12:42 +01002406 cfg->num_inputs++;
2407 spec->hp_mic = 1;
2408 spec->hp_mic_pin = nid;
2409 /* we can't handle auto-mic together with HP-mic */
2410 spec->suppress_auto_mic = 1;
Takashi Iwai352f7f92012-12-19 12:52:06 +01002411 snd_printdd("hda-codec: Enable shared I/O jack on NID 0x%x\n", nid);
2412 return 0;
2413}
2414
Takashi Iwai978e77e2013-01-10 16:57:58 +01002415/*
2416 * output jack mode
2417 */
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002418
2419static int create_hp_mic_jack_mode(struct hda_codec *codec, hda_nid_t pin);
2420
2421static const char * const out_jack_texts[] = {
2422 "Line Out", "Headphone Out",
2423};
2424
Takashi Iwai978e77e2013-01-10 16:57:58 +01002425static int out_jack_mode_info(struct snd_kcontrol *kcontrol,
2426 struct snd_ctl_elem_info *uinfo)
2427{
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002428 return snd_hda_enum_helper_info(kcontrol, uinfo, 2, out_jack_texts);
Takashi Iwai978e77e2013-01-10 16:57:58 +01002429}
2430
2431static int out_jack_mode_get(struct snd_kcontrol *kcontrol,
2432 struct snd_ctl_elem_value *ucontrol)
2433{
2434 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2435 hda_nid_t nid = kcontrol->private_value;
2436 if (snd_hda_codec_get_pin_target(codec, nid) == PIN_HP)
2437 ucontrol->value.enumerated.item[0] = 1;
2438 else
2439 ucontrol->value.enumerated.item[0] = 0;
2440 return 0;
2441}
2442
2443static int out_jack_mode_put(struct snd_kcontrol *kcontrol,
2444 struct snd_ctl_elem_value *ucontrol)
2445{
2446 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2447 hda_nid_t nid = kcontrol->private_value;
2448 unsigned int val;
2449
2450 val = ucontrol->value.enumerated.item[0] ? PIN_HP : PIN_OUT;
2451 if (snd_hda_codec_get_pin_target(codec, nid) == val)
2452 return 0;
2453 snd_hda_set_pin_ctl_cache(codec, nid, val);
2454 return 1;
2455}
2456
2457static const struct snd_kcontrol_new out_jack_mode_enum = {
2458 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2459 .info = out_jack_mode_info,
2460 .get = out_jack_mode_get,
2461 .put = out_jack_mode_put,
2462};
2463
2464static bool find_kctl_name(struct hda_codec *codec, const char *name, int idx)
2465{
2466 struct hda_gen_spec *spec = codec->spec;
2467 int i;
2468
2469 for (i = 0; i < spec->kctls.used; i++) {
2470 struct snd_kcontrol_new *kctl = snd_array_elem(&spec->kctls, i);
2471 if (!strcmp(kctl->name, name) && kctl->index == idx)
2472 return true;
2473 }
2474 return false;
2475}
2476
2477static void get_jack_mode_name(struct hda_codec *codec, hda_nid_t pin,
2478 char *name, size_t name_len)
2479{
2480 struct hda_gen_spec *spec = codec->spec;
2481 int idx = 0;
2482
2483 snd_hda_get_pin_label(codec, pin, &spec->autocfg, name, name_len, &idx);
2484 strlcat(name, " Jack Mode", name_len);
2485
2486 for (; find_kctl_name(codec, name, idx); idx++)
2487 ;
2488}
2489
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002490static int get_out_jack_num_items(struct hda_codec *codec, hda_nid_t pin)
2491{
2492 struct hda_gen_spec *spec = codec->spec;
Takashi Iwaif811c3c2013-03-07 18:32:59 +01002493 if (spec->add_jack_modes) {
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002494 unsigned int pincap = snd_hda_query_pin_caps(codec, pin);
2495 if ((pincap & AC_PINCAP_OUT) && (pincap & AC_PINCAP_HP_DRV))
2496 return 2;
2497 }
2498 return 1;
2499}
2500
Takashi Iwai978e77e2013-01-10 16:57:58 +01002501static int create_out_jack_modes(struct hda_codec *codec, int num_pins,
2502 hda_nid_t *pins)
2503{
2504 struct hda_gen_spec *spec = codec->spec;
2505 int i;
2506
2507 for (i = 0; i < num_pins; i++) {
2508 hda_nid_t pin = pins[i];
Takashi Iwaiced4cef2013-11-26 08:33:45 +01002509 if (pin == spec->hp_mic_pin)
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002510 continue;
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002511 if (get_out_jack_num_items(codec, pin) > 1) {
Takashi Iwai978e77e2013-01-10 16:57:58 +01002512 struct snd_kcontrol_new *knew;
Takashi Iwai975cc022013-06-28 11:56:49 +02002513 char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
Takashi Iwai978e77e2013-01-10 16:57:58 +01002514 get_jack_mode_name(codec, pin, name, sizeof(name));
2515 knew = snd_hda_gen_add_kctl(spec, name,
2516 &out_jack_mode_enum);
2517 if (!knew)
2518 return -ENOMEM;
2519 knew->private_value = pin;
2520 }
2521 }
2522
2523 return 0;
2524}
2525
Takashi Iwai294765582013-01-17 09:52:11 +01002526/*
2527 * input jack mode
2528 */
2529
2530/* from AC_PINCTL_VREF_HIZ to AC_PINCTL_VREF_100 */
2531#define NUM_VREFS 6
2532
2533static const char * const vref_texts[NUM_VREFS] = {
2534 "Line In", "Mic 50pc Bias", "Mic 0V Bias",
2535 "", "Mic 80pc Bias", "Mic 100pc Bias"
2536};
2537
2538static unsigned int get_vref_caps(struct hda_codec *codec, hda_nid_t pin)
2539{
2540 unsigned int pincap;
2541
2542 pincap = snd_hda_query_pin_caps(codec, pin);
2543 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
2544 /* filter out unusual vrefs */
2545 pincap &= ~(AC_PINCAP_VREF_GRD | AC_PINCAP_VREF_100);
2546 return pincap;
2547}
2548
2549/* convert from the enum item index to the vref ctl index (0=HIZ, 1=50%...) */
2550static int get_vref_idx(unsigned int vref_caps, unsigned int item_idx)
2551{
2552 unsigned int i, n = 0;
2553
2554 for (i = 0; i < NUM_VREFS; i++) {
2555 if (vref_caps & (1 << i)) {
2556 if (n == item_idx)
2557 return i;
2558 n++;
2559 }
2560 }
2561 return 0;
2562}
2563
2564/* convert back from the vref ctl index to the enum item index */
2565static int cvt_from_vref_idx(unsigned int vref_caps, unsigned int idx)
2566{
2567 unsigned int i, n = 0;
2568
2569 for (i = 0; i < NUM_VREFS; i++) {
2570 if (i == idx)
2571 return n;
2572 if (vref_caps & (1 << i))
2573 n++;
2574 }
2575 return 0;
2576}
2577
2578static int in_jack_mode_info(struct snd_kcontrol *kcontrol,
2579 struct snd_ctl_elem_info *uinfo)
2580{
2581 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2582 hda_nid_t nid = kcontrol->private_value;
2583 unsigned int vref_caps = get_vref_caps(codec, nid);
2584
2585 snd_hda_enum_helper_info(kcontrol, uinfo, hweight32(vref_caps),
2586 vref_texts);
2587 /* set the right text */
2588 strcpy(uinfo->value.enumerated.name,
2589 vref_texts[get_vref_idx(vref_caps, uinfo->value.enumerated.item)]);
2590 return 0;
2591}
2592
2593static int in_jack_mode_get(struct snd_kcontrol *kcontrol,
2594 struct snd_ctl_elem_value *ucontrol)
2595{
2596 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2597 hda_nid_t nid = kcontrol->private_value;
2598 unsigned int vref_caps = get_vref_caps(codec, nid);
2599 unsigned int idx;
2600
2601 idx = snd_hda_codec_get_pin_target(codec, nid) & AC_PINCTL_VREFEN;
2602 ucontrol->value.enumerated.item[0] = cvt_from_vref_idx(vref_caps, idx);
2603 return 0;
2604}
2605
2606static int in_jack_mode_put(struct snd_kcontrol *kcontrol,
2607 struct snd_ctl_elem_value *ucontrol)
2608{
2609 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2610 hda_nid_t nid = kcontrol->private_value;
2611 unsigned int vref_caps = get_vref_caps(codec, nid);
2612 unsigned int val, idx;
2613
2614 val = snd_hda_codec_get_pin_target(codec, nid);
2615 idx = cvt_from_vref_idx(vref_caps, val & AC_PINCTL_VREFEN);
2616 if (idx == ucontrol->value.enumerated.item[0])
2617 return 0;
2618
2619 val &= ~AC_PINCTL_VREFEN;
2620 val |= get_vref_idx(vref_caps, ucontrol->value.enumerated.item[0]);
2621 snd_hda_set_pin_ctl_cache(codec, nid, val);
2622 return 1;
2623}
2624
2625static const struct snd_kcontrol_new in_jack_mode_enum = {
2626 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2627 .info = in_jack_mode_info,
2628 .get = in_jack_mode_get,
2629 .put = in_jack_mode_put,
2630};
2631
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002632static int get_in_jack_num_items(struct hda_codec *codec, hda_nid_t pin)
2633{
2634 struct hda_gen_spec *spec = codec->spec;
2635 int nitems = 0;
Takashi Iwaif811c3c2013-03-07 18:32:59 +01002636 if (spec->add_jack_modes)
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002637 nitems = hweight32(get_vref_caps(codec, pin));
2638 return nitems ? nitems : 1;
2639}
2640
Takashi Iwai294765582013-01-17 09:52:11 +01002641static int create_in_jack_mode(struct hda_codec *codec, hda_nid_t pin)
2642{
2643 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai294765582013-01-17 09:52:11 +01002644 struct snd_kcontrol_new *knew;
Takashi Iwai975cc022013-06-28 11:56:49 +02002645 char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002646 unsigned int defcfg;
2647
Takashi Iwaif811c3c2013-03-07 18:32:59 +01002648 if (pin == spec->hp_mic_pin)
2649 return 0; /* already done in create_out_jack_mode() */
Takashi Iwai294765582013-01-17 09:52:11 +01002650
2651 /* no jack mode for fixed pins */
2652 defcfg = snd_hda_codec_get_pincfg(codec, pin);
2653 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
2654 return 0;
2655
2656 /* no multiple vref caps? */
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002657 if (get_in_jack_num_items(codec, pin) <= 1)
Takashi Iwai294765582013-01-17 09:52:11 +01002658 return 0;
2659
2660 get_jack_mode_name(codec, pin, name, sizeof(name));
2661 knew = snd_hda_gen_add_kctl(spec, name, &in_jack_mode_enum);
2662 if (!knew)
2663 return -ENOMEM;
2664 knew->private_value = pin;
2665 return 0;
2666}
2667
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002668/*
2669 * HP/mic shared jack mode
2670 */
2671static int hp_mic_jack_mode_info(struct snd_kcontrol *kcontrol,
2672 struct snd_ctl_elem_info *uinfo)
2673{
2674 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2675 hda_nid_t nid = kcontrol->private_value;
2676 int out_jacks = get_out_jack_num_items(codec, nid);
2677 int in_jacks = get_in_jack_num_items(codec, nid);
2678 const char *text = NULL;
2679 int idx;
2680
2681 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2682 uinfo->count = 1;
2683 uinfo->value.enumerated.items = out_jacks + in_jacks;
2684 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2685 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
2686 idx = uinfo->value.enumerated.item;
2687 if (idx < out_jacks) {
2688 if (out_jacks > 1)
2689 text = out_jack_texts[idx];
2690 else
2691 text = "Headphone Out";
2692 } else {
2693 idx -= out_jacks;
2694 if (in_jacks > 1) {
2695 unsigned int vref_caps = get_vref_caps(codec, nid);
2696 text = vref_texts[get_vref_idx(vref_caps, idx)];
2697 } else
2698 text = "Mic In";
2699 }
2700
2701 strcpy(uinfo->value.enumerated.name, text);
2702 return 0;
2703}
2704
2705static int get_cur_hp_mic_jack_mode(struct hda_codec *codec, hda_nid_t nid)
2706{
2707 int out_jacks = get_out_jack_num_items(codec, nid);
2708 int in_jacks = get_in_jack_num_items(codec, nid);
2709 unsigned int val = snd_hda_codec_get_pin_target(codec, nid);
2710 int idx = 0;
2711
2712 if (val & PIN_OUT) {
2713 if (out_jacks > 1 && val == PIN_HP)
2714 idx = 1;
2715 } else if (val & PIN_IN) {
2716 idx = out_jacks;
2717 if (in_jacks > 1) {
2718 unsigned int vref_caps = get_vref_caps(codec, nid);
2719 val &= AC_PINCTL_VREFEN;
2720 idx += cvt_from_vref_idx(vref_caps, val);
2721 }
2722 }
2723 return idx;
2724}
2725
2726static int hp_mic_jack_mode_get(struct snd_kcontrol *kcontrol,
2727 struct snd_ctl_elem_value *ucontrol)
2728{
2729 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2730 hda_nid_t nid = kcontrol->private_value;
2731 ucontrol->value.enumerated.item[0] =
2732 get_cur_hp_mic_jack_mode(codec, nid);
2733 return 0;
2734}
2735
2736static int hp_mic_jack_mode_put(struct snd_kcontrol *kcontrol,
2737 struct snd_ctl_elem_value *ucontrol)
2738{
2739 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2740 hda_nid_t nid = kcontrol->private_value;
2741 int out_jacks = get_out_jack_num_items(codec, nid);
2742 int in_jacks = get_in_jack_num_items(codec, nid);
2743 unsigned int val, oldval, idx;
2744
2745 oldval = get_cur_hp_mic_jack_mode(codec, nid);
2746 idx = ucontrol->value.enumerated.item[0];
2747 if (oldval == idx)
2748 return 0;
2749
2750 if (idx < out_jacks) {
2751 if (out_jacks > 1)
2752 val = idx ? PIN_HP : PIN_OUT;
2753 else
2754 val = PIN_HP;
2755 } else {
2756 idx -= out_jacks;
2757 if (in_jacks > 1) {
2758 unsigned int vref_caps = get_vref_caps(codec, nid);
2759 val = snd_hda_codec_get_pin_target(codec, nid);
Takashi Iwai3f550e32013-03-07 18:30:27 +01002760 val &= ~(AC_PINCTL_VREFEN | PIN_HP);
2761 val |= get_vref_idx(vref_caps, idx) | PIN_IN;
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002762 } else
2763 val = snd_hda_get_default_vref(codec, nid);
2764 }
2765 snd_hda_set_pin_ctl_cache(codec, nid, val);
Takashi Iwai963afde2013-05-31 15:20:31 +02002766 call_hp_automute(codec, NULL);
Takashi Iwai8ba955c2013-03-07 18:40:58 +01002767
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002768 return 1;
2769}
2770
2771static const struct snd_kcontrol_new hp_mic_jack_mode_enum = {
2772 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2773 .info = hp_mic_jack_mode_info,
2774 .get = hp_mic_jack_mode_get,
2775 .put = hp_mic_jack_mode_put,
2776};
2777
2778static int create_hp_mic_jack_mode(struct hda_codec *codec, hda_nid_t pin)
2779{
2780 struct hda_gen_spec *spec = codec->spec;
2781 struct snd_kcontrol_new *knew;
2782
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002783 knew = snd_hda_gen_add_kctl(spec, "Headphone Mic Jack Mode",
2784 &hp_mic_jack_mode_enum);
2785 if (!knew)
2786 return -ENOMEM;
2787 knew->private_value = pin;
Takashi Iwai8ba955c2013-03-07 18:40:58 +01002788 spec->hp_mic_jack_modes = 1;
Takashi Iwai5f171ba2013-02-19 18:14:54 +01002789 return 0;
2790}
Takashi Iwai352f7f92012-12-19 12:52:06 +01002791
2792/*
2793 * Parse input paths
2794 */
2795
Takashi Iwai352f7f92012-12-19 12:52:06 +01002796/* add the powersave loopback-list entry */
Takashi Iwai0186f4f2013-02-07 10:45:11 +01002797static int add_loopback_list(struct hda_gen_spec *spec, hda_nid_t mix, int idx)
Takashi Iwai352f7f92012-12-19 12:52:06 +01002798{
2799 struct hda_amp_list *list;
2800
Takashi Iwai0186f4f2013-02-07 10:45:11 +01002801 list = snd_array_new(&spec->loopback_list);
2802 if (!list)
2803 return -ENOMEM;
Takashi Iwai352f7f92012-12-19 12:52:06 +01002804 list->nid = mix;
2805 list->dir = HDA_INPUT;
2806 list->idx = idx;
Takashi Iwai0186f4f2013-02-07 10:45:11 +01002807 spec->loopback.amplist = spec->loopback_list.list;
2808 return 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002809}
Takashi Iwaicb53c622007-08-10 17:21:45 +02002810
Takashi Iwai352f7f92012-12-19 12:52:06 +01002811/* create input playback/capture controls for the given pin */
Takashi Iwai196c17662013-01-04 15:01:40 +01002812static int new_analog_input(struct hda_codec *codec, int input_idx,
2813 hda_nid_t pin, const char *ctlname, int ctlidx,
Takashi Iwai352f7f92012-12-19 12:52:06 +01002814 hda_nid_t mix_nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815{
Takashi Iwai352f7f92012-12-19 12:52:06 +01002816 struct hda_gen_spec *spec = codec->spec;
2817 struct nid_path *path;
2818 unsigned int val;
2819 int err, idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
Takashi Iwai352f7f92012-12-19 12:52:06 +01002821 if (!nid_has_volume(codec, mix_nid, HDA_INPUT) &&
2822 !nid_has_mute(codec, mix_nid, HDA_INPUT))
2823 return 0; /* no need for analog loopback */
2824
Takashi Iwai3ca529d2013-01-07 17:25:08 +01002825 path = snd_hda_add_new_path(codec, pin, mix_nid, 0);
Takashi Iwai352f7f92012-12-19 12:52:06 +01002826 if (!path)
2827 return -EINVAL;
Takashi Iwai0c8c0f52012-12-20 17:54:22 +01002828 print_nid_path("loopback", path);
Takashi Iwai196c17662013-01-04 15:01:40 +01002829 spec->loopback_paths[input_idx] = snd_hda_get_path_idx(codec, path);
Takashi Iwai352f7f92012-12-19 12:52:06 +01002830
2831 idx = path->idx[path->depth - 1];
2832 if (nid_has_volume(codec, mix_nid, HDA_INPUT)) {
2833 val = HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT);
2834 err = __add_pb_vol_ctrl(spec, HDA_CTL_WIDGET_VOL, ctlname, ctlidx, val);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002835 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 return err;
Takashi Iwai352f7f92012-12-19 12:52:06 +01002837 path->ctls[NID_PATH_VOL_CTL] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 }
2839
Takashi Iwai352f7f92012-12-19 12:52:06 +01002840 if (nid_has_mute(codec, mix_nid, HDA_INPUT)) {
2841 val = HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT);
2842 err = __add_pb_sw_ctrl(spec, HDA_CTL_WIDGET_MUTE, ctlname, ctlidx, val);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002843 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 return err;
Takashi Iwai352f7f92012-12-19 12:52:06 +01002845 path->ctls[NID_PATH_MUTE_CTL] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 }
2847
Takashi Iwai352f7f92012-12-19 12:52:06 +01002848 path->active = true;
Takashi Iwai0186f4f2013-02-07 10:45:11 +01002849 err = add_loopback_list(spec, mix_nid, idx);
2850 if (err < 0)
2851 return err;
Takashi Iwaie4a395e2013-01-23 17:00:31 +01002852
2853 if (spec->mixer_nid != spec->mixer_merge_nid &&
2854 !spec->loopback_merge_path) {
2855 path = snd_hda_add_new_path(codec, spec->mixer_nid,
2856 spec->mixer_merge_nid, 0);
2857 if (path) {
2858 print_nid_path("loopback-merge", path);
2859 path->active = true;
2860 spec->loopback_merge_path =
2861 snd_hda_get_path_idx(codec, path);
2862 }
2863 }
2864
Takashi Iwai352f7f92012-12-19 12:52:06 +01002865 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866}
2867
Takashi Iwai352f7f92012-12-19 12:52:06 +01002868static int is_input_pin(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869{
Takashi Iwai352f7f92012-12-19 12:52:06 +01002870 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2871 return (pincap & AC_PINCAP_IN) != 0;
2872}
2873
2874/* Parse the codec tree and retrieve ADCs */
2875static int fill_adc_nids(struct hda_codec *codec)
2876{
2877 struct hda_gen_spec *spec = codec->spec;
2878 hda_nid_t nid;
2879 hda_nid_t *adc_nids = spec->adc_nids;
2880 int max_nums = ARRAY_SIZE(spec->adc_nids);
2881 int i, nums = 0;
2882
2883 nid = codec->start_nid;
2884 for (i = 0; i < codec->num_nodes; i++, nid++) {
2885 unsigned int caps = get_wcaps(codec, nid);
2886 int type = get_wcaps_type(caps);
2887
2888 if (type != AC_WID_AUD_IN || (caps & AC_WCAP_DIGITAL))
2889 continue;
2890 adc_nids[nums] = nid;
2891 if (++nums >= max_nums)
2892 break;
2893 }
2894 spec->num_adc_nids = nums;
Takashi Iwai0ffd5342013-01-17 15:53:29 +01002895
2896 /* copy the detected ADCs to all_adcs[] */
2897 spec->num_all_adcs = nums;
2898 memcpy(spec->all_adcs, spec->adc_nids, nums * sizeof(hda_nid_t));
2899
Takashi Iwai352f7f92012-12-19 12:52:06 +01002900 return nums;
2901}
2902
2903/* filter out invalid adc_nids that don't give all active input pins;
2904 * if needed, check whether dynamic ADC-switching is available
2905 */
2906static int check_dyn_adc_switch(struct hda_codec *codec)
2907{
2908 struct hda_gen_spec *spec = codec->spec;
2909 struct hda_input_mux *imux = &spec->input_mux;
Takashi Iwai3a65bcd2013-01-09 09:06:18 +01002910 unsigned int ok_bits;
Takashi Iwai352f7f92012-12-19 12:52:06 +01002911 int i, n, nums;
Takashi Iwai352f7f92012-12-19 12:52:06 +01002912
Takashi Iwai352f7f92012-12-19 12:52:06 +01002913 nums = 0;
Takashi Iwai3a65bcd2013-01-09 09:06:18 +01002914 ok_bits = 0;
Takashi Iwai352f7f92012-12-19 12:52:06 +01002915 for (n = 0; n < spec->num_adc_nids; n++) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01002916 for (i = 0; i < imux->num_items; i++) {
Takashi Iwai3a65bcd2013-01-09 09:06:18 +01002917 if (!spec->input_paths[i][n])
Takashi Iwai352f7f92012-12-19 12:52:06 +01002918 break;
2919 }
Takashi Iwai3a65bcd2013-01-09 09:06:18 +01002920 if (i >= imux->num_items) {
2921 ok_bits |= (1 << n);
2922 nums++;
2923 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01002924 }
2925
Takashi Iwai3a65bcd2013-01-09 09:06:18 +01002926 if (!ok_bits) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01002927 /* check whether ADC-switch is possible */
2928 for (i = 0; i < imux->num_items; i++) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01002929 for (n = 0; n < spec->num_adc_nids; n++) {
Takashi Iwai3a65bcd2013-01-09 09:06:18 +01002930 if (spec->input_paths[i][n]) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01002931 spec->dyn_adc_idx[i] = n;
2932 break;
2933 }
2934 }
2935 }
2936
2937 snd_printdd("hda-codec: enabling ADC switching\n");
2938 spec->dyn_adc_switch = 1;
2939 } else if (nums != spec->num_adc_nids) {
Takashi Iwai3a65bcd2013-01-09 09:06:18 +01002940 /* shrink the invalid adcs and input paths */
2941 nums = 0;
2942 for (n = 0; n < spec->num_adc_nids; n++) {
2943 if (!(ok_bits & (1 << n)))
2944 continue;
2945 if (n != nums) {
2946 spec->adc_nids[nums] = spec->adc_nids[n];
Takashi Iwai980428c2013-01-09 09:28:20 +01002947 for (i = 0; i < imux->num_items; i++) {
2948 invalidate_nid_path(codec,
2949 spec->input_paths[i][nums]);
Takashi Iwai3a65bcd2013-01-09 09:06:18 +01002950 spec->input_paths[i][nums] =
2951 spec->input_paths[i][n];
Takashi Iwai980428c2013-01-09 09:28:20 +01002952 }
Takashi Iwai3a65bcd2013-01-09 09:06:18 +01002953 }
2954 nums++;
2955 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01002956 spec->num_adc_nids = nums;
2957 }
2958
Takashi Iwai967303d2013-02-19 17:12:42 +01002959 if (imux->num_items == 1 ||
2960 (imux->num_items == 2 && spec->hp_mic)) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01002961 snd_printdd("hda-codec: reducing to a single ADC\n");
2962 spec->num_adc_nids = 1; /* reduce to a single ADC */
2963 }
2964
2965 /* single index for individual volumes ctls */
2966 if (!spec->dyn_adc_switch && spec->multi_cap_vol)
2967 spec->num_adc_nids = 1;
2968
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 return 0;
2970}
2971
Takashi Iwaif3fc0b02013-01-09 09:14:23 +01002972/* parse capture source paths from the given pin and create imux items */
2973static int parse_capture_source(struct hda_codec *codec, hda_nid_t pin,
Takashi Iwai9dba2052013-01-18 10:01:15 +01002974 int cfg_idx, int num_adcs,
2975 const char *label, int anchor)
Takashi Iwaif3fc0b02013-01-09 09:14:23 +01002976{
2977 struct hda_gen_spec *spec = codec->spec;
2978 struct hda_input_mux *imux = &spec->input_mux;
2979 int imux_idx = imux->num_items;
2980 bool imux_added = false;
2981 int c;
2982
2983 for (c = 0; c < num_adcs; c++) {
2984 struct nid_path *path;
2985 hda_nid_t adc = spec->adc_nids[c];
2986
2987 if (!is_reachable_path(codec, pin, adc))
2988 continue;
2989 path = snd_hda_add_new_path(codec, pin, adc, anchor);
2990 if (!path)
2991 continue;
2992 print_nid_path("input", path);
2993 spec->input_paths[imux_idx][c] =
2994 snd_hda_get_path_idx(codec, path);
2995
2996 if (!imux_added) {
Takashi Iwai967303d2013-02-19 17:12:42 +01002997 if (spec->hp_mic_pin == pin)
2998 spec->hp_mic_mux_idx = imux->num_items;
Takashi Iwaif3fc0b02013-01-09 09:14:23 +01002999 spec->imux_pins[imux->num_items] = pin;
Takashi Iwai9dba2052013-01-18 10:01:15 +01003000 snd_hda_add_imux_item(imux, label, cfg_idx, NULL);
Takashi Iwaif3fc0b02013-01-09 09:14:23 +01003001 imux_added = true;
3002 }
3003 }
3004
3005 return 0;
3006}
3007
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008/*
Takashi Iwai352f7f92012-12-19 12:52:06 +01003009 * create playback/capture controls for input pins
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 */
Takashi Iwai9dba2052013-01-18 10:01:15 +01003011
Takashi Iwaic9700422013-01-18 10:17:30 +01003012/* fill the label for each input at first */
3013static int fill_input_pin_labels(struct hda_codec *codec)
3014{
3015 struct hda_gen_spec *spec = codec->spec;
3016 const struct auto_pin_cfg *cfg = &spec->autocfg;
3017 int i;
3018
3019 for (i = 0; i < cfg->num_inputs; i++) {
3020 hda_nid_t pin = cfg->inputs[i].pin;
3021 const char *label;
3022 int j, idx;
3023
3024 if (!is_input_pin(codec, pin))
3025 continue;
3026
3027 label = hda_get_autocfg_input_label(codec, cfg, i);
3028 idx = 0;
David Henningsson8e8db7f2013-01-18 15:43:02 +01003029 for (j = i - 1; j >= 0; j--) {
Takashi Iwaic9700422013-01-18 10:17:30 +01003030 if (spec->input_labels[j] &&
3031 !strcmp(spec->input_labels[j], label)) {
3032 idx = spec->input_label_idxs[j] + 1;
3033 break;
3034 }
3035 }
3036
3037 spec->input_labels[i] = label;
3038 spec->input_label_idxs[i] = idx;
3039 }
3040
3041 return 0;
3042}
3043
Takashi Iwai9dba2052013-01-18 10:01:15 +01003044#define CFG_IDX_MIX 99 /* a dummy cfg->input idx for stereo mix */
3045
Takashi Iwai352f7f92012-12-19 12:52:06 +01003046static int create_input_ctls(struct hda_codec *codec)
Takashi Iwaia7da6ce2006-09-06 14:03:14 +02003047{
Takashi Iwai352f7f92012-12-19 12:52:06 +01003048 struct hda_gen_spec *spec = codec->spec;
3049 const struct auto_pin_cfg *cfg = &spec->autocfg;
3050 hda_nid_t mixer = spec->mixer_nid;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003051 int num_adcs;
Takashi Iwaic9700422013-01-18 10:17:30 +01003052 int i, err;
Takashi Iwai2c12c302013-01-10 09:33:29 +01003053 unsigned int val;
Takashi Iwaia7da6ce2006-09-06 14:03:14 +02003054
Takashi Iwai352f7f92012-12-19 12:52:06 +01003055 num_adcs = fill_adc_nids(codec);
3056 if (num_adcs < 0)
3057 return 0;
Takashi Iwaia7da6ce2006-09-06 14:03:14 +02003058
Takashi Iwaic9700422013-01-18 10:17:30 +01003059 err = fill_input_pin_labels(codec);
3060 if (err < 0)
3061 return err;
3062
Takashi Iwai352f7f92012-12-19 12:52:06 +01003063 for (i = 0; i < cfg->num_inputs; i++) {
3064 hda_nid_t pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
Takashi Iwai352f7f92012-12-19 12:52:06 +01003066 pin = cfg->inputs[i].pin;
3067 if (!is_input_pin(codec, pin))
3068 continue;
3069
Takashi Iwai2c12c302013-01-10 09:33:29 +01003070 val = PIN_IN;
3071 if (cfg->inputs[i].type == AUTO_PIN_MIC)
3072 val |= snd_hda_get_default_vref(codec, pin);
Takashi Iwai93c9d8a2013-03-11 09:48:43 +01003073 if (pin != spec->hp_mic_pin)
3074 set_pin_target(codec, pin, val, false);
Takashi Iwai2c12c302013-01-10 09:33:29 +01003075
Takashi Iwai352f7f92012-12-19 12:52:06 +01003076 if (mixer) {
3077 if (is_reachable_path(codec, pin, mixer)) {
Takashi Iwai196c17662013-01-04 15:01:40 +01003078 err = new_analog_input(codec, i, pin,
Takashi Iwaic9700422013-01-18 10:17:30 +01003079 spec->input_labels[i],
3080 spec->input_label_idxs[i],
3081 mixer);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003082 if (err < 0)
3083 return err;
3084 }
3085 }
3086
Takashi Iwaic9700422013-01-18 10:17:30 +01003087 err = parse_capture_source(codec, pin, i, num_adcs,
3088 spec->input_labels[i], -mixer);
Takashi Iwaif3fc0b02013-01-09 09:14:23 +01003089 if (err < 0)
3090 return err;
Takashi Iwai294765582013-01-17 09:52:11 +01003091
Takashi Iwaif811c3c2013-03-07 18:32:59 +01003092 if (spec->add_jack_modes) {
Takashi Iwai294765582013-01-17 09:52:11 +01003093 err = create_in_jack_mode(codec, pin);
3094 if (err < 0)
3095 return err;
3096 }
Takashi Iwaif3fc0b02013-01-09 09:14:23 +01003097 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01003098
Takashi Iwaif3fc0b02013-01-09 09:14:23 +01003099 if (mixer && spec->add_stereo_mix_input) {
Takashi Iwai9dba2052013-01-18 10:01:15 +01003100 err = parse_capture_source(codec, mixer, CFG_IDX_MIX, num_adcs,
Takashi Iwaif3fc0b02013-01-09 09:14:23 +01003101 "Stereo Mix", 0);
3102 if (err < 0)
3103 return err;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003104 }
3105
3106 return 0;
3107}
3108
3109
3110/*
3111 * input source mux
3112 */
3113
Takashi Iwaic697b712013-01-07 17:09:26 +01003114/* get the input path specified by the given adc and imux indices */
3115static struct nid_path *get_input_path(struct hda_codec *codec, int adc_idx, int imux_idx)
Takashi Iwai352f7f92012-12-19 12:52:06 +01003116{
3117 struct hda_gen_spec *spec = codec->spec;
David Henningssonb56fa1e2013-01-16 11:45:35 +01003118 if (imux_idx < 0 || imux_idx >= HDA_MAX_NUM_INPUTS) {
3119 snd_BUG();
3120 return NULL;
3121 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01003122 if (spec->dyn_adc_switch)
3123 adc_idx = spec->dyn_adc_idx[imux_idx];
David Henningssond3d982f2013-01-18 15:43:01 +01003124 if (adc_idx < 0 || adc_idx >= AUTO_CFG_MAX_INS) {
David Henningssonb56fa1e2013-01-16 11:45:35 +01003125 snd_BUG();
3126 return NULL;
3127 }
Takashi Iwaic697b712013-01-07 17:09:26 +01003128 return snd_hda_get_path_from_idx(codec, spec->input_paths[imux_idx][adc_idx]);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003129}
3130
3131static int mux_select(struct hda_codec *codec, unsigned int adc_idx,
3132 unsigned int idx);
3133
3134static int mux_enum_info(struct snd_kcontrol *kcontrol,
3135 struct snd_ctl_elem_info *uinfo)
3136{
3137 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3138 struct hda_gen_spec *spec = codec->spec;
3139 return snd_hda_input_mux_info(&spec->input_mux, uinfo);
3140}
3141
3142static int mux_enum_get(struct snd_kcontrol *kcontrol,
3143 struct snd_ctl_elem_value *ucontrol)
3144{
3145 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3146 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai2a8d5392013-01-18 16:23:25 +01003147 /* the ctls are created at once with multiple counts */
3148 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003149
3150 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
3151 return 0;
3152}
3153
3154static int mux_enum_put(struct snd_kcontrol *kcontrol,
3155 struct snd_ctl_elem_value *ucontrol)
3156{
3157 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Takashi Iwai2a8d5392013-01-18 16:23:25 +01003158 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003159 return mux_select(codec, adc_idx,
3160 ucontrol->value.enumerated.item[0]);
3161}
3162
Takashi Iwai352f7f92012-12-19 12:52:06 +01003163static const struct snd_kcontrol_new cap_src_temp = {
3164 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3165 .name = "Input Source",
3166 .info = mux_enum_info,
3167 .get = mux_enum_get,
3168 .put = mux_enum_put,
3169};
3170
Takashi Iwai47d46ab2012-12-20 11:48:54 +01003171/*
3172 * capture volume and capture switch ctls
3173 */
3174
Takashi Iwai352f7f92012-12-19 12:52:06 +01003175typedef int (*put_call_t)(struct snd_kcontrol *kcontrol,
3176 struct snd_ctl_elem_value *ucontrol);
3177
Takashi Iwai47d46ab2012-12-20 11:48:54 +01003178/* call the given amp update function for all amps in the imux list at once */
Takashi Iwai352f7f92012-12-19 12:52:06 +01003179static int cap_put_caller(struct snd_kcontrol *kcontrol,
3180 struct snd_ctl_elem_value *ucontrol,
3181 put_call_t func, int type)
3182{
3183 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3184 struct hda_gen_spec *spec = codec->spec;
3185 const struct hda_input_mux *imux;
3186 struct nid_path *path;
3187 int i, adc_idx, err = 0;
3188
3189 imux = &spec->input_mux;
David Henningssona053d1e2013-01-16 11:45:36 +01003190 adc_idx = kcontrol->id.index;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003191 mutex_lock(&codec->control_mutex);
Takashi Iwai47d46ab2012-12-20 11:48:54 +01003192 /* we use the cache-only update at first since multiple input paths
3193 * may shared the same amp; by updating only caches, the redundant
3194 * writes to hardware can be reduced.
3195 */
Takashi Iwai352f7f92012-12-19 12:52:06 +01003196 codec->cached_write = 1;
3197 for (i = 0; i < imux->num_items; i++) {
Takashi Iwaic697b712013-01-07 17:09:26 +01003198 path = get_input_path(codec, adc_idx, i);
3199 if (!path || !path->ctls[type])
Takashi Iwai352f7f92012-12-19 12:52:06 +01003200 continue;
3201 kcontrol->private_value = path->ctls[type];
3202 err = func(kcontrol, ucontrol);
3203 if (err < 0)
3204 goto error;
3205 }
3206 error:
3207 codec->cached_write = 0;
3208 mutex_unlock(&codec->control_mutex);
Takashi Iwaidc870f32013-01-22 15:24:30 +01003209 snd_hda_codec_flush_cache(codec); /* flush the updates */
Takashi Iwai352f7f92012-12-19 12:52:06 +01003210 if (err >= 0 && spec->cap_sync_hook)
Takashi Iwaia90229e2013-01-18 14:10:00 +01003211 spec->cap_sync_hook(codec, ucontrol);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003212 return err;
3213}
3214
3215/* capture volume ctl callbacks */
3216#define cap_vol_info snd_hda_mixer_amp_volume_info
3217#define cap_vol_get snd_hda_mixer_amp_volume_get
3218#define cap_vol_tlv snd_hda_mixer_amp_tlv
3219
3220static int cap_vol_put(struct snd_kcontrol *kcontrol,
3221 struct snd_ctl_elem_value *ucontrol)
3222{
3223 return cap_put_caller(kcontrol, ucontrol,
3224 snd_hda_mixer_amp_volume_put,
3225 NID_PATH_VOL_CTL);
3226}
3227
3228static const struct snd_kcontrol_new cap_vol_temp = {
3229 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3230 .name = "Capture Volume",
3231 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE |
3232 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
3233 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK),
3234 .info = cap_vol_info,
3235 .get = cap_vol_get,
3236 .put = cap_vol_put,
3237 .tlv = { .c = cap_vol_tlv },
3238};
3239
3240/* capture switch ctl callbacks */
3241#define cap_sw_info snd_ctl_boolean_stereo_info
3242#define cap_sw_get snd_hda_mixer_amp_switch_get
3243
3244static int cap_sw_put(struct snd_kcontrol *kcontrol,
3245 struct snd_ctl_elem_value *ucontrol)
3246{
Takashi Iwaia90229e2013-01-18 14:10:00 +01003247 return cap_put_caller(kcontrol, ucontrol,
Takashi Iwai352f7f92012-12-19 12:52:06 +01003248 snd_hda_mixer_amp_switch_put,
3249 NID_PATH_MUTE_CTL);
3250}
3251
3252static const struct snd_kcontrol_new cap_sw_temp = {
3253 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3254 .name = "Capture Switch",
3255 .info = cap_sw_info,
3256 .get = cap_sw_get,
3257 .put = cap_sw_put,
3258};
3259
3260static int parse_capvol_in_path(struct hda_codec *codec, struct nid_path *path)
3261{
3262 hda_nid_t nid;
3263 int i, depth;
3264
3265 path->ctls[NID_PATH_VOL_CTL] = path->ctls[NID_PATH_MUTE_CTL] = 0;
3266 for (depth = 0; depth < 3; depth++) {
3267 if (depth >= path->depth)
3268 return -EINVAL;
3269 i = path->depth - depth - 1;
3270 nid = path->path[i];
3271 if (!path->ctls[NID_PATH_VOL_CTL]) {
3272 if (nid_has_volume(codec, nid, HDA_OUTPUT))
3273 path->ctls[NID_PATH_VOL_CTL] =
3274 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3275 else if (nid_has_volume(codec, nid, HDA_INPUT)) {
3276 int idx = path->idx[i];
3277 if (!depth && codec->single_adc_amp)
3278 idx = 0;
3279 path->ctls[NID_PATH_VOL_CTL] =
3280 HDA_COMPOSE_AMP_VAL(nid, 3, idx, HDA_INPUT);
3281 }
3282 }
3283 if (!path->ctls[NID_PATH_MUTE_CTL]) {
3284 if (nid_has_mute(codec, nid, HDA_OUTPUT))
3285 path->ctls[NID_PATH_MUTE_CTL] =
3286 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3287 else if (nid_has_mute(codec, nid, HDA_INPUT)) {
3288 int idx = path->idx[i];
3289 if (!depth && codec->single_adc_amp)
3290 idx = 0;
3291 path->ctls[NID_PATH_MUTE_CTL] =
3292 HDA_COMPOSE_AMP_VAL(nid, 3, idx, HDA_INPUT);
3293 }
3294 }
Takashi Iwai97ec5582006-03-21 11:29:07 +01003295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 return 0;
3297}
3298
Takashi Iwai352f7f92012-12-19 12:52:06 +01003299static bool is_inv_dmic_pin(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300{
Takashi Iwai352f7f92012-12-19 12:52:06 +01003301 struct hda_gen_spec *spec = codec->spec;
3302 struct auto_pin_cfg *cfg = &spec->autocfg;
3303 unsigned int val;
3304 int i;
3305
3306 if (!spec->inv_dmic_split)
3307 return false;
3308 for (i = 0; i < cfg->num_inputs; i++) {
3309 if (cfg->inputs[i].pin != nid)
3310 continue;
3311 if (cfg->inputs[i].type != AUTO_PIN_MIC)
3312 return false;
3313 val = snd_hda_codec_get_pincfg(codec, nid);
3314 return snd_hda_get_input_pin_attr(val) == INPUT_PIN_ATTR_INT;
3315 }
3316 return false;
3317}
3318
Takashi Iwaia90229e2013-01-18 14:10:00 +01003319/* capture switch put callback for a single control with hook call */
Takashi Iwaia35bd1e2013-01-18 14:01:14 +01003320static int cap_single_sw_put(struct snd_kcontrol *kcontrol,
3321 struct snd_ctl_elem_value *ucontrol)
3322{
3323 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3324 struct hda_gen_spec *spec = codec->spec;
3325 int ret;
3326
3327 ret = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
3328 if (ret < 0)
3329 return ret;
3330
Takashi Iwaia90229e2013-01-18 14:10:00 +01003331 if (spec->cap_sync_hook)
3332 spec->cap_sync_hook(codec, ucontrol);
Takashi Iwaia35bd1e2013-01-18 14:01:14 +01003333
3334 return ret;
3335}
3336
Takashi Iwai352f7f92012-12-19 12:52:06 +01003337static int add_single_cap_ctl(struct hda_codec *codec, const char *label,
3338 int idx, bool is_switch, unsigned int ctl,
3339 bool inv_dmic)
3340{
3341 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai975cc022013-06-28 11:56:49 +02003342 char tmpname[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
Takashi Iwai352f7f92012-12-19 12:52:06 +01003343 int type = is_switch ? HDA_CTL_WIDGET_MUTE : HDA_CTL_WIDGET_VOL;
3344 const char *sfx = is_switch ? "Switch" : "Volume";
3345 unsigned int chs = inv_dmic ? 1 : 3;
Takashi Iwaia35bd1e2013-01-18 14:01:14 +01003346 struct snd_kcontrol_new *knew;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003347
3348 if (!ctl)
3349 return 0;
3350
3351 if (label)
3352 snprintf(tmpname, sizeof(tmpname),
3353 "%s Capture %s", label, sfx);
3354 else
3355 snprintf(tmpname, sizeof(tmpname),
3356 "Capture %s", sfx);
Takashi Iwaia35bd1e2013-01-18 14:01:14 +01003357 knew = add_control(spec, type, tmpname, idx,
3358 amp_val_replace_channels(ctl, chs));
3359 if (!knew)
3360 return -ENOMEM;
Takashi Iwaia90229e2013-01-18 14:10:00 +01003361 if (is_switch)
Takashi Iwaia35bd1e2013-01-18 14:01:14 +01003362 knew->put = cap_single_sw_put;
3363 if (!inv_dmic)
3364 return 0;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003365
3366 /* Make independent right kcontrol */
3367 if (label)
3368 snprintf(tmpname, sizeof(tmpname),
3369 "Inverted %s Capture %s", label, sfx);
3370 else
3371 snprintf(tmpname, sizeof(tmpname),
3372 "Inverted Capture %s", sfx);
Takashi Iwaia35bd1e2013-01-18 14:01:14 +01003373 knew = add_control(spec, type, tmpname, idx,
Takashi Iwai352f7f92012-12-19 12:52:06 +01003374 amp_val_replace_channels(ctl, 2));
Takashi Iwaia35bd1e2013-01-18 14:01:14 +01003375 if (!knew)
3376 return -ENOMEM;
Takashi Iwaia90229e2013-01-18 14:10:00 +01003377 if (is_switch)
Takashi Iwaia35bd1e2013-01-18 14:01:14 +01003378 knew->put = cap_single_sw_put;
3379 return 0;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003380}
3381
3382/* create single (and simple) capture volume and switch controls */
3383static int create_single_cap_vol_ctl(struct hda_codec *codec, int idx,
3384 unsigned int vol_ctl, unsigned int sw_ctl,
3385 bool inv_dmic)
3386{
3387 int err;
3388 err = add_single_cap_ctl(codec, NULL, idx, false, vol_ctl, inv_dmic);
3389 if (err < 0)
3390 return err;
3391 err = add_single_cap_ctl(codec, NULL, idx, true, sw_ctl, inv_dmic);
3392 if (err < 0)
3393 return err;
3394 return 0;
3395}
3396
3397/* create bound capture volume and switch controls */
3398static int create_bind_cap_vol_ctl(struct hda_codec *codec, int idx,
3399 unsigned int vol_ctl, unsigned int sw_ctl)
3400{
3401 struct hda_gen_spec *spec = codec->spec;
3402 struct snd_kcontrol_new *knew;
3403
3404 if (vol_ctl) {
Takashi Iwai12c93df2012-12-19 14:38:33 +01003405 knew = snd_hda_gen_add_kctl(spec, NULL, &cap_vol_temp);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003406 if (!knew)
3407 return -ENOMEM;
3408 knew->index = idx;
3409 knew->private_value = vol_ctl;
3410 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
3411 }
3412 if (sw_ctl) {
Takashi Iwai12c93df2012-12-19 14:38:33 +01003413 knew = snd_hda_gen_add_kctl(spec, NULL, &cap_sw_temp);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003414 if (!knew)
3415 return -ENOMEM;
3416 knew->index = idx;
3417 knew->private_value = sw_ctl;
3418 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
3419 }
3420 return 0;
3421}
3422
3423/* return the vol ctl when used first in the imux list */
3424static unsigned int get_first_cap_ctl(struct hda_codec *codec, int idx, int type)
3425{
Takashi Iwai352f7f92012-12-19 12:52:06 +01003426 struct nid_path *path;
3427 unsigned int ctl;
3428 int i;
3429
Takashi Iwaic697b712013-01-07 17:09:26 +01003430 path = get_input_path(codec, 0, idx);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003431 if (!path)
3432 return 0;
3433 ctl = path->ctls[type];
3434 if (!ctl)
3435 return 0;
3436 for (i = 0; i < idx - 1; i++) {
Takashi Iwaic697b712013-01-07 17:09:26 +01003437 path = get_input_path(codec, 0, i);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003438 if (path && path->ctls[type] == ctl)
3439 return 0;
3440 }
3441 return ctl;
3442}
3443
3444/* create individual capture volume and switch controls per input */
3445static int create_multi_cap_vol_ctl(struct hda_codec *codec)
3446{
3447 struct hda_gen_spec *spec = codec->spec;
3448 struct hda_input_mux *imux = &spec->input_mux;
Takashi Iwaic9700422013-01-18 10:17:30 +01003449 int i, err, type;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003450
3451 for (i = 0; i < imux->num_items; i++) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01003452 bool inv_dmic;
Takashi Iwaic9700422013-01-18 10:17:30 +01003453 int idx;
Takashi Iwai9dba2052013-01-18 10:01:15 +01003454
Takashi Iwaic9700422013-01-18 10:17:30 +01003455 idx = imux->items[i].index;
3456 if (idx >= spec->autocfg.num_inputs)
Takashi Iwai9dba2052013-01-18 10:01:15 +01003457 continue;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003458 inv_dmic = is_inv_dmic_pin(codec, spec->imux_pins[i]);
3459
3460 for (type = 0; type < 2; type++) {
Takashi Iwaic9700422013-01-18 10:17:30 +01003461 err = add_single_cap_ctl(codec,
3462 spec->input_labels[idx],
3463 spec->input_label_idxs[idx],
3464 type,
Takashi Iwai352f7f92012-12-19 12:52:06 +01003465 get_first_cap_ctl(codec, i, type),
3466 inv_dmic);
3467 if (err < 0)
3468 return err;
3469 }
3470 }
3471 return 0;
3472}
3473
3474static int create_capture_mixers(struct hda_codec *codec)
3475{
3476 struct hda_gen_spec *spec = codec->spec;
3477 struct hda_input_mux *imux = &spec->input_mux;
3478 int i, n, nums, err;
3479
3480 if (spec->dyn_adc_switch)
3481 nums = 1;
3482 else
3483 nums = spec->num_adc_nids;
3484
3485 if (!spec->auto_mic && imux->num_items > 1) {
3486 struct snd_kcontrol_new *knew;
Takashi Iwai624d9142012-12-19 17:41:52 +01003487 const char *name;
3488 name = nums > 1 ? "Input Source" : "Capture Source";
3489 knew = snd_hda_gen_add_kctl(spec, name, &cap_src_temp);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003490 if (!knew)
3491 return -ENOMEM;
3492 knew->count = nums;
3493 }
3494
3495 for (n = 0; n < nums; n++) {
3496 bool multi = false;
David Henningsson99a55922013-01-16 15:58:44 +01003497 bool multi_cap_vol = spec->multi_cap_vol;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003498 bool inv_dmic = false;
3499 int vol, sw;
3500
3501 vol = sw = 0;
3502 for (i = 0; i < imux->num_items; i++) {
3503 struct nid_path *path;
Takashi Iwaic697b712013-01-07 17:09:26 +01003504 path = get_input_path(codec, n, i);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003505 if (!path)
3506 continue;
3507 parse_capvol_in_path(codec, path);
3508 if (!vol)
3509 vol = path->ctls[NID_PATH_VOL_CTL];
David Henningsson99a55922013-01-16 15:58:44 +01003510 else if (vol != path->ctls[NID_PATH_VOL_CTL]) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01003511 multi = true;
David Henningsson99a55922013-01-16 15:58:44 +01003512 if (!same_amp_caps(codec, vol,
3513 path->ctls[NID_PATH_VOL_CTL], HDA_INPUT))
3514 multi_cap_vol = true;
3515 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01003516 if (!sw)
3517 sw = path->ctls[NID_PATH_MUTE_CTL];
David Henningsson99a55922013-01-16 15:58:44 +01003518 else if (sw != path->ctls[NID_PATH_MUTE_CTL]) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01003519 multi = true;
David Henningsson99a55922013-01-16 15:58:44 +01003520 if (!same_amp_caps(codec, sw,
3521 path->ctls[NID_PATH_MUTE_CTL], HDA_INPUT))
3522 multi_cap_vol = true;
3523 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01003524 if (is_inv_dmic_pin(codec, spec->imux_pins[i]))
3525 inv_dmic = true;
3526 }
3527
3528 if (!multi)
3529 err = create_single_cap_vol_ctl(codec, n, vol, sw,
3530 inv_dmic);
David Henningssonccb04152013-10-14 10:16:22 +02003531 else if (!multi_cap_vol && !inv_dmic)
Takashi Iwai352f7f92012-12-19 12:52:06 +01003532 err = create_bind_cap_vol_ctl(codec, n, vol, sw);
3533 else
3534 err = create_multi_cap_vol_ctl(codec);
3535 if (err < 0)
3536 return err;
3537 }
3538
3539 return 0;
3540}
3541
3542/*
3543 * add mic boosts if needed
3544 */
Takashi Iwai6f7c83a2013-01-18 11:07:15 +01003545
3546/* check whether the given amp is feasible as a boost volume */
3547static bool check_boost_vol(struct hda_codec *codec, hda_nid_t nid,
3548 int dir, int idx)
3549{
3550 unsigned int step;
3551
3552 if (!nid_has_volume(codec, nid, dir) ||
3553 is_ctl_associated(codec, nid, dir, idx, NID_PATH_VOL_CTL) ||
3554 is_ctl_associated(codec, nid, dir, idx, NID_PATH_BOOST_CTL))
3555 return false;
3556
3557 step = (query_amp_caps(codec, nid, dir) & AC_AMPCAP_STEP_SIZE)
3558 >> AC_AMPCAP_STEP_SIZE_SHIFT;
3559 if (step < 0x20)
3560 return false;
3561 return true;
3562}
3563
3564/* look for a boost amp in a widget close to the pin */
3565static unsigned int look_for_boost_amp(struct hda_codec *codec,
3566 struct nid_path *path)
3567{
3568 unsigned int val = 0;
3569 hda_nid_t nid;
3570 int depth;
3571
3572 for (depth = 0; depth < 3; depth++) {
3573 if (depth >= path->depth - 1)
3574 break;
3575 nid = path->path[depth];
3576 if (depth && check_boost_vol(codec, nid, HDA_OUTPUT, 0)) {
3577 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3578 break;
3579 } else if (check_boost_vol(codec, nid, HDA_INPUT,
3580 path->idx[depth])) {
3581 val = HDA_COMPOSE_AMP_VAL(nid, 3, path->idx[depth],
3582 HDA_INPUT);
3583 break;
3584 }
3585 }
3586
3587 return val;
3588}
3589
Takashi Iwai352f7f92012-12-19 12:52:06 +01003590static int parse_mic_boost(struct hda_codec *codec)
3591{
3592 struct hda_gen_spec *spec = codec->spec;
3593 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai6f7c83a2013-01-18 11:07:15 +01003594 struct hda_input_mux *imux = &spec->input_mux;
Takashi Iwaia35bd1e2013-01-18 14:01:14 +01003595 int i;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003596
Takashi Iwai6f7c83a2013-01-18 11:07:15 +01003597 if (!spec->num_adc_nids)
3598 return 0;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003599
Takashi Iwai6f7c83a2013-01-18 11:07:15 +01003600 for (i = 0; i < imux->num_items; i++) {
3601 struct nid_path *path;
3602 unsigned int val;
3603 int idx;
Takashi Iwai975cc022013-06-28 11:56:49 +02003604 char boost_label[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
David Henningsson02aba552013-01-16 15:58:43 +01003605
Takashi Iwai6f7c83a2013-01-18 11:07:15 +01003606 idx = imux->items[i].index;
3607 if (idx >= imux->num_items)
3608 continue;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003609
Takashi Iwai6f7c83a2013-01-18 11:07:15 +01003610 /* check only line-in and mic pins */
Takashi Iwai1799cdd52013-01-18 14:37:16 +01003611 if (cfg->inputs[idx].type > AUTO_PIN_LINE_IN)
Takashi Iwai6f7c83a2013-01-18 11:07:15 +01003612 continue;
3613
3614 path = get_input_path(codec, 0, i);
3615 if (!path)
3616 continue;
3617
3618 val = look_for_boost_amp(codec, path);
3619 if (!val)
3620 continue;
3621
3622 /* create a boost control */
3623 snprintf(boost_label, sizeof(boost_label),
3624 "%s Boost Volume", spec->input_labels[idx]);
Takashi Iwaia35bd1e2013-01-18 14:01:14 +01003625 if (!add_control(spec, HDA_CTL_WIDGET_VOL, boost_label,
3626 spec->input_label_idxs[idx], val))
3627 return -ENOMEM;
Takashi Iwai6f7c83a2013-01-18 11:07:15 +01003628
3629 path->ctls[NID_PATH_BOOST_CTL] = val;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003630 }
3631 return 0;
3632}
3633
3634/*
3635 * parse digital I/Os and set up NIDs in BIOS auto-parse mode
3636 */
3637static void parse_digital(struct hda_codec *codec)
3638{
3639 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai0c8c0f52012-12-20 17:54:22 +01003640 struct nid_path *path;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003641 int i, nums;
Takashi Iwai2c12c302013-01-10 09:33:29 +01003642 hda_nid_t dig_nid, pin;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003643
3644 /* support multiple SPDIFs; the secondary is set up as a slave */
3645 nums = 0;
3646 for (i = 0; i < spec->autocfg.dig_outs; i++) {
Takashi Iwai2c12c302013-01-10 09:33:29 +01003647 pin = spec->autocfg.dig_out_pins[i];
Takashi Iwai352f7f92012-12-19 12:52:06 +01003648 dig_nid = look_for_dac(codec, pin, true);
3649 if (!dig_nid)
3650 continue;
Takashi Iwai3ca529d2013-01-07 17:25:08 +01003651 path = snd_hda_add_new_path(codec, dig_nid, pin, 0);
Takashi Iwai0c8c0f52012-12-20 17:54:22 +01003652 if (!path)
Takashi Iwai352f7f92012-12-19 12:52:06 +01003653 continue;
Takashi Iwai0c8c0f52012-12-20 17:54:22 +01003654 print_nid_path("digout", path);
Takashi Iwaie1284af2013-01-03 16:33:02 +01003655 path->active = true;
Takashi Iwai196c17662013-01-04 15:01:40 +01003656 spec->digout_paths[i] = snd_hda_get_path_idx(codec, path);
Takashi Iwai2c12c302013-01-10 09:33:29 +01003657 set_pin_target(codec, pin, PIN_OUT, false);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003658 if (!nums) {
3659 spec->multiout.dig_out_nid = dig_nid;
3660 spec->dig_out_type = spec->autocfg.dig_out_type[0];
3661 } else {
3662 spec->multiout.slave_dig_outs = spec->slave_dig_outs;
3663 if (nums >= ARRAY_SIZE(spec->slave_dig_outs) - 1)
3664 break;
3665 spec->slave_dig_outs[nums - 1] = dig_nid;
3666 }
3667 nums++;
3668 }
3669
3670 if (spec->autocfg.dig_in_pin) {
Takashi Iwai2c12c302013-01-10 09:33:29 +01003671 pin = spec->autocfg.dig_in_pin;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003672 dig_nid = codec->start_nid;
3673 for (i = 0; i < codec->num_nodes; i++, dig_nid++) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01003674 unsigned int wcaps = get_wcaps(codec, dig_nid);
3675 if (get_wcaps_type(wcaps) != AC_WID_AUD_IN)
3676 continue;
3677 if (!(wcaps & AC_WCAP_DIGITAL))
3678 continue;
Takashi Iwai2c12c302013-01-10 09:33:29 +01003679 path = snd_hda_add_new_path(codec, pin, dig_nid, 0);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003680 if (path) {
Takashi Iwai0c8c0f52012-12-20 17:54:22 +01003681 print_nid_path("digin", path);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003682 path->active = true;
3683 spec->dig_in_nid = dig_nid;
Takashi Iwai2430d7b2013-01-04 15:09:42 +01003684 spec->digin_path = snd_hda_get_path_idx(codec, path);
Takashi Iwai2c12c302013-01-10 09:33:29 +01003685 set_pin_target(codec, pin, PIN_IN, false);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003686 break;
3687 }
3688 }
3689 }
3690}
3691
3692
3693/*
3694 * input MUX handling
3695 */
3696
3697static bool dyn_adc_pcm_resetup(struct hda_codec *codec, int cur);
3698
3699/* select the given imux item; either unmute exclusively or select the route */
3700static int mux_select(struct hda_codec *codec, unsigned int adc_idx,
3701 unsigned int idx)
3702{
3703 struct hda_gen_spec *spec = codec->spec;
3704 const struct hda_input_mux *imux;
Takashi Iwai55196ff2013-01-24 17:32:56 +01003705 struct nid_path *old_path, *path;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003706
3707 imux = &spec->input_mux;
3708 if (!imux->num_items)
3709 return 0;
3710
3711 if (idx >= imux->num_items)
3712 idx = imux->num_items - 1;
3713 if (spec->cur_mux[adc_idx] == idx)
3714 return 0;
3715
Takashi Iwai55196ff2013-01-24 17:32:56 +01003716 old_path = get_input_path(codec, adc_idx, spec->cur_mux[adc_idx]);
3717 if (!old_path)
Takashi Iwai352f7f92012-12-19 12:52:06 +01003718 return 0;
Takashi Iwai55196ff2013-01-24 17:32:56 +01003719 if (old_path->active)
3720 snd_hda_activate_path(codec, old_path, false, false);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003721
3722 spec->cur_mux[adc_idx] = idx;
3723
Takashi Iwai967303d2013-02-19 17:12:42 +01003724 if (spec->hp_mic)
3725 update_hp_mic(codec, adc_idx, false);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003726
3727 if (spec->dyn_adc_switch)
3728 dyn_adc_pcm_resetup(codec, idx);
3729
Takashi Iwaic697b712013-01-07 17:09:26 +01003730 path = get_input_path(codec, adc_idx, idx);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003731 if (!path)
3732 return 0;
3733 if (path->active)
3734 return 0;
3735 snd_hda_activate_path(codec, path, true, false);
3736 if (spec->cap_sync_hook)
Takashi Iwaia90229e2013-01-18 14:10:00 +01003737 spec->cap_sync_hook(codec, NULL);
Takashi Iwai55196ff2013-01-24 17:32:56 +01003738 path_power_down_sync(codec, old_path);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003739 return 1;
3740}
3741
3742
3743/*
3744 * Jack detections for HP auto-mute and mic-switch
3745 */
3746
3747/* check each pin in the given array; returns true if any of them is plugged */
3748static bool detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins)
3749{
Takashi Iwai60ea8ca2013-07-19 16:59:46 +02003750 int i;
3751 bool present = false;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003752
3753 for (i = 0; i < num_pins; i++) {
3754 hda_nid_t nid = pins[i];
3755 if (!nid)
3756 break;
Takashi Iwai0b4df932013-01-10 09:45:13 +01003757 /* don't detect pins retasked as inputs */
3758 if (snd_hda_codec_get_pin_target(codec, nid) & AC_PINCTL_IN_EN)
3759 continue;
Takashi Iwai60ea8ca2013-07-19 16:59:46 +02003760 if (snd_hda_jack_detect_state(codec, nid) == HDA_JACK_PRESENT)
3761 present = true;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003762 }
3763 return present;
3764}
3765
3766/* standard HP/line-out auto-mute helper */
3767static void do_automute(struct hda_codec *codec, int num_pins, hda_nid_t *pins,
Takashi Iwaie80c60f2013-08-12 14:44:59 +02003768 int *paths, bool mute)
Takashi Iwai352f7f92012-12-19 12:52:06 +01003769{
3770 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003771 int i;
3772
3773 for (i = 0; i < num_pins; i++) {
3774 hda_nid_t nid = pins[i];
Takashi Iwai967303d2013-02-19 17:12:42 +01003775 unsigned int val, oldval;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003776 if (!nid)
3777 break;
Takashi Iwai7eebffd2013-06-24 16:00:21 +02003778
3779 if (spec->auto_mute_via_amp) {
Takashi Iwaie80c60f2013-08-12 14:44:59 +02003780 struct nid_path *path;
3781 hda_nid_t mute_nid;
3782
3783 path = snd_hda_get_path_from_idx(codec, paths[i]);
3784 if (!path)
3785 continue;
3786 mute_nid = get_amp_nid_(path->ctls[NID_PATH_MUTE_CTL]);
3787 if (!mute_nid)
3788 continue;
Takashi Iwai7eebffd2013-06-24 16:00:21 +02003789 if (mute)
Takashi Iwaie80c60f2013-08-12 14:44:59 +02003790 spec->mute_bits |= (1ULL << mute_nid);
Takashi Iwai7eebffd2013-06-24 16:00:21 +02003791 else
Takashi Iwaie80c60f2013-08-12 14:44:59 +02003792 spec->mute_bits &= ~(1ULL << mute_nid);
Takashi Iwai7eebffd2013-06-24 16:00:21 +02003793 set_pin_eapd(codec, nid, !mute);
3794 continue;
3795 }
3796
Takashi Iwai967303d2013-02-19 17:12:42 +01003797 oldval = snd_hda_codec_get_pin_target(codec, nid);
3798 if (oldval & PIN_IN)
3799 continue; /* no mute for inputs */
Takashi Iwai352f7f92012-12-19 12:52:06 +01003800 /* don't reset VREF value in case it's controlling
3801 * the amp (see alc861_fixup_asus_amp_vref_0f())
3802 */
Takashi Iwai2c12c302013-01-10 09:33:29 +01003803 if (spec->keep_vref_in_automute)
Takashi Iwai967303d2013-02-19 17:12:42 +01003804 val = oldval & ~PIN_HP;
Takashi Iwai2c12c302013-01-10 09:33:29 +01003805 else
Takashi Iwai352f7f92012-12-19 12:52:06 +01003806 val = 0;
Takashi Iwai2c12c302013-01-10 09:33:29 +01003807 if (!mute)
Takashi Iwai967303d2013-02-19 17:12:42 +01003808 val |= oldval;
Takashi Iwai2c12c302013-01-10 09:33:29 +01003809 /* here we call update_pin_ctl() so that the pinctl is changed
3810 * without changing the pinctl target value;
3811 * the original target value will be still referred at the
3812 * init / resume again
3813 */
3814 update_pin_ctl(codec, nid, val);
Takashi Iwaid5a9f1b2012-12-20 15:36:30 +01003815 set_pin_eapd(codec, nid, !mute);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003816 }
3817}
3818
3819/* Toggle outputs muting */
Takashi Iwai5d550e12012-12-19 15:16:44 +01003820void snd_hda_gen_update_outputs(struct hda_codec *codec)
Takashi Iwai352f7f92012-12-19 12:52:06 +01003821{
3822 struct hda_gen_spec *spec = codec->spec;
Takashi Iwaie80c60f2013-08-12 14:44:59 +02003823 int *paths;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003824 int on;
3825
3826 /* Control HP pins/amps depending on master_mute state;
3827 * in general, HP pins/amps control should be enabled in all cases,
3828 * but currently set only for master_mute, just to be safe
3829 */
Takashi Iwaie80c60f2013-08-12 14:44:59 +02003830 if (spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)
3831 paths = spec->out_paths;
3832 else
3833 paths = spec->hp_paths;
Takashi Iwai967303d2013-02-19 17:12:42 +01003834 do_automute(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
Takashi Iwaie80c60f2013-08-12 14:44:59 +02003835 spec->autocfg.hp_pins, paths, spec->master_mute);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003836
3837 if (!spec->automute_speaker)
3838 on = 0;
3839 else
3840 on = spec->hp_jack_present | spec->line_jack_present;
3841 on |= spec->master_mute;
Takashi Iwai47b9ddb2013-01-16 18:18:00 +01003842 spec->speaker_muted = on;
Takashi Iwaie80c60f2013-08-12 14:44:59 +02003843 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
3844 paths = spec->out_paths;
3845 else
3846 paths = spec->speaker_paths;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003847 do_automute(codec, ARRAY_SIZE(spec->autocfg.speaker_pins),
Takashi Iwaie80c60f2013-08-12 14:44:59 +02003848 spec->autocfg.speaker_pins, paths, on);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003849
3850 /* toggle line-out mutes if needed, too */
3851 /* if LO is a copy of either HP or Speaker, don't need to handle it */
3852 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0] ||
3853 spec->autocfg.line_out_pins[0] == spec->autocfg.speaker_pins[0])
3854 return;
3855 if (!spec->automute_lo)
3856 on = 0;
3857 else
3858 on = spec->hp_jack_present;
3859 on |= spec->master_mute;
Takashi Iwai47b9ddb2013-01-16 18:18:00 +01003860 spec->line_out_muted = on;
Takashi Iwaie80c60f2013-08-12 14:44:59 +02003861 paths = spec->out_paths;
Takashi Iwai352f7f92012-12-19 12:52:06 +01003862 do_automute(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
Takashi Iwaie80c60f2013-08-12 14:44:59 +02003863 spec->autocfg.line_out_pins, paths, on);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003864}
Takashi Iwai5d550e12012-12-19 15:16:44 +01003865EXPORT_SYMBOL_HDA(snd_hda_gen_update_outputs);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003866
3867static void call_update_outputs(struct hda_codec *codec)
3868{
3869 struct hda_gen_spec *spec = codec->spec;
3870 if (spec->automute_hook)
3871 spec->automute_hook(codec);
3872 else
Takashi Iwai5d550e12012-12-19 15:16:44 +01003873 snd_hda_gen_update_outputs(codec);
Takashi Iwai7eebffd2013-06-24 16:00:21 +02003874
3875 /* sync the whole vmaster slaves to reflect the new auto-mute status */
3876 if (spec->auto_mute_via_amp && !codec->bus->shutdown)
3877 snd_ctl_sync_vmaster(spec->vmaster_mute.sw_kctl, false);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003878}
3879
3880/* standard HP-automute helper */
Takashi Iwai5d550e12012-12-19 15:16:44 +01003881void snd_hda_gen_hp_automute(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwai352f7f92012-12-19 12:52:06 +01003882{
3883 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai92603c52013-01-22 07:46:31 +01003884 hda_nid_t *pins = spec->autocfg.hp_pins;
3885 int num_pins = ARRAY_SIZE(spec->autocfg.hp_pins);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003886
Takashi Iwai92603c52013-01-22 07:46:31 +01003887 /* No detection for the first HP jack during indep-HP mode */
3888 if (spec->indep_hp_enabled) {
3889 pins++;
3890 num_pins--;
3891 }
3892
3893 spec->hp_jack_present = detect_jacks(codec, num_pins, pins);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003894 if (!spec->detect_hp || (!spec->automute_speaker && !spec->automute_lo))
3895 return;
3896 call_update_outputs(codec);
3897}
Takashi Iwai5d550e12012-12-19 15:16:44 +01003898EXPORT_SYMBOL_HDA(snd_hda_gen_hp_automute);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003899
3900/* standard line-out-automute helper */
Takashi Iwai5d550e12012-12-19 15:16:44 +01003901void snd_hda_gen_line_automute(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwai352f7f92012-12-19 12:52:06 +01003902{
3903 struct hda_gen_spec *spec = codec->spec;
3904
3905 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
3906 return;
3907 /* check LO jack only when it's different from HP */
3908 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0])
3909 return;
3910
3911 spec->line_jack_present =
3912 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
3913 spec->autocfg.line_out_pins);
3914 if (!spec->automute_speaker || !spec->detect_lo)
3915 return;
3916 call_update_outputs(codec);
3917}
Takashi Iwai5d550e12012-12-19 15:16:44 +01003918EXPORT_SYMBOL_HDA(snd_hda_gen_line_automute);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003919
3920/* standard mic auto-switch helper */
Takashi Iwai5d550e12012-12-19 15:16:44 +01003921void snd_hda_gen_mic_autoswitch(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwai352f7f92012-12-19 12:52:06 +01003922{
3923 struct hda_gen_spec *spec = codec->spec;
3924 int i;
3925
3926 if (!spec->auto_mic)
3927 return;
3928
3929 for (i = spec->am_num_entries - 1; i > 0; i--) {
Takashi Iwai0b4df932013-01-10 09:45:13 +01003930 hda_nid_t pin = spec->am_entry[i].pin;
3931 /* don't detect pins retasked as outputs */
3932 if (snd_hda_codec_get_pin_target(codec, pin) & AC_PINCTL_OUT_EN)
3933 continue;
Takashi Iwai60ea8ca2013-07-19 16:59:46 +02003934 if (snd_hda_jack_detect_state(codec, pin) == HDA_JACK_PRESENT) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01003935 mux_select(codec, 0, spec->am_entry[i].idx);
3936 return;
3937 }
3938 }
3939 mux_select(codec, 0, spec->am_entry[0].idx);
3940}
Takashi Iwai5d550e12012-12-19 15:16:44 +01003941EXPORT_SYMBOL_HDA(snd_hda_gen_mic_autoswitch);
Takashi Iwai352f7f92012-12-19 12:52:06 +01003942
Takashi Iwai77afe0e2013-05-31 14:10:03 +02003943/* call appropriate hooks */
3944static void call_hp_automute(struct hda_codec *codec, struct hda_jack_tbl *jack)
3945{
3946 struct hda_gen_spec *spec = codec->spec;
3947 if (spec->hp_automute_hook)
3948 spec->hp_automute_hook(codec, jack);
3949 else
3950 snd_hda_gen_hp_automute(codec, jack);
3951}
3952
3953static void call_line_automute(struct hda_codec *codec,
3954 struct hda_jack_tbl *jack)
3955{
3956 struct hda_gen_spec *spec = codec->spec;
3957 if (spec->line_automute_hook)
3958 spec->line_automute_hook(codec, jack);
3959 else
3960 snd_hda_gen_line_automute(codec, jack);
3961}
3962
3963static void call_mic_autoswitch(struct hda_codec *codec,
3964 struct hda_jack_tbl *jack)
3965{
3966 struct hda_gen_spec *spec = codec->spec;
3967 if (spec->mic_autoswitch_hook)
3968 spec->mic_autoswitch_hook(codec, jack);
3969 else
3970 snd_hda_gen_mic_autoswitch(codec, jack);
3971}
3972
Takashi Iwai963afde2013-05-31 15:20:31 +02003973/* update jack retasking */
3974static void update_automute_all(struct hda_codec *codec)
3975{
3976 call_hp_automute(codec, NULL);
3977 call_line_automute(codec, NULL);
3978 call_mic_autoswitch(codec, NULL);
3979}
3980
Takashi Iwai352f7f92012-12-19 12:52:06 +01003981/*
3982 * Auto-Mute mode mixer enum support
3983 */
3984static int automute_mode_info(struct snd_kcontrol *kcontrol,
3985 struct snd_ctl_elem_info *uinfo)
3986{
3987 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3988 struct hda_gen_spec *spec = codec->spec;
3989 static const char * const texts3[] = {
3990 "Disabled", "Speaker Only", "Line Out+Speaker"
Takashi Iwai071c73a2006-08-23 18:34:06 +02003991 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992
Takashi Iwai352f7f92012-12-19 12:52:06 +01003993 if (spec->automute_speaker_possible && spec->automute_lo_possible)
3994 return snd_hda_enum_helper_info(kcontrol, uinfo, 3, texts3);
3995 return snd_hda_enum_bool_helper_info(kcontrol, uinfo);
3996}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997
Takashi Iwai352f7f92012-12-19 12:52:06 +01003998static int automute_mode_get(struct snd_kcontrol *kcontrol,
3999 struct snd_ctl_elem_value *ucontrol)
4000{
4001 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4002 struct hda_gen_spec *spec = codec->spec;
4003 unsigned int val = 0;
4004 if (spec->automute_speaker)
4005 val++;
4006 if (spec->automute_lo)
4007 val++;
Takashi Iwai071c73a2006-08-23 18:34:06 +02004008
Takashi Iwai352f7f92012-12-19 12:52:06 +01004009 ucontrol->value.enumerated.item[0] = val;
4010 return 0;
4011}
4012
4013static int automute_mode_put(struct snd_kcontrol *kcontrol,
4014 struct snd_ctl_elem_value *ucontrol)
4015{
4016 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4017 struct hda_gen_spec *spec = codec->spec;
4018
4019 switch (ucontrol->value.enumerated.item[0]) {
4020 case 0:
4021 if (!spec->automute_speaker && !spec->automute_lo)
4022 return 0;
4023 spec->automute_speaker = 0;
4024 spec->automute_lo = 0;
4025 break;
4026 case 1:
4027 if (spec->automute_speaker_possible) {
4028 if (!spec->automute_lo && spec->automute_speaker)
4029 return 0;
4030 spec->automute_speaker = 1;
4031 spec->automute_lo = 0;
4032 } else if (spec->automute_lo_possible) {
4033 if (spec->automute_lo)
4034 return 0;
4035 spec->automute_lo = 1;
4036 } else
4037 return -EINVAL;
4038 break;
4039 case 2:
4040 if (!spec->automute_lo_possible || !spec->automute_speaker_possible)
4041 return -EINVAL;
4042 if (spec->automute_speaker && spec->automute_lo)
4043 return 0;
4044 spec->automute_speaker = 1;
4045 spec->automute_lo = 1;
4046 break;
4047 default:
4048 return -EINVAL;
4049 }
4050 call_update_outputs(codec);
4051 return 1;
4052}
4053
4054static const struct snd_kcontrol_new automute_mode_enum = {
4055 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4056 .name = "Auto-Mute Mode",
4057 .info = automute_mode_info,
4058 .get = automute_mode_get,
4059 .put = automute_mode_put,
4060};
4061
4062static int add_automute_mode_enum(struct hda_codec *codec)
4063{
4064 struct hda_gen_spec *spec = codec->spec;
4065
Takashi Iwai12c93df2012-12-19 14:38:33 +01004066 if (!snd_hda_gen_add_kctl(spec, NULL, &automute_mode_enum))
Takashi Iwai352f7f92012-12-19 12:52:06 +01004067 return -ENOMEM;
4068 return 0;
4069}
4070
4071/*
4072 * Check the availability of HP/line-out auto-mute;
4073 * Set up appropriately if really supported
4074 */
4075static int check_auto_mute_availability(struct hda_codec *codec)
4076{
4077 struct hda_gen_spec *spec = codec->spec;
4078 struct auto_pin_cfg *cfg = &spec->autocfg;
4079 int present = 0;
4080 int i, err;
4081
Takashi Iwaif72706b2013-01-16 18:20:07 +01004082 if (spec->suppress_auto_mute)
4083 return 0;
4084
Takashi Iwai352f7f92012-12-19 12:52:06 +01004085 if (cfg->hp_pins[0])
4086 present++;
4087 if (cfg->line_out_pins[0])
4088 present++;
4089 if (cfg->speaker_pins[0])
4090 present++;
4091 if (present < 2) /* need two different output types */
Takashi Iwai071c73a2006-08-23 18:34:06 +02004092 return 0;
Takashi Iwai352f7f92012-12-19 12:52:06 +01004093
4094 if (!cfg->speaker_pins[0] &&
4095 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
4096 memcpy(cfg->speaker_pins, cfg->line_out_pins,
4097 sizeof(cfg->speaker_pins));
4098 cfg->speaker_outs = cfg->line_outs;
Takashi Iwai071c73a2006-08-23 18:34:06 +02004099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100
Takashi Iwai352f7f92012-12-19 12:52:06 +01004101 if (!cfg->hp_pins[0] &&
4102 cfg->line_out_type == AUTO_PIN_HP_OUT) {
4103 memcpy(cfg->hp_pins, cfg->line_out_pins,
4104 sizeof(cfg->hp_pins));
4105 cfg->hp_outs = cfg->line_outs;
4106 }
4107
4108 for (i = 0; i < cfg->hp_outs; i++) {
4109 hda_nid_t nid = cfg->hp_pins[i];
4110 if (!is_jack_detectable(codec, nid))
4111 continue;
4112 snd_printdd("hda-codec: Enable HP auto-muting on NID 0x%x\n",
4113 nid);
4114 snd_hda_jack_detect_enable_callback(codec, nid, HDA_GEN_HP_EVENT,
Takashi Iwai77afe0e2013-05-31 14:10:03 +02004115 call_hp_automute);
Takashi Iwai352f7f92012-12-19 12:52:06 +01004116 spec->detect_hp = 1;
4117 }
4118
4119 if (cfg->line_out_type == AUTO_PIN_LINE_OUT && cfg->line_outs) {
4120 if (cfg->speaker_outs)
4121 for (i = 0; i < cfg->line_outs; i++) {
4122 hda_nid_t nid = cfg->line_out_pins[i];
4123 if (!is_jack_detectable(codec, nid))
4124 continue;
4125 snd_printdd("hda-codec: Enable Line-Out auto-muting on NID 0x%x\n", nid);
4126 snd_hda_jack_detect_enable_callback(codec, nid,
4127 HDA_GEN_FRONT_EVENT,
Takashi Iwai77afe0e2013-05-31 14:10:03 +02004128 call_line_automute);
Takashi Iwai352f7f92012-12-19 12:52:06 +01004129 spec->detect_lo = 1;
4130 }
4131 spec->automute_lo_possible = spec->detect_hp;
4132 }
4133
4134 spec->automute_speaker_possible = cfg->speaker_outs &&
4135 (spec->detect_hp || spec->detect_lo);
4136
4137 spec->automute_lo = spec->automute_lo_possible;
4138 spec->automute_speaker = spec->automute_speaker_possible;
4139
4140 if (spec->automute_speaker_possible || spec->automute_lo_possible) {
4141 /* create a control for automute mode */
4142 err = add_automute_mode_enum(codec);
4143 if (err < 0)
4144 return err;
4145 }
4146 return 0;
4147}
4148
Takashi Iwai352f7f92012-12-19 12:52:06 +01004149/* check whether all auto-mic pins are valid; setup indices if OK */
4150static bool auto_mic_check_imux(struct hda_codec *codec)
4151{
4152 struct hda_gen_spec *spec = codec->spec;
4153 const struct hda_input_mux *imux;
4154 int i;
4155
4156 imux = &spec->input_mux;
4157 for (i = 0; i < spec->am_num_entries; i++) {
4158 spec->am_entry[i].idx =
4159 find_idx_in_nid_list(spec->am_entry[i].pin,
4160 spec->imux_pins, imux->num_items);
4161 if (spec->am_entry[i].idx < 0)
4162 return false; /* no corresponding imux */
4163 }
4164
4165 /* we don't need the jack detection for the first pin */
4166 for (i = 1; i < spec->am_num_entries; i++)
4167 snd_hda_jack_detect_enable_callback(codec,
4168 spec->am_entry[i].pin,
4169 HDA_GEN_MIC_EVENT,
Takashi Iwai77afe0e2013-05-31 14:10:03 +02004170 call_mic_autoswitch);
Takashi Iwai352f7f92012-12-19 12:52:06 +01004171 return true;
4172}
4173
4174static int compare_attr(const void *ap, const void *bp)
4175{
4176 const struct automic_entry *a = ap;
4177 const struct automic_entry *b = bp;
4178 return (int)(a->attr - b->attr);
4179}
4180
4181/*
4182 * Check the availability of auto-mic switch;
4183 * Set up if really supported
4184 */
4185static int check_auto_mic_availability(struct hda_codec *codec)
4186{
4187 struct hda_gen_spec *spec = codec->spec;
4188 struct auto_pin_cfg *cfg = &spec->autocfg;
4189 unsigned int types;
4190 int i, num_pins;
4191
Takashi Iwaid12daf62013-01-07 16:32:11 +01004192 if (spec->suppress_auto_mic)
4193 return 0;
4194
Takashi Iwai352f7f92012-12-19 12:52:06 +01004195 types = 0;
4196 num_pins = 0;
4197 for (i = 0; i < cfg->num_inputs; i++) {
4198 hda_nid_t nid = cfg->inputs[i].pin;
4199 unsigned int attr;
4200 attr = snd_hda_codec_get_pincfg(codec, nid);
4201 attr = snd_hda_get_input_pin_attr(attr);
4202 if (types & (1 << attr))
4203 return 0; /* already occupied */
4204 switch (attr) {
4205 case INPUT_PIN_ATTR_INT:
4206 if (cfg->inputs[i].type != AUTO_PIN_MIC)
4207 return 0; /* invalid type */
4208 break;
4209 case INPUT_PIN_ATTR_UNUSED:
4210 return 0; /* invalid entry */
4211 default:
4212 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
4213 return 0; /* invalid type */
4214 if (!spec->line_in_auto_switch &&
4215 cfg->inputs[i].type != AUTO_PIN_MIC)
4216 return 0; /* only mic is allowed */
4217 if (!is_jack_detectable(codec, nid))
4218 return 0; /* no unsol support */
4219 break;
4220 }
4221 if (num_pins >= MAX_AUTO_MIC_PINS)
4222 return 0;
4223 types |= (1 << attr);
4224 spec->am_entry[num_pins].pin = nid;
4225 spec->am_entry[num_pins].attr = attr;
4226 num_pins++;
4227 }
4228
4229 if (num_pins < 2)
4230 return 0;
4231
4232 spec->am_num_entries = num_pins;
4233 /* sort the am_entry in the order of attr so that the pin with a
4234 * higher attr will be selected when the jack is plugged.
4235 */
4236 sort(spec->am_entry, num_pins, sizeof(spec->am_entry[0]),
4237 compare_attr, NULL);
4238
4239 if (!auto_mic_check_imux(codec))
4240 return 0;
4241
4242 spec->auto_mic = 1;
4243 spec->num_adc_nids = 1;
4244 spec->cur_mux[0] = spec->am_entry[0].idx;
4245 snd_printdd("hda-codec: Enable auto-mic switch on NID 0x%x/0x%x/0x%x\n",
4246 spec->am_entry[0].pin,
4247 spec->am_entry[1].pin,
4248 spec->am_entry[2].pin);
4249
4250 return 0;
4251}
4252
Takashi Iwai55196ff2013-01-24 17:32:56 +01004253/* power_filter hook; make inactive widgets into power down */
4254static unsigned int snd_hda_gen_path_power_filter(struct hda_codec *codec,
4255 hda_nid_t nid,
4256 unsigned int power_state)
4257{
4258 if (power_state != AC_PWRST_D0)
4259 return power_state;
4260 if (get_wcaps_type(get_wcaps(codec, nid)) >= AC_WID_POWER)
4261 return power_state;
Takashi Iwaib1b9fbd2013-05-14 12:58:47 +02004262 if (is_active_nid_for_any(codec, nid))
Takashi Iwai55196ff2013-01-24 17:32:56 +01004263 return power_state;
4264 return AC_PWRST_D3;
4265}
4266
Takashi Iwai352f7f92012-12-19 12:52:06 +01004267
Takashi Iwai9eb413e2012-12-19 14:41:21 +01004268/*
4269 * Parse the given BIOS configuration and set up the hda_gen_spec
4270 *
4271 * return 1 if successful, 0 if the proper config is not found,
Takashi Iwai352f7f92012-12-19 12:52:06 +01004272 * or a negative error code
4273 */
4274int snd_hda_gen_parse_auto_config(struct hda_codec *codec,
Takashi Iwai9eb413e2012-12-19 14:41:21 +01004275 struct auto_pin_cfg *cfg)
Takashi Iwai352f7f92012-12-19 12:52:06 +01004276{
4277 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai352f7f92012-12-19 12:52:06 +01004278 int err;
4279
Takashi Iwai1c70a582013-01-11 17:48:22 +01004280 parse_user_hints(codec);
4281
Takashi Iwaie4a395e2013-01-23 17:00:31 +01004282 if (spec->mixer_nid && !spec->mixer_merge_nid)
4283 spec->mixer_merge_nid = spec->mixer_nid;
4284
Takashi Iwai9eb413e2012-12-19 14:41:21 +01004285 if (cfg != &spec->autocfg) {
4286 spec->autocfg = *cfg;
4287 cfg = &spec->autocfg;
4288 }
4289
Takashi Iwai98bd1112013-03-22 14:53:50 +01004290 if (!spec->main_out_badness)
4291 spec->main_out_badness = &hda_main_out_badness;
4292 if (!spec->extra_out_badness)
4293 spec->extra_out_badness = &hda_extra_out_badness;
4294
David Henningsson6fc4cb92013-01-16 15:58:45 +01004295 fill_all_dac_nids(codec);
4296
Takashi Iwai352f7f92012-12-19 12:52:06 +01004297 if (!cfg->line_outs) {
4298 if (cfg->dig_outs || cfg->dig_in_pin) {
4299 spec->multiout.max_channels = 2;
4300 spec->no_analog = 1;
4301 goto dig_only;
4302 }
4303 return 0; /* can't find valid BIOS pin config */
4304 }
4305
4306 if (!spec->no_primary_hp &&
4307 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT &&
4308 cfg->line_outs <= cfg->hp_outs) {
4309 /* use HP as primary out */
4310 cfg->speaker_outs = cfg->line_outs;
4311 memcpy(cfg->speaker_pins, cfg->line_out_pins,
4312 sizeof(cfg->speaker_pins));
4313 cfg->line_outs = cfg->hp_outs;
4314 memcpy(cfg->line_out_pins, cfg->hp_pins, sizeof(cfg->hp_pins));
4315 cfg->hp_outs = 0;
4316 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
4317 cfg->line_out_type = AUTO_PIN_HP_OUT;
4318 }
4319
4320 err = parse_output_paths(codec);
4321 if (err < 0)
4322 return err;
4323 err = create_multi_channel_mode(codec);
4324 if (err < 0)
4325 return err;
4326 err = create_multi_out_ctls(codec, cfg);
4327 if (err < 0)
4328 return err;
4329 err = create_hp_out_ctls(codec);
4330 if (err < 0)
4331 return err;
4332 err = create_speaker_out_ctls(codec);
4333 if (err < 0)
4334 return err;
Takashi Iwai38cf6f12012-12-21 14:09:42 +01004335 err = create_indep_hp_ctls(codec);
4336 if (err < 0)
4337 return err;
Takashi Iwaic30aa7b2013-01-04 16:42:48 +01004338 err = create_loopback_mixing_ctl(codec);
4339 if (err < 0)
4340 return err;
Takashi Iwai967303d2013-02-19 17:12:42 +01004341 err = create_hp_mic(codec);
Takashi Iwai352f7f92012-12-19 12:52:06 +01004342 if (err < 0)
4343 return err;
4344 err = create_input_ctls(codec);
Takashi Iwaid13bd412008-07-30 15:01:45 +02004345 if (err < 0)
Takashi Iwai071c73a2006-08-23 18:34:06 +02004346 return err;
4347
Takashi Iwaia07a9492013-01-07 16:44:06 +01004348 spec->const_channel_count = spec->ext_channel_count;
4349 /* check the multiple speaker and headphone pins */
4350 if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT)
4351 spec->const_channel_count = max(spec->const_channel_count,
4352 cfg->speaker_outs * 2);
4353 if (cfg->line_out_type != AUTO_PIN_HP_OUT)
4354 spec->const_channel_count = max(spec->const_channel_count,
4355 cfg->hp_outs * 2);
4356 spec->multiout.max_channels = max(spec->ext_channel_count,
4357 spec->const_channel_count);
Takashi Iwai352f7f92012-12-19 12:52:06 +01004358
4359 err = check_auto_mute_availability(codec);
4360 if (err < 0)
4361 return err;
4362
4363 err = check_dyn_adc_switch(codec);
4364 if (err < 0)
4365 return err;
4366
Takashi Iwai967303d2013-02-19 17:12:42 +01004367 err = check_auto_mic_availability(codec);
4368 if (err < 0)
4369 return err;
Takashi Iwai071c73a2006-08-23 18:34:06 +02004370
Takashi Iwai352f7f92012-12-19 12:52:06 +01004371 err = create_capture_mixers(codec);
4372 if (err < 0)
4373 return err;
4374
4375 err = parse_mic_boost(codec);
4376 if (err < 0)
4377 return err;
4378
Takashi Iwaiced4cef2013-11-26 08:33:45 +01004379 /* create "Headphone Mic Jack Mode" if no input selection is
4380 * available (or user specifies add_jack_modes hint)
4381 */
4382 if (spec->hp_mic_pin &&
4383 (spec->auto_mic || spec->input_mux.num_items == 1 ||
4384 spec->add_jack_modes)) {
4385 err = create_hp_mic_jack_mode(codec, spec->hp_mic_pin);
4386 if (err < 0)
4387 return err;
4388 }
4389
Takashi Iwaif811c3c2013-03-07 18:32:59 +01004390 if (spec->add_jack_modes) {
Takashi Iwai978e77e2013-01-10 16:57:58 +01004391 if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
4392 err = create_out_jack_modes(codec, cfg->line_outs,
4393 cfg->line_out_pins);
4394 if (err < 0)
4395 return err;
4396 }
4397 if (cfg->line_out_type != AUTO_PIN_HP_OUT) {
4398 err = create_out_jack_modes(codec, cfg->hp_outs,
4399 cfg->hp_pins);
4400 if (err < 0)
4401 return err;
4402 }
4403 }
4404
Takashi Iwai352f7f92012-12-19 12:52:06 +01004405 dig_only:
4406 parse_digital(codec);
4407
Takashi Iwai55196ff2013-01-24 17:32:56 +01004408 if (spec->power_down_unused)
4409 codec->power_filter = snd_hda_gen_path_power_filter;
4410
Takashi Iwai7504b6c2013-03-18 11:25:51 +01004411 if (!spec->no_analog && spec->beep_nid) {
4412 err = snd_hda_attach_beep_device(codec, spec->beep_nid);
4413 if (err < 0)
4414 return err;
4415 }
4416
Takashi Iwai352f7f92012-12-19 12:52:06 +01004417 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418}
Takashi Iwai352f7f92012-12-19 12:52:06 +01004419EXPORT_SYMBOL_HDA(snd_hda_gen_parse_auto_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420
4421
4422/*
Takashi Iwai352f7f92012-12-19 12:52:06 +01004423 * Build control elements
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424 */
Takashi Iwai352f7f92012-12-19 12:52:06 +01004425
4426/* slave controls for virtual master */
4427static const char * const slave_pfxs[] = {
4428 "Front", "Surround", "Center", "LFE", "Side",
4429 "Headphone", "Speaker", "Mono", "Line Out",
4430 "CLFE", "Bass Speaker", "PCM",
Takashi Iwaiee79c692013-01-07 09:57:42 +01004431 "Speaker Front", "Speaker Surround", "Speaker CLFE", "Speaker Side",
4432 "Headphone Front", "Headphone Surround", "Headphone CLFE",
4433 "Headphone Side",
Takashi Iwai352f7f92012-12-19 12:52:06 +01004434 NULL,
4435};
4436
4437int snd_hda_gen_build_controls(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438{
Takashi Iwai352f7f92012-12-19 12:52:06 +01004439 struct hda_gen_spec *spec = codec->spec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441
Takashi Iwai36502d02012-12-19 15:15:10 +01004442 if (spec->kctls.used) {
4443 err = snd_hda_add_new_ctls(codec, spec->kctls.list);
4444 if (err < 0)
4445 return err;
4446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447
Takashi Iwai352f7f92012-12-19 12:52:06 +01004448 if (spec->multiout.dig_out_nid) {
4449 err = snd_hda_create_dig_out_ctls(codec,
4450 spec->multiout.dig_out_nid,
4451 spec->multiout.dig_out_nid,
4452 spec->pcm_rec[1].pcm_type);
4453 if (err < 0)
4454 return err;
4455 if (!spec->no_analog) {
4456 err = snd_hda_create_spdif_share_sw(codec,
4457 &spec->multiout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 if (err < 0)
4459 return err;
Takashi Iwai352f7f92012-12-19 12:52:06 +01004460 spec->multiout.share_spdif = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461 }
4462 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01004463 if (spec->dig_in_nid) {
4464 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
4465 if (err < 0)
4466 return err;
4467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468
Takashi Iwai352f7f92012-12-19 12:52:06 +01004469 /* if we have no master control, let's create it */
4470 if (!spec->no_analog &&
4471 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
Takashi Iwai352f7f92012-12-19 12:52:06 +01004472 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
Takashi Iwai7a71bbf2013-01-17 10:25:15 +01004473 spec->vmaster_tlv, slave_pfxs,
Takashi Iwai352f7f92012-12-19 12:52:06 +01004474 "Playback Volume");
4475 if (err < 0)
4476 return err;
4477 }
4478 if (!spec->no_analog &&
4479 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
4480 err = __snd_hda_add_vmaster(codec, "Master Playback Switch",
4481 NULL, slave_pfxs,
4482 "Playback Switch",
4483 true, &spec->vmaster_mute.sw_kctl);
4484 if (err < 0)
4485 return err;
Takashi Iwaib63eae02013-10-25 23:43:10 +02004486 if (spec->vmaster_mute.hook) {
Takashi Iwaifd25a972012-12-20 14:57:18 +01004487 snd_hda_add_vmaster_hook(codec, &spec->vmaster_mute,
4488 spec->vmaster_mute_enum);
Takashi Iwaib63eae02013-10-25 23:43:10 +02004489 snd_hda_sync_vmaster_hook(&spec->vmaster_mute);
4490 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01004491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492
Takashi Iwai352f7f92012-12-19 12:52:06 +01004493 free_kctls(spec); /* no longer needed */
4494
Takashi Iwai352f7f92012-12-19 12:52:06 +01004495 err = snd_hda_jack_add_kctls(codec, &spec->autocfg);
4496 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 return err;
4498
4499 return 0;
4500}
Takashi Iwai352f7f92012-12-19 12:52:06 +01004501EXPORT_SYMBOL_HDA(snd_hda_gen_build_controls);
4502
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503
4504/*
Takashi Iwai352f7f92012-12-19 12:52:06 +01004505 * PCM definitions
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507
Takashi Iwaie6b85f32013-01-07 11:54:34 +01004508static void call_pcm_playback_hook(struct hda_pcm_stream *hinfo,
4509 struct hda_codec *codec,
4510 struct snd_pcm_substream *substream,
4511 int action)
4512{
4513 struct hda_gen_spec *spec = codec->spec;
4514 if (spec->pcm_playback_hook)
4515 spec->pcm_playback_hook(hinfo, codec, substream, action);
4516}
4517
Takashi Iwaiac2e8732013-01-17 15:57:10 +01004518static void call_pcm_capture_hook(struct hda_pcm_stream *hinfo,
4519 struct hda_codec *codec,
4520 struct snd_pcm_substream *substream,
4521 int action)
4522{
4523 struct hda_gen_spec *spec = codec->spec;
4524 if (spec->pcm_capture_hook)
4525 spec->pcm_capture_hook(hinfo, codec, substream, action);
4526}
4527
Takashi Iwai352f7f92012-12-19 12:52:06 +01004528/*
4529 * Analog playback callbacks
4530 */
4531static int playback_pcm_open(struct hda_pcm_stream *hinfo,
4532 struct hda_codec *codec,
4533 struct snd_pcm_substream *substream)
4534{
4535 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai38cf6f12012-12-21 14:09:42 +01004536 int err;
4537
4538 mutex_lock(&spec->pcm_mutex);
4539 err = snd_hda_multi_out_analog_open(codec,
4540 &spec->multiout, substream,
Takashi Iwai352f7f92012-12-19 12:52:06 +01004541 hinfo);
Takashi Iwaie6b85f32013-01-07 11:54:34 +01004542 if (!err) {
Takashi Iwai38cf6f12012-12-21 14:09:42 +01004543 spec->active_streams |= 1 << STREAM_MULTI_OUT;
Takashi Iwaie6b85f32013-01-07 11:54:34 +01004544 call_pcm_playback_hook(hinfo, codec, substream,
4545 HDA_GEN_PCM_ACT_OPEN);
4546 }
Takashi Iwai38cf6f12012-12-21 14:09:42 +01004547 mutex_unlock(&spec->pcm_mutex);
4548 return err;
Takashi Iwai352f7f92012-12-19 12:52:06 +01004549}
4550
4551static int playback_pcm_prepare(struct hda_pcm_stream *hinfo,
Takashi Iwai97ec5582006-03-21 11:29:07 +01004552 struct hda_codec *codec,
4553 unsigned int stream_tag,
4554 unsigned int format,
4555 struct snd_pcm_substream *substream)
4556{
Takashi Iwai352f7f92012-12-19 12:52:06 +01004557 struct hda_gen_spec *spec = codec->spec;
Takashi Iwaie6b85f32013-01-07 11:54:34 +01004558 int err;
4559
4560 err = snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
4561 stream_tag, format, substream);
4562 if (!err)
4563 call_pcm_playback_hook(hinfo, codec, substream,
4564 HDA_GEN_PCM_ACT_PREPARE);
4565 return err;
Takashi Iwai352f7f92012-12-19 12:52:06 +01004566}
Takashi Iwai97ec5582006-03-21 11:29:07 +01004567
Takashi Iwai352f7f92012-12-19 12:52:06 +01004568static int playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
4569 struct hda_codec *codec,
4570 struct snd_pcm_substream *substream)
4571{
4572 struct hda_gen_spec *spec = codec->spec;
Takashi Iwaie6b85f32013-01-07 11:54:34 +01004573 int err;
4574
4575 err = snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
4576 if (!err)
4577 call_pcm_playback_hook(hinfo, codec, substream,
4578 HDA_GEN_PCM_ACT_CLEANUP);
4579 return err;
Takashi Iwai352f7f92012-12-19 12:52:06 +01004580}
4581
Takashi Iwai38cf6f12012-12-21 14:09:42 +01004582static int playback_pcm_close(struct hda_pcm_stream *hinfo,
4583 struct hda_codec *codec,
4584 struct snd_pcm_substream *substream)
4585{
4586 struct hda_gen_spec *spec = codec->spec;
4587 mutex_lock(&spec->pcm_mutex);
4588 spec->active_streams &= ~(1 << STREAM_MULTI_OUT);
Takashi Iwaie6b85f32013-01-07 11:54:34 +01004589 call_pcm_playback_hook(hinfo, codec, substream,
4590 HDA_GEN_PCM_ACT_CLOSE);
Takashi Iwai38cf6f12012-12-21 14:09:42 +01004591 mutex_unlock(&spec->pcm_mutex);
4592 return 0;
4593}
4594
Takashi Iwaiac2e8732013-01-17 15:57:10 +01004595static int capture_pcm_open(struct hda_pcm_stream *hinfo,
4596 struct hda_codec *codec,
4597 struct snd_pcm_substream *substream)
4598{
4599 call_pcm_capture_hook(hinfo, codec, substream, HDA_GEN_PCM_ACT_OPEN);
4600 return 0;
4601}
4602
4603static int capture_pcm_prepare(struct hda_pcm_stream *hinfo,
4604 struct hda_codec *codec,
4605 unsigned int stream_tag,
4606 unsigned int format,
4607 struct snd_pcm_substream *substream)
4608{
4609 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
4610 call_pcm_capture_hook(hinfo, codec, substream,
4611 HDA_GEN_PCM_ACT_PREPARE);
4612 return 0;
4613}
4614
4615static int capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
4616 struct hda_codec *codec,
4617 struct snd_pcm_substream *substream)
4618{
4619 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
4620 call_pcm_capture_hook(hinfo, codec, substream,
4621 HDA_GEN_PCM_ACT_CLEANUP);
4622 return 0;
4623}
4624
4625static int capture_pcm_close(struct hda_pcm_stream *hinfo,
4626 struct hda_codec *codec,
4627 struct snd_pcm_substream *substream)
4628{
4629 call_pcm_capture_hook(hinfo, codec, substream, HDA_GEN_PCM_ACT_CLOSE);
4630 return 0;
4631}
4632
Takashi Iwai38cf6f12012-12-21 14:09:42 +01004633static int alt_playback_pcm_open(struct hda_pcm_stream *hinfo,
4634 struct hda_codec *codec,
4635 struct snd_pcm_substream *substream)
4636{
4637 struct hda_gen_spec *spec = codec->spec;
4638 int err = 0;
4639
4640 mutex_lock(&spec->pcm_mutex);
4641 if (!spec->indep_hp_enabled)
4642 err = -EBUSY;
4643 else
4644 spec->active_streams |= 1 << STREAM_INDEP_HP;
Takashi Iwaie6b85f32013-01-07 11:54:34 +01004645 call_pcm_playback_hook(hinfo, codec, substream,
4646 HDA_GEN_PCM_ACT_OPEN);
Takashi Iwai38cf6f12012-12-21 14:09:42 +01004647 mutex_unlock(&spec->pcm_mutex);
4648 return err;
4649}
4650
4651static int alt_playback_pcm_close(struct hda_pcm_stream *hinfo,
4652 struct hda_codec *codec,
4653 struct snd_pcm_substream *substream)
4654{
4655 struct hda_gen_spec *spec = codec->spec;
4656 mutex_lock(&spec->pcm_mutex);
4657 spec->active_streams &= ~(1 << STREAM_INDEP_HP);
Takashi Iwaie6b85f32013-01-07 11:54:34 +01004658 call_pcm_playback_hook(hinfo, codec, substream,
4659 HDA_GEN_PCM_ACT_CLOSE);
Takashi Iwai38cf6f12012-12-21 14:09:42 +01004660 mutex_unlock(&spec->pcm_mutex);
4661 return 0;
4662}
4663
Takashi Iwaie6b85f32013-01-07 11:54:34 +01004664static int alt_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
4665 struct hda_codec *codec,
4666 unsigned int stream_tag,
4667 unsigned int format,
4668 struct snd_pcm_substream *substream)
4669{
4670 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
4671 call_pcm_playback_hook(hinfo, codec, substream,
4672 HDA_GEN_PCM_ACT_PREPARE);
4673 return 0;
4674}
4675
4676static int alt_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
4677 struct hda_codec *codec,
4678 struct snd_pcm_substream *substream)
4679{
4680 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
4681 call_pcm_playback_hook(hinfo, codec, substream,
4682 HDA_GEN_PCM_ACT_CLEANUP);
4683 return 0;
4684}
4685
Takashi Iwai352f7f92012-12-19 12:52:06 +01004686/*
4687 * Digital out
4688 */
4689static int dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
4690 struct hda_codec *codec,
4691 struct snd_pcm_substream *substream)
4692{
4693 struct hda_gen_spec *spec = codec->spec;
4694 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
4695}
4696
4697static int dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
4698 struct hda_codec *codec,
4699 unsigned int stream_tag,
4700 unsigned int format,
4701 struct snd_pcm_substream *substream)
4702{
4703 struct hda_gen_spec *spec = codec->spec;
4704 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
4705 stream_tag, format, substream);
4706}
4707
4708static int dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
4709 struct hda_codec *codec,
4710 struct snd_pcm_substream *substream)
4711{
4712 struct hda_gen_spec *spec = codec->spec;
4713 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
4714}
4715
4716static int dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
4717 struct hda_codec *codec,
4718 struct snd_pcm_substream *substream)
4719{
4720 struct hda_gen_spec *spec = codec->spec;
4721 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
4722}
4723
4724/*
4725 * Analog capture
4726 */
Takashi Iwaiac2e8732013-01-17 15:57:10 +01004727#define alt_capture_pcm_open capture_pcm_open
4728#define alt_capture_pcm_close capture_pcm_close
4729
Takashi Iwai352f7f92012-12-19 12:52:06 +01004730static int alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
4731 struct hda_codec *codec,
4732 unsigned int stream_tag,
4733 unsigned int format,
4734 struct snd_pcm_substream *substream)
4735{
4736 struct hda_gen_spec *spec = codec->spec;
4737
4738 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
Takashi Iwai97ec5582006-03-21 11:29:07 +01004739 stream_tag, 0, format);
Takashi Iwaiac2e8732013-01-17 15:57:10 +01004740 call_pcm_capture_hook(hinfo, codec, substream,
4741 HDA_GEN_PCM_ACT_PREPARE);
Takashi Iwai97ec5582006-03-21 11:29:07 +01004742 return 0;
4743}
4744
Takashi Iwai352f7f92012-12-19 12:52:06 +01004745static int alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
4746 struct hda_codec *codec,
4747 struct snd_pcm_substream *substream)
Takashi Iwai97ec5582006-03-21 11:29:07 +01004748{
Takashi Iwai352f7f92012-12-19 12:52:06 +01004749 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai97ec5582006-03-21 11:29:07 +01004750
Takashi Iwai352f7f92012-12-19 12:52:06 +01004751 snd_hda_codec_cleanup_stream(codec,
4752 spec->adc_nids[substream->number + 1]);
Takashi Iwaiac2e8732013-01-17 15:57:10 +01004753 call_pcm_capture_hook(hinfo, codec, substream,
4754 HDA_GEN_PCM_ACT_CLEANUP);
Takashi Iwai97ec5582006-03-21 11:29:07 +01004755 return 0;
4756}
4757
Takashi Iwai352f7f92012-12-19 12:52:06 +01004758/*
4759 */
4760static const struct hda_pcm_stream pcm_analog_playback = {
4761 .substreams = 1,
4762 .channels_min = 2,
4763 .channels_max = 8,
4764 /* NID is set in build_pcms */
4765 .ops = {
4766 .open = playback_pcm_open,
Takashi Iwai38cf6f12012-12-21 14:09:42 +01004767 .close = playback_pcm_close,
Takashi Iwai352f7f92012-12-19 12:52:06 +01004768 .prepare = playback_pcm_prepare,
4769 .cleanup = playback_pcm_cleanup
4770 },
4771};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772
Takashi Iwai352f7f92012-12-19 12:52:06 +01004773static const struct hda_pcm_stream pcm_analog_capture = {
4774 .substreams = 1,
4775 .channels_min = 2,
4776 .channels_max = 2,
4777 /* NID is set in build_pcms */
Takashi Iwaiac2e8732013-01-17 15:57:10 +01004778 .ops = {
4779 .open = capture_pcm_open,
4780 .close = capture_pcm_close,
4781 .prepare = capture_pcm_prepare,
4782 .cleanup = capture_pcm_cleanup
4783 },
Takashi Iwai352f7f92012-12-19 12:52:06 +01004784};
4785
4786static const struct hda_pcm_stream pcm_analog_alt_playback = {
4787 .substreams = 1,
4788 .channels_min = 2,
4789 .channels_max = 2,
4790 /* NID is set in build_pcms */
Takashi Iwai38cf6f12012-12-21 14:09:42 +01004791 .ops = {
4792 .open = alt_playback_pcm_open,
Takashi Iwaie6b85f32013-01-07 11:54:34 +01004793 .close = alt_playback_pcm_close,
4794 .prepare = alt_playback_pcm_prepare,
4795 .cleanup = alt_playback_pcm_cleanup
Takashi Iwai38cf6f12012-12-21 14:09:42 +01004796 },
Takashi Iwai352f7f92012-12-19 12:52:06 +01004797};
4798
4799static const struct hda_pcm_stream pcm_analog_alt_capture = {
4800 .substreams = 2, /* can be overridden */
4801 .channels_min = 2,
4802 .channels_max = 2,
4803 /* NID is set in build_pcms */
4804 .ops = {
Takashi Iwaiac2e8732013-01-17 15:57:10 +01004805 .open = alt_capture_pcm_open,
4806 .close = alt_capture_pcm_close,
Takashi Iwai352f7f92012-12-19 12:52:06 +01004807 .prepare = alt_capture_pcm_prepare,
4808 .cleanup = alt_capture_pcm_cleanup
4809 },
4810};
4811
4812static const struct hda_pcm_stream pcm_digital_playback = {
4813 .substreams = 1,
4814 .channels_min = 2,
4815 .channels_max = 2,
4816 /* NID is set in build_pcms */
4817 .ops = {
4818 .open = dig_playback_pcm_open,
4819 .close = dig_playback_pcm_close,
4820 .prepare = dig_playback_pcm_prepare,
4821 .cleanup = dig_playback_pcm_cleanup
4822 },
4823};
4824
4825static const struct hda_pcm_stream pcm_digital_capture = {
4826 .substreams = 1,
4827 .channels_min = 2,
4828 .channels_max = 2,
4829 /* NID is set in build_pcms */
4830};
4831
4832/* Used by build_pcms to flag that a PCM has no playback stream */
4833static const struct hda_pcm_stream pcm_null_stream = {
4834 .substreams = 0,
4835 .channels_min = 0,
4836 .channels_max = 0,
4837};
4838
4839/*
4840 * dynamic changing ADC PCM streams
4841 */
4842static bool dyn_adc_pcm_resetup(struct hda_codec *codec, int cur)
4843{
4844 struct hda_gen_spec *spec = codec->spec;
4845 hda_nid_t new_adc = spec->adc_nids[spec->dyn_adc_idx[cur]];
4846
4847 if (spec->cur_adc && spec->cur_adc != new_adc) {
4848 /* stream is running, let's swap the current ADC */
4849 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
4850 spec->cur_adc = new_adc;
4851 snd_hda_codec_setup_stream(codec, new_adc,
4852 spec->cur_adc_stream_tag, 0,
4853 spec->cur_adc_format);
4854 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01004856 return false;
4857}
4858
4859/* analog capture with dynamic dual-adc changes */
4860static int dyn_adc_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
4861 struct hda_codec *codec,
4862 unsigned int stream_tag,
4863 unsigned int format,
4864 struct snd_pcm_substream *substream)
4865{
4866 struct hda_gen_spec *spec = codec->spec;
4867 spec->cur_adc = spec->adc_nids[spec->dyn_adc_idx[spec->cur_mux[0]]];
4868 spec->cur_adc_stream_tag = stream_tag;
4869 spec->cur_adc_format = format;
4870 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
4871 return 0;
4872}
4873
4874static int dyn_adc_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
4875 struct hda_codec *codec,
4876 struct snd_pcm_substream *substream)
4877{
4878 struct hda_gen_spec *spec = codec->spec;
4879 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
4880 spec->cur_adc = 0;
4881 return 0;
4882}
4883
4884static const struct hda_pcm_stream dyn_adc_pcm_analog_capture = {
4885 .substreams = 1,
4886 .channels_min = 2,
4887 .channels_max = 2,
4888 .nid = 0, /* fill later */
4889 .ops = {
4890 .prepare = dyn_adc_capture_pcm_prepare,
4891 .cleanup = dyn_adc_capture_pcm_cleanup
4892 },
4893};
4894
Takashi Iwaif873e532012-12-20 16:58:39 +01004895static void fill_pcm_stream_name(char *str, size_t len, const char *sfx,
4896 const char *chip_name)
4897{
4898 char *p;
4899
4900 if (*str)
4901 return;
4902 strlcpy(str, chip_name, len);
4903
4904 /* drop non-alnum chars after a space */
4905 for (p = strchr(str, ' '); p; p = strchr(p + 1, ' ')) {
4906 if (!isalnum(p[1])) {
4907 *p = 0;
4908 break;
4909 }
4910 }
4911 strlcat(str, sfx, len);
4912}
4913
Takashi Iwai352f7f92012-12-19 12:52:06 +01004914/* build PCM streams based on the parsed results */
4915int snd_hda_gen_build_pcms(struct hda_codec *codec)
4916{
4917 struct hda_gen_spec *spec = codec->spec;
4918 struct hda_pcm *info = spec->pcm_rec;
4919 const struct hda_pcm_stream *p;
4920 bool have_multi_adcs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921
4922 codec->num_pcms = 1;
4923 codec->pcm_info = info;
4924
Takashi Iwai352f7f92012-12-19 12:52:06 +01004925 if (spec->no_analog)
4926 goto skip_analog;
4927
Takashi Iwaif873e532012-12-20 16:58:39 +01004928 fill_pcm_stream_name(spec->stream_name_analog,
4929 sizeof(spec->stream_name_analog),
4930 " Analog", codec->chip_name);
Takashi Iwai352f7f92012-12-19 12:52:06 +01004931 info->name = spec->stream_name_analog;
4932
4933 if (spec->multiout.num_dacs > 0) {
4934 p = spec->stream_analog_playback;
4935 if (!p)
4936 p = &pcm_analog_playback;
4937 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
4938 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
4939 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
4940 spec->multiout.max_channels;
4941 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT &&
4942 spec->autocfg.line_outs == 2)
4943 info->stream[SNDRV_PCM_STREAM_PLAYBACK].chmap =
4944 snd_pcm_2_1_chmaps;
4945 }
4946 if (spec->num_adc_nids) {
4947 p = spec->stream_analog_capture;
4948 if (!p) {
4949 if (spec->dyn_adc_switch)
4950 p = &dyn_adc_pcm_analog_capture;
4951 else
4952 p = &pcm_analog_capture;
4953 }
4954 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
4955 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
4956 }
4957
Takashi Iwai352f7f92012-12-19 12:52:06 +01004958 skip_analog:
4959 /* SPDIF for stream index #1 */
4960 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
Takashi Iwaif873e532012-12-20 16:58:39 +01004961 fill_pcm_stream_name(spec->stream_name_digital,
4962 sizeof(spec->stream_name_digital),
4963 " Digital", codec->chip_name);
Takashi Iwai352f7f92012-12-19 12:52:06 +01004964 codec->num_pcms = 2;
4965 codec->slave_dig_outs = spec->multiout.slave_dig_outs;
4966 info = spec->pcm_rec + 1;
4967 info->name = spec->stream_name_digital;
4968 if (spec->dig_out_type)
4969 info->pcm_type = spec->dig_out_type;
4970 else
4971 info->pcm_type = HDA_PCM_TYPE_SPDIF;
4972 if (spec->multiout.dig_out_nid) {
4973 p = spec->stream_digital_playback;
4974 if (!p)
4975 p = &pcm_digital_playback;
4976 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
4977 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
4978 }
4979 if (spec->dig_in_nid) {
4980 p = spec->stream_digital_capture;
4981 if (!p)
4982 p = &pcm_digital_capture;
4983 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
4984 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
4985 }
4986 }
4987
4988 if (spec->no_analog)
4989 return 0;
4990
4991 /* If the use of more than one ADC is requested for the current
4992 * model, configure a second analog capture-only PCM.
4993 */
4994 have_multi_adcs = (spec->num_adc_nids > 1) &&
4995 !spec->dyn_adc_switch && !spec->auto_mic;
4996 /* Additional Analaog capture for index #2 */
4997 if (spec->alt_dac_nid || have_multi_adcs) {
Takashi Iwaia6071482013-01-21 16:50:09 +01004998 fill_pcm_stream_name(spec->stream_name_alt_analog,
4999 sizeof(spec->stream_name_alt_analog),
5000 " Alt Analog", codec->chip_name);
Takashi Iwai352f7f92012-12-19 12:52:06 +01005001 codec->num_pcms = 3;
5002 info = spec->pcm_rec + 2;
Takashi Iwaia6071482013-01-21 16:50:09 +01005003 info->name = spec->stream_name_alt_analog;
Takashi Iwai352f7f92012-12-19 12:52:06 +01005004 if (spec->alt_dac_nid) {
5005 p = spec->stream_analog_alt_playback;
5006 if (!p)
5007 p = &pcm_analog_alt_playback;
5008 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
5009 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
5010 spec->alt_dac_nid;
5011 } else {
5012 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
5013 pcm_null_stream;
5014 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
5015 }
5016 if (have_multi_adcs) {
5017 p = spec->stream_analog_alt_capture;
5018 if (!p)
5019 p = &pcm_analog_alt_capture;
5020 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
5021 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
5022 spec->adc_nids[1];
5023 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
5024 spec->num_adc_nids - 1;
5025 } else {
5026 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
5027 pcm_null_stream;
5028 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0;
5029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 }
5031
5032 return 0;
5033}
Takashi Iwai352f7f92012-12-19 12:52:06 +01005034EXPORT_SYMBOL_HDA(snd_hda_gen_build_pcms);
5035
5036
5037/*
5038 * Standard auto-parser initializations
5039 */
5040
Takashi Iwaid4156932013-01-07 10:08:02 +01005041/* configure the given path as a proper output */
Takashi Iwai2c12c302013-01-10 09:33:29 +01005042static void set_output_and_unmute(struct hda_codec *codec, int path_idx)
Takashi Iwai352f7f92012-12-19 12:52:06 +01005043{
5044 struct nid_path *path;
Takashi Iwaid4156932013-01-07 10:08:02 +01005045 hda_nid_t pin;
Takashi Iwai352f7f92012-12-19 12:52:06 +01005046
Takashi Iwai196c17662013-01-04 15:01:40 +01005047 path = snd_hda_get_path_from_idx(codec, path_idx);
Takashi Iwaid4156932013-01-07 10:08:02 +01005048 if (!path || !path->depth)
Takashi Iwai352f7f92012-12-19 12:52:06 +01005049 return;
Takashi Iwaid4156932013-01-07 10:08:02 +01005050 pin = path->path[path->depth - 1];
Takashi Iwai2c12c302013-01-10 09:33:29 +01005051 restore_pin_ctl(codec, pin);
Takashi Iwai65033cc2013-04-16 12:31:05 +02005052 snd_hda_activate_path(codec, path, path->active,
5053 aamix_default(codec->spec));
Takashi Iwaie1284af2013-01-03 16:33:02 +01005054 set_pin_eapd(codec, pin, path->active);
Takashi Iwai352f7f92012-12-19 12:52:06 +01005055}
5056
5057/* initialize primary output paths */
5058static void init_multi_out(struct hda_codec *codec)
5059{
5060 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai352f7f92012-12-19 12:52:06 +01005061 int i;
5062
Takashi Iwaid4156932013-01-07 10:08:02 +01005063 for (i = 0; i < spec->autocfg.line_outs; i++)
Takashi Iwai2c12c302013-01-10 09:33:29 +01005064 set_output_and_unmute(codec, spec->out_paths[i]);
Takashi Iwai352f7f92012-12-19 12:52:06 +01005065}
5066
Takashi Iwaidb23fd12012-12-20 15:27:24 +01005067
Takashi Iwai2c12c302013-01-10 09:33:29 +01005068static void __init_extra_out(struct hda_codec *codec, int num_outs, int *paths)
Takashi Iwai352f7f92012-12-19 12:52:06 +01005069{
Takashi Iwai352f7f92012-12-19 12:52:06 +01005070 int i;
Takashi Iwai352f7f92012-12-19 12:52:06 +01005071
Takashi Iwaid4156932013-01-07 10:08:02 +01005072 for (i = 0; i < num_outs; i++)
Takashi Iwai2c12c302013-01-10 09:33:29 +01005073 set_output_and_unmute(codec, paths[i]);
Takashi Iwaidb23fd12012-12-20 15:27:24 +01005074}
5075
5076/* initialize hp and speaker paths */
5077static void init_extra_out(struct hda_codec *codec)
5078{
5079 struct hda_gen_spec *spec = codec->spec;
5080
5081 if (spec->autocfg.line_out_type != AUTO_PIN_HP_OUT)
Takashi Iwai2c12c302013-01-10 09:33:29 +01005082 __init_extra_out(codec, spec->autocfg.hp_outs, spec->hp_paths);
Takashi Iwaidb23fd12012-12-20 15:27:24 +01005083 if (spec->autocfg.line_out_type != AUTO_PIN_SPEAKER_OUT)
5084 __init_extra_out(codec, spec->autocfg.speaker_outs,
Takashi Iwai2c12c302013-01-10 09:33:29 +01005085 spec->speaker_paths);
Takashi Iwai352f7f92012-12-19 12:52:06 +01005086}
5087
5088/* initialize multi-io paths */
5089static void init_multi_io(struct hda_codec *codec)
5090{
5091 struct hda_gen_spec *spec = codec->spec;
5092 int i;
5093
5094 for (i = 0; i < spec->multi_ios; i++) {
5095 hda_nid_t pin = spec->multi_io[i].pin;
5096 struct nid_path *path;
Takashi Iwai196c17662013-01-04 15:01:40 +01005097 path = get_multiio_path(codec, i);
Takashi Iwai352f7f92012-12-19 12:52:06 +01005098 if (!path)
5099 continue;
5100 if (!spec->multi_io[i].ctl_in)
5101 spec->multi_io[i].ctl_in =
Takashi Iwai2c12c302013-01-10 09:33:29 +01005102 snd_hda_codec_get_pin_target(codec, pin);
Takashi Iwai65033cc2013-04-16 12:31:05 +02005103 snd_hda_activate_path(codec, path, path->active,
5104 aamix_default(spec));
Takashi Iwai352f7f92012-12-19 12:52:06 +01005105 }
5106}
5107
Takashi Iwai352f7f92012-12-19 12:52:06 +01005108/* set up input pins and loopback paths */
5109static void init_analog_input(struct hda_codec *codec)
5110{
5111 struct hda_gen_spec *spec = codec->spec;
5112 struct auto_pin_cfg *cfg = &spec->autocfg;
5113 int i;
5114
5115 for (i = 0; i < cfg->num_inputs; i++) {
5116 hda_nid_t nid = cfg->inputs[i].pin;
5117 if (is_input_pin(codec, nid))
Takashi Iwai2c12c302013-01-10 09:33:29 +01005118 restore_pin_ctl(codec, nid);
Takashi Iwai352f7f92012-12-19 12:52:06 +01005119
5120 /* init loopback inputs */
5121 if (spec->mixer_nid) {
Takashi Iwai3e367f12013-01-23 17:07:23 +01005122 resume_path_from_idx(codec, spec->loopback_paths[i]);
5123 resume_path_from_idx(codec, spec->loopback_merge_path);
Takashi Iwai352f7f92012-12-19 12:52:06 +01005124 }
5125 }
5126}
5127
5128/* initialize ADC paths */
5129static void init_input_src(struct hda_codec *codec)
5130{
5131 struct hda_gen_spec *spec = codec->spec;
5132 struct hda_input_mux *imux = &spec->input_mux;
5133 struct nid_path *path;
5134 int i, c, nums;
5135
5136 if (spec->dyn_adc_switch)
5137 nums = 1;
5138 else
5139 nums = spec->num_adc_nids;
5140
5141 for (c = 0; c < nums; c++) {
5142 for (i = 0; i < imux->num_items; i++) {
Takashi Iwaic697b712013-01-07 17:09:26 +01005143 path = get_input_path(codec, c, i);
Takashi Iwai352f7f92012-12-19 12:52:06 +01005144 if (path) {
5145 bool active = path->active;
5146 if (i == spec->cur_mux[c])
5147 active = true;
5148 snd_hda_activate_path(codec, path, active, false);
5149 }
5150 }
Takashi Iwai967303d2013-02-19 17:12:42 +01005151 if (spec->hp_mic)
5152 update_hp_mic(codec, c, true);
Takashi Iwai352f7f92012-12-19 12:52:06 +01005153 }
5154
Takashi Iwai352f7f92012-12-19 12:52:06 +01005155 if (spec->cap_sync_hook)
Takashi Iwaia90229e2013-01-18 14:10:00 +01005156 spec->cap_sync_hook(codec, NULL);
Takashi Iwai352f7f92012-12-19 12:52:06 +01005157}
5158
5159/* set right pin controls for digital I/O */
5160static void init_digital(struct hda_codec *codec)
5161{
5162 struct hda_gen_spec *spec = codec->spec;
5163 int i;
5164 hda_nid_t pin;
5165
Takashi Iwaid4156932013-01-07 10:08:02 +01005166 for (i = 0; i < spec->autocfg.dig_outs; i++)
Takashi Iwai2c12c302013-01-10 09:33:29 +01005167 set_output_and_unmute(codec, spec->digout_paths[i]);
Takashi Iwai352f7f92012-12-19 12:52:06 +01005168 pin = spec->autocfg.dig_in_pin;
Takashi Iwai2430d7b2013-01-04 15:09:42 +01005169 if (pin) {
Takashi Iwai2c12c302013-01-10 09:33:29 +01005170 restore_pin_ctl(codec, pin);
Takashi Iwai3e367f12013-01-23 17:07:23 +01005171 resume_path_from_idx(codec, spec->digin_path);
Takashi Iwai2430d7b2013-01-04 15:09:42 +01005172 }
Takashi Iwai352f7f92012-12-19 12:52:06 +01005173}
5174
Takashi Iwai973e4972012-12-20 15:16:09 +01005175/* clear unsol-event tags on unused pins; Conexant codecs seem to leave
5176 * invalid unsol tags by some reason
5177 */
5178static void clear_unsol_on_unused_pins(struct hda_codec *codec)
5179{
5180 int i;
5181
5182 for (i = 0; i < codec->init_pins.used; i++) {
5183 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
5184 hda_nid_t nid = pin->nid;
5185 if (is_jack_detectable(codec, nid) &&
5186 !snd_hda_jack_tbl_get(codec, nid))
5187 snd_hda_codec_update_cache(codec, nid, 0,
5188 AC_VERB_SET_UNSOLICITED_ENABLE, 0);
5189 }
5190}
5191
Takashi Iwai5187ac12013-01-07 12:52:16 +01005192/*
5193 * initialize the generic spec;
5194 * this can be put as patch_ops.init function
5195 */
Takashi Iwai352f7f92012-12-19 12:52:06 +01005196int snd_hda_gen_init(struct hda_codec *codec)
5197{
5198 struct hda_gen_spec *spec = codec->spec;
5199
5200 if (spec->init_hook)
5201 spec->init_hook(codec);
5202
5203 snd_hda_apply_verbs(codec);
5204
Takashi Iwai3bbcd272012-12-20 11:50:58 +01005205 codec->cached_write = 1;
5206
Takashi Iwai352f7f92012-12-19 12:52:06 +01005207 init_multi_out(codec);
5208 init_extra_out(codec);
5209 init_multi_io(codec);
5210 init_analog_input(codec);
5211 init_input_src(codec);
5212 init_digital(codec);
5213
Takashi Iwai973e4972012-12-20 15:16:09 +01005214 clear_unsol_on_unused_pins(codec);
5215
Takashi Iwai352f7f92012-12-19 12:52:06 +01005216 /* call init functions of standard auto-mute helpers */
Takashi Iwaia5cc2502013-01-16 18:08:55 +01005217 update_automute_all(codec);
Takashi Iwai352f7f92012-12-19 12:52:06 +01005218
Takashi Iwaidc870f32013-01-22 15:24:30 +01005219 snd_hda_codec_flush_cache(codec);
Takashi Iwai3bbcd272012-12-20 11:50:58 +01005220
Takashi Iwai352f7f92012-12-19 12:52:06 +01005221 if (spec->vmaster_mute.sw_kctl && spec->vmaster_mute.hook)
5222 snd_hda_sync_vmaster_hook(&spec->vmaster_mute);
5223
5224 hda_call_check_power_status(codec, 0x01);
5225 return 0;
5226}
Takashi Iwaifce52a32013-01-07 12:42:48 +01005227EXPORT_SYMBOL_HDA(snd_hda_gen_init);
5228
Takashi Iwai5187ac12013-01-07 12:52:16 +01005229/*
5230 * free the generic spec;
5231 * this can be put as patch_ops.free function
5232 */
Takashi Iwaifce52a32013-01-07 12:42:48 +01005233void snd_hda_gen_free(struct hda_codec *codec)
5234{
Takashi Iwai7504b6c2013-03-18 11:25:51 +01005235 snd_hda_detach_beep_device(codec);
Takashi Iwaifce52a32013-01-07 12:42:48 +01005236 snd_hda_gen_spec_free(codec->spec);
5237 kfree(codec->spec);
5238 codec->spec = NULL;
5239}
5240EXPORT_SYMBOL_HDA(snd_hda_gen_free);
5241
5242#ifdef CONFIG_PM
Takashi Iwai5187ac12013-01-07 12:52:16 +01005243/*
5244 * check the loopback power save state;
5245 * this can be put as patch_ops.check_power_status function
5246 */
Takashi Iwaifce52a32013-01-07 12:42:48 +01005247int snd_hda_gen_check_power_status(struct hda_codec *codec, hda_nid_t nid)
5248{
5249 struct hda_gen_spec *spec = codec->spec;
5250 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
5251}
5252EXPORT_SYMBOL_HDA(snd_hda_gen_check_power_status);
5253#endif
Takashi Iwai352f7f92012-12-19 12:52:06 +01005254
5255
5256/*
5257 * the generic codec support
5258 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
Takashi Iwai352f7f92012-12-19 12:52:06 +01005260static const struct hda_codec_ops generic_patch_ops = {
5261 .build_controls = snd_hda_gen_build_controls,
5262 .build_pcms = snd_hda_gen_build_pcms,
5263 .init = snd_hda_gen_init,
Takashi Iwaifce52a32013-01-07 12:42:48 +01005264 .free = snd_hda_gen_free,
Takashi Iwai352f7f92012-12-19 12:52:06 +01005265 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwai83012a72012-08-24 18:38:08 +02005266#ifdef CONFIG_PM
Takashi Iwaifce52a32013-01-07 12:42:48 +01005267 .check_power_status = snd_hda_gen_check_power_status,
Takashi Iwaicb53c622007-08-10 17:21:45 +02005268#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269};
5270
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271int snd_hda_parse_generic_codec(struct hda_codec *codec)
5272{
Takashi Iwai352f7f92012-12-19 12:52:06 +01005273 struct hda_gen_spec *spec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274 int err;
5275
Takashi Iwaie560d8d2005-09-09 14:21:46 +02005276 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Takashi Iwai352f7f92012-12-19 12:52:06 +01005277 if (!spec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278 return -ENOMEM;
Takashi Iwai352f7f92012-12-19 12:52:06 +01005279 snd_hda_gen_spec_init(spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 codec->spec = spec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281
Takashi Iwai9eb413e2012-12-19 14:41:21 +01005282 err = snd_hda_parse_pin_defcfg(codec, &spec->autocfg, NULL, 0);
5283 if (err < 0)
5284 return err;
5285
5286 err = snd_hda_gen_parse_auto_config(codec, &spec->autocfg);
Takashi Iwai352f7f92012-12-19 12:52:06 +01005287 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288 goto error;
5289
5290 codec->patch_ops = generic_patch_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291 return 0;
5292
Takashi Iwai352f7f92012-12-19 12:52:06 +01005293error:
Takashi Iwaifce52a32013-01-07 12:42:48 +01005294 snd_hda_gen_free(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295 return err;
5296}
Takashi Iwaifce52a32013-01-07 12:42:48 +01005297EXPORT_SYMBOL_HDA(snd_hda_parse_generic_codec);