Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux
[linux-2.6.git] / sound / core / init.c
blob6b9087115da24806e8aba244127ac8ec3a4e93f8
1 /*
2 * Initialization routines
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/init.h>
23 #include <linux/sched.h>
24 #include <linux/module.h>
25 #include <linux/device.h>
26 #include <linux/file.h>
27 #include <linux/slab.h>
28 #include <linux/time.h>
29 #include <linux/ctype.h>
30 #include <linux/pm.h>
32 #include <sound/core.h>
33 #include <sound/control.h>
34 #include <sound/info.h>
36 /* monitor files for graceful shutdown (hotplug) */
37 struct snd_monitor_file {
38 struct file *file;
39 const struct file_operations *disconnected_f_op;
40 struct list_head shutdown_list; /* still need to shutdown */
41 struct list_head list; /* link of monitor files */
44 static DEFINE_SPINLOCK(shutdown_lock);
45 static LIST_HEAD(shutdown_files);
47 static const struct file_operations snd_shutdown_f_ops;
49 /* locked for registering/using */
50 static DECLARE_BITMAP(snd_cards_lock, SNDRV_CARDS);
51 struct snd_card *snd_cards[SNDRV_CARDS];
52 EXPORT_SYMBOL(snd_cards);
54 static DEFINE_MUTEX(snd_card_mutex);
56 static char *slots[SNDRV_CARDS];
57 module_param_array(slots, charp, NULL, 0444);
58 MODULE_PARM_DESC(slots, "Module names assigned to the slots.");
60 /* return non-zero if the given index is reserved for the given
61 * module via slots option
63 static int module_slot_match(struct module *module, int idx)
65 int match = 1;
66 #ifdef MODULE
67 const char *s1, *s2;
69 if (!module || !module->name || !slots[idx])
70 return 0;
72 s1 = module->name;
73 s2 = slots[idx];
74 if (*s2 == '!') {
75 match = 0; /* negative match */
76 s2++;
78 /* compare module name strings
79 * hyphens are handled as equivalent with underscore
81 for (;;) {
82 char c1 = *s1++;
83 char c2 = *s2++;
84 if (c1 == '-')
85 c1 = '_';
86 if (c2 == '-')
87 c2 = '_';
88 if (c1 != c2)
89 return !match;
90 if (!c1)
91 break;
93 #endif /* MODULE */
94 return match;
97 #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
98 int (*snd_mixer_oss_notify_callback)(struct snd_card *card, int free_flag);
99 EXPORT_SYMBOL(snd_mixer_oss_notify_callback);
100 #endif
102 #ifdef CONFIG_PROC_FS
103 static void snd_card_id_read(struct snd_info_entry *entry,
104 struct snd_info_buffer *buffer)
106 snd_iprintf(buffer, "%s\n", entry->card->id);
109 static inline int init_info_for_card(struct snd_card *card)
111 int err;
112 struct snd_info_entry *entry;
114 if ((err = snd_info_card_register(card)) < 0) {
115 snd_printd("unable to create card info\n");
116 return err;
118 if ((entry = snd_info_create_card_entry(card, "id", card->proc_root)) == NULL) {
119 snd_printd("unable to create card entry\n");
120 return err;
122 entry->c.text.read = snd_card_id_read;
123 if (snd_info_register(entry) < 0) {
124 snd_info_free_entry(entry);
125 entry = NULL;
127 card->proc_id = entry;
128 return 0;
130 #else /* !CONFIG_PROC_FS */
131 #define init_info_for_card(card)
132 #endif
135 * snd_card_create - create and initialize a soundcard structure
136 * @idx: card index (address) [0 ... (SNDRV_CARDS-1)]
137 * @xid: card identification (ASCII string)
138 * @module: top level module for locking
139 * @extra_size: allocate this extra size after the main soundcard structure
140 * @card_ret: the pointer to store the created card instance
142 * Creates and initializes a soundcard structure.
144 * The function allocates snd_card instance via kzalloc with the given
145 * space for the driver to use freely. The allocated struct is stored
146 * in the given card_ret pointer.
148 * Return: Zero if successful or a negative error code.
150 int snd_card_create(int idx, const char *xid,
151 struct module *module, int extra_size,
152 struct snd_card **card_ret)
154 struct snd_card *card;
155 int err, idx2;
157 if (snd_BUG_ON(!card_ret))
158 return -EINVAL;
159 *card_ret = NULL;
161 if (extra_size < 0)
162 extra_size = 0;
163 card = kzalloc(sizeof(*card) + extra_size, GFP_KERNEL);
164 if (!card)
165 return -ENOMEM;
166 if (xid)
167 strlcpy(card->id, xid, sizeof(card->id));
168 err = 0;
169 mutex_lock(&snd_card_mutex);
170 if (idx < 0) {
171 for (idx2 = 0; idx2 < SNDRV_CARDS; idx2++) {
172 /* idx == -1 == 0xffff means: take any free slot */
173 if (idx2 < sizeof(int) && !(idx & (1U << idx2)))
174 continue;
175 if (!test_bit(idx2, snd_cards_lock)) {
176 if (module_slot_match(module, idx2)) {
177 idx = idx2;
178 break;
183 if (idx < 0) {
184 for (idx2 = 0; idx2 < SNDRV_CARDS; idx2++) {
185 /* idx == -1 == 0xffff means: take any free slot */
186 if (idx2 < sizeof(int) && !(idx & (1U << idx2)))
187 continue;
188 if (!test_bit(idx2, snd_cards_lock)) {
189 if (!slots[idx2] || !*slots[idx2]) {
190 idx = idx2;
191 break;
196 if (idx < 0)
197 err = -ENODEV;
198 else if (idx < snd_ecards_limit) {
199 if (test_bit(idx, snd_cards_lock))
200 err = -EBUSY; /* invalid */
201 } else if (idx >= SNDRV_CARDS)
202 err = -ENODEV;
203 if (err < 0) {
204 mutex_unlock(&snd_card_mutex);
205 snd_printk(KERN_ERR "cannot find the slot for index %d (range 0-%i), error: %d\n",
206 idx, snd_ecards_limit - 1, err);
207 goto __error;
209 set_bit(idx, snd_cards_lock); /* lock it */
210 if (idx >= snd_ecards_limit)
211 snd_ecards_limit = idx + 1; /* increase the limit */
212 mutex_unlock(&snd_card_mutex);
213 card->number = idx;
214 card->module = module;
215 INIT_LIST_HEAD(&card->devices);
216 init_rwsem(&card->controls_rwsem);
217 rwlock_init(&card->ctl_files_rwlock);
218 INIT_LIST_HEAD(&card->controls);
219 INIT_LIST_HEAD(&card->ctl_files);
220 spin_lock_init(&card->files_lock);
221 INIT_LIST_HEAD(&card->files_list);
222 init_waitqueue_head(&card->shutdown_sleep);
223 atomic_set(&card->refcount, 0);
224 #ifdef CONFIG_PM
225 mutex_init(&card->power_lock);
226 init_waitqueue_head(&card->power_sleep);
227 #endif
228 /* the control interface cannot be accessed from the user space until */
229 /* snd_cards_bitmask and snd_cards are set with snd_card_register */
230 err = snd_ctl_create(card);
231 if (err < 0) {
232 snd_printk(KERN_ERR "unable to register control minors\n");
233 goto __error;
235 err = snd_info_card_create(card);
236 if (err < 0) {
237 snd_printk(KERN_ERR "unable to create card info\n");
238 goto __error_ctl;
240 if (extra_size > 0)
241 card->private_data = (char *)card + sizeof(struct snd_card);
242 *card_ret = card;
243 return 0;
245 __error_ctl:
246 snd_device_free_all(card, SNDRV_DEV_CMD_PRE);
247 __error:
248 kfree(card);
249 return err;
251 EXPORT_SYMBOL(snd_card_create);
253 /* return non-zero if a card is already locked */
254 int snd_card_locked(int card)
256 int locked;
258 mutex_lock(&snd_card_mutex);
259 locked = test_bit(card, snd_cards_lock);
260 mutex_unlock(&snd_card_mutex);
261 return locked;
264 static loff_t snd_disconnect_llseek(struct file *file, loff_t offset, int orig)
266 return -ENODEV;
269 static ssize_t snd_disconnect_read(struct file *file, char __user *buf,
270 size_t count, loff_t *offset)
272 return -ENODEV;
275 static ssize_t snd_disconnect_write(struct file *file, const char __user *buf,
276 size_t count, loff_t *offset)
278 return -ENODEV;
281 static int snd_disconnect_release(struct inode *inode, struct file *file)
283 struct snd_monitor_file *df = NULL, *_df;
285 spin_lock(&shutdown_lock);
286 list_for_each_entry(_df, &shutdown_files, shutdown_list) {
287 if (_df->file == file) {
288 df = _df;
289 list_del_init(&df->shutdown_list);
290 break;
293 spin_unlock(&shutdown_lock);
295 if (likely(df)) {
296 if ((file->f_flags & FASYNC) && df->disconnected_f_op->fasync)
297 df->disconnected_f_op->fasync(-1, file, 0);
298 return df->disconnected_f_op->release(inode, file);
301 panic("%s(%p, %p) failed!", __func__, inode, file);
304 static unsigned int snd_disconnect_poll(struct file * file, poll_table * wait)
306 return POLLERR | POLLNVAL;
309 static long snd_disconnect_ioctl(struct file *file,
310 unsigned int cmd, unsigned long arg)
312 return -ENODEV;
315 static int snd_disconnect_mmap(struct file *file, struct vm_area_struct *vma)
317 return -ENODEV;
320 static int snd_disconnect_fasync(int fd, struct file *file, int on)
322 return -ENODEV;
325 static const struct file_operations snd_shutdown_f_ops =
327 .owner = THIS_MODULE,
328 .llseek = snd_disconnect_llseek,
329 .read = snd_disconnect_read,
330 .write = snd_disconnect_write,
331 .release = snd_disconnect_release,
332 .poll = snd_disconnect_poll,
333 .unlocked_ioctl = snd_disconnect_ioctl,
334 #ifdef CONFIG_COMPAT
335 .compat_ioctl = snd_disconnect_ioctl,
336 #endif
337 .mmap = snd_disconnect_mmap,
338 .fasync = snd_disconnect_fasync
342 * snd_card_disconnect - disconnect all APIs from the file-operations (user space)
343 * @card: soundcard structure
345 * Disconnects all APIs from the file-operations (user space).
347 * Return: Zero, otherwise a negative error code.
349 * Note: The current implementation replaces all active file->f_op with special
350 * dummy file operations (they do nothing except release).
352 int snd_card_disconnect(struct snd_card *card)
354 struct snd_monitor_file *mfile;
355 int err;
357 if (!card)
358 return -EINVAL;
360 spin_lock(&card->files_lock);
361 if (card->shutdown) {
362 spin_unlock(&card->files_lock);
363 return 0;
365 card->shutdown = 1;
366 spin_unlock(&card->files_lock);
368 /* phase 1: disable fops (user space) operations for ALSA API */
369 mutex_lock(&snd_card_mutex);
370 snd_cards[card->number] = NULL;
371 clear_bit(card->number, snd_cards_lock);
372 mutex_unlock(&snd_card_mutex);
374 /* phase 2: replace file->f_op with special dummy operations */
376 spin_lock(&card->files_lock);
377 list_for_each_entry(mfile, &card->files_list, list) {
378 /* it's critical part, use endless loop */
379 /* we have no room to fail */
380 mfile->disconnected_f_op = mfile->file->f_op;
382 spin_lock(&shutdown_lock);
383 list_add(&mfile->shutdown_list, &shutdown_files);
384 spin_unlock(&shutdown_lock);
386 mfile->file->f_op = &snd_shutdown_f_ops;
387 fops_get(mfile->file->f_op);
389 spin_unlock(&card->files_lock);
391 /* phase 3: notify all connected devices about disconnection */
392 /* at this point, they cannot respond to any calls except release() */
394 #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
395 if (snd_mixer_oss_notify_callback)
396 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_DISCONNECT);
397 #endif
399 /* notify all devices that we are disconnected */
400 err = snd_device_disconnect_all(card);
401 if (err < 0)
402 snd_printk(KERN_ERR "not all devices for card %i can be disconnected\n", card->number);
404 snd_info_card_disconnect(card);
405 if (card->card_dev) {
406 device_unregister(card->card_dev);
407 card->card_dev = NULL;
409 #ifdef CONFIG_PM
410 wake_up(&card->power_sleep);
411 #endif
412 return 0;
415 EXPORT_SYMBOL(snd_card_disconnect);
418 * snd_card_free - frees given soundcard structure
419 * @card: soundcard structure
421 * This function releases the soundcard structure and the all assigned
422 * devices automatically. That is, you don't have to release the devices
423 * by yourself.
425 * Return: Zero. Frees all associated devices and frees the control
426 * interface associated to given soundcard.
428 static int snd_card_do_free(struct snd_card *card)
430 #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
431 if (snd_mixer_oss_notify_callback)
432 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_FREE);
433 #endif
434 if (snd_device_free_all(card, SNDRV_DEV_CMD_PRE) < 0) {
435 snd_printk(KERN_ERR "unable to free all devices (pre)\n");
436 /* Fatal, but this situation should never occur */
438 if (snd_device_free_all(card, SNDRV_DEV_CMD_NORMAL) < 0) {
439 snd_printk(KERN_ERR "unable to free all devices (normal)\n");
440 /* Fatal, but this situation should never occur */
442 if (snd_device_free_all(card, SNDRV_DEV_CMD_POST) < 0) {
443 snd_printk(KERN_ERR "unable to free all devices (post)\n");
444 /* Fatal, but this situation should never occur */
446 if (card->private_free)
447 card->private_free(card);
448 snd_info_free_entry(card->proc_id);
449 if (snd_info_card_free(card) < 0) {
450 snd_printk(KERN_WARNING "unable to free card info\n");
451 /* Not fatal error */
453 kfree(card);
454 return 0;
458 * snd_card_unref - release the reference counter
459 * @card: the card instance
461 * Decrements the reference counter. When it reaches to zero, wake up
462 * the sleeper and call the destructor if needed.
464 void snd_card_unref(struct snd_card *card)
466 if (atomic_dec_and_test(&card->refcount)) {
467 wake_up(&card->shutdown_sleep);
468 if (card->free_on_last_close)
469 snd_card_do_free(card);
472 EXPORT_SYMBOL(snd_card_unref);
474 int snd_card_free_when_closed(struct snd_card *card)
476 int ret;
478 atomic_inc(&card->refcount);
479 ret = snd_card_disconnect(card);
480 if (ret) {
481 atomic_dec(&card->refcount);
482 return ret;
485 card->free_on_last_close = 1;
486 if (atomic_dec_and_test(&card->refcount))
487 snd_card_do_free(card);
488 return 0;
491 EXPORT_SYMBOL(snd_card_free_when_closed);
493 int snd_card_free(struct snd_card *card)
495 int ret = snd_card_disconnect(card);
496 if (ret)
497 return ret;
499 /* wait, until all devices are ready for the free operation */
500 wait_event(card->shutdown_sleep, !atomic_read(&card->refcount));
501 snd_card_do_free(card);
502 return 0;
505 EXPORT_SYMBOL(snd_card_free);
507 /* retrieve the last word of shortname or longname */
508 static const char *retrieve_id_from_card_name(const char *name)
510 const char *spos = name;
512 while (*name) {
513 if (isspace(*name) && isalnum(name[1]))
514 spos = name + 1;
515 name++;
517 return spos;
520 /* return true if the given id string doesn't conflict any other card ids */
521 static bool card_id_ok(struct snd_card *card, const char *id)
523 int i;
524 if (!snd_info_check_reserved_words(id))
525 return false;
526 for (i = 0; i < snd_ecards_limit; i++) {
527 if (snd_cards[i] && snd_cards[i] != card &&
528 !strcmp(snd_cards[i]->id, id))
529 return false;
531 return true;
534 /* copy to card->id only with valid letters from nid */
535 static void copy_valid_id_string(struct snd_card *card, const char *src,
536 const char *nid)
538 char *id = card->id;
540 while (*nid && !isalnum(*nid))
541 nid++;
542 if (isdigit(*nid))
543 *id++ = isalpha(*src) ? *src : 'D';
544 while (*nid && (size_t)(id - card->id) < sizeof(card->id) - 1) {
545 if (isalnum(*nid))
546 *id++ = *nid;
547 nid++;
549 *id = 0;
552 /* Set card->id from the given string
553 * If the string conflicts with other ids, add a suffix to make it unique.
555 static void snd_card_set_id_no_lock(struct snd_card *card, const char *src,
556 const char *nid)
558 int len, loops;
559 bool is_default = false;
560 char *id;
562 copy_valid_id_string(card, src, nid);
563 id = card->id;
565 again:
566 /* use "Default" for obviously invalid strings
567 * ("card" conflicts with proc directories)
569 if (!*id || !strncmp(id, "card", 4)) {
570 strcpy(id, "Default");
571 is_default = true;
574 len = strlen(id);
575 for (loops = 0; loops < SNDRV_CARDS; loops++) {
576 char *spos;
577 char sfxstr[5]; /* "_012" */
578 int sfxlen;
580 if (card_id_ok(card, id))
581 return; /* OK */
583 /* Add _XYZ suffix */
584 sprintf(sfxstr, "_%X", loops + 1);
585 sfxlen = strlen(sfxstr);
586 if (len + sfxlen >= sizeof(card->id))
587 spos = id + sizeof(card->id) - sfxlen - 1;
588 else
589 spos = id + len;
590 strcpy(spos, sfxstr);
592 /* fallback to the default id */
593 if (!is_default) {
594 *id = 0;
595 goto again;
597 /* last resort... */
598 snd_printk(KERN_ERR "unable to set card id (%s)\n", id);
599 if (card->proc_root->name)
600 strcpy(card->id, card->proc_root->name);
604 * snd_card_set_id - set card identification name
605 * @card: soundcard structure
606 * @nid: new identification string
608 * This function sets the card identification and checks for name
609 * collisions.
611 void snd_card_set_id(struct snd_card *card, const char *nid)
613 /* check if user specified own card->id */
614 if (card->id[0] != '\0')
615 return;
616 mutex_lock(&snd_card_mutex);
617 snd_card_set_id_no_lock(card, nid, nid);
618 mutex_unlock(&snd_card_mutex);
620 EXPORT_SYMBOL(snd_card_set_id);
622 static ssize_t
623 card_id_show_attr(struct device *dev,
624 struct device_attribute *attr, char *buf)
626 struct snd_card *card = dev_get_drvdata(dev);
627 return snprintf(buf, PAGE_SIZE, "%s\n", card ? card->id : "(null)");
630 static ssize_t
631 card_id_store_attr(struct device *dev, struct device_attribute *attr,
632 const char *buf, size_t count)
634 struct snd_card *card = dev_get_drvdata(dev);
635 char buf1[sizeof(card->id)];
636 size_t copy = count > sizeof(card->id) - 1 ?
637 sizeof(card->id) - 1 : count;
638 size_t idx;
639 int c;
641 for (idx = 0; idx < copy; idx++) {
642 c = buf[idx];
643 if (!isalnum(c) && c != '_' && c != '-')
644 return -EINVAL;
646 memcpy(buf1, buf, copy);
647 buf1[copy] = '\0';
648 mutex_lock(&snd_card_mutex);
649 if (!card_id_ok(NULL, buf1)) {
650 mutex_unlock(&snd_card_mutex);
651 return -EEXIST;
653 strcpy(card->id, buf1);
654 snd_info_card_id_change(card);
655 mutex_unlock(&snd_card_mutex);
657 return count;
660 static struct device_attribute card_id_attrs =
661 __ATTR(id, S_IRUGO | S_IWUSR, card_id_show_attr, card_id_store_attr);
663 static ssize_t
664 card_number_show_attr(struct device *dev,
665 struct device_attribute *attr, char *buf)
667 struct snd_card *card = dev_get_drvdata(dev);
668 return snprintf(buf, PAGE_SIZE, "%i\n", card ? card->number : -1);
671 static struct device_attribute card_number_attrs =
672 __ATTR(number, S_IRUGO, card_number_show_attr, NULL);
675 * snd_card_register - register the soundcard
676 * @card: soundcard structure
678 * This function registers all the devices assigned to the soundcard.
679 * Until calling this, the ALSA control interface is blocked from the
680 * external accesses. Thus, you should call this function at the end
681 * of the initialization of the card.
683 * Return: Zero otherwise a negative error code if the registration failed.
685 int snd_card_register(struct snd_card *card)
687 int err;
689 if (snd_BUG_ON(!card))
690 return -EINVAL;
692 if (!card->card_dev) {
693 card->card_dev = device_create(sound_class, card->dev,
694 MKDEV(0, 0), card,
695 "card%i", card->number);
696 if (IS_ERR(card->card_dev))
697 card->card_dev = NULL;
700 if ((err = snd_device_register_all(card)) < 0)
701 return err;
702 mutex_lock(&snd_card_mutex);
703 if (snd_cards[card->number]) {
704 /* already registered */
705 mutex_unlock(&snd_card_mutex);
706 return 0;
708 if (*card->id) {
709 /* make a unique id name from the given string */
710 char tmpid[sizeof(card->id)];
711 memcpy(tmpid, card->id, sizeof(card->id));
712 snd_card_set_id_no_lock(card, tmpid, tmpid);
713 } else {
714 /* create an id from either shortname or longname */
715 const char *src;
716 src = *card->shortname ? card->shortname : card->longname;
717 snd_card_set_id_no_lock(card, src,
718 retrieve_id_from_card_name(src));
720 snd_cards[card->number] = card;
721 mutex_unlock(&snd_card_mutex);
722 init_info_for_card(card);
723 #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
724 if (snd_mixer_oss_notify_callback)
725 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_REGISTER);
726 #endif
727 if (card->card_dev) {
728 err = device_create_file(card->card_dev, &card_id_attrs);
729 if (err < 0)
730 return err;
731 err = device_create_file(card->card_dev, &card_number_attrs);
732 if (err < 0)
733 return err;
736 return 0;
739 EXPORT_SYMBOL(snd_card_register);
741 #ifdef CONFIG_PROC_FS
742 static struct snd_info_entry *snd_card_info_entry;
744 static void snd_card_info_read(struct snd_info_entry *entry,
745 struct snd_info_buffer *buffer)
747 int idx, count;
748 struct snd_card *card;
750 for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
751 mutex_lock(&snd_card_mutex);
752 if ((card = snd_cards[idx]) != NULL) {
753 count++;
754 snd_iprintf(buffer, "%2i [%-15s]: %s - %s\n",
755 idx,
756 card->id,
757 card->driver,
758 card->shortname);
759 snd_iprintf(buffer, " %s\n",
760 card->longname);
762 mutex_unlock(&snd_card_mutex);
764 if (!count)
765 snd_iprintf(buffer, "--- no soundcards ---\n");
768 #ifdef CONFIG_SND_OSSEMUL
770 void snd_card_info_read_oss(struct snd_info_buffer *buffer)
772 int idx, count;
773 struct snd_card *card;
775 for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
776 mutex_lock(&snd_card_mutex);
777 if ((card = snd_cards[idx]) != NULL) {
778 count++;
779 snd_iprintf(buffer, "%s\n", card->longname);
781 mutex_unlock(&snd_card_mutex);
783 if (!count) {
784 snd_iprintf(buffer, "--- no soundcards ---\n");
788 #endif
790 #ifdef MODULE
791 static struct snd_info_entry *snd_card_module_info_entry;
792 static void snd_card_module_info_read(struct snd_info_entry *entry,
793 struct snd_info_buffer *buffer)
795 int idx;
796 struct snd_card *card;
798 for (idx = 0; idx < SNDRV_CARDS; idx++) {
799 mutex_lock(&snd_card_mutex);
800 if ((card = snd_cards[idx]) != NULL)
801 snd_iprintf(buffer, "%2i %s\n",
802 idx, card->module->name);
803 mutex_unlock(&snd_card_mutex);
806 #endif
808 int __init snd_card_info_init(void)
810 struct snd_info_entry *entry;
812 entry = snd_info_create_module_entry(THIS_MODULE, "cards", NULL);
813 if (! entry)
814 return -ENOMEM;
815 entry->c.text.read = snd_card_info_read;
816 if (snd_info_register(entry) < 0) {
817 snd_info_free_entry(entry);
818 return -ENOMEM;
820 snd_card_info_entry = entry;
822 #ifdef MODULE
823 entry = snd_info_create_module_entry(THIS_MODULE, "modules", NULL);
824 if (entry) {
825 entry->c.text.read = snd_card_module_info_read;
826 if (snd_info_register(entry) < 0)
827 snd_info_free_entry(entry);
828 else
829 snd_card_module_info_entry = entry;
831 #endif
833 return 0;
836 int __exit snd_card_info_done(void)
838 snd_info_free_entry(snd_card_info_entry);
839 #ifdef MODULE
840 snd_info_free_entry(snd_card_module_info_entry);
841 #endif
842 return 0;
845 #endif /* CONFIG_PROC_FS */
848 * snd_component_add - add a component string
849 * @card: soundcard structure
850 * @component: the component id string
852 * This function adds the component id string to the supported list.
853 * The component can be referred from the alsa-lib.
855 * Return: Zero otherwise a negative error code.
858 int snd_component_add(struct snd_card *card, const char *component)
860 char *ptr;
861 int len = strlen(component);
863 ptr = strstr(card->components, component);
864 if (ptr != NULL) {
865 if (ptr[len] == '\0' || ptr[len] == ' ') /* already there */
866 return 1;
868 if (strlen(card->components) + 1 + len + 1 > sizeof(card->components)) {
869 snd_BUG();
870 return -ENOMEM;
872 if (card->components[0] != '\0')
873 strcat(card->components, " ");
874 strcat(card->components, component);
875 return 0;
878 EXPORT_SYMBOL(snd_component_add);
881 * snd_card_file_add - add the file to the file list of the card
882 * @card: soundcard structure
883 * @file: file pointer
885 * This function adds the file to the file linked-list of the card.
886 * This linked-list is used to keep tracking the connection state,
887 * and to avoid the release of busy resources by hotplug.
889 * Return: zero or a negative error code.
891 int snd_card_file_add(struct snd_card *card, struct file *file)
893 struct snd_monitor_file *mfile;
895 mfile = kmalloc(sizeof(*mfile), GFP_KERNEL);
896 if (mfile == NULL)
897 return -ENOMEM;
898 mfile->file = file;
899 mfile->disconnected_f_op = NULL;
900 INIT_LIST_HEAD(&mfile->shutdown_list);
901 spin_lock(&card->files_lock);
902 if (card->shutdown) {
903 spin_unlock(&card->files_lock);
904 kfree(mfile);
905 return -ENODEV;
907 list_add(&mfile->list, &card->files_list);
908 atomic_inc(&card->refcount);
909 spin_unlock(&card->files_lock);
910 return 0;
913 EXPORT_SYMBOL(snd_card_file_add);
916 * snd_card_file_remove - remove the file from the file list
917 * @card: soundcard structure
918 * @file: file pointer
920 * This function removes the file formerly added to the card via
921 * snd_card_file_add() function.
922 * If all files are removed and snd_card_free_when_closed() was
923 * called beforehand, it processes the pending release of
924 * resources.
926 * Return: Zero or a negative error code.
928 int snd_card_file_remove(struct snd_card *card, struct file *file)
930 struct snd_monitor_file *mfile, *found = NULL;
932 spin_lock(&card->files_lock);
933 list_for_each_entry(mfile, &card->files_list, list) {
934 if (mfile->file == file) {
935 list_del(&mfile->list);
936 spin_lock(&shutdown_lock);
937 list_del(&mfile->shutdown_list);
938 spin_unlock(&shutdown_lock);
939 if (mfile->disconnected_f_op)
940 fops_put(mfile->disconnected_f_op);
941 found = mfile;
942 break;
945 spin_unlock(&card->files_lock);
946 if (!found) {
947 snd_printk(KERN_ERR "ALSA card file remove problem (%p)\n", file);
948 return -ENOENT;
950 kfree(found);
951 snd_card_unref(card);
952 return 0;
955 EXPORT_SYMBOL(snd_card_file_remove);
957 #ifdef CONFIG_PM
959 * snd_power_wait - wait until the power-state is changed.
960 * @card: soundcard structure
961 * @power_state: expected power state
963 * Waits until the power-state is changed.
965 * Return: Zero if successful, or a negative error code.
967 * Note: the power lock must be active before call.
969 int snd_power_wait(struct snd_card *card, unsigned int power_state)
971 wait_queue_t wait;
972 int result = 0;
974 /* fastpath */
975 if (snd_power_get_state(card) == power_state)
976 return 0;
977 init_waitqueue_entry(&wait, current);
978 add_wait_queue(&card->power_sleep, &wait);
979 while (1) {
980 if (card->shutdown) {
981 result = -ENODEV;
982 break;
984 if (snd_power_get_state(card) == power_state)
985 break;
986 set_current_state(TASK_UNINTERRUPTIBLE);
987 snd_power_unlock(card);
988 schedule_timeout(30 * HZ);
989 snd_power_lock(card);
991 remove_wait_queue(&card->power_sleep, &wait);
992 return result;
995 EXPORT_SYMBOL(snd_power_wait);
996 #endif /* CONFIG_PM */