blob: 9be4e282f2e02034e39c35ceaf31ae1f0827361d [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Takashi Iwai35be5442011-11-02 08:36:06 +01002/*
3 * Helper functions for jack-detection kcontrols
4 *
5 * Copyright (c) 2011 Takashi Iwai <tiwai@suse.de>
Takashi Iwai35be5442011-11-02 08:36:06 +01006 */
7
8#include <linux/kernel.h>
Takashi Iwaibf815bf2011-11-16 14:28:33 +01009#include <linux/export.h>
Takashi Iwai35be5442011-11-02 08:36:06 +010010#include <sound/core.h>
11#include <sound/control.h>
12
13#define jack_detect_kctl_info snd_ctl_boolean_mono_info
14
15static int jack_detect_kctl_get(struct snd_kcontrol *kcontrol,
16 struct snd_ctl_elem_value *ucontrol)
17{
18 ucontrol->value.integer.value[0] = kcontrol->private_value;
19 return 0;
20}
21
Bhumika Goyal905e46a2017-05-27 20:16:15 +053022static const struct snd_kcontrol_new jack_detect_kctl = {
Takashi Iwai35be5442011-11-02 08:36:06 +010023 /* name is filled later */
24 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
25 .access = SNDRV_CTL_ELEM_ACCESS_READ,
26 .info = jack_detect_kctl_info,
27 .get = jack_detect_kctl_get,
28};
29
Jie Yangb8dd0862015-04-27 21:20:57 +080030static int get_available_index(struct snd_card *card, const char *name)
31{
32 struct snd_ctl_elem_id sid;
33
34 memset(&sid, 0, sizeof(sid));
35
36 sid.index = 0;
37 sid.iface = SNDRV_CTL_ELEM_IFACE_CARD;
38 strlcpy(sid.name, name, sizeof(sid.name));
39
Takashi Iwai7378bc22015-06-26 06:59:57 +020040 while (snd_ctl_find_id(card, &sid)) {
Jie Yangb8dd0862015-04-27 21:20:57 +080041 sid.index++;
Takashi Iwai7378bc22015-06-26 06:59:57 +020042 /* reset numid; otherwise snd_ctl_find_id() hits this again */
43 sid.numid = 0;
44 }
Jie Yangb8dd0862015-04-27 21:20:57 +080045
46 return sid.index;
47}
48
49static void jack_kctl_name_gen(char *name, const char *src_name, int size)
50{
51 size_t count = strlen(src_name);
52 bool need_cat = true;
53
54 /* remove redundant " Jack" from src_name */
55 if (count >= 5)
56 need_cat = strncmp(&src_name[count - 5], " Jack", 5) ? true : false;
57
58 snprintf(name, size, need_cat ? "%s Jack" : "%s", src_name);
59
60}
61
Takashi Iwai35be5442011-11-02 08:36:06 +010062struct snd_kcontrol *
Jie Yang2ba2dfa2015-04-27 21:20:59 +080063snd_kctl_jack_new(const char *name, struct snd_card *card)
Takashi Iwai35be5442011-11-02 08:36:06 +010064{
65 struct snd_kcontrol *kctl;
Jie Yangb8dd0862015-04-27 21:20:57 +080066
Jie Yang2ba2dfa2015-04-27 21:20:59 +080067 kctl = snd_ctl_new1(&jack_detect_kctl, NULL);
Takashi Iwai35be5442011-11-02 08:36:06 +010068 if (!kctl)
69 return NULL;
Jie Yangb8dd0862015-04-27 21:20:57 +080070
71 jack_kctl_name_gen(kctl->id.name, name, sizeof(kctl->id.name));
Takashi Iwaid0a601c2015-05-29 14:06:32 +020072 kctl->id.index = get_available_index(card, kctl->id.name);
Takashi Iwai35be5442011-11-02 08:36:06 +010073 kctl->private_value = 0;
74 return kctl;
75}
Takashi Iwai35be5442011-11-02 08:36:06 +010076
77void snd_kctl_jack_report(struct snd_card *card,
78 struct snd_kcontrol *kctl, bool status)
79{
80 if (kctl->private_value == status)
81 return;
82 kctl->private_value = status;
83 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, &kctl->id);
84}