1 // SPDX-License-Identifier: GPL-2.0+
3 // soc-ops.c -- Generic ASoC operations
5 // Copyright 2005 Wolfson Microelectronics PLC.
6 // Copyright 2005 Openedhand Ltd.
7 // Copyright (C) 2010 Slimlogic Ltd.
8 // Copyright (C) 2010 Texas Instruments Inc.
10 // Author: Liam Girdwood <lrg@slimlogic.co.uk>
11 // with code, comments and ideas from :-
12 // Richard Purdie <richard@openedhand.com>
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/init.h>
17 #include <linux/delay.h>
19 #include <linux/bitops.h>
20 #include <linux/ctype.h>
21 #include <linux/slab.h>
22 #include <sound/core.h>
23 #include <sound/jack.h>
24 #include <sound/pcm.h>
25 #include <sound/pcm_params.h>
26 #include <sound/soc.h>
27 #include <sound/soc-dpcm.h>
28 #include <sound/initval.h>
31 * snd_soc_info_enum_double - enumerated double mixer info callback
32 * @kcontrol: mixer control
33 * @uinfo: control element information
35 * Callback to provide information about a double enumerated
38 * Returns 0 for success.
40 int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
41 struct snd_ctl_elem_info *uinfo)
43 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
45 return snd_ctl_enum_info(uinfo, e->shift_l == e->shift_r ? 1 : 2,
48 EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
51 * snd_soc_get_enum_double - enumerated double mixer get callback
52 * @kcontrol: mixer control
53 * @ucontrol: control element information
55 * Callback to get the value of a double enumerated mixer.
57 * Returns 0 for success.
59 int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
60 struct snd_ctl_elem_value *ucontrol)
62 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
63 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
64 unsigned int val, item;
67 reg_val = snd_soc_component_read(component, e->reg);
68 val = (reg_val >> e->shift_l) & e->mask;
69 item = snd_soc_enum_val_to_item(e, val);
70 ucontrol->value.enumerated.item[0] = item;
71 if (e->shift_l != e->shift_r) {
72 val = (reg_val >> e->shift_r) & e->mask;
73 item = snd_soc_enum_val_to_item(e, val);
74 ucontrol->value.enumerated.item[1] = item;
79 EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
82 * snd_soc_put_enum_double - enumerated double mixer put callback
83 * @kcontrol: mixer control
84 * @ucontrol: control element information
86 * Callback to set the value of a double enumerated mixer.
88 * Returns 0 for success.
90 int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
91 struct snd_ctl_elem_value *ucontrol)
93 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
94 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
95 unsigned int *item = ucontrol->value.enumerated.item;
99 if (item[0] >= e->items)
101 val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
102 mask = e->mask << e->shift_l;
103 if (e->shift_l != e->shift_r) {
104 if (item[1] >= e->items)
106 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_r;
107 mask |= e->mask << e->shift_r;
110 return snd_soc_component_update_bits(component, e->reg, mask, val);
112 EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
115 * snd_soc_read_signed - Read a codec register and interpret as signed value
116 * @component: component
117 * @reg: Register to read
118 * @mask: Mask to use after shifting the register value
119 * @shift: Right shift of register value
120 * @sign_bit: Bit that describes if a number is negative or not.
121 * @signed_val: Pointer to where the read value should be stored
123 * This functions reads a codec register. The register value is shifted right
124 * by 'shift' bits and masked with the given 'mask'. Afterwards it translates
125 * the given registervalue into a signed integer if sign_bit is non-zero.
127 * Returns 0 on sucess, otherwise an error value
129 static int snd_soc_read_signed(struct snd_soc_component *component,
130 unsigned int reg, unsigned int mask, unsigned int shift,
131 unsigned int sign_bit, int *signed_val)
136 val = snd_soc_component_read(component, reg);
137 val = (val >> shift) & mask;
144 /* non-negative number */
145 if (!(val & BIT(sign_bit))) {
153 * The register most probably does not contain a full-sized int.
154 * Instead we have an arbitrary number of bits in a signed
155 * representation which has to be translated into a full-sized int.
156 * This is done by filling up all bits above the sign-bit.
158 ret |= ~((int)(BIT(sign_bit) - 1));
166 * snd_soc_info_volsw - single mixer info callback
167 * @kcontrol: mixer control
168 * @uinfo: control element information
170 * Callback to provide information about a single mixer control, or a double
171 * mixer control that spans 2 registers.
173 * Returns 0 for success.
175 int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
176 struct snd_ctl_elem_info *uinfo)
178 struct soc_mixer_control *mc =
179 (struct soc_mixer_control *)kcontrol->private_value;
182 if (!mc->platform_max)
183 mc->platform_max = mc->max;
184 platform_max = mc->platform_max;
186 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
187 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
189 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
191 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
192 uinfo->value.integer.min = 0;
193 uinfo->value.integer.max = platform_max - mc->min;
196 EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
199 * snd_soc_info_volsw_sx - Mixer info callback for SX TLV controls
200 * @kcontrol: mixer control
201 * @uinfo: control element information
203 * Callback to provide information about a single mixer control, or a double
204 * mixer control that spans 2 registers of the SX TLV type. SX TLV controls
205 * have a range that represents both positive and negative values either side
206 * of zero but without a sign bit.
208 * Returns 0 for success.
210 int snd_soc_info_volsw_sx(struct snd_kcontrol *kcontrol,
211 struct snd_ctl_elem_info *uinfo)
213 struct soc_mixer_control *mc =
214 (struct soc_mixer_control *)kcontrol->private_value;
216 snd_soc_info_volsw(kcontrol, uinfo);
217 /* Max represents the number of levels in an SX control not the
218 * maximum value, so add the minimum value back on
220 uinfo->value.integer.max += mc->min;
224 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_sx);
227 * snd_soc_get_volsw - single mixer get callback
228 * @kcontrol: mixer control
229 * @ucontrol: control element information
231 * Callback to get the value of a single mixer control, or a double mixer
232 * control that spans 2 registers.
234 * Returns 0 for success.
236 int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
237 struct snd_ctl_elem_value *ucontrol)
239 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
240 struct soc_mixer_control *mc =
241 (struct soc_mixer_control *)kcontrol->private_value;
242 unsigned int reg = mc->reg;
243 unsigned int reg2 = mc->rreg;
244 unsigned int shift = mc->shift;
245 unsigned int rshift = mc->rshift;
248 int sign_bit = mc->sign_bit;
249 unsigned int mask = (1 << fls(max)) - 1;
250 unsigned int invert = mc->invert;
255 mask = BIT(sign_bit + 1) - 1;
257 ret = snd_soc_read_signed(component, reg, mask, shift, sign_bit, &val);
261 ucontrol->value.integer.value[0] = val - min;
263 ucontrol->value.integer.value[0] =
264 max - ucontrol->value.integer.value[0];
266 if (snd_soc_volsw_is_stereo(mc)) {
268 ret = snd_soc_read_signed(component, reg, mask, rshift,
271 ret = snd_soc_read_signed(component, reg2, mask, shift,
276 ucontrol->value.integer.value[1] = val - min;
278 ucontrol->value.integer.value[1] =
279 max - ucontrol->value.integer.value[1];
284 EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
287 * snd_soc_put_volsw - single mixer put callback
288 * @kcontrol: mixer control
289 * @ucontrol: control element information
291 * Callback to set the value of a single mixer control, or a double mixer
292 * control that spans 2 registers.
294 * Returns 0 for success.
296 int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
297 struct snd_ctl_elem_value *ucontrol)
299 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
300 struct soc_mixer_control *mc =
301 (struct soc_mixer_control *)kcontrol->private_value;
302 unsigned int reg = mc->reg;
303 unsigned int reg2 = mc->rreg;
304 unsigned int shift = mc->shift;
305 unsigned int rshift = mc->rshift;
308 unsigned int sign_bit = mc->sign_bit;
309 unsigned int mask = (1 << fls(max)) - 1;
310 unsigned int invert = mc->invert;
312 bool type_2r = false;
313 unsigned int val2 = 0;
314 unsigned int val, val_mask;
317 mask = BIT(sign_bit + 1) - 1;
319 val = ((ucontrol->value.integer.value[0] + min) & mask);
322 val_mask = mask << shift;
324 if (snd_soc_volsw_is_stereo(mc)) {
325 val2 = ((ucontrol->value.integer.value[1] + min) & mask);
329 val_mask |= mask << rshift;
330 val |= val2 << rshift;
332 val2 = val2 << shift;
336 err = snd_soc_component_update_bits(component, reg, val_mask, val);
341 err = snd_soc_component_update_bits(component, reg2, val_mask,
346 EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
349 * snd_soc_get_volsw_sx - single mixer get callback
350 * @kcontrol: mixer control
351 * @ucontrol: control element information
353 * Callback to get the value of a single mixer control, or a double mixer
354 * control that spans 2 registers.
356 * Returns 0 for success.
358 int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
359 struct snd_ctl_elem_value *ucontrol)
361 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
362 struct soc_mixer_control *mc =
363 (struct soc_mixer_control *)kcontrol->private_value;
364 unsigned int reg = mc->reg;
365 unsigned int reg2 = mc->rreg;
366 unsigned int shift = mc->shift;
367 unsigned int rshift = mc->rshift;
370 unsigned int mask = (1U << (fls(min + max) - 1)) - 1;
373 val = snd_soc_component_read(component, reg);
374 ucontrol->value.integer.value[0] = ((val >> shift) - min) & mask;
376 if (snd_soc_volsw_is_stereo(mc)) {
377 val = snd_soc_component_read(component, reg2);
378 val = ((val >> rshift) - min) & mask;
379 ucontrol->value.integer.value[1] = val;
384 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx);
387 * snd_soc_put_volsw_sx - double mixer set callback
388 * @kcontrol: mixer control
389 * @ucontrol: control element information
391 * Callback to set the value of a double mixer control that spans 2 registers.
393 * Returns 0 for success.
395 int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
396 struct snd_ctl_elem_value *ucontrol)
398 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
399 struct soc_mixer_control *mc =
400 (struct soc_mixer_control *)kcontrol->private_value;
402 unsigned int reg = mc->reg;
403 unsigned int reg2 = mc->rreg;
404 unsigned int shift = mc->shift;
405 unsigned int rshift = mc->rshift;
408 unsigned int mask = (1U << (fls(min + max) - 1)) - 1;
410 unsigned int val, val_mask, val2 = 0;
412 val_mask = mask << shift;
413 val = (ucontrol->value.integer.value[0] + min) & mask;
416 err = snd_soc_component_update_bits(component, reg, val_mask, val);
420 if (snd_soc_volsw_is_stereo(mc)) {
421 val_mask = mask << rshift;
422 val2 = (ucontrol->value.integer.value[1] + min) & mask;
423 val2 = val2 << rshift;
425 err = snd_soc_component_update_bits(component, reg2, val_mask,
430 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx);
433 * snd_soc_info_volsw_range - single mixer info callback with range.
434 * @kcontrol: mixer control
435 * @uinfo: control element information
437 * Callback to provide information, within a range, about a single
440 * returns 0 for success.
442 int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol,
443 struct snd_ctl_elem_info *uinfo)
445 struct soc_mixer_control *mc =
446 (struct soc_mixer_control *)kcontrol->private_value;
450 if (!mc->platform_max)
451 mc->platform_max = mc->max;
452 platform_max = mc->platform_max;
454 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
455 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
456 uinfo->value.integer.min = 0;
457 uinfo->value.integer.max = platform_max - min;
461 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_range);
464 * snd_soc_put_volsw_range - single mixer put value callback with range.
465 * @kcontrol: mixer control
466 * @ucontrol: control element information
468 * Callback to set the value, within a range, for a single mixer control.
470 * Returns 0 for success.
472 int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
473 struct snd_ctl_elem_value *ucontrol)
475 struct soc_mixer_control *mc =
476 (struct soc_mixer_control *)kcontrol->private_value;
477 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
478 unsigned int reg = mc->reg;
479 unsigned int rreg = mc->rreg;
480 unsigned int shift = mc->shift;
483 unsigned int mask = (1 << fls(max)) - 1;
484 unsigned int invert = mc->invert;
485 unsigned int val, val_mask;
489 val = (max - ucontrol->value.integer.value[0]) & mask;
491 val = ((ucontrol->value.integer.value[0] + min) & mask);
492 val_mask = mask << shift;
495 ret = snd_soc_component_update_bits(component, reg, val_mask, val);
499 if (snd_soc_volsw_is_stereo(mc)) {
501 val = (max - ucontrol->value.integer.value[1]) & mask;
503 val = ((ucontrol->value.integer.value[1] + min) & mask);
504 val_mask = mask << shift;
507 ret = snd_soc_component_update_bits(component, rreg, val_mask,
513 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range);
516 * snd_soc_get_volsw_range - single mixer get callback with range
517 * @kcontrol: mixer control
518 * @ucontrol: control element information
520 * Callback to get the value, within a range, of a single mixer control.
522 * Returns 0 for success.
524 int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
525 struct snd_ctl_elem_value *ucontrol)
527 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
528 struct soc_mixer_control *mc =
529 (struct soc_mixer_control *)kcontrol->private_value;
530 unsigned int reg = mc->reg;
531 unsigned int rreg = mc->rreg;
532 unsigned int shift = mc->shift;
535 unsigned int mask = (1 << fls(max)) - 1;
536 unsigned int invert = mc->invert;
539 val = snd_soc_component_read(component, reg);
540 ucontrol->value.integer.value[0] = (val >> shift) & mask;
542 ucontrol->value.integer.value[0] =
543 max - ucontrol->value.integer.value[0];
545 ucontrol->value.integer.value[0] =
546 ucontrol->value.integer.value[0] - min;
548 if (snd_soc_volsw_is_stereo(mc)) {
549 val = snd_soc_component_read(component, rreg);
550 ucontrol->value.integer.value[1] = (val >> shift) & mask;
552 ucontrol->value.integer.value[1] =
553 max - ucontrol->value.integer.value[1];
555 ucontrol->value.integer.value[1] =
556 ucontrol->value.integer.value[1] - min;
561 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range);
564 * snd_soc_limit_volume - Set new limit to an existing volume control.
566 * @card: where to look for the control
567 * @name: Name of the control
568 * @max: new maximum limit
570 * Return 0 for success, else error.
572 int snd_soc_limit_volume(struct snd_soc_card *card,
573 const char *name, int max)
575 struct snd_kcontrol *kctl;
576 struct soc_mixer_control *mc;
579 /* Sanity check for name and max */
580 if (unlikely(!name || max <= 0))
583 kctl = snd_soc_card_get_kcontrol(card, name);
585 mc = (struct soc_mixer_control *)kctl->private_value;
586 if (max <= mc->max) {
587 mc->platform_max = max;
593 EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
595 int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
596 struct snd_ctl_elem_info *uinfo)
598 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
599 struct soc_bytes *params = (void *)kcontrol->private_value;
601 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
602 uinfo->count = params->num_regs * component->val_bytes;
606 EXPORT_SYMBOL_GPL(snd_soc_bytes_info);
608 int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
609 struct snd_ctl_elem_value *ucontrol)
611 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
612 struct soc_bytes *params = (void *)kcontrol->private_value;
615 if (component->regmap)
616 ret = regmap_raw_read(component->regmap, params->base,
617 ucontrol->value.bytes.data,
618 params->num_regs * component->val_bytes);
622 /* Hide any masked bytes to ensure consistent data reporting */
623 if (ret == 0 && params->mask) {
624 switch (component->val_bytes) {
626 ucontrol->value.bytes.data[0] &= ~params->mask;
629 ((u16 *)(&ucontrol->value.bytes.data))[0]
630 &= cpu_to_be16(~params->mask);
633 ((u32 *)(&ucontrol->value.bytes.data))[0]
634 &= cpu_to_be32(~params->mask);
643 EXPORT_SYMBOL_GPL(snd_soc_bytes_get);
645 int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
646 struct snd_ctl_elem_value *ucontrol)
648 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
649 struct soc_bytes *params = (void *)kcontrol->private_value;
651 unsigned int val, mask;
654 if (!component->regmap || !params->num_regs)
657 len = params->num_regs * component->val_bytes;
659 data = kmemdup(ucontrol->value.bytes.data, len, GFP_KERNEL | GFP_DMA);
664 * If we've got a mask then we need to preserve the register
665 * bits. We shouldn't modify the incoming data so take a
669 ret = regmap_read(component->regmap, params->base, &val);
675 switch (component->val_bytes) {
677 ((u8 *)data)[0] &= ~params->mask;
678 ((u8 *)data)[0] |= val;
681 mask = ~params->mask;
682 ret = regmap_parse_val(component->regmap,
687 ((u16 *)data)[0] &= mask;
689 ret = regmap_parse_val(component->regmap,
694 ((u16 *)data)[0] |= val;
697 mask = ~params->mask;
698 ret = regmap_parse_val(component->regmap,
703 ((u32 *)data)[0] &= mask;
705 ret = regmap_parse_val(component->regmap,
710 ((u32 *)data)[0] |= val;
718 ret = regmap_raw_write(component->regmap, params->base,
726 EXPORT_SYMBOL_GPL(snd_soc_bytes_put);
728 int snd_soc_bytes_info_ext(struct snd_kcontrol *kcontrol,
729 struct snd_ctl_elem_info *ucontrol)
731 struct soc_bytes_ext *params = (void *)kcontrol->private_value;
733 ucontrol->type = SNDRV_CTL_ELEM_TYPE_BYTES;
734 ucontrol->count = params->max;
738 EXPORT_SYMBOL_GPL(snd_soc_bytes_info_ext);
740 int snd_soc_bytes_tlv_callback(struct snd_kcontrol *kcontrol, int op_flag,
741 unsigned int size, unsigned int __user *tlv)
743 struct soc_bytes_ext *params = (void *)kcontrol->private_value;
744 unsigned int count = size < params->max ? size : params->max;
748 case SNDRV_CTL_TLV_OP_READ:
750 ret = params->get(kcontrol, tlv, count);
752 case SNDRV_CTL_TLV_OP_WRITE:
754 ret = params->put(kcontrol, tlv, count);
759 EXPORT_SYMBOL_GPL(snd_soc_bytes_tlv_callback);
762 * snd_soc_info_xr_sx - signed multi register info callback
763 * @kcontrol: mreg control
764 * @uinfo: control element information
766 * Callback to provide information of a control that can
767 * span multiple codec registers which together
768 * forms a single signed value in a MSB/LSB manner.
770 * Returns 0 for success.
772 int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
773 struct snd_ctl_elem_info *uinfo)
775 struct soc_mreg_control *mc =
776 (struct soc_mreg_control *)kcontrol->private_value;
777 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
779 uinfo->value.integer.min = mc->min;
780 uinfo->value.integer.max = mc->max;
784 EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx);
787 * snd_soc_get_xr_sx - signed multi register get callback
788 * @kcontrol: mreg control
789 * @ucontrol: control element information
791 * Callback to get the value of a control that can span
792 * multiple codec registers which together forms a single
793 * signed value in a MSB/LSB manner. The control supports
794 * specifying total no of bits used to allow for bitfields
795 * across the multiple codec registers.
797 * Returns 0 for success.
799 int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
800 struct snd_ctl_elem_value *ucontrol)
802 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
803 struct soc_mreg_control *mc =
804 (struct soc_mreg_control *)kcontrol->private_value;
805 unsigned int regbase = mc->regbase;
806 unsigned int regcount = mc->regcount;
807 unsigned int regwshift = component->val_bytes * BITS_PER_BYTE;
808 unsigned int regwmask = (1UL<<regwshift)-1;
809 unsigned int invert = mc->invert;
810 unsigned long mask = (1UL<<mc->nbits)-1;
817 for (i = 0; i < regcount; i++) {
818 regval = snd_soc_component_read(component, regbase+i);
819 val |= (regval & regwmask) << (regwshift*(regcount-i-1));
822 if (min < 0 && val > max)
826 ucontrol->value.integer.value[0] = val;
830 EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx);
833 * snd_soc_put_xr_sx - signed multi register get callback
834 * @kcontrol: mreg control
835 * @ucontrol: control element information
837 * Callback to set the value of a control that can span
838 * multiple codec registers which together forms a single
839 * signed value in a MSB/LSB manner. The control supports
840 * specifying total no of bits used to allow for bitfields
841 * across the multiple codec registers.
843 * Returns 0 for success.
845 int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
846 struct snd_ctl_elem_value *ucontrol)
848 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
849 struct soc_mreg_control *mc =
850 (struct soc_mreg_control *)kcontrol->private_value;
851 unsigned int regbase = mc->regbase;
852 unsigned int regcount = mc->regcount;
853 unsigned int regwshift = component->val_bytes * BITS_PER_BYTE;
854 unsigned int regwmask = (1UL<<regwshift)-1;
855 unsigned int invert = mc->invert;
856 unsigned long mask = (1UL<<mc->nbits)-1;
858 long val = ucontrol->value.integer.value[0];
859 unsigned int i, regval, regmask;
865 for (i = 0; i < regcount; i++) {
866 regval = (val >> (regwshift*(regcount-i-1))) & regwmask;
867 regmask = (mask >> (regwshift*(regcount-i-1))) & regwmask;
868 err = snd_soc_component_update_bits(component, regbase+i,
876 EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx);
879 * snd_soc_get_strobe - strobe get callback
880 * @kcontrol: mixer control
881 * @ucontrol: control element information
883 * Callback get the value of a strobe mixer control.
885 * Returns 0 for success.
887 int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
888 struct snd_ctl_elem_value *ucontrol)
890 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
891 struct soc_mixer_control *mc =
892 (struct soc_mixer_control *)kcontrol->private_value;
893 unsigned int reg = mc->reg;
894 unsigned int shift = mc->shift;
895 unsigned int mask = 1 << shift;
896 unsigned int invert = mc->invert != 0;
899 val = snd_soc_component_read(component, reg);
902 if (shift != 0 && val != 0)
904 ucontrol->value.enumerated.item[0] = val ^ invert;
908 EXPORT_SYMBOL_GPL(snd_soc_get_strobe);
911 * snd_soc_put_strobe - strobe put callback
912 * @kcontrol: mixer control
913 * @ucontrol: control element information
915 * Callback strobe a register bit to high then low (or the inverse)
916 * in one pass of a single mixer enum control.
918 * Returns 1 for success.
920 int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
921 struct snd_ctl_elem_value *ucontrol)
923 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
924 struct soc_mixer_control *mc =
925 (struct soc_mixer_control *)kcontrol->private_value;
926 unsigned int reg = mc->reg;
927 unsigned int shift = mc->shift;
928 unsigned int mask = 1 << shift;
929 unsigned int invert = mc->invert != 0;
930 unsigned int strobe = ucontrol->value.enumerated.item[0] != 0;
931 unsigned int val1 = (strobe ^ invert) ? mask : 0;
932 unsigned int val2 = (strobe ^ invert) ? 0 : mask;
935 err = snd_soc_component_update_bits(component, reg, mask, val1);
939 return snd_soc_component_update_bits(component, reg, mask, val2);
941 EXPORT_SYMBOL_GPL(snd_soc_put_strobe);