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/cleanup.h>
15 #include <linux/module.h>
16 #include <linux/moduleparam.h>
17 #include <linux/init.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
;
180 const char *vol_string
= NULL
;
183 max
= uinfo
->value
.integer
.max
= mc
->max
- mc
->min
;
184 if (mc
->platform_max
&& mc
->platform_max
< max
)
185 max
= mc
->platform_max
;
188 /* Even two value controls ending in Volume should always be integer */
189 vol_string
= strstr(kcontrol
->id
.name
, " Volume");
190 if (vol_string
&& !strcmp(vol_string
, " Volume"))
191 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
193 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
195 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
198 uinfo
->count
= snd_soc_volsw_is_stereo(mc
) ? 2 : 1;
199 uinfo
->value
.integer
.min
= 0;
200 uinfo
->value
.integer
.max
= max
;
204 EXPORT_SYMBOL_GPL(snd_soc_info_volsw
);
207 * snd_soc_info_volsw_sx - Mixer info callback for SX TLV controls
208 * @kcontrol: mixer control
209 * @uinfo: control element information
211 * Callback to provide information about a single mixer control, or a double
212 * mixer control that spans 2 registers of the SX TLV type. SX TLV controls
213 * have a range that represents both positive and negative values either side
214 * of zero but without a sign bit. min is the minimum register value, max is
215 * the number of steps.
217 * Returns 0 for success.
219 int snd_soc_info_volsw_sx(struct snd_kcontrol
*kcontrol
,
220 struct snd_ctl_elem_info
*uinfo
)
222 struct soc_mixer_control
*mc
=
223 (struct soc_mixer_control
*)kcontrol
->private_value
;
226 if (mc
->platform_max
)
227 max
= mc
->platform_max
;
231 if (max
== 1 && !strstr(kcontrol
->id
.name
, " Volume"))
232 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
234 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
236 uinfo
->count
= snd_soc_volsw_is_stereo(mc
) ? 2 : 1;
237 uinfo
->value
.integer
.min
= 0;
238 uinfo
->value
.integer
.max
= max
;
242 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_sx
);
245 * snd_soc_get_volsw - single mixer get callback
246 * @kcontrol: mixer control
247 * @ucontrol: control element information
249 * Callback to get the value of a single mixer control, or a double mixer
250 * control that spans 2 registers.
252 * Returns 0 for success.
254 int snd_soc_get_volsw(struct snd_kcontrol
*kcontrol
,
255 struct snd_ctl_elem_value
*ucontrol
)
257 struct snd_soc_component
*component
= snd_kcontrol_chip(kcontrol
);
258 struct soc_mixer_control
*mc
=
259 (struct soc_mixer_control
*)kcontrol
->private_value
;
260 unsigned int reg
= mc
->reg
;
261 unsigned int reg2
= mc
->rreg
;
262 unsigned int shift
= mc
->shift
;
263 unsigned int rshift
= mc
->rshift
;
266 int sign_bit
= mc
->sign_bit
;
267 unsigned int mask
= (1ULL << fls(max
)) - 1;
268 unsigned int invert
= mc
->invert
;
273 mask
= BIT(sign_bit
+ 1) - 1;
275 ret
= snd_soc_read_signed(component
, reg
, mask
, shift
, sign_bit
, &val
);
279 ucontrol
->value
.integer
.value
[0] = val
- min
;
281 ucontrol
->value
.integer
.value
[0] =
282 max
- ucontrol
->value
.integer
.value
[0];
284 if (snd_soc_volsw_is_stereo(mc
)) {
286 ret
= snd_soc_read_signed(component
, reg
, mask
, rshift
,
289 ret
= snd_soc_read_signed(component
, reg2
, mask
, shift
,
294 ucontrol
->value
.integer
.value
[1] = val
- min
;
296 ucontrol
->value
.integer
.value
[1] =
297 max
- ucontrol
->value
.integer
.value
[1];
302 EXPORT_SYMBOL_GPL(snd_soc_get_volsw
);
305 * snd_soc_put_volsw - single mixer put callback
306 * @kcontrol: mixer control
307 * @ucontrol: control element information
309 * Callback to set the value of a single mixer control, or a double mixer
310 * control that spans 2 registers.
312 * Returns 0 for success.
314 int snd_soc_put_volsw(struct snd_kcontrol
*kcontrol
,
315 struct snd_ctl_elem_value
*ucontrol
)
317 struct snd_soc_component
*component
= snd_kcontrol_chip(kcontrol
);
318 struct soc_mixer_control
*mc
=
319 (struct soc_mixer_control
*)kcontrol
->private_value
;
320 unsigned int reg
= mc
->reg
;
321 unsigned int reg2
= mc
->rreg
;
322 unsigned int shift
= mc
->shift
;
323 unsigned int rshift
= mc
->rshift
;
326 unsigned int sign_bit
= mc
->sign_bit
;
327 unsigned int mask
= (1 << fls(max
)) - 1;
328 unsigned int invert
= mc
->invert
;
330 bool type_2r
= false;
331 unsigned int val2
= 0;
332 unsigned int val
, val_mask
;
335 mask
= BIT(sign_bit
+ 1) - 1;
337 if (ucontrol
->value
.integer
.value
[0] < 0)
339 val
= ucontrol
->value
.integer
.value
[0];
340 if (mc
->platform_max
&& ((int)val
+ min
) > mc
->platform_max
)
344 val
= (val
+ min
) & mask
;
347 val_mask
= mask
<< shift
;
349 if (snd_soc_volsw_is_stereo(mc
)) {
350 if (ucontrol
->value
.integer
.value
[1] < 0)
352 val2
= ucontrol
->value
.integer
.value
[1];
353 if (mc
->platform_max
&& ((int)val2
+ min
) > mc
->platform_max
)
355 if (val2
> max
- min
)
357 val2
= (val2
+ min
) & mask
;
361 val_mask
|= mask
<< rshift
;
362 val
|= val2
<< rshift
;
364 val2
= val2
<< shift
;
368 err
= snd_soc_component_update_bits(component
, reg
, val_mask
, val
);
374 err
= snd_soc_component_update_bits(component
, reg2
, val_mask
,
376 /* Don't discard any error code or drop change flag */
377 if (ret
== 0 || err
< 0) {
384 EXPORT_SYMBOL_GPL(snd_soc_put_volsw
);
387 * snd_soc_get_volsw_sx - single mixer get callback
388 * @kcontrol: mixer control
389 * @ucontrol: control element information
391 * Callback to get the value of a single mixer control, or a double mixer
392 * control that spans 2 registers.
394 * Returns 0 for success.
396 int snd_soc_get_volsw_sx(struct snd_kcontrol
*kcontrol
,
397 struct snd_ctl_elem_value
*ucontrol
)
399 struct snd_soc_component
*component
= snd_kcontrol_chip(kcontrol
);
400 struct soc_mixer_control
*mc
=
401 (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;
411 val
= snd_soc_component_read(component
, reg
);
412 ucontrol
->value
.integer
.value
[0] = ((val
>> shift
) - min
) & mask
;
414 if (snd_soc_volsw_is_stereo(mc
)) {
415 val
= snd_soc_component_read(component
, reg2
);
416 val
= ((val
>> rshift
) - min
) & mask
;
417 ucontrol
->value
.integer
.value
[1] = val
;
422 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx
);
425 * snd_soc_put_volsw_sx - double mixer set callback
426 * @kcontrol: mixer control
427 * @ucontrol: control element information
429 * Callback to set the value of a double mixer control that spans 2 registers.
431 * Returns 0 for success.
433 int snd_soc_put_volsw_sx(struct snd_kcontrol
*kcontrol
,
434 struct snd_ctl_elem_value
*ucontrol
)
436 struct snd_soc_component
*component
= snd_kcontrol_chip(kcontrol
);
437 struct soc_mixer_control
*mc
=
438 (struct soc_mixer_control
*)kcontrol
->private_value
;
440 unsigned int reg
= mc
->reg
;
441 unsigned int reg2
= mc
->rreg
;
442 unsigned int shift
= mc
->shift
;
443 unsigned int rshift
= mc
->rshift
;
446 unsigned int mask
= (1U << (fls(min
+ max
) - 1)) - 1;
449 unsigned int val
, val_mask
;
451 if (ucontrol
->value
.integer
.value
[0] < 0)
453 val
= ucontrol
->value
.integer
.value
[0];
454 if (mc
->platform_max
&& val
> mc
->platform_max
)
458 val_mask
= mask
<< shift
;
459 val
= (val
+ min
) & mask
;
462 err
= snd_soc_component_update_bits(component
, reg
, val_mask
, val
);
467 if (snd_soc_volsw_is_stereo(mc
)) {
468 unsigned int val2
= ucontrol
->value
.integer
.value
[1];
470 if (mc
->platform_max
&& val2
> mc
->platform_max
)
475 val_mask
= mask
<< rshift
;
476 val2
= (val2
+ min
) & mask
;
477 val2
= val2
<< rshift
;
479 err
= snd_soc_component_update_bits(component
, reg2
, val_mask
,
482 /* Don't discard any error code or drop change flag */
483 if (ret
== 0 || err
< 0) {
489 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx
);
492 * snd_soc_info_volsw_range - single mixer info callback with range.
493 * @kcontrol: mixer control
494 * @uinfo: control element information
496 * Callback to provide information, within a range, about a single
499 * returns 0 for success.
501 int snd_soc_info_volsw_range(struct snd_kcontrol
*kcontrol
,
502 struct snd_ctl_elem_info
*uinfo
)
504 struct soc_mixer_control
*mc
=
505 (struct soc_mixer_control
*)kcontrol
->private_value
;
509 if (!mc
->platform_max
)
510 mc
->platform_max
= mc
->max
;
511 platform_max
= mc
->platform_max
;
513 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
514 uinfo
->count
= snd_soc_volsw_is_stereo(mc
) ? 2 : 1;
515 uinfo
->value
.integer
.min
= 0;
516 uinfo
->value
.integer
.max
= platform_max
- min
;
520 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_range
);
523 * snd_soc_put_volsw_range - single mixer put value callback with range.
524 * @kcontrol: mixer control
525 * @ucontrol: control element information
527 * Callback to set the value, within a range, for a single mixer control.
529 * Returns 0 for success.
531 int snd_soc_put_volsw_range(struct snd_kcontrol
*kcontrol
,
532 struct snd_ctl_elem_value
*ucontrol
)
534 struct soc_mixer_control
*mc
=
535 (struct soc_mixer_control
*)kcontrol
->private_value
;
536 struct snd_soc_component
*component
= snd_kcontrol_chip(kcontrol
);
537 unsigned int reg
= mc
->reg
;
538 unsigned int rreg
= mc
->rreg
;
539 unsigned int shift
= mc
->shift
;
542 unsigned int mask
= (1 << fls(max
)) - 1;
543 unsigned int invert
= mc
->invert
;
544 unsigned int val
, val_mask
;
547 tmp
= ucontrol
->value
.integer
.value
[0];
550 if (mc
->platform_max
&& tmp
> mc
->platform_max
)
552 if (tmp
> mc
->max
- mc
->min
)
556 val
= (max
- ucontrol
->value
.integer
.value
[0]) & mask
;
558 val
= ((ucontrol
->value
.integer
.value
[0] + min
) & mask
);
559 val_mask
= mask
<< shift
;
562 err
= snd_soc_component_update_bits(component
, reg
, val_mask
, val
);
567 if (snd_soc_volsw_is_stereo(mc
)) {
568 tmp
= ucontrol
->value
.integer
.value
[1];
571 if (mc
->platform_max
&& tmp
> mc
->platform_max
)
573 if (tmp
> mc
->max
- mc
->min
)
577 val
= (max
- ucontrol
->value
.integer
.value
[1]) & mask
;
579 val
= ((ucontrol
->value
.integer
.value
[1] + min
) & mask
);
580 val_mask
= mask
<< shift
;
583 err
= snd_soc_component_update_bits(component
, rreg
, val_mask
,
585 /* Don't discard any error code or drop change flag */
586 if (ret
== 0 || err
< 0) {
593 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range
);
596 * snd_soc_get_volsw_range - single mixer get callback with range
597 * @kcontrol: mixer control
598 * @ucontrol: control element information
600 * Callback to get the value, within a range, of a single mixer control.
602 * Returns 0 for success.
604 int snd_soc_get_volsw_range(struct snd_kcontrol
*kcontrol
,
605 struct snd_ctl_elem_value
*ucontrol
)
607 struct snd_soc_component
*component
= snd_kcontrol_chip(kcontrol
);
608 struct soc_mixer_control
*mc
=
609 (struct soc_mixer_control
*)kcontrol
->private_value
;
610 unsigned int reg
= mc
->reg
;
611 unsigned int rreg
= mc
->rreg
;
612 unsigned int shift
= mc
->shift
;
615 unsigned int mask
= (1 << fls(max
)) - 1;
616 unsigned int invert
= mc
->invert
;
619 val
= snd_soc_component_read(component
, reg
);
620 ucontrol
->value
.integer
.value
[0] = (val
>> shift
) & mask
;
622 ucontrol
->value
.integer
.value
[0] =
623 max
- ucontrol
->value
.integer
.value
[0];
625 ucontrol
->value
.integer
.value
[0] =
626 ucontrol
->value
.integer
.value
[0] - min
;
628 if (snd_soc_volsw_is_stereo(mc
)) {
629 val
= snd_soc_component_read(component
, rreg
);
630 ucontrol
->value
.integer
.value
[1] = (val
>> shift
) & mask
;
632 ucontrol
->value
.integer
.value
[1] =
633 max
- ucontrol
->value
.integer
.value
[1];
635 ucontrol
->value
.integer
.value
[1] =
636 ucontrol
->value
.integer
.value
[1] - min
;
641 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range
);
644 * snd_soc_limit_volume - Set new limit to an existing volume control.
646 * @card: where to look for the control
647 * @name: Name of the control
648 * @max: new maximum limit
650 * Return 0 for success, else error.
652 int snd_soc_limit_volume(struct snd_soc_card
*card
,
653 const char *name
, int max
)
655 struct snd_kcontrol
*kctl
;
658 /* Sanity check for name and max */
659 if (unlikely(!name
|| max
<= 0))
662 kctl
= snd_soc_card_get_kcontrol(card
, name
);
664 struct soc_mixer_control
*mc
= (struct soc_mixer_control
*)kctl
->private_value
;
665 if (max
<= mc
->max
- mc
->min
) {
666 mc
->platform_max
= max
;
672 EXPORT_SYMBOL_GPL(snd_soc_limit_volume
);
674 int snd_soc_bytes_info(struct snd_kcontrol
*kcontrol
,
675 struct snd_ctl_elem_info
*uinfo
)
677 struct snd_soc_component
*component
= snd_kcontrol_chip(kcontrol
);
678 struct soc_bytes
*params
= (void *)kcontrol
->private_value
;
680 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BYTES
;
681 uinfo
->count
= params
->num_regs
* component
->val_bytes
;
685 EXPORT_SYMBOL_GPL(snd_soc_bytes_info
);
687 int snd_soc_bytes_get(struct snd_kcontrol
*kcontrol
,
688 struct snd_ctl_elem_value
*ucontrol
)
690 struct snd_soc_component
*component
= snd_kcontrol_chip(kcontrol
);
691 struct soc_bytes
*params
= (void *)kcontrol
->private_value
;
694 if (component
->regmap
)
695 ret
= regmap_raw_read(component
->regmap
, params
->base
,
696 ucontrol
->value
.bytes
.data
,
697 params
->num_regs
* component
->val_bytes
);
701 /* Hide any masked bytes to ensure consistent data reporting */
702 if (ret
== 0 && params
->mask
) {
703 switch (component
->val_bytes
) {
705 ucontrol
->value
.bytes
.data
[0] &= ~params
->mask
;
708 ((u16
*)(&ucontrol
->value
.bytes
.data
))[0]
709 &= cpu_to_be16(~params
->mask
);
712 ((u32
*)(&ucontrol
->value
.bytes
.data
))[0]
713 &= cpu_to_be32(~params
->mask
);
722 EXPORT_SYMBOL_GPL(snd_soc_bytes_get
);
724 int snd_soc_bytes_put(struct snd_kcontrol
*kcontrol
,
725 struct snd_ctl_elem_value
*ucontrol
)
727 struct snd_soc_component
*component
= snd_kcontrol_chip(kcontrol
);
728 struct soc_bytes
*params
= (void *)kcontrol
->private_value
;
730 unsigned int val
, mask
;
732 if (!component
->regmap
|| !params
->num_regs
)
735 len
= params
->num_regs
* component
->val_bytes
;
737 void *data
__free(kfree
) = kmemdup(ucontrol
->value
.bytes
.data
, len
,
738 GFP_KERNEL
| GFP_DMA
);
743 * If we've got a mask then we need to preserve the register
744 * bits. We shouldn't modify the incoming data so take a
748 ret
= regmap_read(component
->regmap
, params
->base
, &val
);
754 switch (component
->val_bytes
) {
756 ((u8
*)data
)[0] &= ~params
->mask
;
757 ((u8
*)data
)[0] |= val
;
760 mask
= ~params
->mask
;
761 ret
= regmap_parse_val(component
->regmap
,
766 ((u16
*)data
)[0] &= mask
;
768 ret
= regmap_parse_val(component
->regmap
,
773 ((u16
*)data
)[0] |= val
;
776 mask
= ~params
->mask
;
777 ret
= regmap_parse_val(component
->regmap
,
782 ((u32
*)data
)[0] &= mask
;
784 ret
= regmap_parse_val(component
->regmap
,
789 ((u32
*)data
)[0] |= val
;
796 return regmap_raw_write(component
->regmap
, params
->base
, data
, len
);
798 EXPORT_SYMBOL_GPL(snd_soc_bytes_put
);
800 int snd_soc_bytes_info_ext(struct snd_kcontrol
*kcontrol
,
801 struct snd_ctl_elem_info
*ucontrol
)
803 struct soc_bytes_ext
*params
= (void *)kcontrol
->private_value
;
805 ucontrol
->type
= SNDRV_CTL_ELEM_TYPE_BYTES
;
806 ucontrol
->count
= params
->max
;
810 EXPORT_SYMBOL_GPL(snd_soc_bytes_info_ext
);
812 int snd_soc_bytes_tlv_callback(struct snd_kcontrol
*kcontrol
, int op_flag
,
813 unsigned int size
, unsigned int __user
*tlv
)
815 struct soc_bytes_ext
*params
= (void *)kcontrol
->private_value
;
816 unsigned int count
= size
< params
->max
? size
: params
->max
;
820 case SNDRV_CTL_TLV_OP_READ
:
822 ret
= params
->get(kcontrol
, tlv
, count
);
824 case SNDRV_CTL_TLV_OP_WRITE
:
826 ret
= params
->put(kcontrol
, tlv
, count
);
831 EXPORT_SYMBOL_GPL(snd_soc_bytes_tlv_callback
);
834 * snd_soc_info_xr_sx - signed multi register info callback
835 * @kcontrol: mreg control
836 * @uinfo: control element information
838 * Callback to provide information of a control that can
839 * span multiple codec registers which together
840 * forms a single signed value in a MSB/LSB manner.
842 * Returns 0 for success.
844 int snd_soc_info_xr_sx(struct snd_kcontrol
*kcontrol
,
845 struct snd_ctl_elem_info
*uinfo
)
847 struct soc_mreg_control
*mc
=
848 (struct soc_mreg_control
*)kcontrol
->private_value
;
849 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
851 uinfo
->value
.integer
.min
= mc
->min
;
852 uinfo
->value
.integer
.max
= mc
->max
;
856 EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx
);
859 * snd_soc_get_xr_sx - signed multi register get callback
860 * @kcontrol: mreg control
861 * @ucontrol: control element information
863 * Callback to get the value of a control that can span
864 * multiple codec registers which together forms a single
865 * signed value in a MSB/LSB manner. The control supports
866 * specifying total no of bits used to allow for bitfields
867 * across the multiple codec registers.
869 * Returns 0 for success.
871 int snd_soc_get_xr_sx(struct snd_kcontrol
*kcontrol
,
872 struct snd_ctl_elem_value
*ucontrol
)
874 struct snd_soc_component
*component
= snd_kcontrol_chip(kcontrol
);
875 struct soc_mreg_control
*mc
=
876 (struct soc_mreg_control
*)kcontrol
->private_value
;
877 unsigned int regbase
= mc
->regbase
;
878 unsigned int regcount
= mc
->regcount
;
879 unsigned int regwshift
= component
->val_bytes
* BITS_PER_BYTE
;
880 unsigned int regwmask
= (1UL<<regwshift
)-1;
881 unsigned int invert
= mc
->invert
;
882 unsigned long mask
= (1UL<<mc
->nbits
)-1;
888 for (i
= 0; i
< regcount
; i
++) {
889 unsigned int regval
= snd_soc_component_read(component
, regbase
+i
);
890 val
|= (regval
& regwmask
) << (regwshift
*(regcount
-i
-1));
893 if (min
< 0 && val
> max
)
897 ucontrol
->value
.integer
.value
[0] = val
;
901 EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx
);
904 * snd_soc_put_xr_sx - signed multi register get callback
905 * @kcontrol: mreg control
906 * @ucontrol: control element information
908 * Callback to set the value of a control that can span
909 * multiple codec registers which together forms a single
910 * signed value in a MSB/LSB manner. The control supports
911 * specifying total no of bits used to allow for bitfields
912 * across the multiple codec registers.
914 * Returns 0 for success.
916 int snd_soc_put_xr_sx(struct snd_kcontrol
*kcontrol
,
917 struct snd_ctl_elem_value
*ucontrol
)
919 struct snd_soc_component
*component
= snd_kcontrol_chip(kcontrol
);
920 struct soc_mreg_control
*mc
=
921 (struct soc_mreg_control
*)kcontrol
->private_value
;
922 unsigned int regbase
= mc
->regbase
;
923 unsigned int regcount
= mc
->regcount
;
924 unsigned int regwshift
= component
->val_bytes
* BITS_PER_BYTE
;
925 unsigned int regwmask
= (1UL<<regwshift
)-1;
926 unsigned int invert
= mc
->invert
;
927 unsigned long mask
= (1UL<<mc
->nbits
)-1;
929 long val
= ucontrol
->value
.integer
.value
[0];
933 if (val
< mc
->min
|| val
> mc
->max
)
938 for (i
= 0; i
< regcount
; i
++) {
939 unsigned int regval
= (val
>> (regwshift
*(regcount
-i
-1))) & regwmask
;
940 unsigned int regmask
= (mask
>> (regwshift
*(regcount
-i
-1))) & regwmask
;
941 int err
= snd_soc_component_update_bits(component
, regbase
+i
,
951 EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx
);
954 * snd_soc_get_strobe - strobe get callback
955 * @kcontrol: mixer control
956 * @ucontrol: control element information
958 * Callback get the value of a strobe mixer control.
960 * Returns 0 for success.
962 int snd_soc_get_strobe(struct snd_kcontrol
*kcontrol
,
963 struct snd_ctl_elem_value
*ucontrol
)
965 struct snd_soc_component
*component
= snd_kcontrol_chip(kcontrol
);
966 struct soc_mixer_control
*mc
=
967 (struct soc_mixer_control
*)kcontrol
->private_value
;
968 unsigned int reg
= mc
->reg
;
969 unsigned int shift
= mc
->shift
;
970 unsigned int mask
= 1 << shift
;
971 unsigned int invert
= mc
->invert
!= 0;
974 val
= snd_soc_component_read(component
, reg
);
977 if (shift
!= 0 && val
!= 0)
979 ucontrol
->value
.enumerated
.item
[0] = val
^ invert
;
983 EXPORT_SYMBOL_GPL(snd_soc_get_strobe
);
986 * snd_soc_put_strobe - strobe put callback
987 * @kcontrol: mixer control
988 * @ucontrol: control element information
990 * Callback strobe a register bit to high then low (or the inverse)
991 * in one pass of a single mixer enum control.
993 * Returns 1 for success.
995 int snd_soc_put_strobe(struct snd_kcontrol
*kcontrol
,
996 struct snd_ctl_elem_value
*ucontrol
)
998 struct snd_soc_component
*component
= snd_kcontrol_chip(kcontrol
);
999 struct soc_mixer_control
*mc
=
1000 (struct soc_mixer_control
*)kcontrol
->private_value
;
1001 unsigned int reg
= mc
->reg
;
1002 unsigned int shift
= mc
->shift
;
1003 unsigned int mask
= 1 << shift
;
1004 unsigned int invert
= mc
->invert
!= 0;
1005 unsigned int strobe
= ucontrol
->value
.enumerated
.item
[0] != 0;
1006 unsigned int val1
= (strobe
^ invert
) ? mask
: 0;
1007 unsigned int val2
= (strobe
^ invert
) ? 0 : mask
;
1010 err
= snd_soc_component_update_bits(component
, reg
, mask
, val1
);
1014 return snd_soc_component_update_bits(component
, reg
, mask
, val2
);
1016 EXPORT_SYMBOL_GPL(snd_soc_put_strobe
);