~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/sound/pcmcia/vx/vxp_mixer.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-or-later
  2 /*
  3  * Driver for Digigram VXpocket soundcards
  4  *
  5  * VX-pocket mixer
  6  *
  7  * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
  8  */
  9 
 10 #include <sound/core.h>
 11 #include <sound/control.h>
 12 #include <sound/tlv.h>
 13 #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  */
 21 static int vx_mic_level_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
 22 {
 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 
 30 static int vx_mic_level_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
 31 {
 32         struct vx_core *_chip = snd_kcontrol_chip(kcontrol);
 33         struct snd_vxpocket *chip = to_vxpocket(_chip);
 34         ucontrol->value.integer.value[0] = chip->mic_level;
 35         return 0;
 36 }
 37 
 38 static int vx_mic_level_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
 39 {
 40         struct vx_core *_chip = snd_kcontrol_chip(kcontrol);
 41         struct snd_vxpocket *chip = to_vxpocket(_chip);
 42         unsigned int val = ucontrol->value.integer.value[0];
 43 
 44         if (val > MIC_LEVEL_MAX)
 45                 return -EINVAL;
 46         mutex_lock(&_chip->mixer_mutex);
 47         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];
 50                 mutex_unlock(&_chip->mixer_mutex);
 51                 return 1;
 52         }
 53         mutex_unlock(&_chip->mixer_mutex);
 54         return 0;
 55 }
 56 
 57 static const DECLARE_TLV_DB_SCALE(db_scale_mic, -21, 3, 0);
 58 
 59 static const struct snd_kcontrol_new vx_control_mic_level = {
 60         .iface =        SNDRV_CTL_ELEM_IFACE_MIXER,
 61         .access =       (SNDRV_CTL_ELEM_ACCESS_READWRITE |
 62                          SNDRV_CTL_ELEM_ACCESS_TLV_READ),
 63         .name =         "Mic Capture Volume",
 64         .info =         vx_mic_level_info,
 65         .get =          vx_mic_level_get,
 66         .put =          vx_mic_level_put,
 67         .tlv = { .p = db_scale_mic },
 68 };
 69 
 70 /*
 71  * mic boost level control (for VXP440)
 72  */
 73 #define vx_mic_boost_info               snd_ctl_boolean_mono_info
 74 
 75 static int vx_mic_boost_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
 76 {
 77         struct vx_core *_chip = snd_kcontrol_chip(kcontrol);
 78         struct snd_vxpocket *chip = to_vxpocket(_chip);
 79         ucontrol->value.integer.value[0] = chip->mic_level;
 80         return 0;
 81 }
 82 
 83 static int vx_mic_boost_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
 84 {
 85         struct vx_core *_chip = snd_kcontrol_chip(kcontrol);
 86         struct snd_vxpocket *chip = to_vxpocket(_chip);
 87         int val = !!ucontrol->value.integer.value[0];
 88         mutex_lock(&_chip->mixer_mutex);
 89         if (chip->mic_level != val) {
 90                 vx_set_mic_boost(_chip, val);
 91                 chip->mic_level = val;
 92                 mutex_unlock(&_chip->mixer_mutex);
 93                 return 1;
 94         }
 95         mutex_unlock(&_chip->mixer_mutex);
 96         return 0;
 97 }
 98 
 99 static const struct snd_kcontrol_new vx_control_mic_boost = {
100         .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 
108 int vxp_add_mic_controls(struct vx_core *_chip)
109 {
110         struct snd_vxpocket *chip = to_vxpocket(_chip);
111         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:
127                 err = snd_ctl_add(_chip->card, snd_ctl_new1(&vx_control_mic_level, chip));
128                 if (err < 0)
129                         return err;
130                 break;
131         case VX_TYPE_VXP440:
132                 err = snd_ctl_add(_chip->card, snd_ctl_new1(&vx_control_mic_boost, chip));
133                 if (err < 0)
134                         return err;
135                 break;
136         }
137 
138         return 0;
139 }
140 
141 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php