Loading...
1// SPDX-License-Identifier: GPL-2.0+
2//
3// soc-ops.c -- Generic ASoC operations
4//
5// Copyright 2005 Wolfson Microelectronics PLC.
6// Copyright 2005 Openedhand Ltd.
7// Copyright (C) 2010 Slimlogic Ltd.
8// Copyright (C) 2010 Texas Instruments Inc.
9//
10// Author: Liam Girdwood <lrg@slimlogic.co.uk>
11// with code, comments and ideas from :-
12// Richard Purdie <richard@openedhand.com>
13
14#include <linux/module.h>
15#include <linux/moduleparam.h>
16#include <linux/init.h>
17#include <linux/pm.h>
18#include <linux/bitops.h>
19#include <linux/ctype.h>
20#include <linux/slab.h>
21#include <sound/core.h>
22#include <sound/jack.h>
23#include <sound/pcm.h>
24#include <sound/pcm_params.h>
25#include <sound/soc.h>
26#include <sound/soc-dpcm.h>
27#include <sound/initval.h>
28
29/**
30 * snd_soc_info_enum_double - enumerated double mixer info callback
31 * @kcontrol: mixer control
32 * @uinfo: control element information
33 *
34 * Callback to provide information about a double enumerated
35 * mixer control.
36 *
37 * Returns 0 for success.
38 */
39int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
40 struct snd_ctl_elem_info *uinfo)
41{
42 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
43
44 return snd_ctl_enum_info(uinfo, e->shift_l == e->shift_r ? 1 : 2,
45 e->items, e->texts);
46}
47EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
48
49/**
50 * snd_soc_get_enum_double - enumerated double mixer get callback
51 * @kcontrol: mixer control
52 * @ucontrol: control element information
53 *
54 * Callback to get the value of a double enumerated mixer.
55 *
56 * Returns 0 for success.
57 */
58int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
59 struct snd_ctl_elem_value *ucontrol)
60{
61 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
62 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
63 unsigned int val, item;
64 unsigned int reg_val;
65
66 reg_val = snd_soc_component_read(component, e->reg);
67 val = (reg_val >> e->shift_l) & e->mask;
68 item = snd_soc_enum_val_to_item(e, val);
69 ucontrol->value.enumerated.item[0] = item;
70 if (e->shift_l != e->shift_r) {
71 val = (reg_val >> e->shift_r) & e->mask;
72 item = snd_soc_enum_val_to_item(e, val);
73 ucontrol->value.enumerated.item[1] = item;
74 }
75
76 return 0;
77}
78EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
79
80/**
81 * snd_soc_put_enum_double - enumerated double mixer put callback
82 * @kcontrol: mixer control
83 * @ucontrol: control element information
84 *
85 * Callback to set the value of a double enumerated mixer.
86 *
87 * Returns 0 for success.
88 */
89int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
90 struct snd_ctl_elem_value *ucontrol)
91{
92 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
93 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
94 unsigned int *item = ucontrol->value.enumerated.item;
95 unsigned int val;
96 unsigned int mask;
97
98 if (item[0] >= e->items)
99 return -EINVAL;
100 val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
101 mask = e->mask << e->shift_l;
102 if (e->shift_l != e->shift_r) {
103 if (item[1] >= e->items)
104 return -EINVAL;
105 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_r;
106 mask |= e->mask << e->shift_r;
107 }
108
109 return snd_soc_component_update_bits(component, e->reg, mask, val);
110}
111EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
112
113/**
114 * snd_soc_read_signed - Read a codec register and interpret as signed value
115 * @component: component
116 * @reg: Register to read
117 * @mask: Mask to use after shifting the register value
118 * @shift: Right shift of register value
119 * @sign_bit: Bit that describes if a number is negative or not.
120 * @signed_val: Pointer to where the read value should be stored
121 *
122 * This functions reads a codec register. The register value is shifted right
123 * by 'shift' bits and masked with the given 'mask'. Afterwards it translates
124 * the given registervalue into a signed integer if sign_bit is non-zero.
125 *
126 * Returns 0 on sucess, otherwise an error value
127 */
128static int snd_soc_read_signed(struct snd_soc_component *component,
129 unsigned int reg, unsigned int mask, unsigned int shift,
130 unsigned int sign_bit, int *signed_val)
131{
132 int ret;
133 unsigned int val;
134
135 val = snd_soc_component_read(component, reg);
136 val = (val >> shift) & mask;
137
138 if (!sign_bit) {
139 *signed_val = val;
140 return 0;
141 }
142
143 /* non-negative number */
144 if (!(val & BIT(sign_bit))) {
145 *signed_val = val;
146 return 0;
147 }
148
149 ret = val;
150
151 /*
152 * The register most probably does not contain a full-sized int.
153 * Instead we have an arbitrary number of bits in a signed
154 * representation which has to be translated into a full-sized int.
155 * This is done by filling up all bits above the sign-bit.
156 */
157 ret |= ~((int)(BIT(sign_bit) - 1));
158
159 *signed_val = ret;
160
161 return 0;
162}
163
164/**
165 * snd_soc_info_volsw - single mixer info callback
166 * @kcontrol: mixer control
167 * @uinfo: control element information
168 *
169 * Callback to provide information about a single mixer control, or a double
170 * mixer control that spans 2 registers.
171 *
172 * Returns 0 for success.
173 */
174int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
175 struct snd_ctl_elem_info *uinfo)
176{
177 struct soc_mixer_control *mc =
178 (struct soc_mixer_control *)kcontrol->private_value;
179 const char *vol_string = NULL;
180 int max;
181
182 max = uinfo->value.integer.max = mc->max - mc->min;
183 if (mc->platform_max && mc->platform_max < max)
184 max = mc->platform_max;
185
186 if (max == 1) {
187 /* Even two value controls ending in Volume should always be integer */
188 vol_string = strstr(kcontrol->id.name, " Volume");
189 if (vol_string && !strcmp(vol_string, " Volume"))
190 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
191 else
192 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
193 } else {
194 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
195 }
196
197 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
198 uinfo->value.integer.min = 0;
199 uinfo->value.integer.max = max;
200
201 return 0;
202}
203EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
204
205/**
206 * snd_soc_info_volsw_sx - Mixer info callback for SX TLV controls
207 * @kcontrol: mixer control
208 * @uinfo: control element information
209 *
210 * Callback to provide information about a single mixer control, or a double
211 * mixer control that spans 2 registers of the SX TLV type. SX TLV controls
212 * have a range that represents both positive and negative values either side
213 * of zero but without a sign bit. min is the minimum register value, max is
214 * the number of steps.
215 *
216 * Returns 0 for success.
217 */
218int snd_soc_info_volsw_sx(struct snd_kcontrol *kcontrol,
219 struct snd_ctl_elem_info *uinfo)
220{
221 struct soc_mixer_control *mc =
222 (struct soc_mixer_control *)kcontrol->private_value;
223 int max;
224
225 if (mc->platform_max)
226 max = mc->platform_max;
227 else
228 max = mc->max;
229
230 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
231 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
232 else
233 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
234
235 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
236 uinfo->value.integer.min = 0;
237 uinfo->value.integer.max = max;
238
239 return 0;
240}
241EXPORT_SYMBOL_GPL(snd_soc_info_volsw_sx);
242
243/**
244 * snd_soc_get_volsw - single mixer get callback
245 * @kcontrol: mixer control
246 * @ucontrol: control element information
247 *
248 * Callback to get the value of a single mixer control, or a double mixer
249 * control that spans 2 registers.
250 *
251 * Returns 0 for success.
252 */
253int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
254 struct snd_ctl_elem_value *ucontrol)
255{
256 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
257 struct soc_mixer_control *mc =
258 (struct soc_mixer_control *)kcontrol->private_value;
259 unsigned int reg = mc->reg;
260 unsigned int reg2 = mc->rreg;
261 unsigned int shift = mc->shift;
262 unsigned int rshift = mc->rshift;
263 int max = mc->max;
264 int min = mc->min;
265 int sign_bit = mc->sign_bit;
266 unsigned int mask = (1 << fls(max)) - 1;
267 unsigned int invert = mc->invert;
268 int val;
269 int ret;
270
271 if (sign_bit)
272 mask = BIT(sign_bit + 1) - 1;
273
274 ret = snd_soc_read_signed(component, reg, mask, shift, sign_bit, &val);
275 if (ret)
276 return ret;
277
278 ucontrol->value.integer.value[0] = val - min;
279 if (invert)
280 ucontrol->value.integer.value[0] =
281 max - ucontrol->value.integer.value[0];
282
283 if (snd_soc_volsw_is_stereo(mc)) {
284 if (reg == reg2)
285 ret = snd_soc_read_signed(component, reg, mask, rshift,
286 sign_bit, &val);
287 else
288 ret = snd_soc_read_signed(component, reg2, mask, shift,
289 sign_bit, &val);
290 if (ret)
291 return ret;
292
293 ucontrol->value.integer.value[1] = val - min;
294 if (invert)
295 ucontrol->value.integer.value[1] =
296 max - ucontrol->value.integer.value[1];
297 }
298
299 return 0;
300}
301EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
302
303/**
304 * snd_soc_put_volsw - single mixer put callback
305 * @kcontrol: mixer control
306 * @ucontrol: control element information
307 *
308 * Callback to set the value of a single mixer control, or a double mixer
309 * control that spans 2 registers.
310 *
311 * Returns 0 for success.
312 */
313int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
314 struct snd_ctl_elem_value *ucontrol)
315{
316 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
317 struct soc_mixer_control *mc =
318 (struct soc_mixer_control *)kcontrol->private_value;
319 unsigned int reg = mc->reg;
320 unsigned int reg2 = mc->rreg;
321 unsigned int shift = mc->shift;
322 unsigned int rshift = mc->rshift;
323 int max = mc->max;
324 int min = mc->min;
325 unsigned int sign_bit = mc->sign_bit;
326 unsigned int mask = (1 << fls(max)) - 1;
327 unsigned int invert = mc->invert;
328 int err, ret;
329 bool type_2r = false;
330 unsigned int val2 = 0;
331 unsigned int val, val_mask;
332
333 if (sign_bit)
334 mask = BIT(sign_bit + 1) - 1;
335
336 if (ucontrol->value.integer.value[0] < 0)
337 return -EINVAL;
338 val = ucontrol->value.integer.value[0];
339 if (mc->platform_max && ((int)val + min) > mc->platform_max)
340 return -EINVAL;
341 if (val > max - min)
342 return -EINVAL;
343 val = (val + min) & mask;
344 if (invert)
345 val = max - val;
346 val_mask = mask << shift;
347 val = val << shift;
348 if (snd_soc_volsw_is_stereo(mc)) {
349 if (ucontrol->value.integer.value[1] < 0)
350 return -EINVAL;
351 val2 = ucontrol->value.integer.value[1];
352 if (mc->platform_max && ((int)val2 + min) > mc->platform_max)
353 return -EINVAL;
354 if (val2 > max - min)
355 return -EINVAL;
356 val2 = (val2 + min) & mask;
357 if (invert)
358 val2 = max - val2;
359 if (reg == reg2) {
360 val_mask |= mask << rshift;
361 val |= val2 << rshift;
362 } else {
363 val2 = val2 << shift;
364 type_2r = true;
365 }
366 }
367 err = snd_soc_component_update_bits(component, reg, val_mask, val);
368 if (err < 0)
369 return err;
370 ret = err;
371
372 if (type_2r) {
373 err = snd_soc_component_update_bits(component, reg2, val_mask,
374 val2);
375 /* Don't discard any error code or drop change flag */
376 if (ret == 0 || err < 0) {
377 ret = err;
378 }
379 }
380
381 return ret;
382}
383EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
384
385/**
386 * snd_soc_get_volsw_sx - single mixer get callback
387 * @kcontrol: mixer control
388 * @ucontrol: control element information
389 *
390 * Callback to get the value of a single mixer control, or a double mixer
391 * control that spans 2 registers.
392 *
393 * Returns 0 for success.
394 */
395int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
396 struct snd_ctl_elem_value *ucontrol)
397{
398 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
399 struct soc_mixer_control *mc =
400 (struct soc_mixer_control *)kcontrol->private_value;
401 unsigned int reg = mc->reg;
402 unsigned int reg2 = mc->rreg;
403 unsigned int shift = mc->shift;
404 unsigned int rshift = mc->rshift;
405 int max = mc->max;
406 int min = mc->min;
407 unsigned int mask = (1U << (fls(min + max) - 1)) - 1;
408 unsigned int val;
409
410 val = snd_soc_component_read(component, reg);
411 ucontrol->value.integer.value[0] = ((val >> shift) - min) & mask;
412
413 if (snd_soc_volsw_is_stereo(mc)) {
414 val = snd_soc_component_read(component, reg2);
415 val = ((val >> rshift) - min) & mask;
416 ucontrol->value.integer.value[1] = val;
417 }
418
419 return 0;
420}
421EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx);
422
423/**
424 * snd_soc_put_volsw_sx - double mixer set callback
425 * @kcontrol: mixer control
426 * @ucontrol: control element information
427 *
428 * Callback to set the value of a double mixer control that spans 2 registers.
429 *
430 * Returns 0 for success.
431 */
432int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
433 struct snd_ctl_elem_value *ucontrol)
434{
435 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
436 struct soc_mixer_control *mc =
437 (struct soc_mixer_control *)kcontrol->private_value;
438
439 unsigned int reg = mc->reg;
440 unsigned int reg2 = mc->rreg;
441 unsigned int shift = mc->shift;
442 unsigned int rshift = mc->rshift;
443 int max = mc->max;
444 int min = mc->min;
445 unsigned int mask = (1U << (fls(min + max) - 1)) - 1;
446 int err = 0;
447 int ret;
448 unsigned int val, val_mask;
449
450 if (ucontrol->value.integer.value[0] < 0)
451 return -EINVAL;
452 val = ucontrol->value.integer.value[0];
453 if (mc->platform_max && val > mc->platform_max)
454 return -EINVAL;
455 if (val > max)
456 return -EINVAL;
457 val_mask = mask << shift;
458 val = (val + min) & mask;
459 val = val << shift;
460
461 err = snd_soc_component_update_bits(component, reg, val_mask, val);
462 if (err < 0)
463 return err;
464 ret = err;
465
466 if (snd_soc_volsw_is_stereo(mc)) {
467 unsigned int val2 = ucontrol->value.integer.value[1];
468
469 if (mc->platform_max && val2 > mc->platform_max)
470 return -EINVAL;
471 if (val2 > max)
472 return -EINVAL;
473
474 val_mask = mask << rshift;
475 val2 = (val2 + min) & mask;
476 val2 = val2 << rshift;
477
478 err = snd_soc_component_update_bits(component, reg2, val_mask,
479 val2);
480
481 /* Don't discard any error code or drop change flag */
482 if (ret == 0 || err < 0) {
483 ret = err;
484 }
485 }
486 return ret;
487}
488EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx);
489
490/**
491 * snd_soc_info_volsw_range - single mixer info callback with range.
492 * @kcontrol: mixer control
493 * @uinfo: control element information
494 *
495 * Callback to provide information, within a range, about a single
496 * mixer control.
497 *
498 * returns 0 for success.
499 */
500int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol,
501 struct snd_ctl_elem_info *uinfo)
502{
503 struct soc_mixer_control *mc =
504 (struct soc_mixer_control *)kcontrol->private_value;
505 int platform_max;
506 int min = mc->min;
507
508 if (!mc->platform_max)
509 mc->platform_max = mc->max;
510 platform_max = mc->platform_max;
511
512 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
513 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
514 uinfo->value.integer.min = 0;
515 uinfo->value.integer.max = platform_max - min;
516
517 return 0;
518}
519EXPORT_SYMBOL_GPL(snd_soc_info_volsw_range);
520
521/**
522 * snd_soc_put_volsw_range - single mixer put value callback with range.
523 * @kcontrol: mixer control
524 * @ucontrol: control element information
525 *
526 * Callback to set the value, within a range, for a single mixer control.
527 *
528 * Returns 0 for success.
529 */
530int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
531 struct snd_ctl_elem_value *ucontrol)
532{
533 struct soc_mixer_control *mc =
534 (struct soc_mixer_control *)kcontrol->private_value;
535 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
536 unsigned int reg = mc->reg;
537 unsigned int rreg = mc->rreg;
538 unsigned int shift = mc->shift;
539 int min = mc->min;
540 int max = mc->max;
541 unsigned int mask = (1 << fls(max)) - 1;
542 unsigned int invert = mc->invert;
543 unsigned int val, val_mask;
544 int err, ret, tmp;
545
546 tmp = ucontrol->value.integer.value[0];
547 if (tmp < 0)
548 return -EINVAL;
549 if (mc->platform_max && tmp > mc->platform_max)
550 return -EINVAL;
551 if (tmp > mc->max - mc->min)
552 return -EINVAL;
553
554 if (invert)
555 val = (max - ucontrol->value.integer.value[0]) & mask;
556 else
557 val = ((ucontrol->value.integer.value[0] + min) & mask);
558 val_mask = mask << shift;
559 val = val << shift;
560
561 err = snd_soc_component_update_bits(component, reg, val_mask, val);
562 if (err < 0)
563 return err;
564 ret = err;
565
566 if (snd_soc_volsw_is_stereo(mc)) {
567 tmp = ucontrol->value.integer.value[1];
568 if (tmp < 0)
569 return -EINVAL;
570 if (mc->platform_max && tmp > mc->platform_max)
571 return -EINVAL;
572 if (tmp > mc->max - mc->min)
573 return -EINVAL;
574
575 if (invert)
576 val = (max - ucontrol->value.integer.value[1]) & mask;
577 else
578 val = ((ucontrol->value.integer.value[1] + min) & mask);
579 val_mask = mask << shift;
580 val = val << shift;
581
582 err = snd_soc_component_update_bits(component, rreg, val_mask,
583 val);
584 /* Don't discard any error code or drop change flag */
585 if (ret == 0 || err < 0) {
586 ret = err;
587 }
588 }
589
590 return ret;
591}
592EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range);
593
594/**
595 * snd_soc_get_volsw_range - single mixer get callback with range
596 * @kcontrol: mixer control
597 * @ucontrol: control element information
598 *
599 * Callback to get the value, within a range, of a single mixer control.
600 *
601 * Returns 0 for success.
602 */
603int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
604 struct snd_ctl_elem_value *ucontrol)
605{
606 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
607 struct soc_mixer_control *mc =
608 (struct soc_mixer_control *)kcontrol->private_value;
609 unsigned int reg = mc->reg;
610 unsigned int rreg = mc->rreg;
611 unsigned int shift = mc->shift;
612 int min = mc->min;
613 int max = mc->max;
614 unsigned int mask = (1 << fls(max)) - 1;
615 unsigned int invert = mc->invert;
616 unsigned int val;
617
618 val = snd_soc_component_read(component, reg);
619 ucontrol->value.integer.value[0] = (val >> shift) & mask;
620 if (invert)
621 ucontrol->value.integer.value[0] =
622 max - ucontrol->value.integer.value[0];
623 else
624 ucontrol->value.integer.value[0] =
625 ucontrol->value.integer.value[0] - min;
626
627 if (snd_soc_volsw_is_stereo(mc)) {
628 val = snd_soc_component_read(component, rreg);
629 ucontrol->value.integer.value[1] = (val >> shift) & mask;
630 if (invert)
631 ucontrol->value.integer.value[1] =
632 max - ucontrol->value.integer.value[1];
633 else
634 ucontrol->value.integer.value[1] =
635 ucontrol->value.integer.value[1] - min;
636 }
637
638 return 0;
639}
640EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range);
641
642/**
643 * snd_soc_limit_volume - Set new limit to an existing volume control.
644 *
645 * @card: where to look for the control
646 * @name: Name of the control
647 * @max: new maximum limit
648 *
649 * Return 0 for success, else error.
650 */
651int snd_soc_limit_volume(struct snd_soc_card *card,
652 const char *name, int max)
653{
654 struct snd_kcontrol *kctl;
655 int ret = -EINVAL;
656
657 /* Sanity check for name and max */
658 if (unlikely(!name || max <= 0))
659 return -EINVAL;
660
661 kctl = snd_soc_card_get_kcontrol(card, name);
662 if (kctl) {
663 struct soc_mixer_control *mc = (struct soc_mixer_control *)kctl->private_value;
664 if (max <= mc->max) {
665 mc->platform_max = max;
666 ret = 0;
667 }
668 }
669 return ret;
670}
671EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
672
673int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
674 struct snd_ctl_elem_info *uinfo)
675{
676 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
677 struct soc_bytes *params = (void *)kcontrol->private_value;
678
679 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
680 uinfo->count = params->num_regs * component->val_bytes;
681
682 return 0;
683}
684EXPORT_SYMBOL_GPL(snd_soc_bytes_info);
685
686int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
687 struct snd_ctl_elem_value *ucontrol)
688{
689 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
690 struct soc_bytes *params = (void *)kcontrol->private_value;
691 int ret;
692
693 if (component->regmap)
694 ret = regmap_raw_read(component->regmap, params->base,
695 ucontrol->value.bytes.data,
696 params->num_regs * component->val_bytes);
697 else
698 ret = -EINVAL;
699
700 /* Hide any masked bytes to ensure consistent data reporting */
701 if (ret == 0 && params->mask) {
702 switch (component->val_bytes) {
703 case 1:
704 ucontrol->value.bytes.data[0] &= ~params->mask;
705 break;
706 case 2:
707 ((u16 *)(&ucontrol->value.bytes.data))[0]
708 &= cpu_to_be16(~params->mask);
709 break;
710 case 4:
711 ((u32 *)(&ucontrol->value.bytes.data))[0]
712 &= cpu_to_be32(~params->mask);
713 break;
714 default:
715 return -EINVAL;
716 }
717 }
718
719 return ret;
720}
721EXPORT_SYMBOL_GPL(snd_soc_bytes_get);
722
723int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
724 struct snd_ctl_elem_value *ucontrol)
725{
726 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
727 struct soc_bytes *params = (void *)kcontrol->private_value;
728 int ret, len;
729 unsigned int val, mask;
730 void *data;
731
732 if (!component->regmap || !params->num_regs)
733 return -EINVAL;
734
735 len = params->num_regs * component->val_bytes;
736
737 data = kmemdup(ucontrol->value.bytes.data, len, GFP_KERNEL | GFP_DMA);
738 if (!data)
739 return -ENOMEM;
740
741 /*
742 * If we've got a mask then we need to preserve the register
743 * bits. We shouldn't modify the incoming data so take a
744 * copy.
745 */
746 if (params->mask) {
747 ret = regmap_read(component->regmap, params->base, &val);
748 if (ret != 0)
749 goto out;
750
751 val &= params->mask;
752
753 switch (component->val_bytes) {
754 case 1:
755 ((u8 *)data)[0] &= ~params->mask;
756 ((u8 *)data)[0] |= val;
757 break;
758 case 2:
759 mask = ~params->mask;
760 ret = regmap_parse_val(component->regmap,
761 &mask, &mask);
762 if (ret != 0)
763 goto out;
764
765 ((u16 *)data)[0] &= mask;
766
767 ret = regmap_parse_val(component->regmap,
768 &val, &val);
769 if (ret != 0)
770 goto out;
771
772 ((u16 *)data)[0] |= val;
773 break;
774 case 4:
775 mask = ~params->mask;
776 ret = regmap_parse_val(component->regmap,
777 &mask, &mask);
778 if (ret != 0)
779 goto out;
780
781 ((u32 *)data)[0] &= mask;
782
783 ret = regmap_parse_val(component->regmap,
784 &val, &val);
785 if (ret != 0)
786 goto out;
787
788 ((u32 *)data)[0] |= val;
789 break;
790 default:
791 ret = -EINVAL;
792 goto out;
793 }
794 }
795
796 ret = regmap_raw_write(component->regmap, params->base,
797 data, len);
798
799out:
800 kfree(data);
801
802 return ret;
803}
804EXPORT_SYMBOL_GPL(snd_soc_bytes_put);
805
806int snd_soc_bytes_info_ext(struct snd_kcontrol *kcontrol,
807 struct snd_ctl_elem_info *ucontrol)
808{
809 struct soc_bytes_ext *params = (void *)kcontrol->private_value;
810
811 ucontrol->type = SNDRV_CTL_ELEM_TYPE_BYTES;
812 ucontrol->count = params->max;
813
814 return 0;
815}
816EXPORT_SYMBOL_GPL(snd_soc_bytes_info_ext);
817
818int snd_soc_bytes_tlv_callback(struct snd_kcontrol *kcontrol, int op_flag,
819 unsigned int size, unsigned int __user *tlv)
820{
821 struct soc_bytes_ext *params = (void *)kcontrol->private_value;
822 unsigned int count = size < params->max ? size : params->max;
823 int ret = -ENXIO;
824
825 switch (op_flag) {
826 case SNDRV_CTL_TLV_OP_READ:
827 if (params->get)
828 ret = params->get(kcontrol, tlv, count);
829 break;
830 case SNDRV_CTL_TLV_OP_WRITE:
831 if (params->put)
832 ret = params->put(kcontrol, tlv, count);
833 break;
834 }
835 return ret;
836}
837EXPORT_SYMBOL_GPL(snd_soc_bytes_tlv_callback);
838
839/**
840 * snd_soc_info_xr_sx - signed multi register info callback
841 * @kcontrol: mreg control
842 * @uinfo: control element information
843 *
844 * Callback to provide information of a control that can
845 * span multiple codec registers which together
846 * forms a single signed value in a MSB/LSB manner.
847 *
848 * Returns 0 for success.
849 */
850int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
851 struct snd_ctl_elem_info *uinfo)
852{
853 struct soc_mreg_control *mc =
854 (struct soc_mreg_control *)kcontrol->private_value;
855 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
856 uinfo->count = 1;
857 uinfo->value.integer.min = mc->min;
858 uinfo->value.integer.max = mc->max;
859
860 return 0;
861}
862EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx);
863
864/**
865 * snd_soc_get_xr_sx - signed multi register get callback
866 * @kcontrol: mreg control
867 * @ucontrol: control element information
868 *
869 * Callback to get the value of a control that can span
870 * multiple codec registers which together forms a single
871 * signed value in a MSB/LSB manner. The control supports
872 * specifying total no of bits used to allow for bitfields
873 * across the multiple codec registers.
874 *
875 * Returns 0 for success.
876 */
877int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
878 struct snd_ctl_elem_value *ucontrol)
879{
880 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
881 struct soc_mreg_control *mc =
882 (struct soc_mreg_control *)kcontrol->private_value;
883 unsigned int regbase = mc->regbase;
884 unsigned int regcount = mc->regcount;
885 unsigned int regwshift = component->val_bytes * BITS_PER_BYTE;
886 unsigned int regwmask = (1UL<<regwshift)-1;
887 unsigned int invert = mc->invert;
888 unsigned long mask = (1UL<<mc->nbits)-1;
889 long min = mc->min;
890 long max = mc->max;
891 long val = 0;
892 unsigned int i;
893
894 for (i = 0; i < regcount; i++) {
895 unsigned int regval = snd_soc_component_read(component, regbase+i);
896 val |= (regval & regwmask) << (regwshift*(regcount-i-1));
897 }
898 val &= mask;
899 if (min < 0 && val > max)
900 val |= ~mask;
901 if (invert)
902 val = max - val;
903 ucontrol->value.integer.value[0] = val;
904
905 return 0;
906}
907EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx);
908
909/**
910 * snd_soc_put_xr_sx - signed multi register get callback
911 * @kcontrol: mreg control
912 * @ucontrol: control element information
913 *
914 * Callback to set the value of a control that can span
915 * multiple codec registers which together forms a single
916 * signed value in a MSB/LSB manner. The control supports
917 * specifying total no of bits used to allow for bitfields
918 * across the multiple codec registers.
919 *
920 * Returns 0 for success.
921 */
922int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
923 struct snd_ctl_elem_value *ucontrol)
924{
925 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
926 struct soc_mreg_control *mc =
927 (struct soc_mreg_control *)kcontrol->private_value;
928 unsigned int regbase = mc->regbase;
929 unsigned int regcount = mc->regcount;
930 unsigned int regwshift = component->val_bytes * BITS_PER_BYTE;
931 unsigned int regwmask = (1UL<<regwshift)-1;
932 unsigned int invert = mc->invert;
933 unsigned long mask = (1UL<<mc->nbits)-1;
934 long max = mc->max;
935 long val = ucontrol->value.integer.value[0];
936 int ret = 0;
937 unsigned int i;
938
939 if (val < mc->min || val > mc->max)
940 return -EINVAL;
941 if (invert)
942 val = max - val;
943 val &= mask;
944 for (i = 0; i < regcount; i++) {
945 unsigned int regval = (val >> (regwshift*(regcount-i-1))) & regwmask;
946 unsigned int regmask = (mask >> (regwshift*(regcount-i-1))) & regwmask;
947 int err = snd_soc_component_update_bits(component, regbase+i,
948 regmask, regval);
949 if (err < 0)
950 return err;
951 if (err > 0)
952 ret = err;
953 }
954
955 return ret;
956}
957EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx);
958
959/**
960 * snd_soc_get_strobe - strobe get callback
961 * @kcontrol: mixer control
962 * @ucontrol: control element information
963 *
964 * Callback get the value of a strobe mixer control.
965 *
966 * Returns 0 for success.
967 */
968int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
969 struct snd_ctl_elem_value *ucontrol)
970{
971 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
972 struct soc_mixer_control *mc =
973 (struct soc_mixer_control *)kcontrol->private_value;
974 unsigned int reg = mc->reg;
975 unsigned int shift = mc->shift;
976 unsigned int mask = 1 << shift;
977 unsigned int invert = mc->invert != 0;
978 unsigned int val;
979
980 val = snd_soc_component_read(component, reg);
981 val &= mask;
982
983 if (shift != 0 && val != 0)
984 val = val >> shift;
985 ucontrol->value.enumerated.item[0] = val ^ invert;
986
987 return 0;
988}
989EXPORT_SYMBOL_GPL(snd_soc_get_strobe);
990
991/**
992 * snd_soc_put_strobe - strobe put callback
993 * @kcontrol: mixer control
994 * @ucontrol: control element information
995 *
996 * Callback strobe a register bit to high then low (or the inverse)
997 * in one pass of a single mixer enum control.
998 *
999 * Returns 1 for success.
1000 */
1001int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
1002 struct snd_ctl_elem_value *ucontrol)
1003{
1004 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
1005 struct soc_mixer_control *mc =
1006 (struct soc_mixer_control *)kcontrol->private_value;
1007 unsigned int reg = mc->reg;
1008 unsigned int shift = mc->shift;
1009 unsigned int mask = 1 << shift;
1010 unsigned int invert = mc->invert != 0;
1011 unsigned int strobe = ucontrol->value.enumerated.item[0] != 0;
1012 unsigned int val1 = (strobe ^ invert) ? mask : 0;
1013 unsigned int val2 = (strobe ^ invert) ? 0 : mask;
1014 int err;
1015
1016 err = snd_soc_component_update_bits(component, reg, mask, val1);
1017 if (err < 0)
1018 return err;
1019
1020 return snd_soc_component_update_bits(component, reg, mask, val2);
1021}
1022EXPORT_SYMBOL_GPL(snd_soc_put_strobe);
1/*
2 * soc-ops.c -- Generic ASoC operations
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Copyright 2005 Openedhand Ltd.
6 * Copyright (C) 2010 Slimlogic Ltd.
7 * Copyright (C) 2010 Texas Instruments Inc.
8 *
9 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
10 * with code, comments and ideas from :-
11 * Richard Purdie <richard@openedhand.com>
12 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
17 */
18
19#include <linux/module.h>
20#include <linux/moduleparam.h>
21#include <linux/init.h>
22#include <linux/delay.h>
23#include <linux/pm.h>
24#include <linux/bitops.h>
25#include <linux/ctype.h>
26#include <linux/slab.h>
27#include <sound/core.h>
28#include <sound/jack.h>
29#include <sound/pcm.h>
30#include <sound/pcm_params.h>
31#include <sound/soc.h>
32#include <sound/soc-dpcm.h>
33#include <sound/initval.h>
34
35/**
36 * snd_soc_info_enum_double - enumerated double mixer info callback
37 * @kcontrol: mixer control
38 * @uinfo: control element information
39 *
40 * Callback to provide information about a double enumerated
41 * mixer control.
42 *
43 * Returns 0 for success.
44 */
45int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
46 struct snd_ctl_elem_info *uinfo)
47{
48 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
49
50 return snd_ctl_enum_info(uinfo, e->shift_l == e->shift_r ? 1 : 2,
51 e->items, e->texts);
52}
53EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
54
55/**
56 * snd_soc_get_enum_double - enumerated double mixer get callback
57 * @kcontrol: mixer control
58 * @ucontrol: control element information
59 *
60 * Callback to get the value of a double enumerated mixer.
61 *
62 * Returns 0 for success.
63 */
64int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
65 struct snd_ctl_elem_value *ucontrol)
66{
67 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
68 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
69 unsigned int val, item;
70 unsigned int reg_val;
71 int ret;
72
73 ret = snd_soc_component_read(component, e->reg, ®_val);
74 if (ret)
75 return ret;
76 val = (reg_val >> e->shift_l) & e->mask;
77 item = snd_soc_enum_val_to_item(e, val);
78 ucontrol->value.enumerated.item[0] = item;
79 if (e->shift_l != e->shift_r) {
80 val = (reg_val >> e->shift_r) & e->mask;
81 item = snd_soc_enum_val_to_item(e, val);
82 ucontrol->value.enumerated.item[1] = item;
83 }
84
85 return 0;
86}
87EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
88
89/**
90 * snd_soc_put_enum_double - enumerated double mixer put callback
91 * @kcontrol: mixer control
92 * @ucontrol: control element information
93 *
94 * Callback to set the value of a double enumerated mixer.
95 *
96 * Returns 0 for success.
97 */
98int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
99 struct snd_ctl_elem_value *ucontrol)
100{
101 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
102 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
103 unsigned int *item = ucontrol->value.enumerated.item;
104 unsigned int val;
105 unsigned int mask;
106
107 if (item[0] >= e->items)
108 return -EINVAL;
109 val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
110 mask = e->mask << e->shift_l;
111 if (e->shift_l != e->shift_r) {
112 if (item[1] >= e->items)
113 return -EINVAL;
114 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_r;
115 mask |= e->mask << e->shift_r;
116 }
117
118 return snd_soc_component_update_bits(component, e->reg, mask, val);
119}
120EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
121
122/**
123 * snd_soc_read_signed - Read a codec register and interpret as signed value
124 * @component: component
125 * @reg: Register to read
126 * @mask: Mask to use after shifting the register value
127 * @shift: Right shift of register value
128 * @sign_bit: Bit that describes if a number is negative or not.
129 * @signed_val: Pointer to where the read value should be stored
130 *
131 * This functions reads a codec register. The register value is shifted right
132 * by 'shift' bits and masked with the given 'mask'. Afterwards it translates
133 * the given registervalue into a signed integer if sign_bit is non-zero.
134 *
135 * Returns 0 on sucess, otherwise an error value
136 */
137static int snd_soc_read_signed(struct snd_soc_component *component,
138 unsigned int reg, unsigned int mask, unsigned int shift,
139 unsigned int sign_bit, int *signed_val)
140{
141 int ret;
142 unsigned int val;
143
144 ret = snd_soc_component_read(component, reg, &val);
145 if (ret < 0)
146 return ret;
147
148 val = (val >> shift) & mask;
149
150 if (!sign_bit) {
151 *signed_val = val;
152 return 0;
153 }
154
155 /* non-negative number */
156 if (!(val & BIT(sign_bit))) {
157 *signed_val = val;
158 return 0;
159 }
160
161 ret = val;
162
163 /*
164 * The register most probably does not contain a full-sized int.
165 * Instead we have an arbitrary number of bits in a signed
166 * representation which has to be translated into a full-sized int.
167 * This is done by filling up all bits above the sign-bit.
168 */
169 ret |= ~((int)(BIT(sign_bit) - 1));
170
171 *signed_val = ret;
172
173 return 0;
174}
175
176/**
177 * snd_soc_info_volsw - single mixer info callback
178 * @kcontrol: mixer control
179 * @uinfo: control element information
180 *
181 * Callback to provide information about a single mixer control, or a double
182 * mixer control that spans 2 registers.
183 *
184 * Returns 0 for success.
185 */
186int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
187 struct snd_ctl_elem_info *uinfo)
188{
189 struct soc_mixer_control *mc =
190 (struct soc_mixer_control *)kcontrol->private_value;
191 int platform_max;
192
193 if (!mc->platform_max)
194 mc->platform_max = mc->max;
195 platform_max = mc->platform_max;
196
197 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
198 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
199 else
200 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
201
202 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
203 uinfo->value.integer.min = 0;
204 uinfo->value.integer.max = platform_max - mc->min;
205 return 0;
206}
207EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
208
209/**
210 * snd_soc_info_volsw_sx - Mixer info callback for SX TLV controls
211 * @kcontrol: mixer control
212 * @uinfo: control element information
213 *
214 * Callback to provide information about a single mixer control, or a double
215 * mixer control that spans 2 registers of the SX TLV type. SX TLV controls
216 * have a range that represents both positive and negative values either side
217 * of zero but without a sign bit.
218 *
219 * Returns 0 for success.
220 */
221int snd_soc_info_volsw_sx(struct snd_kcontrol *kcontrol,
222 struct snd_ctl_elem_info *uinfo)
223{
224 struct soc_mixer_control *mc =
225 (struct soc_mixer_control *)kcontrol->private_value;
226
227 snd_soc_info_volsw(kcontrol, uinfo);
228 /* Max represents the number of levels in an SX control not the
229 * maximum value, so add the minimum value back on
230 */
231 uinfo->value.integer.max += mc->min;
232
233 return 0;
234}
235EXPORT_SYMBOL_GPL(snd_soc_info_volsw_sx);
236
237/**
238 * snd_soc_get_volsw - single mixer get callback
239 * @kcontrol: mixer control
240 * @ucontrol: control element information
241 *
242 * Callback to get the value of a single mixer control, or a double mixer
243 * control that spans 2 registers.
244 *
245 * Returns 0 for success.
246 */
247int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
248 struct snd_ctl_elem_value *ucontrol)
249{
250 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
251 struct soc_mixer_control *mc =
252 (struct soc_mixer_control *)kcontrol->private_value;
253 unsigned int reg = mc->reg;
254 unsigned int reg2 = mc->rreg;
255 unsigned int shift = mc->shift;
256 unsigned int rshift = mc->rshift;
257 int max = mc->max;
258 int min = mc->min;
259 int sign_bit = mc->sign_bit;
260 unsigned int mask = (1 << fls(max)) - 1;
261 unsigned int invert = mc->invert;
262 int val;
263 int ret;
264
265 if (sign_bit)
266 mask = BIT(sign_bit + 1) - 1;
267
268 ret = snd_soc_read_signed(component, reg, mask, shift, sign_bit, &val);
269 if (ret)
270 return ret;
271
272 ucontrol->value.integer.value[0] = val - min;
273 if (invert)
274 ucontrol->value.integer.value[0] =
275 max - ucontrol->value.integer.value[0];
276
277 if (snd_soc_volsw_is_stereo(mc)) {
278 if (reg == reg2)
279 ret = snd_soc_read_signed(component, reg, mask, rshift,
280 sign_bit, &val);
281 else
282 ret = snd_soc_read_signed(component, reg2, mask, shift,
283 sign_bit, &val);
284 if (ret)
285 return ret;
286
287 ucontrol->value.integer.value[1] = val - min;
288 if (invert)
289 ucontrol->value.integer.value[1] =
290 max - ucontrol->value.integer.value[1];
291 }
292
293 return 0;
294}
295EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
296
297/**
298 * snd_soc_put_volsw - single mixer put callback
299 * @kcontrol: mixer control
300 * @ucontrol: control element information
301 *
302 * Callback to set the value of a single mixer control, or a double mixer
303 * control that spans 2 registers.
304 *
305 * Returns 0 for success.
306 */
307int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
308 struct snd_ctl_elem_value *ucontrol)
309{
310 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
311 struct soc_mixer_control *mc =
312 (struct soc_mixer_control *)kcontrol->private_value;
313 unsigned int reg = mc->reg;
314 unsigned int reg2 = mc->rreg;
315 unsigned int shift = mc->shift;
316 unsigned int rshift = mc->rshift;
317 int max = mc->max;
318 int min = mc->min;
319 unsigned int sign_bit = mc->sign_bit;
320 unsigned int mask = (1 << fls(max)) - 1;
321 unsigned int invert = mc->invert;
322 int err;
323 bool type_2r = false;
324 unsigned int val2 = 0;
325 unsigned int val, val_mask;
326
327 if (sign_bit)
328 mask = BIT(sign_bit + 1) - 1;
329
330 val = ((ucontrol->value.integer.value[0] + min) & mask);
331 if (invert)
332 val = max - val;
333 val_mask = mask << shift;
334 val = val << shift;
335 if (snd_soc_volsw_is_stereo(mc)) {
336 val2 = ((ucontrol->value.integer.value[1] + min) & mask);
337 if (invert)
338 val2 = max - val2;
339 if (reg == reg2) {
340 val_mask |= mask << rshift;
341 val |= val2 << rshift;
342 } else {
343 val2 = val2 << shift;
344 type_2r = true;
345 }
346 }
347 err = snd_soc_component_update_bits(component, reg, val_mask, val);
348 if (err < 0)
349 return err;
350
351 if (type_2r)
352 err = snd_soc_component_update_bits(component, reg2, val_mask,
353 val2);
354
355 return err;
356}
357EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
358
359/**
360 * snd_soc_get_volsw_sx - single mixer get callback
361 * @kcontrol: mixer control
362 * @ucontrol: control element information
363 *
364 * Callback to get the value of a single mixer control, or a double mixer
365 * control that spans 2 registers.
366 *
367 * Returns 0 for success.
368 */
369int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
370 struct snd_ctl_elem_value *ucontrol)
371{
372 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
373 struct soc_mixer_control *mc =
374 (struct soc_mixer_control *)kcontrol->private_value;
375 unsigned int reg = mc->reg;
376 unsigned int reg2 = mc->rreg;
377 unsigned int shift = mc->shift;
378 unsigned int rshift = mc->rshift;
379 int max = mc->max;
380 int min = mc->min;
381 unsigned int mask = (1 << (fls(min + max) - 1)) - 1;
382 unsigned int val;
383 int ret;
384
385 ret = snd_soc_component_read(component, reg, &val);
386 if (ret < 0)
387 return ret;
388
389 ucontrol->value.integer.value[0] = ((val >> shift) - min) & mask;
390
391 if (snd_soc_volsw_is_stereo(mc)) {
392 ret = snd_soc_component_read(component, reg2, &val);
393 if (ret < 0)
394 return ret;
395
396 val = ((val >> rshift) - min) & mask;
397 ucontrol->value.integer.value[1] = val;
398 }
399
400 return 0;
401}
402EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx);
403
404/**
405 * snd_soc_put_volsw_sx - double mixer set callback
406 * @kcontrol: mixer control
407 * @ucontrol: control element information
408 *
409 * Callback to set the value of a double mixer control that spans 2 registers.
410 *
411 * Returns 0 for success.
412 */
413int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
414 struct snd_ctl_elem_value *ucontrol)
415{
416 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
417 struct soc_mixer_control *mc =
418 (struct soc_mixer_control *)kcontrol->private_value;
419
420 unsigned int reg = mc->reg;
421 unsigned int reg2 = mc->rreg;
422 unsigned int shift = mc->shift;
423 unsigned int rshift = mc->rshift;
424 int max = mc->max;
425 int min = mc->min;
426 unsigned int mask = (1 << (fls(min + max) - 1)) - 1;
427 int err = 0;
428 unsigned int val, val_mask, val2 = 0;
429
430 val_mask = mask << shift;
431 val = (ucontrol->value.integer.value[0] + min) & mask;
432 val = val << shift;
433
434 err = snd_soc_component_update_bits(component, reg, val_mask, val);
435 if (err < 0)
436 return err;
437
438 if (snd_soc_volsw_is_stereo(mc)) {
439 val_mask = mask << rshift;
440 val2 = (ucontrol->value.integer.value[1] + min) & mask;
441 val2 = val2 << rshift;
442
443 err = snd_soc_component_update_bits(component, reg2, val_mask,
444 val2);
445 }
446 return err;
447}
448EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx);
449
450/**
451 * snd_soc_info_volsw_range - single mixer info callback with range.
452 * @kcontrol: mixer control
453 * @uinfo: control element information
454 *
455 * Callback to provide information, within a range, about a single
456 * mixer control.
457 *
458 * returns 0 for success.
459 */
460int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol,
461 struct snd_ctl_elem_info *uinfo)
462{
463 struct soc_mixer_control *mc =
464 (struct soc_mixer_control *)kcontrol->private_value;
465 int platform_max;
466 int min = mc->min;
467
468 if (!mc->platform_max)
469 mc->platform_max = mc->max;
470 platform_max = mc->platform_max;
471
472 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
473 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
474 uinfo->value.integer.min = 0;
475 uinfo->value.integer.max = platform_max - min;
476
477 return 0;
478}
479EXPORT_SYMBOL_GPL(snd_soc_info_volsw_range);
480
481/**
482 * snd_soc_put_volsw_range - single mixer put value callback with range.
483 * @kcontrol: mixer control
484 * @ucontrol: control element information
485 *
486 * Callback to set the value, within a range, for a single mixer control.
487 *
488 * Returns 0 for success.
489 */
490int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
491 struct snd_ctl_elem_value *ucontrol)
492{
493 struct soc_mixer_control *mc =
494 (struct soc_mixer_control *)kcontrol->private_value;
495 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
496 unsigned int reg = mc->reg;
497 unsigned int rreg = mc->rreg;
498 unsigned int shift = mc->shift;
499 int min = mc->min;
500 int max = mc->max;
501 unsigned int mask = (1 << fls(max)) - 1;
502 unsigned int invert = mc->invert;
503 unsigned int val, val_mask;
504 int ret;
505
506 if (invert)
507 val = (max - ucontrol->value.integer.value[0]) & mask;
508 else
509 val = ((ucontrol->value.integer.value[0] + min) & mask);
510 val_mask = mask << shift;
511 val = val << shift;
512
513 ret = snd_soc_component_update_bits(component, reg, val_mask, val);
514 if (ret < 0)
515 return ret;
516
517 if (snd_soc_volsw_is_stereo(mc)) {
518 if (invert)
519 val = (max - ucontrol->value.integer.value[1]) & mask;
520 else
521 val = ((ucontrol->value.integer.value[1] + min) & mask);
522 val_mask = mask << shift;
523 val = val << shift;
524
525 ret = snd_soc_component_update_bits(component, rreg, val_mask,
526 val);
527 }
528
529 return ret;
530}
531EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range);
532
533/**
534 * snd_soc_get_volsw_range - single mixer get callback with range
535 * @kcontrol: mixer control
536 * @ucontrol: control element information
537 *
538 * Callback to get the value, within a range, of a single mixer control.
539 *
540 * Returns 0 for success.
541 */
542int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
543 struct snd_ctl_elem_value *ucontrol)
544{
545 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
546 struct soc_mixer_control *mc =
547 (struct soc_mixer_control *)kcontrol->private_value;
548 unsigned int reg = mc->reg;
549 unsigned int rreg = mc->rreg;
550 unsigned int shift = mc->shift;
551 int min = mc->min;
552 int max = mc->max;
553 unsigned int mask = (1 << fls(max)) - 1;
554 unsigned int invert = mc->invert;
555 unsigned int val;
556 int ret;
557
558 ret = snd_soc_component_read(component, reg, &val);
559 if (ret)
560 return ret;
561
562 ucontrol->value.integer.value[0] = (val >> shift) & mask;
563 if (invert)
564 ucontrol->value.integer.value[0] =
565 max - ucontrol->value.integer.value[0];
566 else
567 ucontrol->value.integer.value[0] =
568 ucontrol->value.integer.value[0] - min;
569
570 if (snd_soc_volsw_is_stereo(mc)) {
571 ret = snd_soc_component_read(component, rreg, &val);
572 if (ret)
573 return ret;
574
575 ucontrol->value.integer.value[1] = (val >> shift) & mask;
576 if (invert)
577 ucontrol->value.integer.value[1] =
578 max - ucontrol->value.integer.value[1];
579 else
580 ucontrol->value.integer.value[1] =
581 ucontrol->value.integer.value[1] - min;
582 }
583
584 return 0;
585}
586EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range);
587
588/**
589 * snd_soc_limit_volume - Set new limit to an existing volume control.
590 *
591 * @card: where to look for the control
592 * @name: Name of the control
593 * @max: new maximum limit
594 *
595 * Return 0 for success, else error.
596 */
597int snd_soc_limit_volume(struct snd_soc_card *card,
598 const char *name, int max)
599{
600 struct snd_card *snd_card = card->snd_card;
601 struct snd_kcontrol *kctl;
602 struct soc_mixer_control *mc;
603 int found = 0;
604 int ret = -EINVAL;
605
606 /* Sanity check for name and max */
607 if (unlikely(!name || max <= 0))
608 return -EINVAL;
609
610 list_for_each_entry(kctl, &snd_card->controls, list) {
611 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
612 found = 1;
613 break;
614 }
615 }
616 if (found) {
617 mc = (struct soc_mixer_control *)kctl->private_value;
618 if (max <= mc->max) {
619 mc->platform_max = max;
620 ret = 0;
621 }
622 }
623 return ret;
624}
625EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
626
627int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
628 struct snd_ctl_elem_info *uinfo)
629{
630 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
631 struct soc_bytes *params = (void *)kcontrol->private_value;
632
633 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
634 uinfo->count = params->num_regs * component->val_bytes;
635
636 return 0;
637}
638EXPORT_SYMBOL_GPL(snd_soc_bytes_info);
639
640int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
641 struct snd_ctl_elem_value *ucontrol)
642{
643 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
644 struct soc_bytes *params = (void *)kcontrol->private_value;
645 int ret;
646
647 if (component->regmap)
648 ret = regmap_raw_read(component->regmap, params->base,
649 ucontrol->value.bytes.data,
650 params->num_regs * component->val_bytes);
651 else
652 ret = -EINVAL;
653
654 /* Hide any masked bytes to ensure consistent data reporting */
655 if (ret == 0 && params->mask) {
656 switch (component->val_bytes) {
657 case 1:
658 ucontrol->value.bytes.data[0] &= ~params->mask;
659 break;
660 case 2:
661 ((u16 *)(&ucontrol->value.bytes.data))[0]
662 &= cpu_to_be16(~params->mask);
663 break;
664 case 4:
665 ((u32 *)(&ucontrol->value.bytes.data))[0]
666 &= cpu_to_be32(~params->mask);
667 break;
668 default:
669 return -EINVAL;
670 }
671 }
672
673 return ret;
674}
675EXPORT_SYMBOL_GPL(snd_soc_bytes_get);
676
677int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
678 struct snd_ctl_elem_value *ucontrol)
679{
680 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
681 struct soc_bytes *params = (void *)kcontrol->private_value;
682 int ret, len;
683 unsigned int val, mask;
684 void *data;
685
686 if (!component->regmap || !params->num_regs)
687 return -EINVAL;
688
689 len = params->num_regs * component->val_bytes;
690
691 data = kmemdup(ucontrol->value.bytes.data, len, GFP_KERNEL | GFP_DMA);
692 if (!data)
693 return -ENOMEM;
694
695 /*
696 * If we've got a mask then we need to preserve the register
697 * bits. We shouldn't modify the incoming data so take a
698 * copy.
699 */
700 if (params->mask) {
701 ret = regmap_read(component->regmap, params->base, &val);
702 if (ret != 0)
703 goto out;
704
705 val &= params->mask;
706
707 switch (component->val_bytes) {
708 case 1:
709 ((u8 *)data)[0] &= ~params->mask;
710 ((u8 *)data)[0] |= val;
711 break;
712 case 2:
713 mask = ~params->mask;
714 ret = regmap_parse_val(component->regmap,
715 &mask, &mask);
716 if (ret != 0)
717 goto out;
718
719 ((u16 *)data)[0] &= mask;
720
721 ret = regmap_parse_val(component->regmap,
722 &val, &val);
723 if (ret != 0)
724 goto out;
725
726 ((u16 *)data)[0] |= val;
727 break;
728 case 4:
729 mask = ~params->mask;
730 ret = regmap_parse_val(component->regmap,
731 &mask, &mask);
732 if (ret != 0)
733 goto out;
734
735 ((u32 *)data)[0] &= mask;
736
737 ret = regmap_parse_val(component->regmap,
738 &val, &val);
739 if (ret != 0)
740 goto out;
741
742 ((u32 *)data)[0] |= val;
743 break;
744 default:
745 ret = -EINVAL;
746 goto out;
747 }
748 }
749
750 ret = regmap_raw_write(component->regmap, params->base,
751 data, len);
752
753out:
754 kfree(data);
755
756 return ret;
757}
758EXPORT_SYMBOL_GPL(snd_soc_bytes_put);
759
760int snd_soc_bytes_info_ext(struct snd_kcontrol *kcontrol,
761 struct snd_ctl_elem_info *ucontrol)
762{
763 struct soc_bytes_ext *params = (void *)kcontrol->private_value;
764
765 ucontrol->type = SNDRV_CTL_ELEM_TYPE_BYTES;
766 ucontrol->count = params->max;
767
768 return 0;
769}
770EXPORT_SYMBOL_GPL(snd_soc_bytes_info_ext);
771
772int snd_soc_bytes_tlv_callback(struct snd_kcontrol *kcontrol, int op_flag,
773 unsigned int size, unsigned int __user *tlv)
774{
775 struct soc_bytes_ext *params = (void *)kcontrol->private_value;
776 unsigned int count = size < params->max ? size : params->max;
777 int ret = -ENXIO;
778
779 switch (op_flag) {
780 case SNDRV_CTL_TLV_OP_READ:
781 if (params->get)
782 ret = params->get(kcontrol, tlv, count);
783 break;
784 case SNDRV_CTL_TLV_OP_WRITE:
785 if (params->put)
786 ret = params->put(kcontrol, tlv, count);
787 break;
788 }
789 return ret;
790}
791EXPORT_SYMBOL_GPL(snd_soc_bytes_tlv_callback);
792
793/**
794 * snd_soc_info_xr_sx - signed multi register info callback
795 * @kcontrol: mreg control
796 * @uinfo: control element information
797 *
798 * Callback to provide information of a control that can
799 * span multiple codec registers which together
800 * forms a single signed value in a MSB/LSB manner.
801 *
802 * Returns 0 for success.
803 */
804int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
805 struct snd_ctl_elem_info *uinfo)
806{
807 struct soc_mreg_control *mc =
808 (struct soc_mreg_control *)kcontrol->private_value;
809 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
810 uinfo->count = 1;
811 uinfo->value.integer.min = mc->min;
812 uinfo->value.integer.max = mc->max;
813
814 return 0;
815}
816EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx);
817
818/**
819 * snd_soc_get_xr_sx - signed multi register get callback
820 * @kcontrol: mreg control
821 * @ucontrol: control element information
822 *
823 * Callback to get the value of a control that can span
824 * multiple codec registers which together forms a single
825 * signed value in a MSB/LSB manner. The control supports
826 * specifying total no of bits used to allow for bitfields
827 * across the multiple codec registers.
828 *
829 * Returns 0 for success.
830 */
831int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
832 struct snd_ctl_elem_value *ucontrol)
833{
834 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
835 struct soc_mreg_control *mc =
836 (struct soc_mreg_control *)kcontrol->private_value;
837 unsigned int regbase = mc->regbase;
838 unsigned int regcount = mc->regcount;
839 unsigned int regwshift = component->val_bytes * BITS_PER_BYTE;
840 unsigned int regwmask = (1<<regwshift)-1;
841 unsigned int invert = mc->invert;
842 unsigned long mask = (1UL<<mc->nbits)-1;
843 long min = mc->min;
844 long max = mc->max;
845 long val = 0;
846 unsigned int regval;
847 unsigned int i;
848 int ret;
849
850 for (i = 0; i < regcount; i++) {
851 ret = snd_soc_component_read(component, regbase+i, ®val);
852 if (ret)
853 return ret;
854 val |= (regval & regwmask) << (regwshift*(regcount-i-1));
855 }
856 val &= mask;
857 if (min < 0 && val > max)
858 val |= ~mask;
859 if (invert)
860 val = max - val;
861 ucontrol->value.integer.value[0] = val;
862
863 return 0;
864}
865EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx);
866
867/**
868 * snd_soc_put_xr_sx - signed multi register get callback
869 * @kcontrol: mreg control
870 * @ucontrol: control element information
871 *
872 * Callback to set the value of a control that can span
873 * multiple codec registers which together forms a single
874 * signed value in a MSB/LSB manner. The control supports
875 * specifying total no of bits used to allow for bitfields
876 * across the multiple codec registers.
877 *
878 * Returns 0 for success.
879 */
880int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
881 struct snd_ctl_elem_value *ucontrol)
882{
883 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
884 struct soc_mreg_control *mc =
885 (struct soc_mreg_control *)kcontrol->private_value;
886 unsigned int regbase = mc->regbase;
887 unsigned int regcount = mc->regcount;
888 unsigned int regwshift = component->val_bytes * BITS_PER_BYTE;
889 unsigned int regwmask = (1<<regwshift)-1;
890 unsigned int invert = mc->invert;
891 unsigned long mask = (1UL<<mc->nbits)-1;
892 long max = mc->max;
893 long val = ucontrol->value.integer.value[0];
894 unsigned int i, regval, regmask;
895 int err;
896
897 if (invert)
898 val = max - val;
899 val &= mask;
900 for (i = 0; i < regcount; i++) {
901 regval = (val >> (regwshift*(regcount-i-1))) & regwmask;
902 regmask = (mask >> (regwshift*(regcount-i-1))) & regwmask;
903 err = snd_soc_component_update_bits(component, regbase+i,
904 regmask, regval);
905 if (err < 0)
906 return err;
907 }
908
909 return 0;
910}
911EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx);
912
913/**
914 * snd_soc_get_strobe - strobe get callback
915 * @kcontrol: mixer control
916 * @ucontrol: control element information
917 *
918 * Callback get the value of a strobe mixer control.
919 *
920 * Returns 0 for success.
921 */
922int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
923 struct snd_ctl_elem_value *ucontrol)
924{
925 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
926 struct soc_mixer_control *mc =
927 (struct soc_mixer_control *)kcontrol->private_value;
928 unsigned int reg = mc->reg;
929 unsigned int shift = mc->shift;
930 unsigned int mask = 1 << shift;
931 unsigned int invert = mc->invert != 0;
932 unsigned int val;
933 int ret;
934
935 ret = snd_soc_component_read(component, reg, &val);
936 if (ret)
937 return ret;
938
939 val &= mask;
940
941 if (shift != 0 && val != 0)
942 val = val >> shift;
943 ucontrol->value.enumerated.item[0] = val ^ invert;
944
945 return 0;
946}
947EXPORT_SYMBOL_GPL(snd_soc_get_strobe);
948
949/**
950 * snd_soc_put_strobe - strobe put callback
951 * @kcontrol: mixer control
952 * @ucontrol: control element information
953 *
954 * Callback strobe a register bit to high then low (or the inverse)
955 * in one pass of a single mixer enum control.
956 *
957 * Returns 1 for success.
958 */
959int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
960 struct snd_ctl_elem_value *ucontrol)
961{
962 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
963 struct soc_mixer_control *mc =
964 (struct soc_mixer_control *)kcontrol->private_value;
965 unsigned int reg = mc->reg;
966 unsigned int shift = mc->shift;
967 unsigned int mask = 1 << shift;
968 unsigned int invert = mc->invert != 0;
969 unsigned int strobe = ucontrol->value.enumerated.item[0] != 0;
970 unsigned int val1 = (strobe ^ invert) ? mask : 0;
971 unsigned int val2 = (strobe ^ invert) ? 0 : mask;
972 int err;
973
974 err = snd_soc_component_update_bits(component, reg, mask, val1);
975 if (err < 0)
976 return err;
977
978 return snd_soc_component_update_bits(component, reg, mask, val2);
979}
980EXPORT_SYMBOL_GPL(snd_soc_put_strobe);