Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Initialization routines |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 3 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/init.h> |
| 23 | #include <linux/sched.h> |
| 24 | #include <linux/file.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/time.h> |
| 27 | #include <linux/ctype.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/pm.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <sound/core.h> |
| 31 | #include <sound/control.h> |
| 32 | #include <sound/info.h> |
| 33 | |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 34 | static DEFINE_SPINLOCK(shutdown_lock); |
| 35 | static LIST_HEAD(shutdown_files); |
| 36 | |
Arjan van de Ven | 9c2e08c | 2007-02-12 00:55:37 -0800 | [diff] [blame] | 37 | static const struct file_operations snd_shutdown_f_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Takashi Iwai | 6581f4e | 2006-05-17 17:14:51 +0200 | [diff] [blame] | 39 | static unsigned int snd_cards_lock; /* locked for registering/using */ |
| 40 | struct snd_card *snd_cards[SNDRV_CARDS]; |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 41 | EXPORT_SYMBOL(snd_cards); |
| 42 | |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 43 | static DEFINE_MUTEX(snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Takashi Iwai | 304cd07 | 2007-10-26 15:10:15 +0200 | [diff] [blame] | 45 | static char *slots[SNDRV_CARDS]; |
| 46 | module_param_array(slots, charp, NULL, 0444); |
| 47 | MODULE_PARM_DESC(slots, "Module names assigned to the slots."); |
| 48 | |
| 49 | /* return non-zero if the given index is already reserved for another |
| 50 | * module via slots option |
| 51 | */ |
| 52 | static int module_slot_mismatch(struct module *module, int idx) |
| 53 | { |
| 54 | #ifdef MODULE |
| 55 | char *s1, *s2; |
| 56 | if (!module || !module->name || !slots[idx]) |
| 57 | return 0; |
| 58 | s1 = slots[idx]; |
| 59 | s2 = module->name; |
| 60 | /* compare module name strings |
| 61 | * hyphens are handled as equivalent with underscore |
| 62 | */ |
| 63 | for (;;) { |
| 64 | char c1 = *s1++; |
| 65 | char c2 = *s2++; |
| 66 | if (c1 == '-') |
| 67 | c1 = '_'; |
| 68 | if (c2 == '-') |
| 69 | c2 = '_'; |
| 70 | if (c1 != c2) |
| 71 | return 1; |
| 72 | if (!c1) |
| 73 | break; |
| 74 | } |
| 75 | #endif |
| 76 | return 0; |
| 77 | } |
| 78 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE) |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 80 | int (*snd_mixer_oss_notify_callback)(struct snd_card *card, int free_flag); |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 81 | EXPORT_SYMBOL(snd_mixer_oss_notify_callback); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | #endif |
| 83 | |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 84 | #ifdef CONFIG_PROC_FS |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 85 | static void snd_card_id_read(struct snd_info_entry *entry, |
| 86 | struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
| 88 | snd_iprintf(buffer, "%s\n", entry->card->id); |
| 89 | } |
| 90 | |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 91 | static inline int init_info_for_card(struct snd_card *card) |
| 92 | { |
| 93 | int err; |
| 94 | struct snd_info_entry *entry; |
| 95 | |
| 96 | if ((err = snd_info_card_register(card)) < 0) { |
| 97 | snd_printd("unable to create card info\n"); |
| 98 | return err; |
| 99 | } |
| 100 | if ((entry = snd_info_create_card_entry(card, "id", card->proc_root)) == NULL) { |
| 101 | snd_printd("unable to create card entry\n"); |
| 102 | return err; |
| 103 | } |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 104 | entry->c.text.read = snd_card_id_read; |
| 105 | if (snd_info_register(entry) < 0) { |
| 106 | snd_info_free_entry(entry); |
| 107 | entry = NULL; |
| 108 | } |
| 109 | card->proc_id = entry; |
| 110 | return 0; |
| 111 | } |
| 112 | #else /* !CONFIG_PROC_FS */ |
| 113 | #define init_info_for_card(card) |
| 114 | #endif |
| 115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | /** |
| 117 | * snd_card_new - create and initialize a soundcard structure |
| 118 | * @idx: card index (address) [0 ... (SNDRV_CARDS-1)] |
| 119 | * @xid: card identification (ASCII string) |
| 120 | * @module: top level module for locking |
| 121 | * @extra_size: allocate this extra size after the main soundcard structure |
| 122 | * |
| 123 | * Creates and initializes a soundcard structure. |
| 124 | * |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 125 | * Returns kmallocated snd_card structure. Creates the ALSA control interface |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | * (which is blocked until snd_card_register function is called). |
| 127 | */ |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 128 | struct snd_card *snd_card_new(int idx, const char *xid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | struct module *module, int extra_size) |
| 130 | { |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 131 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | int err; |
| 133 | |
| 134 | if (extra_size < 0) |
| 135 | extra_size = 0; |
Takashi Iwai | ca2c096 | 2005-09-09 14:20:23 +0200 | [diff] [blame] | 136 | card = kzalloc(sizeof(*card) + extra_size, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | if (card == NULL) |
| 138 | return NULL; |
| 139 | if (xid) { |
| 140 | if (!snd_info_check_reserved_words(xid)) |
| 141 | goto __error; |
| 142 | strlcpy(card->id, xid, sizeof(card->id)); |
| 143 | } |
| 144 | err = 0; |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 145 | mutex_lock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | if (idx < 0) { |
| 147 | int idx2; |
| 148 | for (idx2 = 0; idx2 < SNDRV_CARDS; idx2++) |
Oliver Neukum | 5c33dd7 | 2007-01-16 17:49:21 +0100 | [diff] [blame] | 149 | /* idx == -1 == 0xffff means: take any free slot */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | if (~snd_cards_lock & idx & 1<<idx2) { |
Takashi Iwai | 304cd07 | 2007-10-26 15:10:15 +0200 | [diff] [blame] | 151 | if (module_slot_mismatch(module, idx2)) |
| 152 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | idx = idx2; |
| 154 | if (idx >= snd_ecards_limit) |
| 155 | snd_ecards_limit = idx + 1; |
| 156 | break; |
| 157 | } |
Oliver Neukum | 5c33dd7 | 2007-01-16 17:49:21 +0100 | [diff] [blame] | 158 | } else { |
| 159 | if (idx < snd_ecards_limit) { |
| 160 | if (snd_cards_lock & (1 << idx)) |
| 161 | err = -EBUSY; /* invalid */ |
| 162 | } else { |
| 163 | if (idx < SNDRV_CARDS) |
| 164 | snd_ecards_limit = idx + 1; /* increase the limit */ |
| 165 | else |
| 166 | err = -ENODEV; |
| 167 | } |
| 168 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | if (idx < 0 || err < 0) { |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 170 | mutex_unlock(&snd_card_mutex); |
Oliver Neukum | 5c33dd7 | 2007-01-16 17:49:21 +0100 | [diff] [blame] | 171 | snd_printk(KERN_ERR "cannot find the slot for index %d (range 0-%i), error: %d\n", |
| 172 | idx, snd_ecards_limit - 1, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | goto __error; |
| 174 | } |
| 175 | snd_cards_lock |= 1 << idx; /* lock it */ |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 176 | mutex_unlock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | card->number = idx; |
| 178 | card->module = module; |
| 179 | INIT_LIST_HEAD(&card->devices); |
| 180 | init_rwsem(&card->controls_rwsem); |
| 181 | rwlock_init(&card->ctl_files_rwlock); |
| 182 | INIT_LIST_HEAD(&card->controls); |
| 183 | INIT_LIST_HEAD(&card->ctl_files); |
| 184 | spin_lock_init(&card->files_lock); |
| 185 | init_waitqueue_head(&card->shutdown_sleep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | #ifdef CONFIG_PM |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 187 | mutex_init(&card->power_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | init_waitqueue_head(&card->power_sleep); |
| 189 | #endif |
| 190 | /* the control interface cannot be accessed from the user space until */ |
| 191 | /* snd_cards_bitmask and snd_cards are set with snd_card_register */ |
| 192 | if ((err = snd_ctl_create(card)) < 0) { |
| 193 | snd_printd("unable to register control minors\n"); |
| 194 | goto __error; |
| 195 | } |
| 196 | if ((err = snd_info_card_create(card)) < 0) { |
| 197 | snd_printd("unable to create card info\n"); |
| 198 | goto __error_ctl; |
| 199 | } |
| 200 | if (extra_size > 0) |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 201 | card->private_data = (char *)card + sizeof(struct snd_card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | return card; |
| 203 | |
| 204 | __error_ctl: |
| 205 | snd_device_free_all(card, SNDRV_DEV_CMD_PRE); |
| 206 | __error: |
| 207 | kfree(card); |
| 208 | return NULL; |
| 209 | } |
| 210 | |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 211 | EXPORT_SYMBOL(snd_card_new); |
| 212 | |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 213 | /* return non-zero if a card is already locked */ |
| 214 | int snd_card_locked(int card) |
| 215 | { |
| 216 | int locked; |
| 217 | |
| 218 | mutex_lock(&snd_card_mutex); |
| 219 | locked = snd_cards_lock & (1 << card); |
| 220 | mutex_unlock(&snd_card_mutex); |
| 221 | return locked; |
| 222 | } |
| 223 | |
Clemens Ladisch | b3b0abe | 2006-03-03 14:08:43 +0100 | [diff] [blame] | 224 | static loff_t snd_disconnect_llseek(struct file *file, loff_t offset, int orig) |
| 225 | { |
| 226 | return -ENODEV; |
| 227 | } |
| 228 | |
| 229 | static ssize_t snd_disconnect_read(struct file *file, char __user *buf, |
| 230 | size_t count, loff_t *offset) |
| 231 | { |
| 232 | return -ENODEV; |
| 233 | } |
| 234 | |
| 235 | static ssize_t snd_disconnect_write(struct file *file, const char __user *buf, |
| 236 | size_t count, loff_t *offset) |
| 237 | { |
| 238 | return -ENODEV; |
| 239 | } |
| 240 | |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 241 | static int snd_disconnect_release(struct inode *inode, struct file *file) |
| 242 | { |
| 243 | struct snd_monitor_file *df = NULL, *_df; |
| 244 | |
| 245 | spin_lock(&shutdown_lock); |
| 246 | list_for_each_entry(_df, &shutdown_files, shutdown_list) { |
| 247 | if (_df->file == file) { |
| 248 | df = _df; |
| 249 | break; |
| 250 | } |
| 251 | } |
| 252 | spin_unlock(&shutdown_lock); |
| 253 | |
| 254 | if (likely(df)) |
| 255 | return df->disconnected_f_op->release(inode, file); |
| 256 | |
Harvey Harrison | 9bf8e7d | 2008-03-03 15:32:18 -0800 | [diff] [blame] | 257 | panic("%s(%p, %p) failed!", __func__, inode, file); |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 258 | } |
| 259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | static unsigned int snd_disconnect_poll(struct file * file, poll_table * wait) |
| 261 | { |
| 262 | return POLLERR | POLLNVAL; |
| 263 | } |
| 264 | |
Clemens Ladisch | b3b0abe | 2006-03-03 14:08:43 +0100 | [diff] [blame] | 265 | static long snd_disconnect_ioctl(struct file *file, |
| 266 | unsigned int cmd, unsigned long arg) |
| 267 | { |
| 268 | return -ENODEV; |
| 269 | } |
| 270 | |
| 271 | static int snd_disconnect_mmap(struct file *file, struct vm_area_struct *vma) |
| 272 | { |
| 273 | return -ENODEV; |
| 274 | } |
| 275 | |
| 276 | static int snd_disconnect_fasync(int fd, struct file *file, int on) |
| 277 | { |
| 278 | return -ENODEV; |
| 279 | } |
| 280 | |
Arjan van de Ven | 9c2e08c | 2007-02-12 00:55:37 -0800 | [diff] [blame] | 281 | static const struct file_operations snd_shutdown_f_ops = |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 282 | { |
| 283 | .owner = THIS_MODULE, |
| 284 | .llseek = snd_disconnect_llseek, |
| 285 | .read = snd_disconnect_read, |
| 286 | .write = snd_disconnect_write, |
| 287 | .release = snd_disconnect_release, |
| 288 | .poll = snd_disconnect_poll, |
| 289 | .unlocked_ioctl = snd_disconnect_ioctl, |
| 290 | #ifdef CONFIG_COMPAT |
| 291 | .compat_ioctl = snd_disconnect_ioctl, |
| 292 | #endif |
| 293 | .mmap = snd_disconnect_mmap, |
| 294 | .fasync = snd_disconnect_fasync |
| 295 | }; |
| 296 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | /** |
| 298 | * snd_card_disconnect - disconnect all APIs from the file-operations (user space) |
| 299 | * @card: soundcard structure |
| 300 | * |
| 301 | * Disconnects all APIs from the file-operations (user space). |
| 302 | * |
| 303 | * Returns zero, otherwise a negative error code. |
| 304 | * |
| 305 | * Note: The current implementation replaces all active file->f_op with special |
| 306 | * dummy file operations (they do nothing except release). |
| 307 | */ |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 308 | int snd_card_disconnect(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | { |
| 310 | struct snd_monitor_file *mfile; |
| 311 | struct file *file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | int err; |
| 313 | |
| 314 | spin_lock(&card->files_lock); |
| 315 | if (card->shutdown) { |
| 316 | spin_unlock(&card->files_lock); |
| 317 | return 0; |
| 318 | } |
| 319 | card->shutdown = 1; |
| 320 | spin_unlock(&card->files_lock); |
| 321 | |
| 322 | /* phase 1: disable fops (user space) operations for ALSA API */ |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 323 | mutex_lock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | snd_cards[card->number] = NULL; |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 325 | mutex_unlock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
| 327 | /* phase 2: replace file->f_op with special dummy operations */ |
| 328 | |
| 329 | spin_lock(&card->files_lock); |
| 330 | mfile = card->files; |
| 331 | while (mfile) { |
| 332 | file = mfile->file; |
| 333 | |
| 334 | /* it's critical part, use endless loop */ |
| 335 | /* we have no room to fail */ |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 336 | mfile->disconnected_f_op = mfile->file->f_op; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 338 | spin_lock(&shutdown_lock); |
| 339 | list_add(&mfile->shutdown_list, &shutdown_files); |
| 340 | spin_unlock(&shutdown_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 342 | mfile->file->f_op = &snd_shutdown_f_ops; |
Miguel Boton | bc9abce | 2008-01-13 12:03:53 +0100 | [diff] [blame] | 343 | fops_get(mfile->file->f_op); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
| 345 | mfile = mfile->next; |
| 346 | } |
| 347 | spin_unlock(&card->files_lock); |
| 348 | |
| 349 | /* phase 3: notify all connected devices about disconnection */ |
| 350 | /* at this point, they cannot respond to any calls except release() */ |
| 351 | |
| 352 | #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE) |
| 353 | if (snd_mixer_oss_notify_callback) |
| 354 | snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_DISCONNECT); |
| 355 | #endif |
| 356 | |
| 357 | /* notify all devices that we are disconnected */ |
| 358 | err = snd_device_disconnect_all(card); |
| 359 | if (err < 0) |
| 360 | snd_printk(KERN_ERR "not all devices for card %i can be disconnected\n", card->number); |
| 361 | |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 362 | snd_info_card_disconnect(card); |
Takashi Iwai | 73d38b1 | 2008-04-17 12:50:47 +0200 | [diff] [blame^] | 363 | #ifndef CONFIG_SYSFS_DEPRECATED |
| 364 | if (card->card_dev) { |
| 365 | device_unregister(card->card_dev); |
| 366 | card->card_dev = NULL; |
| 367 | } |
| 368 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | return 0; |
| 370 | } |
| 371 | |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 372 | EXPORT_SYMBOL(snd_card_disconnect); |
| 373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | /** |
| 375 | * snd_card_free - frees given soundcard structure |
| 376 | * @card: soundcard structure |
| 377 | * |
| 378 | * This function releases the soundcard structure and the all assigned |
| 379 | * devices automatically. That is, you don't have to release the devices |
| 380 | * by yourself. |
| 381 | * |
| 382 | * Returns zero. Frees all associated devices and frees the control |
| 383 | * interface associated to given soundcard. |
| 384 | */ |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 385 | static int snd_card_do_free(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE) |
| 388 | if (snd_mixer_oss_notify_callback) |
| 389 | snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_FREE); |
| 390 | #endif |
| 391 | if (snd_device_free_all(card, SNDRV_DEV_CMD_PRE) < 0) { |
| 392 | snd_printk(KERN_ERR "unable to free all devices (pre)\n"); |
| 393 | /* Fatal, but this situation should never occur */ |
| 394 | } |
| 395 | if (snd_device_free_all(card, SNDRV_DEV_CMD_NORMAL) < 0) { |
| 396 | snd_printk(KERN_ERR "unable to free all devices (normal)\n"); |
| 397 | /* Fatal, but this situation should never occur */ |
| 398 | } |
| 399 | if (snd_device_free_all(card, SNDRV_DEV_CMD_POST) < 0) { |
| 400 | snd_printk(KERN_ERR "unable to free all devices (post)\n"); |
| 401 | /* Fatal, but this situation should never occur */ |
| 402 | } |
| 403 | if (card->private_free) |
| 404 | card->private_free(card); |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 405 | snd_info_free_entry(card->proc_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | if (snd_info_card_free(card) < 0) { |
| 407 | snd_printk(KERN_WARNING "unable to free card info\n"); |
| 408 | /* Not fatal error */ |
| 409 | } |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 410 | kfree(card); |
| 411 | return 0; |
| 412 | } |
| 413 | |
| 414 | static int snd_card_free_prepare(struct snd_card *card) |
| 415 | { |
| 416 | if (card == NULL) |
| 417 | return -EINVAL; |
| 418 | (void) snd_card_disconnect(card); |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 419 | mutex_lock(&snd_card_mutex); |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 420 | snd_cards[card->number] = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | snd_cards_lock &= ~(1 << card->number); |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 422 | mutex_unlock(&snd_card_mutex); |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 423 | #ifdef CONFIG_PM |
| 424 | wake_up(&card->power_sleep); |
| 425 | #endif |
| 426 | return 0; |
| 427 | } |
| 428 | |
| 429 | int snd_card_free_when_closed(struct snd_card *card) |
| 430 | { |
| 431 | int free_now = 0; |
| 432 | int ret = snd_card_free_prepare(card); |
| 433 | if (ret) |
| 434 | return ret; |
| 435 | |
| 436 | spin_lock(&card->files_lock); |
| 437 | if (card->files == NULL) |
| 438 | free_now = 1; |
| 439 | else |
| 440 | card->free_on_last_close = 1; |
| 441 | spin_unlock(&card->files_lock); |
| 442 | |
| 443 | if (free_now) |
| 444 | snd_card_do_free(card); |
| 445 | return 0; |
| 446 | } |
| 447 | |
| 448 | EXPORT_SYMBOL(snd_card_free_when_closed); |
| 449 | |
| 450 | int snd_card_free(struct snd_card *card) |
| 451 | { |
| 452 | int ret = snd_card_free_prepare(card); |
| 453 | if (ret) |
| 454 | return ret; |
| 455 | |
| 456 | /* wait, until all devices are ready for the free operation */ |
| 457 | wait_event(card->shutdown_sleep, card->files == NULL); |
| 458 | snd_card_do_free(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | return 0; |
| 460 | } |
| 461 | |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 462 | EXPORT_SYMBOL(snd_card_free); |
| 463 | |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 464 | static void choose_default_id(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | { |
Clemens Ladisch | d001544 | 2005-11-20 14:09:05 +0100 | [diff] [blame] | 466 | int i, len, idx_flag = 0, loops = SNDRV_CARDS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | char *id, *spos; |
| 468 | |
| 469 | id = spos = card->shortname; |
| 470 | while (*id != '\0') { |
| 471 | if (*id == ' ') |
| 472 | spos = id + 1; |
| 473 | id++; |
| 474 | } |
| 475 | id = card->id; |
| 476 | while (*spos != '\0' && !isalnum(*spos)) |
| 477 | spos++; |
| 478 | if (isdigit(*spos)) |
| 479 | *id++ = isalpha(card->shortname[0]) ? card->shortname[0] : 'D'; |
| 480 | while (*spos != '\0' && (size_t)(id - card->id) < sizeof(card->id) - 1) { |
| 481 | if (isalnum(*spos)) |
| 482 | *id++ = *spos; |
| 483 | spos++; |
| 484 | } |
| 485 | *id = '\0'; |
| 486 | |
| 487 | id = card->id; |
| 488 | |
| 489 | if (*id == '\0') |
| 490 | strcpy(id, "default"); |
| 491 | |
| 492 | while (1) { |
| 493 | if (loops-- == 0) { |
| 494 | snd_printk(KERN_ERR "unable to choose default card id (%s)\n", id); |
| 495 | strcpy(card->id, card->proc_root->name); |
| 496 | return; |
| 497 | } |
| 498 | if (!snd_info_check_reserved_words(id)) |
| 499 | goto __change; |
| 500 | for (i = 0; i < snd_ecards_limit; i++) { |
| 501 | if (snd_cards[i] && !strcmp(snd_cards[i]->id, id)) |
| 502 | goto __change; |
| 503 | } |
| 504 | break; |
| 505 | |
| 506 | __change: |
| 507 | len = strlen(id); |
Clemens Ladisch | d001544 | 2005-11-20 14:09:05 +0100 | [diff] [blame] | 508 | if (idx_flag) { |
| 509 | if (id[len-1] != '9') |
| 510 | id[len-1]++; |
| 511 | else |
| 512 | id[len-1] = 'A'; |
| 513 | } else if ((size_t)len <= sizeof(card->id) - 3) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | strcat(id, "_1"); |
| 515 | idx_flag++; |
| 516 | } else { |
| 517 | spos = id + len - 2; |
| 518 | if ((size_t)len <= sizeof(card->id) - 2) |
| 519 | spos++; |
| 520 | *spos++ = '_'; |
| 521 | *spos++ = '1'; |
| 522 | *spos++ = '\0'; |
| 523 | idx_flag++; |
| 524 | } |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | /** |
| 529 | * snd_card_register - register the soundcard |
| 530 | * @card: soundcard structure |
| 531 | * |
| 532 | * This function registers all the devices assigned to the soundcard. |
| 533 | * Until calling this, the ALSA control interface is blocked from the |
| 534 | * external accesses. Thus, you should call this function at the end |
| 535 | * of the initialization of the card. |
| 536 | * |
| 537 | * Returns zero otherwise a negative error code if the registrain failed. |
| 538 | */ |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 539 | int snd_card_register(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | { |
| 541 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | |
Takashi Iwai | 7c22f1a | 2005-10-10 11:46:31 +0200 | [diff] [blame] | 543 | snd_assert(card != NULL, return -EINVAL); |
Takashi Iwai | 7d2aae1 | 2007-01-26 12:40:31 +0100 | [diff] [blame] | 544 | #ifndef CONFIG_SYSFS_DEPRECATED |
| 545 | if (!card->card_dev) { |
| 546 | card->card_dev = device_create(sound_class, card->dev, 0, |
| 547 | "card%i", card->number); |
| 548 | if (IS_ERR(card->card_dev)) |
| 549 | card->card_dev = NULL; |
Greg Kroah-Hartman | d80f19f | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 550 | } |
Takashi Iwai | 7d2aae1 | 2007-01-26 12:40:31 +0100 | [diff] [blame] | 551 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | if ((err = snd_device_register_all(card)) < 0) |
| 553 | return err; |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 554 | mutex_lock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | if (snd_cards[card->number]) { |
| 556 | /* already registered */ |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 557 | mutex_unlock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | return 0; |
| 559 | } |
| 560 | if (card->id[0] == '\0') |
| 561 | choose_default_id(card); |
| 562 | snd_cards[card->number] = card; |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 563 | mutex_unlock(&snd_card_mutex); |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 564 | init_info_for_card(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE) |
| 566 | if (snd_mixer_oss_notify_callback) |
| 567 | snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_REGISTER); |
| 568 | #endif |
| 569 | return 0; |
| 570 | } |
| 571 | |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 572 | EXPORT_SYMBOL(snd_card_register); |
| 573 | |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 574 | #ifdef CONFIG_PROC_FS |
Takashi Iwai | 6581f4e | 2006-05-17 17:14:51 +0200 | [diff] [blame] | 575 | static struct snd_info_entry *snd_card_info_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | |
Takashi Iwai | a381a7a | 2005-11-17 15:55:49 +0100 | [diff] [blame] | 577 | static void snd_card_info_read(struct snd_info_entry *entry, |
| 578 | struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | { |
| 580 | int idx, count; |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 581 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | |
| 583 | for (idx = count = 0; idx < SNDRV_CARDS; idx++) { |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 584 | mutex_lock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | if ((card = snd_cards[idx]) != NULL) { |
| 586 | count++; |
Clemens Ladisch | d001544 | 2005-11-20 14:09:05 +0100 | [diff] [blame] | 587 | snd_iprintf(buffer, "%2i [%-15s]: %s - %s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | idx, |
| 589 | card->id, |
| 590 | card->driver, |
| 591 | card->shortname); |
Clemens Ladisch | d001544 | 2005-11-20 14:09:05 +0100 | [diff] [blame] | 592 | snd_iprintf(buffer, " %s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | card->longname); |
| 594 | } |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 595 | mutex_unlock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | } |
| 597 | if (!count) |
| 598 | snd_iprintf(buffer, "--- no soundcards ---\n"); |
| 599 | } |
| 600 | |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 601 | #ifdef CONFIG_SND_OSSEMUL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 603 | void snd_card_info_read_oss(struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | { |
| 605 | int idx, count; |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 606 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | |
| 608 | for (idx = count = 0; idx < SNDRV_CARDS; idx++) { |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 609 | mutex_lock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | if ((card = snd_cards[idx]) != NULL) { |
| 611 | count++; |
| 612 | snd_iprintf(buffer, "%s\n", card->longname); |
| 613 | } |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 614 | mutex_unlock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | } |
| 616 | if (!count) { |
| 617 | snd_iprintf(buffer, "--- no soundcards ---\n"); |
| 618 | } |
| 619 | } |
| 620 | |
| 621 | #endif |
| 622 | |
| 623 | #ifdef MODULE |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 624 | static struct snd_info_entry *snd_card_module_info_entry; |
| 625 | static void snd_card_module_info_read(struct snd_info_entry *entry, |
| 626 | struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | { |
| 628 | int idx; |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 629 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | |
| 631 | for (idx = 0; idx < SNDRV_CARDS; idx++) { |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 632 | mutex_lock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | if ((card = snd_cards[idx]) != NULL) |
Clemens Ladisch | d001544 | 2005-11-20 14:09:05 +0100 | [diff] [blame] | 634 | snd_iprintf(buffer, "%2i %s\n", |
| 635 | idx, card->module->name); |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 636 | mutex_unlock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | } |
| 638 | } |
| 639 | #endif |
| 640 | |
| 641 | int __init snd_card_info_init(void) |
| 642 | { |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 643 | struct snd_info_entry *entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | |
| 645 | entry = snd_info_create_module_entry(THIS_MODULE, "cards", NULL); |
Takashi Iwai | 7c22f1a | 2005-10-10 11:46:31 +0200 | [diff] [blame] | 646 | if (! entry) |
| 647 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | entry->c.text.read = snd_card_info_read; |
| 649 | if (snd_info_register(entry) < 0) { |
| 650 | snd_info_free_entry(entry); |
| 651 | return -ENOMEM; |
| 652 | } |
| 653 | snd_card_info_entry = entry; |
| 654 | |
| 655 | #ifdef MODULE |
| 656 | entry = snd_info_create_module_entry(THIS_MODULE, "modules", NULL); |
| 657 | if (entry) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | entry->c.text.read = snd_card_module_info_read; |
| 659 | if (snd_info_register(entry) < 0) |
| 660 | snd_info_free_entry(entry); |
| 661 | else |
| 662 | snd_card_module_info_entry = entry; |
| 663 | } |
| 664 | #endif |
| 665 | |
| 666 | return 0; |
| 667 | } |
| 668 | |
| 669 | int __exit snd_card_info_done(void) |
| 670 | { |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 671 | snd_info_free_entry(snd_card_info_entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | #ifdef MODULE |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 673 | snd_info_free_entry(snd_card_module_info_entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | #endif |
| 675 | return 0; |
| 676 | } |
| 677 | |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 678 | #endif /* CONFIG_PROC_FS */ |
| 679 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | /** |
| 681 | * snd_component_add - add a component string |
| 682 | * @card: soundcard structure |
| 683 | * @component: the component id string |
| 684 | * |
| 685 | * This function adds the component id string to the supported list. |
| 686 | * The component can be referred from the alsa-lib. |
| 687 | * |
| 688 | * Returns zero otherwise a negative error code. |
| 689 | */ |
| 690 | |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 691 | int snd_component_add(struct snd_card *card, const char *component) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | { |
| 693 | char *ptr; |
| 694 | int len = strlen(component); |
| 695 | |
| 696 | ptr = strstr(card->components, component); |
| 697 | if (ptr != NULL) { |
| 698 | if (ptr[len] == '\0' || ptr[len] == ' ') /* already there */ |
| 699 | return 1; |
| 700 | } |
| 701 | if (strlen(card->components) + 1 + len + 1 > sizeof(card->components)) { |
| 702 | snd_BUG(); |
| 703 | return -ENOMEM; |
| 704 | } |
| 705 | if (card->components[0] != '\0') |
| 706 | strcat(card->components, " "); |
| 707 | strcat(card->components, component); |
| 708 | return 0; |
| 709 | } |
| 710 | |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 711 | EXPORT_SYMBOL(snd_component_add); |
| 712 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | /** |
| 714 | * snd_card_file_add - add the file to the file list of the card |
| 715 | * @card: soundcard structure |
| 716 | * @file: file pointer |
| 717 | * |
| 718 | * This function adds the file to the file linked-list of the card. |
| 719 | * This linked-list is used to keep tracking the connection state, |
| 720 | * and to avoid the release of busy resources by hotplug. |
| 721 | * |
| 722 | * Returns zero or a negative error code. |
| 723 | */ |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 724 | int snd_card_file_add(struct snd_card *card, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | { |
| 726 | struct snd_monitor_file *mfile; |
| 727 | |
| 728 | mfile = kmalloc(sizeof(*mfile), GFP_KERNEL); |
| 729 | if (mfile == NULL) |
| 730 | return -ENOMEM; |
| 731 | mfile->file = file; |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 732 | mfile->disconnected_f_op = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | mfile->next = NULL; |
| 734 | spin_lock(&card->files_lock); |
| 735 | if (card->shutdown) { |
| 736 | spin_unlock(&card->files_lock); |
| 737 | kfree(mfile); |
| 738 | return -ENODEV; |
| 739 | } |
| 740 | mfile->next = card->files; |
| 741 | card->files = mfile; |
| 742 | spin_unlock(&card->files_lock); |
| 743 | return 0; |
| 744 | } |
| 745 | |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 746 | EXPORT_SYMBOL(snd_card_file_add); |
| 747 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | /** |
| 749 | * snd_card_file_remove - remove the file from the file list |
| 750 | * @card: soundcard structure |
| 751 | * @file: file pointer |
| 752 | * |
| 753 | * This function removes the file formerly added to the card via |
| 754 | * snd_card_file_add() function. |
Takashi Iwai | 2b29b13 | 2006-06-23 14:38:26 +0200 | [diff] [blame] | 755 | * If all files are removed and snd_card_free_when_closed() was |
| 756 | * called beforehand, it processes the pending release of |
| 757 | * resources. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | * |
| 759 | * Returns zero or a negative error code. |
| 760 | */ |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 761 | int snd_card_file_remove(struct snd_card *card, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | { |
| 763 | struct snd_monitor_file *mfile, *pfile = NULL; |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 764 | int last_close = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | |
| 766 | spin_lock(&card->files_lock); |
| 767 | mfile = card->files; |
| 768 | while (mfile) { |
| 769 | if (mfile->file == file) { |
| 770 | if (pfile) |
| 771 | pfile->next = mfile->next; |
| 772 | else |
| 773 | card->files = mfile->next; |
| 774 | break; |
| 775 | } |
| 776 | pfile = mfile; |
| 777 | mfile = mfile->next; |
| 778 | } |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 779 | if (mfile && mfile->disconnected_f_op) { |
| 780 | fops_put(mfile->disconnected_f_op); |
| 781 | spin_lock(&shutdown_lock); |
| 782 | list_del(&mfile->shutdown_list); |
| 783 | spin_unlock(&shutdown_lock); |
| 784 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | if (card->files == NULL) |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 786 | last_close = 1; |
| 787 | spin_unlock(&card->files_lock); |
| 788 | if (last_close) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | wake_up(&card->shutdown_sleep); |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 790 | if (card->free_on_last_close) |
| 791 | snd_card_do_free(card); |
| 792 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | if (!mfile) { |
| 794 | snd_printk(KERN_ERR "ALSA card file remove problem (%p)\n", file); |
| 795 | return -ENOENT; |
| 796 | } |
| 797 | kfree(mfile); |
| 798 | return 0; |
| 799 | } |
| 800 | |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 801 | EXPORT_SYMBOL(snd_card_file_remove); |
| 802 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | #ifdef CONFIG_PM |
| 804 | /** |
| 805 | * snd_power_wait - wait until the power-state is changed. |
| 806 | * @card: soundcard structure |
| 807 | * @power_state: expected power state |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | * |
| 809 | * Waits until the power-state is changed. |
| 810 | * |
| 811 | * Note: the power lock must be active before call. |
| 812 | */ |
Takashi Iwai | cbac4b0 | 2006-03-27 12:38:07 +0200 | [diff] [blame] | 813 | int snd_power_wait(struct snd_card *card, unsigned int power_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | { |
| 815 | wait_queue_t wait; |
| 816 | int result = 0; |
| 817 | |
| 818 | /* fastpath */ |
| 819 | if (snd_power_get_state(card) == power_state) |
| 820 | return 0; |
| 821 | init_waitqueue_entry(&wait, current); |
| 822 | add_wait_queue(&card->power_sleep, &wait); |
| 823 | while (1) { |
| 824 | if (card->shutdown) { |
| 825 | result = -ENODEV; |
| 826 | break; |
| 827 | } |
| 828 | if (snd_power_get_state(card) == power_state) |
| 829 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 831 | snd_power_unlock(card); |
| 832 | schedule_timeout(30 * HZ); |
| 833 | snd_power_lock(card); |
| 834 | } |
| 835 | remove_wait_queue(&card->power_sleep, &wait); |
| 836 | return result; |
| 837 | } |
| 838 | |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 839 | EXPORT_SYMBOL(snd_power_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | #endif /* CONFIG_PM */ |