Blame view

sound/core/vmaster.c 10.8 KB
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
1
2
3
4
5
6
7
8
9
10
11
12
  /*
   * Virtual master and slave controls
   *
   *  Copyright (c) 2008 by Takashi Iwai <tiwai@suse.de>
   *
   *  This program is free software; you can redistribute it and/or
   *  modify it under the terms of the GNU General Public License as
   *  published by the Free Software Foundation, version 2.
   *
   */
  
  #include <linux/slab.h>
d81a6d717   Paul Gortmaker   sound: Add export...
13
  #include <linux/export.h>
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
14
15
  #include <sound/core.h>
  #include <sound/control.h>
1c82ed1bc   Takashi Iwai   [ALSA] Keep priva...
16
  #include <sound/tlv.h>
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
17
18
19
20
21
  
  /*
   * a subset of information returned via ctl info callback
   */
  struct link_ctl_info {
fea952e5c   Clemens Ladisch   ALSA: core: spars...
22
  	snd_ctl_elem_type_t type; /* value type */
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  	int count;		/* item count */
  	int min_val, max_val;	/* min, max values */
  };
  
  /*
   * link master - this contains a list of slave controls that are
   * identical types, i.e. info returns the same value type and value
   * ranges, but may have different number of counts.
   *
   * The master control is so far only mono volume/switch for simplicity.
   * The same value will be applied to all slaves.
   */
  struct link_master {
  	struct list_head slaves;
  	struct link_ctl_info info;
  	int val;		/* the master value */
1c82ed1bc   Takashi Iwai   [ALSA] Keep priva...
39
  	unsigned int tlv[4];
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
40
41
42
43
44
45
46
47
48
49
50
51
52
53
  };
  
  /*
   * link slave - this contains a slave control element
   *
   * It fakes the control callbacsk with additional attenuation by the
   * master control.  A slave may have either one or two channels.
   */
  
  struct link_slave {
  	struct list_head list;
  	struct link_master *master;
  	struct link_ctl_info info;
  	int vals[2];		/* current values */
f5b1db634   Takashi Iwai   ALSA: add snd_ctl...
54
  	unsigned int flags;
9e226b4b7   Takashi Iwai   ALSA: vmaster - F...
55
  	struct snd_kcontrol *kctl; /* original kcontrol pointer */
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
56
57
  	struct snd_kcontrol slave; /* the copy of original control entry */
  };
