1
2
3
4
5
6
7
8#include <linux/slab.h>
9#include <linux/export.h>
10#include <sound/core.h>
11#include <sound/control.h>
12#include <sound/tlv.h>
13
14
15
16
17struct link_ctl_info {
18 snd_ctl_elem_type_t type;
19 int count;
20 int min_val, max_val;
21};
22
23
24
25
26
27
28
29
30
31struct link_master {
32 struct list_head followers;
33 struct link_ctl_info info;
34 int val;
35 unsigned int tlv[4];
36 void (*hook)(void *private_data, int);
37 void *hook_private_data;
38};
39
40
41
42
43
44
45
46
47struct link_follower {
48 struct list_head list;
49 struct link_master *master;
50 struct link_ctl_info info;
51 int vals[2];
52 unsigned int flags;
53 struct snd_kcontrol *kctl;
54 struct snd_kcontrol follower;
55};
56
57static int follower_update(struct link_follower *follower)
58{
59 struct snd_ctl_elem_value *uctl;
60 int err, ch;
61
62 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
63 if (!uctl)
64 return -ENOMEM;
65 uctl->id = follower->follower.id;
66 err = follower->follower.get(&follower->follower, uctl);
67 if (err < 0)
68 goto error;
69 for (ch = 0; ch < follower->info.count; ch++)
70 follower->vals[ch] = uctl->value.integer.value[ch];
71 error:
72 kfree(uctl);
73 return err < 0 ? err : 0;
74}
75
76
77static int follower_init(struct link_follower *follower)
78{
79 struct snd_ctl_elem_info *uinfo;
80 int err;
81
82 if (follower->info.count) {
83
84 if (follower->flags & SND_CTL_FOLLOWER_NEED_UPDATE)
85 return follower_update(follower);
86 return 0;
87 }
88
89 uinfo = kmalloc(sizeof(*uinfo), GFP_KERNEL);
90 if (!uinfo)
91 return -ENOMEM;
92 uinfo->id = follower->follower.id;
93 err = follower->follower.info(&follower->follower, uinfo);
94 if (err < 0) {
95 kfree(uinfo);
96 return err;
97 }
98 follower->info.type = uinfo->type;
99 follower->info.count = uinfo->count;
100 if (follower->info.count > 2 ||
101 (follower->info.type != SNDRV_CTL_ELEM_TYPE_INTEGER &&
102 follower->info.type != SNDRV_CTL_ELEM_TYPE_BOOLEAN)) {
103 pr_err("ALSA: vmaster: invalid follower element\n");
104 kfree(uinfo);
105 return -EINVAL;
106 }
107 follower->info.min_val = uinfo->value.integer.min;
108 follower->info.max_val = uinfo->value.integer.max;
109 kfree(uinfo);
110
111 return follower_update(follower);
112}
113
114
115static int master_init(struct link_master *master)
116{
117 struct link_follower *follower;
118
119 if (master->info.count)
120 return 0;
121
122 list_for_each_entry(follower, &master->followers, list) {
123 int err = follower_init(follower);
124 if (err < 0)
125 return err;
126 master->info = follower->info;
127 master->info.count = 1;
128
129 master->val = master->info.max_val;
130 if (master->hook)
131 master->hook(master->hook_private_data, master->val);
132 return 1;
133 }
134 return -ENOENT;
135}
136
137static int follower_get_val(struct link_follower *follower,
138 struct snd_ctl_elem_value *ucontrol)
139{
140 int err, ch;
141
142 err = follower_init(follower);
143 if (err < 0)
144 return err;
145 for (ch = 0; ch < follower->info.count; ch++)
146 ucontrol->value.integer.value[ch] = follower->vals[ch];
147 return 0;
148}
149
150static int follower_put_val(struct link_follower *follower,
151 struct snd_ctl_elem_value *ucontrol)
152{
153 int err, ch, vol;
154
155 err = master_init(follower->master);
156 if (err < 0)
157 return err;
158
159 switch (follower->info.type) {
160 case SNDRV_CTL_ELEM_TYPE_BOOLEAN:
161 for (ch = 0; ch < follower->info.count; ch++)
162 ucontrol->value.integer.value[ch] &=
163 !!follower->master->val;
164 break;
165 case SNDRV_CTL_ELEM_TYPE_INTEGER:
166 for (ch = 0; ch < follower->info.count; ch++) {
167
168 vol = ucontrol->value.integer.value[ch];
169 vol += follower->master->val - follower->master->info.max_val;
170 if (vol < follower->info.min_val)
171 vol = follower->info.min_val;
172 else if (vol > follower->info.max_val)
173 vol = follower->info.max_val;
174 ucontrol->value.integer.value[ch] = vol;
175 }
176 break;
177 }
178 return follower->follower.put(&follower->follower, ucontrol);
179}
180
181
182
183
184static int follower_info(struct snd_kcontrol *kcontrol,
185 struct snd_ctl_elem_info *uinfo)
186{
187 struct link_follower *follower = snd_kcontrol_chip(kcontrol);
188 return follower->follower.info(&follower->follower, uinfo);
189}
190
191static int follower_get(struct snd_kcontrol *kcontrol,
192 struct snd_ctl_elem_value *ucontrol)
193{
194 struct link_follower *follower = snd_kcontrol_chip(kcontrol);
195 return follower_get_val(follower, ucontrol);
196}
197
198static int follower_put(struct snd_kcontrol *kcontrol,
199 struct snd_ctl_elem_value *ucontrol)
200{
201 struct link_follower *follower = snd_kcontrol_chip(kcontrol);
202 int err, ch, changed = 0;
203
204 err = follower_init(follower);
205 if (err < 0)
206 return err;
207 for (ch = 0; ch < follower->info.count; ch++) {
208 if (follower->vals[ch] != ucontrol->value.integer.value[ch]) {
209 changed = 1;
210 follower->vals[ch] = ucontrol->value.integer.value[ch];
211 }
212 }
213 if (!changed)
214 return 0;
215 err = follower_put_val(follower, ucontrol);
216 if (err < 0)
217 return err;
218 return 1;
219}
220
221static int follower_tlv_cmd(struct snd_kcontrol *kcontrol,
222 int op_flag, unsigned int size,
223 unsigned int __user *tlv)
224{
225 struct link_follower *follower = snd_kcontrol_chip(kcontrol);
226
227 return follower->follower.tlv.c(&follower->follower, op_flag, size, tlv);
228}
229
230static void follower_free(struct snd_kcontrol *kcontrol)
231{
232 struct link_follower *follower = snd_kcontrol_chip(kcontrol);
233 if (follower->follower.private_free)
234 follower->follower.private_free(&follower->follower);
235 if (follower->master)
236 list_del(&follower->list);
237 kfree(follower);
238}
239
240
241
242
243
244
245
246
247
248
249
250
251
252int _snd_ctl_add_follower(struct snd_kcontrol *master,
253 struct snd_kcontrol *follower,
254 unsigned int flags)
255{
256 struct link_master *master_link = snd_kcontrol_chip(master);
257 struct link_follower *srec;
258
259 srec = kzalloc(struct_size(srec, follower.vd, follower->count),
260 GFP_KERNEL);
261 if (!srec)
262 return -ENOMEM;
263 srec->kctl = follower;
264 srec->follower = *follower;
265 memcpy(srec->follower.vd, follower->vd, follower->count * sizeof(*follower->vd));
266 srec->master = master_link;
267 srec->flags = flags;
268
269
270 follower->info = follower_info;
271 follower->get = follower_get;
272 follower->put = follower_put;
273 if (follower->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK)
274 follower->tlv.c = follower_tlv_cmd;
275 follower->private_data = srec;
276 follower->private_free = follower_free;
277
278 list_add_tail(&srec->list, &master_link->followers);
279 return 0;
280}
281EXPORT_SYMBOL(_snd_ctl_add_follower);
282
283
284
285
286static int master_info(struct snd_kcontrol *kcontrol,
287 struct snd_ctl_elem_info *uinfo)
288{
289 struct link_master *master = snd_kcontrol_chip(kcontrol);
290 int ret;
291
292 ret = master_init(master);
293 if (ret < 0)
294 return ret;
295 uinfo->type = master->info.type;
296 uinfo->count = master->info.count;
297 uinfo->value.integer.min = master->info.min_val;
298 uinfo->value.integer.max = master->info.max_val;
299 return 0;
300}
301
302static int master_get(struct snd_kcontrol *kcontrol,
303 struct snd_ctl_elem_value *ucontrol)
304{
305 struct link_master *master = snd_kcontrol_chip(kcontrol);
306 int err = master_init(master);
307 if (err < 0)
308 return err;
309 ucontrol->value.integer.value[0] = master->val;
310 return 0;
311}
312
313static int sync_followers(struct link_master *master, int old_val, int new_val)
314{
315 struct link_follower *follower;
316 struct snd_ctl_elem_value *uval;
317
318 uval = kmalloc(sizeof(*uval), GFP_KERNEL);
319 if (!uval)
320 return -ENOMEM;
321 list_for_each_entry(follower, &master->followers, list) {
322 master->val = old_val;
323 uval->id = follower->follower.id;
324 follower_get_val(follower, uval);
325 master->val = new_val;
326 follower_put_val(follower, uval);
327 }
328 kfree(uval);
329 return 0;
330}
331
332static int master_put(struct snd_kcontrol *kcontrol,
333 struct snd_ctl_elem_value *ucontrol)
334{
335 struct link_master *master = snd_kcontrol_chip(kcontrol);
336 int err, new_val, old_val;
337 bool first_init;
338
339 err = master_init(master);
340 if (err < 0)
341 return err;
342 first_init = err;
343 old_val = master->val;
344 new_val = ucontrol->value.integer.value[0];
345 if (new_val == old_val)
346 return 0;
347
348 err = sync_followers(master, old_val, new_val);
349 if (err < 0)
350 return err;
351 if (master->hook && !first_init)
352 master->hook(master->hook_private_data, master->val);
353 return 1;
354}
355
356static void master_free(struct snd_kcontrol *kcontrol)
357{
358 struct link_master *master = snd_kcontrol_chip(kcontrol);
359 struct link_follower *follower, *n;
360
361
362 list_for_each_entry_safe(follower, n, &master->followers, list) {
363 struct snd_kcontrol *sctl = follower->kctl;
364 struct list_head olist = sctl->list;
365 memcpy(sctl, &follower->follower, sizeof(*sctl));
366 memcpy(sctl->vd, follower->follower.vd,
367 sctl->count * sizeof(*sctl->vd));
368 sctl->list = olist;
369 kfree(follower);
370 }
371 kfree(master);
372}
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392struct snd_kcontrol *snd_ctl_make_virtual_master(char *name,
393 const unsigned int *tlv)
394{
395 struct link_master *master;
396 struct snd_kcontrol *kctl;
397 struct snd_kcontrol_new knew;
398
399 memset(&knew, 0, sizeof(knew));
400 knew.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
401 knew.name = name;
402 knew.info = master_info;
403
404 master = kzalloc(sizeof(*master), GFP_KERNEL);
405 if (!master)
406 return NULL;
407 INIT_LIST_HEAD(&master->followers);
408
409 kctl = snd_ctl_new1(&knew, master);
410 if (!kctl) {
411 kfree(master);
412 return NULL;
413 }
414
415 kctl->info = master_info;
416 kctl->get = master_get;
417 kctl->put = master_put;
418 kctl->private_free = master_free;
419
420
421 if (tlv) {
422 unsigned int type = tlv[SNDRV_CTL_TLVO_TYPE];
423 if (type == SNDRV_CTL_TLVT_DB_SCALE ||
424 type == SNDRV_CTL_TLVT_DB_MINMAX ||
425 type == SNDRV_CTL_TLVT_DB_MINMAX_MUTE) {
426 kctl->vd[0].access |= SNDRV_CTL_ELEM_ACCESS_TLV_READ;
427 memcpy(master->tlv, tlv, sizeof(master->tlv));
428 kctl->tlv.p = master->tlv;
429 }
430 }
431
432 return kctl;
433}
434EXPORT_SYMBOL(snd_ctl_make_virtual_master);
435
436
437
438
439
440
441
442
443
444
445
446
447int snd_ctl_add_vmaster_hook(struct snd_kcontrol *kcontrol,
448 void (*hook)(void *private_data, int),
449 void *private_data)
450{
451 struct link_master *master = snd_kcontrol_chip(kcontrol);
452 master->hook = hook;
453 master->hook_private_data = private_data;
454 return 0;
455}
456EXPORT_SYMBOL_GPL(snd_ctl_add_vmaster_hook);
457
458
459
460
461
462
463
464
465
466
467void snd_ctl_sync_vmaster(struct snd_kcontrol *kcontrol, bool hook_only)
468{
469 struct link_master *master;
470 bool first_init = false;
471
472 if (!kcontrol)
473 return;
474 master = snd_kcontrol_chip(kcontrol);
475 if (!hook_only) {
476 int err = master_init(master);
477 if (err < 0)
478 return;
479 first_init = err;
480 err = sync_followers(master, master->val, master->val);
481 if (err < 0)
482 return;
483 }
484
485 if (master->hook && !first_init)
486 master->hook(master->hook_private_data, master->val);
487}
488EXPORT_SYMBOL_GPL(snd_ctl_sync_vmaster);
489
490
491
492
493
494
495
496
497
498
499int snd_ctl_apply_vmaster_followers(struct snd_kcontrol *kctl,
500 int (*func)(struct snd_kcontrol *vfollower,
501 struct snd_kcontrol *follower,
502 void *arg),
503 void *arg)
504{
505 struct link_master *master;
506 struct link_follower *follower;
507 int err;
508
509 master = snd_kcontrol_chip(kctl);
510 err = master_init(master);
511 if (err < 0)
512 return err;
513 list_for_each_entry(follower, &master->followers, list) {
514 err = func(follower->kctl, &follower->follower, arg);
515 if (err < 0)
516 return err;
517 }
518
519 return 0;
520}
521EXPORT_SYMBOL_GPL(snd_ctl_apply_vmaster_followers);
522