blob: ff96eda898e3ecef02f50bf1fd8b1054b3706fb9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Initialization routines
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02003 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 *
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.
10 *
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.
15 *
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
19 *
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
23#include <linux/sched.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040024#include <linux/module.h>
Paul Gortmaker51990e82012-01-22 11:23:42 -050025#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/file.h>
27#include <linux/slab.h>
28#include <linux/time.h>
29#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/pm.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <sound/core.h>
33#include <sound/control.h>
34#include <sound/info.h>
35
Takashi Iwai82a783f2009-09-07 15:50:18 +020036/* monitor files for graceful shutdown (hotplug) */
37struct 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 */
42};
43
Karsten Wiesea9edfc62006-10-06 16:08:27 +020044static DEFINE_SPINLOCK(shutdown_lock);
45static LIST_HEAD(shutdown_files);
46
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -080047static const struct file_operations snd_shutdown_f_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Takashi Iwai7bb24912013-05-15 08:46:39 +020049/* locked for registering/using */
50static DECLARE_BITMAP(snd_cards_lock, SNDRV_CARDS);
Takashi Iwai6581f4e2006-05-17 17:14:51 +020051struct snd_card *snd_cards[SNDRV_CARDS];
Takashi Iwaic0d3fb32006-04-28 15:13:39 +020052EXPORT_SYMBOL(snd_cards);
53
Takashi Iwai746df942006-05-15 19:49:05 +020054static DEFINE_MUTEX(snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Takashi Iwai304cd072007-10-26 15:10:15 +020056static char *slots[SNDRV_CARDS];
57module_param_array(slots, charp, NULL, 0444);
58MODULE_PARM_DESC(slots, "Module names assigned to the slots.");
59
Takashi Iwaia93bbaa2008-05-27 17:59:24 +020060/* return non-zero if the given index is reserved for the given
Takashi Iwai304cd072007-10-26 15:10:15 +020061 * module via slots option
62 */
Takashi Iwaia93bbaa2008-05-27 17:59:24 +020063static int module_slot_match(struct module *module, int idx)
Takashi Iwai304cd072007-10-26 15:10:15 +020064{
Takashi Iwaia93bbaa2008-05-27 17:59:24 +020065 int match = 1;
Takashi Iwai304cd072007-10-26 15:10:15 +020066#ifdef MODULE
Takashi Iwaia93bbaa2008-05-27 17:59:24 +020067 const char *s1, *s2;
68
Takashi Iwai60f6fef2013-10-28 12:54:52 +010069 if (!module || !*module->name || !slots[idx])
Takashi Iwai304cd072007-10-26 15:10:15 +020070 return 0;
Takashi Iwaia93bbaa2008-05-27 17:59:24 +020071
72 s1 = module->name;
73 s2 = slots[idx];
74 if (*s2 == '!') {
75 match = 0; /* negative match */
76 s2++;
77 }
Takashi Iwai304cd072007-10-26 15:10:15 +020078 /* compare module name strings
79 * hyphens are handled as equivalent with underscore
80 */
81 for (;;) {
82 char c1 = *s1++;
83 char c2 = *s2++;
84 if (c1 == '-')
85 c1 = '_';
86 if (c2 == '-')
87 c2 = '_';
88 if (c1 != c2)
Takashi Iwaia93bbaa2008-05-27 17:59:24 +020089 return !match;
Takashi Iwai304cd072007-10-26 15:10:15 +020090 if (!c1)
91 break;
92 }
Takashi Iwaia93bbaa2008-05-27 17:59:24 +020093#endif /* MODULE */
94 return match;
Takashi Iwai304cd072007-10-26 15:10:15 +020095}
96
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +010097#if IS_ENABLED(CONFIG_SND_MIXER_OSS)
Takashi Iwai512bbd62005-11-17 13:51:18 +010098int (*snd_mixer_oss_notify_callback)(struct snd_card *card, int free_flag);
Takashi Iwaic0d3fb32006-04-28 15:13:39 +020099EXPORT_SYMBOL(snd_mixer_oss_notify_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#endif
101
Takashi Iwaie28563c2005-12-01 10:42:42 +0100102#ifdef CONFIG_PROC_FS
Takashi Iwai512bbd62005-11-17 13:51:18 +0100103static void snd_card_id_read(struct snd_info_entry *entry,
104 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 snd_iprintf(buffer, "%s\n", entry->card->id);
107}
108
Takashi Iwaie28563c2005-12-01 10:42:42 +0100109static inline int init_info_for_card(struct snd_card *card)
110{
111 int err;
112 struct snd_info_entry *entry;
113
114 if ((err = snd_info_card_register(card)) < 0) {
115 snd_printd("unable to create card info\n");
116 return err;
117 }
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;
121 }
Takashi Iwaie28563c2005-12-01 10:42:42 +0100122 entry->c.text.read = snd_card_id_read;
123 if (snd_info_register(entry) < 0) {
124 snd_info_free_entry(entry);
125 entry = NULL;
126 }
127 card->proc_id = entry;
128 return 0;
129}
130#else /* !CONFIG_PROC_FS */
131#define init_info_for_card(card)
132#endif
133
Takashi Iwaideb65962014-01-23 11:02:15 +0100134static int check_empty_slot(struct module *module, int slot)
135{
136 return !slots[slot] || !*slots[slot];
137}
138
139/* return an empty slot number (>= 0) found in the given bitmask @mask.
140 * @mask == -1 == 0xffffffff means: take any free slot up to 32
141 * when no slot is available, return the original @mask as is.
142 */
143static int get_slot_from_bitmask(int mask, int (*check)(struct module *, int),
144 struct module *module)
145{
146 int slot;
147
148 for (slot = 0; slot < SNDRV_CARDS; slot++) {
149 if (slot < 32 && !(mask & (1U << slot)))
150 continue;
151 if (!test_bit(slot, snd_cards_lock)) {
152 if (check(module, slot))
153 return slot; /* found */
154 }
155 }
156 return mask; /* unchanged */
157}
158
Takashi Iwai8bfb1812014-01-29 11:46:11 +0100159static int snd_card_do_free(struct snd_card *card);
Takashi Iwai34356db2014-01-29 11:54:10 +0100160static const struct attribute_group *card_dev_attr_groups[];
Takashi Iwai8bfb1812014-01-29 11:46:11 +0100161
162static void release_card_device(struct device *dev)
163{
164 snd_card_do_free(dev_to_snd_card(dev));
165}
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/**
Takashi Iwai393aa9c2014-01-29 12:51:12 +0100168 * snd_card_new - create and initialize a soundcard structure
169 * @parent: the parent device object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 * @idx: card index (address) [0 ... (SNDRV_CARDS-1)]
171 * @xid: card identification (ASCII string)
172 * @module: top level module for locking
173 * @extra_size: allocate this extra size after the main soundcard structure
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100174 * @card_ret: the pointer to store the created card instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 *
176 * Creates and initializes a soundcard structure.
177 *
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100178 * The function allocates snd_card instance via kzalloc with the given
179 * space for the driver to use freely. The allocated struct is stored
180 * in the given card_ret pointer.
181 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100182 * Return: Zero if successful or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 */
Takashi Iwai393aa9c2014-01-29 12:51:12 +0100184int snd_card_new(struct device *parent, int idx, const char *xid,
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100185 struct module *module, int extra_size,
186 struct snd_card **card_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Takashi Iwai512bbd62005-11-17 13:51:18 +0100188 struct snd_card *card;
Takashi Iwaideb65962014-01-23 11:02:15 +0100189 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100191 if (snd_BUG_ON(!card_ret))
192 return -EINVAL;
193 *card_ret = NULL;
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (extra_size < 0)
196 extra_size = 0;
Takashi Iwaica2c0962005-09-09 14:20:23 +0200197 card = kzalloc(sizeof(*card) + extra_size, GFP_KERNEL);
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100198 if (!card)
199 return -ENOMEM;
Takashi Iwai8bfb1812014-01-29 11:46:11 +0100200 if (extra_size > 0)
201 card->private_data = (char *)card + sizeof(struct snd_card);
Jaroslav Kysela10a8ebb2009-06-02 12:02:38 +0200202 if (xid)
Jaroslav Kysela5fdc18d2009-06-04 00:12:18 +0200203 strlcpy(card->id, xid, sizeof(card->id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 err = 0;
Takashi Iwai746df942006-05-15 19:49:05 +0200205 mutex_lock(&snd_card_mutex);
Takashi Iwaideb65962014-01-23 11:02:15 +0100206 if (idx < 0) /* first check the matching module-name slot */
207 idx = get_slot_from_bitmask(idx, module_slot_match, module);
208 if (idx < 0) /* if not matched, assign an empty slot */
209 idx = get_slot_from_bitmask(idx, check_empty_slot, module);
Takashi Iwaia93bbaa2008-05-27 17:59:24 +0200210 if (idx < 0)
211 err = -ENODEV;
212 else if (idx < snd_ecards_limit) {
Takashi Iwai7bb24912013-05-15 08:46:39 +0200213 if (test_bit(idx, snd_cards_lock))
Takashi Iwaia93bbaa2008-05-27 17:59:24 +0200214 err = -EBUSY; /* invalid */
215 } else if (idx >= SNDRV_CARDS)
216 err = -ENODEV;
217 if (err < 0) {
Takashi Iwai746df942006-05-15 19:49:05 +0200218 mutex_unlock(&snd_card_mutex);
Oliver Neukum5c33dd72007-01-16 17:49:21 +0100219 snd_printk(KERN_ERR "cannot find the slot for index %d (range 0-%i), error: %d\n",
220 idx, snd_ecards_limit - 1, err);
Takashi Iwai8bfb1812014-01-29 11:46:11 +0100221 kfree(card);
222 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
Takashi Iwai7bb24912013-05-15 08:46:39 +0200224 set_bit(idx, snd_cards_lock); /* lock it */
Takashi Iwaia93bbaa2008-05-27 17:59:24 +0200225 if (idx >= snd_ecards_limit)
226 snd_ecards_limit = idx + 1; /* increase the limit */
Takashi Iwai746df942006-05-15 19:49:05 +0200227 mutex_unlock(&snd_card_mutex);
Takashi Iwai393aa9c2014-01-29 12:51:12 +0100228 card->dev = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 card->number = idx;
230 card->module = module;
231 INIT_LIST_HEAD(&card->devices);
232 init_rwsem(&card->controls_rwsem);
233 rwlock_init(&card->ctl_files_rwlock);
234 INIT_LIST_HEAD(&card->controls);
235 INIT_LIST_HEAD(&card->ctl_files);
236 spin_lock_init(&card->files_lock);
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100237 INIT_LIST_HEAD(&card->files_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 init_waitqueue_head(&card->shutdown_sleep);
Takashi Iwaia0830db2012-10-16 13:05:59 +0200239 atomic_set(&card->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240#ifdef CONFIG_PM
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100241 mutex_init(&card->power_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 init_waitqueue_head(&card->power_sleep);
243#endif
Takashi Iwai8bfb1812014-01-29 11:46:11 +0100244
245 device_initialize(&card->card_dev);
246 card->card_dev.parent = parent;
247 card->card_dev.class = sound_class;
248 card->card_dev.release = release_card_device;
Takashi Iwai34356db2014-01-29 11:54:10 +0100249 card->card_dev.groups = card_dev_attr_groups;
Takashi Iwai8bfb1812014-01-29 11:46:11 +0100250 err = kobject_set_name(&card->card_dev.kobj, "card%d", idx);
251 if (err < 0)
252 goto __error;
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /* the control interface cannot be accessed from the user space until */
255 /* snd_cards_bitmask and snd_cards are set with snd_card_register */
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100256 err = snd_ctl_create(card);
257 if (err < 0) {
258 snd_printk(KERN_ERR "unable to register control minors\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 goto __error;
260 }
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100261 err = snd_info_card_create(card);
262 if (err < 0) {
263 snd_printk(KERN_ERR "unable to create card info\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 goto __error_ctl;
265 }
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100266 *card_ret = card;
267 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 __error_ctl:
270 snd_device_free_all(card, SNDRV_DEV_CMD_PRE);
271 __error:
Takashi Iwai8bfb1812014-01-29 11:46:11 +0100272 put_device(&card->card_dev);
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100273 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
Takashi Iwai393aa9c2014-01-29 12:51:12 +0100275EXPORT_SYMBOL(snd_card_new);
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200276
Takashi Iwai746df942006-05-15 19:49:05 +0200277/* return non-zero if a card is already locked */
278int snd_card_locked(int card)
279{
280 int locked;
281
282 mutex_lock(&snd_card_mutex);
Takashi Iwai7bb24912013-05-15 08:46:39 +0200283 locked = test_bit(card, snd_cards_lock);
Takashi Iwai746df942006-05-15 19:49:05 +0200284 mutex_unlock(&snd_card_mutex);
285 return locked;
286}
287
Clemens Ladischb3b0abe2006-03-03 14:08:43 +0100288static loff_t snd_disconnect_llseek(struct file *file, loff_t offset, int orig)
289{
290 return -ENODEV;
291}
292
293static ssize_t snd_disconnect_read(struct file *file, char __user *buf,
294 size_t count, loff_t *offset)
295{
296 return -ENODEV;
297}
298
299static ssize_t snd_disconnect_write(struct file *file, const char __user *buf,
300 size_t count, loff_t *offset)
301{
302 return -ENODEV;
303}
304
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200305static int snd_disconnect_release(struct inode *inode, struct file *file)
306{
307 struct snd_monitor_file *df = NULL, *_df;
308
309 spin_lock(&shutdown_lock);
310 list_for_each_entry(_df, &shutdown_files, shutdown_list) {
311 if (_df->file == file) {
312 df = _df;
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100313 list_del_init(&df->shutdown_list);
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200314 break;
315 }
316 }
317 spin_unlock(&shutdown_lock);
318
Al Viro233e70f2008-10-31 23:28:30 +0000319 if (likely(df)) {
320 if ((file->f_flags & FASYNC) && df->disconnected_f_op->fasync)
321 df->disconnected_f_op->fasync(-1, file, 0);
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200322 return df->disconnected_f_op->release(inode, file);
Al Viro233e70f2008-10-31 23:28:30 +0000323 }
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200324
Harvey Harrison9bf8e7d2008-03-03 15:32:18 -0800325 panic("%s(%p, %p) failed!", __func__, inode, file);
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200326}
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328static unsigned int snd_disconnect_poll(struct file * file, poll_table * wait)
329{
330 return POLLERR | POLLNVAL;
331}
332
Clemens Ladischb3b0abe2006-03-03 14:08:43 +0100333static long snd_disconnect_ioctl(struct file *file,
334 unsigned int cmd, unsigned long arg)
335{
336 return -ENODEV;
337}
338
339static int snd_disconnect_mmap(struct file *file, struct vm_area_struct *vma)
340{
341 return -ENODEV;
342}
343
344static int snd_disconnect_fasync(int fd, struct file *file, int on)
345{
346 return -ENODEV;
347}
348
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800349static const struct file_operations snd_shutdown_f_ops =
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200350{
351 .owner = THIS_MODULE,
352 .llseek = snd_disconnect_llseek,
353 .read = snd_disconnect_read,
354 .write = snd_disconnect_write,
355 .release = snd_disconnect_release,
356 .poll = snd_disconnect_poll,
357 .unlocked_ioctl = snd_disconnect_ioctl,
358#ifdef CONFIG_COMPAT
359 .compat_ioctl = snd_disconnect_ioctl,
360#endif
361 .mmap = snd_disconnect_mmap,
362 .fasync = snd_disconnect_fasync
363};
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365/**
366 * snd_card_disconnect - disconnect all APIs from the file-operations (user space)
367 * @card: soundcard structure
368 *
369 * Disconnects all APIs from the file-operations (user space).
370 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100371 * Return: Zero, otherwise a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 *
373 * Note: The current implementation replaces all active file->f_op with special
374 * dummy file operations (they do nothing except release).
375 */
Takashi Iwai512bbd62005-11-17 13:51:18 +0100376int snd_card_disconnect(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
378 struct snd_monitor_file *mfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 int err;
380
Takashi Iwaif18638d2008-04-17 12:52:02 +0200381 if (!card)
382 return -EINVAL;
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 spin_lock(&card->files_lock);
385 if (card->shutdown) {
386 spin_unlock(&card->files_lock);
387 return 0;
388 }
389 card->shutdown = 1;
390 spin_unlock(&card->files_lock);
391
392 /* phase 1: disable fops (user space) operations for ALSA API */
Takashi Iwai746df942006-05-15 19:49:05 +0200393 mutex_lock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 snd_cards[card->number] = NULL;
Takashi Iwai7bb24912013-05-15 08:46:39 +0200395 clear_bit(card->number, snd_cards_lock);
Takashi Iwai746df942006-05-15 19:49:05 +0200396 mutex_unlock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 /* phase 2: replace file->f_op with special dummy operations */
399
400 spin_lock(&card->files_lock);
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100401 list_for_each_entry(mfile, &card->files_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 /* it's critical part, use endless loop */
403 /* we have no room to fail */
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200404 mfile->disconnected_f_op = mfile->file->f_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200406 spin_lock(&shutdown_lock);
407 list_add(&mfile->shutdown_list, &shutdown_files);
408 spin_unlock(&shutdown_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200410 mfile->file->f_op = &snd_shutdown_f_ops;
Miguel Botonbc9abce2008-01-13 12:03:53 +0100411 fops_get(mfile->file->f_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413 spin_unlock(&card->files_lock);
414
415 /* phase 3: notify all connected devices about disconnection */
416 /* at this point, they cannot respond to any calls except release() */
417
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +0100418#if IS_ENABLED(CONFIG_SND_MIXER_OSS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (snd_mixer_oss_notify_callback)
420 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_DISCONNECT);
421#endif
422
423 /* notify all devices that we are disconnected */
424 err = snd_device_disconnect_all(card);
425 if (err < 0)
426 snd_printk(KERN_ERR "not all devices for card %i can be disconnected\n", card->number);
427
Takashi Iwai746d4a02006-06-23 14:37:59 +0200428 snd_info_card_disconnect(card);
Takashi Iwai8bfb1812014-01-29 11:46:11 +0100429 if (card->registered) {
430 device_del(&card->card_dev);
431 card->registered = false;
Takashi Iwai73d38b12008-04-17 12:50:47 +0200432 }
Takashi Iwaif18638d2008-04-17 12:52:02 +0200433#ifdef CONFIG_PM
434 wake_up(&card->power_sleep);
435#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return 0;
437}
438
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200439EXPORT_SYMBOL(snd_card_disconnect);
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441/**
442 * snd_card_free - frees given soundcard structure
443 * @card: soundcard structure
444 *
445 * This function releases the soundcard structure and the all assigned
446 * devices automatically. That is, you don't have to release the devices
447 * by yourself.
448 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100449 * Return: Zero. Frees all associated devices and frees the control
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * interface associated to given soundcard.
451 */
Takashi Iwaic4614822006-06-23 14:38:23 +0200452static int snd_card_do_free(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +0100454#if IS_ENABLED(CONFIG_SND_MIXER_OSS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (snd_mixer_oss_notify_callback)
456 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_FREE);
457#endif
458 if (snd_device_free_all(card, SNDRV_DEV_CMD_PRE) < 0) {
459 snd_printk(KERN_ERR "unable to free all devices (pre)\n");
460 /* Fatal, but this situation should never occur */
461 }
462 if (snd_device_free_all(card, SNDRV_DEV_CMD_NORMAL) < 0) {
463 snd_printk(KERN_ERR "unable to free all devices (normal)\n");
464 /* Fatal, but this situation should never occur */
465 }
466 if (snd_device_free_all(card, SNDRV_DEV_CMD_POST) < 0) {
467 snd_printk(KERN_ERR "unable to free all devices (post)\n");
468 /* Fatal, but this situation should never occur */
469 }
470 if (card->private_free)
471 card->private_free(card);
Takashi Iwai746d4a02006-06-23 14:37:59 +0200472 snd_info_free_entry(card->proc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (snd_info_card_free(card) < 0) {
474 snd_printk(KERN_WARNING "unable to free card info\n");
475 /* Not fatal error */
476 }
Takashi Iwaic4614822006-06-23 14:38:23 +0200477 kfree(card);
478 return 0;
479}
480
Takashi Iwaia0830db2012-10-16 13:05:59 +0200481/**
482 * snd_card_unref - release the reference counter
483 * @card: the card instance
484 *
485 * Decrements the reference counter. When it reaches to zero, wake up
486 * the sleeper and call the destructor if needed.
487 */
488void snd_card_unref(struct snd_card *card)
489{
490 if (atomic_dec_and_test(&card->refcount)) {
491 wake_up(&card->shutdown_sleep);
492 if (card->free_on_last_close)
Takashi Iwai8bfb1812014-01-29 11:46:11 +0100493 put_device(&card->card_dev);
Takashi Iwaia0830db2012-10-16 13:05:59 +0200494 }
495}
496EXPORT_SYMBOL(snd_card_unref);
497
Takashi Iwaic4614822006-06-23 14:38:23 +0200498int snd_card_free_when_closed(struct snd_card *card)
499{
Takashi Iwaia0830db2012-10-16 13:05:59 +0200500 int ret;
501
502 atomic_inc(&card->refcount);
503 ret = snd_card_disconnect(card);
504 if (ret) {
505 atomic_dec(&card->refcount);
Takashi Iwaic4614822006-06-23 14:38:23 +0200506 return ret;
Takashi Iwaia0830db2012-10-16 13:05:59 +0200507 }
Takashi Iwaic4614822006-06-23 14:38:23 +0200508
Takashi Iwaia0830db2012-10-16 13:05:59 +0200509 card->free_on_last_close = 1;
510 if (atomic_dec_and_test(&card->refcount))
Takashi Iwai8bfb1812014-01-29 11:46:11 +0100511 put_device(&card->card_dev);
Takashi Iwaic4614822006-06-23 14:38:23 +0200512 return 0;
513}
514
515EXPORT_SYMBOL(snd_card_free_when_closed);
516
517int snd_card_free(struct snd_card *card)
518{
Takashi Iwaif18638d2008-04-17 12:52:02 +0200519 int ret = snd_card_disconnect(card);
Takashi Iwaic4614822006-06-23 14:38:23 +0200520 if (ret)
521 return ret;
522
523 /* wait, until all devices are ready for the free operation */
Takashi Iwaia0830db2012-10-16 13:05:59 +0200524 wait_event(card->shutdown_sleep, !atomic_read(&card->refcount));
Takashi Iwai8bfb1812014-01-29 11:46:11 +0100525 put_device(&card->card_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return 0;
527}
528
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200529EXPORT_SYMBOL(snd_card_free);
530
Takashi Iwaie7df2a32012-03-09 17:41:53 +0100531/* retrieve the last word of shortname or longname */
532static const char *retrieve_id_from_card_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Takashi Iwaie7df2a32012-03-09 17:41:53 +0100534 const char *spos = name;
535
536 while (*name) {
537 if (isspace(*name) && isalnum(name[1]))
538 spos = name + 1;
539 name++;
540 }
541 return spos;
542}
543
544/* return true if the given id string doesn't conflict any other card ids */
545static bool card_id_ok(struct snd_card *card, const char *id)
546{
547 int i;
548 if (!snd_info_check_reserved_words(id))
549 return false;
550 for (i = 0; i < snd_ecards_limit; i++) {
551 if (snd_cards[i] && snd_cards[i] != card &&
552 !strcmp(snd_cards[i]->id, id))
553 return false;
554 }
555 return true;
556}
557
558/* copy to card->id only with valid letters from nid */
559static void copy_valid_id_string(struct snd_card *card, const char *src,
560 const char *nid)
561{
562 char *id = card->id;
563
564 while (*nid && !isalnum(*nid))
565 nid++;
566 if (isdigit(*nid))
567 *id++ = isalpha(*src) ? *src : 'D';
568 while (*nid && (size_t)(id - card->id) < sizeof(card->id) - 1) {
569 if (isalnum(*nid))
570 *id++ = *nid;
571 nid++;
572 }
573 *id = 0;
574}
575
576/* Set card->id from the given string
577 * If the string conflicts with other ids, add a suffix to make it unique.
578 */
579static void snd_card_set_id_no_lock(struct snd_card *card, const char *src,
580 const char *nid)
581{
582 int len, loops;
Takashi Iwaie7df2a32012-03-09 17:41:53 +0100583 bool is_default = false;
Jaroslav Kysela10a8ebb2009-06-02 12:02:38 +0200584 char *id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Takashi Iwaie7df2a32012-03-09 17:41:53 +0100586 copy_valid_id_string(card, src, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 id = card->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Takashi Iwaie7df2a32012-03-09 17:41:53 +0100589 again:
590 /* use "Default" for obviously invalid strings
591 * ("card" conflicts with proc directories)
592 */
593 if (!*id || !strncmp(id, "card", 4)) {
Takashi Iwaid8e4f9a2011-04-04 12:43:23 +0200594 strcpy(id, "Default");
Takashi Iwaie7df2a32012-03-09 17:41:53 +0100595 is_default = true;
596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Takashi Iwai8edbb192013-05-24 16:30:39 +0200598 len = strlen(id);
Takashi Iwaie7df2a32012-03-09 17:41:53 +0100599 for (loops = 0; loops < SNDRV_CARDS; loops++) {
Takashi Iwai8edbb192013-05-24 16:30:39 +0200600 char *spos;
601 char sfxstr[5]; /* "_012" */
602 int sfxlen;
603
Takashi Iwaie7df2a32012-03-09 17:41:53 +0100604 if (card_id_ok(card, id))
605 return; /* OK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Takashi Iwai8edbb192013-05-24 16:30:39 +0200607 /* Add _XYZ suffix */
608 sprintf(sfxstr, "_%X", loops + 1);
609 sfxlen = strlen(sfxstr);
610 if (len + sfxlen >= sizeof(card->id))
611 spos = id + sizeof(card->id) - sfxlen - 1;
612 else
613 spos = id + len;
614 strcpy(spos, sfxstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
Takashi Iwaie7df2a32012-03-09 17:41:53 +0100616 /* fallback to the default id */
617 if (!is_default) {
618 *id = 0;
619 goto again;
620 }
621 /* last resort... */
622 snd_printk(KERN_ERR "unable to set card id (%s)\n", id);
623 if (card->proc_root->name)
Takashi Iwai97f44f52013-10-29 15:20:06 +0100624 strlcpy(card->id, card->proc_root->name, sizeof(card->id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
Mark Brown872c7822009-06-03 20:43:29 +0100627/**
628 * snd_card_set_id - set card identification name
629 * @card: soundcard structure
630 * @nid: new identification string
631 *
632 * This function sets the card identification and checks for name
633 * collisions.
634 */
635void snd_card_set_id(struct snd_card *card, const char *nid)
636{
Jaroslav Kysela5fdc18d2009-06-04 00:12:18 +0200637 /* check if user specified own card->id */
638 if (card->id[0] != '\0')
639 return;
640 mutex_lock(&snd_card_mutex);
Takashi Iwaie7df2a32012-03-09 17:41:53 +0100641 snd_card_set_id_no_lock(card, nid, nid);
Jaroslav Kysela5fdc18d2009-06-04 00:12:18 +0200642 mutex_unlock(&snd_card_mutex);
Mark Brown872c7822009-06-03 20:43:29 +0100643}
Jaroslav Kysela10a8ebb2009-06-02 12:02:38 +0200644EXPORT_SYMBOL(snd_card_set_id);
645
Jaroslav Kysela9fb61982008-11-11 16:51:02 +0100646static ssize_t
647card_id_show_attr(struct device *dev,
648 struct device_attribute *attr, char *buf)
649{
650 struct snd_card *card = dev_get_drvdata(dev);
651 return snprintf(buf, PAGE_SIZE, "%s\n", card ? card->id : "(null)");
652}
653
654static ssize_t
655card_id_store_attr(struct device *dev, struct device_attribute *attr,
656 const char *buf, size_t count)
657{
658 struct snd_card *card = dev_get_drvdata(dev);
659 char buf1[sizeof(card->id)];
660 size_t copy = count > sizeof(card->id) - 1 ?
661 sizeof(card->id) - 1 : count;
662 size_t idx;
663 int c;
664
665 for (idx = 0; idx < copy; idx++) {
666 c = buf[idx];
667 if (!isalnum(c) && c != '_' && c != '-')
668 return -EINVAL;
669 }
670 memcpy(buf1, buf, copy);
671 buf1[copy] = '\0';
672 mutex_lock(&snd_card_mutex);
Takashi Iwaie7df2a32012-03-09 17:41:53 +0100673 if (!card_id_ok(NULL, buf1)) {
Jaroslav Kysela9fb61982008-11-11 16:51:02 +0100674 mutex_unlock(&snd_card_mutex);
675 return -EEXIST;
676 }
Jaroslav Kysela9fb61982008-11-11 16:51:02 +0100677 strcpy(card->id, buf1);
Jaroslav Kyselac2eb9c42008-11-12 16:31:37 +0100678 snd_info_card_id_change(card);
Jaroslav Kysela9fb61982008-11-11 16:51:02 +0100679 mutex_unlock(&snd_card_mutex);
680
681 return count;
682}
683
Takashi Iwai34356db2014-01-29 11:54:10 +0100684static DEVICE_ATTR(id, S_IRUGO | S_IWUSR, card_id_show_attr, card_id_store_attr);
Jaroslav Kysela9fb61982008-11-11 16:51:02 +0100685
686static ssize_t
687card_number_show_attr(struct device *dev,
688 struct device_attribute *attr, char *buf)
689{
690 struct snd_card *card = dev_get_drvdata(dev);
691 return snprintf(buf, PAGE_SIZE, "%i\n", card ? card->number : -1);
692}
693
Takashi Iwai34356db2014-01-29 11:54:10 +0100694static DEVICE_ATTR(number, S_IRUGO, card_number_show_attr, NULL);
695
696static struct attribute *card_dev_attrs[] = {
697 &dev_attr_id.attr,
698 &dev_attr_number.attr,
699 NULL
700};
701
702static struct attribute_group card_dev_attr_group = {
703 .attrs = card_dev_attrs,
704};
705
706static const struct attribute_group *card_dev_attr_groups[] = {
707 &card_dev_attr_group,
708 NULL
709};
Jaroslav Kysela9fb61982008-11-11 16:51:02 +0100710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711/**
712 * snd_card_register - register the soundcard
713 * @card: soundcard structure
714 *
715 * This function registers all the devices assigned to the soundcard.
716 * Until calling this, the ALSA control interface is blocked from the
717 * external accesses. Thus, you should call this function at the end
718 * of the initialization of the card.
719 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100720 * Return: Zero otherwise a negative error code if the registration failed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 */
Takashi Iwai512bbd62005-11-17 13:51:18 +0100722int snd_card_register(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
724 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200726 if (snd_BUG_ON(!card))
727 return -EINVAL;
Kay Sievers39aba962010-09-04 22:33:14 -0700728
Takashi Iwai8bfb1812014-01-29 11:46:11 +0100729 if (!card->registered) {
730 err = device_add(&card->card_dev);
731 if (err < 0)
732 return err;
733 card->registered = true;
Greg Kroah-Hartmand80f19f2006-08-07 22:19:37 -0700734 }
Kay Sievers39aba962010-09-04 22:33:14 -0700735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if ((err = snd_device_register_all(card)) < 0)
737 return err;
Takashi Iwai746df942006-05-15 19:49:05 +0200738 mutex_lock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (snd_cards[card->number]) {
740 /* already registered */
Takashi Iwai746df942006-05-15 19:49:05 +0200741 mutex_unlock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return 0;
743 }
Takashi Iwaie7df2a32012-03-09 17:41:53 +0100744 if (*card->id) {
745 /* make a unique id name from the given string */
746 char tmpid[sizeof(card->id)];
747 memcpy(tmpid, card->id, sizeof(card->id));
748 snd_card_set_id_no_lock(card, tmpid, tmpid);
749 } else {
750 /* create an id from either shortname or longname */
751 const char *src;
752 src = *card->shortname ? card->shortname : card->longname;
753 snd_card_set_id_no_lock(card, src,
754 retrieve_id_from_card_name(src));
755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 snd_cards[card->number] = card;
Takashi Iwai746df942006-05-15 19:49:05 +0200757 mutex_unlock(&snd_card_mutex);
Takashi Iwaie28563c2005-12-01 10:42:42 +0100758 init_info_for_card(card);
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +0100759#if IS_ENABLED(CONFIG_SND_MIXER_OSS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (snd_mixer_oss_notify_callback)
761 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_REGISTER);
762#endif
763 return 0;
764}
765
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200766EXPORT_SYMBOL(snd_card_register);
767
Takashi Iwaie28563c2005-12-01 10:42:42 +0100768#ifdef CONFIG_PROC_FS
Takashi Iwai6581f4e2006-05-17 17:14:51 +0200769static struct snd_info_entry *snd_card_info_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Takashi Iwaia381a7a2005-11-17 15:55:49 +0100771static void snd_card_info_read(struct snd_info_entry *entry,
772 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
774 int idx, count;
Takashi Iwai512bbd62005-11-17 13:51:18 +0100775 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
Takashi Iwai746df942006-05-15 19:49:05 +0200778 mutex_lock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if ((card = snd_cards[idx]) != NULL) {
780 count++;
Clemens Ladischd0015442005-11-20 14:09:05 +0100781 snd_iprintf(buffer, "%2i [%-15s]: %s - %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 idx,
783 card->id,
784 card->driver,
785 card->shortname);
Clemens Ladischd0015442005-11-20 14:09:05 +0100786 snd_iprintf(buffer, " %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 card->longname);
788 }
Takashi Iwai746df942006-05-15 19:49:05 +0200789 mutex_unlock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791 if (!count)
792 snd_iprintf(buffer, "--- no soundcards ---\n");
793}
794
Takashi Iwaie28563c2005-12-01 10:42:42 +0100795#ifdef CONFIG_SND_OSSEMUL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Takashi Iwai512bbd62005-11-17 13:51:18 +0100797void snd_card_info_read_oss(struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
799 int idx, count;
Takashi Iwai512bbd62005-11-17 13:51:18 +0100800 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
Takashi Iwai746df942006-05-15 19:49:05 +0200803 mutex_lock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if ((card = snd_cards[idx]) != NULL) {
805 count++;
806 snd_iprintf(buffer, "%s\n", card->longname);
807 }
Takashi Iwai746df942006-05-15 19:49:05 +0200808 mutex_unlock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810 if (!count) {
811 snd_iprintf(buffer, "--- no soundcards ---\n");
812 }
813}
814
815#endif
816
817#ifdef MODULE
Takashi Iwai512bbd62005-11-17 13:51:18 +0100818static struct snd_info_entry *snd_card_module_info_entry;
819static void snd_card_module_info_read(struct snd_info_entry *entry,
820 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
822 int idx;
Takashi Iwai512bbd62005-11-17 13:51:18 +0100823 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 for (idx = 0; idx < SNDRV_CARDS; idx++) {
Takashi Iwai746df942006-05-15 19:49:05 +0200826 mutex_lock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if ((card = snd_cards[idx]) != NULL)
Clemens Ladischd0015442005-11-20 14:09:05 +0100828 snd_iprintf(buffer, "%2i %s\n",
829 idx, card->module->name);
Takashi Iwai746df942006-05-15 19:49:05 +0200830 mutex_unlock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
832}
833#endif
834
835int __init snd_card_info_init(void)
836{
Takashi Iwai512bbd62005-11-17 13:51:18 +0100837 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 entry = snd_info_create_module_entry(THIS_MODULE, "cards", NULL);
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200840 if (! entry)
841 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 entry->c.text.read = snd_card_info_read;
843 if (snd_info_register(entry) < 0) {
844 snd_info_free_entry(entry);
845 return -ENOMEM;
846 }
847 snd_card_info_entry = entry;
848
849#ifdef MODULE
850 entry = snd_info_create_module_entry(THIS_MODULE, "modules", NULL);
851 if (entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 entry->c.text.read = snd_card_module_info_read;
853 if (snd_info_register(entry) < 0)
854 snd_info_free_entry(entry);
855 else
856 snd_card_module_info_entry = entry;
857 }
858#endif
859
860 return 0;
861}
862
863int __exit snd_card_info_done(void)
864{
Takashi Iwai746d4a02006-06-23 14:37:59 +0200865 snd_info_free_entry(snd_card_info_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866#ifdef MODULE
Takashi Iwai746d4a02006-06-23 14:37:59 +0200867 snd_info_free_entry(snd_card_module_info_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868#endif
869 return 0;
870}
871
Takashi Iwaie28563c2005-12-01 10:42:42 +0100872#endif /* CONFIG_PROC_FS */
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874/**
875 * snd_component_add - add a component string
876 * @card: soundcard structure
877 * @component: the component id string
878 *
879 * This function adds the component id string to the supported list.
880 * The component can be referred from the alsa-lib.
881 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100882 * Return: Zero otherwise a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 */
884
Takashi Iwai512bbd62005-11-17 13:51:18 +0100885int snd_component_add(struct snd_card *card, const char *component)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
887 char *ptr;
888 int len = strlen(component);
889
890 ptr = strstr(card->components, component);
891 if (ptr != NULL) {
892 if (ptr[len] == '\0' || ptr[len] == ' ') /* already there */
893 return 1;
894 }
895 if (strlen(card->components) + 1 + len + 1 > sizeof(card->components)) {
896 snd_BUG();
897 return -ENOMEM;
898 }
899 if (card->components[0] != '\0')
900 strcat(card->components, " ");
901 strcat(card->components, component);
902 return 0;
903}
904
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200905EXPORT_SYMBOL(snd_component_add);
906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907/**
908 * snd_card_file_add - add the file to the file list of the card
909 * @card: soundcard structure
910 * @file: file pointer
911 *
912 * This function adds the file to the file linked-list of the card.
913 * This linked-list is used to keep tracking the connection state,
914 * and to avoid the release of busy resources by hotplug.
915 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100916 * Return: zero or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 */
Takashi Iwai512bbd62005-11-17 13:51:18 +0100918int snd_card_file_add(struct snd_card *card, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
920 struct snd_monitor_file *mfile;
921
922 mfile = kmalloc(sizeof(*mfile), GFP_KERNEL);
923 if (mfile == NULL)
924 return -ENOMEM;
925 mfile->file = file;
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200926 mfile->disconnected_f_op = NULL;
Takashi Iwaia45e3d62011-03-24 09:50:15 +0100927 INIT_LIST_HEAD(&mfile->shutdown_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 spin_lock(&card->files_lock);
929 if (card->shutdown) {
930 spin_unlock(&card->files_lock);
931 kfree(mfile);
932 return -ENODEV;
933 }
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100934 list_add(&mfile->list, &card->files_list);
Takashi Iwaia0830db2012-10-16 13:05:59 +0200935 atomic_inc(&card->refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 spin_unlock(&card->files_lock);
937 return 0;
938}
939
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200940EXPORT_SYMBOL(snd_card_file_add);
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942/**
943 * snd_card_file_remove - remove the file from the file list
944 * @card: soundcard structure
945 * @file: file pointer
946 *
947 * This function removes the file formerly added to the card via
948 * snd_card_file_add() function.
Takashi Iwai2b29b132006-06-23 14:38:26 +0200949 * If all files are removed and snd_card_free_when_closed() was
950 * called beforehand, it processes the pending release of
951 * resources.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100953 * Return: Zero or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 */
Takashi Iwai512bbd62005-11-17 13:51:18 +0100955int snd_card_file_remove(struct snd_card *card, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100957 struct snd_monitor_file *mfile, *found = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 spin_lock(&card->files_lock);
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100960 list_for_each_entry(mfile, &card->files_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (mfile->file == file) {
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100962 list_del(&mfile->list);
Takashi Iwaia45e3d62011-03-24 09:50:15 +0100963 spin_lock(&shutdown_lock);
964 list_del(&mfile->shutdown_list);
965 spin_unlock(&shutdown_lock);
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100966 if (mfile->disconnected_f_op)
967 fops_put(mfile->disconnected_f_op);
968 found = mfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 break;
970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 }
Takashi Iwaic4614822006-06-23 14:38:23 +0200972 spin_unlock(&card->files_lock);
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100973 if (!found) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 snd_printk(KERN_ERR "ALSA card file remove problem (%p)\n", file);
975 return -ENOENT;
976 }
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100977 kfree(found);
Takashi Iwaia0830db2012-10-16 13:05:59 +0200978 snd_card_unref(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return 0;
980}
981
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200982EXPORT_SYMBOL(snd_card_file_remove);
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984#ifdef CONFIG_PM
985/**
986 * snd_power_wait - wait until the power-state is changed.
987 * @card: soundcard structure
988 * @power_state: expected power state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 *
990 * Waits until the power-state is changed.
991 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100992 * Return: Zero if successful, or a negative error code.
993 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 * Note: the power lock must be active before call.
995 */
Takashi Iwaicbac4b02006-03-27 12:38:07 +0200996int snd_power_wait(struct snd_card *card, unsigned int power_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
998 wait_queue_t wait;
999 int result = 0;
1000
1001 /* fastpath */
1002 if (snd_power_get_state(card) == power_state)
1003 return 0;
1004 init_waitqueue_entry(&wait, current);
1005 add_wait_queue(&card->power_sleep, &wait);
1006 while (1) {
1007 if (card->shutdown) {
1008 result = -ENODEV;
1009 break;
1010 }
1011 if (snd_power_get_state(card) == power_state)
1012 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 set_current_state(TASK_UNINTERRUPTIBLE);
1014 snd_power_unlock(card);
1015 schedule_timeout(30 * HZ);
1016 snd_power_lock(card);
1017 }
1018 remove_wait_queue(&card->power_sleep, &wait);
1019 return result;
1020}
1021
Takashi Iwaic0d3fb32006-04-28 15:13:39 +02001022EXPORT_SYMBOL(snd_power_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023#endif /* CONFIG_PM */