blob: 6559a40a8ca80c6da3a57095fa095f31ea21682d [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/file.h>
26#include <linux/slab.h>
27#include <linux/time.h>
28#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/pm.h>
Steve Mucklef132c6c2012-06-06 18:30:57 -070030#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <sound/core.h>
32#include <sound/control.h>
33#include <sound/info.h>
34
Takashi Iwai82a783f2009-09-07 15:50:18 +020035/* monitor files for graceful shutdown (hotplug) */
36struct snd_monitor_file {
37 struct file *file;
38 const struct file_operations *disconnected_f_op;
39 struct list_head shutdown_list; /* still need to shutdown */
40 struct list_head list; /* link of monitor files */
41};
42
Karsten Wiesea9edfc62006-10-06 16:08:27 +020043static DEFINE_SPINLOCK(shutdown_lock);
44static LIST_HEAD(shutdown_files);
45
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -080046static const struct file_operations snd_shutdown_f_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Takashi Iwai6581f4e2006-05-17 17:14:51 +020048static unsigned int snd_cards_lock; /* locked for registering/using */
49struct snd_card *snd_cards[SNDRV_CARDS];
Takashi Iwaic0d3fb32006-04-28 15:13:39 +020050EXPORT_SYMBOL(snd_cards);
51
Takashi Iwai746df942006-05-15 19:49:05 +020052static DEFINE_MUTEX(snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Takashi Iwai304cd072007-10-26 15:10:15 +020054static char *slots[SNDRV_CARDS];
55module_param_array(slots, charp, NULL, 0444);
56MODULE_PARM_DESC(slots, "Module names assigned to the slots.");
57
Joonwoo Park6fb64392013-08-07 18:59:09 -070058#define SND_CARD_STATE_MAX_LEN 16
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 Iwai304cd072007-10-26 15:10:15 +020069 if (!module || !module->name || !slots[idx])
70 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
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
Joonwoo Park6fb64392013-08-07 18:59:09 -0700109static int snd_card_state_read(struct snd_info_entry *entry,
110 void *file_private_data, struct file *file,
111 char __user *buf, size_t count, loff_t pos)
112{
113 int len;
114 char buffer[SND_CARD_STATE_MAX_LEN];
115
116 /* make sure offline is updated prior to wake up */
117 rmb();
118 len = snprintf(buffer, sizeof(buffer), "%s\n",
119 entry->card->offline ? "OFFLINE" : "ONLINE");
120 return simple_read_from_buffer(buf, count, &pos, buffer, len);
121}
122
123static unsigned int snd_card_state_poll(struct snd_info_entry *entry,
124 void *private_data, struct file *file,
125 poll_table *wait)
126{
127 poll_wait(file, &entry->card->offline_poll_wait, wait);
128 if (xchg(&entry->card->offline_change, 0))
129 return POLLIN | POLLPRI | POLLRDNORM;
130 else
131 return 0;
132}
133
134static struct snd_info_entry_ops snd_card_state_proc_ops = {
135 .read = snd_card_state_read,
136 .poll = snd_card_state_poll,
137};
138
Takashi Iwaie28563c2005-12-01 10:42:42 +0100139static inline int init_info_for_card(struct snd_card *card)
140{
141 int err;
Joonwoo Park6fb64392013-08-07 18:59:09 -0700142 struct snd_info_entry *entry, *entry_state;
Takashi Iwaie28563c2005-12-01 10:42:42 +0100143
144 if ((err = snd_info_card_register(card)) < 0) {
145 snd_printd("unable to create card info\n");
146 return err;
147 }
148 if ((entry = snd_info_create_card_entry(card, "id", card->proc_root)) == NULL) {
149 snd_printd("unable to create card entry\n");
150 return err;
151 }
Takashi Iwaie28563c2005-12-01 10:42:42 +0100152 entry->c.text.read = snd_card_id_read;
153 if (snd_info_register(entry) < 0) {
154 snd_info_free_entry(entry);
155 entry = NULL;
156 }
157 card->proc_id = entry;
Joonwoo Park6fb64392013-08-07 18:59:09 -0700158
159 entry_state = snd_info_create_card_entry(card, "state",
160 card->proc_root);
161 if (entry_state == NULL) {
162 snd_printd("unable to create card entry state\n");
163 card->proc_id = NULL;
164 return err;
165 }
166 entry_state->size = SND_CARD_STATE_MAX_LEN;
167 entry_state->content = SNDRV_INFO_CONTENT_DATA;
168 entry_state->c.ops = &snd_card_state_proc_ops;
169 err = snd_info_register(entry_state);
170 if (err < 0) {
171 snd_printd("unable to register card entry state\n");
172 card->proc_id = NULL;
173 return err;
174 }
175
Takashi Iwaie28563c2005-12-01 10:42:42 +0100176 return 0;
177}
178#else /* !CONFIG_PROC_FS */
179#define init_info_for_card(card)
180#endif
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/**
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100183 * snd_card_create - create and initialize a soundcard structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * @idx: card index (address) [0 ... (SNDRV_CARDS-1)]
185 * @xid: card identification (ASCII string)
186 * @module: top level module for locking
187 * @extra_size: allocate this extra size after the main soundcard structure
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100188 * @card_ret: the pointer to store the created card instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 *
190 * Creates and initializes a soundcard structure.
191 *
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100192 * The function allocates snd_card instance via kzalloc with the given
193 * space for the driver to use freely. The allocated struct is stored
194 * in the given card_ret pointer.
195 *
196 * Returns zero if successful or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 */
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100198int snd_card_create(int idx, const char *xid,
199 struct module *module, int extra_size,
200 struct snd_card **card_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Takashi Iwai512bbd62005-11-17 13:51:18 +0100202 struct snd_card *card;
Takashi Iwaia93bbaa2008-05-27 17:59:24 +0200203 int err, idx2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100205 if (snd_BUG_ON(!card_ret))
206 return -EINVAL;
207 *card_ret = NULL;
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (extra_size < 0)
210 extra_size = 0;
Takashi Iwaica2c0962005-09-09 14:20:23 +0200211 card = kzalloc(sizeof(*card) + extra_size, GFP_KERNEL);
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100212 if (!card)
213 return -ENOMEM;
Jaroslav Kysela10a8ebb2009-06-02 12:02:38 +0200214 if (xid)
Jaroslav Kysela5fdc18d2009-06-04 00:12:18 +0200215 strlcpy(card->id, xid, sizeof(card->id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 err = 0;
Takashi Iwai746df942006-05-15 19:49:05 +0200217 mutex_lock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (idx < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 for (idx2 = 0; idx2 < SNDRV_CARDS; idx2++)
Oliver Neukum5c33dd72007-01-16 17:49:21 +0100220 /* idx == -1 == 0xffff means: take any free slot */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (~snd_cards_lock & idx & 1<<idx2) {
Takashi Iwaia93bbaa2008-05-27 17:59:24 +0200222 if (module_slot_match(module, idx2)) {
223 idx = idx2;
224 break;
225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
Oliver Neukum5c33dd72007-01-16 17:49:21 +0100227 }
Takashi Iwaia93bbaa2008-05-27 17:59:24 +0200228 if (idx < 0) {
229 for (idx2 = 0; idx2 < SNDRV_CARDS; idx2++)
230 /* idx == -1 == 0xffff means: take any free slot */
231 if (~snd_cards_lock & idx & 1<<idx2) {
232 if (!slots[idx2] || !*slots[idx2]) {
233 idx = idx2;
234 break;
235 }
236 }
237 }
238 if (idx < 0)
239 err = -ENODEV;
240 else if (idx < snd_ecards_limit) {
241 if (snd_cards_lock & (1 << idx))
242 err = -EBUSY; /* invalid */
243 } else if (idx >= SNDRV_CARDS)
244 err = -ENODEV;
245 if (err < 0) {
Takashi Iwai746df942006-05-15 19:49:05 +0200246 mutex_unlock(&snd_card_mutex);
Oliver Neukum5c33dd72007-01-16 17:49:21 +0100247 snd_printk(KERN_ERR "cannot find the slot for index %d (range 0-%i), error: %d\n",
248 idx, snd_ecards_limit - 1, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 goto __error;
250 }
251 snd_cards_lock |= 1 << idx; /* lock it */
Takashi Iwaia93bbaa2008-05-27 17:59:24 +0200252 if (idx >= snd_ecards_limit)
253 snd_ecards_limit = idx + 1; /* increase the limit */
Takashi Iwai746df942006-05-15 19:49:05 +0200254 mutex_unlock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 card->number = idx;
256 card->module = module;
257 INIT_LIST_HEAD(&card->devices);
258 init_rwsem(&card->controls_rwsem);
259 rwlock_init(&card->ctl_files_rwlock);
260 INIT_LIST_HEAD(&card->controls);
261 INIT_LIST_HEAD(&card->ctl_files);
262 spin_lock_init(&card->files_lock);
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100263 INIT_LIST_HEAD(&card->files_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 init_waitqueue_head(&card->shutdown_sleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265#ifdef CONFIG_PM
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100266 mutex_init(&card->power_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 init_waitqueue_head(&card->power_sleep);
268#endif
Joonwoo Park6fb64392013-08-07 18:59:09 -0700269 init_waitqueue_head(&card->offline_poll_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 /* the control interface cannot be accessed from the user space until */
271 /* snd_cards_bitmask and snd_cards are set with snd_card_register */
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100272 err = snd_ctl_create(card);
273 if (err < 0) {
274 snd_printk(KERN_ERR "unable to register control minors\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 goto __error;
276 }
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100277 err = snd_info_card_create(card);
278 if (err < 0) {
279 snd_printk(KERN_ERR "unable to create card info\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 goto __error_ctl;
281 }
282 if (extra_size > 0)
Takashi Iwai512bbd62005-11-17 13:51:18 +0100283 card->private_data = (char *)card + sizeof(struct snd_card);
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100284 *card_ret = card;
285 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 __error_ctl:
288 snd_device_free_all(card, SNDRV_DEV_CMD_PRE);
289 __error:
290 kfree(card);
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100291 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
Takashi Iwai53fb1e62008-12-28 16:32:08 +0100293EXPORT_SYMBOL(snd_card_create);
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200294
Takashi Iwai746df942006-05-15 19:49:05 +0200295/* return non-zero if a card is already locked */
296int snd_card_locked(int card)
297{
298 int locked;
299
300 mutex_lock(&snd_card_mutex);
301 locked = snd_cards_lock & (1 << card);
302 mutex_unlock(&snd_card_mutex);
303 return locked;
304}
305
Clemens Ladischb3b0abe2006-03-03 14:08:43 +0100306static loff_t snd_disconnect_llseek(struct file *file, loff_t offset, int orig)
307{
308 return -ENODEV;
309}
310
311static ssize_t snd_disconnect_read(struct file *file, char __user *buf,
312 size_t count, loff_t *offset)
313{
314 return -ENODEV;
315}
316
317static ssize_t snd_disconnect_write(struct file *file, const char __user *buf,
318 size_t count, loff_t *offset)
319{
320 return -ENODEV;
321}
322
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200323static int snd_disconnect_release(struct inode *inode, struct file *file)
324{
325 struct snd_monitor_file *df = NULL, *_df;
326
327 spin_lock(&shutdown_lock);
328 list_for_each_entry(_df, &shutdown_files, shutdown_list) {
329 if (_df->file == file) {
330 df = _df;
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100331 list_del_init(&df->shutdown_list);
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200332 break;
333 }
334 }
335 spin_unlock(&shutdown_lock);
336
Al Viro233e70f2008-10-31 23:28:30 +0000337 if (likely(df)) {
338 if ((file->f_flags & FASYNC) && df->disconnected_f_op->fasync)
339 df->disconnected_f_op->fasync(-1, file, 0);
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200340 return df->disconnected_f_op->release(inode, file);
Al Viro233e70f2008-10-31 23:28:30 +0000341 }
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200342
Harvey Harrison9bf8e7d2008-03-03 15:32:18 -0800343 panic("%s(%p, %p) failed!", __func__, inode, file);
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200344}
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346static unsigned int snd_disconnect_poll(struct file * file, poll_table * wait)
347{
348 return POLLERR | POLLNVAL;
349}
350
Clemens Ladischb3b0abe2006-03-03 14:08:43 +0100351static long snd_disconnect_ioctl(struct file *file,
352 unsigned int cmd, unsigned long arg)
353{
354 return -ENODEV;
355}
356
357static int snd_disconnect_mmap(struct file *file, struct vm_area_struct *vma)
358{
359 return -ENODEV;
360}
361
362static int snd_disconnect_fasync(int fd, struct file *file, int on)
363{
364 return -ENODEV;
365}
366
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800367static const struct file_operations snd_shutdown_f_ops =
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200368{
369 .owner = THIS_MODULE,
370 .llseek = snd_disconnect_llseek,
371 .read = snd_disconnect_read,
372 .write = snd_disconnect_write,
373 .release = snd_disconnect_release,
374 .poll = snd_disconnect_poll,
375 .unlocked_ioctl = snd_disconnect_ioctl,
376#ifdef CONFIG_COMPAT
377 .compat_ioctl = snd_disconnect_ioctl,
378#endif
379 .mmap = snd_disconnect_mmap,
380 .fasync = snd_disconnect_fasync
381};
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383/**
384 * snd_card_disconnect - disconnect all APIs from the file-operations (user space)
385 * @card: soundcard structure
386 *
387 * Disconnects all APIs from the file-operations (user space).
388 *
389 * Returns zero, otherwise a negative error code.
390 *
391 * Note: The current implementation replaces all active file->f_op with special
392 * dummy file operations (they do nothing except release).
393 */
Takashi Iwai512bbd62005-11-17 13:51:18 +0100394int snd_card_disconnect(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 struct snd_monitor_file *mfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 int err;
398
Takashi Iwaif18638d2008-04-17 12:52:02 +0200399 if (!card)
400 return -EINVAL;
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 spin_lock(&card->files_lock);
403 if (card->shutdown) {
404 spin_unlock(&card->files_lock);
405 return 0;
406 }
407 card->shutdown = 1;
408 spin_unlock(&card->files_lock);
409
410 /* phase 1: disable fops (user space) operations for ALSA API */
Takashi Iwai746df942006-05-15 19:49:05 +0200411 mutex_lock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 snd_cards[card->number] = NULL;
Takashi Iwaif18638d2008-04-17 12:52:02 +0200413 snd_cards_lock &= ~(1 << card->number);
Takashi Iwai746df942006-05-15 19:49:05 +0200414 mutex_unlock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 /* phase 2: replace file->f_op with special dummy operations */
417
418 spin_lock(&card->files_lock);
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100419 list_for_each_entry(mfile, &card->files_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 /* it's critical part, use endless loop */
421 /* we have no room to fail */
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200422 mfile->disconnected_f_op = mfile->file->f_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200424 spin_lock(&shutdown_lock);
425 list_add(&mfile->shutdown_list, &shutdown_files);
426 spin_unlock(&shutdown_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200428 mfile->file->f_op = &snd_shutdown_f_ops;
Miguel Botonbc9abce2008-01-13 12:03:53 +0100429 fops_get(mfile->file->f_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431 spin_unlock(&card->files_lock);
432
433 /* phase 3: notify all connected devices about disconnection */
434 /* at this point, they cannot respond to any calls except release() */
435
436#if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
437 if (snd_mixer_oss_notify_callback)
438 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_DISCONNECT);
439#endif
440
441 /* notify all devices that we are disconnected */
442 err = snd_device_disconnect_all(card);
443 if (err < 0)
444 snd_printk(KERN_ERR "not all devices for card %i can be disconnected\n", card->number);
445
Takashi Iwai746d4a02006-06-23 14:37:59 +0200446 snd_info_card_disconnect(card);
Takashi Iwai73d38b12008-04-17 12:50:47 +0200447 if (card->card_dev) {
448 device_unregister(card->card_dev);
449 card->card_dev = NULL;
450 }
Takashi Iwaif18638d2008-04-17 12:52:02 +0200451#ifdef CONFIG_PM
452 wake_up(&card->power_sleep);
453#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return 0;
455}
456
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200457EXPORT_SYMBOL(snd_card_disconnect);
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459/**
460 * snd_card_free - frees given soundcard structure
461 * @card: soundcard structure
462 *
463 * This function releases the soundcard structure and the all assigned
464 * devices automatically. That is, you don't have to release the devices
465 * by yourself.
466 *
467 * Returns zero. Frees all associated devices and frees the control
468 * interface associated to given soundcard.
469 */
Takashi Iwaic4614822006-06-23 14:38:23 +0200470static int snd_card_do_free(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472#if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
473 if (snd_mixer_oss_notify_callback)
474 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_FREE);
475#endif
476 if (snd_device_free_all(card, SNDRV_DEV_CMD_PRE) < 0) {
477 snd_printk(KERN_ERR "unable to free all devices (pre)\n");
478 /* Fatal, but this situation should never occur */
479 }
480 if (snd_device_free_all(card, SNDRV_DEV_CMD_NORMAL) < 0) {
481 snd_printk(KERN_ERR "unable to free all devices (normal)\n");
482 /* Fatal, but this situation should never occur */
483 }
484 if (snd_device_free_all(card, SNDRV_DEV_CMD_POST) < 0) {
485 snd_printk(KERN_ERR "unable to free all devices (post)\n");
486 /* Fatal, but this situation should never occur */
487 }
488 if (card->private_free)
489 card->private_free(card);
Takashi Iwai746d4a02006-06-23 14:37:59 +0200490 snd_info_free_entry(card->proc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (snd_info_card_free(card) < 0) {
492 snd_printk(KERN_WARNING "unable to free card info\n");
493 /* Not fatal error */
494 }
Takashi Iwaic4614822006-06-23 14:38:23 +0200495 kfree(card);
496 return 0;
497}
498
Takashi Iwaic4614822006-06-23 14:38:23 +0200499int snd_card_free_when_closed(struct snd_card *card)
500{
501 int free_now = 0;
Takashi Iwaif18638d2008-04-17 12:52:02 +0200502 int ret = snd_card_disconnect(card);
Takashi Iwaic4614822006-06-23 14:38:23 +0200503 if (ret)
504 return ret;
505
506 spin_lock(&card->files_lock);
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100507 if (list_empty(&card->files_list))
Takashi Iwaic4614822006-06-23 14:38:23 +0200508 free_now = 1;
509 else
510 card->free_on_last_close = 1;
511 spin_unlock(&card->files_lock);
512
513 if (free_now)
514 snd_card_do_free(card);
515 return 0;
516}
517
518EXPORT_SYMBOL(snd_card_free_when_closed);
519
520int snd_card_free(struct snd_card *card)
521{
Takashi Iwaif18638d2008-04-17 12:52:02 +0200522 int ret = snd_card_disconnect(card);
Takashi Iwaic4614822006-06-23 14:38:23 +0200523 if (ret)
524 return ret;
525
526 /* wait, until all devices are ready for the free operation */
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100527 wait_event(card->shutdown_sleep, list_empty(&card->files_list));
Takashi Iwaic4614822006-06-23 14:38:23 +0200528 snd_card_do_free(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return 0;
530}
531
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200532EXPORT_SYMBOL(snd_card_free);
533
Jaroslav Kysela5fdc18d2009-06-04 00:12:18 +0200534static void snd_card_set_id_no_lock(struct snd_card *card, const char *nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Clemens Ladischd0015442005-11-20 14:09:05 +0100536 int i, len, idx_flag = 0, loops = SNDRV_CARDS;
Jaroslav Kysela10a8ebb2009-06-02 12:02:38 +0200537 const char *spos, *src;
538 char *id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Jaroslav Kysela10a8ebb2009-06-02 12:02:38 +0200540 if (nid == NULL) {
541 id = card->shortname;
542 spos = src = id;
543 while (*id != '\0') {
544 if (*id == ' ')
545 spos = id + 1;
546 id++;
547 }
548 } else {
549 spos = src = nid;
Takashi Iwaie7df2a32012-03-09 17:41:53 +0100550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 id = card->id;
552 while (*spos != '\0' && !isalnum(*spos))
553 spos++;
554 if (isdigit(*spos))
Jaroslav Kysela10a8ebb2009-06-02 12:02:38 +0200555 *id++ = isalpha(src[0]) ? src[0] : 'D';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 while (*spos != '\0' && (size_t)(id - card->id) < sizeof(card->id) - 1) {
557 if (isalnum(*spos))
558 *id++ = *spos;
559 spos++;
560 }
561 *id = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 id = card->id;
564
565 if (*id == '\0')
566 strcpy(id, "Default");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 while (1) {
569 if (loops-- == 0) {
570 snd_printk(KERN_ERR "unable to set card id (%s)\n", id);
571 strcpy(card->id, card->proc_root->name);
572 return;
573 }
574 if (!snd_info_check_reserved_words(id))
575 goto __change;
576 for (i = 0; i < snd_ecards_limit; i++) {
577 if (snd_cards[i] && !strcmp(snd_cards[i]->id, id))
578 goto __change;
579 }
580 break;
581
582 __change:
583 len = strlen(id);
Clemens Ladischd0015442005-11-20 14:09:05 +0100584 if (idx_flag) {
585 if (id[len-1] != '9')
586 id[len-1]++;
Takashi Iwaie7df2a32012-03-09 17:41:53 +0100587 else
Clemens Ladischd0015442005-11-20 14:09:05 +0100588 id[len-1] = 'A';
589 } else if ((size_t)len <= sizeof(card->id) - 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 strcat(id, "_1");
591 idx_flag++;
592 } else {
593 spos = id + len - 2;
594 if ((size_t)len <= sizeof(card->id) - 2)
595 spos++;
Jaroslav Kysela10a8ebb2009-06-02 12:02:38 +0200596 *(char *)spos++ = '_';
597 *(char *)spos++ = '1';
598 *(char *)spos++ = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 idx_flag++;
600 }
601 }
602}
603
Mark Brown872c7822009-06-03 20:43:29 +0100604/**
605 * snd_card_set_id - set card identification name
606 * @card: soundcard structure
607 * @nid: new identification string
608 *
609 * This function sets the card identification and checks for name
610 * collisions.
611 */
612void snd_card_set_id(struct snd_card *card, const char *nid)
613{
Jaroslav Kysela5fdc18d2009-06-04 00:12:18 +0200614 /* check if user specified own card->id */
615 if (card->id[0] != '\0')
616 return;
617 mutex_lock(&snd_card_mutex);
618 snd_card_set_id_no_lock(card, nid);
619 mutex_unlock(&snd_card_mutex);
Mark Brown872c7822009-06-03 20:43:29 +0100620}
Jaroslav Kysela10a8ebb2009-06-02 12:02:38 +0200621EXPORT_SYMBOL(snd_card_set_id);
622
Jaroslav Kysela9fb61982008-11-11 16:51:02 +0100623static ssize_t
624card_id_show_attr(struct device *dev,
625 struct device_attribute *attr, char *buf)
626{
627 struct snd_card *card = dev_get_drvdata(dev);
628 return snprintf(buf, PAGE_SIZE, "%s\n", card ? card->id : "(null)");
629}
630
631static ssize_t
632card_id_store_attr(struct device *dev, struct device_attribute *attr,
633 const char *buf, size_t count)
634{
635 struct snd_card *card = dev_get_drvdata(dev);
636 char buf1[sizeof(card->id)];
637 size_t copy = count > sizeof(card->id) - 1 ?
638 sizeof(card->id) - 1 : count;
639 size_t idx;
640 int c;
641
642 for (idx = 0; idx < copy; idx++) {
643 c = buf[idx];
644 if (!isalnum(c) && c != '_' && c != '-')
645 return -EINVAL;
646 }
647 memcpy(buf1, buf, copy);
648 buf1[copy] = '\0';
649 mutex_lock(&snd_card_mutex);
650 if (!snd_info_check_reserved_words(buf1)) {
651 __exist:
652 mutex_unlock(&snd_card_mutex);
653 return -EEXIST;
654 }
655 for (idx = 0; idx < snd_ecards_limit; idx++) {
Peter Ujfalusi4437ecd2010-09-16 10:26:54 +0300656 if (snd_cards[idx] && !strcmp(snd_cards[idx]->id, buf1)) {
657 if (card == snd_cards[idx])
658 goto __ok;
659 else
660 goto __exist;
661 }
Jaroslav Kysela9fb61982008-11-11 16:51:02 +0100662 }
663 strcpy(card->id, buf1);
Jaroslav Kyselac2eb9c42008-11-12 16:31:37 +0100664 snd_info_card_id_change(card);
Peter Ujfalusi4437ecd2010-09-16 10:26:54 +0300665__ok:
Jaroslav Kysela9fb61982008-11-11 16:51:02 +0100666 mutex_unlock(&snd_card_mutex);
667
668 return count;
669}
670
671static struct device_attribute card_id_attrs =
672 __ATTR(id, S_IRUGO | S_IWUSR, card_id_show_attr, card_id_store_attr);
673
674static ssize_t
675card_number_show_attr(struct device *dev,
676 struct device_attribute *attr, char *buf)
677{
678 struct snd_card *card = dev_get_drvdata(dev);
679 return snprintf(buf, PAGE_SIZE, "%i\n", card ? card->number : -1);
680}
681
682static struct device_attribute card_number_attrs =
683 __ATTR(number, S_IRUGO, card_number_show_attr, NULL);
Jaroslav Kysela9fb61982008-11-11 16:51:02 +0100684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685/**
686 * snd_card_register - register the soundcard
687 * @card: soundcard structure
688 *
689 * This function registers all the devices assigned to the soundcard.
690 * Until calling this, the ALSA control interface is blocked from the
691 * external accesses. Thus, you should call this function at the end
692 * of the initialization of the card.
693 *
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400694 * Returns zero otherwise a negative error code if the registration failed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 */
Takashi Iwai512bbd62005-11-17 13:51:18 +0100696int snd_card_register(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200700 if (snd_BUG_ON(!card))
701 return -EINVAL;
Kay Sievers39aba962010-09-04 22:33:14 -0700702
Takashi Iwai7d2aae12007-01-26 12:40:31 +0100703 if (!card->card_dev) {
Greg Kroah-Hartmanabe9ab82008-07-21 20:03:34 -0700704 card->card_dev = device_create(sound_class, card->dev,
Jaroslav Kysela9fb61982008-11-11 16:51:02 +0100705 MKDEV(0, 0), card,
Greg Kroah-Hartmanabe9ab82008-07-21 20:03:34 -0700706 "card%i", card->number);
Takashi Iwai7d2aae12007-01-26 12:40:31 +0100707 if (IS_ERR(card->card_dev))
708 card->card_dev = NULL;
Greg Kroah-Hartmand80f19f2006-08-07 22:19:37 -0700709 }
Kay Sievers39aba962010-09-04 22:33:14 -0700710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if ((err = snd_device_register_all(card)) < 0)
712 return err;
Takashi Iwai746df942006-05-15 19:49:05 +0200713 mutex_lock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (snd_cards[card->number]) {
715 /* already registered */
Takashi Iwai746df942006-05-15 19:49:05 +0200716 mutex_unlock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return 0;
718 }
Jaroslav Kysela5fdc18d2009-06-04 00:12:18 +0200719 snd_card_set_id_no_lock(card, card->id[0] == '\0' ? NULL : card->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 snd_cards[card->number] = card;
Takashi Iwai746df942006-05-15 19:49:05 +0200721 mutex_unlock(&snd_card_mutex);
Takashi Iwaie28563c2005-12-01 10:42:42 +0100722 init_info_for_card(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723#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
Jaroslav Kysela9fb61982008-11-11 16:51:02 +0100727 if (card->card_dev) {
Hannes Eder2af75292008-11-18 12:25:06 -0500728 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;
Jaroslav Kysela9fb61982008-11-11 16:51:02 +0100734 }
Kay Sievers39aba962010-09-04 22:33:14 -0700735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return 0;
737}
738
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200739EXPORT_SYMBOL(snd_card_register);
740
Takashi Iwaie28563c2005-12-01 10:42:42 +0100741#ifdef CONFIG_PROC_FS
Takashi Iwai6581f4e2006-05-17 17:14:51 +0200742static struct snd_info_entry *snd_card_info_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Takashi Iwaia381a7a2005-11-17 15:55:49 +0100744static void snd_card_info_read(struct snd_info_entry *entry,
745 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
747 int idx, count;
Takashi Iwai512bbd62005-11-17 13:51:18 +0100748 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
Takashi Iwai746df942006-05-15 19:49:05 +0200751 mutex_lock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if ((card = snd_cards[idx]) != NULL) {
753 count++;
Clemens Ladischd0015442005-11-20 14:09:05 +0100754 snd_iprintf(buffer, "%2i [%-15s]: %s - %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 idx,
756 card->id,
757 card->driver,
758 card->shortname);
Clemens Ladischd0015442005-11-20 14:09:05 +0100759 snd_iprintf(buffer, " %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 card->longname);
761 }
Takashi Iwai746df942006-05-15 19:49:05 +0200762 mutex_unlock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764 if (!count)
765 snd_iprintf(buffer, "--- no soundcards ---\n");
766}
767
Takashi Iwaie28563c2005-12-01 10:42:42 +0100768#ifdef CONFIG_SND_OSSEMUL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Takashi Iwai512bbd62005-11-17 13:51:18 +0100770void snd_card_info_read_oss(struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 int idx, count;
Takashi Iwai512bbd62005-11-17 13:51:18 +0100773 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
Takashi Iwai746df942006-05-15 19:49:05 +0200776 mutex_lock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if ((card = snd_cards[idx]) != NULL) {
778 count++;
779 snd_iprintf(buffer, "%s\n", card->longname);
780 }
Takashi Iwai746df942006-05-15 19:49:05 +0200781 mutex_unlock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
783 if (!count) {
784 snd_iprintf(buffer, "--- no soundcards ---\n");
785 }
786}
787
788#endif
789
790#ifdef MODULE
Takashi Iwai512bbd62005-11-17 13:51:18 +0100791static struct snd_info_entry *snd_card_module_info_entry;
792static void snd_card_module_info_read(struct snd_info_entry *entry,
793 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
795 int idx;
Takashi Iwai512bbd62005-11-17 13:51:18 +0100796 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 for (idx = 0; idx < SNDRV_CARDS; idx++) {
Takashi Iwai746df942006-05-15 19:49:05 +0200799 mutex_lock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if ((card = snd_cards[idx]) != NULL)
Clemens Ladischd0015442005-11-20 14:09:05 +0100801 snd_iprintf(buffer, "%2i %s\n",
802 idx, card->module->name);
Takashi Iwai746df942006-05-15 19:49:05 +0200803 mutex_unlock(&snd_card_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805}
806#endif
807
808int __init snd_card_info_init(void)
809{
Takashi Iwai512bbd62005-11-17 13:51:18 +0100810 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 entry = snd_info_create_module_entry(THIS_MODULE, "cards", NULL);
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200813 if (! entry)
814 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 entry->c.text.read = snd_card_info_read;
816 if (snd_info_register(entry) < 0) {
817 snd_info_free_entry(entry);
818 return -ENOMEM;
819 }
820 snd_card_info_entry = entry;
821
822#ifdef MODULE
823 entry = snd_info_create_module_entry(THIS_MODULE, "modules", NULL);
824 if (entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 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;
830 }
831#endif
832
833 return 0;
834}
835
836int __exit snd_card_info_done(void)
837{
Takashi Iwai746d4a02006-06-23 14:37:59 +0200838 snd_info_free_entry(snd_card_info_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839#ifdef MODULE
Takashi Iwai746d4a02006-06-23 14:37:59 +0200840 snd_info_free_entry(snd_card_module_info_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841#endif
842 return 0;
843}
844
Takashi Iwaie28563c2005-12-01 10:42:42 +0100845#endif /* CONFIG_PROC_FS */
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847/**
848 * snd_component_add - add a component string
849 * @card: soundcard structure
850 * @component: the component id string
851 *
852 * This function adds the component id string to the supported list.
853 * The component can be referred from the alsa-lib.
854 *
855 * Returns zero otherwise a negative error code.
856 */
857
Takashi Iwai512bbd62005-11-17 13:51:18 +0100858int snd_component_add(struct snd_card *card, const char *component)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
860 char *ptr;
861 int len = strlen(component);
862
863 ptr = strstr(card->components, component);
864 if (ptr != NULL) {
865 if (ptr[len] == '\0' || ptr[len] == ' ') /* already there */
866 return 1;
867 }
868 if (strlen(card->components) + 1 + len + 1 > sizeof(card->components)) {
869 snd_BUG();
870 return -ENOMEM;
871 }
872 if (card->components[0] != '\0')
873 strcat(card->components, " ");
874 strcat(card->components, component);
875 return 0;
876}
877
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200878EXPORT_SYMBOL(snd_component_add);
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880/**
881 * snd_card_file_add - add the file to the file list of the card
882 * @card: soundcard structure
883 * @file: file pointer
884 *
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.
888 *
889 * Returns zero or a negative error code.
890 */
Takashi Iwai512bbd62005-11-17 13:51:18 +0100891int snd_card_file_add(struct snd_card *card, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
893 struct snd_monitor_file *mfile;
894
895 mfile = kmalloc(sizeof(*mfile), GFP_KERNEL);
896 if (mfile == NULL)
897 return -ENOMEM;
898 mfile->file = file;
Karsten Wiesea9edfc62006-10-06 16:08:27 +0200899 mfile->disconnected_f_op = NULL;
Takashi Iwaia45e3d62011-03-24 09:50:15 +0100900 INIT_LIST_HEAD(&mfile->shutdown_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 spin_lock(&card->files_lock);
902 if (card->shutdown) {
903 spin_unlock(&card->files_lock);
904 kfree(mfile);
905 return -ENODEV;
906 }
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100907 list_add(&mfile->list, &card->files_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 spin_unlock(&card->files_lock);
909 return 0;
910}
911
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200912EXPORT_SYMBOL(snd_card_file_add);
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914/**
915 * snd_card_file_remove - remove the file from the file list
916 * @card: soundcard structure
917 * @file: file pointer
918 *
919 * This function removes the file formerly added to the card via
920 * snd_card_file_add() function.
Takashi Iwai2b29b132006-06-23 14:38:26 +0200921 * If all files are removed and snd_card_free_when_closed() was
922 * called beforehand, it processes the pending release of
923 * resources.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 *
925 * Returns zero or a negative error code.
926 */
Takashi Iwai512bbd62005-11-17 13:51:18 +0100927int snd_card_file_remove(struct snd_card *card, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100929 struct snd_monitor_file *mfile, *found = NULL;
Takashi Iwaic4614822006-06-23 14:38:23 +0200930 int last_close = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 spin_lock(&card->files_lock);
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100933 list_for_each_entry(mfile, &card->files_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (mfile->file == file) {
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100935 list_del(&mfile->list);
Takashi Iwaia45e3d62011-03-24 09:50:15 +0100936 spin_lock(&shutdown_lock);
937 list_del(&mfile->shutdown_list);
938 spin_unlock(&shutdown_lock);
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100939 if (mfile->disconnected_f_op)
940 fops_put(mfile->disconnected_f_op);
941 found = mfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 break;
943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100945 if (list_empty(&card->files_list))
Takashi Iwaic4614822006-06-23 14:38:23 +0200946 last_close = 1;
947 spin_unlock(&card->files_lock);
948 if (last_close) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 wake_up(&card->shutdown_sleep);
Takashi Iwaic4614822006-06-23 14:38:23 +0200950 if (card->free_on_last_close)
951 snd_card_do_free(card);
952 }
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100953 if (!found) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 snd_printk(KERN_ERR "ALSA card file remove problem (%p)\n", file);
955 return -ENOENT;
956 }
Takashi Iwai118dd6b2009-02-23 16:35:21 +0100957 kfree(found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return 0;
959}
960
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200961EXPORT_SYMBOL(snd_card_file_remove);
962
Joonwoo Park6fb64392013-08-07 18:59:09 -0700963/**
964 * snd_card_change_online_state - mark card's online/offline state
965 * @card: Card to mark
966 * @online: whether online of offline
967 *
968 * Mutes the DAI DAC.
969 */
970void snd_card_change_online_state(struct snd_card *card, int online)
971{
972 snd_printd("snd card %s state change %d -> %d\n",
973 card->shortname, !card->offline, online);
974 card->offline = !online;
975 /* make sure offline is updated prior to wake up */
976 wmb();
977 xchg(&card->offline_change, 1);
978 wake_up_interruptible(&card->offline_poll_wait);
979}
980EXPORT_SYMBOL(snd_card_change_online_state);
981
982/**
983 * snd_card_is_online_state - return true if card is online state
984 * @card: Card to query
985 */
986bool snd_card_is_online_state(struct snd_card *card)
987{
988 return !card->offline;
989}
990EXPORT_SYMBOL(snd_card_is_online_state);
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992#ifdef CONFIG_PM
993/**
994 * snd_power_wait - wait until the power-state is changed.
995 * @card: soundcard structure
996 * @power_state: expected power state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 *
998 * Waits until the power-state is changed.
999 *
1000 * Note: the power lock must be active before call.
1001 */
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001002int snd_power_wait(struct snd_card *card, unsigned int power_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
1004 wait_queue_t wait;
1005 int result = 0;
1006
1007 /* fastpath */
1008 if (snd_power_get_state(card) == power_state)
1009 return 0;
1010 init_waitqueue_entry(&wait, current);
1011 add_wait_queue(&card->power_sleep, &wait);
1012 while (1) {
1013 if (card->shutdown) {
1014 result = -ENODEV;
1015 break;
1016 }
1017 if (snd_power_get_state(card) == power_state)
1018 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 set_current_state(TASK_UNINTERRUPTIBLE);
1020 snd_power_unlock(card);
1021 schedule_timeout(30 * HZ);
1022 snd_power_lock(card);
1023 }
1024 remove_wait_queue(&card->power_sleep, &wait);
1025 return result;
1026}
1027
Takashi Iwaic0d3fb32006-04-28 15:13:39 +02001028EXPORT_SYMBOL(snd_power_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029#endif /* CONFIG_PM */