blob: bc2114475810c625250cd5763402b89530e12c91 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Driver for Digigram VXpocket soundcards
4 *
5 * VX-pocket mixer
6 *
7 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <sound/core.h>
11#include <sound/control.h>
Takashi Iwaid0ae4842006-08-29 18:15:15 +020012#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "vxpocket.h"
14
15#define MIC_LEVEL_MIN 0
16#define MIC_LEVEL_MAX 8
17
18/*
19 * mic level control (for VXPocket)
20 */
Takashi Iwaiaf263672005-11-17 14:46:59 +010021static int vx_mic_level_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022{
23 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
24 uinfo->count = 1;
25 uinfo->value.integer.min = 0;
26 uinfo->value.integer.max = MIC_LEVEL_MAX;
27 return 0;
28}
29
Takashi Iwaiaf263672005-11-17 14:46:59 +010030static int vx_mic_level_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
Takashi Iwaiaf263672005-11-17 14:46:59 +010032 struct vx_core *_chip = snd_kcontrol_chip(kcontrol);
Takashi Iwai2e0de6e2017-05-12 10:03:35 +020033 struct snd_vxpocket *chip = to_vxpocket(_chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 ucontrol->value.integer.value[0] = chip->mic_level;
35 return 0;
36}
37
Takashi Iwaiaf263672005-11-17 14:46:59 +010038static int vx_mic_level_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Takashi Iwaiaf263672005-11-17 14:46:59 +010040 struct vx_core *_chip = snd_kcontrol_chip(kcontrol);
Takashi Iwai2e0de6e2017-05-12 10:03:35 +020041 struct snd_vxpocket *chip = to_vxpocket(_chip);
Takashi Iwaid05ab182007-11-15 16:13:32 +010042 unsigned int val = ucontrol->value.integer.value[0];
43
44 if (val > MIC_LEVEL_MAX)
45 return -EINVAL;
Ingo Molnar12aa7572006-01-16 16:36:05 +010046 mutex_lock(&_chip->mixer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 if (chip->mic_level != ucontrol->value.integer.value[0]) {
48 vx_set_mic_level(_chip, ucontrol->value.integer.value[0]);
49 chip->mic_level = ucontrol->value.integer.value[0];
Ingo Molnar12aa7572006-01-16 16:36:05 +010050 mutex_unlock(&_chip->mixer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 return 1;
52 }
Ingo Molnar12aa7572006-01-16 16:36:05 +010053 mutex_unlock(&_chip->mixer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 return 0;
55}
56
Takashi Iwai0cb29ea2007-01-29 15:33:49 +010057static const DECLARE_TLV_DB_SCALE(db_scale_mic, -21, 3, 0);
Takashi Iwaid0ae4842006-08-29 18:15:15 +020058
Bhumika Goyal905e46a2017-05-27 20:16:15 +053059static const struct snd_kcontrol_new vx_control_mic_level = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Takashi Iwaid0ae4842006-08-29 18:15:15 +020061 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE |
62 SNDRV_CTL_ELEM_ACCESS_TLV_READ),
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 .name = "Mic Capture Volume",
64 .info = vx_mic_level_info,
65 .get = vx_mic_level_get,
66 .put = vx_mic_level_put,
Takashi Iwaid0ae4842006-08-29 18:15:15 +020067 .tlv = { .p = db_scale_mic },
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
70/*
71 * mic boost level control (for VXP440)
72 */
Takashi Iwaia5ce8892007-07-23 15:42:26 +020073#define vx_mic_boost_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Takashi Iwaiaf263672005-11-17 14:46:59 +010075static int vx_mic_boost_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Takashi Iwaiaf263672005-11-17 14:46:59 +010077 struct vx_core *_chip = snd_kcontrol_chip(kcontrol);
Takashi Iwai2e0de6e2017-05-12 10:03:35 +020078 struct snd_vxpocket *chip = to_vxpocket(_chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 ucontrol->value.integer.value[0] = chip->mic_level;
80 return 0;
81}
82
Takashi Iwaiaf263672005-11-17 14:46:59 +010083static int vx_mic_boost_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Takashi Iwaiaf263672005-11-17 14:46:59 +010085 struct vx_core *_chip = snd_kcontrol_chip(kcontrol);
Takashi Iwai2e0de6e2017-05-12 10:03:35 +020086 struct snd_vxpocket *chip = to_vxpocket(_chip);
Takashi Iwaid05ab182007-11-15 16:13:32 +010087 int val = !!ucontrol->value.integer.value[0];
Ingo Molnar12aa7572006-01-16 16:36:05 +010088 mutex_lock(&_chip->mixer_mutex);
Takashi Iwaid05ab182007-11-15 16:13:32 +010089 if (chip->mic_level != val) {
90 vx_set_mic_boost(_chip, val);
91 chip->mic_level = val;
Ingo Molnar12aa7572006-01-16 16:36:05 +010092 mutex_unlock(&_chip->mixer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 return 1;
94 }
Ingo Molnar12aa7572006-01-16 16:36:05 +010095 mutex_unlock(&_chip->mixer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return 0;
97}
98
Bhumika Goyal905e46a2017-05-27 20:16:15 +053099static const struct snd_kcontrol_new vx_control_mic_boost = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
101 .name = "Mic Boost",
102 .info = vx_mic_boost_info,
103 .get = vx_mic_boost_get,
104 .put = vx_mic_boost_put,
105};
106
107
Takashi Iwaiaf263672005-11-17 14:46:59 +0100108int vxp_add_mic_controls(struct vx_core *_chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Takashi Iwai2e0de6e2017-05-12 10:03:35 +0200110 struct snd_vxpocket *chip = to_vxpocket(_chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 int err;
112
113 /* mute input levels */
114 chip->mic_level = 0;
115 switch (_chip->type) {
116 case VX_TYPE_VXPOCKET:
117 vx_set_mic_level(_chip, 0);
118 break;
119 case VX_TYPE_VXP440:
120 vx_set_mic_boost(_chip, 0);
121 break;
122 }
123
124 /* mic level */
125 switch (_chip->type) {
126 case VX_TYPE_VXPOCKET:
Takashi Iwai2073fa42021-06-08 16:05:31 +0200127 err = snd_ctl_add(_chip->card, snd_ctl_new1(&vx_control_mic_level, chip));
128 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return err;
130 break;
131 case VX_TYPE_VXP440:
Takashi Iwai2073fa42021-06-08 16:05:31 +0200132 err = snd_ctl_add(_chip->card, snd_ctl_new1(&vx_control_mic_boost, chip));
133 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return err;
135 break;
136 }
137
138 return 0;
139}
140