blob: 51dea49aadd4212b83263766d01f44a40bc0ac75 [file] [log] [blame]
Takashi Iwai23d30f22012-05-07 17:17:32 +02001/*
2 * BIOS auto-parser helper functions for HD-audio
3 *
4 * Copyright (c) 2012 Takashi Iwai <tiwai@suse.de>
5 *
6 * This driver is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11
12#include <linux/slab.h>
13#include <linux/export.h>
Takashi Iwaib9030a02012-11-29 10:18:57 +010014#include <linux/sort.h>
Takashi Iwai23d30f22012-05-07 17:17:32 +020015#include <sound/core.h>
16#include "hda_codec.h"
Takashi Iwai128bc4b2012-05-07 17:42:31 +020017#include "hda_local.h"
Takashi Iwai23d30f22012-05-07 17:17:32 +020018#include "hda_auto_parser.h"
19
Takashi Iwai128bc4b2012-05-07 17:42:31 +020020/*
21 * Helper for automatic pin configuration
22 */
23
24static int is_in_nid_list(hda_nid_t nid, const hda_nid_t *list)
25{
26 for (; *list; list++)
27 if (*list == nid)
28 return 1;
29 return 0;
30}
31
Takashi Iwaib9030a02012-11-29 10:18:57 +010032/* a pair of input pin and its sequence */
33struct auto_out_pin {
34 hda_nid_t pin;
35 short seq;
36};
37
38static int compare_seq(const void *ap, const void *bp)
39{
40 const struct auto_out_pin *a = ap;
41 const struct auto_out_pin *b = bp;
42 return (int)(a->seq - b->seq);
43}
Takashi Iwai128bc4b2012-05-07 17:42:31 +020044
45/*
46 * Sort an associated group of pins according to their sequence numbers.
Takashi Iwaib9030a02012-11-29 10:18:57 +010047 * then store it to a pin array.
Takashi Iwai128bc4b2012-05-07 17:42:31 +020048 */
Takashi Iwaib9030a02012-11-29 10:18:57 +010049static void sort_pins_by_sequence(hda_nid_t *pins, struct auto_out_pin *list,
Takashi Iwai128bc4b2012-05-07 17:42:31 +020050 int num_pins)
51{
Takashi Iwaib9030a02012-11-29 10:18:57 +010052 int i;
53 sort(list, num_pins, sizeof(list[0]), compare_seq, NULL);
54 for (i = 0; i < num_pins; i++)
55 pins[i] = list[i].pin;
Takashi Iwai128bc4b2012-05-07 17:42:31 +020056}
57
58
59/* add the found input-pin to the cfg->inputs[] table */
60static void add_auto_cfg_input_pin(struct auto_pin_cfg *cfg, hda_nid_t nid,
61 int type)
62{
63 if (cfg->num_inputs < AUTO_CFG_MAX_INS) {
64 cfg->inputs[cfg->num_inputs].pin = nid;
65 cfg->inputs[cfg->num_inputs].type = type;
66 cfg->num_inputs++;
67 }
68}
69
Takashi Iwaib9030a02012-11-29 10:18:57 +010070static int compare_input_type(const void *ap, const void *bp)
Takashi Iwai128bc4b2012-05-07 17:42:31 +020071{
Takashi Iwaib9030a02012-11-29 10:18:57 +010072 const struct auto_pin_cfg_item *a = ap;
73 const struct auto_pin_cfg_item *b = bp;
74 return (int)(a->type - b->type);
Takashi Iwai128bc4b2012-05-07 17:42:31 +020075}
76
77/* Reorder the surround channels
78 * ALSA sequence is front/surr/clfe/side
79 * HDA sequence is:
80 * 4-ch: front/surr => OK as it is
81 * 6-ch: front/clfe/surr
82 * 8-ch: front/clfe/rear/side|fc
83 */
84static void reorder_outputs(unsigned int nums, hda_nid_t *pins)
85{
86 hda_nid_t nid;
87
88 switch (nums) {
89 case 3:
90 case 4:
91 nid = pins[1];
92 pins[1] = pins[2];
93 pins[2] = nid;
94 break;
95 }
96}
97
Takashi Iwai52fd5cb2013-01-15 08:45:33 +010098/* check whether the given pin has a proper pin I/O capability bit */
99static bool check_pincap_validity(struct hda_codec *codec, hda_nid_t pin,
100 unsigned int dev)
101{
102 unsigned int pincap = snd_hda_query_pin_caps(codec, pin);
103
104 /* some old hardware don't return the proper pincaps */
105 if (!pincap)
106 return true;
107
108 switch (dev) {
109 case AC_JACK_LINE_OUT:
110 case AC_JACK_SPEAKER:
111 case AC_JACK_HP_OUT:
112 case AC_JACK_SPDIF_OUT:
113 case AC_JACK_DIG_OTHER_OUT:
114 return !!(pincap & AC_PINCAP_OUT);
115 default:
116 return !!(pincap & AC_PINCAP_IN);
117 }
118}
119
David Henningssoncb420b12013-04-11 11:30:28 +0200120static bool can_be_headset_mic(struct hda_codec *codec,
121 struct auto_pin_cfg_item *item,
122 int seq_number)
123{
124 int attr;
125 unsigned int def_conf;
126 if (item->type != AUTO_PIN_MIC)
127 return false;
128
129 if (item->is_headset_mic || item->is_headphone_mic)
130 return false; /* Already assigned */
131
132 def_conf = snd_hda_codec_get_pincfg(codec, item->pin);
133 attr = snd_hda_get_input_pin_attr(def_conf);
134 if (attr <= INPUT_PIN_ATTR_DOCK)
135 return false;
136
137 if (seq_number >= 0) {
138 int seq = get_defcfg_sequence(def_conf);
139 if (seq != seq_number)
140 return false;
141 }
142
143 return true;
144}
145
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200146/*
147 * Parse all pin widgets and store the useful pin nids to cfg
148 *
149 * The number of line-outs or any primary output is stored in line_outs,
150 * and the corresponding output pins are assigned to line_out_pins[],
151 * in the order of front, rear, CLFE, side, ...
152 *
153 * If more extra outputs (speaker and headphone) are found, the pins are
154 * assisnged to hp_pins[] and speaker_pins[], respectively. If no line-out jack
155 * is detected, one of speaker of HP pins is assigned as the primary
156 * output, i.e. to line_out_pins[0]. So, line_outs is always positive
157 * if any analog output exists.
158 *
159 * The analog input pins are assigned to inputs array.
160 * The digital input/output pins are assigned to dig_in_pin and dig_out_pin,
161 * respectively.
162 */
163int snd_hda_parse_pin_defcfg(struct hda_codec *codec,
164 struct auto_pin_cfg *cfg,
165 const hda_nid_t *ignore_nids,
166 unsigned int cond_flags)
167{
168 hda_nid_t nid, end_nid;
169 short seq, assoc_line_out;
Takashi Iwaib9030a02012-11-29 10:18:57 +0100170 struct auto_out_pin line_out[ARRAY_SIZE(cfg->line_out_pins)];
171 struct auto_out_pin speaker_out[ARRAY_SIZE(cfg->speaker_pins)];
172 struct auto_out_pin hp_out[ARRAY_SIZE(cfg->hp_pins)];
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200173 int i;
174
Takashi Iwai1c70a582013-01-11 17:48:22 +0100175 if (!snd_hda_get_int_hint(codec, "parser_flags", &i))
176 cond_flags = i;
177
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200178 memset(cfg, 0, sizeof(*cfg));
179
Takashi Iwaib9030a02012-11-29 10:18:57 +0100180 memset(line_out, 0, sizeof(line_out));
181 memset(speaker_out, 0, sizeof(speaker_out));
182 memset(hp_out, 0, sizeof(hp_out));
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200183 assoc_line_out = 0;
184
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200185 end_nid = codec->start_nid + codec->num_nodes;
186 for (nid = codec->start_nid; nid < end_nid; nid++) {
187 unsigned int wid_caps = get_wcaps(codec, nid);
188 unsigned int wid_type = get_wcaps_type(wid_caps);
189 unsigned int def_conf;
190 short assoc, loc, conn, dev;
191
192 /* read all default configuration for pin complex */
193 if (wid_type != AC_WID_PIN)
194 continue;
195 /* ignore the given nids (e.g. pc-beep returns error) */
196 if (ignore_nids && is_in_nid_list(nid, ignore_nids))
197 continue;
198
199 def_conf = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200200 conn = get_defcfg_connect(def_conf);
201 if (conn == AC_JACK_PORT_NONE)
202 continue;
203 loc = get_defcfg_location(def_conf);
204 dev = get_defcfg_device(def_conf);
205
206 /* workaround for buggy BIOS setups */
207 if (dev == AC_JACK_LINE_OUT) {
Takashi Iwaifb690cf2013-01-07 18:21:47 +0100208 if (conn == AC_JACK_PORT_FIXED ||
209 conn == AC_JACK_PORT_BOTH)
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200210 dev = AC_JACK_SPEAKER;
211 }
212
Takashi Iwai52fd5cb2013-01-15 08:45:33 +0100213 if (!check_pincap_validity(codec, nid, dev))
214 continue;
215
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200216 switch (dev) {
217 case AC_JACK_LINE_OUT:
218 seq = get_defcfg_sequence(def_conf);
219 assoc = get_defcfg_association(def_conf);
220
221 if (!(wid_caps & AC_WCAP_STEREO))
222 if (!cfg->mono_out_pin)
223 cfg->mono_out_pin = nid;
224 if (!assoc)
225 continue;
226 if (!assoc_line_out)
227 assoc_line_out = assoc;
Takashi Iwai9b7564a2014-03-25 10:02:01 +0100228 else if (assoc_line_out != assoc) {
229 codec_info(codec,
230 "ignore pin 0x%x with mismatching assoc# 0x%x vs 0x%x\n",
231 nid, assoc, assoc_line_out);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200232 continue;
Takashi Iwai9b7564a2014-03-25 10:02:01 +0100233 }
234 if (cfg->line_outs >= ARRAY_SIZE(cfg->line_out_pins)) {
235 codec_info(codec,
236 "ignore pin 0x%x, too many assigned pins\n",
237 nid);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200238 continue;
Takashi Iwai9b7564a2014-03-25 10:02:01 +0100239 }
Takashi Iwaib9030a02012-11-29 10:18:57 +0100240 line_out[cfg->line_outs].pin = nid;
241 line_out[cfg->line_outs].seq = seq;
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200242 cfg->line_outs++;
243 break;
244 case AC_JACK_SPEAKER:
245 seq = get_defcfg_sequence(def_conf);
246 assoc = get_defcfg_association(def_conf);
Takashi Iwai9b7564a2014-03-25 10:02:01 +0100247 if (cfg->speaker_outs >= ARRAY_SIZE(cfg->speaker_pins)) {
248 codec_info(codec,
249 "ignore pin 0x%x, too many assigned pins\n",
250 nid);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200251 continue;
Takashi Iwai9b7564a2014-03-25 10:02:01 +0100252 }
Takashi Iwaib9030a02012-11-29 10:18:57 +0100253 speaker_out[cfg->speaker_outs].pin = nid;
254 speaker_out[cfg->speaker_outs].seq = (assoc << 4) | seq;
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200255 cfg->speaker_outs++;
256 break;
257 case AC_JACK_HP_OUT:
258 seq = get_defcfg_sequence(def_conf);
259 assoc = get_defcfg_association(def_conf);
Takashi Iwai9b7564a2014-03-25 10:02:01 +0100260 if (cfg->hp_outs >= ARRAY_SIZE(cfg->hp_pins)) {
261 codec_info(codec,
262 "ignore pin 0x%x, too many assigned pins\n",
263 nid);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200264 continue;
Takashi Iwai9b7564a2014-03-25 10:02:01 +0100265 }
Takashi Iwaib9030a02012-11-29 10:18:57 +0100266 hp_out[cfg->hp_outs].pin = nid;
267 hp_out[cfg->hp_outs].seq = (assoc << 4) | seq;
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200268 cfg->hp_outs++;
269 break;
270 case AC_JACK_MIC_IN:
271 add_auto_cfg_input_pin(cfg, nid, AUTO_PIN_MIC);
272 break;
273 case AC_JACK_LINE_IN:
274 add_auto_cfg_input_pin(cfg, nid, AUTO_PIN_LINE_IN);
275 break;
276 case AC_JACK_CD:
277 add_auto_cfg_input_pin(cfg, nid, AUTO_PIN_CD);
278 break;
279 case AC_JACK_AUX:
280 add_auto_cfg_input_pin(cfg, nid, AUTO_PIN_AUX);
281 break;
282 case AC_JACK_SPDIF_OUT:
283 case AC_JACK_DIG_OTHER_OUT:
Takashi Iwai9b7564a2014-03-25 10:02:01 +0100284 if (cfg->dig_outs >= ARRAY_SIZE(cfg->dig_out_pins)) {
285 codec_info(codec,
286 "ignore pin 0x%x, too many assigned pins\n",
287 nid);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200288 continue;
Takashi Iwai9b7564a2014-03-25 10:02:01 +0100289 }
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200290 cfg->dig_out_pins[cfg->dig_outs] = nid;
291 cfg->dig_out_type[cfg->dig_outs] =
292 (loc == AC_JACK_LOC_HDMI) ?
293 HDA_PCM_TYPE_HDMI : HDA_PCM_TYPE_SPDIF;
294 cfg->dig_outs++;
295 break;
296 case AC_JACK_SPDIF_IN:
297 case AC_JACK_DIG_OTHER_IN:
298 cfg->dig_in_pin = nid;
299 if (loc == AC_JACK_LOC_HDMI)
300 cfg->dig_in_type = HDA_PCM_TYPE_HDMI;
301 else
302 cfg->dig_in_type = HDA_PCM_TYPE_SPDIF;
303 break;
304 }
305 }
306
David Henningssoncb420b12013-04-11 11:30:28 +0200307 /* Find a pin that could be a headset or headphone mic */
308 if (cond_flags & HDA_PINCFG_HEADSET_MIC || cond_flags & HDA_PINCFG_HEADPHONE_MIC) {
309 bool hsmic = !!(cond_flags & HDA_PINCFG_HEADSET_MIC);
310 bool hpmic = !!(cond_flags & HDA_PINCFG_HEADPHONE_MIC);
311 for (i = 0; (hsmic || hpmic) && (i < cfg->num_inputs); i++)
312 if (hsmic && can_be_headset_mic(codec, &cfg->inputs[i], 0xc)) {
313 cfg->inputs[i].is_headset_mic = 1;
314 hsmic = false;
315 } else if (hpmic && can_be_headset_mic(codec, &cfg->inputs[i], 0xd)) {
316 cfg->inputs[i].is_headphone_mic = 1;
317 hpmic = false;
318 }
319
320 /* If we didn't find our sequence number mark, fall back to any sequence number */
321 for (i = 0; (hsmic || hpmic) && (i < cfg->num_inputs); i++) {
322 if (!can_be_headset_mic(codec, &cfg->inputs[i], -1))
David Henningssona385d972013-03-21 12:16:29 +0100323 continue;
David Henningssoncb420b12013-04-11 11:30:28 +0200324 if (hsmic) {
325 cfg->inputs[i].is_headset_mic = 1;
326 hsmic = false;
327 } else if (hpmic) {
328 cfg->inputs[i].is_headphone_mic = 1;
329 hpmic = false;
330 }
David Henningssona385d972013-03-21 12:16:29 +0100331 }
David Henningssoncb420b12013-04-11 11:30:28 +0200332
333 if (hsmic)
Takashi Iwai4e76a882014-02-25 12:21:03 +0100334 codec_dbg(codec, "Told to look for a headset mic, but didn't find any.\n");
David Henningssoncb420b12013-04-11 11:30:28 +0200335 if (hpmic)
Takashi Iwai4e76a882014-02-25 12:21:03 +0100336 codec_dbg(codec, "Told to look for a headphone mic, but didn't find any.\n");
David Henningssona385d972013-03-21 12:16:29 +0100337 }
338
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200339 /* FIX-UP:
340 * If no line-out is defined but multiple HPs are found,
341 * some of them might be the real line-outs.
342 */
343 if (!cfg->line_outs && cfg->hp_outs > 1 &&
344 !(cond_flags & HDA_PINCFG_NO_HP_FIXUP)) {
345 int i = 0;
346 while (i < cfg->hp_outs) {
347 /* The real HPs should have the sequence 0x0f */
Takashi Iwaib9030a02012-11-29 10:18:57 +0100348 if ((hp_out[i].seq & 0x0f) == 0x0f) {
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200349 i++;
350 continue;
351 }
352 /* Move it to the line-out table */
Takashi Iwaib9030a02012-11-29 10:18:57 +0100353 line_out[cfg->line_outs++] = hp_out[i];
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200354 cfg->hp_outs--;
Takashi Iwaib9030a02012-11-29 10:18:57 +0100355 memmove(hp_out + i, hp_out + i + 1,
356 sizeof(hp_out[0]) * (cfg->hp_outs - i));
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200357 }
Takashi Iwaib9030a02012-11-29 10:18:57 +0100358 memset(hp_out + cfg->hp_outs, 0,
359 sizeof(hp_out[0]) * (AUTO_CFG_MAX_OUTS - cfg->hp_outs));
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200360 if (!cfg->hp_outs)
361 cfg->line_out_type = AUTO_PIN_HP_OUT;
362
363 }
364
365 /* sort by sequence */
Takashi Iwaib9030a02012-11-29 10:18:57 +0100366 sort_pins_by_sequence(cfg->line_out_pins, line_out, cfg->line_outs);
367 sort_pins_by_sequence(cfg->speaker_pins, speaker_out,
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200368 cfg->speaker_outs);
Takashi Iwaib9030a02012-11-29 10:18:57 +0100369 sort_pins_by_sequence(cfg->hp_pins, hp_out, cfg->hp_outs);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200370
371 /*
372 * FIX-UP: if no line-outs are detected, try to use speaker or HP pin
373 * as a primary output
374 */
375 if (!cfg->line_outs &&
376 !(cond_flags & HDA_PINCFG_NO_LO_FIXUP)) {
377 if (cfg->speaker_outs) {
378 cfg->line_outs = cfg->speaker_outs;
379 memcpy(cfg->line_out_pins, cfg->speaker_pins,
380 sizeof(cfg->speaker_pins));
381 cfg->speaker_outs = 0;
382 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
383 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
384 } else if (cfg->hp_outs) {
385 cfg->line_outs = cfg->hp_outs;
386 memcpy(cfg->line_out_pins, cfg->hp_pins,
387 sizeof(cfg->hp_pins));
388 cfg->hp_outs = 0;
389 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
390 cfg->line_out_type = AUTO_PIN_HP_OUT;
391 }
392 }
393
394 reorder_outputs(cfg->line_outs, cfg->line_out_pins);
395 reorder_outputs(cfg->hp_outs, cfg->hp_pins);
396 reorder_outputs(cfg->speaker_outs, cfg->speaker_pins);
397
Takashi Iwaib9030a02012-11-29 10:18:57 +0100398 /* sort inputs in the order of AUTO_PIN_* type */
399 sort(cfg->inputs, cfg->num_inputs, sizeof(cfg->inputs[0]),
400 compare_input_type, NULL);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200401
402 /*
403 * debug prints of the parsed results
404 */
Takashi Iwai4e76a882014-02-25 12:21:03 +0100405 codec_info(codec, "autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x) type:%s\n",
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200406 cfg->line_outs, cfg->line_out_pins[0], cfg->line_out_pins[1],
407 cfg->line_out_pins[2], cfg->line_out_pins[3],
408 cfg->line_out_pins[4],
409 cfg->line_out_type == AUTO_PIN_HP_OUT ? "hp" :
410 (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT ?
411 "speaker" : "line"));
Takashi Iwai4e76a882014-02-25 12:21:03 +0100412 codec_info(codec, " speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200413 cfg->speaker_outs, cfg->speaker_pins[0],
414 cfg->speaker_pins[1], cfg->speaker_pins[2],
415 cfg->speaker_pins[3], cfg->speaker_pins[4]);
Takashi Iwai4e76a882014-02-25 12:21:03 +0100416 codec_info(codec, " hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200417 cfg->hp_outs, cfg->hp_pins[0],
418 cfg->hp_pins[1], cfg->hp_pins[2],
419 cfg->hp_pins[3], cfg->hp_pins[4]);
Takashi Iwai4e76a882014-02-25 12:21:03 +0100420 codec_info(codec, " mono: mono_out=0x%x\n", cfg->mono_out_pin);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200421 if (cfg->dig_outs)
Takashi Iwai4e76a882014-02-25 12:21:03 +0100422 codec_info(codec, " dig-out=0x%x/0x%x\n",
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200423 cfg->dig_out_pins[0], cfg->dig_out_pins[1]);
Takashi Iwai4e76a882014-02-25 12:21:03 +0100424 codec_info(codec, " inputs:\n");
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200425 for (i = 0; i < cfg->num_inputs; i++) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100426 codec_info(codec, " %s=0x%x\n",
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200427 hda_get_autocfg_input_label(codec, cfg, i),
428 cfg->inputs[i].pin);
429 }
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200430 if (cfg->dig_in_pin)
Takashi Iwai4e76a882014-02-25 12:21:03 +0100431 codec_info(codec, " dig-in=0x%x\n", cfg->dig_in_pin);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200432
433 return 0;
434}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100435EXPORT_SYMBOL_GPL(snd_hda_parse_pin_defcfg);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200436
437int snd_hda_get_input_pin_attr(unsigned int def_conf)
438{
439 unsigned int loc = get_defcfg_location(def_conf);
440 unsigned int conn = get_defcfg_connect(def_conf);
441 if (conn == AC_JACK_PORT_NONE)
442 return INPUT_PIN_ATTR_UNUSED;
443 /* Windows may claim the internal mic to be BOTH, too */
444 if (conn == AC_JACK_PORT_FIXED || conn == AC_JACK_PORT_BOTH)
445 return INPUT_PIN_ATTR_INT;
446 if ((loc & 0x30) == AC_JACK_LOC_INTERNAL)
447 return INPUT_PIN_ATTR_INT;
448 if ((loc & 0x30) == AC_JACK_LOC_SEPARATE)
449 return INPUT_PIN_ATTR_DOCK;
450 if (loc == AC_JACK_LOC_REAR)
451 return INPUT_PIN_ATTR_REAR;
452 if (loc == AC_JACK_LOC_FRONT)
453 return INPUT_PIN_ATTR_FRONT;
454 return INPUT_PIN_ATTR_NORMAL;
455}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100456EXPORT_SYMBOL_GPL(snd_hda_get_input_pin_attr);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200457
458/**
459 * hda_get_input_pin_label - Give a label for the given input pin
460 *
461 * When check_location is true, the function checks the pin location
462 * for mic and line-in pins, and set an appropriate prefix like "Front",
463 * "Rear", "Internal".
464 */
465
466static const char *hda_get_input_pin_label(struct hda_codec *codec,
David Henningssona385d972013-03-21 12:16:29 +0100467 const struct auto_pin_cfg_item *item,
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200468 hda_nid_t pin, bool check_location)
469{
470 unsigned int def_conf;
471 static const char * const mic_names[] = {
Takashi Iwai5ec16d12012-11-28 18:11:59 +0100472 "Internal Mic", "Dock Mic", "Mic", "Rear Mic", "Front Mic"
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200473 };
474 int attr;
475
476 def_conf = snd_hda_codec_get_pincfg(codec, pin);
477
478 switch (get_defcfg_device(def_conf)) {
479 case AC_JACK_MIC_IN:
David Henningssona385d972013-03-21 12:16:29 +0100480 if (item && item->is_headset_mic)
481 return "Headset Mic";
David Henningssoncb420b12013-04-11 11:30:28 +0200482 if (item && item->is_headphone_mic)
483 return "Headphone Mic";
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200484 if (!check_location)
485 return "Mic";
486 attr = snd_hda_get_input_pin_attr(def_conf);
487 if (!attr)
488 return "None";
489 return mic_names[attr - 1];
490 case AC_JACK_LINE_IN:
491 if (!check_location)
492 return "Line";
493 attr = snd_hda_get_input_pin_attr(def_conf);
494 if (!attr)
495 return "None";
496 if (attr == INPUT_PIN_ATTR_DOCK)
497 return "Dock Line";
498 return "Line";
499 case AC_JACK_AUX:
500 return "Aux";
501 case AC_JACK_CD:
502 return "CD";
503 case AC_JACK_SPDIF_IN:
504 return "SPDIF In";
505 case AC_JACK_DIG_OTHER_IN:
506 return "Digital In";
Takashi Iwai54d778b2013-01-09 08:46:34 +0100507 case AC_JACK_HP_OUT:
508 return "Headphone Mic";
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200509 default:
510 return "Misc";
511 }
512}
513
514/* Check whether the location prefix needs to be added to the label.
515 * If all mic-jacks are in the same location (e.g. rear panel), we don't
516 * have to put "Front" prefix to each label. In such a case, returns false.
517 */
518static int check_mic_location_need(struct hda_codec *codec,
519 const struct auto_pin_cfg *cfg,
520 int input)
521{
522 unsigned int defc;
523 int i, attr, attr2;
524
525 defc = snd_hda_codec_get_pincfg(codec, cfg->inputs[input].pin);
526 attr = snd_hda_get_input_pin_attr(defc);
527 /* for internal or docking mics, we need locations */
528 if (attr <= INPUT_PIN_ATTR_NORMAL)
529 return 1;
530
531 attr = 0;
532 for (i = 0; i < cfg->num_inputs; i++) {
533 defc = snd_hda_codec_get_pincfg(codec, cfg->inputs[i].pin);
534 attr2 = snd_hda_get_input_pin_attr(defc);
535 if (attr2 >= INPUT_PIN_ATTR_NORMAL) {
536 if (attr && attr != attr2)
537 return 1; /* different locations found */
538 attr = attr2;
539 }
540 }
541 return 0;
542}
543
544/**
545 * hda_get_autocfg_input_label - Get a label for the given input
546 *
547 * Get a label for the given input pin defined by the autocfg item.
548 * Unlike hda_get_input_pin_label(), this function checks all inputs
549 * defined in autocfg and avoids the redundant mic/line prefix as much as
550 * possible.
551 */
552const char *hda_get_autocfg_input_label(struct hda_codec *codec,
553 const struct auto_pin_cfg *cfg,
554 int input)
555{
556 int type = cfg->inputs[input].type;
557 int has_multiple_pins = 0;
558
559 if ((input > 0 && cfg->inputs[input - 1].type == type) ||
560 (input < cfg->num_inputs - 1 && cfg->inputs[input + 1].type == type))
561 has_multiple_pins = 1;
562 if (has_multiple_pins && type == AUTO_PIN_MIC)
563 has_multiple_pins &= check_mic_location_need(codec, cfg, input);
David Henningssona385d972013-03-21 12:16:29 +0100564 return hda_get_input_pin_label(codec, &cfg->inputs[input],
565 cfg->inputs[input].pin,
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200566 has_multiple_pins);
567}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100568EXPORT_SYMBOL_GPL(hda_get_autocfg_input_label);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200569
570/* return the position of NID in the list, or -1 if not found */
571static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
572{
573 int i;
574 for (i = 0; i < nums; i++)
575 if (list[i] == nid)
576 return i;
577 return -1;
578}
579
580/* get a unique suffix or an index number */
581static const char *check_output_sfx(hda_nid_t nid, const hda_nid_t *pins,
582 int num_pins, int *indexp)
583{
584 static const char * const channel_sfx[] = {
585 " Front", " Surround", " CLFE", " Side"
586 };
587 int i;
588
589 i = find_idx_in_nid_list(nid, pins, num_pins);
590 if (i < 0)
591 return NULL;
592 if (num_pins == 1)
593 return "";
594 if (num_pins > ARRAY_SIZE(channel_sfx)) {
595 if (indexp)
596 *indexp = i;
597 return "";
598 }
599 return channel_sfx[i];
600}
601
David Henningssoneee3ed42012-10-03 11:12:53 +0200602static const char *check_output_pfx(struct hda_codec *codec, hda_nid_t nid)
603{
604 unsigned int def_conf = snd_hda_codec_get_pincfg(codec, nid);
605 int attr = snd_hda_get_input_pin_attr(def_conf);
606
607 /* check the location */
608 switch (attr) {
609 case INPUT_PIN_ATTR_DOCK:
610 return "Dock ";
611 case INPUT_PIN_ATTR_FRONT:
612 return "Front ";
613 }
614 return "";
615}
616
617static int get_hp_label_index(struct hda_codec *codec, hda_nid_t nid,
618 const hda_nid_t *pins, int num_pins)
619{
620 int i, j, idx = 0;
621
622 const char *pfx = check_output_pfx(codec, nid);
623
624 i = find_idx_in_nid_list(nid, pins, num_pins);
625 if (i < 0)
626 return -1;
627 for (j = 0; j < i; j++)
628 if (pfx == check_output_pfx(codec, pins[j]))
629 idx++;
630
631 return idx;
632}
633
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200634static int fill_audio_out_name(struct hda_codec *codec, hda_nid_t nid,
635 const struct auto_pin_cfg *cfg,
636 const char *name, char *label, int maxlen,
637 int *indexp)
638{
639 unsigned int def_conf = snd_hda_codec_get_pincfg(codec, nid);
640 int attr = snd_hda_get_input_pin_attr(def_conf);
David Henningssoneee3ed42012-10-03 11:12:53 +0200641 const char *pfx, *sfx = "";
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200642
643 /* handle as a speaker if it's a fixed line-out */
644 if (!strcmp(name, "Line Out") && attr == INPUT_PIN_ATTR_INT)
645 name = "Speaker";
David Henningssoneee3ed42012-10-03 11:12:53 +0200646 pfx = check_output_pfx(codec, nid);
647
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200648 if (cfg) {
649 /* try to give a unique suffix if needed */
650 sfx = check_output_sfx(nid, cfg->line_out_pins, cfg->line_outs,
651 indexp);
652 if (!sfx)
653 sfx = check_output_sfx(nid, cfg->speaker_pins, cfg->speaker_outs,
654 indexp);
655 if (!sfx) {
656 /* don't add channel suffix for Headphone controls */
David Henningssoneee3ed42012-10-03 11:12:53 +0200657 int idx = get_hp_label_index(codec, nid, cfg->hp_pins,
658 cfg->hp_outs);
Takashi Iwai728deec2013-10-28 11:39:23 +0100659 if (idx >= 0 && indexp)
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200660 *indexp = idx;
661 sfx = "";
662 }
663 }
664 snprintf(label, maxlen, "%s%s%s", pfx, name, sfx);
665 return 1;
666}
667
David Henningsson3f25dcf2013-01-18 15:43:03 +0100668#define is_hdmi_cfg(conf) \
669 (get_defcfg_location(conf) == AC_JACK_LOC_HDMI)
670
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200671/**
672 * snd_hda_get_pin_label - Get a label for the given I/O pin
673 *
674 * Get a label for the given pin. This function works for both input and
675 * output pins. When @cfg is given as non-NULL, the function tries to get
676 * an optimized label using hda_get_autocfg_input_label().
677 *
678 * This function tries to give a unique label string for the pin as much as
679 * possible. For example, when the multiple line-outs are present, it adds
680 * the channel suffix like "Front", "Surround", etc (only when @cfg is given).
681 * If no unique name with a suffix is available and @indexp is non-NULL, the
682 * index number is stored in the pointer.
683 */
684int snd_hda_get_pin_label(struct hda_codec *codec, hda_nid_t nid,
685 const struct auto_pin_cfg *cfg,
686 char *label, int maxlen, int *indexp)
687{
688 unsigned int def_conf = snd_hda_codec_get_pincfg(codec, nid);
689 const char *name = NULL;
690 int i;
David Henningsson3f25dcf2013-01-18 15:43:03 +0100691 bool hdmi;
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200692
693 if (indexp)
694 *indexp = 0;
695 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
696 return 0;
697
698 switch (get_defcfg_device(def_conf)) {
699 case AC_JACK_LINE_OUT:
700 return fill_audio_out_name(codec, nid, cfg, "Line Out",
701 label, maxlen, indexp);
702 case AC_JACK_SPEAKER:
703 return fill_audio_out_name(codec, nid, cfg, "Speaker",
704 label, maxlen, indexp);
705 case AC_JACK_HP_OUT:
706 return fill_audio_out_name(codec, nid, cfg, "Headphone",
707 label, maxlen, indexp);
708 case AC_JACK_SPDIF_OUT:
709 case AC_JACK_DIG_OTHER_OUT:
David Henningsson3f25dcf2013-01-18 15:43:03 +0100710 hdmi = is_hdmi_cfg(def_conf);
711 name = hdmi ? "HDMI" : "SPDIF";
712 if (cfg && indexp)
713 for (i = 0; i < cfg->dig_outs; i++) {
714 hda_nid_t pin = cfg->dig_out_pins[i];
715 unsigned int c;
716 if (pin == nid)
717 break;
718 c = snd_hda_codec_get_pincfg(codec, pin);
719 if (hdmi == is_hdmi_cfg(c))
720 (*indexp)++;
721 }
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200722 break;
723 default:
724 if (cfg) {
725 for (i = 0; i < cfg->num_inputs; i++) {
726 if (cfg->inputs[i].pin != nid)
727 continue;
728 name = hda_get_autocfg_input_label(codec, cfg, i);
729 if (name)
730 break;
731 }
732 }
733 if (!name)
David Henningssona385d972013-03-21 12:16:29 +0100734 name = hda_get_input_pin_label(codec, NULL, nid, true);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200735 break;
736 }
737 if (!name)
738 return 0;
739 strlcpy(label, name, maxlen);
740 return 1;
741}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100742EXPORT_SYMBOL_GPL(snd_hda_get_pin_label);
Takashi Iwai128bc4b2012-05-07 17:42:31 +0200743
Takashi Iwaic9ce6b22012-12-18 18:12:44 +0100744int snd_hda_add_verbs(struct hda_codec *codec,
745 const struct hda_verb *list)
Takashi Iwai23d30f22012-05-07 17:17:32 +0200746{
747 const struct hda_verb **v;
Takashi Iwaic9ce6b22012-12-18 18:12:44 +0100748 v = snd_array_new(&codec->verbs);
Takashi Iwai23d30f22012-05-07 17:17:32 +0200749 if (!v)
750 return -ENOMEM;
751 *v = list;
752 return 0;
753}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100754EXPORT_SYMBOL_GPL(snd_hda_add_verbs);
Takashi Iwai23d30f22012-05-07 17:17:32 +0200755
Takashi Iwaic9ce6b22012-12-18 18:12:44 +0100756void snd_hda_apply_verbs(struct hda_codec *codec)
Takashi Iwai23d30f22012-05-07 17:17:32 +0200757{
Takashi Iwai23d30f22012-05-07 17:17:32 +0200758 int i;
Takashi Iwaic9ce6b22012-12-18 18:12:44 +0100759 for (i = 0; i < codec->verbs.used; i++) {
760 struct hda_verb **v = snd_array_elem(&codec->verbs, i);
Takashi Iwai23d30f22012-05-07 17:17:32 +0200761 snd_hda_sequence_write(codec, *v);
762 }
763}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100764EXPORT_SYMBOL_GPL(snd_hda_apply_verbs);
Takashi Iwai23d30f22012-05-07 17:17:32 +0200765
766void snd_hda_apply_pincfgs(struct hda_codec *codec,
767 const struct hda_pintbl *cfg)
768{
769 for (; cfg->nid; cfg++)
770 snd_hda_codec_set_pincfg(codec, cfg->nid, cfg->val);
771}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100772EXPORT_SYMBOL_GPL(snd_hda_apply_pincfgs);
Takashi Iwai23d30f22012-05-07 17:17:32 +0200773
Takashi Iwaifd108212013-01-10 10:18:14 +0100774static void set_pin_targets(struct hda_codec *codec,
775 const struct hda_pintbl *cfg)
776{
777 for (; cfg->nid; cfg++)
778 snd_hda_set_pin_ctl_cache(codec, cfg->nid, cfg->val);
779}
780
Takashi Iwai1f578252013-01-23 18:10:10 +0100781static void apply_fixup(struct hda_codec *codec, int id, int action, int depth)
Takashi Iwai23d30f22012-05-07 17:17:32 +0200782{
Takashi Iwaic9ce6b22012-12-18 18:12:44 +0100783 const char *modelname = codec->fixup_name;
Takashi Iwai23d30f22012-05-07 17:17:32 +0200784
785 while (id >= 0) {
Takashi Iwaic9ce6b22012-12-18 18:12:44 +0100786 const struct hda_fixup *fix = codec->fixup_list + id;
Takashi Iwai23d30f22012-05-07 17:17:32 +0200787
Takashi Iwai1f578252013-01-23 18:10:10 +0100788 if (fix->chained_before)
789 apply_fixup(codec, fix->chain_id, action, depth + 1);
790
Takashi Iwai23d30f22012-05-07 17:17:32 +0200791 switch (fix->type) {
792 case HDA_FIXUP_PINS:
793 if (action != HDA_FIXUP_ACT_PRE_PROBE || !fix->v.pins)
794 break;
Takashi Iwai4e76a882014-02-25 12:21:03 +0100795 codec_dbg(codec, "%s: Apply pincfg for %s\n",
Takashi Iwai23d30f22012-05-07 17:17:32 +0200796 codec->chip_name, modelname);
797 snd_hda_apply_pincfgs(codec, fix->v.pins);
798 break;
799 case HDA_FIXUP_VERBS:
800 if (action != HDA_FIXUP_ACT_PROBE || !fix->v.verbs)
801 break;
Takashi Iwai4e76a882014-02-25 12:21:03 +0100802 codec_dbg(codec, "%s: Apply fix-verbs for %s\n",
Takashi Iwai23d30f22012-05-07 17:17:32 +0200803 codec->chip_name, modelname);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +0100804 snd_hda_add_verbs(codec, fix->v.verbs);
Takashi Iwai23d30f22012-05-07 17:17:32 +0200805 break;
806 case HDA_FIXUP_FUNC:
807 if (!fix->v.func)
808 break;
Takashi Iwai4e76a882014-02-25 12:21:03 +0100809 codec_dbg(codec, "%s: Apply fix-func for %s\n",
Takashi Iwai23d30f22012-05-07 17:17:32 +0200810 codec->chip_name, modelname);
811 fix->v.func(codec, fix, action);
812 break;
Takashi Iwaifd108212013-01-10 10:18:14 +0100813 case HDA_FIXUP_PINCTLS:
814 if (action != HDA_FIXUP_ACT_PROBE || !fix->v.pins)
815 break;
Takashi Iwai4e76a882014-02-25 12:21:03 +0100816 codec_dbg(codec, "%s: Apply pinctl for %s\n",
Takashi Iwaifd108212013-01-10 10:18:14 +0100817 codec->chip_name, modelname);
818 set_pin_targets(codec, fix->v.pins);
819 break;
Takashi Iwai23d30f22012-05-07 17:17:32 +0200820 default:
Takashi Iwai4e76a882014-02-25 12:21:03 +0100821 codec_err(codec, "%s: Invalid fixup type %d\n",
Takashi Iwai23d30f22012-05-07 17:17:32 +0200822 codec->chip_name, fix->type);
823 break;
824 }
Takashi Iwai1f578252013-01-23 18:10:10 +0100825 if (!fix->chained || fix->chained_before)
Takashi Iwai23d30f22012-05-07 17:17:32 +0200826 break;
827 if (++depth > 10)
828 break;
829 id = fix->chain_id;
830 }
831}
Takashi Iwai1f578252013-01-23 18:10:10 +0100832
833void snd_hda_apply_fixup(struct hda_codec *codec, int action)
834{
835 if (codec->fixup_list)
836 apply_fixup(codec, codec->fixup_id, action, 0);
837}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100838EXPORT_SYMBOL_GPL(snd_hda_apply_fixup);
Takashi Iwai23d30f22012-05-07 17:17:32 +0200839
David Henningsson20531412014-05-26 16:22:41 +0800840static bool pin_config_match(struct hda_codec *codec,
841 const struct hda_pintbl *pins)
842{
843 for (; pins->nid; pins++) {
844 u32 def_conf = snd_hda_codec_get_pincfg(codec, pins->nid);
Hui Wang37df0942014-05-29 15:59:17 +0800845 if (pins->val != def_conf)
David Henningsson20531412014-05-26 16:22:41 +0800846 return false;
847 }
848 return true;
849}
850
851void snd_hda_pick_pin_fixup(struct hda_codec *codec,
852 const struct snd_hda_pin_quirk *pin_quirk,
853 const struct hda_fixup *fixlist)
854{
855 const struct snd_hda_pin_quirk *pq;
856
David Henningssonf5662e12014-07-22 14:09:34 +0200857 if (codec->fixup_id != HDA_FIXUP_ID_NOT_SET)
David Henningsson20531412014-05-26 16:22:41 +0800858 return;
859
860 for (pq = pin_quirk; pq->subvendor; pq++) {
Hui Wang621b5a02014-05-26 16:22:42 +0800861 if ((codec->subsystem_id & 0xffff0000) != (pq->subvendor << 16))
David Henningsson20531412014-05-26 16:22:41 +0800862 continue;
863 if (codec->vendor_id != pq->codec)
864 continue;
865 if (pin_config_match(codec, pq->pins)) {
866 codec->fixup_id = pq->value;
867#ifdef CONFIG_SND_DEBUG_VERBOSE
868 codec->fixup_name = pq->name;
869#endif
870 codec->fixup_list = fixlist;
871 return;
872 }
873 }
874}
875EXPORT_SYMBOL_GPL(snd_hda_pick_pin_fixup);
876
Takashi Iwai23d30f22012-05-07 17:17:32 +0200877void snd_hda_pick_fixup(struct hda_codec *codec,
878 const struct hda_model_fixup *models,
879 const struct snd_pci_quirk *quirk,
880 const struct hda_fixup *fixlist)
881{
Takashi Iwai23d30f22012-05-07 17:17:32 +0200882 const struct snd_pci_quirk *q;
David Henningssonf5662e12014-07-22 14:09:34 +0200883 int id = HDA_FIXUP_ID_NOT_SET;
Takashi Iwai23d30f22012-05-07 17:17:32 +0200884 const char *name = NULL;
885
David Henningssonf5662e12014-07-22 14:09:34 +0200886 if (codec->fixup_id != HDA_FIXUP_ID_NOT_SET)
887 return;
888
Takashi Iwai23d30f22012-05-07 17:17:32 +0200889 /* when model=nofixup is given, don't pick up any fixups */
890 if (codec->modelname && !strcmp(codec->modelname, "nofixup")) {
Takashi Iwaic9ce6b22012-12-18 18:12:44 +0100891 codec->fixup_list = NULL;
David Henningssonf5662e12014-07-22 14:09:34 +0200892 codec->fixup_name = NULL;
893 codec->fixup_id = HDA_FIXUP_ID_NO_FIXUP;
Takashi Iwai23d30f22012-05-07 17:17:32 +0200894 return;
895 }
896
897 if (codec->modelname && models) {
898 while (models->name) {
899 if (!strcmp(codec->modelname, models->name)) {
David Henningssonc21c8cf2014-05-26 16:22:40 +0800900 codec->fixup_id = models->id;
901 codec->fixup_name = models->name;
David Henningsson8fffe7d2014-06-19 22:07:19 +0200902 codec->fixup_list = fixlist;
David Henningssonc21c8cf2014-05-26 16:22:40 +0800903 return;
Takashi Iwai23d30f22012-05-07 17:17:32 +0200904 }
905 models++;
906 }
907 }
David Henningssonf5662e12014-07-22 14:09:34 +0200908 if (quirk) {
Takashi Iwai23d30f22012-05-07 17:17:32 +0200909 q = snd_pci_quirk_lookup(codec->bus->pci, quirk);
910 if (q) {
911 id = q->value;
912#ifdef CONFIG_SND_DEBUG_VERBOSE
913 name = q->name;
914#endif
915 }
916 }
David Henningsson639aa4b2012-07-18 18:02:53 +0200917 if (id < 0 && quirk) {
Takashi Iwai697aeba2013-08-01 08:38:27 +0200918 for (q = quirk; q->subvendor || q->subdevice; q++) {
Takashi Iwai23d30f22012-05-07 17:17:32 +0200919 unsigned int vendorid =
920 q->subdevice | (q->subvendor << 16);
Takashi Iwaia33b7b02012-09-11 16:42:18 +0200921 unsigned int mask = 0xffff0000 | q->subdevice_mask;
922 if ((codec->subsystem_id & mask) == (vendorid & mask)) {
Takashi Iwai23d30f22012-05-07 17:17:32 +0200923 id = q->value;
924#ifdef CONFIG_SND_DEBUG_VERBOSE
925 name = q->name;
926#endif
927 break;
928 }
929 }
930 }
931
Takashi Iwaic9ce6b22012-12-18 18:12:44 +0100932 codec->fixup_id = id;
Takashi Iwai23d30f22012-05-07 17:17:32 +0200933 if (id >= 0) {
Takashi Iwaic9ce6b22012-12-18 18:12:44 +0100934 codec->fixup_list = fixlist;
935 codec->fixup_name = name;
Takashi Iwai23d30f22012-05-07 17:17:32 +0200936 }
937}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100938EXPORT_SYMBOL_GPL(snd_hda_pick_fixup);