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 defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
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 snd_printk(KERN_ERR
"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 * Returns 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 snd_printk(KERN_ERR
"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 * Returns 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 snd_printk(KERN_WARNING
245 "Control name '%s' truncated to '%s'\n",
246 ncontrol
->name
, kctl
.id
.name
);
248 kctl
.id
.index
= ncontrol
->index
;
249 kctl
.count
= ncontrol
->count
? ncontrol
->count
: 1;
250 access
= ncontrol
->access
== 0 ? SNDRV_CTL_ELEM_ACCESS_READWRITE
:
251 (ncontrol
->access
& (SNDRV_CTL_ELEM_ACCESS_READWRITE
|
252 SNDRV_CTL_ELEM_ACCESS_VOLATILE
|
253 SNDRV_CTL_ELEM_ACCESS_INACTIVE
|
254 SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE
|
255 SNDRV_CTL_ELEM_ACCESS_TLV_COMMAND
|
256 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
));
257 kctl
.info
= ncontrol
->info
;
258 kctl
.get
= ncontrol
->get
;
259 kctl
.put
= ncontrol
->put
;
260 kctl
.tlv
.p
= ncontrol
->tlv
.p
;
261 kctl
.private_value
= ncontrol
->private_value
;
262 kctl
.private_data
= private_data
;
263 return snd_ctl_new(&kctl
, access
);
266 EXPORT_SYMBOL(snd_ctl_new1
);
269 * snd_ctl_free_one - release the control instance
270 * @kcontrol: the control instance
272 * Releases the control instance created via snd_ctl_new()
274 * Don't call this after the control was added to the card.
276 void snd_ctl_free_one(struct snd_kcontrol
*kcontrol
)
279 if (kcontrol
->private_free
)
280 kcontrol
->private_free(kcontrol
);
285 EXPORT_SYMBOL(snd_ctl_free_one
);
287 static bool snd_ctl_remove_numid_conflict(struct snd_card
*card
,
290 struct snd_kcontrol
*kctl
;
292 list_for_each_entry(kctl
, &card
->controls
, list
) {
293 if (kctl
->id
.numid
< card
->last_numid
+ 1 + count
&&
294 kctl
->id
.numid
+ kctl
->count
> card
->last_numid
+ 1) {
295 card
->last_numid
= kctl
->id
.numid
+ kctl
->count
- 1;
302 static int snd_ctl_find_hole(struct snd_card
*card
, unsigned int count
)
304 unsigned int iter
= 100000;
306 while (snd_ctl_remove_numid_conflict(card
, count
)) {
308 /* this situation is very unlikely */
309 snd_printk(KERN_ERR
"unable to allocate new control numid\n");
317 * snd_ctl_add - add the control instance to the card
318 * @card: the card instance
319 * @kcontrol: the control instance to add
321 * Adds the control instance created via snd_ctl_new() or
322 * snd_ctl_new1() to the given card. Assigns also an unique
323 * numid used for fast search.
325 * Returns zero if successful, or a negative error code on failure.
327 * It frees automatically the control which cannot be added.
329 int snd_ctl_add(struct snd_card
*card
, struct snd_kcontrol
*kcontrol
)
331 struct snd_ctl_elem_id id
;
337 if (snd_BUG_ON(!card
|| !kcontrol
->info
))
340 down_write(&card
->controls_rwsem
);
341 if (snd_ctl_find_id(card
, &id
)) {
342 up_write(&card
->controls_rwsem
);
343 snd_printd(KERN_ERR
"control %i:%i:%i:%s:%i is already present\n",
352 if (snd_ctl_find_hole(card
, kcontrol
->count
) < 0) {
353 up_write(&card
->controls_rwsem
);
357 list_add_tail(&kcontrol
->list
, &card
->controls
);
358 card
->controls_count
+= kcontrol
->count
;
359 kcontrol
->id
.numid
= card
->last_numid
+ 1;
360 card
->last_numid
+= kcontrol
->count
;
361 up_write(&card
->controls_rwsem
);
362 for (idx
= 0; idx
< kcontrol
->count
; idx
++, id
.index
++, id
.numid
++)
363 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_ADD
, &id
);
367 snd_ctl_free_one(kcontrol
);
371 EXPORT_SYMBOL(snd_ctl_add
);
374 * snd_ctl_replace - replace the control instance of the card
375 * @card: the card instance
376 * @kcontrol: the control instance to replace
377 * @add_on_replace: add the control if not already added
379 * Replaces the given control. If the given control does not exist
380 * and the add_on_replace flag is set, the control is added. If the
381 * control exists, it is destroyed first.
383 * Returns zero if successful, or a negative error code on failure.
385 * It frees automatically the control which cannot be added or replaced.
387 int snd_ctl_replace(struct snd_card
*card
, struct snd_kcontrol
*kcontrol
,
390 struct snd_ctl_elem_id id
;
392 struct snd_kcontrol
*old
;
397 if (snd_BUG_ON(!card
|| !kcontrol
->info
)) {
402 down_write(&card
->controls_rwsem
);
403 old
= snd_ctl_find_id(card
, &id
);
407 up_write(&card
->controls_rwsem
);
411 ret
= snd_ctl_remove(card
, old
);
413 up_write(&card
->controls_rwsem
);
417 if (snd_ctl_find_hole(card
, kcontrol
->count
) < 0) {
418 up_write(&card
->controls_rwsem
);
422 list_add_tail(&kcontrol
->list
, &card
->controls
);
423 card
->controls_count
+= kcontrol
->count
;
424 kcontrol
->id
.numid
= card
->last_numid
+ 1;
425 card
->last_numid
+= kcontrol
->count
;
426 up_write(&card
->controls_rwsem
);
427 for (idx
= 0; idx
< kcontrol
->count
; idx
++, id
.index
++, id
.numid
++)
428 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_ADD
, &id
);
432 snd_ctl_free_one(kcontrol
);
435 EXPORT_SYMBOL(snd_ctl_replace
);
438 * snd_ctl_remove - remove the control from the card and release it
439 * @card: the card instance
440 * @kcontrol: the control instance to remove
442 * Removes the control from the card and then releases the instance.
443 * You don't need to call snd_ctl_free_one(). You must be in
444 * the write lock - down_write(&card->controls_rwsem).
446 * Returns 0 if successful, or a negative error code on failure.
448 int snd_ctl_remove(struct snd_card
*card
, struct snd_kcontrol
*kcontrol
)
450 struct snd_ctl_elem_id id
;
453 if (snd_BUG_ON(!card
|| !kcontrol
))
455 list_del(&kcontrol
->list
);
456 card
->controls_count
-= kcontrol
->count
;
458 for (idx
= 0; idx
< kcontrol
->count
; idx
++, id
.index
++, id
.numid
++)
459 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_REMOVE
, &id
);
460 snd_ctl_free_one(kcontrol
);
464 EXPORT_SYMBOL(snd_ctl_remove
);
467 * snd_ctl_remove_id - remove the control of the given id and release it
468 * @card: the card instance
469 * @id: the control id to remove
471 * Finds the control instance with the given id, removes it from the
472 * card list and releases it.
474 * Returns 0 if successful, or a negative error code on failure.
476 int snd_ctl_remove_id(struct snd_card
*card
, struct snd_ctl_elem_id
*id
)
478 struct snd_kcontrol
*kctl
;
481 down_write(&card
->controls_rwsem
);
482 kctl
= snd_ctl_find_id(card
, id
);
484 up_write(&card
->controls_rwsem
);
487 ret
= snd_ctl_remove(card
, kctl
);
488 up_write(&card
->controls_rwsem
);
492 EXPORT_SYMBOL(snd_ctl_remove_id
);
495 * snd_ctl_remove_user_ctl - remove and release the unlocked user control
496 * @file: active control handle
497 * @id: the control id to remove
499 * Finds the control instance with the given id, removes it from the
500 * card list and releases it.
502 * Returns 0 if successful, or a negative error code on failure.
504 static int snd_ctl_remove_user_ctl(struct snd_ctl_file
* file
,
505 struct snd_ctl_elem_id
*id
)
507 struct snd_card
*card
= file
->card
;
508 struct snd_kcontrol
*kctl
;
511 down_write(&card
->controls_rwsem
);
512 kctl
= snd_ctl_find_id(card
, id
);
517 if (!(kctl
->vd
[0].access
& SNDRV_CTL_ELEM_ACCESS_USER
)) {
521 for (idx
= 0; idx
< kctl
->count
; idx
++)
522 if (kctl
->vd
[idx
].owner
!= NULL
&& kctl
->vd
[idx
].owner
!= file
) {
526 ret
= snd_ctl_remove(card
, kctl
);
529 card
->user_ctl_count
--;
531 up_write(&card
->controls_rwsem
);
536 * snd_ctl_activate_id - activate/inactivate the control of the given id
537 * @card: the card instance
538 * @id: the control id to activate/inactivate
539 * @active: non-zero to activate
541 * Finds the control instance with the given id, and activate or
542 * inactivate the control together with notification, if changed.
544 * Returns 0 if unchanged, 1 if changed, or a negative error code on failure.
546 int snd_ctl_activate_id(struct snd_card
*card
, struct snd_ctl_elem_id
*id
,
549 struct snd_kcontrol
*kctl
;
550 struct snd_kcontrol_volatile
*vd
;
551 unsigned int index_offset
;
554 down_write(&card
->controls_rwsem
);
555 kctl
= snd_ctl_find_id(card
, id
);
560 index_offset
= snd_ctl_get_ioff(kctl
, &kctl
->id
);
561 vd
= &kctl
->vd
[index_offset
];
564 if (!(vd
->access
& SNDRV_CTL_ELEM_ACCESS_INACTIVE
))
566 vd
->access
&= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
568 if (vd
->access
& SNDRV_CTL_ELEM_ACCESS_INACTIVE
)
570 vd
->access
|= SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
574 up_write(&card
->controls_rwsem
);
576 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_INFO
, id
);
579 EXPORT_SYMBOL_GPL(snd_ctl_activate_id
);
582 * snd_ctl_rename_id - replace the id of a control on the card
583 * @card: the card instance
584 * @src_id: the old id
585 * @dst_id: the new id
587 * Finds the control with the old id from the card, and replaces the
588 * id with the new one.
590 * Returns zero if successful, or a negative error code on failure.
592 int snd_ctl_rename_id(struct snd_card
*card
, struct snd_ctl_elem_id
*src_id
,
593 struct snd_ctl_elem_id
*dst_id
)
595 struct snd_kcontrol
*kctl
;
597 down_write(&card
->controls_rwsem
);
598 kctl
= snd_ctl_find_id(card
, src_id
);
600 up_write(&card
->controls_rwsem
);
604 kctl
->id
.numid
= card
->last_numid
+ 1;
605 card
->last_numid
+= kctl
->count
;
606 up_write(&card
->controls_rwsem
);
610 EXPORT_SYMBOL(snd_ctl_rename_id
);
613 * snd_ctl_find_numid - find the control instance with the given number-id
614 * @card: the card instance
615 * @numid: the number-id to search
617 * Finds the control instance with the given number-id from the card.
619 * Returns the pointer of the instance if found, or NULL if not.
621 * The caller must down card->controls_rwsem before calling this function
622 * (if the race condition can happen).
624 struct snd_kcontrol
*snd_ctl_find_numid(struct snd_card
*card
, unsigned int numid
)
626 struct snd_kcontrol
*kctl
;
628 if (snd_BUG_ON(!card
|| !numid
))
630 list_for_each_entry(kctl
, &card
->controls
, list
) {
631 if (kctl
->id
.numid
<= numid
&& kctl
->id
.numid
+ kctl
->count
> numid
)
637 EXPORT_SYMBOL(snd_ctl_find_numid
);
640 * snd_ctl_find_id - find the control instance with the given id
641 * @card: the card instance
642 * @id: the id to search
644 * Finds the control instance with the given id from the card.
646 * Returns the pointer of the instance if found, or NULL if not.
648 * The caller must down card->controls_rwsem before calling this function
649 * (if the race condition can happen).
651 struct snd_kcontrol
*snd_ctl_find_id(struct snd_card
*card
,
652 struct snd_ctl_elem_id
*id
)
654 struct snd_kcontrol
*kctl
;
656 if (snd_BUG_ON(!card
|| !id
))
659 return snd_ctl_find_numid(card
, id
->numid
);
660 list_for_each_entry(kctl
, &card
->controls
, list
) {
661 if (kctl
->id
.iface
!= id
->iface
)
663 if (kctl
->id
.device
!= id
->device
)
665 if (kctl
->id
.subdevice
!= id
->subdevice
)
667 if (strncmp(kctl
->id
.name
, id
->name
, sizeof(kctl
->id
.name
)))
669 if (kctl
->id
.index
> id
->index
)
671 if (kctl
->id
.index
+ kctl
->count
<= id
->index
)
678 EXPORT_SYMBOL(snd_ctl_find_id
);
680 static int snd_ctl_card_info(struct snd_card
*card
, struct snd_ctl_file
* ctl
,
681 unsigned int cmd
, void __user
*arg
)
683 struct snd_ctl_card_info
*info
;
685 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
688 down_read(&snd_ioctl_rwsem
);
689 info
->card
= card
->number
;
690 strlcpy(info
->id
, card
->id
, sizeof(info
->id
));
691 strlcpy(info
->driver
, card
->driver
, sizeof(info
->driver
));
692 strlcpy(info
->name
, card
->shortname
, sizeof(info
->name
));
693 strlcpy(info
->longname
, card
->longname
, sizeof(info
->longname
));
694 strlcpy(info
->mixername
, card
->mixername
, sizeof(info
->mixername
));
695 strlcpy(info
->components
, card
->components
, sizeof(info
->components
));
696 up_read(&snd_ioctl_rwsem
);
697 if (copy_to_user(arg
, info
, sizeof(struct snd_ctl_card_info
))) {
705 static int snd_ctl_elem_list(struct snd_card
*card
,
706 struct snd_ctl_elem_list __user
*_list
)
708 struct list_head
*plist
;
709 struct snd_ctl_elem_list list
;
710 struct snd_kcontrol
*kctl
;
711 struct snd_ctl_elem_id
*dst
, *id
;
712 unsigned int offset
, space
, jidx
;
714 if (copy_from_user(&list
, _list
, sizeof(list
)))
716 offset
= list
.offset
;
718 /* try limit maximum space */
722 /* allocate temporary buffer for atomic operation */
723 dst
= vmalloc(space
* sizeof(struct snd_ctl_elem_id
));
726 down_read(&card
->controls_rwsem
);
727 list
.count
= card
->controls_count
;
728 plist
= card
->controls
.next
;
729 while (plist
!= &card
->controls
) {
732 kctl
= snd_kcontrol(plist
);
733 if (offset
< kctl
->count
)
735 offset
-= kctl
->count
;
740 while (space
> 0 && plist
!= &card
->controls
) {
741 kctl
= snd_kcontrol(plist
);
742 for (jidx
= offset
; space
> 0 && jidx
< kctl
->count
; jidx
++) {
743 snd_ctl_build_ioff(id
, kctl
, jidx
);
751 up_read(&card
->controls_rwsem
);
753 copy_to_user(list
.pids
, dst
,
754 list
.used
* sizeof(struct snd_ctl_elem_id
))) {
760 down_read(&card
->controls_rwsem
);
761 list
.count
= card
->controls_count
;
762 up_read(&card
->controls_rwsem
);
764 if (copy_to_user(_list
, &list
, sizeof(list
)))
769 static int snd_ctl_elem_info(struct snd_ctl_file
*ctl
,
770 struct snd_ctl_elem_info
*info
)
772 struct snd_card
*card
= ctl
->card
;
773 struct snd_kcontrol
*kctl
;
774 struct snd_kcontrol_volatile
*vd
;
775 unsigned int index_offset
;
778 down_read(&card
->controls_rwsem
);
779 kctl
= snd_ctl_find_id(card
, &info
->id
);
781 up_read(&card
->controls_rwsem
);
784 #ifdef CONFIG_SND_DEBUG
787 result
= kctl
->info(kctl
, info
);
789 snd_BUG_ON(info
->access
);
790 index_offset
= snd_ctl_get_ioff(kctl
, &info
->id
);
791 vd
= &kctl
->vd
[index_offset
];
792 snd_ctl_build_ioff(&info
->id
, kctl
, index_offset
);
793 info
->access
= vd
->access
;
795 info
->access
|= SNDRV_CTL_ELEM_ACCESS_LOCK
;
796 if (vd
->owner
== ctl
)
797 info
->access
|= SNDRV_CTL_ELEM_ACCESS_OWNER
;
798 info
->owner
= pid_vnr(vd
->owner
->pid
);
803 up_read(&card
->controls_rwsem
);
807 static int snd_ctl_elem_info_user(struct snd_ctl_file
*ctl
,
808 struct snd_ctl_elem_info __user
*_info
)
810 struct snd_ctl_elem_info info
;
813 if (copy_from_user(&info
, _info
, sizeof(info
)))
815 snd_power_lock(ctl
->card
);
816 result
= snd_power_wait(ctl
->card
, SNDRV_CTL_POWER_D0
);
818 result
= snd_ctl_elem_info(ctl
, &info
);
819 snd_power_unlock(ctl
->card
);
821 if (copy_to_user(_info
, &info
, sizeof(info
)))
826 static int snd_ctl_elem_read(struct snd_card
*card
,
827 struct snd_ctl_elem_value
*control
)
829 struct snd_kcontrol
*kctl
;
830 struct snd_kcontrol_volatile
*vd
;
831 unsigned int index_offset
;
834 down_read(&card
->controls_rwsem
);
835 kctl
= snd_ctl_find_id(card
, &control
->id
);
839 index_offset
= snd_ctl_get_ioff(kctl
, &control
->id
);
840 vd
= &kctl
->vd
[index_offset
];
841 if ((vd
->access
& SNDRV_CTL_ELEM_ACCESS_READ
) &&
843 snd_ctl_build_ioff(&control
->id
, kctl
, index_offset
);
844 result
= kctl
->get(kctl
, control
);
848 up_read(&card
->controls_rwsem
);
852 static int snd_ctl_elem_read_user(struct snd_card
*card
,
853 struct snd_ctl_elem_value __user
*_control
)
855 struct snd_ctl_elem_value
*control
;
858 control
= memdup_user(_control
, sizeof(*control
));
860 return PTR_ERR(control
);
862 snd_power_lock(card
);
863 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
);
865 result
= snd_ctl_elem_read(card
, control
);
866 snd_power_unlock(card
);
868 if (copy_to_user(_control
, control
, sizeof(*control
)))
874 static int snd_ctl_elem_write(struct snd_card
*card
, struct snd_ctl_file
*file
,
875 struct snd_ctl_elem_value
*control
)
877 struct snd_kcontrol
*kctl
;
878 struct snd_kcontrol_volatile
*vd
;
879 unsigned int index_offset
;
882 down_read(&card
->controls_rwsem
);
883 kctl
= snd_ctl_find_id(card
, &control
->id
);
887 index_offset
= snd_ctl_get_ioff(kctl
, &control
->id
);
888 vd
= &kctl
->vd
[index_offset
];
889 if (!(vd
->access
& SNDRV_CTL_ELEM_ACCESS_WRITE
) ||
891 (file
&& vd
->owner
&& vd
->owner
!= file
)) {
894 snd_ctl_build_ioff(&control
->id
, kctl
, index_offset
);
895 result
= kctl
->put(kctl
, control
);
898 up_read(&card
->controls_rwsem
);
899 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
,
904 up_read(&card
->controls_rwsem
);
908 static int snd_ctl_elem_write_user(struct snd_ctl_file
*file
,
909 struct snd_ctl_elem_value __user
*_control
)
911 struct snd_ctl_elem_value
*control
;
912 struct snd_card
*card
;
915 control
= memdup_user(_control
, sizeof(*control
));
917 return PTR_ERR(control
);
920 snd_power_lock(card
);
921 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
);
923 result
= snd_ctl_elem_write(card
, file
, control
);
924 snd_power_unlock(card
);
926 if (copy_to_user(_control
, control
, sizeof(*control
)))
932 static int snd_ctl_elem_lock(struct snd_ctl_file
*file
,
933 struct snd_ctl_elem_id __user
*_id
)
935 struct snd_card
*card
= file
->card
;
936 struct snd_ctl_elem_id id
;
937 struct snd_kcontrol
*kctl
;
938 struct snd_kcontrol_volatile
*vd
;
941 if (copy_from_user(&id
, _id
, sizeof(id
)))
943 down_write(&card
->controls_rwsem
);
944 kctl
= snd_ctl_find_id(card
, &id
);
948 vd
= &kctl
->vd
[snd_ctl_get_ioff(kctl
, &id
)];
949 if (vd
->owner
!= NULL
)
956 up_write(&card
->controls_rwsem
);
960 static int snd_ctl_elem_unlock(struct snd_ctl_file
*file
,
961 struct snd_ctl_elem_id __user
*_id
)
963 struct snd_card
*card
= file
->card
;
964 struct snd_ctl_elem_id id
;
965 struct snd_kcontrol
*kctl
;
966 struct snd_kcontrol_volatile
*vd
;
969 if (copy_from_user(&id
, _id
, sizeof(id
)))
971 down_write(&card
->controls_rwsem
);
972 kctl
= snd_ctl_find_id(card
, &id
);
976 vd
= &kctl
->vd
[snd_ctl_get_ioff(kctl
, &id
)];
977 if (vd
->owner
== NULL
)
979 else if (vd
->owner
!= file
)
986 up_write(&card
->controls_rwsem
);
990 struct user_element
{
991 struct snd_ctl_elem_info info
;
992 void *elem_data
; /* element data */
993 unsigned long elem_data_size
; /* size of element data in bytes */
994 void *tlv_data
; /* TLV data */
995 unsigned long tlv_data_size
; /* TLV data size */
996 void *priv_data
; /* private data (like strings for enumerated type) */
999 static int snd_ctl_elem_user_info(struct snd_kcontrol
*kcontrol
,
1000 struct snd_ctl_elem_info
*uinfo
)
1002 struct user_element
*ue
= kcontrol
->private_data
;
1008 static int snd_ctl_elem_user_enum_info(struct snd_kcontrol
*kcontrol
,
1009 struct snd_ctl_elem_info
*uinfo
)
1011 struct user_element
*ue
= kcontrol
->private_data
;
1015 item
= uinfo
->value
.enumerated
.item
;
1019 item
= min(item
, uinfo
->value
.enumerated
.items
- 1);
1020 uinfo
->value
.enumerated
.item
= item
;
1022 names
= ue
->priv_data
;
1023 for (; item
> 0; --item
)
1024 names
+= strlen(names
) + 1;
1025 strcpy(uinfo
->value
.enumerated
.name
, names
);
1030 static int snd_ctl_elem_user_get(struct snd_kcontrol
*kcontrol
,
1031 struct snd_ctl_elem_value
*ucontrol
)
1033 struct user_element
*ue
= kcontrol
->private_data
;
1035 memcpy(&ucontrol
->value
, ue
->elem_data
, ue
->elem_data_size
);
1039 static int snd_ctl_elem_user_put(struct snd_kcontrol
*kcontrol
,
1040 struct snd_ctl_elem_value
*ucontrol
)
1043 struct user_element
*ue
= kcontrol
->private_data
;
1045 change
= memcmp(&ucontrol
->value
, ue
->elem_data
, ue
->elem_data_size
) != 0;
1047 memcpy(ue
->elem_data
, &ucontrol
->value
, ue
->elem_data_size
);
1051 static int snd_ctl_elem_user_tlv(struct snd_kcontrol
*kcontrol
,
1054 unsigned int __user
*tlv
)
1056 struct user_element
*ue
= kcontrol
->private_data
;
1061 if (size
> 1024 * 128) /* sane value */
1064 new_data
= memdup_user(tlv
, size
);
1065 if (IS_ERR(new_data
))
1066 return PTR_ERR(new_data
);
1067 change
= ue
->tlv_data_size
!= size
;
1069 change
= memcmp(ue
->tlv_data
, new_data
, size
);
1070 kfree(ue
->tlv_data
);
1071 ue
->tlv_data
= new_data
;
1072 ue
->tlv_data_size
= size
;
1074 if (! ue
->tlv_data_size
|| ! ue
->tlv_data
)
1076 if (size
< ue
->tlv_data_size
)
1078 if (copy_to_user(tlv
, ue
->tlv_data
, ue
->tlv_data_size
))
1084 static int snd_ctl_elem_init_enum_names(struct user_element
*ue
)
1087 size_t buf_len
, name_len
;
1089 const uintptr_t user_ptrval
= ue
->info
.value
.enumerated
.names_ptr
;
1091 if (ue
->info
.value
.enumerated
.names_length
> 64 * 1024)
1094 names
= memdup_user((const void __user
*)user_ptrval
,
1095 ue
->info
.value
.enumerated
.names_length
);
1097 return PTR_ERR(names
);
1099 /* check that there are enough valid names */
1100 buf_len
= ue
->info
.value
.enumerated
.names_length
;
1102 for (i
= 0; i
< ue
->info
.value
.enumerated
.items
; ++i
) {
1103 name_len
= strnlen(p
, buf_len
);
1104 if (name_len
== 0 || name_len
>= 64 || name_len
== buf_len
) {
1109 buf_len
-= name_len
+ 1;
1112 ue
->priv_data
= names
;
1113 ue
->info
.value
.enumerated
.names_ptr
= 0;
1118 static void snd_ctl_elem_user_free(struct snd_kcontrol
*kcontrol
)
1120 struct user_element
*ue
= kcontrol
->private_data
;
1122 kfree(ue
->tlv_data
);
1123 kfree(ue
->priv_data
);
1127 static int snd_ctl_elem_add(struct snd_ctl_file
*file
,
1128 struct snd_ctl_elem_info
*info
, int replace
)
1130 struct snd_card
*card
= file
->card
;
1131 struct snd_kcontrol kctl
, *_kctl
;
1132 unsigned int access
;
1134 struct user_element
*ue
;
1137 if (!replace
&& card
->user_ctl_count
>= MAX_USER_CONTROLS
)
1139 if (info
->count
< 1)
1141 access
= info
->access
== 0 ? SNDRV_CTL_ELEM_ACCESS_READWRITE
:
1142 (info
->access
& (SNDRV_CTL_ELEM_ACCESS_READWRITE
|
1143 SNDRV_CTL_ELEM_ACCESS_INACTIVE
|
1144 SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE
));
1146 memset(&kctl
, 0, sizeof(kctl
));
1147 down_write(&card
->controls_rwsem
);
1148 _kctl
= snd_ctl_find_id(card
, &info
->id
);
1152 err
= snd_ctl_remove(card
, _kctl
);
1159 up_write(&card
->controls_rwsem
);
1162 memcpy(&kctl
.id
, &info
->id
, sizeof(info
->id
));
1163 kctl
.count
= info
->owner
? info
->owner
: 1;
1164 access
|= SNDRV_CTL_ELEM_ACCESS_USER
;
1165 if (info
->type
== SNDRV_CTL_ELEM_TYPE_ENUMERATED
)
1166 kctl
.info
= snd_ctl_elem_user_enum_info
;
1168 kctl
.info
= snd_ctl_elem_user_info
;
1169 if (access
& SNDRV_CTL_ELEM_ACCESS_READ
)
1170 kctl
.get
= snd_ctl_elem_user_get
;
1171 if (access
& SNDRV_CTL_ELEM_ACCESS_WRITE
)
1172 kctl
.put
= snd_ctl_elem_user_put
;
1173 if (access
& SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE
) {
1174 kctl
.tlv
.c
= snd_ctl_elem_user_tlv
;
1175 access
|= SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
;
1177 switch (info
->type
) {
1178 case SNDRV_CTL_ELEM_TYPE_BOOLEAN
:
1179 case SNDRV_CTL_ELEM_TYPE_INTEGER
:
1180 private_size
= sizeof(long);
1181 if (info
->count
> 128)
1184 case SNDRV_CTL_ELEM_TYPE_INTEGER64
:
1185 private_size
= sizeof(long long);
1186 if (info
->count
> 64)
1189 case SNDRV_CTL_ELEM_TYPE_ENUMERATED
:
1190 private_size
= sizeof(unsigned int);
1191 if (info
->count
> 128 || info
->value
.enumerated
.items
== 0)
1194 case SNDRV_CTL_ELEM_TYPE_BYTES
:
1195 private_size
= sizeof(unsigned char);
1196 if (info
->count
> 512)
1199 case SNDRV_CTL_ELEM_TYPE_IEC958
:
1200 private_size
= sizeof(struct snd_aes_iec958
);
1201 if (info
->count
!= 1)
1207 private_size
*= info
->count
;
1208 ue
= kzalloc(sizeof(struct user_element
) + private_size
, GFP_KERNEL
);
1212 ue
->info
.access
= 0;
1213 ue
->elem_data
= (char *)ue
+ sizeof(*ue
);
1214 ue
->elem_data_size
= private_size
;
1215 if (ue
->info
.type
== SNDRV_CTL_ELEM_TYPE_ENUMERATED
) {
1216 err
= snd_ctl_elem_init_enum_names(ue
);
1222 kctl
.private_free
= snd_ctl_elem_user_free
;
1223 _kctl
= snd_ctl_new(&kctl
, access
);
1224 if (_kctl
== NULL
) {
1225 kfree(ue
->priv_data
);
1229 _kctl
->private_data
= ue
;
1230 for (idx
= 0; idx
< _kctl
->count
; idx
++)
1231 _kctl
->vd
[idx
].owner
= file
;
1232 err
= snd_ctl_add(card
, _kctl
);
1236 down_write(&card
->controls_rwsem
);
1237 card
->user_ctl_count
++;
1238 up_write(&card
->controls_rwsem
);
1243 static int snd_ctl_elem_add_user(struct snd_ctl_file
*file
,
1244 struct snd_ctl_elem_info __user
*_info
, int replace
)
1246 struct snd_ctl_elem_info info
;
1247 if (copy_from_user(&info
, _info
, sizeof(info
)))
1249 return snd_ctl_elem_add(file
, &info
, replace
);
1252 static int snd_ctl_elem_remove(struct snd_ctl_file
*file
,
1253 struct snd_ctl_elem_id __user
*_id
)
1255 struct snd_ctl_elem_id id
;
1257 if (copy_from_user(&id
, _id
, sizeof(id
)))
1259 return snd_ctl_remove_user_ctl(file
, &id
);
1262 static int snd_ctl_subscribe_events(struct snd_ctl_file
*file
, int __user
*ptr
)
1265 if (get_user(subscribe
, ptr
))
1267 if (subscribe
< 0) {
1268 subscribe
= file
->subscribed
;
1269 if (put_user(subscribe
, ptr
))
1274 file
->subscribed
= 1;
1276 } else if (file
->subscribed
) {
1277 snd_ctl_empty_read_queue(file
);
1278 file
->subscribed
= 0;
1283 static int snd_ctl_tlv_ioctl(struct snd_ctl_file
*file
,
1284 struct snd_ctl_tlv __user
*_tlv
,
1287 struct snd_card
*card
= file
->card
;
1288 struct snd_ctl_tlv tlv
;
1289 struct snd_kcontrol
*kctl
;
1290 struct snd_kcontrol_volatile
*vd
;
1294 if (copy_from_user(&tlv
, _tlv
, sizeof(tlv
)))
1296 if (tlv
.length
< sizeof(unsigned int) * 2)
1298 down_read(&card
->controls_rwsem
);
1299 kctl
= snd_ctl_find_numid(card
, tlv
.numid
);
1304 if (kctl
->tlv
.p
== NULL
) {
1308 vd
= &kctl
->vd
[tlv
.numid
- kctl
->id
.numid
];
1309 if ((op_flag
== 0 && (vd
->access
& SNDRV_CTL_ELEM_ACCESS_TLV_READ
) == 0) ||
1310 (op_flag
> 0 && (vd
->access
& SNDRV_CTL_ELEM_ACCESS_TLV_WRITE
) == 0) ||
1311 (op_flag
< 0 && (vd
->access
& SNDRV_CTL_ELEM_ACCESS_TLV_COMMAND
) == 0)) {
1315 if (vd
->access
& SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
) {
1316 if (vd
->owner
!= NULL
&& vd
->owner
!= file
) {
1320 err
= kctl
->tlv
.c(kctl
, op_flag
, tlv
.length
, _tlv
->tlv
);
1322 up_read(&card
->controls_rwsem
);
1323 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_TLV
, &kctl
->id
);
1331 len
= kctl
->tlv
.p
[1] + 2 * sizeof(unsigned int);
1332 if (tlv
.length
< len
) {
1336 if (copy_to_user(_tlv
->tlv
, kctl
->tlv
.p
, len
))
1340 up_read(&card
->controls_rwsem
);
1344 static long snd_ctl_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1346 struct snd_ctl_file
*ctl
;
1347 struct snd_card
*card
;
1348 struct snd_kctl_ioctl
*p
;
1349 void __user
*argp
= (void __user
*)arg
;
1350 int __user
*ip
= argp
;
1353 ctl
= file
->private_data
;
1355 if (snd_BUG_ON(!card
))
1358 case SNDRV_CTL_IOCTL_PVERSION
:
1359 return put_user(SNDRV_CTL_VERSION
, ip
) ? -EFAULT
: 0;
1360 case SNDRV_CTL_IOCTL_CARD_INFO
:
1361 return snd_ctl_card_info(card
, ctl
, cmd
, argp
);
1362 case SNDRV_CTL_IOCTL_ELEM_LIST
:
1363 return snd_ctl_elem_list(card
, argp
);
1364 case SNDRV_CTL_IOCTL_ELEM_INFO
:
1365 return snd_ctl_elem_info_user(ctl
, argp
);
1366 case SNDRV_CTL_IOCTL_ELEM_READ
:
1367 return snd_ctl_elem_read_user(card
, argp
);
1368 case SNDRV_CTL_IOCTL_ELEM_WRITE
:
1369 return snd_ctl_elem_write_user(ctl
, argp
);
1370 case SNDRV_CTL_IOCTL_ELEM_LOCK
:
1371 return snd_ctl_elem_lock(ctl
, argp
);
1372 case SNDRV_CTL_IOCTL_ELEM_UNLOCK
:
1373 return snd_ctl_elem_unlock(ctl
, argp
);
1374 case SNDRV_CTL_IOCTL_ELEM_ADD
:
1375 return snd_ctl_elem_add_user(ctl
, argp
, 0);
1376 case SNDRV_CTL_IOCTL_ELEM_REPLACE
:
1377 return snd_ctl_elem_add_user(ctl
, argp
, 1);
1378 case SNDRV_CTL_IOCTL_ELEM_REMOVE
:
1379 return snd_ctl_elem_remove(ctl
, argp
);
1380 case SNDRV_CTL_IOCTL_SUBSCRIBE_EVENTS
:
1381 return snd_ctl_subscribe_events(ctl
, ip
);
1382 case SNDRV_CTL_IOCTL_TLV_READ
:
1383 return snd_ctl_tlv_ioctl(ctl
, argp
, 0);
1384 case SNDRV_CTL_IOCTL_TLV_WRITE
:
1385 return snd_ctl_tlv_ioctl(ctl
, argp
, 1);
1386 case SNDRV_CTL_IOCTL_TLV_COMMAND
:
1387 return snd_ctl_tlv_ioctl(ctl
, argp
, -1);
1388 case SNDRV_CTL_IOCTL_POWER
:
1389 return -ENOPROTOOPT
;
1390 case SNDRV_CTL_IOCTL_POWER_STATE
:
1392 return put_user(card
->power_state
, ip
) ? -EFAULT
: 0;
1394 return put_user(SNDRV_CTL_POWER_D0
, ip
) ? -EFAULT
: 0;
1397 down_read(&snd_ioctl_rwsem
);
1398 list_for_each_entry(p
, &snd_control_ioctls
, list
) {
1399 err
= p
->fioctl(card
, ctl
, cmd
, arg
);
1400 if (err
!= -ENOIOCTLCMD
) {
1401 up_read(&snd_ioctl_rwsem
);
1405 up_read(&snd_ioctl_rwsem
);
1406 snd_printdd("unknown ioctl = 0x%x\n", cmd
);
1410 static ssize_t
snd_ctl_read(struct file
*file
, char __user
*buffer
,
1411 size_t count
, loff_t
* offset
)
1413 struct snd_ctl_file
*ctl
;
1417 ctl
= file
->private_data
;
1418 if (snd_BUG_ON(!ctl
|| !ctl
->card
))
1420 if (!ctl
->subscribed
)
1422 if (count
< sizeof(struct snd_ctl_event
))
1424 spin_lock_irq(&ctl
->read_lock
);
1425 while (count
>= sizeof(struct snd_ctl_event
)) {
1426 struct snd_ctl_event ev
;
1427 struct snd_kctl_event
*kev
;
1428 while (list_empty(&ctl
->events
)) {
1430 if ((file
->f_flags
& O_NONBLOCK
) != 0 || result
> 0) {
1434 init_waitqueue_entry(&wait
, current
);
1435 add_wait_queue(&ctl
->change_sleep
, &wait
);
1436 set_current_state(TASK_INTERRUPTIBLE
);
1437 spin_unlock_irq(&ctl
->read_lock
);
1439 remove_wait_queue(&ctl
->change_sleep
, &wait
);
1440 if (ctl
->card
->shutdown
)
1442 if (signal_pending(current
))
1443 return -ERESTARTSYS
;
1444 spin_lock_irq(&ctl
->read_lock
);
1446 kev
= snd_kctl_event(ctl
->events
.next
);
1447 ev
.type
= SNDRV_CTL_EVENT_ELEM
;
1448 ev
.data
.elem
.mask
= kev
->mask
;
1449 ev
.data
.elem
.id
= kev
->id
;
1450 list_del(&kev
->list
);
1451 spin_unlock_irq(&ctl
->read_lock
);
1453 if (copy_to_user(buffer
, &ev
, sizeof(struct snd_ctl_event
))) {
1457 spin_lock_irq(&ctl
->read_lock
);
1458 buffer
+= sizeof(struct snd_ctl_event
);
1459 count
-= sizeof(struct snd_ctl_event
);
1460 result
+= sizeof(struct snd_ctl_event
);
1463 spin_unlock_irq(&ctl
->read_lock
);
1465 return result
> 0 ? result
: err
;
1468 static unsigned int snd_ctl_poll(struct file
*file
, poll_table
* wait
)
1471 struct snd_ctl_file
*ctl
;
1473 ctl
= file
->private_data
;
1474 if (!ctl
->subscribed
)
1476 poll_wait(file
, &ctl
->change_sleep
, wait
);
1479 if (!list_empty(&ctl
->events
))
1480 mask
|= POLLIN
| POLLRDNORM
;
1486 * register the device-specific control-ioctls.
1487 * called from each device manager like pcm.c, hwdep.c, etc.
1489 static int _snd_ctl_register_ioctl(snd_kctl_ioctl_func_t fcn
, struct list_head
*lists
)
1491 struct snd_kctl_ioctl
*pn
;
1493 pn
= kzalloc(sizeof(struct snd_kctl_ioctl
), GFP_KERNEL
);
1497 down_write(&snd_ioctl_rwsem
);
1498 list_add_tail(&pn
->list
, lists
);
1499 up_write(&snd_ioctl_rwsem
);
1503 int snd_ctl_register_ioctl(snd_kctl_ioctl_func_t fcn
)
1505 return _snd_ctl_register_ioctl(fcn
, &snd_control_ioctls
);
1508 EXPORT_SYMBOL(snd_ctl_register_ioctl
);
1510 #ifdef CONFIG_COMPAT
1511 int snd_ctl_register_ioctl_compat(snd_kctl_ioctl_func_t fcn
)
1513 return _snd_ctl_register_ioctl(fcn
, &snd_control_compat_ioctls
);
1516 EXPORT_SYMBOL(snd_ctl_register_ioctl_compat
);
1520 * de-register the device-specific control-ioctls.
1522 static int _snd_ctl_unregister_ioctl(snd_kctl_ioctl_func_t fcn
,
1523 struct list_head
*lists
)
1525 struct snd_kctl_ioctl
*p
;
1527 if (snd_BUG_ON(!fcn
))
1529 down_write(&snd_ioctl_rwsem
);
1530 list_for_each_entry(p
, lists
, list
) {
1531 if (p
->fioctl
== fcn
) {
1533 up_write(&snd_ioctl_rwsem
);
1538 up_write(&snd_ioctl_rwsem
);
1543 int snd_ctl_unregister_ioctl(snd_kctl_ioctl_func_t fcn
)
1545 return _snd_ctl_unregister_ioctl(fcn
, &snd_control_ioctls
);
1548 EXPORT_SYMBOL(snd_ctl_unregister_ioctl
);
1550 #ifdef CONFIG_COMPAT
1551 int snd_ctl_unregister_ioctl_compat(snd_kctl_ioctl_func_t fcn
)
1553 return _snd_ctl_unregister_ioctl(fcn
, &snd_control_compat_ioctls
);
1556 EXPORT_SYMBOL(snd_ctl_unregister_ioctl_compat
);
1559 static int snd_ctl_fasync(int fd
, struct file
* file
, int on
)
1561 struct snd_ctl_file
*ctl
;
1563 ctl
= file
->private_data
;
1564 return fasync_helper(fd
, file
, on
, &ctl
->fasync
);
1570 #ifdef CONFIG_COMPAT
1571 #include "control_compat.c"
1573 #define snd_ctl_ioctl_compat NULL
1580 static const struct file_operations snd_ctl_f_ops
=
1582 .owner
= THIS_MODULE
,
1583 .read
= snd_ctl_read
,
1584 .open
= snd_ctl_open
,
1585 .release
= snd_ctl_release
,
1586 .llseek
= no_llseek
,
1587 .poll
= snd_ctl_poll
,
1588 .unlocked_ioctl
= snd_ctl_ioctl
,
1589 .compat_ioctl
= snd_ctl_ioctl_compat
,
1590 .fasync
= snd_ctl_fasync
,
1594 * registration of the control device
1596 static int snd_ctl_dev_register(struct snd_device
*device
)
1598 struct snd_card
*card
= device
->device_data
;
1602 if (snd_BUG_ON(!card
))
1604 cardnum
= card
->number
;
1605 if (snd_BUG_ON(cardnum
< 0 || cardnum
>= SNDRV_CARDS
))
1607 sprintf(name
, "controlC%i", cardnum
);
1608 if ((err
= snd_register_device(SNDRV_DEVICE_TYPE_CONTROL
, card
, -1,
1609 &snd_ctl_f_ops
, card
, name
)) < 0)
1615 * disconnection of the control device
1617 static int snd_ctl_dev_disconnect(struct snd_device
*device
)
1619 struct snd_card
*card
= device
->device_data
;
1620 struct snd_ctl_file
*ctl
;
1623 if (snd_BUG_ON(!card
))
1625 cardnum
= card
->number
;
1626 if (snd_BUG_ON(cardnum
< 0 || cardnum
>= SNDRV_CARDS
))
1629 read_lock(&card
->ctl_files_rwlock
);
1630 list_for_each_entry(ctl
, &card
->ctl_files
, list
) {
1631 wake_up(&ctl
->change_sleep
);
1632 kill_fasync(&ctl
->fasync
, SIGIO
, POLL_ERR
);
1634 read_unlock(&card
->ctl_files_rwlock
);
1636 if ((err
= snd_unregister_device(SNDRV_DEVICE_TYPE_CONTROL
,
1645 static int snd_ctl_dev_free(struct snd_device
*device
)
1647 struct snd_card
*card
= device
->device_data
;
1648 struct snd_kcontrol
*control
;
1650 down_write(&card
->controls_rwsem
);
1651 while (!list_empty(&card
->controls
)) {
1652 control
= snd_kcontrol(card
->controls
.next
);
1653 snd_ctl_remove(card
, control
);
1655 up_write(&card
->controls_rwsem
);
1660 * create control core:
1661 * called from init.c
1663 int snd_ctl_create(struct snd_card
*card
)
1665 static struct snd_device_ops ops
= {
1666 .dev_free
= snd_ctl_dev_free
,
1667 .dev_register
= snd_ctl_dev_register
,
1668 .dev_disconnect
= snd_ctl_dev_disconnect
,
1671 if (snd_BUG_ON(!card
))
1673 return snd_device_new(card
, SNDRV_DEV_CONTROL
, card
, &ops
);
1677 * Frequently used control callbacks/helpers
1679 int snd_ctl_boolean_mono_info(struct snd_kcontrol
*kcontrol
,
1680 struct snd_ctl_elem_info
*uinfo
)
1682 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1684 uinfo
->value
.integer
.min
= 0;
1685 uinfo
->value
.integer
.max
= 1;
1689 EXPORT_SYMBOL(snd_ctl_boolean_mono_info
);
1691 int snd_ctl_boolean_stereo_info(struct snd_kcontrol
*kcontrol
,
1692 struct snd_ctl_elem_info
*uinfo
)
1694 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1696 uinfo
->value
.integer
.min
= 0;
1697 uinfo
->value
.integer
.max
= 1;
1701 EXPORT_SYMBOL(snd_ctl_boolean_stereo_info
);
1704 * snd_ctl_enum_info - fills the info structure for an enumerated control
1705 * @info: the structure to be filled
1706 * @channels: the number of the control's channels; often one
1707 * @items: the number of control values; also the size of @names
1708 * @names: an array containing the names of all control values
1710 * Sets all required fields in @info to their appropriate values.
1711 * If the control's accessibility is not the default (readable and writable),
1712 * the caller has to fill @info->access.
1714 int snd_ctl_enum_info(struct snd_ctl_elem_info
*info
, unsigned int channels
,
1715 unsigned int items
, const char *const names
[])
1717 info
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
1718 info
->count
= channels
;
1719 info
->value
.enumerated
.items
= items
;
1720 if (info
->value
.enumerated
.item
>= items
)
1721 info
->value
.enumerated
.item
= items
- 1;
1722 strlcpy(info
->value
.enumerated
.name
,
1723 names
[info
->value
.enumerated
.item
],
1724 sizeof(info
->value
.enumerated
.name
));
1727 EXPORT_SYMBOL(snd_ctl_enum_info
);