[alsa-devel] [PATCH 2/4] ALSA: hdsp - Implement generic function to toggle settings
Takashi Iwai
tiwai at suse.de
Tue Jan 15 09:59:21 CET 2013
At Tue, 15 Jan 2013 07:48:52 +0100,
Takashi Iwai wrote:
>
> At Mon, 14 Jan 2013 21:37:18 +0100,
> Adrian Knoth wrote:
> >
> > The driver contains multiple similar functions that change only a single
> > bit in the control register, only the bit position varies.
> >
> > This patch implements a generic function to toggle a certain bit
> > position that will be used to replace the old code.
> >
> > Signed-off-by: Adrian Knoth <adi at drcomp.erfurt.thur.de>
> >
> > diff --git a/sound/pci/rme9652/hdsp.c b/sound/pci/rme9652/hdsp.c
> > index bcad9ba..f51726a 100644
> > --- a/sound/pci/rme9652/hdsp.c
> > +++ b/sound/pci/rme9652/hdsp.c
> > @@ -1711,6 +1711,64 @@ static int snd_hdsp_put_spdif_in(struct snd_kcontrol *kcontrol, struct snd_ctl_e
> > return change;
> > }
> >
> > +#define HDSP_TOGGLE_SETTING(xname, xindex) \
> > +{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
> > + .name = xname, \
> > + .private_value = xindex, \
> > + .info = snd_hdsp_info_toggle_setting, \
> > + .get = snd_hdsp_get_toggle_setting, \
> > + .put = snd_hdsp_put_toggle_setting \
> > +}
> > +
> > +static int hdsp_toggle_setting(struct hdsp *hdsp, u32 regmask)
> > +{
> > + return (hdsp->control_register & regmask) ? 1 : 0;
> > +}
> > +
> > +static int hdsp_set_toggle_setting(struct hdsp *hdsp, u32 regmask, int out)
> > +{
> > + if (out)
> > + hdsp->control_register |= regmask;
> > + else
> > + hdsp->control_register &= ~regmask;
> > + hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
> > +
> > + return 0;
> > +}
> > +
> > +#define snd_hdsp_info_toggle_setting snd_ctl_boolean_mono_info
> > +
> > +static int snd_hdsp_get_toggle_setting(struct snd_kcontrol *kcontrol,
> > + struct snd_ctl_elem_value *ucontrol)
> > +{
> > + struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
> > + u32 regmask = kcontrol->private_value;
> > +
> > + spin_lock_irq(&hdsp->lock);
> > + ucontrol->value.integer.value[0] = hdsp_toggle_setting(hdsp, regmask);
> > + spin_unlock_irq(&hdsp->lock);
> > + return 0;
> > +}
> > +
> > +static int snd_hdsp_put_toggle_setting(struct snd_kcontrol *kcontrol,
> > + struct snd_ctl_elem_value *ucontrol)
> > +{
> > + struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
> > + u32 regmask = kcontrol->private_value;
> > + int change;
> > + unsigned int val;
> > +
> > + if (!snd_hdsp_use_is_exclusive(hdsp))
> > + return -EBUSY;
> > + val = ucontrol->value.integer.value[0] & 1;
> > + spin_lock_irq(&hdsp->lock);
> > + change = (int) val != hdsp_toggle_setting(hdsp, regmask);
> > + hdsp_set_toggle_setting(hdsp, regmask, val);
>
> If it doesn't change, you don't have to call
> hdsp_set_toggle_setting().
I know the old code does it so, but we don't have to follow it in the
new code, too.
Takashi
More information about the Alsa-devel
mailing list