2 * Routines for driver control interface
3 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/threads.h>
23 #include <linux/interrupt.h>
24 #include <linux/module.h>
25 #include <linux/slab.h>
26 #include <linux/vmalloc.h>
27 #include <linux/time.h>
28 #include <sound/core.h>
29 #include <sound/minors.h>
30 #include <sound/info.h>
31 #include <sound/control.h>
33 /* max number of user-defined controls */
34 #define MAX_USER_CONTROLS 32
35 #define MAX_CONTROL_COUNT 1028
37 struct snd_kctl_ioctl
{
38 struct list_head list
; /* list of all ioctls */
39 snd_kctl_ioctl_func_t fioctl
;
42 static DECLARE_RWSEM(snd_ioctl_rwsem
);
43 static LIST_HEAD(snd_control_ioctls
);
45 static LIST_HEAD(snd_control_compat_ioctls
);
48 static int snd_ctl_open(struct inode
*inode
, struct file
*file
)
51 struct snd_card
*card
;
52 struct snd_ctl_file
*ctl
;
55 err
= nonseekable_open(inode
, file
);
59 card
= snd_lookup_minor_data(iminor(inode
), SNDRV_DEVICE_TYPE_CONTROL
);
64 err
= snd_card_file_add(card
, file
);
69 if (!try_module_get(card
->module
)) {
73 ctl
= kzalloc(sizeof(*ctl
), GFP_KERNEL
);
78 INIT_LIST_HEAD(&ctl
->events
);
79 init_waitqueue_head(&ctl
->change_sleep
);
80 spin_lock_init(&ctl
->read_lock
);
82 ctl
->prefer_pcm_subdevice
= -1;
83 ctl
->prefer_rawmidi_subdevice
= -1;
84 ctl
->pid
= get_pid(task_pid(current
));
85 file
->private_data
= ctl
;
86 write_lock_irqsave(&card
->ctl_files_rwlock
, flags
);
87 list_add_tail(&ctl
->list
, &card
->ctl_files
);
88 write_unlock_irqrestore(&card
->ctl_files_rwlock
, flags
);
93 module_put(card
->module
);
95 snd_card_file_remove(card
, file
);
102 static void snd_ctl_empty_read_queue(struct snd_ctl_file
* ctl
)
105 struct snd_kctl_event
*cread
;
107 spin_lock_irqsave(&ctl
->read_lock
, flags
);
108 while (!list_empty(&ctl
->events
)) {
109 cread
= snd_kctl_event(ctl
->events
.next
);
110 list_del(&cread
->list
);
113 spin_unlock_irqrestore(&ctl
->read_lock
, flags
);
116 static int snd_ctl_release(struct inode
*inode
, struct file
*file
)
119 struct snd_card
*card
;
120 struct snd_ctl_file
*ctl
;
121 struct snd_kcontrol
*control
;
124 ctl
= file
->private_data
;
125 file
->private_data
= NULL
;
127 write_lock_irqsave(&card
->ctl_files_rwlock
, flags
);
128 list_del(&ctl
->list
);
129 write_unlock_irqrestore(&card
->ctl_files_rwlock
, flags
);
130 down_write(&card
->controls_rwsem
);
131 list_for_each_entry(control
, &card
->controls
, list
)
132 for (idx
= 0; idx
< control
->count
; idx
++)
133 if (control
->vd
[idx
].owner
== ctl
)
134 control
->vd
[idx
].owner
= NULL
;
135 up_write(&card
->controls_rwsem
);
136 snd_ctl_empty_read_queue(ctl
);
139 module_put(card
->module
);
140 snd_card_file_remove(card
, file
);
144 void snd_ctl_notify(struct snd_card
*card
, unsigned int mask
,
145 struct snd_ctl_elem_id
*id
)
148 struct snd_ctl_file
*ctl
;
149 struct snd_kctl_event
*ev
;
151 if (snd_BUG_ON(!card
|| !id
))
153 read_lock(&card
->ctl_files_rwlock
);
154 #if IS_ENABLED(CONFIG_SND_MIXER_OSS)
155 card
->mixer_oss_change_count
++;
157 list_for_each_entry(ctl
, &card
->ctl_files
, list
) {
158 if (!ctl
->subscribed
)
160 spin_lock_irqsave(&ctl
->read_lock
, flags
);
161 list_for_each_entry(ev
, &ctl
->events
, list
) {
162 if (ev
->id
.numid
== id
->numid
) {
167 ev
= kzalloc(sizeof(*ev
), GFP_ATOMIC
);
171 list_add_tail(&ev
->list
, &ctl
->events
);
173 dev_err(card
->dev
, "No memory available to allocate event\n");
176 wake_up(&ctl
->change_sleep
);
177 spin_unlock_irqrestore(&ctl
->read_lock
, flags
);
178 kill_fasync(&ctl
->fasync
, SIGIO
, POLL_IN
);
180 read_unlock(&card
->ctl_files_rwlock
);
183 EXPORT_SYMBOL(snd_ctl_notify
);
186 * snd_ctl_new - create a control instance from the template
187 * @control: the control template
188 * @access: the default control access
190 * Allocates a new struct snd_kcontrol instance and copies the given template
191 * to the new instance. It does not copy volatile data (access).
193 * Return: The pointer of the new instance, or %NULL on failure.
195 static struct snd_kcontrol
*snd_ctl_new(struct snd_kcontrol
*control
,
198 struct snd_kcontrol
*kctl
;
201 if (snd_BUG_ON(!control
|| !control
->count
))
204 if (control
->count
> MAX_CONTROL_COUNT
)
207 kctl
= kzalloc(sizeof(*kctl
) + sizeof(struct snd_kcontrol_volatile
) * control
->count
, GFP_KERNEL
);
209 pr_err("ALSA: Cannot allocate control instance\n");
213 for (idx
= 0; idx
< kctl
->count
; idx
++)
214 kctl
->vd
[idx
].access
= access
;
219 * snd_ctl_new1 - create a control instance from the template
220 * @ncontrol: the initialization record
221 * @private_data: the private data to set
223 * Allocates a new struct snd_kcontrol instance and initialize from the given
224 * template. When the access field of ncontrol is 0, it's assumed as
225 * READWRITE access. When the count field is 0, it's assumes as one.
227 * Return: The pointer of the newly generated instance, or %NULL on failure.
229 struct snd_kcontrol
*snd_ctl_new1(const struct snd_kcontrol_new
*ncontrol
,
232 struct snd_kcontrol kctl
;
235 if (snd_BUG_ON(!ncontrol
|| !ncontrol
->info
))
237 memset(&kctl
, 0, sizeof(kctl
));
238 kctl
.id
.iface
= ncontrol
->iface
;
239 kctl
.id
.device
= ncontrol
->device
;
240 kctl
.id
.subdevice
= ncontrol
->subdevice
;
241 if (ncontrol
->name
) {
242 strlcpy(kctl
.id
.name
, ncontrol
->name
, sizeof(kctl
.id
.name
));
243 if (strcmp(ncontrol
->name
, kctl
.id
.name
) != 0)
244 pr_warn("ALSA: Control name '%s' truncated to '%s'\n",
245 ncontrol
->name
, kctl
.id
.name
);
247 kctl
.id
.index
= ncontrol
->index
;
248 kctl
.count
= ncontrol
->count
? ncontrol
->count
: 1;
249 access
= ncontrol
->access
== 0 ? SNDRV_CTL_ELEM_ACCESS_READWRITE
:
250 (ncontrol
->access
& (SNDRV_CTL_ELEM_ACCESS_READWRITE
|
251 SNDRV_CTL_ELEM_ACCESS_VOLATILE
|
252 SNDRV_CTL_ELEM_ACCESS_INACTIVE
|
253 SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE
|
254 SNDRV_CTL_ELEM_ACCESS_TLV_COMMAND
|
255 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
));
256 kctl
.info
= ncontrol
->info
;
257 kctl
.get
= ncontrol
->get
;
258 kctl
.put
= ncontrol
->put
;
259 kctl
.tlv
.p
= ncontrol
->tlv
.p
;
260 kctl
.private_value
= ncontrol
->private_value
;
261 kctl
.private_data
= private_data
;
262 return snd_ctl_new(&kctl
, access
);
265 EXPORT_SYMBOL(snd_ctl_new1
);
268 * snd_ctl_free_one - release the control instance
269 * @kcontrol: the control instance
271 * Releases the control instance created via snd_ctl_new()
273 * Don't call this after the control was added to the card.
275 void snd_ctl_free_one(struct snd_kcontrol
*kcontrol
)
278 if (kcontrol
->private_free
)
279 kcontrol
->private_free(kcontrol
);
284 EXPORT_SYMBOL(snd_ctl_free_one
);
286 static bool snd_ctl_remove_numid_conflict(struct snd_card
*card
,
289 struct snd_kcontrol
*kctl
;
291 /* Make sure that the ids assigned to the control do not wrap around */
292 if (card
->last_numid
>= UINT_MAX
- count
)
293 card
->last_numid
= 0;
295 list_for_each_entry(kctl
, &card
->controls
, list
) {
296 if (kctl
->id
.numid
< card
->last_numid
+ 1 + count
&&
297 kctl
->id
.numid
+ kctl
->count
> card
->last_numid
+ 1) {
298 card
->last_numid
= kctl
->id
.numid
+ kctl
->count
- 1;
305 static int snd_ctl_find_hole(struct snd_card
*card
, unsigned int count
)
307 unsigned int iter
= 100000;
309 while (snd_ctl_remove_numid_conflict(card
, count
)) {
311 /* this situation is very unlikely */
312 dev_err(card
->dev
, "unable to allocate new control numid\n");
320 * snd_ctl_add - add the control instance to the card
321 * @card: the card instance
322 * @kcontrol: the control instance to add
324 * Adds the control instance created via snd_ctl_new() or
325 * snd_ctl_new1() to the given card. Assigns also an unique
326 * numid used for fast search.
328 * It frees automatically the control which cannot be added.
330 * Return: Zero if successful, or a negative error code on failure.
333 int snd_ctl_add(struct snd_card
*card
, struct snd_kcontrol
*kcontrol
)
335 struct snd_ctl_elem_id id
;
342 if (snd_BUG_ON(!card
|| !kcontrol
->info
))
345 if (id
.index
> UINT_MAX
- kcontrol
->count
)
348 down_write(&card
->controls_rwsem
);
349 if (snd_ctl_find_id(card
, &id
)) {
350 up_write(&card
->controls_rwsem
);
351 dev_err(card
->dev
, "control %i:%i:%i:%s:%i is already present\n",
360 if (snd_ctl_find_hole(card
, kcontrol
->count
) < 0) {
361 up_write(&card
->controls_rwsem
);
365 list_add_tail(&kcontrol
->list
, &card
->controls
);
366 card
->controls_count
+= kcontrol
->count
;
367 kcontrol
->id
.numid
= card
->last_numid
+ 1;
368 card
->last_numid
+= kcontrol
->count
;
369 count
= kcontrol
->count
;
370 up_write(&card
->controls_rwsem
);
371 for (idx
= 0; idx
< count
; idx
++, id
.index
++, id
.numid
++)
372 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_ADD
, &id
);
376 snd_ctl_free_one(kcontrol
);
380 EXPORT_SYMBOL(snd_ctl_add
);
383 * snd_ctl_replace - replace the control instance of the card
384 * @card: the card instance
385 * @kcontrol: the control instance to replace
386 * @add_on_replace: add the control if not already added
388 * Replaces the given control. If the given control does not exist
389 * and the add_on_replace flag is set, the control is added. If the
390 * control exists, it is destroyed first.
392 * It frees automatically the control which cannot be added or replaced.
394 * Return: Zero if successful, or a negative error code on failure.
396 int snd_ctl_replace(struct snd_card
*card
, struct snd_kcontrol
*kcontrol
,
399 struct snd_ctl_elem_id id
;
402 struct snd_kcontrol
*old
;
407 if (snd_BUG_ON(!card
|| !kcontrol
->info
)) {
412 down_write(&card
->controls_rwsem
);
413 old
= snd_ctl_find_id(card
, &id
);
417 up_write(&card
->controls_rwsem
);
421 ret
= snd_ctl_remove(card
, old
);
423 up_write(&card
->controls_rwsem
);
427 if (snd_ctl_find_hole(card
, kcontrol
->count
) < 0) {
428 up_write(&card
->controls_rwsem
);
432 list_add_tail(&kcontrol
->list
, &card
->controls
);
433 card
->controls_count
+= kcontrol
->count
;
434 kcontrol
->id
.numid
= card
->last_numid
+ 1;
435 card
->last_numid
+= kcontrol
->count
;
436 count
= kcontrol
->count
;
437 up_write(&card
->controls_rwsem
);
438 for (idx
= 0; idx
< count
; idx
++, id
.index
++, id
.numid
++)
439 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_ADD
, &id
);
443 snd_ctl_free_one(kcontrol
);
446 EXPORT_SYMBOL(snd_ctl_replace
);
449 * snd_ctl_remove - remove the control from the card and release it
450 * @card: the card instance
451 * @kcontrol: the control instance to remove
453 * Removes the control from the card and then releases the instance.
454 * You don't need to call snd_ctl_free_one(). You must be in
455 * the write lock - down_write(&card->controls_rwsem).
457 * Return: 0 if successful, or a negative error code on failure.
459 int snd_ctl_remove(struct snd_card
*card
, struct snd_kcontrol
*kcontrol
)
461 struct snd_ctl_elem_id id
;
464 if (snd_BUG_ON(!card
|| !kcontrol
))
466 list_del(&kcontrol
->list
);
467 card
->controls_count
-= kcontrol
->count
;
469 for (idx
= 0; idx
< kcontrol
->count
; idx
++, id
.index
++, id
.numid
++)
470 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_REMOVE
, &id
);
471 snd_ctl_free_one(kcontrol
);
475 EXPORT_SYMBOL(snd_ctl_remove
);
478 * snd_ctl_remove_id - remove the control of the given id and release it
479 * @card: the card instance
480 * @id: the control id to remove
482 * Finds the control instance with the given id, removes it from the
483 * card list and releases it.
485 * Return: 0 if successful, or a negative error code on failure.
487 int snd_ctl_remove_id(struct snd_card
*card
, struct snd_ctl_elem_id
*id
)
489 struct snd_kcontrol
*kctl
;
492 down_write(&card
->controls_rwsem
);
493 kctl
= snd_ctl_find_id(card
, id
);
495 up_write(&card
->controls_rwsem
);
498 ret
= snd_ctl_remove(card
, kctl
);
499 up_write(&card
->controls_rwsem
);
503 EXPORT_SYMBOL(snd_ctl_remove_id
);
506 * snd_ctl_remove_user_ctl - remove and release the unlocked user control
507 * @file: active control handle
508 * @id: the control id to remove
510 * Finds the control instance with the given id, removes it from the
511 * card list and releases it.
513 * Return: 0 if successful, or a negative error code on failure.
515 static int snd_ctl_remove_user_ctl(struct snd_ctl_file
* file
,
516 struct snd_ctl_elem_id
*id
)
518 struct snd_card
*card
= file
->card
;
519 struct snd_kcontrol
*kctl
;
522 down_write(&card
->controls_rwsem
);
523 kctl
= snd_ctl_find_id(card
, id
);
528 if (!(kctl
->vd
[0].access
& SNDRV_CTL_ELEM_ACCESS_USER
)) {
532 for (idx
= 0; idx
< kctl
->count
; idx
++)
533 if (kctl
->vd
[idx
].owner
!= NULL
&& kctl
->vd
[idx
].owner
!= file
) {
537 ret
= snd_ctl_remove(card
, kctl
);
540 card
->user_ctl_count
--;
542 up_write(&card
->controls_rwsem
);
547 * snd_ctl_activate_id - activate/inactivate the control of the given id
548 * @card: the card instance
549 * @id: the control id to activate/inactivate
550 * @active: non-zero to activate
552 * Finds the control instance with the given id, and activate or
553 * inactivate the control together with notification, if changed.
555 * Return: 0 if unchanged, 1 if changed, or a negative error code on failure.
557 int snd_ctl_activate_id(struct snd_card
*card
, struct snd_ctl_elem_id
*id
,
560 struct snd_kcontrol
*kctl
;
561 struct snd_kcontrol_volatile
*vd
;
562 unsigned int index_offset
;
565 down_write(&card
->controls_rwsem
);
566 kctl
= snd_ctl_find_id(card
, id
);
571 index_offset
= snd_ctl_get_ioff(kctl
, &kctl
->id
);
572 vd
= &kctl
->vd
[index_offset
];
575 if (!(vd
->access
& SNDRV_CTL_ELEM_ACCESS_INACTIVE
))
577 vd
->access
&= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
579 if (vd
->access
& SNDRV_CTL_ELEM_ACCESS_INACTIVE
)
581 vd
->access
|= SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
585 up_write(&card
->controls_rwsem
);
587 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_INFO
, id
);
590 EXPORT_SYMBOL_GPL(snd_ctl_activate_id
);
593 * snd_ctl_rename_id - replace the id of a control on the card
594 * @card: the card instance
595 * @src_id: the old id
596 * @dst_id: the new id
598 * Finds the control with the old id from the card, and replaces the
599 * id with the new one.
601 * Return: Zero if successful, or a negative error code on failure.
603 int snd_ctl_rename_id(struct snd_card
*card
, struct snd_ctl_elem_id
*src_id
,
604 struct snd_ctl_elem_id
*dst_id
)
606 struct snd_kcontrol
*kctl
;
608 down_write(&card
->controls_rwsem
);
609 kctl
= snd_ctl_find_id(card
, src_id
);
611 up_write(&card
->controls_rwsem
);
615 kctl
->id
.numid
= card
->last_numid
+ 1;
616 card
->last_numid
+= kctl
->count
;
617 up_write(&card
->controls_rwsem
);
621 EXPORT_SYMBOL(snd_ctl_rename_id
);
624 * snd_ctl_find_numid - find the control instance with the given number-id
625 * @card: the card instance
626 * @numid: the number-id to search
628 * Finds the control instance with the given number-id from the card.
630 * The caller must down card->controls_rwsem before calling this function
631 * (if the race condition can happen).
633 * Return: The pointer of the instance if found, or %NULL if not.
636 struct snd_kcontrol
*snd_ctl_find_numid(struct snd_card
*card
, unsigned int numid
)
638 struct snd_kcontrol
*kctl
;
640 if (snd_BUG_ON(!card
|| !numid
))
642 list_for_each_entry(kctl
, &card
->controls
, list
) {
643 if (kctl
->id
.numid
<= numid
&& kctl
->id
.numid
+ kctl
->count
> numid
)
649 EXPORT_SYMBOL(snd_ctl_find_numid
);
652 * snd_ctl_find_id - find the control instance with the given id
653 * @card: the card instance
654 * @id: the id to search
656 * Finds the control instance with the given id from the card.
658 * The caller must down card->controls_rwsem before calling this function
659 * (if the race condition can happen).
661 * Return: The pointer of the instance if found, or %NULL if not.
664 struct snd_kcontrol
*snd_ctl_find_id(struct snd_card
*card
,
665 struct snd_ctl_elem_id
*id
)
667 struct snd_kcontrol
*kctl
;
669 if (snd_BUG_ON(!card
|| !id
))
672 return snd_ctl_find_numid(card
, id
->numid
);
673 list_for_each_entry(kctl
, &card
->controls
, list
) {
674 if (kctl
->id
.iface
!= id
->iface
)
676 if (kctl
->id
.device
!= id
->device
)
678 if (kctl
->id
.subdevice
!= id
->subdevice
)
680 if (strncmp(kctl
->id
.name
, id
->name
, sizeof(kctl
->id
.name
)))
682 if (kctl
->id
.index
> id
->index
)
684 if (kctl
->id
.index
+ kctl
->count
<= id
->index
)
691 EXPORT_SYMBOL(snd_ctl_find_id
);
693 static int snd_ctl_card_info(struct snd_card
*card
, struct snd_ctl_file
* ctl
,
694 unsigned int cmd
, void __user
*arg
)
696 struct snd_ctl_card_info
*info
;
698 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
701 down_read(&snd_ioctl_rwsem
);
702 info
->card
= card
->number
;
703 strlcpy(info
->id
, card
->id
, sizeof(info
->id
));
704 strlcpy(info
->driver
, card
->driver
, sizeof(info
->driver
));
705 strlcpy(info
->name
, card
->shortname
, sizeof(info
->name
));
706 strlcpy(info
->longname
, card
->longname
, sizeof(info
->longname
));
707 strlcpy(info
->mixername
, card
->mixername
, sizeof(info
->mixername
));
708 strlcpy(info
->components
, card
->components
, sizeof(info
->components
));
709 up_read(&snd_ioctl_rwsem
);
710 if (copy_to_user(arg
, info
, sizeof(struct snd_ctl_card_info
))) {
718 static int snd_ctl_elem_list(struct snd_card
*card
,
719 struct snd_ctl_elem_list __user
*_list
)
721 struct list_head
*plist
;
722 struct snd_ctl_elem_list list
;
723 struct snd_kcontrol
*kctl
;
724 struct snd_ctl_elem_id
*dst
, *id
;
725 unsigned int offset
, space
, jidx
;
727 if (copy_from_user(&list
, _list
, sizeof(list
)))
729 offset
= list
.offset
;
731 /* try limit maximum space */
735 /* allocate temporary buffer for atomic operation */
736 dst
= vmalloc(space
* sizeof(struct snd_ctl_elem_id
));
739 down_read(&card
->controls_rwsem
);
740 list
.count
= card
->controls_count
;
741 plist
= card
->controls
.next
;
742 while (plist
!= &card
->controls
) {
745 kctl
= snd_kcontrol(plist
);
746 if (offset
< kctl
->count
)
748 offset
-= kctl
->count
;
753 while (space
> 0 && plist
!= &card
->controls
) {
754 kctl
= snd_kcontrol(plist
);
755 for (jidx
= offset
; space
> 0 && jidx
< kctl
->count
; jidx
++) {
756 snd_ctl_build_ioff(id
, kctl
, jidx
);
764 up_read(&card
->controls_rwsem
);
766 copy_to_user(list
.pids
, dst
,
767 list
.used
* sizeof(struct snd_ctl_elem_id
))) {
773 down_read(&card
->controls_rwsem
);
774 list
.count
= card
->controls_count
;
775 up_read(&card
->controls_rwsem
);
777 if (copy_to_user(_list
, &list
, sizeof(list
)))
782 static int snd_ctl_elem_info(struct snd_ctl_file
*ctl
,
783 struct snd_ctl_elem_info
*info
)
785 struct snd_card
*card
= ctl
->card
;
786 struct snd_kcontrol
*kctl
;
787 struct snd_kcontrol_volatile
*vd
;
788 unsigned int index_offset
;
791 down_read(&card
->controls_rwsem
);
792 kctl
= snd_ctl_find_id(card
, &info
->id
);
794 up_read(&card
->controls_rwsem
);
797 #ifdef CONFIG_SND_DEBUG
800 result
= kctl
->info(kctl
, info
);
802 snd_BUG_ON(info
->access
);
803 index_offset
= snd_ctl_get_ioff(kctl
, &info
->id
);
804 vd
= &kctl
->vd
[index_offset
];
805 snd_ctl_build_ioff(&info
->id
, kctl
, index_offset
);
806 info
->access
= vd
->access
;
808 info
->access
|= SNDRV_CTL_ELEM_ACCESS_LOCK
;
809 if (vd
->owner
== ctl
)
810 info
->access
|= SNDRV_CTL_ELEM_ACCESS_OWNER
;
811 info
->owner
= pid_vnr(vd
->owner
->pid
);
816 up_read(&card
->controls_rwsem
);
820 static int snd_ctl_elem_info_user(struct snd_ctl_file
*ctl
,
821 struct snd_ctl_elem_info __user
*_info
)
823 struct snd_ctl_elem_info info
;
826 if (copy_from_user(&info
, _info
, sizeof(info
)))
828 snd_power_lock(ctl
->card
);
829 result
= snd_power_wait(ctl
->card
, SNDRV_CTL_POWER_D0
);
831 result
= snd_ctl_elem_info(ctl
, &info
);
832 snd_power_unlock(ctl
->card
);
834 if (copy_to_user(_info
, &info
, sizeof(info
)))
839 static int snd_ctl_elem_read(struct snd_card
*card
,
840 struct snd_ctl_elem_value
*control
)
842 struct snd_kcontrol
*kctl
;
843 struct snd_kcontrol_volatile
*vd
;
844 unsigned int index_offset
;
847 down_read(&card
->controls_rwsem
);
848 kctl
= snd_ctl_find_id(card
, &control
->id
);
852 index_offset
= snd_ctl_get_ioff(kctl
, &control
->id
);
853 vd
= &kctl
->vd
[index_offset
];
854 if ((vd
->access
& SNDRV_CTL_ELEM_ACCESS_READ
) &&
856 snd_ctl_build_ioff(&control
->id
, kctl
, index_offset
);
857 result
= kctl
->get(kctl
, control
);
861 up_read(&card
->controls_rwsem
);
865 static int snd_ctl_elem_read_user(struct snd_card
*card
,
866 struct snd_ctl_elem_value __user
*_control
)
868 struct snd_ctl_elem_value
*control
;
871 control
= memdup_user(_control
, sizeof(*control
));
873 return PTR_ERR(control
);
875 snd_power_lock(card
);
876 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
);
878 result
= snd_ctl_elem_read(card
, control
);
879 snd_power_unlock(card
);
881 if (copy_to_user(_control
, control
, sizeof(*control
)))
887 static int snd_ctl_elem_write(struct snd_card
*card
, struct snd_ctl_file
*file
,
888 struct snd_ctl_elem_value
*control
)
890 struct snd_kcontrol
*kctl
;
891 struct snd_kcontrol_volatile
*vd
;
892 unsigned int index_offset
;
895 down_read(&card
->controls_rwsem
);
896 kctl
= snd_ctl_find_id(card
, &control
->id
);
900 index_offset
= snd_ctl_get_ioff(kctl
, &control
->id
);
901 vd
= &kctl
->vd
[index_offset
];
902 if (!(vd
->access
& SNDRV_CTL_ELEM_ACCESS_WRITE
) ||
904 (file
&& vd
->owner
&& vd
->owner
!= file
)) {
907 snd_ctl_build_ioff(&control
->id
, kctl
, index_offset
);
908 result
= kctl
->put(kctl
, control
);
911 struct snd_ctl_elem_id id
= control
->id
;
912 up_read(&card
->controls_rwsem
);
913 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
, &id
);
917 up_read(&card
->controls_rwsem
);
921 static int snd_ctl_elem_write_user(struct snd_ctl_file
*file
,
922 struct snd_ctl_elem_value __user
*_control
)
924 struct snd_ctl_elem_value
*control
;
925 struct snd_card
*card
;
928 control
= memdup_user(_control
, sizeof(*control
));
930 return PTR_ERR(control
);
933 snd_power_lock(card
);
934 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
);
936 result
= snd_ctl_elem_write(card
, file
, control
);
937 snd_power_unlock(card
);
939 if (copy_to_user(_control
, control
, sizeof(*control
)))
945 static int snd_ctl_elem_lock(struct snd_ctl_file
*file
,
946 struct snd_ctl_elem_id __user
*_id
)
948 struct snd_card
*card
= file
->card
;
949 struct snd_ctl_elem_id id
;
950 struct snd_kcontrol
*kctl
;
951 struct snd_kcontrol_volatile
*vd
;
954 if (copy_from_user(&id
, _id
, sizeof(id
)))
956 down_write(&card
->controls_rwsem
);
957 kctl
= snd_ctl_find_id(card
, &id
);
961 vd
= &kctl
->vd
[snd_ctl_get_ioff(kctl
, &id
)];
962 if (vd
->owner
!= NULL
)
969 up_write(&card
->controls_rwsem
);
973 static int snd_ctl_elem_unlock(struct snd_ctl_file
*file
,
974 struct snd_ctl_elem_id __user
*_id
)
976 struct snd_card
*card
= file
->card
;
977 struct snd_ctl_elem_id id
;
978 struct snd_kcontrol
*kctl
;
979 struct snd_kcontrol_volatile
*vd
;
982 if (copy_from_user(&id
, _id
, sizeof(id
)))
984 down_write(&card
->controls_rwsem
);
985 kctl
= snd_ctl_find_id(card
, &id
);
989 vd
= &kctl
->vd
[snd_ctl_get_ioff(kctl
, &id
)];
990 if (vd
->owner
== NULL
)
992 else if (vd
->owner
!= file
)
999 up_write(&card
->controls_rwsem
);
1003 struct user_element
{
1004 struct snd_ctl_elem_info info
;
1005 struct snd_card
*card
;
1006 void *elem_data
; /* element data */
1007 unsigned long elem_data_size
; /* size of element data in bytes */
1008 void *tlv_data
; /* TLV data */
1009 unsigned long tlv_data_size
; /* TLV data size */
1010 void *priv_data
; /* private data (like strings for enumerated type) */
1013 static int snd_ctl_elem_user_info(struct snd_kcontrol
*kcontrol
,
1014 struct snd_ctl_elem_info
*uinfo
)
1016 struct user_element
*ue
= kcontrol
->private_data
;
1022 static int snd_ctl_elem_user_enum_info(struct snd_kcontrol
*kcontrol
,
1023 struct snd_ctl_elem_info
*uinfo
)
1025 struct user_element
*ue
= kcontrol
->private_data
;
1029 item
= uinfo
->value
.enumerated
.item
;
1033 item
= min(item
, uinfo
->value
.enumerated
.items
- 1);
1034 uinfo
->value
.enumerated
.item
= item
;
1036 names
= ue
->priv_data
;
1037 for (; item
> 0; --item
)
1038 names
+= strlen(names
) + 1;
1039 strcpy(uinfo
->value
.enumerated
.name
, names
);
1044 static int snd_ctl_elem_user_get(struct snd_kcontrol
*kcontrol
,
1045 struct snd_ctl_elem_value
*ucontrol
)
1047 struct user_element
*ue
= kcontrol
->private_data
;
1049 mutex_lock(&ue
->card
->user_ctl_lock
);
1050 memcpy(&ucontrol
->value
, ue
->elem_data
, ue
->elem_data_size
);
1051 mutex_unlock(&ue
->card
->user_ctl_lock
);
1055 static int snd_ctl_elem_user_put(struct snd_kcontrol
*kcontrol
,
1056 struct snd_ctl_elem_value
*ucontrol
)
1059 struct user_element
*ue
= kcontrol
->private_data
;
1061 mutex_lock(&ue
->card
->user_ctl_lock
);
1062 change
= memcmp(&ucontrol
->value
, ue
->elem_data
, ue
->elem_data_size
) != 0;
1064 memcpy(ue
->elem_data
, &ucontrol
->value
, ue
->elem_data_size
);
1065 mutex_unlock(&ue
->card
->user_ctl_lock
);
1069 static int snd_ctl_elem_user_tlv(struct snd_kcontrol
*kcontrol
,
1072 unsigned int __user
*tlv
)
1074 struct user_element
*ue
= kcontrol
->private_data
;
1079 if (size
> 1024 * 128) /* sane value */
1082 new_data
= memdup_user(tlv
, size
);
1083 if (IS_ERR(new_data
))
1084 return PTR_ERR(new_data
);
1085 mutex_lock(&ue
->card
->user_ctl_lock
);
1086 change
= ue
->tlv_data_size
!= size
;
1088 change
= memcmp(ue
->tlv_data
, new_data
, size
);
1089 kfree(ue
->tlv_data
);
1090 ue
->tlv_data
= new_data
;
1091 ue
->tlv_data_size
= size
;
1092 mutex_unlock(&ue
->card
->user_ctl_lock
);
1096 mutex_lock(&ue
->card
->user_ctl_lock
);
1097 if (!ue
->tlv_data_size
|| !ue
->tlv_data
) {
1101 if (size
< ue
->tlv_data_size
) {
1105 if (copy_to_user(tlv
, ue
->tlv_data
, ue
->tlv_data_size
))
1108 mutex_unlock(&ue
->card
->user_ctl_lock
);
1115 static int snd_ctl_elem_init_enum_names(struct user_element
*ue
)
1118 size_t buf_len
, name_len
;
1120 const uintptr_t user_ptrval
= ue
->info
.value
.enumerated
.names_ptr
;
1122 if (ue
->info
.value
.enumerated
.names_length
> 64 * 1024)
1125 names
= memdup_user((const void __user
*)user_ptrval
,
1126 ue
->info
.value
.enumerated
.names_length
);
1128 return PTR_ERR(names
);
1130 /* check that there are enough valid names */
1131 buf_len
= ue
->info
.value
.enumerated
.names_length
;
1133 for (i
= 0; i
< ue
->info
.value
.enumerated
.items
; ++i
) {
1134 name_len
= strnlen(p
, buf_len
);
1135 if (name_len
== 0 || name_len
>= 64 || name_len
== buf_len
) {
1140 buf_len
-= name_len
+ 1;
1143 ue
->priv_data
= names
;
1144 ue
->info
.value
.enumerated
.names_ptr
= 0;
1149 static void snd_ctl_elem_user_free(struct snd_kcontrol
*kcontrol
)
1151 struct user_element
*ue
= kcontrol
->private_data
;
1153 kfree(ue
->tlv_data
);
1154 kfree(ue
->priv_data
);
1158 static int snd_ctl_elem_add(struct snd_ctl_file
*file
,
1159 struct snd_ctl_elem_info
*info
, int replace
)
1161 struct snd_card
*card
= file
->card
;
1162 struct snd_kcontrol kctl
, *_kctl
;
1163 unsigned int access
;
1165 struct user_element
*ue
;
1168 if (info
->count
< 1)
1170 access
= info
->access
== 0 ? SNDRV_CTL_ELEM_ACCESS_READWRITE
:
1171 (info
->access
& (SNDRV_CTL_ELEM_ACCESS_READWRITE
|
1172 SNDRV_CTL_ELEM_ACCESS_INACTIVE
|
1173 SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE
));
1175 memset(&kctl
, 0, sizeof(kctl
));
1178 err
= snd_ctl_remove_user_ctl(file
, &info
->id
);
1183 if (card
->user_ctl_count
>= MAX_USER_CONTROLS
)
1186 memcpy(&kctl
.id
, &info
->id
, sizeof(info
->id
));
1187 kctl
.count
= info
->owner
? info
->owner
: 1;
1188 access
|= SNDRV_CTL_ELEM_ACCESS_USER
;
1189 if (info
->type
== SNDRV_CTL_ELEM_TYPE_ENUMERATED
)
1190 kctl
.info
= snd_ctl_elem_user_enum_info
;
1192 kctl
.info
= snd_ctl_elem_user_info
;
1193 if (access
& SNDRV_CTL_ELEM_ACCESS_READ
)
1194 kctl
.get
= snd_ctl_elem_user_get
;
1195 if (access
& SNDRV_CTL_ELEM_ACCESS_WRITE
)
1196 kctl
.put
= snd_ctl_elem_user_put
;
1197 if (access
& SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE
) {
1198 kctl
.tlv
.c
= snd_ctl_elem_user_tlv
;
1199 access
|= SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
;
1201 switch (info
->type
) {
1202 case SNDRV_CTL_ELEM_TYPE_BOOLEAN
:
1203 case SNDRV_CTL_ELEM_TYPE_INTEGER
:
1204 private_size
= sizeof(long);
1205 if (info
->count
> 128)
1208 case SNDRV_CTL_ELEM_TYPE_INTEGER64
:
1209 private_size
= sizeof(long long);
1210 if (info
->count
> 64)
1213 case SNDRV_CTL_ELEM_TYPE_ENUMERATED
:
1214 private_size
= sizeof(unsigned int);
1215 if (info
->count
> 128 || info
->value
.enumerated
.items
== 0)
1218 case SNDRV_CTL_ELEM_TYPE_BYTES
:
1219 private_size
= sizeof(unsigned char);
1220 if (info
->count
> 512)
1223 case SNDRV_CTL_ELEM_TYPE_IEC958
:
1224 private_size
= sizeof(struct snd_aes_iec958
);
1225 if (info
->count
!= 1)
1231 private_size
*= info
->count
;
1232 ue
= kzalloc(sizeof(struct user_element
) + private_size
, GFP_KERNEL
);
1237 ue
->info
.access
= 0;
1238 ue
->elem_data
= (char *)ue
+ sizeof(*ue
);
1239 ue
->elem_data_size
= private_size
;
1240 if (ue
->info
.type
== SNDRV_CTL_ELEM_TYPE_ENUMERATED
) {
1241 err
= snd_ctl_elem_init_enum_names(ue
);
1247 kctl
.private_free
= snd_ctl_elem_user_free
;
1248 _kctl
= snd_ctl_new(&kctl
, access
);
1249 if (_kctl
== NULL
) {
1250 kfree(ue
->priv_data
);
1254 _kctl
->private_data
= ue
;
1255 for (idx
= 0; idx
< _kctl
->count
; idx
++)
1256 _kctl
->vd
[idx
].owner
= file
;
1257 err
= snd_ctl_add(card
, _kctl
);
1261 down_write(&card
->controls_rwsem
);
1262 card
->user_ctl_count
++;
1263 up_write(&card
->controls_rwsem
);
1268 static int snd_ctl_elem_add_user(struct snd_ctl_file
*file
,
1269 struct snd_ctl_elem_info __user
*_info
, int replace
)
1271 struct snd_ctl_elem_info info
;
1272 if (copy_from_user(&info
, _info
, sizeof(info
)))
1274 return snd_ctl_elem_add(file
, &info
, replace
);
1277 static int snd_ctl_elem_remove(struct snd_ctl_file
*file
,
1278 struct snd_ctl_elem_id __user
*_id
)
1280 struct snd_ctl_elem_id id
;
1282 if (copy_from_user(&id
, _id
, sizeof(id
)))
1284 return snd_ctl_remove_user_ctl(file
, &id
);
1287 static int snd_ctl_subscribe_events(struct snd_ctl_file
*file
, int __user
*ptr
)
1290 if (get_user(subscribe
, ptr
))
1292 if (subscribe
< 0) {
1293 subscribe
= file
->subscribed
;
1294 if (put_user(subscribe
, ptr
))
1299 file
->subscribed
= 1;
1301 } else if (file
->subscribed
) {
1302 snd_ctl_empty_read_queue(file
);
1303 file
->subscribed
= 0;
1308 static int snd_ctl_tlv_ioctl(struct snd_ctl_file
*file
,
1309 struct snd_ctl_tlv __user
*_tlv
,
1312 struct snd_card
*card
= file
->card
;
1313 struct snd_ctl_tlv tlv
;
1314 struct snd_kcontrol
*kctl
;
1315 struct snd_kcontrol_volatile
*vd
;
1319 if (copy_from_user(&tlv
, _tlv
, sizeof(tlv
)))
1321 if (tlv
.length
< sizeof(unsigned int) * 2)
1323 down_read(&card
->controls_rwsem
);
1324 kctl
= snd_ctl_find_numid(card
, tlv
.numid
);
1329 if (kctl
->tlv
.p
== NULL
) {
1333 vd
= &kctl
->vd
[tlv
.numid
- kctl
->id
.numid
];
1334 if ((op_flag
== 0 && (vd
->access
& SNDRV_CTL_ELEM_ACCESS_TLV_READ
) == 0) ||
1335 (op_flag
> 0 && (vd
->access
& SNDRV_CTL_ELEM_ACCESS_TLV_WRITE
) == 0) ||
1336 (op_flag
< 0 && (vd
->access
& SNDRV_CTL_ELEM_ACCESS_TLV_COMMAND
) == 0)) {
1340 if (vd
->access
& SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
) {
1341 if (vd
->owner
!= NULL
&& vd
->owner
!= file
) {
1345 err
= kctl
->tlv
.c(kctl
, op_flag
, tlv
.length
, _tlv
->tlv
);
1347 struct snd_ctl_elem_id id
= kctl
->id
;
1348 up_read(&card
->controls_rwsem
);
1349 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_TLV
, &id
);
1357 len
= kctl
->tlv
.p
[1] + 2 * sizeof(unsigned int);
1358 if (tlv
.length
< len
) {
1362 if (copy_to_user(_tlv
->tlv
, kctl
->tlv
.p
, len
))
1366 up_read(&card
->controls_rwsem
);
1370 static long snd_ctl_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1372 struct snd_ctl_file
*ctl
;
1373 struct snd_card
*card
;
1374 struct snd_kctl_ioctl
*p
;
1375 void __user
*argp
= (void __user
*)arg
;
1376 int __user
*ip
= argp
;
1379 ctl
= file
->private_data
;
1381 if (snd_BUG_ON(!card
))
1384 case SNDRV_CTL_IOCTL_PVERSION
:
1385 return put_user(SNDRV_CTL_VERSION
, ip
) ? -EFAULT
: 0;
1386 case SNDRV_CTL_IOCTL_CARD_INFO
:
1387 return snd_ctl_card_info(card
, ctl
, cmd
, argp
);
1388 case SNDRV_CTL_IOCTL_ELEM_LIST
:
1389 return snd_ctl_elem_list(card
, argp
);
1390 case SNDRV_CTL_IOCTL_ELEM_INFO
:
1391 return snd_ctl_elem_info_user(ctl
, argp
);
1392 case SNDRV_CTL_IOCTL_ELEM_READ
:
1393 return snd_ctl_elem_read_user(card
, argp
);
1394 case SNDRV_CTL_IOCTL_ELEM_WRITE
:
1395 return snd_ctl_elem_write_user(ctl
, argp
);
1396 case SNDRV_CTL_IOCTL_ELEM_LOCK
:
1397 return snd_ctl_elem_lock(ctl
, argp
);
1398 case SNDRV_CTL_IOCTL_ELEM_UNLOCK
:
1399 return snd_ctl_elem_unlock(ctl
, argp
);
1400 case SNDRV_CTL_IOCTL_ELEM_ADD
:
1401 return snd_ctl_elem_add_user(ctl
, argp
, 0);
1402 case SNDRV_CTL_IOCTL_ELEM_REPLACE
:
1403 return snd_ctl_elem_add_user(ctl
, argp
, 1);
1404 case SNDRV_CTL_IOCTL_ELEM_REMOVE
:
1405 return snd_ctl_elem_remove(ctl
, argp
);
1406 case SNDRV_CTL_IOCTL_SUBSCRIBE_EVENTS
:
1407 return snd_ctl_subscribe_events(ctl
, ip
);
1408 case SNDRV_CTL_IOCTL_TLV_READ
:
1409 return snd_ctl_tlv_ioctl(ctl
, argp
, SNDRV_CTL_TLV_OP_READ
);
1410 case SNDRV_CTL_IOCTL_TLV_WRITE
:
1411 return snd_ctl_tlv_ioctl(ctl
, argp
, SNDRV_CTL_TLV_OP_WRITE
);
1412 case SNDRV_CTL_IOCTL_TLV_COMMAND
:
1413 return snd_ctl_tlv_ioctl(ctl
, argp
, SNDRV_CTL_TLV_OP_CMD
);
1414 case SNDRV_CTL_IOCTL_POWER
:
1415 return -ENOPROTOOPT
;
1416 case SNDRV_CTL_IOCTL_POWER_STATE
:
1418 return put_user(card
->power_state
, ip
) ? -EFAULT
: 0;
1420 return put_user(SNDRV_CTL_POWER_D0
, ip
) ? -EFAULT
: 0;
1423 down_read(&snd_ioctl_rwsem
);
1424 list_for_each_entry(p
, &snd_control_ioctls
, list
) {
1425 err
= p
->fioctl(card
, ctl
, cmd
, arg
);
1426 if (err
!= -ENOIOCTLCMD
) {
1427 up_read(&snd_ioctl_rwsem
);
1431 up_read(&snd_ioctl_rwsem
);
1432 dev_dbg(card
->dev
, "unknown ioctl = 0x%x\n", cmd
);
1436 static ssize_t
snd_ctl_read(struct file
*file
, char __user
*buffer
,
1437 size_t count
, loff_t
* offset
)
1439 struct snd_ctl_file
*ctl
;
1443 ctl
= file
->private_data
;
1444 if (snd_BUG_ON(!ctl
|| !ctl
->card
))
1446 if (!ctl
->subscribed
)
1448 if (count
< sizeof(struct snd_ctl_event
))
1450 spin_lock_irq(&ctl
->read_lock
);
1451 while (count
>= sizeof(struct snd_ctl_event
)) {
1452 struct snd_ctl_event ev
;
1453 struct snd_kctl_event
*kev
;
1454 while (list_empty(&ctl
->events
)) {
1456 if ((file
->f_flags
& O_NONBLOCK
) != 0 || result
> 0) {
1460 init_waitqueue_entry(&wait
, current
);
1461 add_wait_queue(&ctl
->change_sleep
, &wait
);
1462 set_current_state(TASK_INTERRUPTIBLE
);
1463 spin_unlock_irq(&ctl
->read_lock
);
1465 remove_wait_queue(&ctl
->change_sleep
, &wait
);
1466 if (ctl
->card
->shutdown
)
1468 if (signal_pending(current
))
1469 return -ERESTARTSYS
;
1470 spin_lock_irq(&ctl
->read_lock
);
1472 kev
= snd_kctl_event(ctl
->events
.next
);
1473 ev
.type
= SNDRV_CTL_EVENT_ELEM
;
1474 ev
.data
.elem
.mask
= kev
->mask
;
1475 ev
.data
.elem
.id
= kev
->id
;
1476 list_del(&kev
->list
);
1477 spin_unlock_irq(&ctl
->read_lock
);
1479 if (copy_to_user(buffer
, &ev
, sizeof(struct snd_ctl_event
))) {
1483 spin_lock_irq(&ctl
->read_lock
);
1484 buffer
+= sizeof(struct snd_ctl_event
);
1485 count
-= sizeof(struct snd_ctl_event
);
1486 result
+= sizeof(struct snd_ctl_event
);
1489 spin_unlock_irq(&ctl
->read_lock
);
1491 return result
> 0 ? result
: err
;
1494 static unsigned int snd_ctl_poll(struct file
*file
, poll_table
* wait
)
1497 struct snd_ctl_file
*ctl
;
1499 ctl
= file
->private_data
;
1500 if (!ctl
->subscribed
)
1502 poll_wait(file
, &ctl
->change_sleep
, wait
);
1505 if (!list_empty(&ctl
->events
))
1506 mask
|= POLLIN
| POLLRDNORM
;
1512 * register the device-specific control-ioctls.
1513 * called from each device manager like pcm.c, hwdep.c, etc.
1515 static int _snd_ctl_register_ioctl(snd_kctl_ioctl_func_t fcn
, struct list_head
*lists
)
1517 struct snd_kctl_ioctl
*pn
;
1519 pn
= kzalloc(sizeof(struct snd_kctl_ioctl
), GFP_KERNEL
);
1523 down_write(&snd_ioctl_rwsem
);
1524 list_add_tail(&pn
->list
, lists
);
1525 up_write(&snd_ioctl_rwsem
);
1529 int snd_ctl_register_ioctl(snd_kctl_ioctl_func_t fcn
)
1531 return _snd_ctl_register_ioctl(fcn
, &snd_control_ioctls
);
1534 EXPORT_SYMBOL(snd_ctl_register_ioctl
);
1536 #ifdef CONFIG_COMPAT
1537 int snd_ctl_register_ioctl_compat(snd_kctl_ioctl_func_t fcn
)
1539 return _snd_ctl_register_ioctl(fcn
, &snd_control_compat_ioctls
);
1542 EXPORT_SYMBOL(snd_ctl_register_ioctl_compat
);
1546 * de-register the device-specific control-ioctls.
1548 static int _snd_ctl_unregister_ioctl(snd_kctl_ioctl_func_t fcn
,
1549 struct list_head
*lists
)
1551 struct snd_kctl_ioctl
*p
;
1553 if (snd_BUG_ON(!fcn
))
1555 down_write(&snd_ioctl_rwsem
);
1556 list_for_each_entry(p
, lists
, list
) {
1557 if (p
->fioctl
== fcn
) {
1559 up_write(&snd_ioctl_rwsem
);
1564 up_write(&snd_ioctl_rwsem
);
1569 int snd_ctl_unregister_ioctl(snd_kctl_ioctl_func_t fcn
)
1571 return _snd_ctl_unregister_ioctl(fcn
, &snd_control_ioctls
);
1574 EXPORT_SYMBOL(snd_ctl_unregister_ioctl
);
1576 #ifdef CONFIG_COMPAT
1577 int snd_ctl_unregister_ioctl_compat(snd_kctl_ioctl_func_t fcn
)
1579 return _snd_ctl_unregister_ioctl(fcn
, &snd_control_compat_ioctls
);
1582 EXPORT_SYMBOL(snd_ctl_unregister_ioctl_compat
);
1585 static int snd_ctl_fasync(int fd
, struct file
* file
, int on
)
1587 struct snd_ctl_file
*ctl
;
1589 ctl
= file
->private_data
;
1590 return fasync_helper(fd
, file
, on
, &ctl
->fasync
);
1596 #ifdef CONFIG_COMPAT
1597 #include "control_compat.c"
1599 #define snd_ctl_ioctl_compat NULL
1606 static const struct file_operations snd_ctl_f_ops
=
1608 .owner
= THIS_MODULE
,
1609 .read
= snd_ctl_read
,
1610 .open
= snd_ctl_open
,
1611 .release
= snd_ctl_release
,
1612 .llseek
= no_llseek
,
1613 .poll
= snd_ctl_poll
,
1614 .unlocked_ioctl
= snd_ctl_ioctl
,
1615 .compat_ioctl
= snd_ctl_ioctl_compat
,
1616 .fasync
= snd_ctl_fasync
,
1620 * registration of the control device
1622 static int snd_ctl_dev_register(struct snd_device
*device
)
1624 struct snd_card
*card
= device
->device_data
;
1628 if (snd_BUG_ON(!card
))
1630 cardnum
= card
->number
;
1631 if (snd_BUG_ON(cardnum
< 0 || cardnum
>= SNDRV_CARDS
))
1633 sprintf(name
, "controlC%i", cardnum
);
1634 if ((err
= snd_register_device(SNDRV_DEVICE_TYPE_CONTROL
, card
, -1,
1635 &snd_ctl_f_ops
, card
, name
)) < 0)
1641 * disconnection of the control device
1643 static int snd_ctl_dev_disconnect(struct snd_device
*device
)
1645 struct snd_card
*card
= device
->device_data
;
1646 struct snd_ctl_file
*ctl
;
1649 if (snd_BUG_ON(!card
))
1651 cardnum
= card
->number
;
1652 if (snd_BUG_ON(cardnum
< 0 || cardnum
>= SNDRV_CARDS
))
1655 read_lock(&card
->ctl_files_rwlock
);
1656 list_for_each_entry(ctl
, &card
->ctl_files
, list
) {
1657 wake_up(&ctl
->change_sleep
);
1658 kill_fasync(&ctl
->fasync
, SIGIO
, POLL_ERR
);
1660 read_unlock(&card
->ctl_files_rwlock
);
1662 if ((err
= snd_unregister_device(SNDRV_DEVICE_TYPE_CONTROL
,
1671 static int snd_ctl_dev_free(struct snd_device
*device
)
1673 struct snd_card
*card
= device
->device_data
;
1674 struct snd_kcontrol
*control
;
1676 down_write(&card
->controls_rwsem
);
1677 while (!list_empty(&card
->controls
)) {
1678 control
= snd_kcontrol(card
->controls
.next
);
1679 snd_ctl_remove(card
, control
);
1681 up_write(&card
->controls_rwsem
);
1686 * create control core:
1687 * called from init.c
1689 int snd_ctl_create(struct snd_card
*card
)
1691 static struct snd_device_ops ops
= {
1692 .dev_free
= snd_ctl_dev_free
,
1693 .dev_register
= snd_ctl_dev_register
,
1694 .dev_disconnect
= snd_ctl_dev_disconnect
,
1697 if (snd_BUG_ON(!card
))
1699 return snd_device_new(card
, SNDRV_DEV_CONTROL
, card
, &ops
);
1703 * Frequently used control callbacks/helpers
1705 int snd_ctl_boolean_mono_info(struct snd_kcontrol
*kcontrol
,
1706 struct snd_ctl_elem_info
*uinfo
)
1708 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1710 uinfo
->value
.integer
.min
= 0;
1711 uinfo
->value
.integer
.max
= 1;
1715 EXPORT_SYMBOL(snd_ctl_boolean_mono_info
);
1717 int snd_ctl_boolean_stereo_info(struct snd_kcontrol
*kcontrol
,
1718 struct snd_ctl_elem_info
*uinfo
)
1720 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1722 uinfo
->value
.integer
.min
= 0;
1723 uinfo
->value
.integer
.max
= 1;
1727 EXPORT_SYMBOL(snd_ctl_boolean_stereo_info
);
1730 * snd_ctl_enum_info - fills the info structure for an enumerated control
1731 * @info: the structure to be filled
1732 * @channels: the number of the control's channels; often one
1733 * @items: the number of control values; also the size of @names
1734 * @names: an array containing the names of all control values
1736 * Sets all required fields in @info to their appropriate values.
1737 * If the control's accessibility is not the default (readable and writable),
1738 * the caller has to fill @info->access.
1742 int snd_ctl_enum_info(struct snd_ctl_elem_info
*info
, unsigned int channels
,
1743 unsigned int items
, const char *const names
[])
1745 info
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
1746 info
->count
= channels
;
1747 info
->value
.enumerated
.items
= items
;
1748 if (info
->value
.enumerated
.item
>= items
)
1749 info
->value
.enumerated
.item
= items
- 1;
1750 strlcpy(info
->value
.enumerated
.name
,
1751 names
[info
->value
.enumerated
.item
],
1752 sizeof(info
->value
.enumerated
.name
));
1755 EXPORT_SYMBOL(snd_ctl_enum_info
);