f5b1db634   Takashi Iwai   ALSA: add snd_ctl...
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
  static int slave_update(struct link_slave *slave)
  {
  	struct snd_ctl_elem_value *uctl;
  	int err, ch;
  
  	uctl = kmalloc(sizeof(*uctl), GFP_KERNEL);
  	if (!uctl)
  		return -ENOMEM;
  	uctl->id = slave->slave.id;
  	err = slave->slave.get(&slave->slave, uctl);
  	for (ch = 0; ch < slave->info.count; ch++)
  		slave->vals[ch] = uctl->value.integer.value[ch];
  	kfree(uctl);
  	return 0;
  }
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
73
74
75
76
  /* get the slave ctl info and save the initial values */
  static int slave_init(struct link_slave *slave)
  {
  	struct snd_ctl_elem_info *uinfo;
f5b1db634   Takashi Iwai   ALSA: add snd_ctl...
77
  	int err;
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
78

f5b1db634   Takashi Iwai   ALSA: add snd_ctl...
79
80
81
82
83
84
  	if (slave->info.count) {
  		/* already initialized */
  		if (slave->flags & SND_CTL_SLAVE_NEED_UPDATE)
  			return slave_update(slave);
  		return 0;
  	}
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
  
  	uinfo = kmalloc(sizeof(*uinfo), GFP_KERNEL);
  	if (!uinfo)
  		return -ENOMEM;
  	uinfo->id = slave->slave.id;
  	err = slave->slave.info(&slave->slave, uinfo);
  	if (err < 0) {
  		kfree(uinfo);
  		return err;
  	}
  	slave->info.type = uinfo->type;
  	slave->info.count = uinfo->count;
  	if (slave->info.count > 2  ||
  	    (slave->info.type != SNDRV_CTL_ELEM_TYPE_INTEGER &&
  	     slave->info.type != SNDRV_CTL_ELEM_TYPE_BOOLEAN)) {
  		snd_printk(KERN_ERR "invalid slave element
  ");
  		kfree(uinfo);
  		return -EINVAL;
  	}
  	slave->info.min_val = uinfo->value.integer.min;
  	slave->info.max_val = uinfo->value.integer.max;
  	kfree(uinfo);
f5b1db634   Takashi Iwai   ALSA: add snd_ctl...
108
  	return slave_update(slave);
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
  }
  
  /* initialize master volume */
  static int master_init(struct link_master *master)
  {
  	struct link_slave *slave;
  
  	if (master->info.count)
  		return 0; /* already initialized */
  
  	list_for_each_entry(slave, &master->slaves, list) {
  		int err = slave_init(slave);
  		if (err < 0)
  			return err;
  		master->info = slave->info;
  		master->info.count = 1; /* always mono */
  		/* set full volume as default (= no attenuation) */
  		master->val = master->info.max_val;
  		return 0;
  	}
  	return -ENOENT;
  }
  
  static int slave_get_val(struct link_slave *slave,
  			 struct snd_ctl_elem_value *ucontrol)
  {
  	int err, ch;
  
  	err = slave_init(slave);
  	if (err < 0)
  		return err;
  	for (ch = 0; ch < slave->info.count; ch++)
  		ucontrol->value.integer.value[ch] = slave->vals[ch];
  	return 0;
  }
  
  static int slave_put_val(struct link_slave *slave,
  			 struct snd_ctl_elem_value *ucontrol)
  {
  	int err, ch, vol;
  
  	err = master_init(slave->master);
  	if (err < 0)
  		return err;
  
  	switch (slave->info.type) {
  	case SNDRV_CTL_ELEM_TYPE_BOOLEAN:
  		for (ch = 0; ch < slave->info.count; ch++)
  			ucontrol->value.integer.value[ch] &=
  				!!slave->master->val;
  		break;
  	case SNDRV_CTL_ELEM_TYPE_INTEGER:
  		for (ch = 0; ch < slave->info.count; ch++) {
  			/* max master volume is supposed to be 0 dB */
  			vol = ucontrol->value.integer.value[ch];
  			vol += slave->master->val - slave->master->info.max_val;
  			if (vol < slave->info.min_val)
  				vol = slave->info.min_val;
  			else if (vol > slave->info.max_val)
  				vol = slave->info.max_val;
  			ucontrol->value.integer.value[ch] = vol;
  		}
  		break;
  	}
  	return slave->slave.put(&slave->slave, ucontrol);
  }
  
  /*
   * ctl callbacks for slaves
   */
  static int slave_info(struct snd_kcontrol *kcontrol,
  		      struct snd_ctl_elem_info *uinfo)
  {
  	struct link_slave *slave = snd_kcontrol_chip(kcontrol);
  	return slave->slave.info(&slave->slave, uinfo);
  }
  
  static int slave_get(struct snd_kcontrol *kcontrol,
  		     struct snd_ctl_elem_value *ucontrol)
  {
  	struct link_slave *slave = snd_kcontrol_chip(kcontrol);
  	return slave_get_val(slave, ucontrol);
  }
  
  static int slave_put(struct snd_kcontrol *kcontrol,
  		     struct snd_ctl_elem_value *ucontrol)
  {
  	struct link_slave *slave = snd_kcontrol_chip(kcontrol);
  	int err, ch, changed = 0;
  
  	err = slave_init(slave);
  	if (err < 0)
  		return err;
  	for (ch = 0; ch < slave->info.count; ch++) {
  		if (slave->vals[ch] != ucontrol->value.integer.value[ch]) {
  			changed = 1;
  			slave->vals[ch] = ucontrol->value.integer.value[ch];
  		}
  	}
  	if (!changed)
  		return 0;
  	return slave_put_val(slave, ucontrol);
  }
  
  static int slave_tlv_cmd(struct snd_kcontrol *kcontrol,
  			 int op_flag, unsigned int size,
  			 unsigned int __user *tlv)
  {
  	struct link_slave *slave = snd_kcontrol_chip(kcontrol);
  	/* FIXME: this assumes that the max volume is 0 dB */
  	return slave->slave.tlv.c(&slave->slave, op_flag, size, tlv);
  }
  
  static void slave_free(struct snd_kcontrol *kcontrol)
  {
  	struct link_slave *slave = snd_kcontrol_chip(kcontrol);
  	if (slave->slave.private_free)
  		slave->slave.private_free(&slave->slave);
  	if (slave->master)
  		list_del(&slave->list);
  	kfree(slave);
  }
  
  /*
   * Add a slave control to the group with the given master control
   *
   * All slaves must be the same type (returning the same information
25985edce   Lucas De Marchi   Fix common misspe...
236
   * via info callback).  The function doesn't check it, so it's your
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
237
238
239
240
241
242
243
   * responsibility.
   *
   * Also, some additional limitations:
   * - at most two channels
   * - logarithmic volume control (dB level), no linear volume
   * - master can only attenuate the volume, no gain
   */
f5b1db634   Takashi Iwai   ALSA: add snd_ctl...
244
245
  int _snd_ctl_add_slave(struct snd_kcontrol *master, struct snd_kcontrol *slave,
  		       unsigned int flags)
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
246
247
248
249
250
251
252
253
  {
  	struct link_master *master_link = snd_kcontrol_chip(master);
  	struct link_slave *srec;
  
  	srec = kzalloc(sizeof(*srec) +
  		       slave->count * sizeof(*slave->vd), GFP_KERNEL);
  	if (!srec)
  		return -ENOMEM;
9e226b4b7   Takashi Iwai   ALSA: vmaster - F...
254
  	srec->kctl = slave;
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
255
256
257
  	srec->slave = *slave;
  	memcpy(srec->slave.vd, slave->vd, slave->count * sizeof(*slave->vd));
  	srec->master = master_link;
f5b1db634   Takashi Iwai   ALSA: add snd_ctl...
258
  	srec->flags = flags;
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
259
260
261
262
263
264
265
266
267
268
269
270
271
  
  	/* override callbacks */
  	slave->info = slave_info;
  	slave->get = slave_get;
  	slave->put = slave_put;
  	if (slave->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK)
  		slave->tlv.c = slave_tlv_cmd;
  	slave->private_data = srec;
  	slave->private_free = slave_free;
  
  	list_add_tail(&srec->list, &master_link->slaves);
  	return 0;
  }
f5b1db634   Takashi Iwai   ALSA: add snd_ctl...
272
  EXPORT_SYMBOL(_snd_ctl_add_slave);
e922b0028   Takashi Iwai   [ALSA] Move vmast...
273

3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
  /*
   * ctl callbacks for master controls
   */
  static int master_info(struct snd_kcontrol *kcontrol,
  		      struct snd_ctl_elem_info *uinfo)
  {
  	struct link_master *master = snd_kcontrol_chip(kcontrol);
  	int ret;
  
  	ret = master_init(master);
  	if (ret < 0)
  		return ret;
  	uinfo->type = master->info.type;
  	uinfo->count = master->info.count;
  	uinfo->value.integer.min = master->info.min_val;
  	uinfo->value.integer.max = master->info.max_val;
  	return 0;
  }
  
  static int master_get(struct snd_kcontrol *kcontrol,
  		      struct snd_ctl_elem_value *ucontrol)
  {
  	struct link_master *master = snd_kcontrol_chip(kcontrol);
  	int err = master_init(master);
  	if (err < 0)
  		return err;
  	ucontrol->value.integer.value[0] = master->val;
  	return 0;
  }
  
  static int master_put(struct snd_kcontrol *kcontrol,
  		      struct snd_ctl_elem_value *ucontrol)
  {
  	struct link_master *master = snd_kcontrol_chip(kcontrol);
  	struct link_slave *slave;
  	struct snd_ctl_elem_value *uval;
  	int err, old_val;
  
  	err = master_init(master);
  	if (err < 0)
  		return err;
  	old_val = master->val;
  	if (ucontrol->value.integer.value[0] == old_val)
  		return 0;
  
  	uval = kmalloc(sizeof(*uval), GFP_KERNEL);
  	if (!uval)
  		return -ENOMEM;
  	list_for_each_entry(slave, &master->slaves, list) {
  		master->val = old_val;
  		uval->id = slave->slave.id;
  		slave_get_val(slave, uval);
  		master->val = ucontrol->value.integer.value[0];
  		slave_put_val(slave, uval);
  	}
  	kfree(uval);
  	return 1;
  }
  
  static void master_free(struct snd_kcontrol *kcontrol)
  {
  	struct link_master *master = snd_kcontrol_chip(kcontrol);
9e226b4b7   Takashi Iwai   ALSA: vmaster - F...
336
337
338
339
340
341
342
343
344
345
346
347
  	struct link_slave *slave, *n;
  
  	/* free all slave links and retore the original slave kctls */
  	list_for_each_entry_safe(slave, n, &master->slaves, list) {
  		struct snd_kcontrol *sctl = slave->kctl;
  		struct list_head olist = sctl->list;
  		memcpy(sctl, &slave->slave, sizeof(*sctl));
  		memcpy(sctl->vd, slave->slave.vd,
  		       sctl->count * sizeof(*sctl->vd));
  		sctl->list = olist; /* keep the current linked-list */
  		kfree(slave);
  	}
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
348
349
  	kfree(master);
  }
79c7cdd54   Takashi Iwai   ALSA: Add kernel-...
350
351
352
353
354
355
356
357
358
359
360
361
362
  /**
   * snd_ctl_make_virtual_master - Create a virtual master control
   * @name: name string of the control element to create
   * @tlv: optional TLV int array for dB information
   *
   * Creates a virtual matster control with the given name string.
   * Returns the created control element, or NULL for errors (ENOMEM).
   *
   * After creating a vmaster element, you can add the slave controls
   * via snd_ctl_add_slave() or snd_ctl_add_slave_uncached().
   *
   * The optional argument @tlv can be used to specify the TLV information
   * for dB scale of the master control.  It should be a single element
085f30654   Takashi Iwai   ALSA: Add new TLV...
363
364
   * with #SNDRV_CTL_TLVT_DB_SCALE, #SNDRV_CTL_TLV_DB_MINMAX or
   * #SNDRV_CTL_TLVT_DB_MINMAX_MUTE type, and should be the max 0dB.
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
   */
  struct snd_kcontrol *snd_ctl_make_virtual_master(char *name,
  						 const unsigned int *tlv)
  {
  	struct link_master *master;
  	struct snd_kcontrol *kctl;
  	struct snd_kcontrol_new knew;
  
  	memset(&knew, 0, sizeof(knew));
  	knew.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
  	knew.name = name;
  	knew.info = master_info;
  
  	master = kzalloc(sizeof(*master), GFP_KERNEL);
  	if (!master)
  		return NULL;
  	INIT_LIST_HEAD(&master->slaves);
  
  	kctl = snd_ctl_new1(&knew, master);
  	if (!kctl) {
  		kfree(master);
  		return NULL;
  	}
  	/* override some callbacks */
  	kctl->info = master_info;
  	kctl->get = master_get;
  	kctl->put = master_put;
  	kctl->private_free = master_free;
  
  	/* additional (constant) TLV read */
085f30654   Takashi Iwai   ALSA: Add new TLV...
395
396
397
398
  	if (tlv &&
  	    (tlv[0] == SNDRV_CTL_TLVT_DB_SCALE ||
  	     tlv[0] == SNDRV_CTL_TLVT_DB_MINMAX ||
  	     tlv[0] == SNDRV_CTL_TLVT_DB_MINMAX_MUTE)) {
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
399
  		kctl->vd[0].access |= SNDRV_CTL_ELEM_ACCESS_TLV_READ;
1c82ed1bc   Takashi Iwai   [ALSA] Keep priva...
400
401
  		memcpy(master->tlv, tlv, sizeof(master->tlv));
  		kctl->tlv.p = master->tlv;
3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
402
  	}
1c82ed1bc   Takashi Iwai   [ALSA] Keep priva...
403

3b0a5f22d   Takashi Iwai   [ALSA] Add virtua...
404
405
  	return kctl;
  }
e922b0028   Takashi Iwai   [ALSA] Move vmast...
406
  EXPORT_SYMBOL(snd_ctl_make_virtual_master);