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> |
Paul Gortmaker | da155d5 | 2011-07-15 12:38:28 -0400 | [diff] [blame] | 24 | #include <linux/module.h> |
Paul Gortmaker | 51990e8 | 2012-01-22 11:23:42 -0500 | [diff] [blame] | 25 | #include <linux/device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/file.h> |
| 27 | #include <linux/slab.h> |
| 28 | #include <linux/time.h> |
| 29 | #include <linux/ctype.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/pm.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <sound/core.h> |
| 33 | #include <sound/control.h> |
| 34 | #include <sound/info.h> |
| 35 | |
Takashi Iwai | 82a783f | 2009-09-07 15:50:18 +0200 | [diff] [blame] | 36 | /* monitor files for graceful shutdown (hotplug) */ |
| 37 | struct snd_monitor_file { |
| 38 | struct file *file; |
| 39 | const struct file_operations *disconnected_f_op; |
| 40 | struct list_head shutdown_list; /* still need to shutdown */ |
| 41 | struct list_head list; /* link of monitor files */ |
| 42 | }; |
| 43 | |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 44 | static DEFINE_SPINLOCK(shutdown_lock); |
| 45 | static LIST_HEAD(shutdown_files); |
| 46 | |
Arjan van de Ven | 9c2e08c | 2007-02-12 00:55:37 -0800 | [diff] [blame] | 47 | static const struct file_operations snd_shutdown_f_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Takashi Iwai | 7bb2491 | 2013-05-15 08:46:39 +0200 | [diff] [blame] | 49 | /* locked for registering/using */ |
| 50 | static DECLARE_BITMAP(snd_cards_lock, SNDRV_CARDS); |
Takashi Iwai | 6581f4e | 2006-05-17 17:14:51 +0200 | [diff] [blame] | 51 | struct snd_card *snd_cards[SNDRV_CARDS]; |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 52 | EXPORT_SYMBOL(snd_cards); |
| 53 | |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 54 | static DEFINE_MUTEX(snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Takashi Iwai | 304cd07 | 2007-10-26 15:10:15 +0200 | [diff] [blame] | 56 | static char *slots[SNDRV_CARDS]; |
| 57 | module_param_array(slots, charp, NULL, 0444); |
| 58 | MODULE_PARM_DESC(slots, "Module names assigned to the slots."); |
| 59 | |
Takashi Iwai | a93bbaa | 2008-05-27 17:59:24 +0200 | [diff] [blame] | 60 | /* return non-zero if the given index is reserved for the given |
Takashi Iwai | 304cd07 | 2007-10-26 15:10:15 +0200 | [diff] [blame] | 61 | * module via slots option |
| 62 | */ |
Takashi Iwai | a93bbaa | 2008-05-27 17:59:24 +0200 | [diff] [blame] | 63 | static int module_slot_match(struct module *module, int idx) |
Takashi Iwai | 304cd07 | 2007-10-26 15:10:15 +0200 | [diff] [blame] | 64 | { |
Takashi Iwai | a93bbaa | 2008-05-27 17:59:24 +0200 | [diff] [blame] | 65 | int match = 1; |
Takashi Iwai | 304cd07 | 2007-10-26 15:10:15 +0200 | [diff] [blame] | 66 | #ifdef MODULE |
Takashi Iwai | a93bbaa | 2008-05-27 17:59:24 +0200 | [diff] [blame] | 67 | const char *s1, *s2; |
| 68 | |
Takashi Iwai | 60f6fef | 2013-10-28 12:54:52 +0100 | [diff] [blame] | 69 | if (!module || !*module->name || !slots[idx]) |
Takashi Iwai | 304cd07 | 2007-10-26 15:10:15 +0200 | [diff] [blame] | 70 | return 0; |
Takashi Iwai | a93bbaa | 2008-05-27 17:59:24 +0200 | [diff] [blame] | 71 | |
| 72 | s1 = module->name; |
| 73 | s2 = slots[idx]; |
| 74 | if (*s2 == '!') { |
| 75 | match = 0; /* negative match */ |
| 76 | s2++; |
| 77 | } |
Takashi Iwai | 304cd07 | 2007-10-26 15:10:15 +0200 | [diff] [blame] | 78 | /* 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 Iwai | a93bbaa | 2008-05-27 17:59:24 +0200 | [diff] [blame] | 89 | return !match; |
Takashi Iwai | 304cd07 | 2007-10-26 15:10:15 +0200 | [diff] [blame] | 90 | if (!c1) |
| 91 | break; |
| 92 | } |
Takashi Iwai | a93bbaa | 2008-05-27 17:59:24 +0200 | [diff] [blame] | 93 | #endif /* MODULE */ |
| 94 | return match; |
Takashi Iwai | 304cd07 | 2007-10-26 15:10:15 +0200 | [diff] [blame] | 95 | } |
| 96 | |
Takashi Iwai | 8eeaa2f | 2014-02-10 09:48:47 +0100 | [diff] [blame] | 97 | #if IS_ENABLED(CONFIG_SND_MIXER_OSS) |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 98 | 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] | 99 | EXPORT_SYMBOL(snd_mixer_oss_notify_callback); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | #endif |
| 101 | |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 102 | #ifdef CONFIG_PROC_FS |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 103 | static void snd_card_id_read(struct snd_info_entry *entry, |
| 104 | struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | { |
| 106 | snd_iprintf(buffer, "%s\n", entry->card->id); |
| 107 | } |
| 108 | |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 109 | static 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 Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 122 | entry->c.text.read = snd_card_id_read; |
| 123 | if (snd_info_register(entry) < 0) { |
| 124 | snd_info_free_entry(entry); |
| 125 | entry = NULL; |
| 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 Iwai | deb6596 | 2014-01-23 11:02:15 +0100 | [diff] [blame] | 134 | static 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 | */ |
| 143 | static 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 Iwai | 8bfb181 | 2014-01-29 11:46:11 +0100 | [diff] [blame] | 159 | static int snd_card_do_free(struct snd_card *card); |
Takashi Iwai | 34356db | 2014-01-29 11:54:10 +0100 | [diff] [blame^] | 160 | static const struct attribute_group *card_dev_attr_groups[]; |
Takashi Iwai | 8bfb181 | 2014-01-29 11:46:11 +0100 | [diff] [blame] | 161 | |
| 162 | static void release_card_device(struct device *dev) |
| 163 | { |
| 164 | snd_card_do_free(dev_to_snd_card(dev)); |
| 165 | } |
| 166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | /** |
Takashi Iwai | 393aa9c | 2014-01-29 12:51:12 +0100 | [diff] [blame] | 168 | * snd_card_new - create and initialize a soundcard structure |
| 169 | * @parent: the parent device object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | * @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 Iwai | 53fb1e6 | 2008-12-28 16:32:08 +0100 | [diff] [blame] | 174 | * @card_ret: the pointer to store the created card instance |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | * |
| 176 | * Creates and initializes a soundcard structure. |
| 177 | * |
Takashi Iwai | 53fb1e6 | 2008-12-28 16:32:08 +0100 | [diff] [blame] | 178 | * 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 Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 182 | * Return: Zero if successful or a negative error code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | */ |
Takashi Iwai | 393aa9c | 2014-01-29 12:51:12 +0100 | [diff] [blame] | 184 | int snd_card_new(struct device *parent, int idx, const char *xid, |
Takashi Iwai | 53fb1e6 | 2008-12-28 16:32:08 +0100 | [diff] [blame] | 185 | struct module *module, int extra_size, |
| 186 | struct snd_card **card_ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | { |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 188 | struct snd_card *card; |
Takashi Iwai | deb6596 | 2014-01-23 11:02:15 +0100 | [diff] [blame] | 189 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
Takashi Iwai | 53fb1e6 | 2008-12-28 16:32:08 +0100 | [diff] [blame] | 191 | if (snd_BUG_ON(!card_ret)) |
| 192 | return -EINVAL; |
| 193 | *card_ret = NULL; |
| 194 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | if (extra_size < 0) |
| 196 | extra_size = 0; |
Takashi Iwai | ca2c096 | 2005-09-09 14:20:23 +0200 | [diff] [blame] | 197 | card = kzalloc(sizeof(*card) + extra_size, GFP_KERNEL); |
Takashi Iwai | 53fb1e6 | 2008-12-28 16:32:08 +0100 | [diff] [blame] | 198 | if (!card) |
| 199 | return -ENOMEM; |
Takashi Iwai | 8bfb181 | 2014-01-29 11:46:11 +0100 | [diff] [blame] | 200 | if (extra_size > 0) |
| 201 | card->private_data = (char *)card + sizeof(struct snd_card); |
Jaroslav Kysela | 10a8ebb | 2009-06-02 12:02:38 +0200 | [diff] [blame] | 202 | if (xid) |
Jaroslav Kysela | 5fdc18d | 2009-06-04 00:12:18 +0200 | [diff] [blame] | 203 | strlcpy(card->id, xid, sizeof(card->id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | err = 0; |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 205 | mutex_lock(&snd_card_mutex); |
Takashi Iwai | deb6596 | 2014-01-23 11:02:15 +0100 | [diff] [blame] | 206 | 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 Iwai | a93bbaa | 2008-05-27 17:59:24 +0200 | [diff] [blame] | 210 | if (idx < 0) |
| 211 | err = -ENODEV; |
| 212 | else if (idx < snd_ecards_limit) { |
Takashi Iwai | 7bb2491 | 2013-05-15 08:46:39 +0200 | [diff] [blame] | 213 | if (test_bit(idx, snd_cards_lock)) |
Takashi Iwai | a93bbaa | 2008-05-27 17:59:24 +0200 | [diff] [blame] | 214 | err = -EBUSY; /* invalid */ |
| 215 | } else if (idx >= SNDRV_CARDS) |
| 216 | err = -ENODEV; |
| 217 | if (err < 0) { |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 218 | mutex_unlock(&snd_card_mutex); |
Oliver Neukum | 5c33dd7 | 2007-01-16 17:49:21 +0100 | [diff] [blame] | 219 | 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 Iwai | 8bfb181 | 2014-01-29 11:46:11 +0100 | [diff] [blame] | 221 | kfree(card); |
| 222 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | } |
Takashi Iwai | 7bb2491 | 2013-05-15 08:46:39 +0200 | [diff] [blame] | 224 | set_bit(idx, snd_cards_lock); /* lock it */ |
Takashi Iwai | a93bbaa | 2008-05-27 17:59:24 +0200 | [diff] [blame] | 225 | if (idx >= snd_ecards_limit) |
| 226 | snd_ecards_limit = idx + 1; /* increase the limit */ |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 227 | mutex_unlock(&snd_card_mutex); |
Takashi Iwai | 393aa9c | 2014-01-29 12:51:12 +0100 | [diff] [blame] | 228 | card->dev = parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | 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 Iwai | 118dd6b | 2009-02-23 16:35:21 +0100 | [diff] [blame] | 237 | INIT_LIST_HEAD(&card->files_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | init_waitqueue_head(&card->shutdown_sleep); |
Takashi Iwai | a0830db | 2012-10-16 13:05:59 +0200 | [diff] [blame] | 239 | atomic_set(&card->refcount, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | #ifdef CONFIG_PM |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 241 | mutex_init(&card->power_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | init_waitqueue_head(&card->power_sleep); |
| 243 | #endif |
Takashi Iwai | 8bfb181 | 2014-01-29 11:46:11 +0100 | [diff] [blame] | 244 | |
| 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 Iwai | 34356db | 2014-01-29 11:54:10 +0100 | [diff] [blame^] | 249 | card->card_dev.groups = card_dev_attr_groups; |
Takashi Iwai | 8bfb181 | 2014-01-29 11:46:11 +0100 | [diff] [blame] | 250 | err = kobject_set_name(&card->card_dev.kobj, "card%d", idx); |
| 251 | if (err < 0) |
| 252 | goto __error; |
| 253 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | /* 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 Iwai | 53fb1e6 | 2008-12-28 16:32:08 +0100 | [diff] [blame] | 256 | err = snd_ctl_create(card); |
| 257 | if (err < 0) { |
| 258 | snd_printk(KERN_ERR "unable to register control minors\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | goto __error; |
| 260 | } |
Takashi Iwai | 53fb1e6 | 2008-12-28 16:32:08 +0100 | [diff] [blame] | 261 | err = snd_info_card_create(card); |
| 262 | if (err < 0) { |
| 263 | snd_printk(KERN_ERR "unable to create card info\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | goto __error_ctl; |
| 265 | } |
Takashi Iwai | 53fb1e6 | 2008-12-28 16:32:08 +0100 | [diff] [blame] | 266 | *card_ret = card; |
| 267 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
| 269 | __error_ctl: |
| 270 | snd_device_free_all(card, SNDRV_DEV_CMD_PRE); |
| 271 | __error: |
Takashi Iwai | 8bfb181 | 2014-01-29 11:46:11 +0100 | [diff] [blame] | 272 | put_device(&card->card_dev); |
Takashi Iwai | 53fb1e6 | 2008-12-28 16:32:08 +0100 | [diff] [blame] | 273 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | } |
Takashi Iwai | 393aa9c | 2014-01-29 12:51:12 +0100 | [diff] [blame] | 275 | EXPORT_SYMBOL(snd_card_new); |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 276 | |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 277 | /* return non-zero if a card is already locked */ |
| 278 | int snd_card_locked(int card) |
| 279 | { |
| 280 | int locked; |
| 281 | |
| 282 | mutex_lock(&snd_card_mutex); |
Takashi Iwai | 7bb2491 | 2013-05-15 08:46:39 +0200 | [diff] [blame] | 283 | locked = test_bit(card, snd_cards_lock); |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 284 | mutex_unlock(&snd_card_mutex); |
| 285 | return locked; |
| 286 | } |
| 287 | |
Clemens Ladisch | b3b0abe | 2006-03-03 14:08:43 +0100 | [diff] [blame] | 288 | static loff_t snd_disconnect_llseek(struct file *file, loff_t offset, int orig) |
| 289 | { |
| 290 | return -ENODEV; |
| 291 | } |
| 292 | |
| 293 | static ssize_t snd_disconnect_read(struct file *file, char __user *buf, |
| 294 | size_t count, loff_t *offset) |
| 295 | { |
| 296 | return -ENODEV; |
| 297 | } |
| 298 | |
| 299 | static 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 Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 305 | static 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 Iwai | 118dd6b | 2009-02-23 16:35:21 +0100 | [diff] [blame] | 313 | list_del_init(&df->shutdown_list); |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 314 | break; |
| 315 | } |
| 316 | } |
| 317 | spin_unlock(&shutdown_lock); |
| 318 | |
Al Viro | 233e70f | 2008-10-31 23:28:30 +0000 | [diff] [blame] | 319 | if (likely(df)) { |
| 320 | if ((file->f_flags & FASYNC) && df->disconnected_f_op->fasync) |
| 321 | df->disconnected_f_op->fasync(-1, file, 0); |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 322 | return df->disconnected_f_op->release(inode, file); |
Al Viro | 233e70f | 2008-10-31 23:28:30 +0000 | [diff] [blame] | 323 | } |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 324 | |
Harvey Harrison | 9bf8e7d | 2008-03-03 15:32:18 -0800 | [diff] [blame] | 325 | panic("%s(%p, %p) failed!", __func__, inode, file); |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 326 | } |
| 327 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | static unsigned int snd_disconnect_poll(struct file * file, poll_table * wait) |
| 329 | { |
| 330 | return POLLERR | POLLNVAL; |
| 331 | } |
| 332 | |
Clemens Ladisch | b3b0abe | 2006-03-03 14:08:43 +0100 | [diff] [blame] | 333 | static long snd_disconnect_ioctl(struct file *file, |
| 334 | unsigned int cmd, unsigned long arg) |
| 335 | { |
| 336 | return -ENODEV; |
| 337 | } |
| 338 | |
| 339 | static int snd_disconnect_mmap(struct file *file, struct vm_area_struct *vma) |
| 340 | { |
| 341 | return -ENODEV; |
| 342 | } |
| 343 | |
| 344 | static int snd_disconnect_fasync(int fd, struct file *file, int on) |
| 345 | { |
| 346 | return -ENODEV; |
| 347 | } |
| 348 | |
Arjan van de Ven | 9c2e08c | 2007-02-12 00:55:37 -0800 | [diff] [blame] | 349 | static const struct file_operations snd_shutdown_f_ops = |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 350 | { |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | /** |
| 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 Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 371 | * Return: Zero, otherwise a negative error code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | * |
| 373 | * Note: The current implementation replaces all active file->f_op with special |
| 374 | * dummy file operations (they do nothing except release). |
| 375 | */ |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 376 | int snd_card_disconnect(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | { |
| 378 | struct snd_monitor_file *mfile; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | int err; |
| 380 | |
Takashi Iwai | f18638d | 2008-04-17 12:52:02 +0200 | [diff] [blame] | 381 | if (!card) |
| 382 | return -EINVAL; |
| 383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | 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 Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 393 | mutex_lock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | snd_cards[card->number] = NULL; |
Takashi Iwai | 7bb2491 | 2013-05-15 08:46:39 +0200 | [diff] [blame] | 395 | clear_bit(card->number, snd_cards_lock); |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 396 | mutex_unlock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
| 398 | /* phase 2: replace file->f_op with special dummy operations */ |
| 399 | |
| 400 | spin_lock(&card->files_lock); |
Takashi Iwai | 118dd6b | 2009-02-23 16:35:21 +0100 | [diff] [blame] | 401 | list_for_each_entry(mfile, &card->files_list, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | /* it's critical part, use endless loop */ |
| 403 | /* we have no room to fail */ |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 404 | mfile->disconnected_f_op = mfile->file->f_op; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 406 | spin_lock(&shutdown_lock); |
| 407 | list_add(&mfile->shutdown_list, &shutdown_files); |
| 408 | spin_unlock(&shutdown_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | |
Karsten Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 410 | mfile->file->f_op = &snd_shutdown_f_ops; |
Miguel Boton | bc9abce | 2008-01-13 12:03:53 +0100 | [diff] [blame] | 411 | fops_get(mfile->file->f_op); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | } |
| 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 Iwai | 8eeaa2f | 2014-02-10 09:48:47 +0100 | [diff] [blame] | 418 | #if IS_ENABLED(CONFIG_SND_MIXER_OSS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | 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 Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 428 | snd_info_card_disconnect(card); |
Takashi Iwai | 8bfb181 | 2014-01-29 11:46:11 +0100 | [diff] [blame] | 429 | if (card->registered) { |
| 430 | device_del(&card->card_dev); |
| 431 | card->registered = false; |
Takashi Iwai | 73d38b1 | 2008-04-17 12:50:47 +0200 | [diff] [blame] | 432 | } |
Takashi Iwai | f18638d | 2008-04-17 12:52:02 +0200 | [diff] [blame] | 433 | #ifdef CONFIG_PM |
| 434 | wake_up(&card->power_sleep); |
| 435 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | return 0; |
| 437 | } |
| 438 | |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 439 | EXPORT_SYMBOL(snd_card_disconnect); |
| 440 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | /** |
| 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 Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 449 | * Return: Zero. Frees all associated devices and frees the control |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | * interface associated to given soundcard. |
| 451 | */ |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 452 | static int snd_card_do_free(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | { |
Takashi Iwai | 8eeaa2f | 2014-02-10 09:48:47 +0100 | [diff] [blame] | 454 | #if IS_ENABLED(CONFIG_SND_MIXER_OSS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | 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 Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 472 | snd_info_free_entry(card->proc_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | if (snd_info_card_free(card) < 0) { |
| 474 | snd_printk(KERN_WARNING "unable to free card info\n"); |
| 475 | /* Not fatal error */ |
| 476 | } |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 477 | kfree(card); |
| 478 | return 0; |
| 479 | } |
| 480 | |
Takashi Iwai | a0830db | 2012-10-16 13:05:59 +0200 | [diff] [blame] | 481 | /** |
| 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 | */ |
| 488 | void 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 Iwai | 8bfb181 | 2014-01-29 11:46:11 +0100 | [diff] [blame] | 493 | put_device(&card->card_dev); |
Takashi Iwai | a0830db | 2012-10-16 13:05:59 +0200 | [diff] [blame] | 494 | } |
| 495 | } |
| 496 | EXPORT_SYMBOL(snd_card_unref); |
| 497 | |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 498 | int snd_card_free_when_closed(struct snd_card *card) |
| 499 | { |
Takashi Iwai | a0830db | 2012-10-16 13:05:59 +0200 | [diff] [blame] | 500 | int ret; |
| 501 | |
| 502 | atomic_inc(&card->refcount); |
| 503 | ret = snd_card_disconnect(card); |
| 504 | if (ret) { |
| 505 | atomic_dec(&card->refcount); |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 506 | return ret; |
Takashi Iwai | a0830db | 2012-10-16 13:05:59 +0200 | [diff] [blame] | 507 | } |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 508 | |
Takashi Iwai | a0830db | 2012-10-16 13:05:59 +0200 | [diff] [blame] | 509 | card->free_on_last_close = 1; |
| 510 | if (atomic_dec_and_test(&card->refcount)) |
Takashi Iwai | 8bfb181 | 2014-01-29 11:46:11 +0100 | [diff] [blame] | 511 | put_device(&card->card_dev); |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 512 | return 0; |
| 513 | } |
| 514 | |
| 515 | EXPORT_SYMBOL(snd_card_free_when_closed); |
| 516 | |
| 517 | int snd_card_free(struct snd_card *card) |
| 518 | { |
Takashi Iwai | f18638d | 2008-04-17 12:52:02 +0200 | [diff] [blame] | 519 | int ret = snd_card_disconnect(card); |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 520 | if (ret) |
| 521 | return ret; |
| 522 | |
| 523 | /* wait, until all devices are ready for the free operation */ |
Takashi Iwai | a0830db | 2012-10-16 13:05:59 +0200 | [diff] [blame] | 524 | wait_event(card->shutdown_sleep, !atomic_read(&card->refcount)); |
Takashi Iwai | 8bfb181 | 2014-01-29 11:46:11 +0100 | [diff] [blame] | 525 | put_device(&card->card_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | return 0; |
| 527 | } |
| 528 | |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 529 | EXPORT_SYMBOL(snd_card_free); |
| 530 | |
Takashi Iwai | e7df2a3 | 2012-03-09 17:41:53 +0100 | [diff] [blame] | 531 | /* retrieve the last word of shortname or longname */ |
| 532 | static const char *retrieve_id_from_card_name(const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | { |
Takashi Iwai | e7df2a3 | 2012-03-09 17:41:53 +0100 | [diff] [blame] | 534 | 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 */ |
| 545 | static 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 */ |
| 559 | static 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 | */ |
| 579 | static void snd_card_set_id_no_lock(struct snd_card *card, const char *src, |
| 580 | const char *nid) |
| 581 | { |
| 582 | int len, loops; |
Takashi Iwai | e7df2a3 | 2012-03-09 17:41:53 +0100 | [diff] [blame] | 583 | bool is_default = false; |
Jaroslav Kysela | 10a8ebb | 2009-06-02 12:02:38 +0200 | [diff] [blame] | 584 | char *id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | |
Takashi Iwai | e7df2a3 | 2012-03-09 17:41:53 +0100 | [diff] [blame] | 586 | copy_valid_id_string(card, src, nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | id = card->id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | |
Takashi Iwai | e7df2a3 | 2012-03-09 17:41:53 +0100 | [diff] [blame] | 589 | again: |
| 590 | /* use "Default" for obviously invalid strings |
| 591 | * ("card" conflicts with proc directories) |
| 592 | */ |
| 593 | if (!*id || !strncmp(id, "card", 4)) { |
Takashi Iwai | d8e4f9a | 2011-04-04 12:43:23 +0200 | [diff] [blame] | 594 | strcpy(id, "Default"); |
Takashi Iwai | e7df2a3 | 2012-03-09 17:41:53 +0100 | [diff] [blame] | 595 | is_default = true; |
| 596 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
Takashi Iwai | 8edbb19 | 2013-05-24 16:30:39 +0200 | [diff] [blame] | 598 | len = strlen(id); |
Takashi Iwai | e7df2a3 | 2012-03-09 17:41:53 +0100 | [diff] [blame] | 599 | for (loops = 0; loops < SNDRV_CARDS; loops++) { |
Takashi Iwai | 8edbb19 | 2013-05-24 16:30:39 +0200 | [diff] [blame] | 600 | char *spos; |
| 601 | char sfxstr[5]; /* "_012" */ |
| 602 | int sfxlen; |
| 603 | |
Takashi Iwai | e7df2a3 | 2012-03-09 17:41:53 +0100 | [diff] [blame] | 604 | if (card_id_ok(card, id)) |
| 605 | return; /* OK */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | |
Takashi Iwai | 8edbb19 | 2013-05-24 16:30:39 +0200 | [diff] [blame] | 607 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | } |
Takashi Iwai | e7df2a3 | 2012-03-09 17:41:53 +0100 | [diff] [blame] | 616 | /* 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 Iwai | 97f44f5 | 2013-10-29 15:20:06 +0100 | [diff] [blame] | 624 | strlcpy(card->id, card->proc_root->name, sizeof(card->id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | } |
| 626 | |
Mark Brown | 872c782 | 2009-06-03 20:43:29 +0100 | [diff] [blame] | 627 | /** |
| 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 | */ |
| 635 | void snd_card_set_id(struct snd_card *card, const char *nid) |
| 636 | { |
Jaroslav Kysela | 5fdc18d | 2009-06-04 00:12:18 +0200 | [diff] [blame] | 637 | /* check if user specified own card->id */ |
| 638 | if (card->id[0] != '\0') |
| 639 | return; |
| 640 | mutex_lock(&snd_card_mutex); |
Takashi Iwai | e7df2a3 | 2012-03-09 17:41:53 +0100 | [diff] [blame] | 641 | snd_card_set_id_no_lock(card, nid, nid); |
Jaroslav Kysela | 5fdc18d | 2009-06-04 00:12:18 +0200 | [diff] [blame] | 642 | mutex_unlock(&snd_card_mutex); |
Mark Brown | 872c782 | 2009-06-03 20:43:29 +0100 | [diff] [blame] | 643 | } |
Jaroslav Kysela | 10a8ebb | 2009-06-02 12:02:38 +0200 | [diff] [blame] | 644 | EXPORT_SYMBOL(snd_card_set_id); |
| 645 | |
Jaroslav Kysela | 9fb6198 | 2008-11-11 16:51:02 +0100 | [diff] [blame] | 646 | static ssize_t |
| 647 | card_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 | |
| 654 | static ssize_t |
| 655 | card_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 Iwai | e7df2a3 | 2012-03-09 17:41:53 +0100 | [diff] [blame] | 673 | if (!card_id_ok(NULL, buf1)) { |
Jaroslav Kysela | 9fb6198 | 2008-11-11 16:51:02 +0100 | [diff] [blame] | 674 | mutex_unlock(&snd_card_mutex); |
| 675 | return -EEXIST; |
| 676 | } |
Jaroslav Kysela | 9fb6198 | 2008-11-11 16:51:02 +0100 | [diff] [blame] | 677 | strcpy(card->id, buf1); |
Jaroslav Kysela | c2eb9c4 | 2008-11-12 16:31:37 +0100 | [diff] [blame] | 678 | snd_info_card_id_change(card); |
Jaroslav Kysela | 9fb6198 | 2008-11-11 16:51:02 +0100 | [diff] [blame] | 679 | mutex_unlock(&snd_card_mutex); |
| 680 | |
| 681 | return count; |
| 682 | } |
| 683 | |
Takashi Iwai | 34356db | 2014-01-29 11:54:10 +0100 | [diff] [blame^] | 684 | static DEVICE_ATTR(id, S_IRUGO | S_IWUSR, card_id_show_attr, card_id_store_attr); |
Jaroslav Kysela | 9fb6198 | 2008-11-11 16:51:02 +0100 | [diff] [blame] | 685 | |
| 686 | static ssize_t |
| 687 | card_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 Iwai | 34356db | 2014-01-29 11:54:10 +0100 | [diff] [blame^] | 694 | static DEVICE_ATTR(number, S_IRUGO, card_number_show_attr, NULL); |
| 695 | |
| 696 | static struct attribute *card_dev_attrs[] = { |
| 697 | &dev_attr_id.attr, |
| 698 | &dev_attr_number.attr, |
| 699 | NULL |
| 700 | }; |
| 701 | |
| 702 | static struct attribute_group card_dev_attr_group = { |
| 703 | .attrs = card_dev_attrs, |
| 704 | }; |
| 705 | |
| 706 | static const struct attribute_group *card_dev_attr_groups[] = { |
| 707 | &card_dev_attr_group, |
| 708 | NULL |
| 709 | }; |
Jaroslav Kysela | 9fb6198 | 2008-11-11 16:51:02 +0100 | [diff] [blame] | 710 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | /** |
| 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 Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 720 | * Return: Zero otherwise a negative error code if the registration failed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | */ |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 722 | int snd_card_register(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | { |
| 724 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 726 | if (snd_BUG_ON(!card)) |
| 727 | return -EINVAL; |
Kay Sievers | 39aba96 | 2010-09-04 22:33:14 -0700 | [diff] [blame] | 728 | |
Takashi Iwai | 8bfb181 | 2014-01-29 11:46:11 +0100 | [diff] [blame] | 729 | if (!card->registered) { |
| 730 | err = device_add(&card->card_dev); |
| 731 | if (err < 0) |
| 732 | return err; |
| 733 | card->registered = true; |
Greg Kroah-Hartman | d80f19f | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 734 | } |
Kay Sievers | 39aba96 | 2010-09-04 22:33:14 -0700 | [diff] [blame] | 735 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | if ((err = snd_device_register_all(card)) < 0) |
| 737 | return err; |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 738 | mutex_lock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | if (snd_cards[card->number]) { |
| 740 | /* already registered */ |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 741 | mutex_unlock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | return 0; |
| 743 | } |
Takashi Iwai | e7df2a3 | 2012-03-09 17:41:53 +0100 | [diff] [blame] | 744 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | snd_cards[card->number] = card; |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 757 | mutex_unlock(&snd_card_mutex); |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 758 | init_info_for_card(card); |
Takashi Iwai | 8eeaa2f | 2014-02-10 09:48:47 +0100 | [diff] [blame] | 759 | #if IS_ENABLED(CONFIG_SND_MIXER_OSS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | 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 Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 766 | EXPORT_SYMBOL(snd_card_register); |
| 767 | |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 768 | #ifdef CONFIG_PROC_FS |
Takashi Iwai | 6581f4e | 2006-05-17 17:14:51 +0200 | [diff] [blame] | 769 | static struct snd_info_entry *snd_card_info_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | |
Takashi Iwai | a381a7a | 2005-11-17 15:55:49 +0100 | [diff] [blame] | 771 | static void snd_card_info_read(struct snd_info_entry *entry, |
| 772 | struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | { |
| 774 | int idx, count; |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 775 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | |
| 777 | for (idx = count = 0; idx < SNDRV_CARDS; idx++) { |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 778 | mutex_lock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | if ((card = snd_cards[idx]) != NULL) { |
| 780 | count++; |
Clemens Ladisch | d001544 | 2005-11-20 14:09:05 +0100 | [diff] [blame] | 781 | snd_iprintf(buffer, "%2i [%-15s]: %s - %s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | idx, |
| 783 | card->id, |
| 784 | card->driver, |
| 785 | card->shortname); |
Clemens Ladisch | d001544 | 2005-11-20 14:09:05 +0100 | [diff] [blame] | 786 | snd_iprintf(buffer, " %s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | card->longname); |
| 788 | } |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 789 | mutex_unlock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | } |
| 791 | if (!count) |
| 792 | snd_iprintf(buffer, "--- no soundcards ---\n"); |
| 793 | } |
| 794 | |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 795 | #ifdef CONFIG_SND_OSSEMUL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 797 | void snd_card_info_read_oss(struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | { |
| 799 | int idx, count; |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 800 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | |
| 802 | for (idx = count = 0; idx < SNDRV_CARDS; idx++) { |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 803 | mutex_lock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | if ((card = snd_cards[idx]) != NULL) { |
| 805 | count++; |
| 806 | snd_iprintf(buffer, "%s\n", card->longname); |
| 807 | } |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 808 | mutex_unlock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | } |
| 810 | if (!count) { |
| 811 | snd_iprintf(buffer, "--- no soundcards ---\n"); |
| 812 | } |
| 813 | } |
| 814 | |
| 815 | #endif |
| 816 | |
| 817 | #ifdef MODULE |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 818 | static struct snd_info_entry *snd_card_module_info_entry; |
| 819 | static void snd_card_module_info_read(struct snd_info_entry *entry, |
| 820 | struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | { |
| 822 | int idx; |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 823 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | |
| 825 | for (idx = 0; idx < SNDRV_CARDS; idx++) { |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 826 | mutex_lock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | if ((card = snd_cards[idx]) != NULL) |
Clemens Ladisch | d001544 | 2005-11-20 14:09:05 +0100 | [diff] [blame] | 828 | snd_iprintf(buffer, "%2i %s\n", |
| 829 | idx, card->module->name); |
Takashi Iwai | 746df94 | 2006-05-15 19:49:05 +0200 | [diff] [blame] | 830 | mutex_unlock(&snd_card_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | } |
| 832 | } |
| 833 | #endif |
| 834 | |
| 835 | int __init snd_card_info_init(void) |
| 836 | { |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 837 | struct snd_info_entry *entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | |
| 839 | entry = snd_info_create_module_entry(THIS_MODULE, "cards", NULL); |
Takashi Iwai | 7c22f1a | 2005-10-10 11:46:31 +0200 | [diff] [blame] | 840 | if (! entry) |
| 841 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | 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 | |
| 863 | int __exit snd_card_info_done(void) |
| 864 | { |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 865 | snd_info_free_entry(snd_card_info_entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | #ifdef MODULE |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 867 | snd_info_free_entry(snd_card_module_info_entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | #endif |
| 869 | return 0; |
| 870 | } |
| 871 | |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 872 | #endif /* CONFIG_PROC_FS */ |
| 873 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | /** |
| 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 Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 882 | * Return: Zero otherwise a negative error code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | */ |
| 884 | |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 885 | int snd_component_add(struct snd_card *card, const char *component) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | { |
| 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 Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 905 | EXPORT_SYMBOL(snd_component_add); |
| 906 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | /** |
| 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 Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 916 | * Return: zero or a negative error code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | */ |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 918 | int snd_card_file_add(struct snd_card *card, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | { |
| 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 Wiese | a9edfc6 | 2006-10-06 16:08:27 +0200 | [diff] [blame] | 926 | mfile->disconnected_f_op = NULL; |
Takashi Iwai | a45e3d6 | 2011-03-24 09:50:15 +0100 | [diff] [blame] | 927 | INIT_LIST_HEAD(&mfile->shutdown_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | spin_lock(&card->files_lock); |
| 929 | if (card->shutdown) { |
| 930 | spin_unlock(&card->files_lock); |
| 931 | kfree(mfile); |
| 932 | return -ENODEV; |
| 933 | } |
Takashi Iwai | 118dd6b | 2009-02-23 16:35:21 +0100 | [diff] [blame] | 934 | list_add(&mfile->list, &card->files_list); |
Takashi Iwai | a0830db | 2012-10-16 13:05:59 +0200 | [diff] [blame] | 935 | atomic_inc(&card->refcount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | spin_unlock(&card->files_lock); |
| 937 | return 0; |
| 938 | } |
| 939 | |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 940 | EXPORT_SYMBOL(snd_card_file_add); |
| 941 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | /** |
| 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 Iwai | 2b29b13 | 2006-06-23 14:38:26 +0200 | [diff] [blame] | 949 | * If all files are removed and snd_card_free_when_closed() was |
| 950 | * called beforehand, it processes the pending release of |
| 951 | * resources. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 953 | * Return: Zero or a negative error code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | */ |
Takashi Iwai | 512bbd6 | 2005-11-17 13:51:18 +0100 | [diff] [blame] | 955 | int snd_card_file_remove(struct snd_card *card, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | { |
Takashi Iwai | 118dd6b | 2009-02-23 16:35:21 +0100 | [diff] [blame] | 957 | struct snd_monitor_file *mfile, *found = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | |
| 959 | spin_lock(&card->files_lock); |
Takashi Iwai | 118dd6b | 2009-02-23 16:35:21 +0100 | [diff] [blame] | 960 | list_for_each_entry(mfile, &card->files_list, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | if (mfile->file == file) { |
Takashi Iwai | 118dd6b | 2009-02-23 16:35:21 +0100 | [diff] [blame] | 962 | list_del(&mfile->list); |
Takashi Iwai | a45e3d6 | 2011-03-24 09:50:15 +0100 | [diff] [blame] | 963 | spin_lock(&shutdown_lock); |
| 964 | list_del(&mfile->shutdown_list); |
| 965 | spin_unlock(&shutdown_lock); |
Takashi Iwai | 118dd6b | 2009-02-23 16:35:21 +0100 | [diff] [blame] | 966 | if (mfile->disconnected_f_op) |
| 967 | fops_put(mfile->disconnected_f_op); |
| 968 | found = mfile; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | break; |
| 970 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | } |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 972 | spin_unlock(&card->files_lock); |
Takashi Iwai | 118dd6b | 2009-02-23 16:35:21 +0100 | [diff] [blame] | 973 | if (!found) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | snd_printk(KERN_ERR "ALSA card file remove problem (%p)\n", file); |
| 975 | return -ENOENT; |
| 976 | } |
Takashi Iwai | 118dd6b | 2009-02-23 16:35:21 +0100 | [diff] [blame] | 977 | kfree(found); |
Takashi Iwai | a0830db | 2012-10-16 13:05:59 +0200 | [diff] [blame] | 978 | snd_card_unref(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | return 0; |
| 980 | } |
| 981 | |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 982 | EXPORT_SYMBOL(snd_card_file_remove); |
| 983 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | * |
| 990 | * Waits until the power-state is changed. |
| 991 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 992 | * Return: Zero if successful, or a negative error code. |
| 993 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | * Note: the power lock must be active before call. |
| 995 | */ |
Takashi Iwai | cbac4b0 | 2006-03-27 12:38:07 +0200 | [diff] [blame] | 996 | int snd_power_wait(struct snd_card *card, unsigned int power_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | { |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | 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 Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 1022 | EXPORT_SYMBOL(snd_power_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | #endif /* CONFIG_PM */ |