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