2 * BIOS auto-parser helper functions for HD-audio
4 * Copyright (c) 2012 Takashi Iwai <tiwai@suse.de>
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.
12 #include <linux/slab.h>
13 #include <linux/export.h>
14 #include <linux/sort.h>
15 #include <sound/core.h>
16 #include "hda_codec.h"
17 #include "hda_local.h"
18 #include "hda_auto_parser.h"
21 * Helper for automatic pin configuration
24 static int is_in_nid_list(hda_nid_t nid
, const hda_nid_t
*list
)
32 /* a pair of input pin and its sequence */
38 static int compare_seq(const void *ap
, const void *bp
)
40 const struct auto_out_pin
*a
= ap
;
41 const struct auto_out_pin
*b
= bp
;
42 return (int)(a
->seq
- b
->seq
);
46 * Sort an associated group of pins according to their sequence numbers.
47 * then store it to a pin array.
49 static void sort_pins_by_sequence(hda_nid_t
*pins
, struct auto_out_pin
*list
,
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
;
59 /* add the found input-pin to the cfg->inputs[] table */
60 static void add_auto_cfg_input_pin(struct auto_pin_cfg
*cfg
, hda_nid_t nid
,
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
;
70 static int compare_input_type(const void *ap
, const void *bp
)
72 const struct auto_pin_cfg_item
*a
= ap
;
73 const struct auto_pin_cfg_item
*b
= bp
;
74 return (int)(a
->type
- b
->type
);
77 /* Reorder the surround channels
78 * ALSA sequence is front/surr/clfe/side
80 * 4-ch: front/surr => OK as it is
81 * 6-ch: front/clfe/surr
82 * 8-ch: front/clfe/rear/side|fc
84 static void reorder_outputs(unsigned int nums
, hda_nid_t
*pins
)
98 /* check whether the given pin has a proper pin I/O capability bit */
99 static bool check_pincap_validity(struct hda_codec
*codec
, hda_nid_t pin
,
102 unsigned int pincap
= snd_hda_query_pin_caps(codec
, pin
);
104 /* some old hardware don't return the proper pincaps */
109 case AC_JACK_LINE_OUT
:
110 case AC_JACK_SPEAKER
:
112 case AC_JACK_SPDIF_OUT
:
113 case AC_JACK_DIG_OTHER_OUT
:
114 return !!(pincap
& AC_PINCAP_OUT
);
116 return !!(pincap
& AC_PINCAP_IN
);
120 static bool can_be_headset_mic(struct hda_codec
*codec
,
121 struct auto_pin_cfg_item
*item
,
125 unsigned int def_conf
;
126 if (item
->type
!= AUTO_PIN_MIC
)
129 if (item
->is_headset_mic
|| item
->is_headphone_mic
)
130 return false; /* Already assigned */
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
)
137 if (seq_number
>= 0) {
138 int seq
= get_defcfg_sequence(def_conf
);
139 if (seq
!= seq_number
)
147 * Parse all pin widgets and store the useful pin nids to cfg
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, ...
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.
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,
163 int 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
)
168 hda_nid_t nid
, end_nid
;
169 short seq
, assoc_line_out
;
170 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
)];
175 if (!snd_hda_get_int_hint(codec
, "parser_flags", &i
))
178 memset(cfg
, 0, sizeof(*cfg
));
180 memset(line_out
, 0, sizeof(line_out
));
181 memset(speaker_out
, 0, sizeof(speaker_out
));
182 memset(hp_out
, 0, sizeof(hp_out
));
185 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
;
192 /* read all default configuration for pin complex */
193 if (wid_type
!= AC_WID_PIN
)
195 /* ignore the given nids (e.g. pc-beep returns error) */
196 if (ignore_nids
&& is_in_nid_list(nid
, ignore_nids
))
199 def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
200 conn
= get_defcfg_connect(def_conf
);
201 if (conn
== AC_JACK_PORT_NONE
)
203 loc
= get_defcfg_location(def_conf
);
204 dev
= get_defcfg_device(def_conf
);
206 /* workaround for buggy BIOS setups */
207 if (dev
== AC_JACK_LINE_OUT
) {
208 if (conn
== AC_JACK_PORT_FIXED
||
209 conn
== AC_JACK_PORT_BOTH
)
210 dev
= AC_JACK_SPEAKER
;
213 if (!check_pincap_validity(codec
, nid
, dev
))
217 case AC_JACK_LINE_OUT
:
218 seq
= get_defcfg_sequence(def_conf
);
219 assoc
= get_defcfg_association(def_conf
);
221 if (!(wid_caps
& AC_WCAP_STEREO
))
222 if (!cfg
->mono_out_pin
)
223 cfg
->mono_out_pin
= nid
;
227 assoc_line_out
= assoc
;
228 else if (assoc_line_out
!= assoc
) {
230 "ignore pin 0x%x with mismatching assoc# 0x%x vs 0x%x\n",
231 nid
, assoc
, assoc_line_out
);
234 if (cfg
->line_outs
>= ARRAY_SIZE(cfg
->line_out_pins
)) {
236 "ignore pin 0x%x, too many assigned pins\n",
240 line_out
[cfg
->line_outs
].pin
= nid
;
241 line_out
[cfg
->line_outs
].seq
= seq
;
244 case AC_JACK_SPEAKER
:
245 seq
= get_defcfg_sequence(def_conf
);
246 assoc
= get_defcfg_association(def_conf
);
247 if (cfg
->speaker_outs
>= ARRAY_SIZE(cfg
->speaker_pins
)) {
249 "ignore pin 0x%x, too many assigned pins\n",
253 speaker_out
[cfg
->speaker_outs
].pin
= nid
;
254 speaker_out
[cfg
->speaker_outs
].seq
= (assoc
<< 4) | seq
;
258 seq
= get_defcfg_sequence(def_conf
);
259 assoc
= get_defcfg_association(def_conf
);
260 if (cfg
->hp_outs
>= ARRAY_SIZE(cfg
->hp_pins
)) {
262 "ignore pin 0x%x, too many assigned pins\n",
266 hp_out
[cfg
->hp_outs
].pin
= nid
;
267 hp_out
[cfg
->hp_outs
].seq
= (assoc
<< 4) | seq
;
271 add_auto_cfg_input_pin(cfg
, nid
, AUTO_PIN_MIC
);
273 case AC_JACK_LINE_IN
:
274 add_auto_cfg_input_pin(cfg
, nid
, AUTO_PIN_LINE_IN
);
277 add_auto_cfg_input_pin(cfg
, nid
, AUTO_PIN_CD
);
280 add_auto_cfg_input_pin(cfg
, nid
, AUTO_PIN_AUX
);
282 case AC_JACK_SPDIF_OUT
:
283 case AC_JACK_DIG_OTHER_OUT
:
284 if (cfg
->dig_outs
>= ARRAY_SIZE(cfg
->dig_out_pins
)) {
286 "ignore pin 0x%x, too many assigned pins\n",
290 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
;
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
;
302 cfg
->dig_in_type
= HDA_PCM_TYPE_SPDIF
;
307 /* 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;
315 } else if (hpmic
&& can_be_headset_mic(codec
, &cfg
->inputs
[i
], 0xd)) {
316 cfg
->inputs
[i
].is_headphone_mic
= 1;
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))
325 cfg
->inputs
[i
].is_headset_mic
= 1;
328 cfg
->inputs
[i
].is_headphone_mic
= 1;
334 codec_dbg(codec
, "Told to look for a headset mic, but didn't find any.\n");
336 codec_dbg(codec
, "Told to look for a headphone mic, but didn't find any.\n");
340 * If no line-out is defined but multiple HPs are found,
341 * some of them might be the real line-outs.
343 if (!cfg
->line_outs
&& cfg
->hp_outs
> 1 &&
344 !(cond_flags
& HDA_PINCFG_NO_HP_FIXUP
)) {
346 while (i
< cfg
->hp_outs
) {
347 /* The real HPs should have the sequence 0x0f */
348 if ((hp_out
[i
].seq
& 0x0f) == 0x0f) {
352 /* Move it to the line-out table */
353 line_out
[cfg
->line_outs
++] = hp_out
[i
];
355 memmove(hp_out
+ i
, hp_out
+ i
+ 1,
356 sizeof(hp_out
[0]) * (cfg
->hp_outs
- i
));
358 memset(hp_out
+ cfg
->hp_outs
, 0,
359 sizeof(hp_out
[0]) * (AUTO_CFG_MAX_OUTS
- cfg
->hp_outs
));
361 cfg
->line_out_type
= AUTO_PIN_HP_OUT
;
365 /* sort by sequence */
366 sort_pins_by_sequence(cfg
->line_out_pins
, line_out
, cfg
->line_outs
);
367 sort_pins_by_sequence(cfg
->speaker_pins
, speaker_out
,
369 sort_pins_by_sequence(cfg
->hp_pins
, hp_out
, cfg
->hp_outs
);
372 * FIX-UP: if no line-outs are detected, try to use speaker or HP pin
373 * as a primary output
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
));
389 memset(cfg
->hp_pins
, 0, sizeof(cfg
->hp_pins
));
390 cfg
->line_out_type
= AUTO_PIN_HP_OUT
;
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
);
398 /* 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
);
403 * debug prints of the parsed results
405 codec_info(codec
, "autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x) type:%s\n",
406 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"));
412 codec_info(codec
, " speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
413 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]);
416 codec_info(codec
, " hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
417 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]);
420 codec_info(codec
, " mono: mono_out=0x%x\n", cfg
->mono_out_pin
);
422 codec_info(codec
, " dig-out=0x%x/0x%x\n",
423 cfg
->dig_out_pins
[0], cfg
->dig_out_pins
[1]);
424 codec_info(codec
, " inputs:\n");
425 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
426 codec_info(codec
, " %s=0x%x\n",
427 hda_get_autocfg_input_label(codec
, cfg
, i
),
431 codec_info(codec
, " dig-in=0x%x\n", cfg
->dig_in_pin
);
435 EXPORT_SYMBOL_GPL(snd_hda_parse_pin_defcfg
);
437 int snd_hda_get_input_pin_attr(unsigned int def_conf
)
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
;
456 EXPORT_SYMBOL_GPL(snd_hda_get_input_pin_attr
);
459 * hda_get_input_pin_label - Give a label for the given input pin
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".
466 static const char *hda_get_input_pin_label(struct hda_codec
*codec
,
467 const struct auto_pin_cfg_item
*item
,
468 hda_nid_t pin
, bool check_location
)
470 unsigned int def_conf
;
471 static const char * const mic_names
[] = {
472 "Internal Mic", "Dock Mic", "Mic", "Rear Mic", "Front Mic"
476 def_conf
= snd_hda_codec_get_pincfg(codec
, pin
);
478 switch (get_defcfg_device(def_conf
)) {
480 if (item
&& item
->is_headset_mic
)
481 return "Headset Mic";
482 if (item
&& item
->is_headphone_mic
)
483 return "Headphone Mic";
486 attr
= snd_hda_get_input_pin_attr(def_conf
);
489 return mic_names
[attr
- 1];
490 case AC_JACK_LINE_IN
:
493 attr
= snd_hda_get_input_pin_attr(def_conf
);
496 if (attr
== INPUT_PIN_ATTR_DOCK
)
503 case AC_JACK_SPDIF_IN
:
505 case AC_JACK_DIG_OTHER_IN
:
508 return "Headphone Mic";
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.
518 static int check_mic_location_need(struct hda_codec
*codec
,
519 const struct auto_pin_cfg
*cfg
,
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
)
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 */
545 * hda_get_autocfg_input_label - Get a label for the given input
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
552 const char *hda_get_autocfg_input_label(struct hda_codec
*codec
,
553 const struct auto_pin_cfg
*cfg
,
556 int type
= cfg
->inputs
[input
].type
;
557 int has_multiple_pins
= 0;
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
);
564 return hda_get_input_pin_label(codec
, &cfg
->inputs
[input
],
565 cfg
->inputs
[input
].pin
,
568 EXPORT_SYMBOL_GPL(hda_get_autocfg_input_label
);
570 /* return the position of NID in the list, or -1 if not found */
571 static int find_idx_in_nid_list(hda_nid_t nid
, const hda_nid_t
*list
, int nums
)
574 for (i
= 0; i
< nums
; i
++)
580 /* get a unique suffix or an index number */
581 static const char *check_output_sfx(hda_nid_t nid
, const hda_nid_t
*pins
,
582 int num_pins
, int *indexp
)
584 static const char * const channel_sfx
[] = {
585 " Front", " Surround", " CLFE", " Side"
589 i
= find_idx_in_nid_list(nid
, pins
, num_pins
);
594 if (num_pins
> ARRAY_SIZE(channel_sfx
)) {
599 return channel_sfx
[i
];
602 static const char *check_output_pfx(struct hda_codec
*codec
, hda_nid_t nid
)
604 unsigned int def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
605 int attr
= snd_hda_get_input_pin_attr(def_conf
);
607 /* check the location */
609 case INPUT_PIN_ATTR_DOCK
:
611 case INPUT_PIN_ATTR_FRONT
:
617 static int get_hp_label_index(struct hda_codec
*codec
, hda_nid_t nid
,
618 const hda_nid_t
*pins
, int num_pins
)
622 const char *pfx
= check_output_pfx(codec
, nid
);
624 i
= find_idx_in_nid_list(nid
, pins
, num_pins
);
627 for (j
= 0; j
< i
; j
++)
628 if (pfx
== check_output_pfx(codec
, pins
[j
]))
634 static 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
,
639 unsigned int def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
640 int attr
= snd_hda_get_input_pin_attr(def_conf
);
641 const char *pfx
, *sfx
= "";
643 /* handle as a speaker if it's a fixed line-out */
644 if (!strcmp(name
, "Line Out") && attr
== INPUT_PIN_ATTR_INT
)
646 pfx
= check_output_pfx(codec
, nid
);
649 /* try to give a unique suffix if needed */
650 sfx
= check_output_sfx(nid
, cfg
->line_out_pins
, cfg
->line_outs
,
653 sfx
= check_output_sfx(nid
, cfg
->speaker_pins
, cfg
->speaker_outs
,
656 /* don't add channel suffix for Headphone controls */
657 int idx
= get_hp_label_index(codec
, nid
, cfg
->hp_pins
,
659 if (idx
>= 0 && indexp
)
664 snprintf(label
, maxlen
, "%s%s%s", pfx
, name
, sfx
);
668 #define is_hdmi_cfg(conf) \
669 (get_defcfg_location(conf) == AC_JACK_LOC_HDMI)
672 * snd_hda_get_pin_label - Get a label for the given I/O pin
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().
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.
684 int 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
)
688 unsigned int def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
689 const char *name
= NULL
;
695 if (get_defcfg_connect(def_conf
) == AC_JACK_PORT_NONE
)
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
);
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
:
710 hdmi
= is_hdmi_cfg(def_conf
);
711 name
= hdmi
? "HDMI" : "SPDIF";
713 for (i
= 0; i
< cfg
->dig_outs
; i
++) {
714 hda_nid_t pin
= cfg
->dig_out_pins
[i
];
718 c
= snd_hda_codec_get_pincfg(codec
, pin
);
719 if (hdmi
== is_hdmi_cfg(c
))
725 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
726 if (cfg
->inputs
[i
].pin
!= nid
)
728 name
= hda_get_autocfg_input_label(codec
, cfg
, i
);
734 name
= hda_get_input_pin_label(codec
, NULL
, nid
, true);
739 strlcpy(label
, name
, maxlen
);
742 EXPORT_SYMBOL_GPL(snd_hda_get_pin_label
);
744 int snd_hda_add_verbs(struct hda_codec
*codec
,
745 const struct hda_verb
*list
)
747 const struct hda_verb
**v
;
748 v
= snd_array_new(&codec
->verbs
);
754 EXPORT_SYMBOL_GPL(snd_hda_add_verbs
);
756 void snd_hda_apply_verbs(struct hda_codec
*codec
)
759 for (i
= 0; i
< codec
->verbs
.used
; i
++) {
760 struct hda_verb
**v
= snd_array_elem(&codec
->verbs
, i
);
761 snd_hda_sequence_write(codec
, *v
);
764 EXPORT_SYMBOL_GPL(snd_hda_apply_verbs
);
766 void snd_hda_apply_pincfgs(struct hda_codec
*codec
,
767 const struct hda_pintbl
*cfg
)
769 for (; cfg
->nid
; cfg
++)
770 snd_hda_codec_set_pincfg(codec
, cfg
->nid
, cfg
->val
);
772 EXPORT_SYMBOL_GPL(snd_hda_apply_pincfgs
);
774 static void set_pin_targets(struct hda_codec
*codec
,
775 const struct hda_pintbl
*cfg
)
777 for (; cfg
->nid
; cfg
++)
778 snd_hda_set_pin_ctl_cache(codec
, cfg
->nid
, cfg
->val
);
781 static void apply_fixup(struct hda_codec
*codec
, int id
, int action
, int depth
)
783 const char *modelname
= codec
->fixup_name
;
786 const struct hda_fixup
*fix
= codec
->fixup_list
+ id
;
788 if (fix
->chained_before
)
789 apply_fixup(codec
, fix
->chain_id
, action
, depth
+ 1);
793 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
|| !fix
->v
.pins
)
795 codec_dbg(codec
, "%s: Apply pincfg for %s\n",
796 codec
->chip_name
, modelname
);
797 snd_hda_apply_pincfgs(codec
, fix
->v
.pins
);
799 case HDA_FIXUP_VERBS
:
800 if (action
!= HDA_FIXUP_ACT_PROBE
|| !fix
->v
.verbs
)
802 codec_dbg(codec
, "%s: Apply fix-verbs for %s\n",
803 codec
->chip_name
, modelname
);
804 snd_hda_add_verbs(codec
, fix
->v
.verbs
);
809 codec_dbg(codec
, "%s: Apply fix-func for %s\n",
810 codec
->chip_name
, modelname
);
811 fix
->v
.func(codec
, fix
, action
);
813 case HDA_FIXUP_PINCTLS
:
814 if (action
!= HDA_FIXUP_ACT_PROBE
|| !fix
->v
.pins
)
816 codec_dbg(codec
, "%s: Apply pinctl for %s\n",
817 codec
->chip_name
, modelname
);
818 set_pin_targets(codec
, fix
->v
.pins
);
821 codec_err(codec
, "%s: Invalid fixup type %d\n",
822 codec
->chip_name
, fix
->type
);
825 if (!fix
->chained
|| fix
->chained_before
)
833 void snd_hda_apply_fixup(struct hda_codec
*codec
, int action
)
835 if (codec
->fixup_list
)
836 apply_fixup(codec
, codec
->fixup_id
, action
, 0);
838 EXPORT_SYMBOL_GPL(snd_hda_apply_fixup
);
840 static bool pin_config_match(struct hda_codec
*codec
,
841 const struct hda_pintbl
*pins
)
843 for (; pins
->nid
; pins
++) {
844 u32 def_conf
= snd_hda_codec_get_pincfg(codec
, pins
->nid
);
845 if (pins
->val
!= def_conf
)
851 void snd_hda_pick_pin_fixup(struct hda_codec
*codec
,
852 const struct snd_hda_pin_quirk
*pin_quirk
,
853 const struct hda_fixup
*fixlist
)
855 const struct snd_hda_pin_quirk
*pq
;
857 if (codec
->fixup_forced
)
860 for (pq
= pin_quirk
; pq
->subvendor
; pq
++) {
861 if ((codec
->subsystem_id
& 0xffff0000) != (pq
->subvendor
<< 16))
863 if (codec
->vendor_id
!= pq
->codec
)
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
;
870 codec
->fixup_list
= fixlist
;
875 EXPORT_SYMBOL_GPL(snd_hda_pick_pin_fixup
);
877 void 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
)
882 const struct snd_pci_quirk
*q
;
884 const char *name
= NULL
;
886 /* when model=nofixup is given, don't pick up any fixups */
887 if (codec
->modelname
&& !strcmp(codec
->modelname
, "nofixup")) {
888 codec
->fixup_list
= NULL
;
889 codec
->fixup_id
= -1;
890 codec
->fixup_forced
= 1;
894 if (codec
->modelname
&& models
) {
895 while (models
->name
) {
896 if (!strcmp(codec
->modelname
, models
->name
)) {
897 codec
->fixup_id
= models
->id
;
898 codec
->fixup_name
= models
->name
;
899 codec
->fixup_list
= fixlist
;
900 codec
->fixup_forced
= 1;
906 if (id
< 0 && quirk
) {
907 q
= snd_pci_quirk_lookup(codec
->bus
->pci
, quirk
);
910 #ifdef CONFIG_SND_DEBUG_VERBOSE
915 if (id
< 0 && quirk
) {
916 for (q
= quirk
; q
->subvendor
|| q
->subdevice
; q
++) {
917 unsigned int vendorid
=
918 q
->subdevice
| (q
->subvendor
<< 16);
919 unsigned int mask
= 0xffff0000 | q
->subdevice_mask
;
920 if ((codec
->subsystem_id
& mask
) == (vendorid
& mask
)) {
922 #ifdef CONFIG_SND_DEBUG_VERBOSE
930 codec
->fixup_forced
= 0;
931 codec
->fixup_id
= id
;
933 codec
->fixup_list
= fixlist
;
934 codec
->fixup_name
= name
;
937 EXPORT_SYMBOL_GPL(snd_hda_pick_fixup
);