453b61b42dd9ec4a413f53aa66a1407d3faf90b8
[releases.git] / 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, tmp;
527
528         tmp = ucontrol->value.integer.value[0];
529         if (tmp < 0)
530                 return -EINVAL;
531         if (mc->platform_max && tmp > mc->platform_max)
532                 return -EINVAL;
533         if (tmp > mc->max - mc->min)
534                 return -EINVAL;
535
536         if (invert)
537                 val = (max - ucontrol->value.integer.value[0]) & mask;
538         else
539                 val = ((ucontrol->value.integer.value[0] + min) & mask);
540         val_mask = mask << shift;
541         val = val << shift;
542
543         err = snd_soc_component_update_bits(component, reg, val_mask, val);
544         if (err < 0)
545                 return err;
546         ret = err;
547
548         if (snd_soc_volsw_is_stereo(mc)) {
549                 tmp = ucontrol->value.integer.value[1];
550                 if (tmp < 0)
551                         return -EINVAL;
552                 if (mc->platform_max && tmp > mc->platform_max)
553                         return -EINVAL;
554                 if (tmp > mc->max - mc->min)
555                         return -EINVAL;
556
557                 if (invert)
558                         val = (max - ucontrol->value.integer.value[1]) & mask;
559                 else
560                         val = ((ucontrol->value.integer.value[1] + min) & mask);
561                 val_mask = mask << shift;
562                 val = val << shift;
563
564                 err = snd_soc_component_update_bits(component, rreg, val_mask,
565                         val);
566                 /* Don't discard any error code or drop change flag */
567                 if (ret == 0 || err < 0) {
568                         ret = err;
569                 }
570         }
571
572         return ret;
573 }
574 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range);
575
576 /**
577  * snd_soc_get_volsw_range - single mixer get callback with range
578  * @kcontrol: mixer control
579  * @ucontrol: control element information
580  *
581  * Callback to get the value, within a range, of a single mixer control.
582  *
583  * Returns 0 for success.
584  */
585 int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
586         struct snd_ctl_elem_value *ucontrol)
587 {
588         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
589         struct soc_mixer_control *mc =
590                 (struct soc_mixer_control *)kcontrol->private_value;
591         unsigned int reg = mc->reg;
592         unsigned int rreg = mc->rreg;
593         unsigned int shift = mc->shift;
594         int min = mc->min;
595         int max = mc->max;
596         unsigned int mask = (1 << fls(max)) - 1;
597         unsigned int invert = mc->invert;
598         unsigned int val;
599         int ret;
600
601         ret = snd_soc_component_read(component, reg, &val);
602         if (ret)
603                 return ret;
604
605         ucontrol->value.integer.value[0] = (val >> shift) & mask;
606         if (invert)
607                 ucontrol->value.integer.value[0] =
608                         max - ucontrol->value.integer.value[0];
609         else
610                 ucontrol->value.integer.value[0] =
611                         ucontrol->value.integer.value[0] - min;
612
613         if (snd_soc_volsw_is_stereo(mc)) {
614                 ret = snd_soc_component_read(component, rreg, &val);
615                 if (ret)
616                         return ret;
617
618                 ucontrol->value.integer.value[1] = (val >> shift) & mask;
619                 if (invert)
620                         ucontrol->value.integer.value[1] =
621                                 max - ucontrol->value.integer.value[1];
622                 else
623                         ucontrol->value.integer.value[1] =
624                                 ucontrol->value.integer.value[1] - min;
625         }
626
627         return 0;
628 }
629 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range);
630
631 /**
632  * snd_soc_limit_volume - Set new limit to an existing volume control.
633  *
634  * @card: where to look for the control
635  * @name: Name of the control
636  * @max: new maximum limit
637  *
638  * Return 0 for success, else error.
639  */
640 int snd_soc_limit_volume(struct snd_soc_card *card,
641         const char *name, int max)
642 {
643         struct snd_card *snd_card = card->snd_card;
644         struct snd_kcontrol *kctl;
645         struct soc_mixer_control *mc;
646         int found = 0;
647         int ret = -EINVAL;
648
649         /* Sanity check for name and max */
650         if (unlikely(!name || max <= 0))
651                 return -EINVAL;
652
653         list_for_each_entry(kctl, &snd_card->controls, list) {
654                 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
655                         found = 1;
656                         break;
657                 }
658         }
659         if (found) {
660                 mc = (struct soc_mixer_control *)kctl->private_value;
661                 if (max <= mc->max) {
662                         mc->platform_max = max;
663                         ret = 0;
664                 }
665         }
666         return ret;
667 }
668 EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
669
670 int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
671                        struct snd_ctl_elem_info *uinfo)
672 {
673         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
674         struct soc_bytes *params = (void *)kcontrol->private_value;
675
676         uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
677         uinfo->count = params->num_regs * component->val_bytes;
678
679         return 0;
680 }
681 EXPORT_SYMBOL_GPL(snd_soc_bytes_info);
682
683 int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
684                       struct snd_ctl_elem_value *ucontrol)
685 {
686         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
687         struct soc_bytes *params = (void *)kcontrol->private_value;
688         int ret;
689
690         if (component->regmap)
691                 ret = regmap_raw_read(component->regmap, params->base,
692                                       ucontrol->value.bytes.data,
693                                       params->num_regs * component->val_bytes);
694         else
695                 ret = -EINVAL;
696
697         /* Hide any masked bytes to ensure consistent data reporting */
698         if (ret == 0 && params->mask) {
699                 switch (component->val_bytes) {
700                 case 1:
701                         ucontrol->value.bytes.data[0] &= ~params->mask;
702                         break;
703                 case 2:
704                         ((u16 *)(&ucontrol->value.bytes.data))[0]
705                                 &= cpu_to_be16(~params->mask);
706                         break;
707                 case 4:
708                         ((u32 *)(&ucontrol->value.bytes.data))[0]
709                                 &= cpu_to_be32(~params->mask);
710                         break;
711                 default:
712                         return -EINVAL;
713                 }
714         }
715
716         return ret;
717 }
718 EXPORT_SYMBOL_GPL(snd_soc_bytes_get);
719
720 int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
721                       struct snd_ctl_elem_value *ucontrol)
722 {
723         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
724         struct soc_bytes *params = (void *)kcontrol->private_value;
725         int ret, len;
726         unsigned int val, mask;
727         void *data;
728
729         if (!component->regmap || !params->num_regs)
730                 return -EINVAL;
731
732         len = params->num_regs * component->val_bytes;
733
734         data = kmemdup(ucontrol->value.bytes.data, len, GFP_KERNEL | GFP_DMA);
735         if (!data)
736                 return -ENOMEM;
737
738         /*
739          * If we've got a mask then we need to preserve the register
740          * bits.  We shouldn't modify the incoming data so take a
741          * copy.
742          */
743         if (params->mask) {
744                 ret = regmap_read(component->regmap, params->base, &val);
745                 if (ret != 0)
746                         goto out;
747
748                 val &= params->mask;
749
750                 switch (component->val_bytes) {
751                 case 1:
752                         ((u8 *)data)[0] &= ~params->mask;
753                         ((u8 *)data)[0] |= val;
754                         break;
755                 case 2:
756                         mask = ~params->mask;
757                         ret = regmap_parse_val(component->regmap,
758                                                         &mask, &mask);
759                         if (ret != 0)
760                                 goto out;
761
762                         ((u16 *)data)[0] &= mask;
763
764                         ret = regmap_parse_val(component->regmap,
765                                                         &val, &val);
766                         if (ret != 0)
767                                 goto out;
768
769                         ((u16 *)data)[0] |= val;
770                         break;
771                 case 4:
772                         mask = ~params->mask;
773                         ret = regmap_parse_val(component->regmap,
774                                                         &mask, &mask);
775                         if (ret != 0)
776                                 goto out;
777
778                         ((u32 *)data)[0] &= mask;
779
780                         ret = regmap_parse_val(component->regmap,
781                                                         &val, &val);
782                         if (ret != 0)
783                                 goto out;
784
785                         ((u32 *)data)[0] |= val;
786                         break;
787                 default:
788                         ret = -EINVAL;
789                         goto out;
790                 }
791         }
792
793         ret = regmap_raw_write(component->regmap, params->base,
794                                data, len);
795
796 out:
797         kfree(data);
798
799         return ret;
800 }
801 EXPORT_SYMBOL_GPL(snd_soc_bytes_put);
802
803 int snd_soc_bytes_info_ext(struct snd_kcontrol *kcontrol,
804                         struct snd_ctl_elem_info *ucontrol)
805 {
806         struct soc_bytes_ext *params = (void *)kcontrol->private_value;
807
808         ucontrol->type = SNDRV_CTL_ELEM_TYPE_BYTES;
809         ucontrol->count = params->max;
810
811         return 0;
812 }
813 EXPORT_SYMBOL_GPL(snd_soc_bytes_info_ext);
814
815 int snd_soc_bytes_tlv_callback(struct snd_kcontrol *kcontrol, int op_flag,
816                                 unsigned int size, unsigned int __user *tlv)
817 {
818         struct soc_bytes_ext *params = (void *)kcontrol->private_value;
819         unsigned int count = size < params->max ? size : params->max;
820         int ret = -ENXIO;
821
822         switch (op_flag) {
823         case SNDRV_CTL_TLV_OP_READ:
824                 if (params->get)
825                         ret = params->get(kcontrol, tlv, count);
826                 break;
827         case SNDRV_CTL_TLV_OP_WRITE:
828                 if (params->put)
829                         ret = params->put(kcontrol, tlv, count);
830                 break;
831         }
832         return ret;
833 }
834 EXPORT_SYMBOL_GPL(snd_soc_bytes_tlv_callback);
835
836 /**
837  * snd_soc_info_xr_sx - signed multi register info callback
838  * @kcontrol: mreg control
839  * @uinfo: control element information
840  *
841  * Callback to provide information of a control that can
842  * span multiple codec registers which together
843  * forms a single signed value in a MSB/LSB manner.
844  *
845  * Returns 0 for success.
846  */
847 int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
848         struct snd_ctl_elem_info *uinfo)
849 {
850         struct soc_mreg_control *mc =
851                 (struct soc_mreg_control *)kcontrol->private_value;
852         uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
853         uinfo->count = 1;
854         uinfo->value.integer.min = mc->min;
855         uinfo->value.integer.max = mc->max;
856
857         return 0;
858 }
859 EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx);
860
861 /**
862  * snd_soc_get_xr_sx - signed multi register get callback
863  * @kcontrol: mreg control
864  * @ucontrol: control element information
865  *
866  * Callback to get the value of a control that can span
867  * multiple codec registers which together forms a single
868  * signed value in a MSB/LSB manner. The control supports
869  * specifying total no of bits used to allow for bitfields
870  * across the multiple codec registers.
871  *
872  * Returns 0 for success.
873  */
874 int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
875         struct snd_ctl_elem_value *ucontrol)
876 {
877         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
878         struct soc_mreg_control *mc =
879                 (struct soc_mreg_control *)kcontrol->private_value;
880         unsigned int regbase = mc->regbase;
881         unsigned int regcount = mc->regcount;
882         unsigned int regwshift = component->val_bytes * BITS_PER_BYTE;
883         unsigned int regwmask = (1UL<<regwshift)-1;
884         unsigned int invert = mc->invert;
885         unsigned long mask = (1UL<<mc->nbits)-1;
886         long min = mc->min;
887         long max = mc->max;
888         long val = 0;
889         unsigned int regval;
890         unsigned int i;
891         int ret;
892
893         for (i = 0; i < regcount; i++) {
894                 ret = snd_soc_component_read(component, regbase+i, &regval);
895                 if (ret)
896                         return ret;
897                 val |= (regval & regwmask) << (regwshift*(regcount-i-1));
898         }
899         val &= mask;
900         if (min < 0 && val > max)
901                 val |= ~mask;
902         if (invert)
903                 val = max - val;
904         ucontrol->value.integer.value[0] = val;
905
906         return 0;
907 }
908 EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx);
909
910 /**
911  * snd_soc_put_xr_sx - signed multi register get callback
912  * @kcontrol: mreg control
913  * @ucontrol: control element information
914  *
915  * Callback to set the value of a control that can span
916  * multiple codec registers which together forms a single
917  * signed value in a MSB/LSB manner. The control supports
918  * specifying total no of bits used to allow for bitfields
919  * across the multiple codec registers.
920  *
921  * Returns 0 for success.
922  */
923 int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
924         struct snd_ctl_elem_value *ucontrol)
925 {
926         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
927         struct soc_mreg_control *mc =
928                 (struct soc_mreg_control *)kcontrol->private_value;
929         unsigned int regbase = mc->regbase;
930         unsigned int regcount = mc->regcount;
931         unsigned int regwshift = component->val_bytes * BITS_PER_BYTE;
932         unsigned int regwmask = (1UL<<regwshift)-1;
933         unsigned int invert = mc->invert;
934         unsigned long mask = (1UL<<mc->nbits)-1;
935         long max = mc->max;
936         long val = ucontrol->value.integer.value[0];
937         unsigned int i, regval, regmask;
938         int err;
939
940         if (val < mc->min || val > mc->max)
941                 return -EINVAL;
942         if (invert)
943                 val = max - val;
944         val &= mask;
945         for (i = 0; i < regcount; i++) {
946                 regval = (val >> (regwshift*(regcount-i-1))) & regwmask;
947                 regmask = (mask >> (regwshift*(regcount-i-1))) & regwmask;
948                 err = snd_soc_component_update_bits(component, regbase+i,
949                                 regmask, regval);
950                 if (err < 0)
951                         return err;
952         }
953
954         return 0;
955 }
956 EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx);
957
958 /**
959  * snd_soc_get_strobe - strobe get callback
960  * @kcontrol: mixer control
961  * @ucontrol: control element information
962  *
963  * Callback get the value of a strobe mixer control.
964  *
965  * Returns 0 for success.
966  */
967 int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
968         struct snd_ctl_elem_value *ucontrol)
969 {
970         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
971         struct soc_mixer_control *mc =
972                 (struct soc_mixer_control *)kcontrol->private_value;
973         unsigned int reg = mc->reg;
974         unsigned int shift = mc->shift;
975         unsigned int mask = 1 << shift;
976         unsigned int invert = mc->invert != 0;
977         unsigned int val;
978         int ret;
979
980         ret = snd_soc_component_read(component, reg, &val);
981         if (ret)
982                 return ret;
983
984         val &= mask;
985
986         if (shift != 0 && val != 0)
987                 val = val >> shift;
988         ucontrol->value.enumerated.item[0] = val ^ invert;
989
990         return 0;
991 }
992 EXPORT_SYMBOL_GPL(snd_soc_get_strobe);
993
994 /**
995  * snd_soc_put_strobe - strobe put callback
996  * @kcontrol: mixer control
997  * @ucontrol: control element information
998  *
999  * Callback strobe a register bit to high then low (or the inverse)
1000  * in one pass of a single mixer enum control.
1001  *
1002  * Returns 1 for success.
1003  */
1004 int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
1005         struct snd_ctl_elem_value *ucontrol)
1006 {
1007         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
1008         struct soc_mixer_control *mc =
1009                 (struct soc_mixer_control *)kcontrol->private_value;
1010         unsigned int reg = mc->reg;
1011         unsigned int shift = mc->shift;
1012         unsigned int mask = 1 << shift;
1013         unsigned int invert = mc->invert != 0;
1014         unsigned int strobe = ucontrol->value.enumerated.item[0] != 0;
1015         unsigned int val1 = (strobe ^ invert) ? mask : 0;
1016         unsigned int val2 = (strobe ^ invert) ? 0 : mask;
1017         int err;
1018
1019         err = snd_soc_component_update_bits(component, reg, mask, val1);
1020         if (err < 0)
1021                 return err;
1022
1023         return snd_soc_component_update_bits(component, reg, mask, val2);
1024 }
1025 EXPORT_SYMBOL_GPL(snd_soc_put_strobe);